locationAdd.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. .current-location {
  14. font-family: PingFang SC, PingFang SC;
  15. font-weight: normal;
  16. font-size: 24rpx;
  17. color: #AAAAAA;
  18. }
  19. .location-box {
  20. display: flex;
  21. align-items: center;
  22. justify-content: space-between;
  23. margin-top: 20rpx;
  24. }
  25. .location-address {
  26. display: flex;
  27. font-family: PingFang SC, PingFang SC;
  28. font-weight: bold;
  29. font-size: 28rpx;
  30. color: #181818;
  31. }
  32. .location-address .address-text {
  33. margin-left: 10rpx;
  34. width: 440rpx;
  35. overflow: hidden;
  36. white-space: nowrap;
  37. text-overflow: ellipsis;
  38. }
  39. .reset-location {
  40. display: flex;
  41. align-items: center;
  42. font-family: PingFang SC, PingFang SC;
  43. font-weight: normal;
  44. font-size: 24rpx;
  45. color: #04358D;
  46. }
  47. .address-card-box {
  48. margin-top: 20rpx;
  49. padding: 20rpx;
  50. background-color: #ffffff;
  51. border-radius: 16rpx;
  52. }
  53. .my-address {
  54. display: flex;
  55. align-items: center;
  56. justify-content: space-between;
  57. }
  58. .address-edit {
  59. font-family: PingFang SC, PingFang SC;
  60. font-weight: normal;
  61. font-size: 24rpx;
  62. color: #04358D;
  63. }
  64. .address-title {
  65. font-family: PingFang SC, PingFang SC;
  66. font-weight: normal;
  67. font-size: 24rpx;
  68. color: #AAAAAA;
  69. }
  70. .address-list-box {
  71. display: flex;
  72. align-items: center;
  73. margin-top: 24rpx;
  74. }
  75. .address-check {
  76. width: 32rpx;
  77. height: 32rpx;
  78. border-radius: 50%;
  79. border: 2rpx solid #AAAAAA;
  80. text-align: center;
  81. line-height: 32rpx;
  82. }
  83. .address-list {
  84. margin-left: 20rpx;
  85. width: 610rpx;
  86. }
  87. .address-list>view:first-child {
  88. font-weight: bold;
  89. font-size: 28rpx;
  90. color: #181818;
  91. }
  92. .address-list>view:last-child {
  93. margin-top: 10rpx;
  94. font-weight: normal;
  95. font-size: 24rpx;
  96. color: #AAAAAA;
  97. }
  98. .add-address-btn {
  99. position: fixed;
  100. bottom: 120rpx;
  101. width: 702rpx;
  102. height: 80rpx;
  103. background: #04358D;
  104. border-radius: 40rpx;
  105. font-weight: bold;
  106. font-size: 28rpx;
  107. color: #FFFFFF;
  108. line-height: 80rpx;
  109. text-align: center;
  110. }