addresslist.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. .top_boxs {
  2. width: calc(100% - 60rpx);
  3. padding: 20rpx 30rpx;
  4. background-color: #fff;
  5. display: flex;
  6. justify-content: space-between;
  7. align-content: center;
  8. }
  9. .diz {
  10. width: 25%;
  11. padding: 16rpx 0rpx;
  12. }
  13. .search-bar {
  14. width: 75%;
  15. position: relative;
  16. display: flex;
  17. align-items: center;
  18. background-color: #fff;
  19. border: 1rpx solid #dcdfe6;
  20. border-radius: 12rpx;
  21. padding: 16rpx 20rpx;
  22. }
  23. .search-bar input {
  24. flex: 1;
  25. height: 100%;
  26. padding-right: 60rpx;
  27. font-size: 32rpx;
  28. border: none;
  29. background: transparent;
  30. }
  31. .search-icon {
  32. position: absolute;
  33. right: 20rpx;
  34. width: 45rpx;
  35. height: 45rpx;
  36. }
  37. .container {
  38. background-color: #f5f5f5;
  39. padding: 20rpx 30rpx;
  40. }
  41. .address_list {
  42. width: 100%;
  43. margin-bottom: 20rpx;
  44. }
  45. .address_item {
  46. background-color: #fff;
  47. border-radius: 10rpx;
  48. padding: 20rpx;
  49. display: flex;
  50. align-items: center;
  51. justify-content: space-between;
  52. margin-bottom: 10rpx;
  53. }
  54. .location_icon {
  55. width: 30rpx;
  56. height: 30rpx;
  57. margin-right: 10rpx;
  58. }
  59. .address_text {
  60. font-size: 28rpx;
  61. color: #333;
  62. flex: 1;
  63. margin-left: 10rpx;
  64. }
  65. .action_buttons {
  66. width: 15%;
  67. display: flex;
  68. /* align-items: center; */
  69. }
  70. .search-icons {
  71. width: 35rpx;
  72. height: 35rpx;
  73. }
  74. .edit_button, .delete_button {
  75. width: 40rpx;
  76. height: 40rpx;
  77. background-color: #f5f5f5;
  78. border-radius: 50%;
  79. display: flex;
  80. align-items: center;
  81. justify-content: center;
  82. font-size: 28rpx;
  83. color: #333;
  84. margin-left: 10rpx;
  85. }
  86. .add_address_button {
  87. width: calc(100% - 40rpx) !important;
  88. height: 80rpx;
  89. background-color: #3b8cff;
  90. color: #fff;
  91. font-size: 32rpx;
  92. border-radius: 40rpx;
  93. margin-top: 20rpx;
  94. }
  95. .buttons_boxs {
  96. position: fixed;
  97. bottom: 40rpx;
  98. left: 0;
  99. width: 100%;
  100. }