main.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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: 2;
  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. width: 100%;
  40. z-index: 2;
  41. }
  42. .filter-lists {
  43. display: flex;
  44. justify-content: space-around;
  45. align-items: flex-start;
  46. }
  47. .filter-list {
  48. display: flex;
  49. flex-direction: column;
  50. width: 33%;
  51. padding: 5rpx 0rpx;
  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. margin-bottom: 20rpx;
  78. display: flex;
  79. flex-direction: column;
  80. align-items: center;
  81. }