_coin.css
1.9 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
75
76
77
78
79
80
81
82
83
84
85
86
.yoho-coin {
background: #f6f6f6;
padding-top: 20px;
.coin-total {
padding: 38px 0;
background: white;
text-align: center;
p:first-child {
font-size: 34px;
line-height: 40px;
}
p:nth-child(2) {
font-size: 78px;
color: #4a90e2;
line-height: 80px;
}
p:last-child {
color: #b0b0b0;
font-size: 28px;
line-height: 40px;
}
}
.coin-detail {
margin-top: 40px;
> p:first-child {
padding: 0 30px;
font-size: 28px;
color: #b0b0b0;
}
.coin-detail-list {
padding: 0 30px;
background: white;
border-bottom: 1px solid #eee;
li {
height: 128px;
display: flex;
padding: 20px 0;
border-bottom: 1px solid #eee;
&:last-child {
border-bottom: 0 none;
}
}
.coin-source {
flex: 1;
p {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
height: 1.2em;
line-height: 1.25;
overflow: hidden;
font-size: 34px;
margin-right: 60px;
}
time {
display: block;
margin-top: 5px;
font-size: 28px;
color: #b0b0b0;
}
}
.coin-num {
font-size: 34px;
line-height: 92px;
i {
font-style: normal;
}
}
}
}
}