editAddress.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /* pages/editAddress/editAddress.wxss */
  2. page {
  3. background: #fff;
  4. }
  5. /* input列表 */
  6. .input-box {
  7. margin-bottom: 100rpx;
  8. background: #fff;
  9. padding: 0 20rpx;
  10. }
  11. .input-box .section {
  12. display: flex;
  13. align-items: center;
  14. width: 100%;
  15. font-size: 30rpx;
  16. padding: 30rpx 0;
  17. line-height: 48rpx;
  18. height: 100%;
  19. box-sizing: border-box;
  20. border-bottom: 2rpx solid #e5e5e5;
  21. }
  22. .input-box .section text {
  23. width: 20%;
  24. }
  25. .input-box .section input {
  26. width: 70%;
  27. padding: 0 20rpx;
  28. }
  29. .input-box .section picker {
  30. width: 70%;
  31. padding: 0 30rpx;
  32. }
  33. .input-box .section .pca {
  34. width: 70%;
  35. padding: 0 10rpx;
  36. }
  37. .input-box .section .pca .address-name {
  38. overflow: hidden;
  39. white-space: nowrap;
  40. text-overflow: ellipsis;
  41. font-size: 28rpx;
  42. }
  43. .input-box .section .pca .sel-addres {
  44. overflow: hidden;
  45. white-space: nowrap;
  46. text-overflow: ellipsis;
  47. font-weight: normal;
  48. font-size: 24rpx;
  49. color: #AAAAAA;
  50. }
  51. .input-box .section .arrow {
  52. width: 28rpx;
  53. height: 28rpx;
  54. }
  55. .input-box .section .arrow image {
  56. width: 100%;
  57. height: 100%;
  58. vertical-align: top;
  59. }
  60. /* end input列表 */
  61. /* 功能按钮 */
  62. .btn-box {
  63. padding: 5px 0;
  64. width: 100%;
  65. text-align: center;
  66. margin: auto;
  67. }
  68. .btn-box text {
  69. font-size: 30rpx;
  70. }
  71. .btn-box .clear.btn,
  72. .keep.btn {
  73. width: 60%;
  74. height: 80rpx;
  75. line-height: 80rpx;
  76. margin: auto;
  77. text-align: center;
  78. border: 1rpx solid #04358D;
  79. border-radius: 50rpx;
  80. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.3);
  81. }
  82. .btn-box .keep {
  83. color: #fff;
  84. background-color: #04358D;
  85. }
  86. .btn-box .clear.btn {
  87. margin-top: 40rpx;
  88. color: #04358D;
  89. }
  90. /* end 功能按钮 */
  91. .infoText {
  92. margin-top: 20rpx;
  93. text-align: center;
  94. width: 100%;
  95. justify-content: center;
  96. }
  97. picker-view {
  98. background-color: white;
  99. padding: 0;
  100. width: 100%;
  101. height: 380rpx;
  102. bottom: 0;
  103. position: fixed;
  104. }
  105. picker-view-column view {
  106. vertical-align: middle;
  107. font-size: 30rpx;
  108. line-height: 30rpx;
  109. height: 100%;
  110. display: flex;
  111. align-items: center;
  112. justify-content: center;
  113. }
  114. .animation-element-wrapper {
  115. display: flex;
  116. position: fixed;
  117. left: 0;
  118. top: 0;
  119. height: 100%;
  120. width: 100%;
  121. background-color: rgba(0, 0, 0, 0.6);
  122. z-index: 999;
  123. }
  124. .animation-element {
  125. display: flex;
  126. position: fixed;
  127. width: 100%;
  128. height: 530rpx;
  129. bottom: 0;
  130. background-color: rgba(255, 255, 255, 1);
  131. }
  132. .animation-button {
  133. top: 20rpx;
  134. width: 290rpx;
  135. height: 100rpx;
  136. align-items: center;
  137. }
  138. picker-view text {
  139. color: #999;
  140. display: inline-flex;
  141. position: fixed;
  142. margin-top: 20rpx;
  143. height: 50rpx;
  144. text-align: center;
  145. line-height: 50rpx;
  146. font-size: 34rpx;
  147. font-family: Arial, Helvetica, sans-serif;
  148. }
  149. .left-bt {
  150. left: 30rpx;
  151. }
  152. .right-bt {
  153. right: 20rpx;
  154. top: 20rpx;
  155. position: absolute;
  156. width: 80rpx !important;
  157. }
  158. .line {
  159. display: block;
  160. position: fixed;
  161. height: 2rpx;
  162. width: 100%;
  163. margin-top: 89rpx;
  164. background-color: #eee;
  165. }