locationAdd.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /* pages/locationAdd/locationAdd.wxss */
  2. page {
  3. background: #f7f7f7;
  4. }
  5. .top-card-box {
  6. padding: 20rpx;
  7. background-color: #ffffff;
  8. border-radius: 16rpx;
  9. }
  10. .container {
  11. padding: 20rpx;
  12. }
  13. .content{
  14. padding: 0 24rpx;
  15. }
  16. .box{
  17. border-radius: 16rpx;
  18. background-color: #fff;
  19. padding: 0 24rpx;
  20. margin-bottom: 20rpx;
  21. }
  22. .shop-list{
  23. }
  24. .shop{
  25. line-height: 92rpx;
  26. display: flex;
  27. align-items: center;
  28. }
  29. .shop .name.disabled{
  30. color: #AAAAAA;
  31. }
  32. .shop .tag{
  33. width: 104rpx;
  34. height: 36rpx;
  35. line-height: 36rpx;
  36. text-align: center;
  37. background: #AAAAAA;
  38. border-radius: 22rpx 22rpx 22rpx 22rpx;
  39. font-size: 24rpx;
  40. color: #FFFFFF;
  41. margin-left: 20rpx;
  42. }
  43. .near-shop{
  44. margin-bottom: 20rpx;
  45. padding-top: 20rpx;
  46. padding-bottom: 20rpx;
  47. }
  48. .shop-list .desc{
  49. font-size: 24rpx;
  50. color: #AAAAAA;
  51. }
  52. .current-location {
  53. font-family: PingFang SC, PingFang SC;
  54. font-weight: normal;
  55. font-size: 24rpx;
  56. color: #AAAAAA;
  57. }
  58. .location-box {
  59. display: flex;
  60. align-items: center;
  61. justify-content: space-between;
  62. margin-top: 20rpx;
  63. }
  64. .location-address {
  65. display: flex;
  66. font-family: PingFang SC, PingFang SC;
  67. font-weight: bold;
  68. font-size: 28rpx;
  69. color: #181818;
  70. }
  71. .location-address .address-text {
  72. margin-left: 10rpx;
  73. width: 440rpx;
  74. overflow: hidden;
  75. white-space: nowrap;
  76. text-overflow: ellipsis;
  77. }
  78. .reset-location {
  79. display: flex;
  80. align-items: center;
  81. font-family: PingFang SC, PingFang SC;
  82. font-weight: normal;
  83. font-size: 24rpx;
  84. color: #006CE8;
  85. }
  86. .address-card-box {
  87. margin-top: 20rpx;
  88. padding-top: 20rpx;
  89. padding-bottom: 20rpx;
  90. }
  91. .my-address {
  92. display: flex;
  93. align-items: center;
  94. justify-content: space-between;
  95. }
  96. .address-edit {
  97. font-family: PingFang SC, PingFang SC;
  98. font-weight: normal;
  99. font-size: 24rpx;
  100. color: #006CE8;
  101. }
  102. .address-title {
  103. font-family: PingFang SC, PingFang SC;
  104. font-weight: normal;
  105. font-size: 24rpx;
  106. color: #AAAAAA;
  107. }
  108. .address-list-box {
  109. display: flex;
  110. align-items: center;
  111. margin-top: 24rpx;
  112. }
  113. .address-check {
  114. width: 32rpx;
  115. height: 32rpx;
  116. border-radius: 50%;
  117. border: 2rpx solid #AAAAAA;
  118. text-align: center;
  119. line-height: 32rpx;
  120. }
  121. .address-list {
  122. margin-left: 20rpx;
  123. width: 610rpx;
  124. }
  125. .address-list>view:first-child {
  126. font-weight: bold;
  127. font-size: 28rpx;
  128. color: #181818;
  129. }
  130. .address-list>view:last-child {
  131. margin-top: 10rpx;
  132. font-weight: normal;
  133. font-size: 24rpx;
  134. color: #AAAAAA;
  135. }
  136. .add-address-btn {
  137. position: fixed;
  138. bottom: 120rpx;
  139. left: 24rpx;
  140. width: 702rpx;
  141. height: 80rpx;
  142. background: #006CE8;
  143. border-radius: 40rpx;
  144. font-weight: bold;
  145. font-size: 28rpx;
  146. color: #FFFFFF;
  147. line-height: 80rpx;
  148. text-align: center;
  149. }