address-detail.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /* pages/address/address-detail.wxss */
  2. .container {
  3. position: relative;
  4. height: 100vh;
  5. display: flex;
  6. flex-direction: column;
  7. background: #F4F4F4;
  8. &::before {
  9. content: '';
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. height: 254rpx;
  15. background: linear-gradient(180deg, #FDEC00 0%, #FAD400 100%);
  16. }
  17. }
  18. .pop-btn-list {
  19. padding: 12rpx 32rpx 50rpx;
  20. box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
  21. background-color: #fff;
  22. .submit-btn {
  23. width: 100% !important;
  24. margin: 0 !important;
  25. padding: 0 !important;
  26. background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
  27. box-shadow: 0rpx 14rpx 14rpx 0rpx rgba(0, 0, 0, 0.18);
  28. border-radius: 36rpx !important;
  29. border: 8rpx solid #FFFFFF;
  30. color: #FEFFCA;
  31. font-size: 36rpx;
  32. font-weight: 600;
  33. line-height: 94rpx;
  34. }
  35. }
  36. .van-picker__toolbar,
  37. .toolbar-top {
  38. margin: 0 40rpx !important;
  39. padding: 0 14rpx !important;
  40. border-bottom: 2rpx solid #F2F2F2;
  41. height: auto !important;
  42. line-height: normal !important;
  43. }
  44. .van-picker__cancel,
  45. .van-picker__confirm,
  46. .toolbar-cancel,
  47. toolbar-confirm {
  48. font-size: 32rpx !important;
  49. padding: 28rpx 0 !important;
  50. color: #777777 !important;
  51. }
  52. .van-picker__confirm,
  53. .toolbar-confirm {
  54. color: #FE4600 !important;
  55. }
  56. .toolbar-top {
  57. display: flex;
  58. align-items: center;
  59. justify-content: space-between;
  60. }
  61. .addressContainer {
  62. // background: linear-gradient(180deg, #FFDEE7 0%, #FFFFFF 12%, #FFFFFF 100%);
  63. // border-radius: 32rpx 32rpx 0rpx 0rpx;
  64. // height: 928rpx;
  65. display: flex;
  66. flex-direction: column;
  67. // .icon-close {
  68. // position: absolute;
  69. // z-index: 2;
  70. // top: 24rpx;
  71. // right: 12rpx;
  72. // padding: 20rpx;
  73. // width: 30rpx;
  74. // height: 30rpx;
  75. // }
  76. .pop-address-title {
  77. position: relative;
  78. z-index: 1;
  79. text-align: center;
  80. padding-top: 36rpx;
  81. padding-bottom: 20rpx;
  82. font-weight: 600;
  83. font-size: 36rpx;
  84. color: #131415;
  85. line-height: 50rpx;
  86. }
  87. .section {
  88. flex: 1 auto;
  89. padding: 24rpx 26rpx 0;
  90. }
  91. .van-cell-group {
  92. background: #FFFFFF;
  93. border-radius: 20rpx;
  94. overflow: hidden;
  95. .van-cell {
  96. padding: 24rpx;
  97. font-size: 30rpx;
  98. }
  99. .required {
  100. font-weight: 400;
  101. color: #666666;
  102. text {
  103. color: #FF5A56;
  104. }
  105. }
  106. .van-field__label {
  107. color: #666666;
  108. }
  109. .van-icon-arrow {
  110. color: #BFBFBF;
  111. }
  112. .textarea {
  113. height: 72rpx;
  114. }
  115. }
  116. .van-picker-column__item--selected {
  117. font-weight: 600;
  118. font-size: 32rpx;
  119. color: #FE4600 !important;
  120. }
  121. .pop-btn-group {
  122. padding: 12rpx 32rpx 50rpx 32rpx;
  123. // box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
  124. background-color: #fff;
  125. button[disabled] {
  126. color: #FEFFCA !important;
  127. }
  128. }
  129. .submit-btn {
  130. width: 100% !important;
  131. margin: 0 !important;
  132. padding: 0 !important;
  133. line-height: 94rpx;
  134. background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
  135. box-shadow: 0rpx 14rpx 14rpx 0rpx rgba(0, 0, 0, 0.18);
  136. border-radius: 36rpx;
  137. border: 8rpx solid #FFFFFF;
  138. font-weight: 600;
  139. font-size: 36rpx;
  140. color: #FEFFCA;
  141. }
  142. }