address.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. page {
  2. height: 100%;
  3. width: 100%;
  4. background: #f4f4f4;
  5. }
  6. .container {
  7. height: 100%;
  8. width: 100%;
  9. }
  10. .address-list {
  11. padding-left: 31.25rpx;
  12. background: #fff;
  13. background-size: auto 10.5rpx;
  14. margin-bottom: 90rpx;
  15. }
  16. .address-list .item {
  17. height: 156.55rpx;
  18. align-items: center;
  19. display: flex;
  20. border-bottom: 1rpx solid #dcd9d9;
  21. }
  22. .address-list .l {
  23. width: 125rpx;
  24. height: 80rpx;
  25. overflow: hidden;
  26. }
  27. .address-list .name {
  28. width: 125rpx;
  29. height: 43rpx;
  30. font-size: 29rpx;
  31. color: #333;
  32. margin-bottom: 5.2rpx;
  33. text-overflow: ellipsis;
  34. white-space: nowrap;
  35. overflow: hidden;
  36. }
  37. .address-list .default {
  38. width: 62.5rpx;
  39. height: 33rpx;
  40. line-height: 28rpx;
  41. text-align: center;
  42. font-size: 20rpx;
  43. color: #b4282d;
  44. border: 1rpx solid #b4282d;
  45. visibility: visible;
  46. }
  47. .address-list .c {
  48. flex: 1;
  49. height: auto;
  50. overflow: hidden;
  51. }
  52. .address-list .mobile {
  53. height: 29rpx;
  54. font-size: 29rpx;
  55. line-height: 29rpx;
  56. overflow: hidden;
  57. color: #333;
  58. margin-bottom: 6.25rpx;
  59. }
  60. .address-list .address {
  61. height: 37rpx;
  62. font-size: 25rpx;
  63. line-height: 37rpx;
  64. overflow: hidden;
  65. color: #666;
  66. }
  67. .address-list .r {
  68. width: 52rpx;
  69. height: auto;
  70. overflow: hidden;
  71. margin-right: 16.5rpx;
  72. }
  73. .address-list .del {
  74. display: block;
  75. width: 52rpx;
  76. height: 52rpx;
  77. }
  78. .add-address {
  79. border: none;
  80. right: 0;
  81. display: flex;
  82. justify-content: center;
  83. align-items: center;
  84. width: 90%;
  85. height: 90rpx;
  86. line-height: 98rpx;
  87. position: absolute;
  88. bottom: 0;
  89. left: 0;
  90. border-radius: 0;
  91. padding: 0;
  92. margin: 0;
  93. margin-left: 5%;
  94. text-align: center;
  95. /* padding-left: -5rpx; */
  96. font-size: 25rpx;
  97. color: #f4f4f4;
  98. border-top-left-radius: 50rpx;
  99. border-bottom-left-radius: 50rpx;
  100. border-top-right-radius: 50rpx;
  101. border-bottom-right-radius: 50rpx;
  102. letter-spacing: 3rpx;
  103. background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
  104. }
  105. .empty-view {
  106. height: 100%;
  107. width: 100%;
  108. display: flex;
  109. flex-direction: column;
  110. align-items: center;
  111. justify-content: center;
  112. }
  113. .empty-view .text {
  114. width: auto;
  115. font-size: 28rpx;
  116. line-height: 35rpx;
  117. color: #999;
  118. }