family-score.page.css
1.55 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
64
65
66
67
68
69
70
71
72
73
74
body,
html {
background-color: #f0f0f0;
}
.score-detail-c {
.cover-bg {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #000;
opacity: 0.4;
}
.tab {
height: 86px;
border-bottom: solid 1px #e0e0e0;
padding: 18px 0;
background-color: #fff;
position: relative;
z-index: 1;
.tab-item {
width: 250px;
height: 50px;
line-height: 50px;
float: left;
text-align: center;
font-size: 30px;
color: #1a1a1a;
border-right: solid 1px #e0e0e0;
&:last-child {
border-right: 0;
}
.list {
display: none;
width: 750px;
text-align: left;
padding-top: 18px;
li {
line-height: 90px;
border-bottom: solid 1px #e0e0e0;
padding: 0 30px;
background-color: #fff;
}
li:last-child {
border-bottom: 0;
}
}
}
}
.result {
.result-item {
height: 125px;
line-height: 125px;
padding: 0 34px;
background-color: #fff;
border-bottom: solid 1px #e0e0e0;
&:last-child {
border-bottom: 0;
}
}
}
}