addressAdd.wxss 2.5 KB

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