45 lines
649 B
CSS
45 lines
649 B
CSS
/* @font-face {
|
|
font-family: 'PingFang';
|
|
src: url('../fonts/PingFang.ttc');
|
|
} */
|
|
/* 通用样式 */
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.page {
|
|
position: absolute;
|
|
width: 100%;
|
|
z-index: 100;
|
|
left: 0;
|
|
top: 0;
|
|
background: rgb(0, 0, 0);
|
|
display: none;
|
|
padding: 0 16px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 16px;
|
|
color: rgba(255, 255, 255, 1);
|
|
font-family: 'PingFang';
|
|
margin-bottom: 15px;
|
|
height: 22px;
|
|
}
|
|
|
|
p {
|
|
font-size: 14px;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
font-family: 'PingFang';
|
|
margin-bottom: 10px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.p1 {
|
|
margin-top: 29px;
|
|
}
|
|
|
|
.p2 {
|
|
margin-bottom: 30px;
|
|
}
|