addressAdd.wxss 3.1 KB

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