tool.css 727 B

123456789101112131415161718192021222324252627282930313233343536
  1. @font-face {
  2. font-family: 'ZHFA';
  3. src:url('./font/zhA_tool.woff2') format('woff2');
  4. }
  5. .tool-head {
  6. background-color: #f9faff;
  7. padding: 20px 90px;
  8. }
  9. .tool-head h1{
  10. font-family: "ZHFA", sans-serif;
  11. font-size: 50px;
  12. color: #000000;
  13. }
  14. .tool-list {
  15. background-color: #ffffff;
  16. padding: 40px 50px;
  17. display: grid;
  18. grid-auto-flow: column;
  19. align-items: stretch;
  20. gap: 30px;
  21. justify-content: center;
  22. }
  23. .tool-inner {
  24. box-sizing: border-box;
  25. border: 1px solid #b1b1b1;
  26. border-radius: 10px;
  27. width: 400px;
  28. padding: 20px;
  29. transition: background-color 0.7s ease;
  30. }
  31. .tool-inner:hover {
  32. background-color: #eaeefd;
  33. transition: background-color 0.7s ease;
  34. }