index.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .uni-collapse-item {
  2. height: 120rpx!important;
  3. }
  4. .header-banner-warp {
  5. background-color: #fff;
  6. padding-top: 40rpx;
  7. position: fixed;
  8. top: 0rpx;
  9. left: 0;
  10. right: 0;
  11. z-index: 10;
  12. border-bottom: 1rpx solid #dddddd;
  13. overflow: hidden;
  14. font-size: 32rpx;
  15. }
  16. .header-banner-warp .header-banner {
  17. height: 88rpx;
  18. line-height: 88rpx;
  19. display: flex;
  20. justify-content: space-between;
  21. padding: 0 20rpx;
  22. background-color: #fff;
  23. }
  24. .menu-modal {
  25. position: fixed;
  26. top: 129rpx;
  27. left: 0;
  28. bottom: 0;
  29. right: 0;
  30. display: flex;
  31. z-index: 1;
  32. }
  33. .menu-modal .left-banner {
  34. width: 200rpx;
  35. background-color: #e9e9e9;
  36. font-size: 28rpx;
  37. }
  38. .menu-modal .left-banner ._li {
  39. height: 120rpx;
  40. line-height: 120rpx;
  41. color: #666666;
  42. text-align: center;
  43. }
  44. .menu-modal .left-banner .active {
  45. background-color: #fff;
  46. color: #3370FF;
  47. position: relative;
  48. }
  49. .menu-modal .left-banner .active::before {
  50. display: block;
  51. content: " ";
  52. width: 8rpx;
  53. height: 48rpx;
  54. position: absolute;
  55. left: 0rpx;
  56. top: 36rpx;
  57. background-color: #3370FF;
  58. }
  59. .menu-modal .right-banner {
  60. width: calc(100% - 200rpx);
  61. background-color: #ffffff;
  62. }
  63. .menu-modal .right-banner .right-banner-box {
  64. padding: 30rpx;
  65. display: flex;
  66. justify-content: space-between;
  67. flex-wrap: wrap;
  68. }
  69. .menu-modal .right-banner .right-banner-box view {
  70. width: 32%;
  71. height: 64rpx;
  72. text-align: center;
  73. line-height: 64rpx;
  74. background-color: #F1F1F1;
  75. color: #333333;
  76. font-size: 24rpx;
  77. margin-bottom: 20rpx;
  78. }