/* CSS Document */

html, body, h1, h2, h3, h4, h5, h6, div, ul, ol, li, dl, dt, dd, p, form, input, select, button, textarea, table, tr, th, td, iframe {
	margin: 0;
	padding: 0;
}
ul, ol {
	list-style: none;
}
img {
	border: 0;
	vertical-align: top;
	-ms-interpolation-mode: bicubic;
}

body {
	font-family: "微软雅黑";
	font-size: 12px;
	color: #333;
}

/* 链接 */
a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #B5000A;
}

/* 文字大小 */
.f12 {
	font-size: 12px;
}
.f14 {
	font-size: 14px;
}
.f16 {
	font-size: 16px;
}
.f18 {
	font-size: 18px;
}
.f20 {
	font-size: 20px;
}
.f22 {
	font-size: 22px;
}
.f24 {
	font-size: 24px;
}
.f28 {
	font-size: 28px;
}
.f32 {
	font-size: 32px;
}
.f48 {
	font-size: 48px;
}

/* 颜色 */
.deepred {
	color: #B5000A;
}
.red {
	color: #F00;
}
.orange {
	color: #F60;
}
.blue {
	color: #006CE0;
}
.gray {
	color: #666;
}
.lightgray {
	color: #999;
}

/* 行距 */
.l26 {
	line-height: 26px;
}

/* 对齐 */
.t_c {
	text-align: center;
}
.t_r {
	text-align: right;
}

/* 表单 */
input, select, textarea, label {
	font-family: Arial, "微软雅黑";
	font-size: 12px;
	vertical-align: middle;
}
.form_text {
	padding: 0 6px;
	height: 26px;
	border: 1px solid #CCC;
	border-radius: 2px;
	line-height: 26px;
}
.form_select {
	padding: 3px;
	height: 28px;
	border: 1px solid #CCC;
	border-radius: 2px;
	line-height: 26px;
}
.form_select_list {
	padding: 3px;
	border: 1px solid #CCC;
	border-radius: 2px;
	line-height: 26px;
}
.form_textarea {
	padding: 6px;
	border: 1px solid #CCC;
	border-radius: 2px;
	line-height: 26px;
}

.form_text_sm {
	padding-left: 3px;
	height: 20px;
	border: 1px solid #CCC;
	border-radius: 2px;
	line-height: 20px;
}
.form_select_sm {
	padding-left: 2px;
	height: 22px;
	border: 1px solid #CCC;
	border-radius: 2px;
	line-height: 20px;
}
.form_btn_sm {
	padding: 0 10px;
	height: 22px;
	border: 0;
	border-radius: 2px;
	background: #BF050A;
	color: #FFF;
	overflow: visible;
	cursor: pointer;
}

/* 按钮 */
.btn {
	display: inline-block;
	padding: 0 20px;
	height: 30px;
	border: 0;
	border-radius: 3px;
	color: #FFF;
	font-size: 14px;
	line-height: 30px;
	overflow: visible;
	vertical-align: middle;
	cursor: pointer;
}

/* 按钮颜色 */
.btn_default {
	border: 1px solid #CCC;
	background: #FAFAFA;
	color: #333;
}
.btn_default:hover {
	border: 1px solid #AAA;
	background: #FFF;
	color: #333;
}

.btn_primary {
	border: 1px solid #B5000A;
	background: #BF050A;
	color: #FFF;
}
.btn_primary:hover {
	border: 1px solid #BF050A;
	background: #CF050B;
	color: #FFF;
}

.btn_red {
	border: 1px solid #D9534F;
	background: #D9534F;
	color: #FFF;
}
.btn_red:hover {
	border: 1px solid #D9534F;
	background: #DC625F;
	color: #FFF;
}

.btn_green {
	border: 1px solid #48A648;
	background: #4CAE4C;
	color: #FFF;
}
.btn_green:hover {
	border: 1px solid #4CAE4C;
	background: #5CB85C;
	color: #FFF;
}

.btn_yellow {
	border: 1px solid #F60;
	background: #FF7900;
	color: #FFF;
}
.btn_yellow:hover {
	border: 1px solid #FF7900;
	background: #FF891E;
	color: #FFF;
}

/* 按钮大小 */
.btn_lg {
	padding: 0 24px;
	height: 36px;
	font-size: 16px;
	line-height: 36px;
}
.btn_sm {
	padding: 0 12px;
	height: 28px;
	font-size: 14px;
	line-height: 28px;
}
.btn_xs {
	padding: 0 6px;
	height: 26px;
	font-size: 14px;
	line-height: 26px;
}

/* 页面布局 */
.container {
	margin: auto;
	width: 1200px;
}
.w200 {
	width: 200px;
}
.w240 {
	width: 240px;
}
.w300 {
	width: 300px;
}
.w420 {
	width: 420px;
}
.w520 {
	width: 520px;
}
.w590 {
	width: 590px;
}
.w720 {
	width: 720px;
}
.w860 {
	width: 860px;
}
.w940 {
	width: 940px;
}
.w960 {
	width: 960px;
}
.w980 {
	width: 980px;
}

/* 浮动 */
.f_l {
	float: left;
}
.f_r {
	float: right;
}
.clearfix {
	clear: both;
}

/* 外边距 */
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.mt30 {
	margin-top: 30px;
}
.ml10 {
	margin-left: 10px;
}
.mr5 {
	margin-right: 5px;
}
.mr10 {
	margin-right: 10px;
}
.mr20 {
	margin-right: 20px;
}
.mr40 {
	margin-right: 40px;
}
.mb5 {
	margin-bottom: 5px;
}
.mb6 {
	margin-bottom: 6px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb60 {
	margin-bottom: 60px;
}
.p15 {
	padding: 15px;
}
.pt5 {
	padding-top: 5px;
}
.pt10 {
	padding-top: 10px;
}
.pt20 {
	padding-top: 20px;
}
.pt40 {
	padding-top: 40px;
}
.pt60 {
	padding-top: 60px;
}
.pt100 {
	padding-top: 100px;
}
.pl20 {
	padding-left: 20px;
}
.pr10 {
	padding-right: 10px;
}
.pr40 {
	padding-right: 40px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb30 {
	padding-bottom: 30px;
}
.pb40 {
	padding-bottom: 40px;
}

/* 背景颜色 */
.gray_wrap {
	background: #F8F8F8;
}

/* 在线咨询 */
.main-im{position:fixed;top:200px;right:20px;width:100px;z-index:100;}
.main-im .im-qq{position:relative;width:98px;height:114px;font-size:12px;color:#bf050a;text-align:center;}
.main-im .im-qq span{position:absolute;left:0;bottom:10px;width:98px;}
.main-im .qq-container{position:absolute;left:0;width:98px;height:114px;border-top-left-radius:8px;border-top-right-radius:8px;border-bottom:1px solid #e6e6e6;background:url(../img/qq-icon-bg.png) no-repeat center 12px;z-index:99;}
.main-im .qq-hover-c{position:absolute;width:60px;height:60px;border-radius:50%;top:15px;left:19px;overflow:hidden;z-index:9;}
.main-im .img-qq{display:block;position:absolute;top:2px;left:5px;max-width:50px;-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;}
.main-im .im-qq:hover .img-qq{position:absolute;top:8px;left:0;max-width:60px;}
.main-im .im_main{display:none;border:1px solid #e0e0e0;border-radius:8px;background:#f9f9f9;}
.main-im .im_main .im-tel{padding:10px 0;width:98px;border-bottom:1px solid #e6e6e6;color:#000;line-height:25px;text-align:center;}
.main-im .im_main .im-tel div{font-size:12px;}
.main-im .im_main .im-tel .tel-num{font-family:Arial;}
.main-im .im_main .im-tel .tel-num a{color:#bf050a;}
.main-im .im_main .im-tel .tel-num a:hover{color:#f00;}
.main-im .im_main .im-footer {width: 98px;}
.main-im .im_main .weixin-container{float:left;width:49px;height:44px;border-right:1px solid #e6e6e6;border-bottom-left-radius:8px;background:url(../img/weixin-icon.png) no-repeat center center;}
.main-im .im_main .weixin-show{position:absolute;left:-120px;top:-110px;width:108px;height:153px;border-radius:8px;border:1px solid #e0e0e0;background:#fff;}
.main-im .im_main .weixin-show .weixin-sanjiao{position:absolute;left:108px;top:120px;width:0;height:0;border-style:solid;border-color:transparent transparent transparent #fff;border-width:7px;z-index:2;}
.main-im .im_main .weixin-show .weixin-sanjiao-big{position:absolute;left:108px;top:119px;width:0;height:0;border-style:solid;border-color:transparent transparent transparent #e0e0e0;border-width:8px;}
.main-im .im_main .weixin-show .weixin-ma{padding:4px;width:100px;height:100px;}
.main-im .im_main .weixin-show .weixin-txt{position:absolute;top:110px;width:108px;text-align:center;}
.main-im .im_main .go-top{float:right;width:48px;height:44px;border-bottom-right-radius:8px;background:url(../img/totop-icon.png) no-repeat center center;}
.main-im .im_main .go-top a{display:block;width:48px;height:44px;}
.main-im .close-im{position:absolute;top:-12px;right:10px;width:24px;height:24px;z-index:100;}
.main-im .close-im a{display:block;width:24px;height:24px;background:url(../img/close_im.png) no-repeat left top;}
.main-im .open-im{margin-left:60px;width:40px;height:135px;background:url(../img/open_im.png) no-repeat left top;cursor:pointer;}
