style.module.scss 564 B

1234567891011121314151617181920212223242526272829
  1. .footer-box {
  2. width: 100%;
  3. flex: 1;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: end;
  7. .text {
  8. height: .81rem;
  9. background-color: #131212;
  10. color: #7d7d7d;
  11. font-size: .12rem;
  12. display: -webkit-box;
  13. display: -ms-flexbox;
  14. display: flex;
  15. -webkit-box-align: center;
  16. -ms-flex-align: center;
  17. align-items: center;
  18. -webkit-box-pack: justify;
  19. -ms-flex-pack: justify;
  20. justify-content: space-between;
  21. padding: 0 .36rem;
  22. .iconfontIcon {
  23. color: #e53535;
  24. font-size: .18rem;
  25. }
  26. }
  27. }