style.scss 565 B

123456789101112131415161718192021222324252627282930313233
  1. .table-layout{
  2. width: 100%;
  3. color: #777;
  4. font-size: 12px;
  5. .t-header{
  6. display: flex;
  7. justify-content: space-around;
  8. align-items: center;
  9. width: 100%;
  10. padding: 0 0 15px;
  11. li{
  12. text-align: center;
  13. display: inline-block;
  14. }
  15. }
  16. .t-con{
  17. .t-item{
  18. display: flex;
  19. justify-content: space-around;
  20. align-items: center;
  21. width: 100%;
  22. padding: 5px 0;
  23. li{
  24. text-align: center;
  25. display: inline-block;
  26. span{
  27. word-break: break-all;
  28. }
  29. }
  30. }
  31. }
  32. }