1 /**********************************************初始化样式***********************************************/
2
3 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
4 margin: 0;
5 padding: 0;
6 border: 0;
7 outline: 0;
8 font-size: 100%;
9 vertical-align: baseline;
10 font: 12px/1.5 'Microsoft YaHei', arial, SimSun, sans-serif;
11 background: transparent;
12 color: #636363;
13 text-decoration: none;
14 }
15
16 ol, ul {
17 list-style: none;
18 }
19
20 img {
21 vertical-align: top;
22 }
23
24 a {
25 text-decoration: none;
26 color: #000;
27 }
28
29 a img {
30 border: 0;
31 }
32
33 .clear {
34 clear: both;
35 display: block;
36 overflow: hidden;
37 }
38
39
40
41 /**********************************************控件样式***********************************************/
42
43
44 .button {
45 border-radius: 5px;
46 padding: 5px 15px;
47 color: #575757;
48 background-color: #E6E5E6;
49 font-size: 14px;
50 font-weight: 600;
51 border: 1px solid #B3B3B3;
52 cursor: pointer;
53 }
54
55 .button-small {
56 border-radius: 5px;
57 padding: 2px 10px;
58 color: #575757;
59 background-color: #E6E5E6;
60 font-size: 14px;
61 font-weight: 600;
62 border: 1px solid #B3B3B3;
63 cursor: pointer;
64 }
65
66 .button-confirm {
67 border-radius: 5px;
68 padding: 5px 15px;
69 color: white;
70 background-color: #00A1E0;
71 font-size: 14px;
72 font-weight: 600;
73 border: 1px solid #00A1E0;
74 cursor: pointer;
75 }
76
77 .button-confirm-small {
78 border-radius: 5px;
79 padding: 2px 10px;
80 color: white;
81 background-color: #00A1E0;
82 font-size: 14px;
83 font-weight: 600;
84 border: 1px solid #00A1E0;
85 cursor: pointer;
86 }
87
88
89 .text {
90 border-radius: 5px;
91 height: 25px;
92 border: 1px solid #B3B3B3;
93 font-size: 16px;
94 }
95
96 .text-small {
97 border-radius: 5px;
98 padding: 2px 0;
99 border: 1px solid #B3B3B3;
100 font-size: 14px;
101 }
102
103 .text-error {
104 border-radius: 5px;
105 height: 25px;
106 border: 1px solid red;
107 font-size: 16px;
108 }
109
110 .text-small-error {
111 border-radius: 5px;
112 padding: 2px 0;
113 border: 1px solid red;
114 font-size: 14px;
115 }
116
117 .link {
118 font-size: 14px;
119 color: deepskyblue;
120 cursor: pointer;
121 }
122
123 label {
124 font-size: 14px;
125 }
126
127 .paging {
128 width: 900px;
129 text-align: center;
130 margin: 10px 0;
131 }
132
133
134
135 /**********************************************弹出窗样式***********************************************/
136
137
138 #popup {
139 width: 100%;
140 height: 100%;
141 background-color: rgba(0, 0, 0, 0.6);
142 opacity: 1;
143 position: fixed;
144 left: 0px;
145 top: 0px;
146 display: none;
147 z-index:100;
148 }
149
150 #popup .popup_cont {
151 background: rgba(255, 255, 255, 0) none repeat scroll 0 0;
152 background-color: white;
153 height: 200px;
154 width: 400px;
155 margin: auto;
156 position: absolute;
157 top: 0;
158 left: 0;
159 bottom: 0;
160 right: 0;
161 }