add-address.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding: 20rpx 24rpx;
  6. box-sizing: border-box;
  7. }
  8. .list {
  9. width: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. background-color: #fff;
  13. border-radius: 16rpx;
  14. }
  15. .item {
  16. width: 100%;
  17. min-height: 124rpx;
  18. display: flex;
  19. align-items: center;
  20. border-bottom: 1px solid #F6F6F6;
  21. box-sizing: border-box;
  22. padding: 0 24rpx;
  23. box-sizing: border-box;
  24. }
  25. .item:last-child {
  26. border-bottom: none;
  27. }
  28. .item-other {
  29. width: 100%;
  30. min-height: 184rpx;
  31. display: flex;
  32. align-items: flex-start;
  33. border-bottom: 1px solid #F6F6F6;
  34. box-sizing: border-box;
  35. padding: 38rpx 24rpx 0;
  36. box-sizing: border-box;
  37. }
  38. .label {
  39. width: 30%;
  40. color: #090909;
  41. font-size: 32rpx;
  42. }
  43. .input {
  44. flex: 1;
  45. font-size: 32rpx;
  46. }
  47. .placeholder {
  48. color: #919191
  49. }
  50. .btn-box {
  51. width: 100%;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. padding: 40rpx 0;
  56. }
  57. .btn-box button {
  58. width: 100%;
  59. height: 90rpx;
  60. line-height: 90rpx;
  61. display: flex;
  62. align-items: center;
  63. justify-content: center;
  64. background-color: #E0E0E0;
  65. color: #919191;
  66. font-size: 34rpx;
  67. border-radius: 100rpx;
  68. }
  69. .active {
  70. background-color: #F2501A !important;
  71. color: #fff !important;
  72. }
  73. button::after {
  74. border: none;
  75. }
  76. .back-icon {
  77. width: 12rpx;
  78. margin-left: 20rpx;
  79. }
  80. .open-btn {
  81. height: inherit;
  82. line-height: inherit;
  83. background-color: initial;
  84. padding: 0;
  85. display: flex;
  86. align-items: center;
  87. margin: 0 10rpx 0 0;
  88. color: #333333;
  89. font-size: 28rpx;
  90. }
  91. .open-btn image {
  92. width: 40rpx;
  93. height: 40rpx;
  94. margin-right: 20rpx;
  95. }
  96. .row-between {
  97. width: 100%;
  98. display: flex;
  99. justify-content: space-between;
  100. align-items: center;
  101. color: #090909;
  102. font-size: 32rpx;
  103. }
  104. .textarea {
  105. flex: 1;
  106. color: #202020;
  107. font-size: 32rpx;
  108. height: 130rpx!important;
  109. }
  110. .picker{
  111. width: 60%;
  112. }