index.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .grld {
  2. width: 100vw;
  3. background-color: #fff;
  4. box-sizing: border-box;
  5. padding-top: 30rpx;
  6. .group {
  7. margin-bottom: 30rpx;
  8. .label {
  9. height: 36rpx;
  10. font-size: 30rpx;
  11. font-family: AppleSystemUIFont-Bold, AppleSystemUIFont;
  12. font-weight: bold;
  13. color: #333333;
  14. margin-bottom: 10rpx;
  15. text {
  16. margin: 0 20rpx 0 30rpx;
  17. }
  18. }
  19. .main {
  20. display: flex;
  21. flex-wrap: wrap;
  22. .item {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. padding: 20rpx 0;
  27. width: 20%;
  28. border-radius: 16rpx;
  29. .icon-box {
  30. width: 80rpx;
  31. border-radius: 16rpx;
  32. line-height: 80rpx;
  33. text-align: center;
  34. text {
  35. font-size: 40rpx;
  36. }
  37. }
  38. .name {
  39. width: 80%;
  40. line-height: 30rpx;
  41. font-size: 24rpx;
  42. font-family: AppleSystemUIFont-Regular, AppleSystemUIFont;
  43. color: #333333;
  44. margin-top: 16rpx;
  45. text-align: center;
  46. }
  47. }
  48. }
  49. }
  50. /* 最新通告和最新消息使用 */
  51. .newest {
  52. .label {
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. .route {
  57. font-weight: normal;
  58. font-size: 26rpx;
  59. }
  60. }
  61. .annunciate {
  62. font-size: 28rpx;
  63. padding: 10rpx 30rpx;
  64. padding-left: 50rpx;
  65. color: rgb(82, 80, 80);
  66. }
  67. }
  68. }
  69. .msg-mian {
  70. padding: 10rpx 30rpx;
  71. .name {
  72. text {
  73. font-weight: normal;
  74. font-size: 24rpx;
  75. color: #999;
  76. margin-left: 10rpx;
  77. }
  78. }
  79. .message {
  80. margin-top: 8rpx;
  81. }
  82. }