delivery-address.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* pages/delivery-address/delivery-address.wxss */
  2. page {
  3. background-color: #f4f4f4;
  4. border-top: 2rpx solid #e9eaec;
  5. padding-bottom: 150rpx;
  6. }
  7. .main {
  8. margin-top: 20rpx;
  9. }
  10. .address {
  11. margin-bottom: 15rpx;
  12. width: 100%;
  13. background-color: #fff;
  14. border-bottom: 2rpx solid #e9eaec;
  15. }
  16. .address .personal {
  17. position: relative;
  18. padding: 20rpx 30rpx;
  19. border-bottom: 3rpx dashed #e9eaec;
  20. }
  21. .address .personal .info-tit .name {
  22. margin-right: 30rpx;
  23. font-size: 32rpx;
  24. display: inline-block;
  25. }
  26. .address .personal .info-tit .tel {
  27. font-size: 30rpx;
  28. }
  29. .address .personal .info-tit image {
  30. position: absolute;
  31. right: 30rpx;
  32. top: 46rpx;
  33. width: 40rpx;
  34. height: 40rpx;
  35. margin-left: 50rpx;
  36. vertical-align: middle;
  37. }
  38. .personal .addr {
  39. font-size: 26rpx;
  40. margin: 10rpx 0;
  41. }
  42. .personal .addr .addr-get {
  43. display: inline-block;
  44. color: #999;
  45. width: 100%;
  46. word-break: break-word;
  47. }
  48. .address .select-btn {
  49. padding: 15rpx 30rpx;
  50. display: flex;
  51. align-items: center;
  52. justify-content: space-between;
  53. }
  54. .address .select-btn .box {
  55. font-size: 26rpx;
  56. }
  57. .footer {
  58. position: fixed;
  59. bottom: 0;
  60. width: 100%;
  61. height: 100rpx;
  62. line-height: 100rpx;
  63. text-align: center;
  64. background-color: #fff;
  65. box-shadow: 0 -1rpx 8rpx rgba(0, 0, 0, 0.05);
  66. }
  67. .footer text {
  68. font-size: 32rpx;
  69. color: #eb2444;
  70. }
  71. .empty .img {
  72. text-align: center;
  73. margin-top: 130rpx;
  74. }
  75. .empty .img image {
  76. width: 100rpx;
  77. height: 100rpx;
  78. display: block;
  79. margin: auto;
  80. }
  81. .empty .txt {
  82. margin-top: 30rpx;
  83. font-size: 24rpx;
  84. text-align: center;
  85. color: #999;
  86. }