Newer
Older
.submit{
border: 1px solid #34b4fc;
background-color: #34b4fc;
margin-top: 20px;
}
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
.detail-item{
background-color: #fff;
margin: 10px;
border-radius: 4px;
padding-bottom: 10px;
p:not(:first-child){
margin:20px 10px;
height: 5rem;
text-align: center;
line-height: 5rem;
}
.detail-title1{
background-color: #f4f4f4;
color: #999999;
padding: 10px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.detail-title2{
background-color: #f4f4f4;
color: #999999;
padding: 10px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
}
.check-info{
margin: 10px;
background-color: #fff;
padding: 10px;
border-radius: 5px;
color: #888;
letter-spacing: .5px;
}
.info-content,
.detail-title{
display: flex;
flex-direction: row;
}
.title-left{
width: 40%;
line-height: 29px;
}
.title-right {
text-align: right;
width: 60%;
}
.info-left{
padding-top: 5px;
width: 15%;
}
.info-right{
width: 80%;
p{
margin: 5px 0;
}
}