main.wxss 1.6 KB

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