my-address.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding: 20rpx 24rpx;
  6. box-sizing: border-box;
  7. }
  8. .radio-row {
  9. display: flex;
  10. align-items: center;
  11. }
  12. .circle {
  13. width: 30rpx;
  14. height: 30rpx;
  15. }
  16. .default {
  17. color: #919191;
  18. font-size: 26rpx;
  19. line-height: 26rpx;
  20. margin-left: 20rpx;
  21. }
  22. .list {
  23. width: 100%;
  24. display: flex;
  25. flex-direction: column;
  26. }
  27. .item {
  28. width: 100%;
  29. display: flex;
  30. flex-direction: column;
  31. border-radius: 16rpx;
  32. background-color: #fff;
  33. margin-bottom: 20rpx;
  34. }
  35. .item:last-child {
  36. margin-bottom: 0;
  37. }
  38. .item-top {
  39. width: 100%;
  40. display: flex;
  41. align-items: center;
  42. padding: 28rpx 22rpx 32rpx 16rpx;
  43. box-sizing: border-box;
  44. }
  45. .item-top-sidebar {
  46. flex: 1;
  47. display: flex;
  48. flex-direction: column;
  49. }
  50. .address-icon {
  51. width: 70rpx;
  52. height: 70rpx;
  53. margin-right: 16rpx;
  54. }
  55. .item-bottom {
  56. width: 100%;
  57. height: 93rpx;
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. border-top: 1px dashed #E2E6E9;
  62. box-sizing: border-box;
  63. padding: 0 28rpx;
  64. }
  65. .name {
  66. width: 100%;
  67. display: flex;
  68. align-items: center;
  69. color: #000000;
  70. font-size: 34rpx;
  71. font-weight: bold;
  72. }
  73. .number {
  74. color: #A7A7A7;
  75. font-size: 28rpx;
  76. margin-left: 24rpx;
  77. font-weight: normal;
  78. }
  79. .default-tag {
  80. width: 72rpx;
  81. height: 38rpx;
  82. line-height: 38rpx;
  83. display: flex;
  84. justify-content: center;
  85. align-items: center;
  86. border: 1px solid #F2501A;
  87. border-radius: 100rpx;
  88. color: #F2501A;
  89. font-size: 20rpx;
  90. margin-left: 16rpx;
  91. }
  92. .msg {
  93. width: 100%;
  94. color: #919191;
  95. font-size: 26rpx;
  96. margin-top: 8rpx;
  97. }
  98. .btn-box {
  99. display: flex;
  100. align-items: center;
  101. }
  102. .btn-box button {
  103. display: flex;
  104. align-items: center;
  105. font-size: 26rpx;
  106. color: #919191;
  107. margin: 0 30rpx 0 0;
  108. background-color: initial;
  109. padding: 0;
  110. }
  111. .btn-box button:last-child {
  112. margin-right: 0;
  113. }
  114. .btn-box button image {
  115. width: 40rpx;
  116. height: 40rpx;
  117. margin-right: 9rpx;
  118. }
  119. .footer {
  120. width: 100%;
  121. display: flex;
  122. justify-content: center;
  123. align-items: center;
  124. padding: 74rpx 25rpx;
  125. box-sizing: border-box;
  126. }
  127. .footer button {
  128. width: 100%;
  129. height: 90rpx;
  130. line-height: 90rpx;
  131. border-radius: 100rpx;
  132. display: flex;
  133. justify-content: center;
  134. align-items: center;
  135. background-color: #F2501A;
  136. box-sizing: border-box;
  137. color: #fff;
  138. font-size: 28rpx;
  139. }
  140. .footer button image {
  141. width: 38rpx;
  142. height: 38rpx;
  143. margin-right: 14rpx;
  144. }
  145. button::after {
  146. border: none;
  147. }
  148. .circle-box {
  149. width: 70rpx;
  150. height: 70rpx;
  151. border-radius: 50%;
  152. display: flex;
  153. justify-content: center;
  154. align-items: center;
  155. color: #F2501A;
  156. font-size: 26rpx;
  157. background: linear-gradient(40deg, rgba(242, 80, 26, 0.5), rgba(247, 148, 116, 0.5));
  158. border-radius: 50%;
  159. margin-right: 16rpx;
  160. }
  161. .edit-btn {
  162. background: initial;
  163. border-radius: initial;
  164. margin-left: 60rpx;
  165. }
  166. .edit-btn image {
  167. width: 27rpx;
  168. }