12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .ranking {
- margin: 0 0 2vw 0;
- .name {
- font-size: 14px;
- font-weight: bold;
- padding: 2vw;
- background-color: #39434d;
- color: #fff;
- text-align: center;
- }
- .view_1 {
- width: 96vw;
- margin: 0 0 2vw 0;
- }
- }
- /* 表格代码 */
- .table {
- border: 1px solid #dadada;
- border-right: 0;
- border-bottom: 0;
- width: 95.6vw;
- }
- .tr {
- width: 100%;
- display: flex;
- justify-content: space-between;
- overflow-x: scroll;
- }
- .th,
- .td {
- padding: 10px;
- border-bottom: 1px solid #dadada;
- border-right: 1px solid #dadada;
- border-left: 1px solid #dadada;
- text-align: center;
- width: 100%;
- }
- .th1,
- .th2,
- .td1,
- .td2 {
- width: 50%;
- }
- .th {
- width: 20vw;
- font-size: 13px;
- font-weight: 800;
- overflow: hidden;
- word-break: break-all;
- }
- .td {
- width: 20vw;
- font-size: 13px;
- overflow: hidden;
- word-break: break-all;
- }
|