addressAdd.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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 .input {
  20. flex: 1;
  21. height: 44rpx;
  22. line-height: 44rpx;
  23. overflow: hidden;margin-top: 10rpx;
  24. }
  25. .add-address .label{
  26. font-size: 32rpx;
  27. font-weight: bold;
  28. margin-right: 50rpx;
  29. width: 136rpx;
  30. text-align: center;
  31. }
  32. .add-address .content{
  33. border-bottom: 1px solid #d9d9d9;
  34. height: 116rpx;
  35. line-height: 116rpx;
  36. align-content: center;
  37. /* padding: 40rpx 0 0; */
  38. width: 100%;
  39. display: flex;
  40. align-items: center;
  41. }
  42. .add-address .form-default {
  43. border-bottom: 1px solid #d9d9d9;
  44. height: 136rpx;
  45. background: #fff;
  46. padding-top: 28rpx;
  47. font-size: 28rpx;
  48. padding-left: 31.25rpx;
  49. margin-top: 30rpx;
  50. display: flex;
  51. justify-content: space-between;
  52. }
  53. .add-address .form-default .title{
  54. font-size: 32rpx;
  55. font-weight: bold;
  56. }
  57. .add-address .form-default .des{
  58. color:#B2B2B2;
  59. line-height: 46rpx;
  60. height: 40rpx;
  61. }
  62. .add-address .form-default .van-checkbox .van-icon {
  63. color: #fff;
  64. }
  65. .add-address .btns {
  66. position: fixed;
  67. bottom: 0;
  68. left: 0;
  69. overflow: hidden;
  70. display: flex;
  71. height: 100rpx;
  72. width: 100%;
  73. margin-bottom:25rpx
  74. }
  75. .add-address .cannel, .add-address .save {
  76. flex: 1;
  77. height: 100rpx;
  78. text-align: center;
  79. line-height: 100rpx;
  80. font-size: 28rpx;
  81. color: #fff;
  82. border: none;
  83. border-radius: 0;
  84. }
  85. .add-address .cannel {
  86. background: #ABD8ED;
  87. color:#3C4A5C;
  88. }
  89. .add-address .save {
  90. background: #09AFFF;
  91. }
  92. .region-select {
  93. width: 100%;
  94. height: 600rpx;
  95. background: #fff;
  96. position: fixed;
  97. z-index: 10;
  98. left: 0;
  99. bottom: 0;
  100. }
  101. .region-select .hd {
  102. height: 108rpx;
  103. width: 100%;
  104. border-bottom: 1px solid #f4f4f4;
  105. padding: 46rpx 30rpx 0 30rpx;
  106. }
  107. .region-select .region-selected {
  108. float: left;
  109. height: 60rpx;
  110. display: flex;
  111. }
  112. .region-select .region-selected .item {
  113. max-width: 140rpx;
  114. margin-right: 30rpx;
  115. text-align: left;
  116. line-height: 60rpx;
  117. height: 100%;
  118. color: #333;
  119. font-size: 28rpx;
  120. overflow: hidden;
  121. text-overflow: ellipsis;
  122. white-space: nowrap;
  123. }
  124. .region-select .region-selected .item.disabled {
  125. color: #999;
  126. }
  127. .region-select .region-selected .item.selected {
  128. color: #b4282d;
  129. }
  130. .region-select .done {
  131. float: right;
  132. height: 60rpx;
  133. width: 60rpx;
  134. border: none;
  135. background: #fff;
  136. line-height: 60rpx;
  137. text-align: center;
  138. color: #333;
  139. font-size: 28rpx;
  140. }
  141. .region-select .done.disabled {
  142. color: #999;
  143. }
  144. .region-select .bd {
  145. height: 492rpx;
  146. width: 100%;
  147. padding: 0 30rpx;
  148. }
  149. .region-select .region-list {
  150. height: 492rpx;
  151. }
  152. .region-select .region-list .item {
  153. width: 100%;
  154. height: 104rpx;
  155. line-height: 104rpx;
  156. text-align: left;
  157. color: #333;
  158. font-size: 28rpx;
  159. }
  160. .region-select .region-list .item.selected {
  161. color: #b4282d;
  162. }
  163. .bg-mask {
  164. height: 100%;
  165. width: 100%;
  166. background: rgba(0, 0, 0, 0.4);
  167. position: fixed;
  168. top: 0;
  169. left: 0;
  170. z-index: 8;
  171. }