@charset "utf-8";
/*-----------------------公共样式------------------------*/
/*!
 * @名称：base.css
 * @功能：1、重设浏览器默认样式
 *       2、设置通用原子类
 */
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
	background:#fff; 
	-webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
	
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    margin:0;
    padding:0;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,button,input,select,textarea {
     font:14px "microsoft yahei", arial, sans-serif;color:#333;
}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { 
    display:block;
}

/* HTML5 媒体文件跟 img 保持一致 */
audio,canvas,video {
    display: inline-block;*display: inline;*zoom: 1;
}
input,select,textarea {
    font-size:100%;
}
/* 去掉 table cell 的边距并让其边重合 */
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* ie bug：th 不继承 text-align */
th {
    text-align:inherit;
}
/* 去除默认边框 */
fieldset,img {
    border:none;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display:block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,acronym {
    border:none;
    font-variant:normal;
}
/* 一致的 del 样式 */
del {
    text-decoration:line-through;
}
address,caption,cite,code,dfn,em,th,var {
    font-style:normal;
    font-weight:500;
}
/* 去掉列表前的标识，li 会继承 */
ol,ul ,li{
    list-style:none;
}

/* 对齐是排版最重要的因素，别让什么都居中 */
caption,th {
    text-align:left;
}
/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:500;
}
h2{ font-size:16px;}
q:before,q:after {
    content:'';
}
/* 统一上标和下标 */
sub,sup {
    font-size:75%;
    line-height:0;
    position:relative;
    vertical-align:baseline;
}
sup {
    top:-0.5em;
}
sub {
    bottom:-0.25em;
}
/* 让链接在 hover 状态下显示下划线 */
a:hover {
	color:#ff9202;
    text-decoration:none;
}
/* 默认不显示下划线，保持页面简洁 */
ins,a {
	color:#666;
    text-decoration:none;
}
/* 去除 ie6 & ie7 焦点点状线 */
a:focus,*:focus {
    outline:none;
}
/* 清除浮动 */
.clearfix:before,.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
    overflow:hidden;
}
.clearfix {
    zoom:1; /* for ie6 & ie7 */
}
.clear {
    clear:both;
    display:block;
    font-size:0;
    height:0;
    line-height:0;
    overflow:hidden;
}
/* 设置显示和隐藏，通常用来与 js 配合 */
.hide {
    display:none;
}
.block {
    display:block;
}
/* 设置浮动，减少浮动带来的 bug */
.fl,.fr {
    display:inline;
}
.fl {
    float:left;
}
.fr {
    float:right;
}

/*网站宽度*/
.w1200 {
    clear: both;
    margin: 0 auto;
    width: 1200px;
}
/*颜色*/
.yellow {
	color: #f8bc02 !important;
}

.orange{
	color: #ff9202 !important;
}
.blue{
	color: #0766b1 !important;
}
.col666{
	color: #666 !important;
}
.col999{
	color: #999 !important;
}
.fontb{
	font-weight: bold !important;
}
.w20{width: 20px !important;}
.w60{width: 60px !important;}
.w70{width: 70px !important;}
.w80{width: 80px !important;}
.w90{width: 90px !important;}
.w100{width: 100px !important;}
.w120{width: 120px !important;}
.w130{width: 130px !important;}
.w140{width: 140px !important;}
.w150{width: 150px !important;}
.w165{width: 165px !important;}
.w160{width: 160px !important;}
.w170{width: 170px !important;}
.w180{width: 180px !important;}
.w200{width: 200px !important;}
.w250{width: 250px !important;}
.w260{width: 260px !important;}
.w270{width: 270px !important;}
.w275{width: 275px !important;}
.w300{width: 300px !important;}
.w400{width: 400px !important;}
.w600{width: 600px !important;}
.mt0{margin-top: 0 !important;}
.mt5{margin-top: 5px !important;}
.mt10{margin-top: 10px !important;}
.mt20{margin-top: 20px !important;}
.mt30{margin-top: 30px !important;}
.mt40{margin-top: 40px !important;}
.mr0{margin-right: 0 !important;}
.mr30{margin-right: 30px !important;}
.mr40{margin-right: 40px !important;}
.ml10{margin-left: 10px !important;}
.ml20{margin-left: 20px !important;}
.ml60{margin-left: 60px !important;}
.ml50{margin-left: 50px !important;}
.ml90{margin-left: 90px !important;}
.mb10{margin-bottom: 10px !important;}
.mb20{margin-bottom: 20px !important;}
.pt20{padding-top: 20px !important;}
.pt50{padding-top: 50px !important;}
.pl10{padding-left: 10px !important;}
.pl20{padding-left: 20px !important;}
.pr10{padding-right: 10px !important;}
.pr20{padding-right: 20px !important;}
.pb20{padding-bottom: 20px !important;}
.pb50{padding-bottom: 50px !important;}
.tc{text-align: center !important;}
.tl{text-align: left !important;}
.tr{text-align: right !important;}
/*顶部*/
.hi-top {
	width: 100%;
	height: 32px;
	line-height: 32px;
	background-color: #f4f4f4;
	font-size: 12px;
	color: #666;
}

.hi-top .hi-top-l span {
	margin-right: 10px;
}

.hi-top a {
	color: #666;
}

.hi-top .hi-top-l .orange {
	color: #ff9202;
}

.hi-top .hi-top-r li {
	float: left;
	margin-left: 6px;

}

.hi-top .hi-top-r li a {
	margin-top: 10px;
	padding: 0 6px;
	display: block;
	line-height: 12px;
	border-right: 1px solid #ddd;
}
.hui-putong,.hui-vip{
	width: 14px;
    height:10px;
    margin-right: 2px;
	display: inline-block;
}

/*头部*/
.header {
	width: 100%;
	height: 94px;
	position: relative;
	padding-top: 32px;
}

.header .logo {
	width: auto;
	height: 62px;
}

.header .logo img {
	height: 62px;
}

.header .search-box {
	width:740px;
}
.header .issue{
  height: 40px;
  margin-top: 24px;
}
.header .issue a{
	display: inline-block;
	padding: 0 10px;
	border: 1px solid #f8bc03;
	height: 38px;
	line-height: 38px;
	text-align: center;
	color:#f8bc03 ;
}
.header .issue i{
	margin-right: 2px;
}
.header .enquiry-issue a{
	display: inline-block;
	padding: 0 10px;
	border: 1px solid #ff9202;
	height: 38px;
	line-height: 38px;
	text-align: center;
	color:#fff ;
	background-color: #ff9202;
}

/*搜索*/
.search-hovertree-form {
	float: left;
	width: 495px;
	overflow: hidden;
}

.search-hovertree-form .search-bd {
	height: 25px;
}

.search-hovertree-form .search-bd li {
	font-size: 12px;
	width: 60px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	float: left;
	cursor: pointer;
	background-color: #fff;
	color: #666;
}

.search-hovertree-form .search-bd li.selected {
	color: #fff;
	font-weight: 700;
	background-color: #f8bc03;
}

.search-hovertree-form .search-hd {
	height: 34px;
	background-color: #f8bc03;
	padding: 3px;
	position: relative;
}

.search-hovertree-form .search-hd .search-hovertree-input {
	width: 410px;
	height: 22px;
	line-height: 22px;
	padding: 6px 0;
	background: none;
	text-indent: 10px;
	border: 0;
	outline: none;
	position: relative;
	left: 3px;
	top: 0;
	z-index: 5;
}

.search-hovertree-form .search-hd .btn-search {
	width: 70px;
	height: 34px;
	line-height: 34px;
	position: absolute;
	right: 3px;
	top: 3px;
	border: 0;
	z-index: 6;
	cursor: pointer;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	background: none;
	outline: none;
}

.search-hovertree-form .search-hd .pholder {
	display: inline-block;
	padding: 2px 0;
	font-size: 12px;
	color: #999;
	position: absolute;
	left: 13px;
	top: 11px;
	z-index: 4;
	background: url(../images/search-bg.png) no-repeat 0 0;
	padding-left: 25px;
	top: 11px;
}

.search-hovertree-form .search-hd .s2,
.search-hovertree-form .search-hd .s3,
.search-hovertree-form .search-hd .s4,
.search-hovertree-form .search-hd #s2,
.search-hovertree-form .search-hd #s3,
.search-hovertree-form .search-hd #s4 {
	display: none;
}

.search-hovertree-form .search-bg {
	width: 415px;
	height: 34px;
	background-color: #fff;
	position: absolute;
	left: 3px;
	top: 3px;
	z-index: 1;
}

.select-city-box {
	margin-left: 40px;
}

.select-city-box:hover .select-city-con {
	display: block;
}

.select-city-t {
	position: relative;
	width: 110px;
	height: 62px;
	border: 1px solid #eee;
	text-align: center;
	cursor: pointer;
}

.select-city-t h3 {
	margin: 10px 0 0 0;
	font-size: 16px;
	font-weight: bold;
	overflow: hidden;
	display: block;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.select-city-t span {
	line-height: 20px;
	font-size: 12px;
}

.select-city-con {
	position: absolute;
	width: 310px;
	top: 94px;
	padding: 10px;
	border: 1px solid #eee;
	z-index: 99999;
	background: #fff;
	display: none;
}
.select-city-con .across-white{
	position: absolute;
	top: -2px;
	left: 0;
	width: 110px;
	height: 3px;
	background-color: #fff;
}

.select-city-con dl {
	padding: 4px 0;
	border-bottom: 1px solid #eee;
}

.select-city-con dt,
.select-city-con dd,
.select-city-con li {
	float: left;
	line-height: 30px;
}

.select-city-con dt {
	color: #999;
	margin-right: 4px;
}

.select-city-con dd {
	margin: 0 10px;
}

.select-city-con dd a {
	color: #ff9202;

}

.select-city-con ul {
	padding: 6px 0 4px 0;
}

.select-city-con ul li {
	margin: 0 10px;
}

/*导航*/
.nav {
	position: relative;
	width: 100%;
	margin: 0 auto;
	height: 40px;
	z-index: 9999;
	background-color: #3a3a3a;
}
.nav .nav-class {
    width: 220px;
    position: absolute;
    top: 0;
	background-color: #4b4b4b;
    z-index: 999;
}
.nav .nav-all-bt{
	position: absolute;
	top: -3px;
	width: 220px;
	height: 43px;
	color: #fff;
	text-align: center;
	line-height:43px;
	font-size: 16px;
	cursor: pointer;
	background: #f8bc03;
}
.nav .nav-all-bt i{
	margin-right: 6px;
}
.nav .nav-classopaity {
	background-color: #4b4b4b;
    background-color: rgba(75,75,75,.92);
}
.nav .menu-mainnav{
	margin-top: 40px;
	height: 488px;
	display:none;
	padding: 6px 0;
	position: relative;
}
.nav .nav-class:hover .menu-mainnav {
    display: block;
}

.nav .menu-mainnav li:hover {
    background: #fff;
}
.nav .menu-mainnav li .sortmaintitle {
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    overflow: hidden;
}
.nav .menu-mainnav li .sortmaintitle a{
	color: #fff;
}
.nav .menu-mainnav li:hover .sortmaintitle a {
    color: #333;
}
.nav .menu-mainnav li .sortmaintitle a i{
	  font-size: 14px;
}
.nav .menu-mainnav li .sortmaintitle a i:first-child{

  float: left;
}
.nav .menu-mainnav li .sortmaintitle a i:nth-child(2){
	float: right;
	color: #9a9a9a;
}
.nav .menu-mainnav li .sortmaintitle a i{
   font-size:12px;
}
.nav .menu-mainnav li .sortmaintitle a span{
	float: left;
	width: 140px;
	display: block;
	margin: 0 4px;
	overflow: hidden;
}
.nav .menu-mainnav li:hover .navsonbox {
    display: block;
}
.nav .navsonbox {
    min-height: 500px;
    background-color: #fff;
    padding: 0px 15px;
    width: 950px;
    position: absolute;
    top: 35px;
    left: 220px;
    display: none;
    top: 0px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    border-left: none;
}
.nav .navson-class-box {
    margin: 10px 0;
    overflow: hidden;
    clear: both;
}
.nav .navson-class .maintitle {
    width: 120px;
    float: left;
    margin-top: 10px;
    line-height: 24px;
	text-align: right;
}
.nav .navson-class .maintitle a {
    font-weight: bold;
    font-size: 14px;
    padding-right: 4px;
    color: #333;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nav .navson-class .navson-class-subtitle {
    float: left;
    width: 800px;
	margin-left: 10px;
    border-bottom: 1px dashed #e6e6e6;
    padding: 8px 0;
	color: #666;
	min-height: 24px;
}
.nav .navson-class .navson-class-subtitle a {
    color: #666;
    position: relative;
    padding: 0 8px;
	line-height: 16px;
	height: 16px;
    margin: 6px 0;
    display: inline-block;
    vertical-align: middle;
	border-left: 1px solid #e6e6e6;
}
.nav .navson-class .navson-class-subtitle a:hover{
	color: #ff9202;
}
.nav-right{
	float:right;
	width: 960px;
	height: 40px;
	position: relative;
}
.nav-right ul li{
	float: left;
	margin: 0 6px;
	line-height: 40px;
	color: #fff;
	position: relative;
}
.nav-right ul li a{
	display: block;
	color: #fff;
	cursor: pointer;
	position: relative;
	padding: 0 20px;
}
.nav-right ul li span {
    display: inline-block;
    height: 25px;
    width: 29px;
    background: url(../images/new.png) no-repeat;
    position: absolute;
    top: -5px;
    right: 2px;
}
.nav-right ul li a:hover,.nav-right .nav-right-items:hover{
	color: #ffd333;
	background-color: #464545;
}
.nav-right ul li .on{
	color: #ffd333;
}
.nav-right .nav-right-items{
	cursor: default;
	padding: 0 10px 0 15px;
	line-height: 40px;
}
.nav-right .nav-right-items .menu {
   display: none;
    width: 110px;
    position: absolute;
    left: 0;
    top: 40px;
	background-color: #4b4b4b;
	background-color: rgba(75,75,75,.92);
}
.nav-right .nav-right-items .menu li{
	text-align: center;
	float: left;
	width: 110px;
	margin: 0;
}
.nav-right .nav-right-items .menu li a {
    color: #fff;
    display: block;
	margin: 0;
    padding: 6px 0px;
    line-height: 30px;
    border-bottom: 1px solid #6b6a6a;
}
.nav-right .nav-right-items .menu li a:hover{
	color: #ffd333;
}
/*网站底部*/
.footer {
	margin:0 auto;
	padding: 20px 0 40px;
	width: 100%;
	background-color: #424041;
	border-top:6px solid #e8b030 ;
	overflow: hidden;
}
.footer .footer-t{
	width: 100%;
	height: 80px;
	border-bottom:1px solid #666666;
}
.footer .footer-t li{
	position: relative;
	float: left;
	color: #fff;
	font-size: 16px;
	height: 62px;
}
.footer .footer-t .tel{
	margin-left: 50px;
}
.footer .footer-t li span{
	margin-top: 10px;
	float: left;
	display: block;
}
.footer .footer-t li p{
	display: block;
	float: left;
	line-height: 62px;
	margin-left: 20px;
}
.footer .footer-t .kefu{
	width: 140px;
	height: 40px;
	line-height: 40px;
	background-color: #e8b030;
	display: block;
	text-align: center;
	border-radius: 4px;
	color: #fff;
	margin: 10px 0 0 40px;
}
.footer .footer-c{
	width: 100%;
}
.footer .footer-c .footer-c-l{
	/**min-height: 160px;*/
	width: 378px;
	border-right:1px solid #666;
}
.footer .footer-c .footer-c-l ul{
	float: left;
	width: 116px;
	margin-right: 10px;
}
.footer .footer-c .footer-c-l ul li{
	color: #fff;
	line-height: 24px;
}
.footer .footer-c .footer-c-l ul li a{
	color: #ccc;
	font-size: 12px;
}
.footer .footer-c .footer-c-c{
	/**min-height: 160px;*/
	width: 400px;
	padding: 0 30px;
	border-right:1px solid #666;
}
.footer .footer-c .footer-c-c ul{
	display:inline-block;
	width: 400px;
	margin-bottom: 10px;
	text-align: center;
}
.footer .footer-c .footer-c-c li{
	display:inline-block;
	margin:0 10px ;
}
.footer .footer-c .footer-c-c p{
	text-align: center;
	font-size: 12px;
	color: #ccc;
	line-height: 30px;
}
.footer .footer-c .footer-c-c a{
	color: #ccc;
}
.footer .footer-c .footer-c-b{
	/**min-height: 160px;*/
	width: 330px;
	margin-left: 30px;
}
.footer .footer-c .footer-c-b .wxcode{
	width: 100px;
}
.footer .footer-c .footer-c-b .wxcode img{
	width: 100px;
	height: 100px;
}
.footer .footer-c .footer-c-b .wxcode span{
	color: #ccc;
	line-height: 30px;
	font-size: 12px;
}
.footer .footer-c .footer-c-b ul{
	width: 210px;
	
}
.footer .footer-c .footer-c-b ul li{
	color: #ccc;
	line-height: 24px;
	font-size: 12px;
}
.footer .footer-c .footer-c-b ul li b{
	font-size: 14px;
}
.footer-bottom {
	width: 100%;
	padding: 20px 0;
	background-color: #575654;
	border-top:1px solid #62615f;
	height: auto;
	overflow: hidden;
}
.footer-bottom li{
	float: left;
}
.footer-bottom li a{
	font-size: 12px;
	color: #999999;
	display: block;
	margin:0 10px 6px 0;
}
.footer-bottom li img{
	width: 140px;
	height: 40px;
}
/* 当前位置 */
.site {
	text-align: left;
	width: 100%;
	height: 20px;
	line-height: 20px;
}

.site span {
	font-size: 12px;
	font-weight: normal;
	color: #999;
}

.site span a {
	color: #999;
}

/* 分页 */
.pages {
	width: 100%;
	margin: 30px auto;
	height: 60px;
}

.tcdPageCode {
	text-align: center;
	color: #666;
}

.tcdPageCode a {
	display: inline-block;
	color: #666;
	display: inline-block;
	height: 35px;
	line-height: 35px;
	padding: 0 14px;
	border: 1px solid #ddd;
	margin: 0 2px;
	vertical-align: middle;
}

.tcdPageCode a:hover {
	text-decoration: none;
	border: 1px solid #ccc;
}

.tcdPageCode span.current {
	display: inline-block;
	height: 35px;
	line-height: 35px;
	padding: 0 14px;
	margin: 0 2px;
	color: #fff;
	background-color: #2d8ad2;
	border: 1px solid #2d8ad2;
	vertical-align: middle;
}

.tcdPageCode span.disabled {
	display: inline-block;
	height: 35px;
	line-height: 35px;
	padding: 0 14px;
	margin: 0 2px;
	color: #bfbfbf;
	background: #f2f2f2;
	border: 1px solid #bfbfbf;
	vertical-align: middle;
}
.footer2{
	width: 100%;
	min-height: 150px;
	border-top: 1px solid #e6e6e6;
}
.footer2 .footer2_t {
	text-align: center;
	margin: 20px auto 10px;
}
.footer2 .footer2_t li{
	display: inline-block;
	margin: 0 10px;
}
.footer2 .footer2_b{
	text-align: center;
}
.footer2 .footer2_b p{
	line-height: 22px;
	font-size: 13px;
	color: #999;
}
.footer2 .footer2_b p a{
	color: #999;
}

.border-b{
	border-bottom: 1px solid #e6e6e6;
}


/*对联广告*/
  
.swiper-container3{
  width: 100%;
  height: 300px;
}

.ad_left{
  position: fixed;
  left: 0;
  top: 50%;
  margin-top: -157px;
  z-index: 9999;
}
.ad_right{
  position: fixed;
  right: 0;
  top: 50%;
  margin-top: -157px;
  z-index: 9999;
}

.ad_contect{
  width: 100px;
  height: 300px;
  overflow: hidden;
  background-color: #f9f9f9;
}