addAddress.wxss 2.3 KB

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