/* reset */
/*公共样式--开始*/
html, body, div, ul, li, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, form, input, textarea, th, td, select {
    margin: 0;
    padding: 0;
}
*{box-sizing: border-box;}
html, body {
    min-height: 100%;
}
a{
    text-decoration: none;
}
a:link,a:visited{
    text-decoration:none;  /*超链接无下划线*/
   }
   a:hover{
    text-decoration:none;  /*鼠标放上去有下划线*/
   }
body {
    font-family: "Microsoft YaHei";
    font-size:14px;
    color:#333;
    min-width: 1024px;
}
h1, h2, h3, h4, h5, h6{font-weight:normal;}
ul,ol {
    list-style: none;
}

img {
    border: none;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: #232323;
}

table {
    border-collapse: collapse;
    table-layout: fixed;
}

input, textarea {
    outline: none;
    border: none;
}

textarea {
    resize: none;
    overflow: auto;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: ".";
    width: 0;
    height: 0;
    visibility: hidden;
    display: block;
    clear: both;
    overflow:hidden;
}

.ifl {
    float: left
}

.ifr {
    float: right
}

.tl {
    text-align: left;
}

.tc {
    text-align: center
}

.tr {
    text-align: right;
}

.ellipse {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.inline{
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/* 版心 */
.w{
	width: 1200px;
	margin: 0 auto;
}

/* 多行隐藏文字 */
.multi{
	 -webkit-line-clamp: 2;  //这里就是行数，想限制多少行就写多少
	    overflow: hidden;
	    text-overflow: ellipsis;
	    display: -webkit-box;
	    -webkit-box-orient: vertical;
}
.el{
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 2;
	    overflow: hidden;
}




/* 字体图标 */
@font-face {
  font-family: 'iconfont';  /* project id 1598777 */
  src: url('//at.alicdn.com/t/font_1598777_cmx15c5n8ed.eot');
  src: url('//at.alicdn.com/t/font_1598777_cmx15c5n8ed.eot?#iefix') format('embedded-opentype'),
  url('//at.alicdn.com/t/font_1598777_cmx15c5n8ed.woff2') format('woff2'),
  url('//at.alicdn.com/t/font_1598777_cmx15c5n8ed.woff') format('woff'),
  url('//at.alicdn.com/t/font_1598777_cmx15c5n8ed.ttf') format('truetype'),
  url('//at.alicdn.com/t/font_1598777_cmx15c5n8ed.svg#iconfont') format('svg');
}
  
  .iconfont{
      font-family:"iconfont" !important;
      font-size:16px;font-style:normal;
      -webkit-font-smoothing: antialiased;
      -webkit-text-stroke-width: 0.2px;
      -moz-osx-font-smoothing: grayscale;
  }
  .ellipse {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*====================导航*********/
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 997;
	padding: 14px 0 8px;
	transition: all .3s linear;
}
.header {
	padding-left: 80px;
	padding-right: 80px;
}
.header .logo img {
	width: 70%;
	margin-top: 8px;
}

/*右侧*/
.header .nav {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height: 50px;
	display: block;
}

.header .navbar_nav li {
	float: left;
	position: relative;
	display: block;
}

.header .navbar_nav li a:after {
	content: "";
	width: 0;
	height: 2px;
	background: #0D304B;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease 0s;
}

.header .navbar_nav li a:hover:after {
	width: 100%;
}

.header .navbar_nav li {
	margin: 0 30px;
}

.header .navbar_nav li a {
	text-decoration: none;
	height: 100%;
	/* padding: 0 25px; */
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #fff;
	font-size: 14.5px;
}

/* .header .navbar_nav li:hover a {
	/* color: #0D304B; */
} */

.header .navbar_nav li.dropdown {
	display: inherit;
	position: relative;
}

.header .navbar_nav li.dropdown .jt {
	width: 20px;
	height: 20px;
	/* background: url(i/top.png) no-repeat; */
	background-size: 100% 100%;
	display: block;
}

.header .navbar_nav li.dropdown .dropdown_menu {
	display: none;
	position: absolute;
	top: 50px;
	width: 100%;
	background: #fff;
	box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
	width: 120%;
	left: -10%;
}

.header .navbar_nav li.dropdown .dropdown_menu a {
	font-size: 14px;
	color: #666;
	padding: 0 10px;
	line-height: 40px;
	text-align: center;
	background: #fff;
	margin-bottom: 2px;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu {
	display: block;
	background: #f3f3f3;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a {
	color: #666;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover {
	color: #fff;
	background: #0D304B;
}

/*白色背景的头部*/
.header.on {
	background: #fff;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.header.on .left .img1 {
	display: none;
}

.header.on .left .img2 {
	display: block;
}

.header.on .navbar_nav li a {
	color: #333;
}

#navToggle {
	display: none;
}

.m_nav {
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
	width: 100%;
	height: 100%;
	background: #fff;
	transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	z-index: 1000;
	opacity: 1;
	visibility: visible;
	margin-top: 0;
	overflow-y: auto;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	top: 0;
	transform: translateX(100%);
}

.m_nav.open {
	transform: translateX(0);
}

.m_nav .top {
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}

.m_nav .top .closed {
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float: right;
	cursor: pointer;
}

.m_nav .logo {
	width: 100%;
	margin: 0 auto;
}

.m_nav .logo img {
	height: 50px;
	display: block;
	margin: 30px auto;
}

.m_nav .ul {
	margin-top: 30px;
}

.m_nav .ul li {
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	opacity: 0;
}

.m_nav.open .ul li {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.m_nav .ul li:nth-child(1) {
	-webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(2) {
	-webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(3) {
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(4) {
	-webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(5) {
	-webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(6) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 100%;
}

.m_nav .ul li .dropdown_menu {
	display: none;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
	display: block;
}

/* .m_nav .ul li .dropdown_menu a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
} */

.m_nav .ul li .dropdown_menu a:last-child {
	border: none;
}

@media screen and (max-width:1350px) {
	.header .navbar_nav li {
		margin: 0 15px;
	}
}



.right_search {
	line-height: 50px;
}

.right_search i {
	font-size: 21px;
	cursor: pointer;
	/* font-weight: bold; */
	/* font-weight: normal; */
}

.right_search p {
	display: inline-block;
	font-size: 19px;
}

.right_search .teltextar {
	display: inline;
	margin-right: 40px;
}

.right_search .teltextar i {
	font-size: 22px;
	margin-right: 10px;
}

/* 搜索弹出层 start */
.searchpopup {
	width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
	right: 0;
	display: none;
}

.searchpopup i {
	color: #fff;
	font-size: 30px;
}

/* 关闭图标 */
.searchpopup i.closeico{
	font-size: 26px;
	color: #f5f5f5;
	position: absolute;
	right: 80px;
	top: 120px;
	z-index: 66;
	cursor: pointer;
}
.searchpopup input{
	width: 900px;
	height:59px;
	position: absolute;
	left: 50%;
	top: 40%;
	margin-left: -450px;
	border-radius: 30px;
	padding-left: 30px;
	font-size: 23px;
	color: #333;
}
/* 搜索弹出层 end */

.footer{
    background-color: #282828;
    /* height: 373px; */
    color: #fff;
    margin-top: 80px;
    padding-left: 80px;
    padding-right: 80px;
}
.footer-logo{
    margin-top: 60px;
}
.footer-logo h4{
    width: 138px;
    height: 37px;
    background: url('../images/logo.png') no-repeat center;
    background-size: 138px 35px;
    text-indent: -9999px;
}
.footer-right{
    margin-top: 60px;
}
.footer-nav{
    margin-top: 80px;
}
.footer-nav ul li{
    float: left;
    margin-right: 44px;
}
.footer-info{
    text-align: right;
    color: #fff;
}
.footer-info{
  font-size: 14px;
  border-right: 1px solid #474747;
  padding-right: 30px;
}
.footer-info h3{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}
.footer-info p{
    line-height: 24px;
}
.footer-info p.f-address-b{
    margin-top: 19px;
}
.footer-qrcode{
    padding-left: 30px;
    color: #fff;
}
.footer-qrcode p{
    font-size: 14px;
    line-height: 28px;
}
.footer-qrcode img{
    width: 98px;
    height: 98px;
}
.footer-bottom{
    border-top: 1px solid #474747;
    margin-top: 50px;
}
.footer-bottom{
    padding: 5vh 0;
}
.footer-bottom p{
    font-size: 14px;
    color: #AAAAAA;
    float: left;
}
.footer-bottom a{
    font-size: 14px;
    color: #AAAAAA;
    float: right;
}
.footer-nav ul li a{
	font-size: 14px;
	color: #fff;
}
/* 小于等于 1366 */
@media screen and (max-width:1366px){
	.header{
		padding-left: 35px;
		padding-right: 35px;
	}
	.header .navbar_nav li {
		margin: 0 18px;
	}
	.right_search .teltextar {
		margin-right: 10px;
    }
    .footer{
        padding-left: 35px;
		padding-right: 35px;
    }
}

@media screen and (max-width:1000px){
	.header{
		padding-left: 20px;
		padding-right: 20px;
	}
	.footer-nav{
		display: none;
	}
	.footer-logo{
		margin-top: 30px;
	}
	.footer-info{
		text-align: left;
	}
	.footer-right{
		margin-top: 30px;
	}
	.footer-qrcode{
		display: none;
	}
	.footer-info{
		border: none;
		padding-right: 0;
	}
	.footer-bottom{
		margin-top: 30px;
	}
	.footer-bottom p{
		font-size: 13px;
	}
	.footer-bottom a{
		font-size: 13px;
	}
	.footer{
		padding-left: 20px;
		padding-right: 20px;
	}
	.footer-right{
		float:none !important;
	}
	.footer-left{
		float:none !important;
	}
}

/*平板小于等于 1024px*/ 
@media screen and (max-width: 1024px){
	.header{
		padding-left: 20px;
		padding-right: 20px;
	}
	.footer-nav{
		display: none;
	}
	.footer-logo{
		margin-top: 30px;
	}
	.footer-info{
		text-align: left;
	}
	.footer-right{
		margin-top: 30px;
	}
	.footer-qrcode{
		display: none;
	}
	.footer-info{
		border: none;
		padding-right: 0;
	}
	.footer-bottom{
		margin-top: 30px;
	}
	.footer-bottom p{
		font-size: 13px;
	}
	.footer-bottom a{
		font-size: 13px;
	}
	.footer{
		padding-left: 20px;
		padding-right: 20px;
	}
	.footer-right{
		float:none !important;
	}
	.footer-left{
		float:none !important;
	}
}

/*手机 小于等于 980*/
@media screen and (max-width: 980px){
	.header{
		padding-left: 10px;
		padding-right: 10px;
	}
	#allmap{
		display: none;
	}
	.footer-nav{
		display: none;
	}
	.footer-logo{
		margin-top: 30px;
	}
	.footer-info{
		text-align: left;
	}
	.footer-right{
		margin-top: 30px;
	}
	.footer-qrcode{
		display: none;
	}
	.footer-info{
		border: none;
		padding-right: 0;
	}
	.footer-bottom{
		margin-top: 30px;
	}
	.footer-bottom p{
		font-size: 13px;
	}
	.footer-bottom a{
		font-size: 13px;
	}
	.footer{
		padding-left: 20px;
		padding-right: 20px;
	}
	.footer-right{
		float:none !important;
	}
	.footer-left{
		float:none !important;
	}
}
