index.less 493 B

1234567891011121314151617181920212223242526272829
  1. .header {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. height: 100px;
  6. .title {
  7. color: #000000;
  8. font-weight: 600;
  9. font-size: 24px;
  10. }
  11. }
  12. .c {
  13. display: flex;
  14. align-items: center;
  15. justify-content: space-between;
  16. height: 50px;
  17. .title {
  18. color: #000;
  19. font-weight: 600;
  20. font-size: 24px;
  21. &::before {
  22. margin-right: 10px;
  23. color: #f0da21;
  24. font-weight: normal;
  25. font-size: 32px;
  26. content: '/';
  27. }
  28. }
  29. }