command-detail.scss
712 Bytes
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
.command-detail {
padding: 5rpx 30rpx;
height: 100vh;
background-color: #f8f9fa;
.detail-top {
height: 118rpx;
width: 690rpx;
display: flex;
align-items: center;
background-color: #fff;
color: #333;
border-radius: 20rpx;
font-size: 15px;
margin-top: 30rpx;
padding: 30rpx;
}
.detail {
background-color: #fff;
margin-top: 30rpx;
border-radius: 20rpx;
width: 690rpx;
.detail-item {
padding: 30rpx;
display: flex;
align-items: center;
.detail-label {
color: #333;
font-size: 15px;
}
.detail-value {
color: #666;
font-size: 14px;
margin-left: 30rpx;
}
}
}
.command {
margin: 30rpx 0;
}
}