menu-function.module.less 763 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .menuFunction {
  2. min-height: 100vh;
  3. background-color: #f8f8f8;
  4. .menuContent {
  5. margin: 12px 13px;
  6. padding-bottom: 12px;
  7. background-color: #fff;
  8. border-radius: 10px;
  9. h2 {
  10. padding: 12px 12px 8px;
  11. font-size: 16px;
  12. font-weight: 500;
  13. color: #333333;
  14. line-height: 22px;
  15. }
  16. .functionImg {
  17. width: 47px;
  18. height: 47px;
  19. }
  20. .gray {
  21. transition: all 0.3s ease;
  22. filter: grayscale(100%);
  23. opacity: 0.76;
  24. }
  25. .functionText {
  26. max-width: 50px;
  27. padding-top: 5px;
  28. font-size: 12px;
  29. color: #333333;
  30. line-height: 17px;
  31. }
  32. :global {
  33. .van-grid-item__content {
  34. padding-top: 10px;
  35. padding-bottom: 10px;
  36. }
  37. }
  38. }
  39. }