main.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .page {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: flex-start;
  5. align-items: center;
  6. margin: 0%;
  7. }
  8. .filter {
  9. position: fixed;
  10. display: flex;
  11. justify-content: space-around;
  12. align-items: center;
  13. height: 60rpx;
  14. width: 100%;
  15. z-index: 100;
  16. background-color: #ffffff;
  17. box-shadow: 0rpx 0rpx 15rpx 0rpx rgba(0, 0, 0, 0.16);
  18. }
  19. .filter-item {
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. height: 100%;
  24. width: 33%;
  25. font-size: 24rpx;
  26. }
  27. .filter-arrow {
  28. height: 25rpx;
  29. width: 25rpx;
  30. margin-left: 10rpx;
  31. }
  32. .filter-line {
  33. height: 100%;
  34. width: 4rpx;
  35. background-color: rgba(0, 0, 0, 0.05);
  36. box-shadow: 0rpx 0rpx 15rpx 0rpx rgba(0, 0, 0, 0.16);
  37. }
  38. .filter-lists {
  39. position: fixed;
  40. top: 75rpx;
  41. left: 0rpx;
  42. display: flex;
  43. justify-content: space-around;
  44. align-items: flex-start;
  45. width: 100%;
  46. z-index: 100;
  47. }
  48. .filter-list1 {
  49. display: flex;
  50. flex-direction: column;
  51. justify-content: flex-start;
  52. width: 100%;
  53. font-size: 25rpx;
  54. background: rgba(255, 255, 255, 0.95);
  55. opacity: 0;
  56. }
  57. .filter-list {
  58. display: flex;
  59. flex-direction: column;
  60. justify-content: flex-start;
  61. width: 33%;
  62. font-size: 25rpx;
  63. background: rgba(255, 255, 255, 0.95);
  64. opacity: 0;
  65. }
  66. .filter-list-title {
  67. display: flex;
  68. justify-content: space-between;
  69. height: 40rpx;
  70. font-size: 25rpx;
  71. line-height: 40rpx;
  72. margin-left: 15rpx;
  73. margin-right: 15rpx;
  74. }
  75. .filter-list-subtitle {
  76. display: flex;
  77. justify-content: space-between;
  78. height: 40rpx;
  79. font-size: 25rpx;
  80. line-height: 40rpx;
  81. margin-left: 20rpx;
  82. margin-right: 15rpx;
  83. }
  84. .filter-list-item {
  85. display: flex;
  86. justify-content: space-between;
  87. height: 60rpx;
  88. line-height: 60rpx;
  89. margin-left: 20rpx;
  90. margin-right: 25rpx;
  91. }