main.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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: 60rpx;
  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-list {
  49. display: flex;
  50. flex-direction: column;
  51. justify-content: flex-start;
  52. width: 33%;
  53. max-height: 500rpx;
  54. overflow-y: scroll;
  55. font-size: 25rpx;
  56. background: rgba(255, 255, 255, 0.95);
  57. opacity: 0;
  58. }
  59. .filter-list-title {
  60. display: flex;
  61. justify-content: space-between;
  62. line-height: 50rpx;
  63. margin-left: 15rpx;
  64. }
  65. .filter-list-subtitle {
  66. display: flex;
  67. justify-content: space-between;
  68. line-height: 50rpx;
  69. margin-left: 20rpx;
  70. }
  71. .filter-list-item {
  72. display: flex;
  73. justify-content: space-between;
  74. line-height: 50rpx;
  75. margin-left: 25rpx;
  76. margin-right: 25rpx;
  77. }