6f06533e
杨鑫
最新1
|
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
|
.pages {
width: 100vw;
height:100vh;
position: relative;
overflow-y: auto;
background-color: #f6f6f6;
padding:0 20px;
.contents {
width: 100%;
border-radius: 20rpx;
background-color: #fff;
margin-top: 20rpx;
.box {
width: 94%;
margin: 0 auto;
padding: 28rpx 40rpx 28rpx 10rpx;
.title{
font-size: 30rpx;
font-weight: bold;
}
.time{
margin: 20rpx 0;
color: #888D9C;
font-size: 24rpx;
}
.desc{
color: #888D9C;
font-size: 24rpx;
text-align: justify;
margin-top:10px;
}
}
}
}
|