index.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* 顶部 */
  2. .header {
  3. display: flex;
  4. align-items: center;
  5. width: 750rpx;
  6. height: 88rpx;
  7. background-color: var(--bgColor);
  8. &_title {
  9. height: 50rpx;
  10. font-size: 36rpx;
  11. font-family: PingFang SC-Bold, PingFang SC;
  12. font-weight: bold;
  13. color: #FFFFFF;
  14. margin: 0 8rpx 0 24rpx;
  15. }
  16. }
  17. /* 滚动播放 */
  18. .notice-bar {
  19. font-size: 28rpx;
  20. font-family: PingFang SC-Regular, PingFang SC;
  21. .work {
  22. color: #FA8C16;
  23. margin-right: 20rpx;
  24. }
  25. }
  26. /* 轮播图区域 */
  27. .banner {
  28. height: 240rpx !important;
  29. swiper-item {
  30. width: 100vw;
  31. height: 240rpx !important;
  32. image {
  33. width: 100vw;
  34. height: 240rpx;
  35. }
  36. }
  37. }
  38. .grld {
  39. width: 100vw;
  40. background-color: #fff;
  41. box-sizing: border-box;
  42. padding-top: 30rpx;
  43. overflow: hidden;
  44. .group {
  45. margin-bottom: 30rpx;
  46. .label {
  47. height: 36rpx;
  48. font-size: 30rpx;
  49. font-family: AppleSystemUIFont-Bold, AppleSystemUIFont;
  50. font-weight: bold;
  51. color: #333333;
  52. margin-bottom: 10rpx;
  53. text {
  54. margin: 0 20rpx 0 30rpx;
  55. }
  56. }
  57. .main {
  58. display: flex;
  59. flex-wrap: wrap;
  60. .item {
  61. display: flex;
  62. flex-direction: column;
  63. align-items: center;
  64. padding: 20rpx 0;
  65. width: 20%;
  66. border-radius: 16rpx;
  67. .icon-box {
  68. width: 80rpx;
  69. border-radius: 16rpx;
  70. line-height: 80rpx;
  71. text-align: center;
  72. text {
  73. font-size: 40rpx;
  74. }
  75. }
  76. .name {
  77. width: 80%;
  78. line-height: 30rpx;
  79. font-size: 24rpx;
  80. font-family: AppleSystemUIFont-Regular, AppleSystemUIFont;
  81. color: #333333;
  82. margin-top: 16rpx;
  83. text-align: center;
  84. }
  85. }
  86. }
  87. }
  88. }