achieve.less 955 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .ranking {
  2. margin: 0 0 2vw 0;
  3. .name {
  4. font-size: 14px;
  5. font-weight: bold;
  6. padding: 2vw;
  7. background-color: #39434d;
  8. color: #fff;
  9. text-align: center;
  10. }
  11. .view_1 {
  12. width: 96vw;
  13. margin: 0 0 2vw 0;
  14. }
  15. }
  16. /* 表格代码 */
  17. .table {
  18. border: 1px solid #dadada;
  19. border-right: 0;
  20. border-bottom: 0;
  21. width: 95.6vw;
  22. }
  23. .tr {
  24. width: 100%;
  25. display: flex;
  26. justify-content: space-between;
  27. overflow-x: scroll;
  28. }
  29. .th,
  30. .td {
  31. padding: 10px;
  32. border-bottom: 1px solid #dadada;
  33. border-right: 1px solid #dadada;
  34. border-left: 1px solid #dadada;
  35. text-align: center;
  36. width: 100%;
  37. }
  38. .th1,
  39. .th2,
  40. .td1,
  41. .td2 {
  42. width: 50%;
  43. }
  44. .th {
  45. width: 20vw;
  46. font-size: 13px;
  47. font-weight: 800;
  48. overflow: hidden;
  49. word-break: break-all;
  50. }
  51. .td {
  52. width: 20vw;
  53. font-size: 13px;
  54. overflow: hidden;
  55. word-break: break-all;
  56. }