index.wxss 1.4 KB

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