common.css
2.7 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
* {
margin: 0;
padding: 0;
}
html,
body {
padding-bottom: 0.88rem;
}
/* 公共头部 */
.top {
width: 100%;
height: 0.88rem;
background: #F5F5F5;
border-bottom: 0.02rem solid rgba(0, 0, 0, 0);
box-shadow: 0rem 0.01rem 0rem 0rem rgba(0, 0, 0, 0.3);
font-size: 0.34rem;
font-weight: 600;
line-height: 0.88rem;
text-align: center;
color: #000000;
}
/* 搜索 */
.search {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.32rem;
box-sizing: border-box;
}
.search-left {
width: 0.5rem;
height: 0.5rem;
}
.search-middle {
display: flex;
align-items: center;
width: 5.32rem;
height: 0.68rem;
padding-left: 0.28rem;
box-sizing: border-box;
background: #f7f7f7;
border-radius: 0.08rem;
}
.search-middle input {
flex: 1;
height: 100%;
font-size: 0.24rem;
border: none;
outline: none;
background: #f7f7f7;
}
.search-middle img {
width: 0.28rem;
height: 0.28rem;
margin-right: 0.3rem;
}
.search-right {
font-size: 0.28rem;
font-weight: 500;
color: #4968f9;
}
/* 底部按钮 */
.end-btn {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 0.88rem;
background: #4968f9;
font-size: 0.32rem;
font-weight: 500;
line-height: 0.88rem;
text-align: center;
color: #ffffff;
}
/* 下载app弹窗 */
.appPop{
display: none;
align-items: flex-end;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
z-index: 111;
}
.appPop-main{
width: 100%;
height: 3.26rem;
padding: 0.4rem 0.32rem;
box-sizing: border-box;
background: #ffffff;
border-radius: 0.40rem 0.40rem 0rem 0rem;
}
.appPop-main-top{
display: flex;
justify-content: space-between;
align-items: center;
}
.appPop-main-top-pic{
width: 1.6rem;
height: 1.6rem;
margin-right: 0.28rem;
}
.appPop-main-top-text{
display: flex;
flex-direction: column;
justify-content: space-between;
height: 1.5rem;
}
.appPop-main-top-text-title{
font-size: 0.36rem;
font-weight: 500;
text-align: left;
color: #06121e;
}
.appPop-main-top-text-des{
font-size: 0.24rem;
font-weight: 400;
text-align: left;
color: #06121e;
line-height: 0.40rem;
}
.appPop-main-btn{
width: 6.86rem;
height: 0.68rem;
margin-top: 0.30rem;
background: #4968f9;
border-radius: 0.08rem;
font-size: 0.28rem;
font-weight: 500;
line-height: 0.68rem;
text-align: center;
color: #ffffff;
}
/* 文件详情头部 */
.head{
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 100%;
height: 1.12rem;
}
.head-pic{
position: absolute;
top:0.36rem;
left: 0.32rem;
width: 0.50rem;
height: 0.50rem;
}
.detail{
font-size: 0.34rem;
text-align: center;
color: #06121e;
line-height: 0.50rem;
}