style.scss 894 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .table-layout{
  2. width: 100%;
  3. color: #777;
  4. font-size: 12px;
  5. .check-cls{
  6. width:80px;
  7. text-align:left!important;
  8. margin-left:20px;
  9. }
  10. .t-header{
  11. display: flex;
  12. justify-content: space-around;
  13. align-items: center;
  14. width: 100%;
  15. padding: 0 0 15px;
  16. li{
  17. text-align: center;
  18. display: inline-block;
  19. }
  20. }
  21. .t-con{
  22. .t-item{
  23. display: flex;
  24. justify-content: space-around;
  25. align-items: center;
  26. width: 100%;
  27. padding: 5px 0;
  28. li{
  29. text-align: center;
  30. display: inline-block;
  31. span{
  32. word-break: break-all;
  33. // display: inline-block;
  34. }
  35. }
  36. }
  37. .line{
  38. min-height: 50px;
  39. border-bottom: 1px solid rgba($color: #202020, $alpha: 0.1);
  40. &:first-of-type{
  41. border-top: 1px solid rgba($color: #202020, $alpha: 0.1);
  42. }
  43. }
  44. }
  45. }