#
whycq
2022-02-09 cba44928e313cfe5c58a62ba1767a3d2d4337a09
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
105
106
107
108
109
110
111
/* CSS Document */
/**
* +----------------------------------------------------------
* 主样式
* +----------------------------------------------------------
*/
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 微软雅黑;
    letter-spacing: 1px;
}
html,body{
    width: 100%; height: 100%;
    overflow: hidden;
    font-size: 14px;
}
 
li{
    list-style: none;
}
a{
    display: block;
}
a:hover{
    color: #df621e;
    -webkit-transition: all 0.2s ease-in-out;
}
 
iframe{
    border: 0; width: 100%; height: 100%;
}
.pull-left{ float: left; }
.pull-right{ float: right; }
 
.show{ display: block; }
.hide{ display: none; }
 
.i-bold{
    font-weight: bolder;
}
/*字体颜色*/
.i-green{ color:#00c851 !important;}
.i-yellow{ color:#e7592b !important;}
.i-red{ color:#d90000 !important; font-weight: border;}
.i-blue{ color:#2292ef !important;}
.i-lightblue{ color:#00a5e0 !important;}
.i-gray{ color:#6c6c6e !important;}
 
/*背景颜色*/
.bg-green{ background-color:#00c851 !important;}
.bg-yellow{ background-color:#e7592b !important;}
.bg-red{ background-color:#d90000 !important;}
.bg-blue{ background-color:#2292ef !important;}
.bg-white{ background-color: white !important;}
.bg-gray{ background-color: #6c6c6e !important;}
 
/*渐变色*/
.shade-white{
    display: block;
    background-image:url(../images/shade/white.png);
    background-repeat:repeat-x;
    background-size: 100% 100%;
    background-position: 0 0;
}
.shade-menu{
    display: block;
    background-image:url(../images/shade/menu.png);
    background-repeat:repeat-x;
    background-size: 100% 100%;
    background-position: 0 0;
}
 
.shadow{
    box-shadow:0px 4px 8px rgba(0,0,0,0.3);
}
.shadow1{
    background: url(../images/shadow.png);
    width: 220px; height: 15px;
    background-size: 100%;
    background-position: 0 0;
    position: absolute; bottom: -15px; left: 0;
}
.shadow2{
    background: url(../images/shadow.png);
    width: 100%; height: 15px;
    background-size: 100%;
    background-position: 0 -15px;
    position: absolute; bottom: -15px; left: 0;
}
 
/* 数字提示 */
.num{
  width: 15px; height: 15px; text-align: center; line-height: 15px;
  border-radius: 99px;
  color: white; font-weight: bolder;
}
.num-1{
    margin-left: 5px;
  padding: 5px 10px; text-align: center; line-height: 15px;
  border-radius: 99px;
  color: white; font-weight: bolder;
}
 
/* layui修改 */
.layui-input-block{
    margin-left: 0;
}