common.css
1.6 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
.navbar{
position: fixed;
top: 0;
left: 0;
z-index: 99;
}
.scroll{
width: 100%;
overflow: hidden;
padding: 0 0.32rem;
box-sizing: border-box;
padding-bottom: 2rem;
height: 16.24rem;
margin-top: 1rem;
}
.display-flex-around{
display: flex;
justify-content: space-around;
align-items: center;
}
.display-flex-center{
display: flex;
justify-content: center;
align-items: center;
}
.display-flex-between{
display: flex;
justify-content: space-between;
align-items: center;
}
.display-flex{
display: flex;
align-items: center;
}
.p-1{
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
line-clamp: 1;
-webkit-box-orient: vertical;
}
.p-2{
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
}
.onBottom{
width: 100%;
height: auto;
padding: 0.32rem 0;
text-align: center;
color: rgb(228, 226, 226);
font-size: 0.24rem;
}
.footer{
width: 100%;
height: auto;
padding: 0.15rem 0.32rem 0.32rem;
box-sizing: border-box;
background-color: #fff;
position: fixed;
bottom: 0;
left: 0;
}
.footer_button{
width: 100%;
height: 0.88rem;
opacity: 1;
background: rgba(37.19,124.31,255,1);
color: rgba(255,255,255,1);
font-size: 0.32rem;
font-weight: 500;
font-family: "PingFang SC";
text-align: center;
line-height: 0.88rem;
}