@charset "utf-8";
/* CSS Document */
.body {
    padding: 10px;
}

/*设置左边导航固定代码*/
.container_i{
	display:flex;/*设为伸缩容器*/ 
}
.left_i{
	width:165px;
}
.right_i{
	flex:1;/*这里设置为占比1，填充满剩余空间*/ 
}


/*表格============================================================================================*/
.table_bg {
	width:100%;
	margin-top:2px;
	margin-bottom:2px;
	border-collapse:collapse;
	border-spacing:0;
	font-size:14px;
}

.table_bg thead tr{
	line-height:23px;
	height:23px;
	background-image:url(../y_images/table_top.png);
	background-repeat:repeat-x;
	font-weight:bold;
}



.table_bg td{
	border:#C8C6C6 solid 1px;
	border-collapse:collapse;
	padding:1px;
}


.table_bg th{
	border:#C8C6C6 solid 1px;
	border-collapse:collapse;
	padding:1px;
}

.table_bg tr:hover{
	background-color:#F4F4F4;
}
/*表格结束======================================================================================================*/


/*表格（不带背景）============================================================================================*/
.my_table_style{
	width:100%;
	margin-top:2px;
	margin-bottom:2px;
	border-collapse:collapse;
	border-spacing:0;
	font-size:14px;
}

.my_table_style thead tr{
	line-height:23px;
	height:23px;
	font-weight:bold;
	background-color:#F4F4F4;
}



.my_table_style td{
	border:#C8C6C6 solid 1px;
	border-collapse:collapse;
	padding:1px;
}


.my_table_style th{
	border:#C8C6C6 solid 1px;
	border-collapse:collapse;
	padding:1px;
}

.my_table_style tr:hover{
	background-color:#F4F4F4;
}
/*表格结束======================================================================================================*/




/*原始按钮高度*/
.button_heigh{
	height:25px;
}

/*原始输入框高度*/
.input_heigh{
	height:20px;
}


/*input checkbox样式*/
.input_checkbox_style{
	zoom:140%;
	margin-top: -1px;
	margin-bottom: 1px;
	vertical-align: middle;
}

/*必须输入input背景色*/
.input_must_bg{
	background-color: #FFFBE6;
}


/*通用超链接*/
.a_style:link,.a_style:visited,.a_style:active {color:#043392; text-decoration:none;}
.a_style:hover {color: #50DBFF; text-decoration:none; text-decoration-line: underline;cursor: pointer;}

/*输入框边框*/
.my_input_border{
	border-radius:0px;border:#7B7B7B solid;border-width:1px 1px 1px 1px;
}

/*必填项输入框背景色*/
.my_input_bg{
	background-color:#FFFBE6;
}

.my_input_bg_white{
	background-color: white;
}