main.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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-lists {
  36. position: fixed;
  37. top: 60rpx;
  38. left: 0rpx;
  39. display: flex;
  40. justify-content: space-around;
  41. align-items: flex-start;
  42. width: 100%;
  43. z-index: 100;
  44. }
  45. .filter-list {
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: flex-start;
  49. width: 33%;
  50. max-height: 500rpx;
  51. overflow-y: scroll;
  52. font-size: 25rpx;
  53. background: rgba(255, 255, 255, 0.95);
  54. opacity: 0;
  55. }
  56. .filter-list-title {
  57. display: flex;
  58. justify-content: space-between;
  59. line-height: 50rpx;
  60. margin-left: 15rpx;
  61. }
  62. .filter-list-subtitle {
  63. display: flex;
  64. justify-content: space-between;
  65. line-height: 50rpx;
  66. margin-left: 20rpx;
  67. }
  68. .filter-list-item {
  69. display: flex;
  70. justify-content: space-between;
  71. line-height: 50rpx;
  72. margin-left: 25rpx;
  73. margin-right: 25rpx;
  74. }
  75. .message-view {
  76. margin-top: 80rpx;
  77. display: flex;
  78. flex-direction: column;
  79. align-items: center;
  80. }