index.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. .group {
  44. margin-bottom: 30rpx;
  45. .label {
  46. height: 36rpx;
  47. font-size: 30rpx;
  48. font-family: AppleSystemUIFont-Bold, AppleSystemUIFont;
  49. font-weight: bold;
  50. color: #333333;
  51. margin-bottom: 10rpx;
  52. text {
  53. margin: 0 20rpx 0 30rpx;
  54. }
  55. }
  56. .main {
  57. display: flex;
  58. flex-wrap: wrap;
  59. .item {
  60. display: flex;
  61. flex-direction: column;
  62. align-items: center;
  63. padding: 20rpx 0;
  64. width: 20%;
  65. border-radius: 16rpx;
  66. .icon-box {
  67. width: 80rpx;
  68. border-radius: 16rpx;
  69. line-height: 80rpx;
  70. text-align: center;
  71. text {
  72. font-size: 40rpx;
  73. }
  74. }
  75. .name {
  76. width: 80%;
  77. line-height: 30rpx;
  78. font-size: 24rpx;
  79. font-family: AppleSystemUIFont-Regular, AppleSystemUIFont;
  80. color: #333333;
  81. margin-top: 16rpx;
  82. text-align: center;
  83. }
  84. }
  85. }
  86. }
  87. }