1
0

addressAdd.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. page {
  2. height: 100%;
  3. background: #f4f4f4;
  4. }
  5. .add-address .add-form {
  6. background: #fff;
  7. width: 100%;
  8. height: auto;
  9. overflow: hidden;
  10. }
  11. .add-address .form-item {
  12. height: 116rpx;
  13. padding-left: 31.25rpx;
  14. border-bottom: 1px solid #d9d9d9;
  15. display: flex;
  16. align-items: center;
  17. padding-right: 31.25rpx;
  18. }
  19. .add-address .form-item .location{
  20. height: 60rpx;
  21. width: 60rpx;
  22. }
  23. .add-address label {
  24. width: 160rpx;
  25. font-weight: bold;
  26. }
  27. .add-address .input {
  28. flex: 1;
  29. height: 44rpx;
  30. line-height: 44rpx;
  31. overflow: hidden;
  32. }
  33. .add-address .form-default {
  34. border-bottom: 1px solid #d9d9d9;
  35. height: 96rpx;
  36. background: #fafafa;
  37. padding-top: 28rpx;
  38. font-size: 28rpx;
  39. }
  40. .default-input {
  41. margin: 0 auto;
  42. display: block;
  43. width: 240rpx;
  44. height: 40rpx;
  45. padding-left: 50rpx;
  46. line-height: 40rpx;
  47. background: url(http://120.76.26.84:80/group1/M00/00/02/rBJEdVvr3NeAQgp_AAAJkFQSrpc594.png) 1rpx -448rpx no-repeat;
  48. background-size: 38rpx 486rpx;
  49. font-size: 28rpx;
  50. }
  51. .default-input.selected {
  52. background: url(http://120.76.26.84:80/group1/M00/00/02/rBJEdVvr3NeAQgp_AAAJkFQSrpc594.png) 0 -192rpx no-repeat;
  53. background-size: 38rpx 486rpx;
  54. }
  55. .add-address .btns {
  56. position: fixed;
  57. bottom: 0;
  58. left: 0;
  59. overflow: hidden;
  60. display: flex;
  61. height: 100rpx;
  62. width: 100%;
  63. }
  64. .add-address .cannel, .add-address .save {
  65. flex: 1;
  66. height: 100rpx;
  67. text-align: center;
  68. line-height: 100rpx;
  69. font-size: 28rpx;
  70. color: #fff;
  71. border: none;
  72. border-radius: 0;
  73. }
  74. .add-address .cannel {
  75. background: #333;
  76. }
  77. .add-address .save {
  78. background: #b4282d;
  79. }
  80. .region-select {
  81. width: 100%;
  82. height: 600rpx;
  83. background: #fff;
  84. position: fixed;
  85. z-index: 10;
  86. left: 0;
  87. bottom: 0;
  88. }
  89. .region-select .hd {
  90. height: 108rpx;
  91. width: 100%;
  92. border-bottom: 1px solid #f4f4f4;
  93. padding: 46rpx 30rpx 0 30rpx;
  94. }
  95. .region-select .region-selected {
  96. float: left;
  97. height: 60rpx;
  98. display: flex;
  99. }
  100. .region-select .region-selected .item {
  101. max-width: 140rpx;
  102. margin-right: 30rpx;
  103. text-align: left;
  104. line-height: 60rpx;
  105. height: 100%;
  106. color: #333;
  107. font-size: 28rpx;
  108. overflow: hidden;
  109. text-overflow: ellipsis;
  110. white-space: nowrap;
  111. }
  112. .region-select .region-selected .item.disabled {
  113. color: #999;
  114. }
  115. .region-select .region-selected .item.selected {
  116. color: #b4282d;
  117. }
  118. .region-select .done {
  119. float: right;
  120. height: 60rpx;
  121. width: 60rpx;
  122. border: none;
  123. background: #fff;
  124. line-height: 60rpx;
  125. text-align: center;
  126. color: #333;
  127. font-size: 28rpx;
  128. }
  129. .region-select .done.disabled {
  130. color: #999;
  131. }
  132. .region-select .bd {
  133. height: 492rpx;
  134. width: 100%;
  135. padding: 0 30rpx;
  136. }
  137. .region-select .region-list {
  138. height: auto;
  139. overflow: scroll;
  140. }
  141. .region-select .region-list .item {
  142. width: 100%;
  143. height: 104rpx;
  144. line-height: 104rpx;
  145. text-align: left;
  146. color: #333;
  147. font-size: 28rpx;
  148. }
  149. .region-select .region-list .item.selected {
  150. color: #b4282d;
  151. }
  152. .bg-mask {
  153. height: 100%;
  154. width: 100%;
  155. background: rgba(0, 0, 0, 0.4);
  156. position: fixed;
  157. top: 0;
  158. left: 0;
  159. z-index: 8;
  160. }