﻿@charset "utf-8";
/* CSS Document */
@import url("reset.css");
/*common 
------------------------------------------ */
body {
	font-family: Verdana, Microsoft Yahei, "微软雅黑", serif;
	line-height: 20px;

}
/*input & textarea & select*/
input, select, textarea {
	background: #fff;
	border: 0px;
	font-size: 12px;
	font-family: Helvetica, Arial, Sans-Serif;
}
input[type=text], input[type=password] {
	height: 22px;
	line-height: 22px;
	border: 1px solid #dfdfdf;
	padding: 0px 3px;
	color: #666666;
	font-size: 12px;
	-webkit-border-radius:border-box;
	-moz-border-radius:border-box;
	box-sizing:border-box;
}
input[type=text]:focus, input[type=password]:focus {
	color: #000;
}
select {
	border: 1px solid #dfdfdf;
	height: 23px;
	line-height: 22px;
	padding: 2px;
	color: #666666;
}
textarea {
	border: 1px solid #dfdfdf;
	padding: 3px;
	word-break: break-all;
}
/*link*/
a {
	color: #27A9E3;
}
a:hover {
	text-decoration: none;
	color: #c72131 ;
}
/*hr & clear & display & position & scroll & shadow*/
hr {
	height: 1px;
	border: none;
	border-top: 1px solid #E8E8E8;
	margin:0px;
}
hr.red{
	border-color:#db9785;
}
hr.green{
	border-color:#a1b58c;
}
.clear {
	clear: both;
	height: 0px;
	width: 0px;
	display: block;
	overflow: hidden; /*兼容ie6*/
}
.clearfix:before, .clearfix:after {
	content: '\0020';
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
.clearfix {
	zoom: 1;
}
.none {
	display: none;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

.scroll {
	overflow: hidden;
	overflow-y: auto;
	height: 100%;
}
.shadow,.black_shadow{
	background: #000;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 15;
	opacity: 0.3; /* 透明度 */
	-moz-opacity: 0.3;/*火狐*/
	filter: alpha(opacity=30); /*IE*/
	-khtml-opacity: 0.3; /* khtml, old safari */
	overflow: hidden;
}
.white_shadow {
	background: #fff;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 10;
	opacity: 0.8; /* 透明度 */
	-moz-opacity: 0.8;/*火狐*/
	filter: alpha(opacity=80); /*IE*/
	-khtml-opacity: 0.8; /* khtml, old safari */
	overflow: hidden;
}
/*font*/
h1 {
	font-size: 18px;
	font-weight: normal;
}
h2 {
	font-size: 16px;
	font-weight: normal;
}
h3 {
	font-size: 20px;
	font-weight: bold;
}
h4 {
	font-size: 35px;
	font-weight: normal;
}
h5 {
	font-size: 45px;
	font-weight: normal;
}
h6 {
	font-size: 40px;
	font-weight: normal;
}
p {
	text-align:justify;
	line-height: 20px;
	font-size: 12px;

}
p.indent {
	text-indent: 2em;
}
/*font color*/
.white {
	color: #fff;
}
.orange {
	color: #ff7f0e;
}
.yellow {
	color: #ffd466;
}
.gray {
	color: #999999;
}
.red,.error,.null{
	color: red;
}
.black {
	color: #000;
}
.blue {
	color: #1055c7;
}
.green {
	color: #047e3c;
}
.gray_border {
	border: 1px solid #cdd0d4;
	background: #fff;
}

/*pre*/
pre {
	white-space: pre-wrap;
}
.omit{
	display: inline-block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	word-break: keep-all;
	-o-text-overflow: ellipsis;
	-icab-text-overflow: ellipsis;
	-khtml-text-overflow: ellipsis;
	-moz-text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	-moz-binding: url('ellipsis.xml#ellipsis');
}
/*icon & btn*/
.icon, .btn {
	display: inline-block;
}
/*icon*/
.icon {
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center center;
}

img{
	vertical-align:middle;	
}
/*btn*/
.btn {
	vertical-align: middle;
	text-align: center;
	display: inline-block;
}

.btn_common{
	height:30px;
	line-height: 30px;
	font-size:14px;
	padding:0px 8px;
	-webkit-border-radius:3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	margin:0px 10px;
	font-weight: bold;

}
.btn_red {
	color: #fff;
	background: #ca101a;	
}
.btn_red:hover {
	background: #630000;
	color: #fff;
}
.btn_gray {
	color: #fff;
	padding: 0px 15px;
	height: 24px;
	line-height:24px;
	background: #cbcbcb;
	font-size: 12px;
}
.btn_gray:hover {
	background: #595757;
	color: #fff;
}
.btn_gray_border{
	border:1px solid #999999;	
	padding:0px 5px;
	height:20px;
	line-height:20px;
}
.btn_gray_border:hover,.btn_gray_border.active{
	border-color:#CA101A;	
}
.btn_white {
	height: 30px;
	background: #fff;
	line-height: 30px;
	color: #1055c7;
	padding: 0px 10px;
}

.btn_green{
	background:#51a351;
	color:#fff;	

}
.btn_green:hover{
	background:#489248;
	color:#fff;
}
.btn_blue{
	background: #27A9E3;
	color:#fff;
}
.btn_blue:hover{
	background: #0856a7;
	color:#fff;
}
.btn_yellow{
	background: #F1B34E;
	color:#fff;
}
.btn_yellow:hover{
	background: #FF9800;
	color:#fff;
}
.btn.disabled,.btn.disabled:hover{
	background:#DDDDDD;
	color:#fff;
	cursor:default;
}
.btn_dark{
	background:rgba(0,0,0,0.73);
	color:rgba(255,255,255,0.8);
	font-size:26px;
	padding:0px 50px;
	height:55px;
	line-height: 55px;
	font-weight: normal;
}
.red_bg{
	background:#ca101a;	
}
.gray_bg{
	background:#f7f7f7;	
}
.gray_bg > .padding{
	padding:8px 0px;	
}
.white_bg{
	background:#fff;	
}
.white_bg.fixed{
	top:78px;	
}


/*layout
-------------------------------------------------------------------*/
.container {
	width:1000px;
	margin:0 auto;
}
.container:after {
	content: "\0020";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/*container*/
/*edit_form*/
.edit_form{
	line-height:32px;	
}
.edit_form dt,.edit_form dd{
	float:left;	
	margin:10px 0px;
	line-height:22px;
}
.edit_form dt{
	width:6em;	
	text-align:right;
	margin-right:10px;
}
.edit_form dl{
	clear:both;	
}
.edit_form dd{
	margin-right:10px;	
}
.edit_form input[type=radio]{
	margin:0px 4px;	
}
.edit_form input[type=text],.edit_form input[type=password]{
	height:23px;
	line-height:23px;	
}

/*bread*/
.bread{
    font-size: 12px;
    height: 40px;
    line-height: 40px;
	background:#fff;
}
.bread.fixed{
	top:38px;	
}
.bread a{
	margin:0px 10px;
	color:#3d3d3d;	
	max-width:20em;
	vertical-align:top;
}

/*page*/
.page {
	margin-top: 20px;
	text-align: right;
}
.page a {
	display: inline-block;
	padding: 3px 8px;
	margin:0px 5px;
	color: #000000;
	background:#f2f2f2;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-ms-border-radius:4px;
	-khtml-border-radius:4px;
	-o-border-radius:4px;
	border-radius:4px;
}
.page span.ye{
	margin:0px 5px;	
}
.page span.ye a{
	margin: 0px 2px;
}
.page span.s{
	font-size:50%;	
	vertical-align:top;
}
.page a:hover, .page a.active {
	background: #ca101a;
	color: #fff;
}
/*popup*/
.popup{
	background:#fff;
	left:50%;
	top:50%;
	border:1px solid #999999;	
	z-index:9999;
	position:fixed;
}
.popup .title{
	padding:0px 10px;
	border-bottom:1px solid #999999;
	height:26px;
	line-height:26px;
	background:#dcdcdc;
	color:#666666;
}
.popup .title .fr{
	border-left:1px solid #999999;	
	padding-left:10px;
}

.popup .btn_group .btn{ 
	font-size:16px;
	padding:0px 40px;
	height:40px;
	line-height:40px;	
	margin:0px 10px;
}


