index.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. }