/*小屏幕手机*/
.mobile-header {
	position: relative;
}

.mobile-header .h-nav-g {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 60px;
	background: #FFFFFF;
	transition: all 300ms ease-in-out;
	-webkit-transform: all 300ms ease-in-out;
	-webkit-box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.5);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.mobile-header .h-nav-g a{
	max-height: 100%;
	display: block;
	position: absolute;
	left: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
}


.mobile-header .h-nav-g .btn_i {
	display: block;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.mobile-header .h-nav-g .btn_i small,
.mobile-header .h-nav-g .btn_i:before,
.mobile-header .h-nav-g .btn_i:after {
	display: block;
	content: '';
	width: 24px;
	height: 2px;
	background: #0757B0;
	border-radius: 4px;
	margin: 6px 0;
}

.mobile-header .h-nav-g .btn_i_click small {
	opacity: 0;
}

.mobile-header .h-nav-g .btn_i_click:before {
	transform: rotateZ(45deg);
	transform-origin: 0px 6px;
}

.mobile-header .h-nav-g .btn_i_click:after {
	transform: rotateZ(-45deg);
	transform-origin: 5px -1px;
}

.mobile-header .ul-small {
	background: #3a3a3a;
	width: 220px;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
	transform: translateX(220px);
	transition: 300ms;
	-webkit-transition: 300ms;
	-webkit-transform: translateX(220px);
}

.mobile-header .ul-small input {
	width: 160px;
	height: 40px;
	line-height: 40px;
	background: #fff;
	border: 0;
	border-radius: 20px;
	margin: 20px 30px 0 30px;
	text-indent: 10px;
}

.mobile-header .ul-small ul {
	margin-top: 20px;
}

.mobile-header .ul-small ul li a {
	color: #fff;
	padding-left: 30px;
	padding-right: 30px;
	line-height: 50px;
	display: block;
	text-align: center;
}

.mobile-header .translate {
	transform: translateX(-220px);
	-webkit-transform: translateX(-220px);
}

.mobile-header .translate2 {
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.search-jieguo {
	display: block;
	padding-top: 30px;
	color: #244a9d;
	font-size: 30px;
}

.search-jieguo b {
	color: #d1be65;
}

.header-top {
	border-bottom: 1px solid #C6C6C6;
	line-height: 30px;
}

.header-top a {
	display: block;
	color: #333333;
	padding-left: 30px;
	background: url('../images/language.png')no-repeat left center;
	background-size: 20px;
}

header.header {
	padding: 20px 0px;
}

header.header a.logo {
	display: flex;
	justify-content: flex-start;
}

header.header .tel {
	position: relative;
	color: #0757B0;
	padding-left: 40px;
	margin-top: 18px;
}

header.header .tel::before {
	position: absolute;
	left: 0px;
	top: 4px;
	font-size: 36px;
}

header.header .tel span {
	display: block;
}

header.header .tel b {
	display: block;
	font-size: 30px;
}

nav.nav {
	background-color: #0757B0;
}

nav.nav .container .row {
	display: flex;
	justify-content: space-between;
}

nav.nav .container .row a {
	color: #FFFFFF;
	line-height: 50px;
	display: block;
	padding: 0px 30px;
	position: relative;
}

nav.nav .container .row a::after {
	display: block;
	content: "";
	width: 0%;
	height: 3px;
	background-color: #F8C301;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease-in-out;
}

nav.nav .container .row a:hover::after {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

nav.nav .container .row a.active {
	font-size: 14px;
	background: url('../images/nav_a_bg.png')no-repeat top center;
}

nav.nav .container .row a.active::after {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.banner img {
	width: 100%;
}

.footer-fixed {
	position: fixed;
	width: 100%;
	bottom: 0px;
	z-index: 1000;
	line-height: 44px;
	background-color: #003FB3;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04)
}

.footer-fixed a {
	width: 20%;
	color: #FFFFFF;
	display: block;
	float: left;
	text-align: center;
}

.footer-fixed a:nth-child(odd) {
	background-color: #123696;
}

.footer-fixed a:nth-child(3) {
	color: #F8C301;
}

.index-keywords {
	text-align: center;
	padding: 40px 0px;
}

.index-keywords a {
	margin-left: 10px;
}

.index-search {}

.index-search form {
	width: 320px;
	position: relative;
	margin: 0px auto;
}

.index-search form input[type=text] {
	height: 40px;
	border: 0px;
	border-bottom: 1px solid #CCCCCC;
	width: 90%;
	padding: 0px 10px;
	outline: none;
	transition: all 300ms ease-in-out;
}

.index-search form input[type=text]:focus {
	border-bottom: 1px solid #0757B0;
	box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)
}

.index-search form input[type=submit] {
	position: absolute;
	right: 0px;
	border: 0px;
	width: 40px;
	height: 40px;
	background: url('../images/search.jpg')no-repeat center center;
}

.index-product .index-product-title {
	height: 44px;
	line-height: 44px;
	margin: 80px auto 64px;
	background: url('../images/title_bg.jpg')no-repeat center center;
	text-align: center;
	font-size: 30px;
	color: #004B9E;
	font-weight: bold;
}

.index-product .index-product-type {
	display: flex;
	justify-content: center;
}

.index-product .index-product-type a {
	display: inline-block;
	border: 1px solid #0757B0;
	padding: 10px 40px;
	margin: 0px 20px;
}

.index-product .index-product-type a:hover {
	background-color: #0757B0;
	color: #FFFFFF;
}

.index-product-lunbo {
	margin-top: 46px;
	margin-bottom: 100px;
}

.index-product-lunbo img {
	width: 100%;
	height: 250px;
	transition: all 300ms ease-in-out;
}

.index-product-lunbo img:hover {
	opacity: 0.9;
}

.index-product-lunbo .box {
	padding: 10px 0px;

	justify-content: space-between;
	text-align:center;
}

.index-product-lunbo-mobile {
	margin-top: 46px;
	margin-bottom: 100px;
}

.index-product-lunbo-mobile img {
	width: 100%;
	height: 250px;
}

.index-product-lunbo-mobile .box {
	line-height: 40px;
	text-align: center;
}

.index-solution {
	width: 100%;
	height: 570px;
	background: url('../images/bg02.jpg')no-repeat center center;
	color: #FFFFFF;
}

.index-solution .index-solution-title {
	width: 489px;
	height: 37px;
	line-height: 37px;
	background: url('../images/title_bg02.png')no-repeat center center;
	text-align: center;
	font-size: 20px;
	margin: 80px auto 110px;
}

.index-solution .index-solution-title b:last-child {
	color: #004B9E;
	margin-left: 20px;
}

.index-solution ul li {
	border: 1px solid #FFFFFF;
	width: 364px;
	height: 90px;
	margin-bottom: 70px;
	display: flex;
}
.index-solution ul li:nth-child(1) {
	float: left;
	margin-right: 100px;
}
.index-solution ul li:nth-child(2) {
	float: right;
}
.index-solution ul li:nth-child(3) {
	float: left;
}
.index-solution ul li:nth-child(4) {
	float: right;
}

.index-solution ul li em {
	width: 90px;
	line-height: 90px;
	text-align: center;
	font-size: 30px;
	border-right: 1px solid #FFFFFF;
}

.index-solution ul li .box {
	padding: 14px 20px;
	font-size: 20px;
	line-height: 30px;
}

.index-advantage {
	background-color: #F1F1F1;
	padding: 56px 0px 92px 0px;
}

.index-advantage .index-advantage-title {
	width: 100%;
	height: 93px;
	background: url('../images/title03.png')no-repeat center center;
	margin-bottom: 12px;
}

.index-advantage ul li {
	margin-top: 48px;
	display: flex;
	justify-content: space-between;
}

.index-advantage ul li .box {
	background-color: #FFFFFF;
	position: relative;
	padding: 46px 22px;
	color: #333333;
	width: 625px;
}

.index-advantage ul li .box b {
	display: block;
	font-size: 24px;
	color: #005ABE;
}

.index-advantage ul li .box span {
	display: block;
	font-size: 18px;
	padding: 12px 0px 20px 0px;
}

.index-advantage ul li .box span::after {
	display: block;
	content: "";
	width: 38px;
	height: 3px;
	background-color: #005ABE;
	margin-top: 16px;
}

.index-advantage ul li .box p {
	line-height: 30px;
	padding-left: 18px;
	position: relative;
}

.index-advantage ul li .box p::before {
	display: block;
	content: "";
	width: 4px;
	height: 4px;
	background: #005ABE;
	position: absolute;
	left: 0px;
	top: 13px;
}

.index-advantage ul li .box i {
	font-size: 40px;
	color: #FFFFFF;
	position: absolute;
	right: 40px;
	top: -38px;
	width: 116px;
	height: 75px;
	line-height: 75px;
	text-indent: 48px;
	background: url('../images/advantage.png')no-repeat center center;
}


.index-zixun {
	width: 100%;
	height: 290px;
	background: url('../images/bg03.jpg')no-repeat center center;
	color: #FFFFFF;
}

.index-zixun-intro {
	display: flex;
	justify-content: space-between;
	padding: 80px 0px;
}

.index-zixun-intro .box01 span {
	display: block;
	font-size: 20px;
	margin-bottom: 32px;
}

.index-zixun-intro .box01 span em {
	color: #F8C000;
}

.index-zixun-intro .box01 .line {
	margin-left: 10px;
	width: 80px;
	height: 6px;
	border: 6px solid rgba(248, 195, 1, 1);
}

.index-zixun-intro .box02 .line01 {
	font-size: 26px;
	margin-bottom: 32px;
}

.index-zixun-intro .box02 .line01 span {
	display: inline-block;
	margin-right: 20px;
}

.index-zixun-intro .box02 .line01 b {
	font-size: 30px;
	color: #F8C301;
}

.index-zixun-intro .box02 .line02 {
	display: flex;
	width: 387px;
	height: 44px;
	line-height: 44px;
	background: url('../images/01.jpg')no-repeat center center;
	font-size: 20px;
	text-indent: 30px;
	color: #333333;
}

.index-zixun-intro .box02 .line02 b {
	margin-left: 20px;
	color: #FFFFFF;
	font-size: 30px;
}

.index-company {
	padding-bottom: 80px;
}

.index-company .index-company-title {
	height: 44px;
	line-height: 44px;
	margin: 80px auto 64px;
	background: url('../images/title_bg.jpg')no-repeat center center;
	text-align: center;
	font-size: 30px;
	color: #004B9E;
	font-weight: bold;
}

.index-company-intro {
	display: flex;
}

.index-company-intro .intro {
	padding: 26px 0px 0px 70px;
}

.index-company-intro .intro span {
	display: block;
	font-size: 24px;
	color: #004B9E;
}

.index-company-intro .intro span::after {
	display: block;
	content: "";
	width: 59px;
	height: 2px;
	background: rgba(0, 75, 158, 1);
	margin-top: 16px;
	margin-bottom: 20px;
}

.index-company-intro .intro p {
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	line-height: 32px;
}

.index-company-intro .intro a {
	width: 133px;
	height: 38px;
	line-height: 38px;
	background: rgba(28, 97, 173, 1);
	color: #FFFFFF;
	margin-top: 50px;
	display: block;
	text-align: center;
}


.index-honor-team-environmental-activity {
	background-color: #F1F1F1;
	padding: 40px 0px 65px 0px;
}

.index-honor-team-environmental-activity .type {
	display: flex;
	justify-content: center;
	margin-bottom: 54px;
}

.index-honor-team-environmental-activity .type a {
	display: inline-block;
	border: 1px solid #0757B0;
	padding: 10px 40px;
	margin: 0px 20px;
}

.index-honor-team-environmental-activity .type a:hover {
	background-color: rgba(28, 97, 173, 1);
	color: #FFFFFF;
}

.index-honor-team-environmental-activity .type a.active {
	background-color: rgba(28, 97, 173, 1);
	color: #FFFFFF;
}

.honor-team-environmental-activity-lunbo .all-img-list a {
	display: block;
	padding: 2px;
	border: 1px solid #CCCCCC;
}
.honor-team-environmental-activity-lunbo .all-img-list a:hover {
-webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.18);
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.18);
	-webkit-transform: translate3d(0, -2px, 0);
	transform: translate3d(0, -2px, 0);
}

.honor-team-environmental-activity-lunbo .all-img-list img {
	width: 100%;
	height: 195px;
}

.index-news-problem {
	padding: 66px 0px 50px 0px;
}

.index-news-problem .index-news-type .top-title {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #BBBBBB;
	line-height: 30px;
	margin-bottom: 34px;
}

.index-news-problem .index-news-type .top-title .type a {
	margin-right: 30px;
	position: relative;
	display: inline-block;
}

.index-news-problem .index-news-type .top-title .type a.active {
	color: #0264CF;
}

.index-news-problem .index-news-type .top-title .type a::after {
	display: block;
	content: "";
	height: 2px;
	background: rgba(0, 75, 158, 1);
	position: absolute;
	bottom: -1px;
	transition: all 0.4s linear 0s;
	width: 0%;
	visibility: hidden;
	opacity: 0;
}

.index-news-problem .index-news-type .top-title .type a:hover::after {
	visibility: visible;
	width: 100%;
	opacity: 1;
}

.index-news-problem .index-news-type .top-title .type a.active::after {
	visibility: visible;
	width: 100%;
	opacity: 1;
}

.index-news-problem .index-news-type .top-title .more a {
	color: #0264CF;
}
.index-news-problem .index-news-type .index-news-list .item{
	display: none;
}
.index-news-problem .index-news-type .index-news-list .item.active{
	display: block;
}
.index-news-problem .index-news-type .index-news-list .item .line01 {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.index-news-problem .index-news-type .index-news-list .item img {
	width: 250px;
	height: 160px;
}

.index-news-problem .index-news-type .index-news-list .item .intro {
	width: 280px;
	margin-bottom: 20px;
}

.index-news-problem .index-news-type .index-news-list .item .intro b {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 18px;
	color: #333333;
	margin-top: 8px;
	margin-bottom: 20px;
}

.index-news-problem .index-news-type .index-news-list .item .intro p {
	color: #666666;
	line-height: 24px;
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.index-news-problem .index-news-type .index-news-list .item .intro a {
	display: block;
	text-align: center;
	color: #FFFFFF;
	width: 105px;
	height: 32px;
	line-height: 32px;
	margin-top: 30px;
	background: rgba(2, 100, 207, 1);
}

.index-news-problem .index-news-type .index-news-list .item ul li {
	border-bottom: 1px solid #DFDFDF;
	line-height: 40px;
	padding-left: 18px;
	position: relative;
}
.index-news-problem .index-news-type .index-news-list .item ul li:last-child{
	border-bottom: 0px;
}
.index-news-problem .index-news-type .index-news-list .item ul li a {
	display: flex;
	justify-content: space-between;
}

.index-news-problem .index-news-type .index-news-list .item ul li::before {
	display: block;
	content: "";
	width: 4px;
	height: 4px;
	background: #005ABE;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}



.index-news-problem .index-problem .top-title {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #BBBBBB;
	line-height: 30px;
	margin-bottom: 34px;
}
.index-news-problem .index-problem .top-title .type a{
	color: #0264CF;
	position: relative;
	display: block;
}
.index-news-problem .index-problem .top-title .type a::after{
	display: block;
	content: "";
	height: 2px;
	background: rgba(0, 75, 158, 1);
	position: absolute;
	bottom: -1px;
	transition: all 0.4s linear 0s;
	width: 100%;
}
.index-news-problem .index-problem .top-title .more a {
	color: #0264CF;
}
.index-news-problem .index-problem .index-problem-list{
	height: 380px;
}
.index-news-problem .index-problem .index-problem-list .swiper-slide{
	border-bottom: 1px solid #DFDFDF;
}
.index-news-problem .index-problem .index-problem-list .swiper-slide a{
	display: block;
}
.index-news-problem .index-problem .index-problem-list .swiper-slide span{
	display: block;
	padding-left: 28px;
	margin-bottom: 15px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap; 
	background: url('../images/wen.jpg')no-repeat left center;
	line-height: 20px;
}
.index-news-problem .index-problem .index-problem-list .swiper-slide p{
	display: block;
	padding-left: 28px;
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	background: url('../images/da.jpg')no-repeat left 0px;
	line-height: 20px;
}
.index-links{
	margin-bottom: 20px;
}
.index-links b{
	line-height: 40px;
	display: block;
	font-size: 14px;
	color: #333333;
	border-bottom: 1px solid #DFDFDF;
	margin-bottom: 10px;
}
.index-links .index-links-list{
}
.index-links .index-links-list a{
	display: inline-block;
	margin-right: 20px;
	line-height: 24px;
}

footer.footer{
	padding: 30px 0px;
	width: 100%;
	height: 418px;
	color: #FFFFFF;
	background: url('../images/footer_bg.jpg')no-repeat center center;
}
footer.footer a{
	color: #FFFFFF;
}
footer.footer .footer-nav{
	font-size: 0px;
	margin-bottom: 40px;
}
footer.footer .footer-nav a{
	display: inline-block;
	color: #FFFFFF;
	width: 12.5%;
	font-size: 14px;
	text-align: center;
	position: relative;
}
footer.footer .footer-nav a::after{
	display: block;
	content: "";
	width:1px;
	height:12px;
	background:#FFFFFF;
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
}
footer.footer .footer-nav a:last-child::after{
	width:0px;
	height:0px;
}

footer.footer .box01 img{
	width: 100%;
}
footer.footer .box01 .line{
	margin-top: 30px;
	width: 289px;
	height: 39px;
	background: url('../images/03.jpg')no-repeat center center;
	line-height: 39px;
	text-indent: 16px;
	display: flex;
}
footer.footer .box01 .line b{
	margin-left: 16px;
	color: #0264CF;
	font-size: 26px;
}
footer.footer .box02{
	line-height: 22px;
}
footer.footer .box02 ul li{
	float: left;
	width: 50%;
	margin-top: 10px;
	margin-bottom: 10px;
}
footer.footer .box02 ul li span{
	display: block;
}
footer.footer .box03 img{
	width: 60%;
	display: block;
	margin: 0px auto;
}
footer.footer .box03 span{
	display: block;
	text-align: center;
	line-height: 40px;
}
.footer-admin{
	font-size: 12px;
	line-height: 26px;
	border-top: 1px solid #425D83;
	padding-top: 20px;
}

.main{
	margin: 50px auto;
}

.banner-nei{
	width: 100%;
	height: 400px;
}
.banner-nei-product{
	background: url('../images/banner_nei_product.jpg')no-repeat center center;
}
.banner-nei-service{
	background: url('../images/banner_nei_service.jpg')no-repeat center center;
}
.banner-nei-company{
	background: url('../images/banner_nei_company.jpg')no-repeat center center;
}
.banner-nei-sp{
	background: url('../images/sp.jpg')no-repeat center center;
}
.banner-nei-news{
	background: url('../images/banner_nei_news.jpg')no-repeat center center;
}
.banner-nei-message{
	background: url('../images/banner_nei_message.jpg')no-repeat center center;
}
.banner-nei-contact{
	background: url('../images/banner_nei_contact.jpg')no-repeat center center;
}
.banner-nei-video{
	background: url('../images/banner_nei_video.jpg')no-repeat center center;
}

.sidebar>.sidebar-title{
	width: 100%;
	line-height: 54px;
	background-color: #F8C301;
	color: #002A58;
	padding: 0px 10px;
	font-size: 22px;
	margin-bottom: 12px;
}
.sidebar>ul>li{
	width: 100%;
	padding: 0px 10px;
	line-height: 36px;
	border: 1px solid #CFCFCF;
	margin-bottom: 12px;
	transition: all 300ms ease-in-out;
}
.sidebar>ul>li:hover{
	background-color: #004B9E;
}

.a01{
	background-color: #004B9E;
	color:#FFFFFF;
	
}

.a01 a{

	color:#FFFFFF;
	
}

.sidebar>ul>li>a{
	display: block;
}
.sidebar>ul>li:hover a{
	color: #FFFFFF;
}
.sidebar>.sidebar-contact{
	border: 1px solid #DFDFDF;
}
.sidebar>.sidebar-contact>.title{
	padding: 10px;
}
.sidebar>.sidebar-contact>.title>small{
	display: block;
	color: #9FCDFF;
	margin-bottom: 4px;
}
.sidebar>.sidebar-contact>.title>b{
	display: block;
	color: #004B9E;
	font-size: 26px;
}
.sidebar>.sidebar-contact>p{
	line-height: 32px;
	padding: 0px 10px;
	border-top: 1px solid #DFDFDF;
}
.sidebar>.sidebar-contact>img{
	width: 100%;
}





div.page {
	padding: 3px;
	margin: 3px;
	text-align: center;
	margin-top: 30px;
	color: #999999;
}

div.page a {
	border: 1px #999999 solid;
	padding: 4px 6px;
	margin: 0px 4px;
	color: #999999;
	text-decoration: none;
	display: inline-block;
	min-width: 30px;
}

div.page a:hover {
	border: #999999 1px solid;
	color: #999999;
}

div.page a:active {
	border: #999999 1px solid;
	color: #cccccc;
}

div.page span.current {
	padding: 2px 8px;
	font-weight: bold;
	margin: 2px;
	color: #ffffff;
	background-color: #035EB7;
}

div.page span.disabled {
	border: #999999 1px solid;
	padding: 2px 5px;
	margin: 2px;
	color: #999999;
}

div.page select {
	display: none;
}

.product-list .product-list-img{
	margin-bottom: 20px;
}
.product-list .product-list-img img{
	height: 260px;
	width: 100%;
	transition: all 300ms ease-in-out;
}
.product-list .product-list-img img:hover{
	opacity: 0.85;
}
.product-list .product-list-img .box{
	justify-content: space-between;
	line-height: 40px;
	text-align:center;
}

.location{
	line-height: 40px;
	border-bottom: 1px solid #CFCFCF;
	margin-bottom: 26px;
}
.location i{
	margin-right: 10px;
}

.location-center{
	line-height: 40px;
	border-bottom: 1px solid #CFCFCF;
	margin-bottom: 26px;
	text-align: center;
}
.location-center i{
	margin-right: 10px;
}


.product-info-lunbo {
	height: 360px;
	width: 50%;
	margin-left:auto;
	margin-right:auto;
}

.product-info-lunbo .gallery-top {
	height: 77%;
	width: 100%;
}

.product-info-lunbo .gallery-top .swiper-slide img {
	width: 100%;
	height: 100%;
}

.product-info-lunbo .gallery-thumbs {
	height: 23%;
	box-sizing: border-box;
	padding: 10px 0;
}

.product-info-lunbo .gallery-thumbs .swiper-slide img {
	width: 100%;
	height: 100%;
}

.product-info-lunbo .gallery-thumbs .swiper-slide {
	width: 25%;
	height: 100%;
	opacity: 0.4;
}

.product-info-lunbo .gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

.product-info-lunbo-intro .intro{
	width: 40%;
}
.product-info-lunbo-intro .intro p{
	line-height: 40px;
	color: #333333;
	letter-spacing: 1px;
}
.product-info-lunbo-intro .intro p em{
	color: #004B9E;
}
.product-info-lunbo-intro .intro a{
	width:127px;
	height:36px;
	line-height: 36px;
	background:rgba(0,75,158,1);
	border-radius:5px;
	color: #FFFFFF;
	text-align: center;
	display: block;
	margin-top: 20px;
}

.details-info {
	max-width: 100%;
	font-size: 14px;
	line-height: 26px;
	text-align: justify;
	color: #333;
}

.details-info img {
	max-width: 100%;
	display: block;
	margin: 0px auto !important;
}

.details-info table {
	border: 1px solid #808080;
	width: 100% !important;
	border-collapse: collapse;
}

.details-info table td {
	border: 1px solid #808080;
	text-align: center;
}


.product-info-content-type .type{
	line-height: 36px;
	display: flex;
	justify-content : flex-start;
	margin-bottom: 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}
.product-info-content-type .type span{
	display: block;
	width: 100px;
	text-align: center;
	margin-left:auto;
	margin-right:auto;
}
.product-info-content-type .type span.active{
	background-color: #004B9E;
	color: #FFFFFF;
}
.product-info-content-type .box{
	padding: 20px;
	display: none;
}
.product-info-content-type .box.active{
	display: block;
}



/*上一页+下一页*/
#prev_next {
	margin-top: 30px;
}

#prev_next li {
	line-height: 40px;
	text-indent: 20px;
	width: 100%;
	font-size: 14px;
	display: flex;
}

#prev_next li:nth-child(1) {
	background: url('../images/up.png')no-repeat 0px 15px;
	border-top: 1px solid #ccc;
}

#prev_next li:nth-child(2) {
	background: url('../images/down.png')no-repeat 0px 15px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

#prev_next li a {
	display: inline-block;
	width: 70%;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap; 
}



.video-list ul li a{
	display: block;
	padding: 4px;
	border: 1px solid #CFCFCF;
}
.video-list ul li img{
	height: 170px;
	width: 100%;
}
.video-list ul li span{
	display: block;
	text-align: center;
	line-height: 40px;
}

.nav-public-type{
	display: flex;
    justify-content: center;
	margin-bottom: 50px;
}
.nav-public-type a{
	display: inline-block;
	border: 1px solid #0757B0;
	padding: 10px 30px;
	margin: 0px 20px;
}
.nav-public-type a:hover{
	background-color: #0757B0;
	color: #FFFFFF;
}
.nav-public-type a.active{
	background-color: #0757B0;
	color: #FFFFFF;
}

.public-image-list ul li{
	margin-bottom: 10px;
}
.public-image-list ul li a{
	display: block;
	padding: 4px;
	border: 1px solid #CFCFCF;
}
.public-image-list ul li:hover a{
	-webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.18);
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.18);
	-webkit-transform: translate3d(0, -2px, 0);
	transform: translate3d(0, -2px, 0);
}
.public-image-list ul li img{
	height: 170px;
	width: 100%;
}
.public-image-list ul li span{
	display: block;
	text-align: center;
	line-height: 40px;
}

.news-list ul li{
	margin-bottom: 30px;
}
.news-list ul li a.title{
	font-size: 18px;
	display: block;
	margin-bottom: 14px;
}
.news-list ul li p{
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	line-height: 30px;
}
.news-list ul li .line03{
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #CACACA;
	margin-top: 7px;
	line-height: 30px;
	transition: all 300ms ease-in-out;
	position: relative;
}
.news-list ul li .line03::before{
	display: block;
	content: "";
	width: 0%;
	height: 1px;
	background-color: #004B9E;
	position: absolute;
	top: -1px;
	transition: all 1000ms ease-in-out;
	visibility: hidden;
	opacity: 0;
}
.news-list ul li:hover .line03::before{
	visibility: visible;
	opacity: 1;
	width: 100%;
}


.news_title {
	font-size: 28px;
	line-height: 40px;
	color: #535353;
	text-align: center;
	display: block;
	margin: 10px auto;
}

.username_click {
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: center;
	margin: 20px auto;
	border-bottom: 1px dashed #ccc;
	position: relative;
}

.username_click span {
	display: inline-block;
	vertical-align: middle;
	color: #999;
	line-height: 1.8;
	text-indent: 25px;
	margin-right: 10px;
}

.username_click .news_user {
	background: url(../images/news_u.png) no-repeat left;
}

.username_click .show_t {
	background: url(../images/time.png) no-repeat left;
}

.username_click .to_look {
	background: url(../images/look.png) no-repeat left;
}

.username_click .back {
	float: right;
	background: url(../images/back.png) no-repeat left;
	color: #999;
	line-height: 1.8;
	text-indent: 25px;
}

.inner_map{
	width: 100%;
	height: 300px;
}
.contact-information p{
	line-height: 34px;
	font-size: 16px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	color: #333333;
}