cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
@charset "utf-8";
/* CSS Document */
 
/** 清除内外边距 **/ 
body, div, h1, h2, h3, h4, h5, h6, hr, p, span, a,
blockquote, /* structural elements 结构元素 */ 
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */ 
pre, /* text formatting elements 文本格式元素 */ 
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */ 
th, td, /* table elements 表格元素 */ 
img/* img elements 图片元素 */{ 
    border:none;
    padding:0;
    margin:0;
    outline:0 none;
    }
/** 设置默认字体 **/ 
body, button, input, select, textarea{ 
  font:12px/1.5 '宋体',tahoma, Srial, helvetica, sans-serif; 
    } 
h1, h2, h3, h4, h5, h6{font-weight: normal; font-size: 100%;} 
em{font-style:normal;} 
/** 重置列表元素 **/ 
ul, ol{list-style:none;} 
/** 重置超链接元素 **/ 
a{text-decoration:none; color:#333; cursor:pointer;} 
a:hover{color:#F40;} 
/** 重置图片元素 **/ 
img{border:0px;} 
/** 重置表格元素 **/ 
table{border-collapse:collapse; border-spacing:0;}
 
/* 清除浮动 */
.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
    }  
.clearfix:after { clear: both; }  
.clearfix { zoom: 1; }
 
 
 
body{/*公用字体、颜色等*/
    color:#4d4d4d;
    font:12px "宋体";
    line-height:24px;
    }
    
table td{/*公用table样式*/
    border:1px solid #c0c0c0;
    padding:0 5px;
    }
 
.floatl{/*左浮动*/
    float:left;
}
.floatr{/*右浮动*/
    float:right;
}
.clearb{/*清除浮动*/
    clear:both;
}
.marginc{/*居中*/
    margin:0 auto;
}
 
 
tr.table_title td{/*定义表格标题*/
    background:#f1f1f1;
    border-bottom:1px solid #008fdb;
    height:40px;
    }
tr.table_title h3{
    color:#008fdb;
    font:16px "微软雅黑";
    line-height:40px;
    }
tr.table_title a.button{
    margin:7px 0 0 10px;
    }
a.button{/*定义按钮*/
    background:#ededed;
    border:1px solid #bfbfbf;
    border-radius:3px;
    color:#4d4d4d;
    display:inline-block;
    height:24px;
    line-height:24px;
    padding:0 10px;
    }
tr.table_head{/*定义表头*/
    background:#dedede;
    color:#016fa9;
    font-weight:bold;
    line-height:32px;
    }
tr.table_foot{/*定义表尾*/
    height:50px;
    }
tr.table_foot a.button{
    margin-right:10px;
    }
.data_pager a{/*定义分页*/
    background:#ddd;
    color:#777;
    display:inline-block;
    line-height:24px;
    margin-left:10px;
    padding:0 10px;
    }
.data_pager a:hover, .data_pager a.focus{
    background:#555;
    color:#FFF;
    }
    
a.icon_del{/*删除*/
    background:url(../images/icons/edit_remove.png) no-repeat 5px 5px;
    padding-left:25px;
    }
a.icon_add{/*新增*/
    background:url(../images/icons/edit_add.png) no-repeat 5px 4px;
    padding-left:25px;
    }
a.icon_print{/*打印*/
    background:url(../images/icons/print.png) no-repeat 5px 4px;
    padding-left:25px;
    }
a.icon_excel{/*导出Excel*/
    background:url(../images/icons/filesave.png) no-repeat 5px 4px;
    padding-left:25px;
    }
a.icon_edit{/*编辑*/
    background:url(../images/icons/edit.png) no-repeat 5px 4px;
    padding-left:25px;
    }
a.icon_modify{/*修改*/
    background:url(../images/icons/pencil.png) no-repeat 5px 4px;
    padding-left:25px;
    }
 
.table_identifying{/*table标识*/
    padding-left:20px;
    background:url(../images/icons/table-identifying.png) no-repeat left;
}