addressAdd.wxss 2.5 KB

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