templates.wxss
1.2 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
/* pages/template/template.wxss */
.experiment_box {
width: 100%;
background-color: #fff;
padding: 18rpx 20rpx 20rpx 20rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin-bottom: 20rpx;
}
.title_box {
width: 100%;
display: flex;
align-items: center;
justify-content: flex-start;
}
.title_box .line {
width: 6rpx;
height: 32rpx;
background-color: #3FA9F5;
margin-right: 18rpx;
}
.title_box text {
color: #464646;
font-size: 32rpx;
}
.test_box {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.test_box .time {
font-size: 28rpx;
color: #3FA9F5;
margin-bottom: 10rpx;
}
.test_box .img_box {
width: 100%;
height: 300rpx;
}
.img_box image {
width: 100%;
height: 100%;
border-radius: 20rpx;
}
.order_box {
display: flex;
align-items: center;
justify-content: flex-end;
margin-top: 10rpx;
}
.order_box text {
width: 150rpx;
height: 50rpx;
line-height: 50rpx;
color: #ffffff;
background-color: #3FA9F5;
font-size: 30rpx;
text-align: center;
border-radius: 10rpx;
}