address.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* pages/checkAddress/handleAddCheck.wxss */
  2. .address-content {
  3. width: 100%;
  4. height: 100%;
  5. background-color: #f7f7f7;
  6. position: relative;
  7. }
  8. .main-content {
  9. width: 690rpx;
  10. height: calc(100% - 150rpx);
  11. padding-top: 1rpx;
  12. margin: 0 auto;
  13. overflow-y:auto;
  14. }
  15. .outrang-text {
  16. font-size: 30rpx;
  17. font-weight: bold;
  18. color: #333333;
  19. margin: 40rpx 0 20rpx 0;
  20. }
  21. .addrss-item {
  22. width: 100%;
  23. min-height: 232rpx;
  24. border-radius: 20rpx;
  25. background-color: #fff;
  26. margin-top: 20rpx;
  27. }
  28. .top {
  29. width: 100%;
  30. min-height: 156rpx;
  31. border-bottom: 1rpx solid #eee;
  32. }
  33. .username {
  34. width: 100%;
  35. height: 92rpx;
  36. }
  37. .name {
  38. font-size: 30rpx;
  39. font-weight: bold;
  40. color: #333333;
  41. margin: 0 20rpx 0 30rpx;
  42. }
  43. .phone {
  44. font-size: 26rpx;
  45. font-weight: 400;
  46. color: #999999;
  47. }
  48. .address-detail {
  49. font-size: 26rpx;
  50. font-weight: 400;
  51. color: #333333;
  52. padding: 0 30rpx;
  53. }
  54. .button {
  55. height: 72rpx;
  56. justify-content: flex-end;
  57. }
  58. .btn {
  59. height: 100%;
  60. font-size: 24rpx;
  61. font-weight: 400;
  62. color: #999999;
  63. }
  64. .edit-btn {
  65. margin-right: 58rpx;
  66. }
  67. .delete-btn {
  68. margin-right: 30rpx;
  69. }
  70. .btn-icon {
  71. width: 30rpx;
  72. height: 30rpx;
  73. margin-right: 10rpx;
  74. }
  75. .add-address-btn {
  76. position: fixed;
  77. bottom: 60rpx;
  78. left: 4%;
  79. width: 690rpx;
  80. height: 80rpx;
  81. border-radius: 10rpx;
  82. margin: 0 auto;
  83. }
  84. .addrss-item-disabled .name {
  85. color: #999999;
  86. }
  87. .addrss-item-disabled .address-detail {
  88. color: #999999;
  89. }
  90. .nodate {
  91. width: 100%;
  92. height: calc(100% - 88rpx);
  93. display: flex;
  94. flex-direction: column;
  95. justify-content: flex-start;
  96. align-items: center;
  97. }