main.wxss 1.5 KB

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