addAddress.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /* pages/addAddress/addAddress.wxss */
  2. @import "../address/address.wxss";
  3. @import "../components/template/loadAnimation/loadAnimation.wxss";
  4. .info_cell-wrap {
  5. padding-left: 40rpx;
  6. }
  7. .info_cell {
  8. display: -webkit-flex;
  9. display: flex;
  10. align-items: center;
  11. line-height: 112rpx;
  12. font-size: 28rpx;
  13. }
  14. .info_cell_lable {
  15. width: 154rpx;
  16. }
  17. .info_cell_content {
  18. -webkit-flex: 1;
  19. flex: 1;
  20. }
  21. .checkbtn {
  22. display: -webkit-flex;
  23. display: flex;
  24. align-items: center;
  25. padding: 40rpx;
  26. font-size: 24rpx;
  27. }
  28. .no_checked_icon {
  29. width: 36rpx;
  30. height: 36rpx;
  31. border-radius: 50%;
  32. border: 1rpx solid #666;
  33. }
  34. .check_icon-box {
  35. display: -webkit-flex;
  36. display: flex;
  37. align-items: center;
  38. width: 42rpx;
  39. height: 42rpx;
  40. margin-right: 4rpx;
  41. }
  42. .common_cell_arrow {
  43. position: relative;
  44. }
  45. .common_cell_arrow::after {
  46. content: " ";
  47. display: inline-block;
  48. height: 12rpx;
  49. width: 12rpx;
  50. border-width: 2rpx 2rpx 0 0;
  51. border-color: #c8c8cd;
  52. border-style: solid;
  53. -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  54. transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  55. position: absolute;
  56. top: 50%;
  57. margin-top: -8rpx;
  58. right: 40rpx;
  59. }
  60. .area_flex {
  61. display: inline-block;
  62. width: 33%;
  63. }
  64. .picker_mask {
  65. position: fixed;
  66. left: 0;
  67. top:0;
  68. height: 100%;
  69. width: 100%;
  70. background-color: rgba(0, 0, 0, 0.6);
  71. z-index: -1;
  72. opacity: 0;
  73. }
  74. .picker_mask.show_popup {
  75. z-index: 99;
  76. opacity: 1;
  77. }
  78. .picker_container {
  79. position: fixed;
  80. left: 0;
  81. right: 0;
  82. bottom: 0;
  83. z-index: 100;
  84. -webkit-transition: all 0.1s;
  85. transition: all 0.1s;
  86. -webkit-transform: translateY(110%);
  87. transform: translateY(110%);
  88. }
  89. .show_animation {
  90. -webkit-transform: translateY(0);
  91. transform: translateY(0);
  92. }
  93. .picker_header {
  94. display: -webkit-flex;
  95. display: flex;
  96. justify-content: space-between;
  97. padding: 0 30rpx;
  98. line-height: 88rpx;
  99. font-size: 32rpx;
  100. color: #333;
  101. background: #fbf9fe;
  102. }
  103. .picker_header .picker_cancel {
  104. color: #828282;
  105. }
  106. .animation-element {
  107. display: flex;
  108. position: fixed;
  109. width: 100%;
  110. height: 470rpx;
  111. bottom: 0;
  112. background-color: rgba(255, 255, 255, 1);
  113. }
  114. .animation-button {
  115. top:20rpx;
  116. width: 290rpx;
  117. height: 100rpx;
  118. align-items:center;
  119. }
  120. .left-bt{
  121. left: 30rpx;
  122. }
  123. .right-bt {
  124. right: 30rpx;
  125. }
  126. .line{
  127. display: block;
  128. position: fixed;
  129. height: 1rpx;
  130. width: 100%;
  131. margin-top: 89rpx;
  132. background-color: #eeeeee;
  133. }
  134. .address_input {
  135. width: 440rpx;
  136. }