﻿@charset "utf-8";
/*公共样式*/
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,p,body{
	padding:0;
	margin:0;
}
ul,li{
	 list-style:none;
}
img{
	border:0 none;
}
input,textarea {
	outline: none;
}
a{ 
	text-decoration:none;
	color:#666;
	transition: all 0.3s;
	-moz-transition: all 0.3s; 
	-webkit-transition: all 0.3s; 
	-o-transition: all 0.3s;
}
a:hover{
	color: inherit;
	text-decoration: none;
}
body{
	font-size:16px;
	font-family:"微软雅黑";
	color:#666;
	line-height:1.5;
	overflow-x: hidden;
}
@media only screen and (min-width:1700px ) {
	.container {
		width: 1600px;
	}
	.main.container {
		width: 1280px;
	}
	
}
.fl{
	float:left;
	display:inline;
}
.fr{
	float:right;
	display:inline;
}
.tr {
	text-align: right;
}
.tc {
	text-align: center;
}

.clear{
	clear:both;
}
.bg_none{
	background:none !important;	
}
.bd_none{
	border:none !important;	
}
html,body{
      -webkit-text-size-adjust:none;
}
.text-o {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.title-color {
	color: #333;
}
.width-all {
	width: 100%;
}
.height-all {
	height: 100%;
}
.ov {
	overflow: hidden;
}
.ov >img{
	width: 100%;
}
.flex-center {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.img-hover img {
	transition: all .2s;
}
.img-hover:hover img {
	transform: scale(1.02);
}

/*头部*/
header{	
	position: relative;
	z-index: 30;
	height: 100px;
	width: 100%;
	background: #fff;
}
header .container {
	height: 100px;
	position: relative;
	padding: 0;
	overflow: hidden;
}
.container {
	padding: 0;
}
.logo{
	margin: 20px 0 0 0;
	float: left;
}
.logo img{
	display: block;
}
.top-phone {
	float: right;
	background: url(../images/phone_icon.png) no-repeat left center;
	margin-top: 28px;
	text-align: left;
	padding-left: 83px;
}
.top-phone h4 {
	line-height: 32px;
	font-size: 30px;
	color: #00479d;
	font-weight: bold;
}
.top-phone p {
	line-height: 25px;
	font-size: 16px;
	color: #333;
}
@media only screen and (max-width:991px ) {
	.top-phone {
		display: none;
	}
	.pf{
		display:none;
	}
}
.nav-wrap {
	height: 50px;
	background: #0067BF;
	width: 100%;
	box-shadow: 0 3px 3px rgba(0,0,0,.15);
	position: relative;
	z-index: 10;
}
.nav>li{
	float: left;
	position: relative;
	margin-left: 28px;
}
.nav>li:last-child {
	margin-right: 0;
}
.nav>li>a{
	display: block;
	width: 100px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color:#222;
	padding: 0;
}
.nav>li:hover>a,
.nav>li:focus>a{
	background: #00479d;
	color: #fff;
}
.nav>li.active>a{
	background: #00479d;
	color: #fff;
}
.nav-dl {
	display: none;
	position: absolute;
	left: 0;
	top: 50px;
	width: 100%;
	text-align: center;
	background: #00479d;
	box-shadow: 0 3px 3px rgba(0,0,0,.15);
	z-index: 100;
	border-top: 1px solid #fff;
}
.nav-dl dd a{
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #fff;
	display: block;
	text-align: center;
	border-bottom: 1px solid #fff;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.nav-dl dd a:hover {
	color: #fff;
	background: #0067BF;
}
.products-dl {
	width: 180px;
	text-align: left;
}


#navToggle{
	display: none;
	overflow: hidden;
	position: absolute;
	cursor: pointer;
	box-sizing: border-box;
	width: 70px;
	height: 70px;
	padding: 15px;
	background: none;
	padding: 0;
	right: 0px;
	top: 0px;
	z-index: 999;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;	
}
#navToggle::before {
    margin-top: -7px;
}
#navToggle::after {
    margin-top: 7px;
}
#navToggle span,
#navToggle::after,
#navToggle::before {
    height: 2px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #000;
    position: absolute;
    display: block;
    content: '';
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}
#navToggle.show span {
    opacity: 0;
}
#navToggle span, #navToggle::after, #navToggle::before {
    height: 3px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #333;
    position: absolute;
    display: block;
    content: '';
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}
#navToggle.show::before {
    margin-top: 0;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#navToggle.show::after {
    margin-top: 0;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mask{
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
	display:none;
}
#mobileMenu {
    position: fixed;
    right: -250px;
    top: 0;
    margin: 0;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1110;
    background: #fff;
}
#mobileMenu .hello {
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid #F0F0F0;
	padding-left: 25px;
	position: relative;
	padding-top: 8px;
}
#mobileMenu .hello h3{
	font-size: 20px;
	color: #000;
	font-weight: bold;
	line-height: 54px;
}
#mobileMenu .hello .cha{
	cursor: pointer;
	height: 40px;
	width: 40px;
	position: absolute;
	right: 15px;
	top: 15px;
	background: url(../images/cha.png) no-repeat;
}
#mobileMenu .menu li>a {
    display: block;
    font-size: 14px;
    padding-left: 25px;
    color: #666;
    line-height: 45px;
    border-bottom: 1px solid #E6E6E6;
    position: relative;
}
#mobileMenu .menu li.sub>a::after {
	content: "";
	display: block;
	background: url(../images/arrow_icon.png) no-repeat;
	width: 16px;
	height: 9px;
	position: absolute;
	right: 25px;
	top: 18px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.sub-dl {
	display: none;
}
.sub-dl dd a {
	height: 40px;
	line-height: 40px;
	padding-left: 40px;
	font-size: 14px;
	color: #666;
	background: #f9f9f9;
	display: block;
}
#mobileMenu .menu li.active>a {
	background-color: #0067BF;
    text-decoration: none;
    color:#fff;
}
#mobileMenu .menu li.on>a {
	background-color: #0067BF;
	color: #fff;
}
#mobileMenu .menu li.on>a::after {
	transform: rotate(180deg);
}
.mobile_search{
	border-bottom: 1px solid #e6e6e6;
}
#mobileMenu .menu li.login-li>a::after {
	display: none;
}

#mobileMenu.show {
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
}
#page.show {
    /*-webkit-transform: translateX(200px);
    transform: translateX(200px);*/
    width: 100vw;
    height: 100vh;
}
#page {
    transition: all 0.3s ease-out;
    overflow: hidden;
}
.show {
    display: block !important;
}
html.show, body.show {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    position: fixed;
    -webkit-overflow-scrolling: auto;
    -webkit-transform: translateZ(0px);
}

@media only screen and (max-width:991px ) {
	header{
		height: 70px;
	}
	.search-icon {
		display: none;
	}
	header .nav{
		display: none;
	}
	#navToggle{
		display: block;
	}
	header .container {
		width: 100%;
		padding: 0 15px;
		height: 70px;
	}
	.header-icon {
		display: none;
	}
	.logo {
		margin-top: 18px;
		height: 34px;
	}
	.logo img {
		height: 34px;
	}
	.container {
		padding: 0 15px;
	}
}
@media only screen and (max-width:450px ) {
	.logo {
	    margin-top: 21px;
	    height: 32px;
	}
	.logo img {
		height: 32px;
	}
	header .container {
		padding: 0 10px;
	}
}

/*banner*/
#banner .swiper-pagination-bullet {
	height: 4px;
	width: 50px;
	background: #fff;
	opacity: 1;
	border-radius: 0;
}
#banner .swiper-pagination-bullet-active {
	background: #00479d;
}
#banner .swiper-slide img {
    width: 100%;
    display: block;
    min-height: 200px;
}
#banner .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 8px;
}
@media only screen and (max-width:991px ) {
	#banner {
		margin-top: 0;
	}	
}

/*关于我们*/
.about-wrap {
	padding: 65px 0 60px;
	background: url(../images/about_bg1.jpg) no-repeat center;
	background-size: cover;
}

.index-title {
	padding: 0 0 22px;
	border-bottom: 1px solid #d2d2d2;
}
.index-title h3 {
	font-size: 36px;
	color: #000;
	font-weight: bold;
}
.index-title h4 {
	line-height: 30px;
	position: relative;
	height: auto;
	font-size: 14px;
	color: #999;
}
.about-content {
	overflow: hidden;
}
.about-nr {
	font-size: 16px;
	color: #333;
	line-height: 30px;
	margin-bottom: 50px;
}
.more {
	display: block;
	width: 115px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 14px;
	color: #fff;
	background: #0067BF;
	margin: 0 auto;
}
.more:hover {
	color: #fff;
	background: #00479d;
}

@media only screen and (max-width:991px ) {
	.about-wrap {
		padding: 45px 0;
	}
	.index-title h3 {
		font-size: 28px;
	}
}
@media only screen and (max-width:767px ) {
	.about-wrap {
		padding: 30px 0;
	}
	.index-title h3 {
		font-size: 22px;
	}
	.about-nr {
		font-size: 14px;
		line-height: 28px;
	}
	.about-nr {
		margin-bottom: 20px;
	}
	.index-title h4 {
		line-height: 24px;
	}
}
@media only screen and (max-width:500px ) {
	.about-menu li a {
		display: block;
		width: 63px;
		max-width: none;
		padding-top: 63px;
		line-height: 35px;
		font-size: 14px;
		color: #000;
		text-align: center;
		margin: 0 auto;
	}
}


/*产品中心*/
.owl-pagination {
	display: none;
}
.product-wrap {
	width: 100%;
	background: #eee;
	padding: 60px 0 70px;
}
.pro-scroll-wrap {
	margin: 0 -15px;
}
.pro-scroll-wrap .item {
	margin: 0 15px;
}
.pro-scroll .item a {
	display: block;
	padding: 45px 30px 15px;
	margin-top: 30px;
	background: #fafafa;
}
.pro-scroll .item h3 {
	padding-bottom: 10px;
	font-weight: bold;
	font-size: 18px;
}
.pro-scroll .item i {
	font-size: 14px;
}
.pro-scroll .item .img-hover {
	display: block;
	margin: 20px 0;
}
.pro-scroll .item:hover h3 {
	color: #00479d;
}

.pro-scroll .owl-controls {
	text-align: center;
	margin-top: 15px;
	font-size: 0;
}
.pro-scroll .owl-controls .owl-page {
	display: inline-block;
	height: 16px;
	width: 16px;
	background: #fff;
	margin: 0 8px;
	box-shadow: 0 5px 5px rgba(0,0,0,.15);
}
.pro-scroll .owl-controls .owl-page.active {
	background: #0272DC;
}
@media only screen and (max-width:1200px ) {
	.product-wrap {
		padding: 45px 0;
	}
	.pro-scroll {
		margin-top: 15px;
	}
	.pro-scroll .item a {
		padding: 15px 10px 15px;
		margin-top: 10px;
	}
	.pro-scroll .item .img-hover {
		margin: 10px 0;
	}
}
@media only screen and (max-width:767px ) {
	.product-wrap {
		padding: 30px 0;
	}
	.pro-name {
		padding: 10px 10px 0;
		height: 65px;
	}
	.pro-name h4 {
		font-size: 14px;
		padding-bottom: 10px;
	}
	.pro-scroll .owl-controls .owl-page {
		box-shadow: none;
		height: 14px;
		width: 14px;
		background: #fff;
		margin: 0 5px;
	}
	
	
}


/*底部内容*/
footer {
	color: #fff;
	background: #2d2d2d;
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #0067BF;
}
.footer-content {
	overflow: hidden;
}
.footer-content h3 {
	padding: 75px 0 40px;
	font-size: 24px;
	font-weight: bold;
}
.footer-nav {
	max-width: 360px;
}
.footer-nav li {
	float: left;
}
.footer-content ul {
	padding: 0 0 75px;
}
.footer-content li {
	padding: 0 20px 5px 0;
}
.footer-contact li {
	width: 50%;
}
.footer-logo {
	float: left;
	display: block;
	width: 20%;
}
.footer-logo img {
	display: block;
	width: 84px;
}
.footer-ul {
	float: left;
	overflow: hidden;
	width: 60%;
}
.footer-ul li {
	width: 30%;
	float: left;
}
.footer-ul li:last-child {
	width: 40%;
}
.footer-ul li dl dt {
	line-height: 35px;
	margin-bottom: 5px;
}
.footer-ul li dl dt a {
	font-size: 16px;
	color: #333;
	font-weight: bold;
}
.footer-ul li dl dd {
	height: auto;
	line-height: 24px;
}
.ewm-box {
	/*width: 20%;*/
	margin-top: 75px;
	position: relative;
	float: left;
	overflow: hidden;
}
.ewm-box p {
	padding-top: 5px;
}
.ewm-content {
	width: 84px;
	float: right;
}
.ewm-content img {
	display: block;
	width: 100%;
}
.ewm-content p {
	text-align: center;
	line-height: 35px;
	margin-bottom: 5px;
	font-size: 16px;
	color: #333;
	font-weight: bold;
}
.copyright {
	overflow: hidden;
	padding: 20px 0;
	border-top: 1px solid #fff;
}
@media only screen and (max-width:1199px ) {
	.footer-contact li {
		width: 100%;
	}
}
@media only screen and (max-width:991px ) {
	body {
		font-size: 14px;
	}
	.footer-ul {
		display: none;
	}
	.footer-logo {
		width: 50%;
	}
	.footer-logo img {
		display: block;
		margin: 0 auto;
	}
	.ewm-box {
		border: none;
		width: 50%;
	}
	.ewm-content {
		margin: 0 auto;
		float: none;
	}
	.footer-content {
		padding: 20px 0;
	}
	.footer-content .row {
		margin: 0;
	}
	.footer-content h3 {
		padding: 15px 0 10px;
		font-size: 18px;
	}
	.footer-contact h3 {
		font-size: 25px;
	}
	.footer-content ul {
		padding: 0 0 15px;
	}
	.ewm-box {
		margin-top: 15px;
	}
}
@media only screen and (max-width:750px ) {
	.copyright p {
		padding-bottom: 10px;
		text-align: center;
		font-size: 14px;
	}
}
.vm {
	display: inline-block;
	vertical-align: middle;
}


/*内页样式*/
.inside-banner{
	width: 100%;
}
.inside-banner img{
	display: block;
	width: 100%;
	min-height: 150px;
}

.main {
	/*overflow: hidden;*/
	margin: 70px auto 50px;
}
.main-left {
	margin-bottom: 60px;
}
.main-right {
	float: right;
	width: -webkit-calc(100% - 300px);
	width: -moz-calc(100% - 300px);
	width: calc(100% - 300px);
}
.left-ul li a {
	display: block;
	width: 125px;
	line-height: 42px;
	border: 1px solid #666;
	text-align: center;
	margin-left: 28px;
}
.left-ul li.active a {
	background: #00479d;
	border: 1px solid #00479d;
	color: #fff;
}
.left-title {
	position: relative;
}
.left-title h3 {
	font-size: 30px;
	color: #222;
	font-weight: bold;
}
.left-title p {
	font-size: 16px;
	color: #00479d;
	border-bottom: 4px solid #00479d;
}
.left-ul {
	margin-top: 9px;
}
.left-ul li {
	margin-bottom: 5px;
}

.left-ul li a:hover {
	color: #fff;
	background: #00479d;
}
.left-ul li.active a {
	color: #fff;
	background: #00479d;
}
.left-contact {
	background: #eee;
}
.left-contact-img img {
	display: block;
	width: 100%;
}
.left-contact-content {
	line-height: 25px;
	padding: 10px 15px;
}
.right-title {
	height: 35px;
	border-bottom: 2px solid #eee;
	margin-bottom: 40px;
}
.right-title span {
	margin-bottom: -2px;
	height: 35px;
	line-height: 35px;
	font-size: 24px;
	color: #333;
	border-bottom: 2px solid #0A61AE;
	display: block;
	float: left;
}
.crumbs {
	float: right;
	line-height: 35px;
	font-size: 14px;
	color: #666;
}
.crumbs a:hover {
	color: #0272dc;
}
.right-box img{
	width: 100%;
	margin-bottom: 10px;
}
.left-title #navToggle {
	width: 50px;
    height: 50px;
}
.left-title #navToggle span,
.left-title #navToggle::after,
.left-title #navToggle::before {
	background: #fff;
}
.news-list li {
	padding: 15px 0;
	margin-bottom: 20px;
	border-bottom: 1px solid #666;
}
.news-list dl {
	padding-bottom: 8px;
}
.news-list li:hover dt {
	color: #00479d;
}
.about-list ul {
	padding-bottom: 20px;
}
.about-list li {
	padding-bottom: 30px;
}
.about-list .txt {
	padding-top: 50px;
}
.about-list p {
	text-indent: 2em;
	line-height: 30px;
	padding: 8px 0;
}
@media only screen and (max-width:1200px ){
	.about-list  {
		font-size: 14px;
		line-height: 1.2;
	}
	.about-list li {
	    padding-bottom: 0px;
	}
	.about-list .txt {
	    padding-top: 0px;
	}
	
}
@media only screen and (max-width:991px ) {
	.left-title p {
		display: none;
	}
	.main {
		margin: 45px auto;
	}
	.main-left {
		float: none;
		width: 100%;
		margin-bottom: 30px;
	}
	.main-right {
		float: none;
		width: 100%;
	}
	.left-title {
		height: 50px;
		line-height: 50px;
		padding-left: 15px;
	}
	.left-title span {
		font-size: 22px;
	}
	.left-title img {
		position: relative;
		right: 0;
		bottom: 0;
		top: -3px;
		vertical-align: middle;
		display: inline-block;
		line-height: 50px;
		margin-left: 10px;
	}
	.left-contact {
		display: none;
	}
	.left-ul {
		display: none;
	}
	.left-ul,.left-ul li,.left-ul li a {
		width: 100%;
	}
	.left-ul li a {
		margin: 0;
	}
	.left-title {
		width: 100%;
		background: #00479d;
		text-align: left;
	}
	.left-title h3 {
		padding: 12px 0 0;
		color: #fff;
		font-size: 20px;
	}
	.right-title {
		margin-bottom: 20px;
	}
	.right-title span {
		padding: 0 15px;
		font-size: 20px;
	}
	.news-list dt,.news-list dd {
		width: 100%;
	}
	.about-list dt,.about-list dd {
		width: 100%;
	}
	
}

@media only screen and (max-width:767px ) {
	.main {
		margin: 30px auto;
	}
	.left-title span {
		font-size: 20px;
	}
}

.pro-ul {
	overflow: hidden;
}

.pro-list {
	display: block;
	max-width: 407px;
	margin: 0 auto 20px;
}
.pro-list-img {
	position: relative;
	overflow: hidden;
	border: 1px solid #666;
}
.pro-list-img img {
	display: block;
	width: 100%;
}
.pro-list:hover .pro-list-img {
	border-color: #00479d;
	box-shadow: 0 4px 8px rgba(0,0,0,.2);
}
.pro-hover {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(29,138,241,.5);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.pro-hover span {
	display: block;
	background: url(../images/more-icon.png) no-repeat;
	height: 36px;
	width: 36px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.pro-list:hover .pro-name h4 {
	color: #00479d;
}
.pro-list-img:hover .pro-hover,
.pro-list-img:focus .pro-hover{
	opacity: 1;
}
.pro-list .pro-name {
	text-align: center;
	line-height: 40px;
	height: 40px;
}
.pro-list .pro-name h4 {
	line-height: 35px;
	font-size: 16px;
}

/*新闻*/
.news-ul li {
	overflow: hidden;
	margin-bottom: 30px;
}
.news-date {
	height: 100px;
	width: 96px;
	text-align: center;
	float: left;
	background: #eee;
	padding-top: 18px;
	color: #000;
}
.news-date span {
	display: block;
	line-height: 50px;
	font-size: 50px;
}
.news-date p {
	line-height: 20px;
}
.news-date:hover {
	background: #0067BF;
	color: #fff;
}
.news-right {
	height: 100px;
	width: calc(100% - 123px);
	float: right;
}
.news-right h4 {
	line-height: 42px;
	height: 42px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-right h4 a {
	font-size: 20px;
	color: #000;
	font-weight: bold;
}
.news-right h4 a:hover {
	color: #0067bf;
}
.news-right p {
	line-height: 25px;
	max-height: 50px;
	overflow: hidden;
}
@media only screen and (max-width:767px ) {
	.news-right h4 a {
		font-size: 16px;
	}
	.news-right {
		width: calc(100% - 110px);
	}
	.news-ul li {
		margin-bottom: 20px;
	}
}

.news-title{
	line-height:30px;
	font-size:18px;
	font-weight:bold;
	text-align:center;
	margin-bottom:20px;	
	color:#111;
}
.news-content{
	/*margin: 20px 0px;*/
	min-height: 200px;
}
@media only screen and (max-width:767px ) {
	.news-content img {
		width: 100%;
	}
}
.inside-page{
	width:100%; 
	line-height:30px; 
	text-align:left; 
	margin-top:20px; 
	border-top:solid 1px #CCCCCC;	
	padding-top:5px;
}

@media (max-width: 449px) {
	.col-xss-12{
		width: 100%;
	}
}
.page-box{
	height: 32px;
	text-align: center;
	margin-top: 30px;
	font-size: 0;
}
.page-box a{
	display: inline-block;
	height: 32px;
	border: 1px solid #DFDFDF;
	line-height: 30px;
	padding: 0px 12px;
	color: #969696;
	margin:0px 3.5px;
	font-size: 14px;
}
.page-box span{
	display: inline-block;
	height: 32px;
	line-height: 30px;
	padding: 0px 12px;
	margin:0px 3.5px;
	font-size: 14px;
	color:#fff;
	background:#00479d;
	border: 1px solid #00479d;
}
.page-box a.on{
	color:#fff;
	background:#00479d;
	border: 1px solid #00479d;
}
@media (max-width: 991px) {
	.page-box{
		margin-top: 20px;
	}
}
.dcwx{
          display: none;
	}
@media only screen and (max-width:767px ) {
	.page-box{
		height: 25px;
	}
	.page-box a{
		height: 25px;
		line-height: 23px;
		padding: 0px 8px;
	}
	.dcpc{
		display: none;
	}
	.dcwx{
		display: block;
	}
}
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden; 
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


.header-top {
	background: #00479d;
	color: #fff;
	line-height: 40px;
}
.header-top span {
	padding-left: 25px;
}
.nav-list {
	width: 56%;
	padding-top: 30px;
}


@media only screen and (max-width:1699px ) {
	.nav > li {
		margin-left: 0;
	}
	.nav > li > a {
	    width: 94px;
    }
}
@media only screen and (max-width:1199px ) {
	.logo img {
		max-width: 300px;
		margin-top: 10px;
	}
	.nav-list {
    	width: 68%;
    }
    .header-top {
		display: none;
	}
}
@media only screen and (max-width:991px ) {
	.nav-list {
		display: none;
	}
	.logo img {
		margin-top: 0px;
	}
}

em,i {
	font-style: normal;
}
.index-type {
	padding: 65px 0 0;
}
.index-type li {
	margin-top: 35px;
}
.index-type li a {
	display: block;
	position: relative;
}
.index-type li .txt {
	padding-left: 35px;
	position: absolute;
	left: 0;
	top: 0;
	width: 60%;
	bottom: 0;	
}
.index-type li h3 {
	font-size: 30px;
	font-weight: bold;
}
.index-type li p {
	padding: 10px 0 60px;
	font-size: 24px;
}
.index-type li i {
	display: block;
	width: 140px;
	line-height: 50px;
	border: 1px solid #888;
	color: #888;
	text-align: center;
}
.index-type li a:hover h3 {
	color: #00479d;
}
.index-type li a:hover i {
	background: #00479d;
	border: 1px solid #00479d;
	color: #fff;
}

@media only screen and (max-width:1699px ) {
	.index-type {
		padding: 20px 0 0;
	}
	.index-type li {
		margin-top: 20px;
	}
	.index-type li a {
		display: block;
		position: relative;
	}
	.index-type li .txt {
		padding-left: 15px;
	}
	.index-type li h3 {
		font-size: 20px;
	}
	.index-type li p {
		padding: 10px 0 20px;
		font-size: 18px;
	}
	.index-type li i {
		width: 140px;
		line-height: 40px;
	}
}
@media only screen and (max-width:991px ) {
	.index-type li .txt {
		padding-left: 5px;
	}
	.index-type li h3 {
		font-size: 18px;
	}
	.index-type li p {
		padding: 10px 0 20px;
		font-size: 14px;
	}
	.index-type li i {
		width: 140px;
		line-height: 40px;
	}
}
.index-news {
	padding-top: 80px;
}
.index-list li {
	padding: 0;
}
.index-list li a {
	display: block;
	position: relative;
}
.index-list li .txt {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fafafa;
    text-align: center;
}
.index-list li .width-all {
	position: absolute;
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
    bottom: 20px;
    border: 1px solid transparent;
    padding: 0 10px;
}
.index-list li h3 {
	font-size: 30px;
	font-weight: bold;
}
.index-list li p {
	min-height: 90px;
	margin-top: 18px;
}
.index-list li h3 {
	font-size: 30px;
	font-weight: bold;
}
.index-list li i {
    display: block;
    margin: 0 auto;
    width: 140px;
    line-height: 40px;
    border: 1px solid #888;
    color: #888;
    text-align: center;
    border-radius: 40px;
}

.index-list li:hover .txt {
    background: #00479d;
}
.index-list li:hover .width-all {
    border: 1px solid #fff;
}
.index-list li:hover h3,
.index-list li:hover p,
.index-list li:hover i {
    color: #fff;
}
.index-list li:hover i {
    border-color: #fff;
}

.index-list ul {
	padding: 35px 15px;
}
@media only screen and (min-width:992px ) {
	.index-list ul {
		padding: 95px 15px;
	}
}
/* 联系我们 */
.contact_left{
	background: #f3f3f3;
	padding: 52px 54px 52px;
	margin-bottom: 20px;
	width: 50%;
	float: left;
}
.contact_left>h3{
	font-size: 24px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 25px;
}
.contact_left>p{
	font-size: 16px;
	line-height: 30px;
}
.contact_right{
	width: 48%;
	float: right;
}
.contact_right>img{
	display: block;
	width: 100%;
}
.map>img{
	display: block;
	width: 100%;
}
@media(max-width: 1199px){
	.contact_left,.contact_right{
		width: 100%;
		float: none;
	}
	.contact_right>img{
		margin-bottom: 20px;
	}
}
@media(max-width: 767px){
	.contact_left{
		padding: 15px;
	}
	.contact_left>h3{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.contact_left > p{
		font-size: 14px;
		line-height: 24px;
	}
}

.main-list p img {
    max-width: 100%;
}
.main-list div img {
    max-width: 100%;
}


















