table-item.less
1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
.table {
width: 600px;
text-align: center;
color: #484848;
font-size: 14px;
.rank-wrap {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
line-height: 0px;
.me {
margin-top: 12px;
height: 24px;
}
.rank {
// margin-top: 24px;
}
}
.rank-icon {
width: 31px;
height: 42px;
}
.tr {
// cursor: pointer;
padding: 0 12px;
display: flex;
align-items: center; // height: 72px;
height: 60px;
background-color: #ffffff; // .fj; // 单元格
display: flex;
justify-content: space-between;
justify-content: flex-start;
.td {
padding: 0 10px;
width: 60px;
.val {
height: 36px;
line-height: 42px;
font-size: 20px;
}
.day {
height: 24px;
line-height: 24px;
color: #aaaaaa;
font-size: 12px;
}
}
.tdd {}
.tdd:hover {
background-color: #dddddd;
}
.point {
cursor: pointer;
}
}
.tr:nth-child(even) {
background-color: #e3eef4;
}
.th {
background-color: #ffffff;
}
}