main.wxss 1.6 KB

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