example.css
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.cn_example {
width: 1200px;
background: #fff;
}
/* 左侧说明 */
.cn_exam_l {
width: 430px;
float: left;
}
.cn_left_box {
margin: 49px 0 0 70px;
}
/* 标题 */
.cn_box_title {
text-align: left;
}
.cn_box_title h1 {
width: 144px;
color: #34485e;
font-size: 24px;
line-height: 36px;
margin-bottom: 60px;
position: relative;
}
/* 下划线 */
.cn_box_title h1:after {
position: absolute;
bottom: -30px;
left: 0;
content: "";
width: 54px;
height: 1px;
background-color: #34485e;
}
/* 测评说明 */
.cn_box_explain {
text-align: left;
}
.cn_box_explain h2 {
font-size: 18px;
line-height: 24px;
color: #34485e;
margin-bottom: 14px;
}
/* 说明步骤 */
.cn_exp_step {
margin-bottom: 42px;
font-size: 14px;
line-height: 28px;
}
/* */
.cn_exp_step h3 {
color: #409eff;
}
/* 说明的内容 */
.cn_step_exp {
color: #8c9198;
}
/* 图片 */
.cn_box_p {
margin-left: 14px;
width: 266px;
height: 212px;
}
.cn_box_p img {
width: 100%;
}
/* 右侧题目 */
.cn_exam_r {
float: right;
width: 769px;
border-left: 1px solid #eee;
}