index.module.scss 673 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .MainM {
  2. :global {
  3. .mainBox {
  4. width: 100%;
  5. height: calc(100% - 90px);
  6. }
  7. .mainFllo {
  8. width: 100%;
  9. height: 90px;
  10. background-color: #fff;
  11. display: flex;
  12. align-items: center;
  13. .mainFlloRow {
  14. width: 20%;
  15. text-align: center;
  16. &>div {
  17. margin: 0 auto;
  18. width: 40px;
  19. height: 40px;
  20. background-size: 100% 100%;
  21. }
  22. &>p {
  23. font-size: 14px;
  24. color: #47392C;
  25. }
  26. }
  27. .mainFlloRowAc {
  28. pointer-events: none;
  29. &>p {
  30. color: #47392C;
  31. font-weight: 700;
  32. }
  33. }
  34. }
  35. }
  36. }