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
/**~~~~~~~~~~~~~~~~~~~~公用的字体样式~~~~~~~~~~~~~~~~~~~~*/
/**1级标题样式*/
.text-h1-dhc{
font-size: 18px;
color: #333333;
}
/**2级标题样式*/
.text-h2-dhc{
font-size: 16px;
color: #333333;
}
/**字体加粗*/
.text-bold-dhc{
font-weight: 700;
}
/**小标题前面的小方块标识*/
.text-icon-dhc{
position: relative;
margin-left: 12px;
}
.text-icon-dhc:before{
content: "";
width: 6px;
height: 75%;
position: absolute;
left: -14px;
top: 15%;
background: #009DE5;
}
/**808080的14px字体*/
.text-80-dhc{
font-size: 14px;
color: #808080;
}
/**333333的14px字体*/
.text-33-dhc{
font-size: 14px;
color: #333333;
}
/**999999的14px字体*/
.text-99-dhc{
font-size: 14px;
color: #999999;
}
/**666666的14px字体*/
.text-66-dhc{
font-size: 14px;
color: #666666;
}
/**主题色的14px字体*/
.text-theme-dhc{
font-size: 14px;
color: #009DE5;
}
/**808080的12px字体*/
.text-sm-80-dhc{
font-size: 12px;
color: #808080;
}
/**333333的12px字体*/
.text-sm-33-dhc{
font-size: 12px;
color: #333333;
}
/**999999的12px字体*/
.text-sm-99-dhc{
font-size: 12px;
color: #999999;
}
/**999999的12px字体*/
.text-sm-6c-dhc{
font-size: 12px;
color: #6ca6e0;
}
/**校验错误的提示字 new*/
.text-err-dhc{
color: red;
font-size: 12px;
}
/*字体大小尺寸*/
.font-size-10-dhc {
font-size: 10px;
}
.font-size-12-dhc {
font-size: 12px;
}
.font-size-14-dhc {
font-size: 14px;
}
.font-size-16-dhc {
font-size: 16px;
}
.font-size-18-dhc {
font-size: 18px;
}