﻿body {
	overflow-x: hidden;
	background-color:#fff;
}
.footer_fixed{ display:none;}
/* 加载中 */
#loading {
	background-color:#fff;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 10003;
	margin-top: 0px;
	top: 0px;
}

#loading-center {
	width: 100%;
	height: 100%;
	position: relative;
}

#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 200px;
	width: 200px;
	margin-top: -100px;
	margin-left: -100px;
}

.object {
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0);
	margin-right: auto;
	margin-left: auto;
	border: 4px solid #165cb3;
	left: 73px;
	top: 73px;
	position: absolute;
}

#first_object {
	-webkit-animation: first_object_animate 1s infinite ease-in-out;
	animation: first_object_animate 1s infinite ease-in-out;
}

#second_object {
	-webkit-animation: second_object 1s forwards, second_object_animate 1s infinite ease-in-out;
	animation: second_object 1s forwards, second_object_animate 1s infinite ease-in-out;
}

#third_object {
	-webkit-animation: third_object 1s forwards, third_object_animate 1s infinite ease-in-out;
	animation: third_object 1s forwards, third_object_animate 1s infinite ease-in-out;
}

@-webkit-keyframes second_object {
	100% {
		width: 100px;
		height: 100px;
		left: 48px;
		top: 48px;
	}
}

@keyframes second_object {
	100% {
		width: 100px;
		height: 100px;
		left: 48px;
		top: 48px;
	}
}

@-webkit-keyframes third_object {
	100% {
		width: 150px;
		height: 150px;
		left: 23px;
		top: 23px;
	}
}

@keyframes third_object {
	100% {
		width: 150px;
		height: 150px;
		left: 23px;
		top: 23px;
	}
}

@-webkit-keyframes first_object_animate {
	0% {
		-webkit-transform: perspective(100px);
	}

	50% {
		-webkit-transform: perspective(100px) rotateY(-180deg);
	}

	100% {
		-webkit-transform: perspective(100px) rotateY(-180deg) rotateX(-180deg);
	}
}

@keyframes first_object_animate {
	0% {
		transform: perspective(100px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(100px) rotateX(0deg) rotateY(0deg);
	}

	50% {
		transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
		-webkit-transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
	}

	100% {
		transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
		-webkit-transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
	}
}

@-webkit-keyframes second_object_animate {
	0% {
		-webkit-transform: perspective(200px);
	}

	50% {
		-webkit-transform: perspective(200px) rotateY(180deg);
	}

	100% {
		-webkit-transform: perspective(200px) rotateY(180deg) rotateX(180deg);
	}
}

@keyframes second_object_animate {
	0% {
		transform: perspective(200px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(200px) rotateX(0deg) rotateY(0deg);
	}

	50% {
		transform: perspective(200px) rotateX(180deg) rotateY(0deg);
		-webkit-transform: perspective(200px) rotateX(180deg) rotateY(0deg);
	}

	100% {
		transform: perspective(200px) rotateX(180deg) rotateY(180deg);
		-webkit-transform: perspective(200px) rotateX(180deg) rotateY(180deg);
	}
}

@-webkit-keyframes third_object_animate {
	0% {
		-webkit-transform: perspective(300px);
	}

	50% {
		-webkit-transform: perspective(300px) rotateY(-180deg);
	}

	100% {
		-webkit-transform: perspective(300px) rotateY(-180deg) rotateX(-180deg);
	}
}

@keyframes third_object_animate {
	0% {
		transform: perspective(300px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(300px) rotateX(0deg) rotateY(0deg);
	}

	50% {
		transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
		-webkit-transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
	}

	100% {
		transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
		-webkit-transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
	}
}


/**滚动条样式**/
body::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 6px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 1px;
}

body::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #165CB3;
}

body::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #cccccc;
}

body {
	padding-top: 80px;
}

/* 头部 */
.header {
	width: 100%;
	height: 80px;
	border-bottom: 1px solid #ededed;
	padding: 0 40px 0 30px;
	box-sizing: border-box;
	background: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10002;
}

.logo {
	display: block;
	height: 60px;
	float: left;
	margin-left:10px;
	margin-top: 10px;
	
	background-size:cover;
}

.logo img {
	height: 100%;
}

.nav-li {
	float: left;
	margin-left: 20px;
}

.nav-li:first-child {
	margin-left: 0;
}

.nav-a {
	line-height: 80px;
	display: block;
	padding: 0 20px;
	font-size: 16px;
	color: #303030;
	min-width: 64px;
	text-align: center;
}

.nav-a i {
	display: inline-block;
	width: 11px;
	height: 6px;
	background: url(../images/nav_arrow.png) no-repeat;
	margin-left: 13px;
	vertical-align: middle;
}

.nav-li.on .nav-a i {
	background-position: 0 -6px;
}

.nav-li.on .nav-a {
	background: #165cb3;
	color: #FFFFFF;
}

.nav-yfw {
	display: block;
	background: url(../images/yfw-icon.png) left center no-repeat;
	padding-left: 47px;
	line-height: 100px;
	font-size: 16px;
	color: #165cb3;
	margin-left: 25px;
	border-right: 1px solid #e8e8e8;
	padding-right: 40px;
}

.search {
	width: 211px;
	height: 32px;
	border: 1px solid #e4e4e4;
	border-radius: 20px;
	margin: 34px 0 0 32px;
}

.search input {
	width: 160px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	border: none;
	background: none;
	outline: none;
	font-size: 12px;
	float: left;
}

.search input::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #8a8a8a;
}

.search input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #8a8a8a;
}

.search input:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #8a8a8a;
}

.search-btn {
	display: block;
	outline: none;
	border: none;
	background: url(../images/search-icon.png) right no-repeat;
	width: 21px;
	height: 20px;
	border-left: 1px solid #f4f5f7;
	padding-left: 14px;
	float: left;
	margin-top: 6px;
}

.search-icon {
	display: none;
	height: 29px;
	width: 30px;
	cursor: pointer;
	margin-top: 35px;
	background: url(../images/search-wap.png) no-repeat;
	transition: .3s all ease;
}

.search-icon.on {
	background: url(../images/close.png) center no-repeat;
	background-size: contain;
}

.menu {
	display: none;
	width: 43px;
	height: 30px;
	background: url(../images/menu-icon.png) no-repeat;
	margin-top: 35px;
	margin-left: 20px;
	cursor: pointer;
}

.menu.on {
	background: url(../images/close.png) center no-repeat;
	background-size: contain;
}

.header-wap {
	width: 100%;
	background: #FFFFFF;
	padding-bottom: 20px;
	display: none;
	/* margin-top: 100px; */
}

.header-wap.fixed {
	position: fixed;
	top: 100px;
	left: 0;
	z-index: 10001;
	box-shadow: 0px -2px 10px #000000;
}

.menu-li {
	box-sizing: border-box;
	border-bottom: 1px solid #e8e8e8;
}

.menu-li .lmm {
	margin: 0 20px;
	line-height: 40px;
	cursor: pointer;
}

.menu-li .lmm span {
	display: block;
	float: right;
	width: 20px;
	height: 20px;
	margin-top: 10px;
	background: url(../images/menu-open.png) right center no-repeat;
}

.menu-li .lmm.on span {
	background: url(../images/menu-close.png) right center no-repeat;
}

.submenu-ul {
	display: none;
}

.submenu-ul li {
	background: #f7f7f7;
	line-height: 36px;
	border-top: 1px solid #e8e8e8;
	font-size: 14px;
	padding: 0 30px;
}

.search-wap {
	width: 100%;
	padding: 10px 20px;
	background: #FFFFFF;
	display: none;
	/* margin-top: 100px; */
	position: fixed;
	top: 100px;
	left: 0;
	z-index: 99;
	box-sizing: border-box;
}

/* 下拉菜单 */
.navSlide {
	width: 100%;
	/* height: 215px; */
	position: absolute;
	left: 0;
	top: 80px;
	z-index: 99;
}

.quickTabContentBox {
	background: rgba(255, 255, 255, .95);
	display: none;
	position: relative;
}

.quickTabContentBox i {
	display: block;
	width: 100%;
	height: 1px;
	background: #165CB3;
	position: absolute;
	left: 0;
	top: 0;
}

.quickTabContentBox .pic {
	width: 33.28%;
	height: 284px;
	line-height: 284px;
	text-align: center;
	float: left;
	border-right: 1px solid #dcdcdc;
	font-size: 36px;
	color: #165cb3;
}

.quickTabContent {
	/* padding-top: 20px; */
	/* padding-bottom: 21px; */
	vertical-align: top;
	display: inline-block;
	margin-left: 70px;
	min-height: 184px;
}

.quickTabContent h3 {
	/* width: 132px; */
	margin-top:10px;
	font-size: 16px;
	line-height: 1;
	padding: 0 0 15px 0;
	font-weight: 400;
	color: #165cb3;
	display: block;
	border-bottom: 1px solid #e8e8e2;
}

.quickTabContent h3 a {
	color: #165cb3;
}

.quickTabContent li {
	font-size: 14px;
	line-height: 36px;
}

.quickTabContent li a {
	color: #434343;
	transition: .3s all ease;
}

.quickTabContent a:hover {
	color: #165cb3;
}


/* 右侧浮动 */
.right-wrap {
	width: 77px;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: 0%;
	z-index: 10000;
	/* border-bottom: 1px solid rgba(237,237,237,.5); */
}

.right-wrap a {
	display: block;
	width: 76px;
	height: 77px;
	position: relative;
}

.right-wrap a.fhdb .nr {
	border-bottom: 1px solid rgba(237, 237, 237, .5);
}

.right-wrap a .nr {
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	border-top: 1px solid rgba(237, 237, 237, .5);
	border-left: 1px solid rgba(237, 237, 237, .5);
	transition: .3s all ease;
	position: relative;
	z-index: 9;
}

.right-wrap .gzh-conten {
	position: absolute;
	right: -200%;
	top: 50%;
	margin-top: -50px;
	border: 3px solid rgba(237, 237, 237, 1);
	transition: .3s all ease;
}

.right-wrap a:hover .gzh-conten {
	right: 85px;
}

.right-wrap .gzh-conten::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 7px solid rgba(237, 237, 237, 1);
	position: absolute;
	right: -10px;
	top: 50%;
	margin-top: -7px;
}

.right-wrap .gzh-conten img {
	width: 100px;
	height: 100px;
}

.right-wrap a:hover .nr {
	background: #165cb3;
	border-left: 1px solid #165cb3;
}

.right-wrap a .pic {
	display: block;
	height: 21px;
	margin: 18px auto 0;
}

.right-wrap a.sqzx .pic {
	width: 18px;
	background: url(../images/icon-sqzx.png) left center no-repeat;
}

.right-wrap a.sqzx:hover .pic {
	background-position: -18px center;
}

.right-wrap a.rczp .pic {
	width: 24px;
	background: url(../images/icon-rczp.png) left center no-repeat;
}

.right-wrap a.rczp:hover .pic {
	background-position: -24px center;
}

.right-wrap a.gzh .pic {
	width: 20px;
	background: url(../images/icon-gzh.png) left center no-repeat;
}

.right-wrap a.gzh:hover .pic {
	background-position: -20px center;
}

.right-wrap a.fhdb .pic {
	width: 15px;
	background: url(../images/icon-fhdb.png) left center no-repeat;
}

.right-wrap a.fhdb:hover .pic {
	background-position: -15px center;
}

.right-wrap a .text {
	text-align: center;
	font-size: 14px;
	color: #165cb3;
	margin-top: 8px;
	transition: .3s all ease;
}

.right-wrap a:hover .text {
	color: #FFFFFF;
}

/* banner */
.banner {
	width: 100%;
	/* margin-top: 100px; */
}

.banner .swiper-container {
	width: 100%;
	height: 100%;
}

.banner .swiper-slide img {
	width: 100%;
}

.banner .swiper-pagination-bullet {
	width: 13px;
	height: 13px;
	border: 1px solid #9d9d9d;
	box-sizing: border-box;
	margin: 0 6px;
}

.banner .swiper-pagination-bullet-active {
	background: #165cb3;
	border: 1px solid #0e50a2;
}

.banner .swiper-pagination {
	bottom: 27px;
}

.banner-content {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100 !important;
	padding: 0 220px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

/* @font-face {
	font-family: DQHT;
	src: url(../fonts/DQHT.otf);
} */

.banner .swiper-slide .banner1-img1 {
	width: 839px;
	max-width: 80%;
}

.banner1-nr {
	width: 910px;
	max-width: 100%;
	font-size: 16px;
	line-height: 36px;
	height: 108px;
	color:#04264E;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-top: 35px;
	padding: 5px;
	border-radius: 5px;
	background-color:rgba(237,237,237,0.73);
	filter:alpha(Opacity=60);-moz-opacity:0.6;opacity: 0.6;
	/* font-family: DQHT; */
	font-family: "微软雅黑";
}

.banner1-btn {
	display: block;
	width: 367px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	background: #6296d6;
	font-size: 14px;
	color: #ffffff;
	border-radius: 20px;
	margin-top: 44px;
	font-family: DQHT;
	transition: .3s all ease;
}

.banner1-btn:hover {
	background: #377dd3;
}

/* 关于 */
.about {
	width: 100%;
	height: 593px;
}

.about-left {
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.swiper-container-zzdt {
	width: 100%;
	height: 100%;
	text-align: center;
}

.swiper-container-zzdt .swiper-slide {
	background: #ffbc6c;
}

.swiper-container-zzdt .swiper-slide a {
	width: 100%;
	height: 100%;
}

.swiper-container-zzdt .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
	transition: all linear 0.3s;
}

.swiper-container-zzdt .swiper-slide:hover img {
	transform: scale(1, 1);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.05);
	-webkit-transition: all 1s ease 0.8s;
	-moz-transition: all 1s ease 0.8s;
	-ms-transition: all linear 0.8s;
	-o-transition: all linear 0.8s;
	transition: all linear 0.8s;
}

.swiper-container-zzdt .swiper-slide .text {
	width: 97.6%;
	height: 103px;
	background: rgba(255, 255, 255, .85);
	position: absolute;
	bottom: 12px;
	left: 1.2%;
	/* margin: 0 12px; */
}

.swiper-container-zzdt .swiper-slide .date {
	margin-left: 42px;
}

.swiper-container-zzdt .swiper-slide .day {
	font-size: 30px;
	font-family: arial;
	color: #d20000;
	margin-top: 25px;
	text-align: left;
}

.swiper-container-zzdt .swiper-slide .year {
	font-size: 14px;
	font-family: arial;
	color: #777777;
	margin-top: 3px;
}

.swiper-container-zzdt .swiper-slide .text-con {
	margin-left: 110px;
	padding-right: 200px;
}

.swiper-container-zzdt .swiper-slide .bt {
	font-size: 18px;
	color: #232222;
	height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 24px;
	text-align: left;
}

.swiper-container-zzdt .swiper-slide .nr {
	font-size: 14px;
	color: #565656;
	height: 19px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 12px;
}

.swiper-container-zzdt .swiper-slide .text .zzdt-arrow {
	display: block;
	width: 22px;
	height: 18px;
	background: url(../images/zzdt-arrow.png);
	position: absolute;
	top: 50%;
	margin-top: -9px;
	right: 52px;
	transition: .3s all ease;
}

.swiper-container-zzdt .swiper-slide:hover .text .zzdt-arrow {
	right: 25px;
}

.swiper-container-zzdt .swiper-pagination {
	bottom: 150px;
	width: auto;
	left: auto;
	display: inline-block;
	position: relative;
}

.swiper-container-zzdt .swiper-pagination-bullet {
	width: 28px;
	height: 4px;
	background: #FFFFFF;
	border-radius: 0;
	margin: 0 5px;
	opacity: 1;
}

.swiper-container-zzdt .swiper-pagination-bullet-active {
	background: #165cb3;
}

.swiper-container-zzdt .swiper-button-next,
.swiper-container-zzdt .swiper-button-prev {
	width: 22px;
	height: 43px;
	background: url(../images/zzdt-sxy.png);
}

.swiper-container-zzdt .swiper-button-next {
	background-position: -22px 0;
	right: 45px;
}

.swiper-container-zzdt .swiper-button-prev {
	left: 45px;
}

.about-right {
	width: 50%;
	height: 100%;
	background: url(../images/about-r-bg.png) right top no-repeat;
	position: relative;
}

.about-right .gsmc {
	font-size: 40px;
	font-weight: bold;
	color: #165cb3;
	display: block;
	position: relative;
	margin-left: 67px;
	margin-top: 75px;
	padding-bottom: 20px;
}

.about-right .gsmc::after {
	content: "";
	width: 80px;
	height: 3px;
	background: #165cb3;
	position: absolute;
	left: 0;
	bottom: 0;
}

.about-right .text {
	margin-left: 67px;
	margin-top: 60px;
	padding-right: 70px;
}

.about-right .text .bt {
	font-size: 24px;
	color: #222222;
	height: 31px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.about-right .text .nr {
	font-size: 14px;
	color: #494949;
	height: 19px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 18px;
}

.about-right .text .tsgd {
	display: block;
	width: 203px;
	height: 37px;
	line-height: 37px;
	line-height: 37px;
	border-radius: 20px;
	background: #165cb3;
	margin-top: 65px;
	font-size: 14px;
	color: #ffffff;
	text-indent: 57px;
	position: relative;
}

.about-right .text .tsgd img {
	vertical-align: middle;
	margin-left: 14px;
	transition: .3s all ease;
}

.about-right .text .tsgd .arrow {
	display: block;
	width: 23px;
	height: 5px;
	background: url(../images/tsgd-icon.png);
	position: absolute;
	left: 127px;
	top: 50%;
	margin-top: -3px;
	transition: .3s all ease;
}

.about-right .text .tsgd:hover .arrow {
	left: 140px;
}

.about-r-bottom {
	width: 100%;
	height: 149px;
	position: absolute;
	left: 0;
	bottom: 0;
	border-top: 1px solid #f3f7fb;
}

.about-r-bottom li {
	width: 25%;
	height: 100%;
	float: left;
	border-left: 1px solid #f3f7fb;
	box-sizing: border-box;
	transition: .3s all ease;
	position: relative;
}

.about-r-bottom li:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, .09);
}

.about-r-bottom li:first-child {
	border-left: none;
}

.about-r-bottom li a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.about-r-bottom li .lm {
	color: #696969;
	font-size: 16px;
	margin-top: 15px;
}

/* 行业应用 */
.industry {
	background: url(../images/hyyy-bg.jpg) top center no-repeat;
	padding-top: 70px;
	position: relative;
	z-index: 1;
}

.sy-title {
	text-align: center;
	position: relative;
}

.sy-title .line {
	width: 100%;
	height: 1px;
	background: #B1C0E1;
	position: absolute;
	top: 50%;
}

.sy-title .line.left {
	left: 0;
}

.sy-title .line.right {
	right: 0;
}

.sy-title .title-con {
	display: inline-block;
	text-align: center;
	padding: 0 22px;
	border-left: 1px solid #b1c0e1;
	border-right: 1px solid #b1c0e1;
}

.sy-title .lmm {
	font-size: 48px;
	color: #424242;
}

.sy-title .js {
	font-size: 16px;
	color: #b5b5b5;
}

.industry-ul {
	margin-top: 70px;
	height: 567px;
}

.industry-ul li {
	width: 16.66%;
	height: 100%;
	float: left;
	transition: .3s all ease;
}

.industry-ul li.on {
	width: 50%;
}

.industry-ul li.li1 {
	background: url(../images/hyyy-img1.jpg) right bottom no-repeat #ffffff;
}

.industry-ul li.li2 {
	background: url(../images/hyyy-img2.jpg) right bottom no-repeat #e8eff8;
}

.industry-ul li.li3 {
	background: url(../images/hyyy-img3.jpg) right bottom no-repeat #c8d8ed;
}

.industry-ul li.li4 {
	background: url(../images/hyyy-img4.jpg) right bottom no-repeat #adc4e1;
}

.hyyy-title {
	font-size: 24px;
	margin-top: 80px;
}

.industry-ul .li1 .hyyy-title {
	color: #cf0000;
}

.industry-ul .li2 .hyyy-title {
	color: #165cb3;
}

.industry-ul .li3 .hyyy-title {
	color: #009a62;
}

.industry-ul .li4 .hyyy-title {
	color: #515151;
}

.hyyy-title i {
	display: block;
	width: 75px;
	height: 1px;
	float: left;
	margin-top: 15px;
	margin-right: 10px;
	transition: .3s all ease;
}

.industry-ul li.on .hyyy-title i {
	width: 92px;
}

.industry-ul .li1 .hyyy-title i {
	background: #cfcfcf;
}

.industry-ul .li2 .hyyy-title i {
	background: #d0d7df;
}

.industry-ul .li3 .hyyy-title i {
	background: #b0bed0;
}

.industry-ul .li4 .hyyy-title i {
	background: #93a7bf;
}

.industry-ul li .fbt {
	text-align: center;
	font-size: 14px;
	margin-top: 5px;
	padding: 0 5px;
}

.industry-ul li.li1 .fbt {
	color: #dd5858;
}

.industry-ul li.li2 .fbt {
	color: #6696d1;
}

.industry-ul li.li3 .fbt {
	color: #2db382;
}

.industry-ul li.li4 .fbt {
	color: #6b6b6a;
}

.industry-ul li.on .fbt {
	display: none;
}

.industry-ul li .js {
	font-size: 14px;
	line-height: 30px;
	height: 90px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	text-align: justify;
	padding: 0 102px;
	margin-top: 75px;
	display: none;
}

.industry-ul li.on .js {
	display: block;
	display: -webkit-box;
}

.industry-ul li.li1 .js {
	color: #595a5a;
}

.industry-ul li.li2 .js {
	color: #666666;
}

.industry-ul li.li3 .js {
	color: #666666;
}

.industry-ul li.li4 .js {
	color: #666666;
}

.industry-ul li.on .btn-con {
	display: block;
}

.btn-con {
	padding: 0 0 0 102px;
	margin-top: 122px;
	display: none;
}

.btn-con a {
	display: block;
	width: 146px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 20px;
	float: left;
	font-size: 14px;
	margin-right: 16px;
	transition: .3s all ease;
}

.btn-con a:last-child {
	margin-right: 0;
}

.btn-con a:hover {
	background: #cf0000;
	border: 1px solid #cf0000;
}

.industry-ul li.li1 .btn-con a {
	color: #cf0000;
	border: 1px solid #e77f7f;
}

.industry-ul li.li1 .btn-con a:hover {
	border: 1px solid #cf0000;
	background: #cf0000;
	color: #FFFFFF;
}

.industry-ul li.li2 .btn-con a {
	color: #165cb3;
	border: 1px solid #7fa5d5;
}

.industry-ul li.li2 .btn-con a:hover {
	border: 1px solid #165cb3;
	background: #165cb3;
	color: #FFFFFF;
}

.industry-ul li.li3 .btn-con a {
	color: #009a62;
	border: 1px solid #64b9a7;
}

.industry-ul li.li3 .btn-con a:hover {
	border: 1px solid #009a62;
	background: #009a62;
	color: #FFFFFF;
}

.industry-ul li.li4 .btn-con a {
	color: #515151;
	border: 1px solid #7f8a99;
}

.industry-ul li.li4 .btn-con a:hover {
	border: 1px solid #515151;
	background: #515151;
	color: #FFFFFF;
}

/* 产品及服务 */
.product {
	padding-top: 87px;
	padding-bottom: 67px;
}

.swiper-container-cpfw {
	margin: 50px 116px 0;
}

.swiper-container-cpfw .swiper-slide {
	margin: 0 auto;
	box-sizing: border-box;
	border: 1px solid transparent;
	/* transition: .3s all ease; */
}

.swiper-container-cpfw .swiper-slide:hover {
	box-shadow: 0 0;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .04);
}

.swiper-container-cpfw .swiper-slide a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 33px 40px 28px 76px;
}

.swiper-container-cpfw .swiper-slide .pic {
	float: left;
}

.swiper-container-cpfw .swiper-slide .text {
	margin-left: 40px;
}

.swiper-container-cpfw .swiper-slide .text .bt {
	font-size: 24px;
	color: #000000;
	height: 31px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.swiper-container-cpfw .swiper-slide .text .nr {
	font-size: 14px;
	color: #636363;
	line-height: 30px;
	height: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-top: 20px;
}

.swiper-container-cpfw .swiper-pagination {
	position: relative;
	bottom: initial;
}

.swiper-container-cpfw .swiper-pagination-bullet {
	width: 64px;
	height: 4px;
	background: #cdcdcd;
	border-radius: 0;
	margin: 0 7px;
	opacity: 1;
}

.swiper-container-cpfw .swiper-pagination-bullet-active {
	background: #165cb3;
}

/* 研修院 */
.training {
	width: 100%;
	/* height: 599px; */
	/* background: url(../images/zzyxy-bg.jpg) center no-repeat; */
	position: relative;
	overflow: hidden;
}

.training .bg {
	/* width: 100%; */
	min-width: 100%;
	height: 599px;
}

.training-right {
	width: 50%;
	height: 100%;
	background: rgba(22, 92, 179, .9);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
}

.training-right .img {
	margin-top: 98px;
	margin-left: 50px;
}

.training-right .js {
	font-size: 14px;
	line-height: 30px;
	height: 90px;
	color: #ffffff;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	opacity: .75;
	padding: 0 90px;
	text-align: justify;
	margin-top: 62px;
}

.training-right .ckcg {
	display: block;
	width: 174px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background: #165cb3;
	border-radius: 20px;
	color: #FFFFFF;
	font-size: 14px;
	margin: 52px 0 0 90px;
}

/* 公司信息 */
.branch {
	padding: 45px 0 45px 10px;
	background: #f4f5f7;
}

.branch-dl {
	width: 33.33%;
	float: left;
	padding-left: 20px;
	box-sizing: border-box;
}

.branch-dl dt {
	font-size: 16px;
	color: #333333;
	margin-bottom: 10px;
}

.branch-dl dd {
	font-size: 14px;
	line-height: 20px;
	color: #999999;
	min-height: 20px;
	padding: 8px 0 8px 30px;
}

.branch-dl dd.address {
	background: url(../images/icon-address.png) 2px center no-repeat;
}

.branch-dl dd.email {
	background: url(../images/icon-email.png) left center no-repeat;
}

.branch-dl dd.telephone {
	background: url(../images/icon-telephone.png) left center no-repeat;
}

/* 底部 */
.footer {
	width: 100%;
	background: #404143;
	overflow: hidden;
}

.footer-top {
	height: 269px;
	border-bottom: 1px solid #686868;
}

.footer-t-l {
	/* width: 73.95%; */
	width: 79.95%;
	height: 100%;
	border-right: 1px solid #686868;
	box-sizing: border-box;
}

.footer-dl {
	width: 16.66%;
	padding-left: 50px;
	box-sizing: border-box;
	float: left;
}

.footer-dl dt {
	margin-top: 30px;
	margin-bottom: 5px;
}

.footer-dl dt a {
	font-size: 16px;
	color: #ffffff;
}

.footer-dl dd{width: 175px; overflow: hidden; text-overflow: ellipsis;
	white-space: nowrap;}
.footer-dl dd a {
	
	font-size: 14px;
	color: #939392;
	line-height: 36px;
	height: 36px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: .3s all ease;
}

.footer-dl dd a:hover {
	opacity: .8;
}

.footer-t-r {
	padding: 0 50px;
}

.footer-t-r {
	font-size: 16px;
	color: #ffffff;
	/* margin-top: 30px; */
	/* width: 26.05%; */
	width: 20.05%;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.ewm-img {
	width: 143px;
	height: 143px;
	margin: 15px 0 0;
}

.yqlj-con {
	width: 100%;
	height: 168px;
	overflow: auto;
	margin-top: 15px;
}

.yqlj-con a {
	display: block;
	float: left;
	font-size: 14px;
	line-height: 36px;
	color: #939392;
	margin-right: 35px;
	transition: .3s all ease;
}

.yqlj-con a:hover {
	opacity: .8;
}

/**滚动条样式**/
.yqlj-con::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 1px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 1px;
}

.yqlj-con::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	/* border-radius: 6px; */
	/* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
	/* background: #cf0000; */
	border: 2px solid #CF0000;
}

.yqlj-con::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	/* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
	/* border-radius: 6px; */
	background: #939392;
}

.footer-bottom {
	height: 43px;
	line-height: 43px;
	padding: 0 55px;
	font-size: 14px;
	color: #939392;
}

.footer-bottom a {
	color: #939392;
}

.footer-bottom a img {
	vertical-align: middle;
	margin-right: 5px;
}

@media only screen and (max-width:1700px) {
	.about {
		height: 495px;
	}

	.about-right .gsmc {
		margin-left: 55px;
		margin-top: 65px;
	}

	.about-right .text {
		margin-left: 55px;
		margin-top: 45px;
	}

	.about-right .text .nr {
		margin-top: 12px;
	}

	.about-right .text .tsgd {
		margin-top: 45px;
		/* width: 170px; */
		/* height: 32px; */
		/* line-height: 32px; */
	}

	.about-r-bottom {
		height: 124px;
	}

	.industry {
		padding-top: 55px;
	}

	.industry-ul {
		margin-top: 55px;
		height: 475px;
	}

	.hyyy-title i {
		width: 60px;
	}

	.industry-ul li.on .hyyy-title i {
		width: 78px;
	}

	.industry-ul li .js {
		padding: 0 85px;
		margin-top: 60px;
	}

	.industry-ul li.on .btn-con {
		padding-left: 85px;
		margin-top: 95px;
	}

	.btn-con a {
		width: 125px;
		height: 28px;
		line-height: 28px;
	}

	.product {
		padding-top: 70px;
		padding-bottom: 55px;
	}

	/* .swiper-container-cpfw {
		margin: 40px 50px 0;
	} */
	/* .swiper-container-cpfw .swiper-slide a {
	    padding: 40px 40px 40px 80px;
	} */
	.swiper-container-cpfw .swiper-slide a .pic img {
		width: 116px;
		height: 116px;
	}

	.swiper-container-cpfw .swiper-slide .text {
		margin-left: 35px;
	}

	.swiper-container-cpfw .swiper-slide .text .nr {
		margin-top: 15px;
	}

	.training {
		height: 500px;
	}

	.training .bg {
		height: 500px;
	}

	.training-right .ckcg {
		width: 146px;
		height: 30px;
		line-height: 30px;
		margin-top: 45px;
		margin-left: 75px;
	}

	.training-right .img {
		width: 345px;
		margin-top: 80px;
		margin-left: 40px;
	}

	.training-right .js {
		padding: 0 75px;
		margin-top: 52px;
	}

	.swiper-container-zzdt .swiper-slide .text-con {
		padding-right: 100px;
	}
}

@media only screen and (max-width:1600px) {
	.banner-content {
		padding: 0 170px;
	}

	.banner .swiper-slide .banner1-img1 {
		width: 600px;
	}

	.banner1-nr {
		margin-top: 30px;
	}

	.banner1-btn {
		margin-top: 38px;
		width: 290px;
	}

	.about {
		height: 465px;
	}

	.about-right .gsmc {
		margin-left: 52px;
		margin-top: 60px;
	}

	.about-right .text {
		margin-left: 52px;
	}

	.about-r-bottom {
		height: 115px;
	}

	.industry-ul {
		margin-top: 50px;
		height: 445px;
	}

	.industry-ul li.on .hyyy-title i {
		width: 75px;
	}

	.industry-ul li.on .btn-con {
		margin-top: 90px;
	}

	.product {
		padding-top: 65px;
		padding-bottom: 50px;
	}

	.training {
		height: 470px;
	}

	.training .bg {
		height: 470px;
	}

	.training-right .img {
		width: 325px;
		margin-top: 75px;
		margin-left: 35px;
	}

	.training-right .js {
		padding: 0 65px;
		margin-top: 50px;
	}

	.training-right .ckcg {
		margin-top: 40px;
	}

	.search {
		margin-left: 20px;
	}

	.nav-yfw {
		padding-right: 20px;
		padding-left: 40px;
		margin-left: 5px;
	}


}

@media only screen and (max-width:1400px) {
	.nav-li {
		margin-left: 10px;
	}

	.nav-a {
		padding: 0 15px;
	}

	.nav-yfw {
		margin-left: 15px;
		padding-right: 15px;
	}

	.banner-content {
		padding: 0 20px;
        width:565px !important;
	}
    .banner1-nr{height:210px ;overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;}
    .banner1-img1{width: 100%;max-width: 95%;}
	.hyyy-title i {
		width: 40px;
	}

	.banner1-btn {
		margin-top: 30px;
		width: 250px;
	}

	.banner1-nr {
		margin-top: 25px;
	}

	.banner .swiper-slide .banner1-img1 {
		width: 100%;max-width: 100%;
	}

	.about {
		height: 405px;
	}

	.about-right .gsmc {
		margin-left: 45px;
		margin-top: 35px;
	}

	.about-right .text {
		margin-left: 45px;
		margin-top: 25px;
	}

	.about-right .text .tsgd {
		margin-top: 30px;
	}

	.about-right .text .tsgd {
		margin-top: 30px;
	}

	.about-r-bottom li .lm {
		margin-top: 8px;
	}

	.industry {
		padding-top: 45px;
	}

	.industry-ul {
		margin-top: 45px;
		height: 385px;
	}

	.industry-ul li.li1 {
		background-size: 220px;
	}

	.industry-ul li.li2 {
		background-size: 200px;
	}

	.industry-ul li.li3 {
		background-size: 210px;
	}

	.industry-ul li.li4 {
		background-size: 150px;
	}

	.hyyy-title {
		margin-top: 55px;
	}

	.industry-ul li .js {
		margin-top: 50px;
	}

	.industry-ul li.on .btn-con {
		margin-top: 50px;
		padding-left: 0;
		text-align: center;
	}

	.btn-con a {
		display: inline-block;
		float: none;
		margin-right: 10px;
	}

	.product {
		padding-top: 58px;
		padding-bottom: 45px;
	}

	.swiper-container-cpfw {
		margin: 10px 50px 0;
	}

	.swiper-container-cpfw .swiper-slide a {
		padding: 20px 20px 20px 40px;
	}

	.training {
		height: 405px;
	}

	.training .bg {
		height: 405px;
	}

	.training-right .img {
		width: 280px;
		margin-top: 65px;
		margin-left: 30px;
	}

	.training-right .js {
		padding: 0 60px;
		margin-top: 45px;
	}

	.training-right .ckcg {
		margin-top: 35px;
		margin-left: 60px;
	}

	.sy-title .lmm {
		font-size: 40px;
	}

	.sy-title .js {
		font-size: 14px;
	}

	.swiper-container-cpfw .swiper-slide .text .bt {
		font-size: 22px;
	}

	.about-right .gsmc {
		font-size: 36px;
	}

	.about-right .text .bt {
		font-size: 20px;
	}

	.quickTabContentBox .pic {
		height: 230px;
		line-height: 230px;
	}

	.quickTabContent {
		min-height: 120px;
	}

}

@media only screen and (max-width:1300px) {
	.nav-a {
		padding: 0 10px;
	}

	.search {
		width: 180px;
	}

	.search input {
		width: 130px;
	}
}

@media only screen and (max-width:1200px) {
	.header {
		padding: 0 25px 0 15px;
	}

	.search {
		width: 170px;
	}

	.search input {
		width: 120px;
	}

	.nav-li {
		margin-left: 0;
	}

	.nav-a {
		padding: 0 15px;
	}

	.industry-ul {
		margin-top: 35px;
		height: 325px;
	}

	.hyyy-title {
		font-size: 20px;
	}

	.industry-ul li .js {
		margin-top: 40px;
	}

	.industry-ul li .js {
		padding: 0 70px;
	}

	.industry-ul li.on .btn-con {
		margin-top: 30px;
		padding-left: 70px;
	}

	.btn-con a {
		width: 100px;
	}

	.product {
		padding-top: 50px;
		padding-bottom: 35px;
	}

	.swiper-container-cpfw .swiper-slide {
		margin-top: 30px !important;
	}



}

@media only screen and (max-width:1200px) {

	.nav-ul,
	.nav-yfw {
		display: none;
	}

	.menu {
		display: block;
	}
}

@media only screen and (max-width:1100px) {
	.about-right .gsmc {
		font-size: 32px;
		margin-top: 20px;
		padding-bottom: 10px;
		margin-left: 30px;
	}

	.about-right .text {
		margin-left: 30px;
		margin-top: 20px;
	}

	.about-right .text .bt {
		font-size: 20px;
	}

	.about {
		height: 350px;
	}

	.about-right .text .tsgd {
		margin-top: 25px;
	}

	.swiper-container-zzdt .swiper-slide .text-con {
		padding-right: 65px;
		margin-left: 100px;
	}

	.swiper-container-zzdt .swiper-slide .text {
		height: 80px;
	}

	.swiper-container-zzdt .swiper-slide .date {
		margin-left: 30px;
	}

	.swiper-container-zzdt .swiper-slide .day {
		margin-top: 16px;
	}

	.swiper-container-zzdt .swiper-slide .nr {
		margin-top: 5px;
	}

	.swiper-container-zzdt .swiper-slide .bt {
		margin-top: 16px;
	}

	.swiper-container-zzdt .swiper-slide .text .zzdt-arrow {
		right: 25px;
	}

	.about-r-bottom {
		height: 100px;
	}

	.industry {
		padding-top: 30px;
	}

	.sy-title .lmm {
		font-size: 36px;
	}

	.sy-title .js {
		font-size: 13px;
	}

	.industry-ul {
		margin-top: 30px;
	}

	.hyyy-title {
		text-align: center;
	}

	.hyyy-title i {
		display: none;
		width: 20px;
		margin-right: 5px;
	}

	.industry-ul li.on .hyyy-title i {
		width: 50px;
	}

	.industry-ul li .js {
		padding: 0 40px;
	}

	.industry-ul li.on .btn-con {
		padding-left: 0;
	}

	.product {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.swiper-container-cpfw {
		margin: 10px 30px 0;
	}

	.swiper-container-cpfw .swiper-slide .text .bt {
		font-size: 22px;
	}

	.swiper-container-cpfw .swiper-slide .text .nr {
		margin-top: 5px;
	}

	.swiper-container-cpfw .swiper-slide a .pic img {
		width: 105px;
		height: 105px;
	}

	.swiper-container-cpfw .swiper-slide .text {
		margin-left: 25px;
	}

	.swiper-container-cpfw .swiper-slide a {
		padding: 20px 20px 20px 20px;
	}

	.footer-top {
		height: auto;
	}

	.footer-t-l {
		width: 100%;
		border: none;
	}

	.footer-t-r {
		width: 100%;
		margin: 20px 0;
	}

	.yqlj-con {
		height: auto;
		margin-bottom: 10px;
		overflow: hidden;
	}

	.footer-bottom {
		height: auto;
		text-align: center;
		line-height: 26px;
		padding: 15px 0;
	}

	.footer-bottom p {
		width: 100%;
	}

	.swiper-container-zzdt .swiper-pagination {
		bottom: 125px;
	}

}

@media only screen and (max-width: 996px) {
	.sy-title .lmm {
		font-size: 30px;
	}

	.sy-title .title-con {
		padding: 0 10px;
	}

	.swiper-container-cpfw .swiper-slide .text .bt {
		font-size: 20px;
	}

	.swiper-container-cpfw .swiper-slide .text {
		margin-left: 15px;
	}

	.hyyy-title {
		font-size: 18px;
	}

	.industry-ul li .fbt {
		font-size: 12px;
	}

	.industry-ul li .js {
		margin-top: 30px;
	}

	.industry-ul li .js {
		font-size: 12px;
		line-height: 22px;
		height: 88px;
	}

	.btn-con a {
		font-size: 12px;
	}

	.about-r-bottom li .lm {
		font-size: 14px;
	}

	.about-r-bottom li a img {
		height: 30px;
	}

	.swiper-container-cpfw .swiper-slide a .pic img {
		width: 85px;
		height: 85px;
	}

	.swiper-container-cpfw .swiper-slide .text .nr {
		line-height: 22px;
		height: 44px;
	}

	.swiper-container-cpfw .swiper-slide {
		margin-top: 10px !important;
	}
}

@media only screen and (max-width: 900px) {
	.banner-content {
		padding: 0 60px;
	}

	.banner .swiper-slide .banner1-img1 {
		width: 350px;
	}

	.banner1-nr {
		margin-top: 10px;
	}

	.banner1-nr {
		line-height: 30px;
		height: 90px;
	}

	.banner1-btn {
		margin-top: 10px;
		width: 170px;
	}

	.banner .swiper-pagination {
		bottom: 10px;
	}

	/* 	.about-right .text .tsgd{
		width: 140px;
	} */
	.industry-ul li .js {
		padding: 0px 30px;
	}

	.industry-ul li.on .btn-con {
		padding-left: 0;
	}

	.btn-con a {
		width: 90px;
		margin-bottom: 10px;
	}

	.swiper-container-cpfw {
		margin: 10px 10px 0;
	}

	.swiper-container-cpfw .swiper-slide .text {
		margin-left: 10px;
	}

	.training {
		height: 310px;
	}

	.training .bg {
		height: 310px;
	}

	.training-right .img {
		width: 230px;
		margin-top: 25px;
		margin-left: 20px;
	}

	.training-right .js {
		padding: 0 20px;
		margin-top: 25px;
	}

	.training-right .ckcg {
		margin-top: 35px;
		margin-left: 20px;
	}

	.footer-dl dt a {
		font-size: 14px;
	}

	.footer-dl dd a {
		font-size: 12px;
		line-height: 30px;
		height: 30px;
	}

	.branch {
		padding: 30px 0 30px 0px;
	}

	.branch-dl dt {
		font-size: 14px;
	}

	.branch-dl dd {
		font-size: 12px;
	}

	.footer-t-r {
		font-size: 14px;
	}

	.yqlj-con a {
		font-size: 12px;
		line-height: 30px;
	}

	.footer-bottom {
		font-size: 12px;
		padding: 10px 0;
	}


}

@media only screen and (max-width:768px) {
	.industry-ul li {
		width: 50%;
		height: auto;
		padding-bottom: 15px;
	}
    .banner-content{width:95% !important}
    .banner1-img1{height:105px ;overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;}
	.industry-ul li .hyyy-title i {
		width: 50px;
	}

	.industry-ul li .fbt {
		display: none;
	}

	.industry-ul li .js {
		display: block;
	}

	.btn-con {
		padding: 0 0 0 25px;
		margin-top: 20px;
		display: block;
	}

	.industry-ul {
		height: auto;
	}

	.hyyy-title {
		margin-top: 20px;
		font-size: 18px;
	}

	.industry-ul li .js {
		margin-top: 10px;
		line-height: 20px;
		height: 60px;
	}

	.industry-ul li.on .btn-con,
	.btn-con {
		margin-top: 0px;
		padding: 0 10px;
	}

	.btn-con a {
		margin-right: 2%;
		width: 23%;
		box-sizing: border-box;
		font-size: 12px;
		margin-top: 10px;
	}

	/* .sy-title .lmm {
	    font-size: 36px;
	} */
	.sy-title .js {
		margin-top: 5px;
	}

	.swiper-container-cpfw .swiper-slide a .pic img {
		width: 80px;
		height: 80px;
	}

	.swiper-container-cpfw .swiper-slide a {
		padding: 20px 10px 20px 10px;
	}

	.swiper-container-cpfw .swiper-slide .text .bt {
		font-size: 20px;
	}

	.swiper-container-cpfw .swiper-slide .text .nr {
		line-height: 24px;
		height: 48px;
		margin-top: 0;
	}

	.header {
		height: 80px;
	}

	.header-wap.fixed {
		top: 80px;
	}

	body {
		padding-top: 80px;
	}

	.logo,
	.logo-yfw {
		margin-top: 15px;
	}

	.search {
		margin: 24px 0 0 32px;
	}

	/* .banner-xilan,
	.header-wap,
	.search-wap{
		margin-top: 80px;
	} */
	.menu,
	.search-icon {
		margin-top: 25px;
	}

	.swiper-container-cpfw .swiper-slide {
		margin-top: 10px !important;
	}

	.branch-dl {
		width: 33.33%;
	}

	.footer-dl {
		padding-left: 20px;
	}

	.footer-t-r {
		padding: 0px 20px;
	}

	.footer-dl {
		width: 100%;
		padding: 0 20px;
		margin-top: 10px;
	}

	.footer-dl dt {
		border-bottom: 1px solid #686868;
		padding-bottom: 10px;
	}

	/* .footer-dl dt a {
	    font-size: 16px;
	} */
	.footer-dl dd {
		display: none;
		border-bottom: 1px solid #686868;
	}

	.footer-dl dt {
		margin-bottom: 0;
		margin-top: 0;
		background: url(../images/footer-add.png) right center no-repeat;
		background-size: 15px;
	}

	.footer-dl.no dt {
		background: none;
	}

	.footer-dl dd a {
		font-size: 14px;
		line-height: 34px;
		height: 34px;
	}

	.footer-t-r {
		margin-top: 0;
		font-size: 16px;
		padding: 20px;
	}

	.footer-t-r span {
		display: block;
		padding: 10px 0;
		background: url(../images/footer-add.png) right center no-repeat;
		background-size: 15px;
	}

	.yqlj-con a {
		width: 50%;
		margin-right: 0;
		font-size: 14px;
	}

	.yqlj-con {
		display: none;
		margin-top: 0;
	}

	.swiper-container-cpfw .swiper-slide .text .bt {
		font-size: 18px;
	}

	.swiper-container-zzdt .swiper-button-next {
		right: 20px;
	}

	.swiper-container-zzdt .swiper-button-prev {
		left: 20px;
	}

	.industry-ul li.li1 {
		background-size: 160px;
	}

	.industry-ul li.li2 {
		background-size: 150px;
	}

	.industry-ul li.li3 {
		background-size: 140px;
	}

	.industry-ul li.li4 {
		background-size: 100px;
	}

	.banner .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}

	.banner1-btn {
		height: 30px;
		line-height: 30px;
		font-size: 12px;
	}
}

@media only screen and (max-width: 616px) {
	.about {
		height: auto;
	}

	.about-left {
		width: 100%;
		height: 320px;
	}

	.about-right {
		width: 100%;
	}

	.about-right {
		width: 100%;
		height: 300px;
	}

	.about-right .text {
		padding-right: 30px;
	}

	.industry {
		padding-top: 20px;
	}

	.industry-ul li .js {
		padding: 0px 20px;
	}

	.about-right .gsmc {
		font-size: 24px;
	}

	/* .btn-con a {
	    width: 70px;
	} */
	/* .industry-ul li {
	    height: 220px;
	} */
	.product {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.training-right {
		width: 100%;
	}

	.banner {
		height: 300px;
	}

	.banner .swiper-slide img {
		height: 100%;
		object-fit: cover;
	}

	.banner .swiper-slide .banner1-img1 {
		width: 350px;
		max-width: initial;
		height: auto;
	}

	.branch-dl {
		width: 33.33%;
	}

	.footer-dl {
		padding-left: 10px;
	}

	.footer-t-r {
		padding: 10px;
	}

	.banner1-nr {
		font-size: 14px;
	}

	.swiper-container-cpfw .swiper-slide .text .bt {
		font-size: 16px;
		height: 21px;
	}

	.ewm-img {
		width: 100px;
		height: 100px;
		margin: 10px 0px 0;
	}

	.industry-ul li.on .btn-con {
		text-align: left;
	}

	.btn-con a {
		width: auto;
		padding: 0 10px;
	}
}

@media only screen and (max-width: 515px) {
	.header {
		padding: 0 20px 0 10px;
	}

	.search {
		margin-left: 0;
	}

	.banner-content {
		padding: 0 20px;
        width: 100%;
	height: 100%;
	}

	.about-r-bottom li img {
		width: 25px;
	}

	.about-r-bottom li .lm {
		font-size: 14px;
	}

	.about-right .gsmc {
		font-size: 26px;
		margin-left: 20px;
	}

	.about-right .text {
		margin-left: 20px;
		margin-top: 15px;
		padding-right: 20px;
	}

	.about-right .text .nr {
		margin-top: 5px;
	}

	.about-right .text .tsgd {
		margin-top: 15px;
	}

	.about-r-bottom {
		height: 90px;
	}

	.about-right {
		height: 290px;
	}

	.sy-title .title-con {
		padding: 0 10px;
		border: none;
	}

	.sy-title .lmm {
		font-size: 30px;
	}

	.industry-ul li,
	.industry-ul li.on {
		width: 100%;
	}

	.branch {
		padding: 20px 0;
	}

	.branch-dl {
		width: 100%;
		margin-bottom: 10px;
	}

	.branch-dl dt {
		font-size: 16px;
		margin-bottom: 0;
	}

	.branch-dl dd {
		font-size: 14px;
	}

	/* .footer-dl{
		width: 100%;
		padding: 0 20px;
		margin-top: 10px;
	}
	.footer-dl dt {
		border-bottom: 1px solid #686868;
		padding-bottom: 10px;
	}
	.footer-dl dt a {
	    font-size: 16px;
	}
	.footer-dl dd{
		display: none;
		border-bottom: 1px solid #686868;
	}
	.footer-dl dt {
	    margin-bottom: 0;
		margin-top: 0;
		background: url(../images/footer-add.png) right center no-repeat;
		background-size: 15px;
	}
	.footer-dl dd a {
	    font-size: 14px;
	    line-height: 34px;
	    height: 34px;
	}
	.footer-t-r{
		margin-top: 0;
		font-size: 16px;
		padding: 0 20px;
	}
	.footer-t-r span{
		display: block;
		padding: 10px 0;
		background: url(../images/footer-add.png) right center no-repeat;
		background-size: 15px;
	}
	.yqlj-con a{
		width: 50%;
		margin-right: 0;
		font-size: 14px;
	}
	.yqlj-con{
		display: none;
		margin-top: 0;
	} */
	.footer {
		padding-bottom: 50px;
	}

	.right-wrap {
		width: 100%;
		height: 50px;
		transform: none;
		top: auto;
		bottom: 0;
		border-bottom: none;
	}

	.right-wrap a {
		float: left;
		width: 33.33%;
		height: 50px;
		box-sizing: border-box;
	}

	.right-wrap a .pic {
		margin-top: 5px;
	}

	.right-wrap a .text {
		margin-top: 0;
	}

	.right-wrap .gzh-conten {
		position: absolute;
		right: 0;
		margin-top: 0;
		top: auto;
		bottom: -500%;
	}

	.right-wrap a:hover .gzh-conten {
		right: 0;
	}

	.right-wrap .gzh-conten::after {
		right: 50%;
		margin-right: -7px;
		bottom: -17px;
		top: auto;
		border-left: 7px solid transparent;
		border-right: 7px solid transparent;
		border-top: 7px solid rgba(237, 237, 237, 1);
	}

	.search {
		display: none;
	}

	.search-wap .search {
		display: block;
		margin-top: 0;
		width: 100%;
	}

	.search input {
		width: calc(100% - 50px);
	}

	.search-icon {
		display: block;
	}

	.sy-title .line {
		display: none;
	}

	.banner .swiper-slide .banner1-img1 {
		max-width: 100%;
	}

	.about-right .text .tsgd {
		width: 170px;
		text-indent: 30px;
	}

	.about-right .text .tsgd .arrow {
		left: 110px;
	}

	.about-right .text .tsgd:hover .arrow {
		left: 125px;
	}

	.header {
		height: 45px;
	}

	.header-wap.fixed {
		top: 45px;
	}

	.search-wap {
		width: 100%;
		box-sizing: border-box;
		position: fixed;
		top: 45px;
		left: 0;
		box-shadow: 0px -2px 10px rgba(0, 0, 0, .5);
		z-index: 10001;
	}

	body {
		padding-top: 45px;
	}

	.logo,
	.logo-yfw {
		height: 40px;
		margin-top: 1px;
	}

	.menu,
	.search-icon {
		margin-top: 13px;
		height: 20px;
		background-size: contain;
	}

	.menu {
		width: 28px;
		margin-left: 15px;
	}

	.search-icon {
		width: 20px;
	}

	/* .header-wap,
	.banner-xilan,
	.search-wap{
		margin-top: 60px;
	} */
}

/* 关于 */
.banner-wrap {
	width: 100%;
	position: relative;
	/* margin-top: 100px; */
}

.banner-wrap img {
	width: 100%;
}

.banner-container {
	/* width: 100%; */
	height: 100%;
	position: absolute;
	left: 10.9%;
	top: 0;
	z-index: 9;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.banner-container .bt {
	font-size: 40px;
	font-weight: bold;
	color: #165cb3;
}

.banner-container .yw {
	font-size: 24px;
	color: #9a9a9a;
	font-family: "Baskerville Old Face";
	margin-top: 3px;
}

.banner-container .yw i {
	display: inline-block;
	width: 85px;
	height: 1px;
	background: #cf0000;
	margin-right: 10px;
}

.banner-container .js {
	font-size: 24px;
	color: #4b4b4b;
	margin-top: 10px;
}

.banner-zzyxy .banner-container {
	align-items: flex-end;
}

.banner-zzyxy .banner-container .bt {
	width: 50%;
}

.banner-zzyxy .banner-container .bt img {
	margin-left: -30%;
	max-width: 400px;
}

.banner-zzyxy .banner-container .js {
	text-align: justify;
	width: 40%;
	margin-right: 22%;
	display: block;
}

/* 概况 */
.zzgk-contnt {
	width: 100%;
	height: 570px;
}

.zzgk-left {
	width: 50%;
	height: 100%;
	background: url(../images/zzgk-bg.jpg) no-repeat;
	padding: 0 70px;
	box-sizing: border-box;
}

.zzgk-left .bt {
	font-size: 40px;
	color: #252525;
	margin-top: 58px;
}

.zzgk-left .line {
	display: block;
	width: 80px;
	height: 2px;
	background: #cf0000;
	margin-top: 12px;
}

.zzgk-left .yw {
	font-size: 20px;
	color: #dbdbdb;
	font-family: "Baskerville Old Face";
	margin-top: 13px;
}

.zzgk-left .js {
	font-size: 16px;
	color: #333333;
	text-indent: 2em;
	text-align: justify;
	line-height: 40px;
	height: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	margin-top: 40px;
}

.zzgk-left .tsgd {
	display: block;
	width: 203px;
	height: 37px;
	line-height: 37px;
	line-height: 37px;
	border-radius: 20px;
	background: #165cb3;
	margin-top: 79px;
	font-size: 14px;
	color: #ffffff;
	text-indent: 57px;
	position: relative;
}

.zzgk-left .tsgd .arrow {
	display: block;
	width: 23px;
	height: 5px;
	background: url(../images/tsgd-icon.png);
	position: absolute;
	left: 127px;
	top: 50%;
	margin-top: -3px;
	transition: .3s all ease;
}

.zzgk-left .tsgd:hover .arrow {
	left: 140px;
}

.zzgk-right {
	width: 50%;
	height: 100%;
}

.zzgk-right img {
	width: 100%;
	height: 100%;
}

.zzwh-content {
	padding-top: 45px;
}

.gyzz-title .bt {
	text-align: center;
	font-size: 40px;
	color: #282828;
}

.gyzz-title .line {
	display: block;
	width: 80px;
	height: 2px;
	background: #cf0000;
	margin: 10px auto 0;
}

.gyzz-title .yw {
	font-size: 20px;
	color: #e5e5e5;
	font-family: "Baskerville Old Face";
	text-align: center;
	margin-top: 15px;
}

.zzwh-content {
	padding-bottom: 66px;
}

.zzwh-ul {
	width: 100%;
	height: 600px;
	margin-top: 52px;
}

.zzwh-ul li {
	width: 50%;
	height: 50%;
	float: left;
}

.zzwh-ul li .pic {
	width: 50%;
	height: 100%;
}

.zzwh-ul li .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zzwh-ul li .text {
	width: 50%;
	height: 100%;
	background: #fdfdfd;
	border: 1px solid #f1f1f1;
	padding-left: 45px;
	box-sizing: border-box;
	padding-right: 30px;
}

.zzwh-ul li .text .bt {
	font-size: 24px;
	color: #222222;
	margin-top: 55px;
}

.zzwh-ul li .text .js {
	font-size: 16px;
	color: #222222;
	margin-top: 26px;
	line-height: 28px;
	text-align: justify;
	height: 168px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
}

.hxjzg-hd {
	margin-top: 30px;
}

.hxjzg-hd a {
	display: block;
	width: 81px;
	height: 26px;
	line-height: 26px;
	border: 1px solid #dcdcdc;
	text-align: center;
	border-radius: 20px;
	float: left;
	font-size: 14px;
	color: #7b7b7b;
	margin-right: 20px;
}

.hxjzg-hd a.on {
	background: #165cb3;
	border: 1px solid #165cb3;
	color: #FFFFFF;
}

.zzwh-ul li .text .hxjzg-bd .js {
	display: none;
	height: 112px;
	overflow: hidden;
}

.lxzz-content {
	width: 100%;
	/* height: 503px; */
	background: url(../images/lxzz-bg.jpg) center bottom no-repeat;
	padding-top: 50px;
	padding-bottom: 64px;
	box-sizing: border-box;
}

.swiper-container-lxzz {
	width: 92.18%;
	margin: 65px auto 0;
}

.swiper-container-lxzz .swiper-slide {
	background: #FFFFFF;
	height: 230px;
	padding: 30px;
	box-sizing: border-box;
	overflow: hidden;
}
.swiper-container-lxzz .swiper-slide .tu{height: 200px;overflow: hidden;}
.swiper-container-lxzz .swiper-slide img{width: 100%}

.swiper-container-lxzz .swiper-slide .company {
	font-size: 20px;
	color: #333333;
}

.swiper-container-lxzz .swiper-slide .line {
	display: block;
	width: 41px;
	height: 2px;
	background: #165cb3;
	margin-top: 10px;
}

.swiper-container-lxzz .swiper-slide .address {
	font-size: 14px;
	color: #333333;
	background: url(../images/gyzz-address.png) left 1px no-repeat;
	padding-left: 24px;
	line-height: 18px;
	height: 36px;
	margin-top: 25px;
	margin-bottom: 12px;
	text-align: justify;
}

.swiper-container-lxzz .swiper-slide .email {
	font-size: 14px;
	color: #333333;
	background: url(../images/gyzz-email.png) left 3px no-repeat;
	padding-left: 24px;
	line-height: 18px;
	height: 36px;
	margin-bottom: 12px;
	text-align: justify;
}

.swiper-container-lxzz .swiper-slide .telephone {
	font-size: 14px;
	color: #333333;
	background: url(../images/gyzz-telephone.png) left 2px no-repeat;
	padding-left: 24px;
	line-height: 18px;
	height: 36px;
	text-align: justify;
}

.swiper-pagination-lxzz {
	position: relative;
	margin-top: 20px;
}

.jrzz-content {
	padding: 45px 0 118px;
	background: url(../images/jrzz-bg.jpg) center bottom no-repeat;
}

.jrzz-ul {
	border-top: 1px solid #f1f1f1;
	margin-top: 45px;
}

.jrzz-ul li {
	width: 33.33%;
	height: 280px;
	box-sizing: border-box;
	border-bottom: 1px solid #f1f1f1;
	border-right: 1px solid #f1f1f1;
	float: left;
}

.jrzz-ul li .xh {
	display: block;
	width: 67px;
	height: 67px;
	line-height: 67px;
	border: 1px solid #cbcbcb;
	border-radius: 50%;
	text-align: center;
	font-size: 48px;
	color: #333333;
	margin: 46px auto 0;
}

.jrzz-ul li .bt {
	font-size: 24px;
	color: #333333;
	text-align: center;
	margin-top: 14px;
}

.jrzz-ul li .nr {
	font-size: 14px;
	color: #605e5e;
	text-align: center;
	margin-top: 10px;
	line-height: 28px;
	padding: 0 10%;
	height: 84px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}


@media only screen and (max-width: 1900px) {
	.zzwh-ul li .text {
		padding: 0 30px;
	}

	.hxjzg-hd a {
		margin-right: 15px;
	}
}

@media only screen and (max-width: 1800px) {
	.zzwh-ul li .text {
		padding: 0 25px;
	}

	.hxjzg-hd a {
		margin-right: 10px;
	}
}

@media only screen and (max-width: 1700px) {
	.hxjzg-hd a {
		width: 70px;
	}
}

@media only screen and (max-width: 1600px) {
	.swiper-container-lxzz {
		width: 98%;
	}

	.zzgk-contnt {
		width: 100%;
		height: 460px;
	}

	.zzgk-left .tsgd {
		margin-top: 20px;
	}

	.zzgk-left .js {
		margin-top: 10px;
	}

	.zzgk-left .bt {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 1500px) {
	.zzwh-ul li .text {
		padding: 0 20px;
	}

	.hxjzg-hd a {
		width: 60px;
	}

	.swiper-container-lxzz .swiper-slide {
		padding: 20px 10px;
	}
}

@media only screen and (max-width: 1400px) {
	.banner-wrap img {
		min-height: 350px;
		object-fit: cover;
	}

	.banner-wrap .bt img {
		display: block;
		width: 60%;
		min-height: auto;
		margin: 0 auto;
	}
	.banner-wrap .bt{
		color: #ffffff;
	}
	.zzgk-contnt {
		height: 310px;
	}

	.zzgk-left .bt {
		margin-top: 20px;
		font-size: 32px;
	}

	.zzgk-left .yw {
		margin-top: 5px;
		font-size: 18px;
	}

	.zzgk-left .line {
		margin-top: 5px;
	}

	.zzgk-left .js {
		line-height: 24px;
		height: 120px;
		font-size: 14px;
	}

	.zzwh-ul {
		height: 420px;
		margin-top: 30px;
	}

	.zzwh-ul li .text .bt {
		margin-top: 25px;
		font-size: 20px;
	}

	.hxjzg-hd {
		margin-top: 15px;
	}

	.hxjzg-hd a {
		font-size: 12px;
		width: 45px;
		height: 22px;
		line-height: 22px;
	}

	.zzwh-ul li .text .js {
		line-height: 24px;
		height: 144px;
		margin-top: 15px;
		font-size: 14px;
	}

	.zzwh-ul li .text .hxjzg-bd .js {
		height: 96px;
	}

	.swiper-container-lxzz {
		margin-top: 20px;
	}

	.banner-container .bt {
		font-size: 36px !important;
	}

	.gyzz-title .bt {
		font-size: 36px;
	}

	.gyzz-title .yw {
		font-size: 18px;
	}

	.jrzz-ul li .bt {
		font-size: 20px;
	}

	.zzwh-content,
	.lxzz-content {
		padding: 30px 0 40px;
	}

	.jrzz-ul li .nr {
		padding: 0 6%;
	}
}

@media only screen and (max-width: 1200px) {
	.zzgk-contnt {
		height: 310px;
	}

	.zzgk-left .js {
		height: 90px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.zzwh-ul li .text {
		padding: 0 10px;
	}

	.gyzz-title .bt {
		font-size: 32px;
	}

	.gyzz-title .yw {
		font-size: 16px;
	}

	.zzwh-content,
	.lxzz-content {
		padding: 40px 0;
	}

}

@media only screen and (max-width: 996px) {
	.banner-container .bt {
		font-size: 42px;
	}

	.banner-container .js {
		font-size: 20px;
	}

	.zzgk-left {
		padding: 0 40px;
	}

	.zzgk-left .bt {
		font-size: 36px;
	}

	.zzgk-contnt {
		height: 290px;
	}

	/* .gyzz-title .bt {
	    font-size: 36px;
	} */
	.zzwh-ul li {
		width: 100%;
	}

	.zzwh-ul li:nth-child(2) .pic {
		float: right;
	}

	.zzwh-ul li:nth-child(3) .text {
		float: right;
	}

	.zzwh-ul li .text {
		padding: 0 30px;
	}

	.jrzz-ul li .xh {
		width: 55px;
		height: 55px;
		line-height: 55px;
		font-size: 36px;
		margin: 20px auto 0;
	}

	.jrzz-ul li .bt {
		font-size: 22px;
	}

	.jrzz-ul li .nr {
		line-height: 20px;
		height: 60px;
	}

	.jrzz-ul li {
		height: 210px;
	}

	.about-right .text .bt {
		font-size: 20px;
	}


}

@media only screen and (max-width: 768px) {

	.zzwh-content,
	.lxzz-content,
	.jrzz-content {
		padding: 20px 0;
	}

	.gyzz-title .yw {
		font-size: 16px;
		margin-top: 10px;
	}

	.zzwh-ul,
	.swiper-container-lxzz,
	.jrzz-ul {
		margin-top: 20px;
	}

	.jrzz-ul li .xh {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 26px;
	}

	.jrzz-ul li .bt {
		font-size: 18px;
		margin-top: 10px;
	}

	.jrzz-ul li .nr {
		font-size: 12px;
		margin-top: 5px;
		padding: 0 10px;
	}

	.jrzz-ul li {
		height: 180px;
	}

	.zzgk-left .bt {
		font-size: 30px;
	}

	/* .zzwh-ul li .text .bt {
	    font-size: 22px;
	} */
	.zzwh-ul li .text .js {
		font-size: 14px;
	}

	.zzgk-left .js {
		font-size: 14px;
	}

	.banner-container .bt {
		font-size: 30px !important;
		;
	}

	.banner-container .yw {
		font-size: 22px;
	}

	.banner-container .js {
		font-size: 16px;
	}

	.banner-zzyxy .banner-container .js {
		margin-top: 20px;
	}

	.zzwh-ul li .text {
		padding: 0px 20px;
	}

	.zzwh-ul {
		height: 440px;
	}

	.zzwh-ul li .text .js {
		height: 120px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 5;
	}

	.hxjzg-hd {
		margin-top: 15px;
	}

	.zzgk-left .yw {
		font-size: 16px;
	}

	.gyzz-title .bt {
		font-size: 30px;
	}
}

@media only screen and (max-width: 616px) {
	.zzwh-ul li .text {
		padding: 0px 10px;
	}

	.hxjzg-hd a {
		margin-right: 5px;
	}

	.zzwh-ul li .text .hxjzg-bd .js {
		margin-top: 10px;
	}

	.zzgk-left {
		padding: 0 20px;
	}

	.about-right .text .bt {
		font-size: 18px;
	}

	.about-right .text .nr {
		margin-top: 5px;
	}

	.about-right .text .tsgd {
		margin-top: 15px;
	}

	.about-right .text .tsgd {
		height: 30px;
		line-height: 30px;
	}


}

@media only screen and (max-width: 515px) {
	.zzgk-left {
		width: 100%;
		padding-bottom: 20px;
	}

	.zzgk-right {
		display: none;
	}

	.zzgk-contnt {
		height: auto;
	}

	.zzwh-ul li .pic {
		width: 100%;
		height: auto;
		padding-bottom: 64%;
		position: relative;
		/* display: none; */
	}

	.zzwh-ul li .pic img {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}

	.zzwh-ul li .text {
		width: 100%;
	}

	.zzwh-ul {
		height: auto;
	}

	.zzwh-ul li .text .js {
		font-size: 14px;
		margin-bottom: 15px;
		height: auto;
		margin-top: 5px;
	}

	.zzwh-ul li .text .bt {
		margin-top: 15px;
	}

	.jrzz-ul li {
		width: 50%;
	}

	.swiper-container-lxzz .swiper-slide {
		border-top: 10px solid #F4F5F7;
		margin-top: 0 !important;
	}

	.jrzz-ul li {
		width: 100%;
	}

	.gyzz-title .bt {
		font-size: 24px;
	}

	.banner-wrap img {
		min-height: 140px;
	}

	.banner-zzyxy img {
		min-height: 170px;
	}

	.banner-container .bt {
		font-size: 20px !important;
	}

	.banner-container .yw {
		font-size: 16px;
	}

	.banner-container .js {
		font-size: 12px;
		margin-top: 5px;
	}

	.banner-container .yw i {
		width: 40px;
	}

	.banner-zzyxy .banner-container .js {
		margin: 5px auto !important;
		line-height: 20px !important;
		width: 90% !important;
	}
}

/* 加入 */
.current-content {
	line-height: 26px;
	padding: 10px 0;
	background: #ededed;
	color: #797979;
	font-size: 14px;
}

.container {
	width: 92.3%;
	margin: 0 auto;
}

.current-content a,
.current-content span {
	color: #797979;
}

.current-content span {
	margin: 0 5px;
}

.current-content a.on {
	color: #165cb3;
}

.current-content a.on span {
	display: none;
}

.subnav {
	width:100%;
	height: auto;
	background: #FFFFFF;
	text-align: center;
}

.subnav a {
	display: block;
	float: left;
	font-size: 16px;
	color: #505050;
    padding: 5px 10px 5px 10px;
	border-radius: 10px;
	margin-right: 6px;
	line-height: 35px;
	border: 2px solid rgba(147,163,173,0.89);
}

.subnav a.on {
	font-weight: bold;
	color: #505050;
	border:2px solid #3D41E0;
}
.subnav a:hover{border:2px solid #3D41E0;}
.zyfz-content {
	width: 100%;
	background: url(../images/zyfz-bg.jpg) center bottom no-repeat #ececec;
	padding: 32px 0 54px;
}

.jrzz-title {
	font-size: 36px;
	color: #282828;
}

.jrzz-title i {
	display: block;
	width: 72px;
	height: 2px;
	background: #cf0000;
	margin-top: 10px;
}

.zyfz-top {
	margin-top: 40px;
}

.zyfz-top li {
	width: 23.98%;
	float: left;
	margin-right: 1.36%;
	background: #FFFFFF;
}

.zyfz-top li .pic {
	padding-bottom: 58%;
}

.zyfz-top li .pic img {
	width: 100%;
}

.zyfz-top li .text {
	/* padding: 25px 35px 49px; */
	padding: 25px 8% 49px;
}

.zyfz-top li .text .bt {
	font-size: 20px;
	font-weight: bold;
	color: #292929;
}

.zyfz-top li .text .js {
	font-size: 16px;
	color: #5a5a5a;
	line-height: 30px;
	height: 90px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-top: 20px;
	text-align: justify;
}

.zyfz-bottom {
	margin-top: 26px;
	height: 245px;
	background: #FFFFFF;
}

.zyfz-bottom .pic {
	width: 425px;
	height: 100%;
}

.zyfz-bottom .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zyfz-bottom .zyfz-right {
	margin-left: 425px;
}

.zyfz-bottom .zyfz-right .bt {
	font-size: 20px;
	font-weight: bold;
	color: #292929;
	margin-left: 57px;
	padding-top: 20px;
}

.zysy-hd {
	height: 40px;
	background: #8aadd9;
	margin-top: 15px;
	position: relative;
}

.zysy-hd .swiper-button-next,
.zysy-hd .swiper-button-prev {
	width: 9px;
	height: 17px;
	margin-top: -8px;
	outline: none;
	border: none;
	background: url(../images/zysy_arrow.png);
	background-position: 0 0;
}

.zysy-hd .swiper-button-prev {
	left: 20px;
}

.zysy-hd .swiper-button-next {
	background-position: -9px 0;
	right: 20px;
}

.swiper-container-zysy {
	padding-top: 1px;
	margin: 0 45px;
}

.swiper-container-zysy .swiper-slide {
	width: auto;
	line-height: 39px;
}

.swiper-container-zysy .swiper-slide a {
	display: block;
	padding: 0 19px;
	color: #FFFFFF;
	cursor: pointer;
}

.swiper-container-zysy .swiper-slide.on {
	background: #FFFFFF;
}

.swiper-container-zysy .swiper-slide.on a {
	font-size: 16px;
	font-weight: bold;
	color: #165cb3;
}

.zysy-bd {
	padding: 25px 60px;
	box-sizing: border-box;
}

.zysy-bd .zysy-con {
	font-size: 16px;
	line-height: 30px;
	color: #6d6d6d;
	text-align: justify;
	height: 90px;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: none;
	overflow: auto;
	padding-right: 10px;
}

.zysy-bd .zysy-con * {
	font-family: "微软雅黑" !important;
	font-size: 16px !important;
	/* line-height: 30px !important; */
	color: #6d6d6d !important;
}

/**滚动条样式**/
.zysy-bd .zysy-con::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 2px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 1px;
}

.zysy-bd .zysy-con::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #165CB3;
}

.zysy-bd .zysy-con::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #cccccc;
}

.gwxq-content {
	padding: 27px 0 40px;
}

.gwxq-right a {
	display: block;
	float: left;
	font-size: 16px;
	color: #282828;
	margin-left: 25px;
	margin-top: 24px;
}

.gwxq-ul {
	padding-top: 10px;
}

.gwxq-ul li {
	height: 480px;
	background: #fbfbfb;
	margin-top: 30px;
}

.gwxq-ul li.on {
	position: relative;
	z-index: 99;
}

.gwxq-ul li .text {
	width: 50%;
	height: 100%;
	position: relative;
	float: left;
}

.gwxq-ul li .gwxq-con {
	width: 100%;
	padding: 55px 60px 75px;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 0;
	background: #fbfbfb;
	z-index: 9;
	/* height: initial; */
}

.gwxq-ul li.on .gwxq-con {
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.gwxq-ul li .gwxq-con .gwmc {
	font-size: 20px;
	font-weight: bold;
	color: #282828;
	margin-bottom: 40px;
}

.gwxq-ul li .gwxq-con .gwzz {
	font-size: 16px;
	font-weight: bold;
	color: #3a3a3a;
}

.gwxq-ul li .gwxq-con .zznr {
	font-size: 16px;
	line-height: 36px;
	color: #3a3a3a;
	overflow: hidden;
	height: 180px;
	min-height: 180px;
	transition: height .3s linear;
	-moz-transition: height .3s linear;
	/* Firefox 4 */
	-webkit-transition: height .3s linear;
	/* Safari and Chrome */
	-o-transition: height .3s linear;
	/* Opera */
	text-align: justify;
}

.gwxq-ul li .gwxq-con .zznr * {
	line-height: 36px !important;
}

.gwxq-btn {
	margin-top: 48px;
}

.gwxq-btn a {
	display: block;
	width: 181px;
	height: 33px;
	line-height: 33px;
	text-align: center;
	font-size: 14px;
	float: left;
	border-radius: 30px;
}

.gwxq-btn a.wyyp {
	border: 1px solid #9fbbde;
	color: #165cb3;
	margin-right: 25px;
	transition: .3s all ease;
}

.gwxq-btn a.wyyp:hover {
	background: #165cb3;
	color: #FFFFFF;
}

.gwxq-btn a.zk {
	border: 1px solid #dadada;
	color: #9f9e9e;
}

.gwxq-btn a.zk i {
	display: inline-block;
	width: 9px;
	height: 10px;
	background: url(../images/zk-arrow.png);
	margin-left: 14px;
	transform: rotate(0);
}

.gwxq-btn a.ss i {
	transform: rotate(180deg);
}

.gwxq-ul li .pic {
	width: 50%;
	height: 100%;
	float: right;
}

.gwxq-ul li .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gwxq-ul li:nth-child(2n) .pic {
	float: left;
}

.gwxq-ul li:nth-child(2n) .text {
	float: right;
}

@media only screen and (max-width: 1600px) {
	.gwxq-ul li {
		height: 400px;
	}

	.gwxq-ul li .gwxq-con {
		padding: 20px 40px 30px;
	}
}

@media only screen and (max-width: 1400px) {
	.zyfz-top li .text .js {
		height: 120px;
		-webkit-line-clamp: 4;
	}

	/* .swiper-container-zysy .swiper-slide a {
		padding: 0 14px;
	} */
}

@media only screen and (max-width: 1300px) {
	.zyfz-top li .text {
		padding: 15px 8% 20px;
	}

	.zyfz-top li .text .js {
		margin-top: 10px;
	}

	.zyfz-bottom .zyfz-right .bt {
		margin-left: 30px;
	}

	/* .swiper-container-zysy {
		margin: 0 30px;
	} */

	.zysy-bd {
		padding: 20px 30px;
	}

	.gwxq-ul li {
		height: 330px;
	}

	.gwxq-ul li .gwxq-con .gwmc {
		margin-bottom: 20px;
	}

	.gwxq-btn {
		margin-top: 34px;
	}

	.gwxq-ul li .gwxq-con .zznr {
		height: 144px;
		min-height: 144px;
	}
}

@media only screen and (max-width: 1200px) {
	.zyfz-top li {
		margin-right: 2%;
		width: 49%;
		margin-top: 2%;
	}

	.zyfz-top li:nth-child(2n) {
		margin-right: 0;
	}

	.zyfz-top {
		margin-top: 20px;
	}

	.zyfz-bottom .pic {
		width: 340px;
	}

	.zyfz-bottom .zyfz-right {
		margin-left: 340px;
	}
}

@media only screen and (max-width: 1100px) {
	.gwxq-right {
		float: left;
	}

	.gwxq-right a {
		margin-left: 0;
		margin-right: 25px;
	}

	.gwxq-ul li .gwxq-con {
		padding: 20px 20px 30px;
	}
}

@media only screen and (max-width: 996px) {
	.gwxq-btn a {
		width: 140px;
	}

	.gwxq-btn a.wyyp {
		margin-right: 15px;
	}

	.gwxq-ul li .gwxq-con .zznr {
		height: 108px;
		min-height: 108px;
	}

	.gwxq-ul li {
		height: 280px;
	}

	.gwxq-btn {
		margin-top: 20px;
	}

	.jrzz-title {
		font-size: 30px;
	}

	.zyfz-top li .text .bt {
		font-size: 18px;
	}

	.zyfz-top li .text .js {
		line-height: 24px;
		height: 96px;
		margin-top: 5px;
	}

	.zyfz-bottom .zyfz-right .bt {
		font-size: 18px;
	}

	.zysy-bd .zysy-con {
		line-height: 24px;
		height: 72px;
	}

	.zyfz-bottom {
		height: 210px;
	}

	.swiper-container-zysy .swiper-slide a,
	.swiper-container-zysy .swiper-slide.on a {
		font-size: 14px;
	}

	.zysy-bd {
		padding: 15px 30px;
	}

	.zyfz-top {
		margin-top: 0;
	}

	.zyfz-content {
		padding-bottom: 30px;
	}

	.gwxq-ul li .gwxq-con .gwmc {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.gwxq-ul li .gwxq-con .gwzz,
	.gwxq-ul li .gwxq-con .zznr {
		font-size: 14px;
	}

	.gwxq-ul li .gwxq-con .zznr {
		line-height: 26px;
		height: 104px;
		min-height: 104px;
	}

	.gwxq-ul li .gwxq-con {
		padding: 20px;
	}

	.gwxq-ul li {
		height: 252px;
	}

}

@media only screen and (max-width: 768px) {
	.gwxq-btn a.wyyp {
		margin-right: 2%;
	}

	.gwxq-btn a {
		width: 49%;
		max-width: 181px;
		box-sizing: border-box;
	}

	.gwxq-ul li .gwxq-con .gwmc {
		font-size: 16px;
	}

	.gwxq-ul li .gwxq-con .gwzz,
	.gwxq-ul li .gwxq-con .zznr {
		font-size: 12px;
	}

	.gwxq-ul li .gwxq-con .zznr {
		line-height: 20px;
		height: 80px;
		min-height: 80px;
	}

	.gwxq-btn {
		margin-top: 10px;
	}

	.gwxq-btn a {
		font-size: 12px;
	}

	.gwxq-ul li {
		height: 210px;
		margin-top: 20px;
	}

	.jrzz-title {
		font-size: 26px;
	}

	.gwxq-right a {
		font-size: 14px;
		margin-top: 10px;
	}

	.zyfz-top li .text .bt {
		font-size: 16px;
	}

	.zyfz-top li .text .js {
		font-size: 14px;
		line-height: 20px;
		height: 80px;
	}

	.zysy-bd .zysy-con {
		line-height: 20px;
		height: 60px;
		font-size: 12px;
	}

	.zyfz-bottom .zyfz-right .bt {
		font-size: 16px;
		padding-top: 10px;
	}

	.zysy-bd {
		padding: 10px 20px;
	}

	.zyfz-bottom {
		height: auto;
	}

	.zyfz-bottom .pic {
		width: 100%;
		float: initial;
	}

	.zyfz-bottom .zyfz-right {
		margin-left: 0;
		float: initial;
		width: 100%;
	}

	.gwxq-ul li {
		height: auto;
	}

	.gwxq-ul li .pic {
		width: 100%;
		float: initial;
	}

	.gwxq-ul li .text {
		width: 100%;
		height: 210px;
		float: initial;
	}
}

@media only screen and (max-width: 515px) {
	.zyfz-bottom .zyfz-right {
		margin-left: 0;
	}

	.zyfz-bottom {
		margin-top: 20px;
	}

	.zyfz-top li {
		width: 100%;
		margin-right: 0;
	}

	.gwxq-ul li .gwxq-con .zznr * {
		line-height: 20px !important;
		font-size: 14px !important;
	}

	.gwxq-ul li .gwxq-con {
		padding: 10px;
	}

}

/* 资讯中心 */
.subnav-zxzx {
	background: #ffffff;
}

.subnav-zxzx a.on {
	color: #165cb3;
}

.subnav-zxzx a {
	padding: 0 10px;
	margin-left: 40px;
}

.news-ul {
	padding-bottom: 30px;
}

.news-ul li {
	width: 23.98%;
	float: left;
	margin-right: 1.36%;
	margin-top: 1.36%;
}

.news-ul li a {
	display: block;
	width: 100%;
	background: #ffffff;
	position: relative;
	top: 0;
	transition: .3s all ease;
}

.news-ul li:hover a {
	/* top: -3px; */
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.news-ul li .zxzx-arrow {
	transition: .3s all ease;
}

.news-ul li:hover .zxzx-arrow {
	margin-left: 20px;
}

.news-ul li:nth-child(4n) {
	margin-right: 0;
}

.news-ul li .pic {
	padding-bottom: 58%;
	/* height: 245px; */
	position: relative;
	overflow: hidden;
}

.news-ul li .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
	transition: all linear 0.3s;
}

.news-ul li:hover .pic img {
	transform: scale(1, 1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-webkit-transition: all 1s ease 0.6s;
	-moz-transition: all 1s ease 0.6s;
	-ms-transition: all linear 0.6s;
	-o-transition: all linear 0.6s;
	transition: all linear 0.6s;
}

.news-ul li .text {
	padding: 20px 27px 25px;
	position: relative;
}

.news-ul li .text .bt {
	font-size: 20px;
	font-weight: bold;
	color: #333333;
	text-align: justify;
	line-height: 30px;
	height: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news-ul li .text .zxzx-arrow {
	margin-top: 13px;
}

.news-ul li .text .js {
	font-size: 16px;
	color: #666666;
	line-height: 30px;
	height: 90px;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-top: 15px;
}

.news-ul li .text .date {
	margin-top: 12px;
}

.news-ul li .text .date .day {
	font-size: 36px;
	font-family: arial;
	color: #d50000;
}

.news-ul li .text .date .year {
	font-size: 14px;
	font-family: arial;
	color: #777777;
}

.news-ul li .text .ydl {
	display: block;
	background: url(../images/ydl-icon.png) left center no-repeat;
	padding-left: 25px;
	color: #777777;
	font-size: 14px;
	position: absolute;
	right: 27px;
	bottom: 25px;
}

.ckgd-btn {
	display: block;
	width: 150px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 30px;
	border: 1px solid #939392;
	margin: 0 auto 30px;
	color: #939392;
	transition: .3s all ease;
	padding: 0 20px;
	cursor: pointer;
}

.ckgd-btn:hover {
	color: #666666;
	border: 1px solid #666666;
}

@media only screen and (max-width: 1400px) {
	.news-ul li {
		margin-right: 2%;
		margin-top: 2%;
		width: 32%;
	}

	.news-ul li:nth-child(4n) {
		margin-right: 2%;
	}

	.news-ul li:nth-child(3n) {
		margin-right: 0;
	}

	.subnav-zxzx a {
		margin-left: 10px;
	}
}

@media only screen and (max-width: 996px) {
	.news-ul li {
		width: 49%;
	}

	.news-ul li:nth-child(3n),
	.news-ul li:nth-child(4n) {
		margin-right: 2%;
	}

	.news-ul li:nth-child(2n) {
		margin-right: 0;
	}

	.news-ul li .text .bt {
		font-size: 18px;
		line-height: 22px;
		height: 44px;
	}

	.news-ul li .text .zxzx-arrow {
		margin-top: 10px;
	}

	.news-ul li .text .js {
		font-size: 16px;
		line-height: 22px;
		height: 66px;
		margin-top: 10px;
	}

	.news-ul li .text .date {
		margin-top: 5px;
	}

	.news-ul li .text {
		padding: 20px;
	}

	.news-ul li .text .ydl {
		right: 20px;
		bottom: 20px;
	}

	.subnav-zxzx a {
		margin-left: 20px;
		margin-right: 20px;
	}


}

@media only screen and (max-width: 768px) {
	.subnav-zxzx a {
		margin-left: 10px;
		margin-right: 10px;
	}

	.subnav-zxzx {
		height: auto;
	}
}

@media only screen and (max-width: 600px) {
	.subnav {
		height: 46px;
		line-height: 45px;
		
	}

	.subnav a {
		min-width: auto !important;
		margin-right: 5px !important;
		font-size: 14px;
		padding:0px !important;
		border: 0px solid rgba(147,163,173,0.89) !important;
	}
	
}

@media only screen and (max-width: 515px) {
	.subnav-zxzx a {
		margin-left: 5px;
		margin-right: 5px;
	}

	.news-ul li {
		width: 100%;
		margin: 20px 0 0;
	}

	.news-ul li .text {
		padding: 10px 15px;
	}

	.news-ul li .text .ydl {
		right: 15px;
		bottom: 10px;
	}
}

/* 行业应用 object-fit:contain;*/
.gs-content {
	height: 478px;
	padding:0px;
	background: #f5f5f5;
	margin: 0px; overflow: hidden;
}

.gs-left {
	width: 48.22%;
	height: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.gs-left>div>img {
	text-align: center;
	height: 100% !important;
	display: none;
}

.gs-left .text {
	/* width: 118px; */
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(22, 92, 179, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2% 0 20px;
	box-sizing: border-box;
}

.gs-left .text .js {
	font-size: 16px;
	line-height: 36px;
	color: #ffffff;
	text-align: justify;
	max-height: 468px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 13;
	margin-right: 50px;
	display: block;
}

.gs-left .text .bt {
	font-size: 30px;
	font-weight: bold;
	color: #ffffff;
	/* width: 30px; */
	text-align: right;
}

.gs-left .text .gs-arrow {
	display: block;
	/* width: 19px; */
	width: auto;
	height: 19px;
	margin-left: 20px;
	transform: rotate(0);
}

.gs-left .text .gs-arrow.on {
	transform: rotate(180deg);
}

.gs-left .text .gs-arrow img {
	width: 100%;
	height: 100%;
}

.gs-arrow {
	width: auto;
	height: auto;
	cursor: pointer;
}

.gs-right {
	width: 51.78%;
	height: 100%;
	padding: 0 58px;
	box-sizing: border-box;
	background-color: #FFFFFF
}

.gs-ul {
	width: 100%;
	height: 100%;
}

.gs-ul li {
	width: 100%;
	height: 140px;
	border-bottom: 1px dashed #dedede;
	box-sizing: border-box;
}

.gs-ul li .bt {
	font-size: 20px;
	font-weight: bold;
	color: #212121;
	padding-top: 10px;
}

.gs-ul li .nr {
	color: #333333;
	font-size: 16px;
	line-height: 30px;
	height: 90px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	margin-top: 10px;
}
.gs-ul li .nr .cj{color: #333333;
	font-size: 16px;
	line-height: 30px;
	height: 60px;
	overflow: hidden;
	text-overflow: ellipsis;}
.gs-ul li:first-child {
	height: 300px;
}

.gs-ul li:first-child .nr {
	height: 300px;
	-webkit-line-clamp: 4;
}

/* 业务场景 */
.ywcj-content {
	width: 1200px;
	margin: 0px auto;
	padding: 72px 0 130px;
	background: #FFFFFF;
}

.ywcj-ul {
	width: 100%;
	margin-top: 70px;
}

.ywcj-ul li {
	width: 20%;
	float: left;
	text-align: center;
}

.ywcj-ul li .pic img {
	max-width: 90%;
}

.ywcj-ul li .bt {
	font-size: 20px;
	font-weight: bold;
	color: #1a1a1a;
	margin-top: 38px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ywcj-ul li .nr {
	font-size: 16px;
	color: #3f3f3f;
	width: 260px;
	margin: 12px auto 0;
	line-height: 28px;
	max-width: 80%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.ywcj-content .cnt{ width: 100%; margin: 0px auto; line-height: 28px;
	max-width: 98%;font-size: 14px !important;}
/* 解决方案 */
.jjfa-content {
	padding: 60px 0 0;
	background: #dfdfdf;
}

.jjfa-content .gyzz-title .yw {
	color: #fefefe;
}

.jjfa-ul {
	margin-top: 70px;
}

.jjfa-ul li {
	width: 32.3%;
	background: #FFFFFF;
	float: left;
	margin-left: 1.55%;
}

.jjfa-ul li a {
	display: block;
}

.jjfa-ul li .pic {
	width: 100%;
	padding-bottom: 55.5%;
	position: relative;
	overflow: hidden;
}

.jjfa-ul li .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
	transition: all linear 0.3s;
}

.jjfa-ul li:hover .pic img {
	transform: scale(1, 1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-webkit-transition: all 1s ease 0.6s;
	-moz-transition: all 1s ease 0.6s;
	-ms-transition: all linear 0.6s;
	-o-transition: all linear 0.6s;
	transition: all linear 0.6s;
}

.jjfa-ul li .text {
	padding: 32px 30px 55px 40px;
}

.jjfa-ul li .text .bt {
	font-size: 20px;
	font-weight: bold;
	color: #202020;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.jjfa-ul li .text .js {
	font-size: 16px;
	line-height: 30px;
	height: 60px;
	color: #5b5b5b;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-top: 25px;
}

.jjfa-ul li .text .arrow {
	display: block;
	width: 22px;
	height: 14px;
	background: url(../images/jjfa-arrow.jpg);
	margin-top: 42px;
	transition: .3s all ease;
}

.jjfa-ul li:hover .text .arrow {
	margin-left: 20px;
}

/* 行业应用-企业 */
.qygs-content {
	padding: 50px 0 124px;
	background: url(../images/qygs-bg.jpg) center bottom no-repeat #FFFFFF;
}

.qygs-left {
	width: 48.8%;
	height: 311px;
	margin-top: 58px;
}

.qygs-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qygs-right {
	width: 48.955%;
	padding-right: 90px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 30px;
	color: #333333;
	margin-top: 58px;
	height: 300px;
	overflow: hidden;
	text-align: justify;
}

/* 解决方案 */
.qyjjfa-content {
	padding: 60px 0 0;
	background: #dfdfdf;
}

.qyjjfa-content .gyzz-title .yw {
	color: #fefefe;
}

.swiper-container-jjfa {
	margin-top: 70px;
}

.swiper-container-jjfa .swiper-slide {
	background: #FFFFFF;
}

.swiper-container-jjfa .swiper-slide .pic {
	width: 100%;
	padding-bottom: 55.5%;
	position: relative;
	overflow: hidden;
}

.swiper-container-jjfa .swiper-slide .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
	transition: all linear 0.3s;
}

.swiper-container-jjfa .swiper-slide:hover .pic img {
	transform: scale(1, 1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-webkit-transition: all 1s ease 0.6s;
	-moz-transition: all 1s ease 0.6s;
	-ms-transition: all linear 0.6s;
	-o-transition: all linear 0.6s;
	transition: all linear 0.6s;
}

.swiper-container-jjfa .swiper-slide .text {
	padding: 32px 40px 55px;
}

.swiper-container-jjfa .swiper-slide .text .bt {
	font-size: 20px;
	font-weight: bold;
	color: #202020;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.swiper-container-jjfa .swiper-slide .text .nr {
	font-size: 16px;
	line-height: 30px;
	height: 60px;
	color: #5b5b5b;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-align: justify;
	margin-top: 25px;
}

.swiper-container-jjfa .swiper-slide .text .arrow {
	display: block;
	width: 22px;
	height: 14px;
	background: url(../images/jjfa-arrow.jpg);
	margin-top: 42px;
	transition: .3s all ease;
}

.swiper-container-jjfa .swiper-slide:hover .text .arrow {
	margin-left: 20px;
}

.qyjjfa-bottom {
	text-align: center;
	padding: 34px 0 40px;
}

.qyjjfa-bottom .swiper-pagination {
	position: relative;
	bottom: 0;
	display: inline-block;
}

.qyjjfa-bottom .swiper-pagination-bullet {
	width: 17px;
	height: 17px;
	background: #ffffff;
	outline: none;
	margin: 5px 10px !important;
	opacity: 1;
}

.qyjjfa-bottom .swiper-pagination-bullet-active {
	background: #e3454d;
}

.qyjjfa-bottom .swiper-button-next,
.qyjjfa-bottom .swiper-button-prev {
	display: inline-block;
	position: relative;
	left: initial;
	right: initial;
	width: 14px;
	height: 27px;
	margin-top: 0;
	background: url(../images/qyjjfa-arrow.png);
	margin: 0 77px;
	opacity: 1;
	display: none;
}

.qyjjfa-bottom .swiper-button-next {
	background-position: -14px 0;
}

/* 应用案例 */
.yyal-content {
	padding: 50px 0 74px;
	background: #ffffff;
}

.yyal-ul {
	border-top: 1px solid #fafafa;
	/* border-bottom: 1px solid #fafafa; */
	margin-top: 52px;
}

.yyal-ul li {
	width: 20%;
	height: 186px;
	border-left: none;
	border: 1px solid #fafafa;
	/* border-bottom: none; */
	margin-top: -1px;
	float: left;
	box-sizing: border-box;
}

.yyal-ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.yyal-ul li img {
	max-width: 90%;
	max-height: 90%;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
	transition: all linear 0.3s;
}

.yyal-ul li:hover img {
	transform: scale(1, 1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-webkit-transition: all 1s ease 0.8s;
	-moz-transition: all 1s ease 0.8s;
	-ms-transition: all linear 0.8s;
	-o-transition: all linear 0.8s;
	transition: all linear 0.8s;
}

/* 产品核心功能 */
.hxgn-content {
	padding: 50px 0 20px;
	background: #ffffff;
}

.swiper-container-hxgn {
	margin-top: 60px;
}

.swiper-container-hxgn .swiper-slide {
	height: 154px;
	background: #efefef;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.swiper-container-hxgn .swiper-slide .bt {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #333333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.swiper-container-hxgn .swiper-slide .nr {
	width: 90%;
	padding: 0 5%;
	text-align: center;
	font-size: 16px;
	color: #333333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 18px;
}

.hxgn-content .qyjjfa-bottom .swiper-pagination-bullet {
	background: #dfdfdf;
}

.hxgn-content .qyjjfa-bottom .swiper-pagination-bullet-active {
	background: #e3454d;
}


@media only screen and (max-width:1400px) {
	.yyal-ul li {
		width: 25%;
	}

	.qygs-content {
		padding: 30px 0 100px;
	}

	.qyjjfa-content {
		padding: 30px 0 0;
	}

	.swiper-container-jjfa {
		margin-top: 30px;
	}

	.yyal-content {
		padding: 30px 0 60px;
	}

	.yyal-ul {
		margin-top: 30px;
	}

	/* .qygs-right{
		font-size: 22px;
		margin-top: 15px;
	} */
	.qygs-left,
	.qygs-right {
		margin-top: 30px;
	}

	.hxgn-content {
		padding: 30px 0 0;
	}

	.jjfa-content {
		padding: 30px 0 0;
	}

	.jjfa-ul {
		margin-top: 20px;
	}

	.jjfa-ul li .text {
		padding: 15px 20px 20px 20px;
	}

	.jjfa-ul li .text .js {
		margin-top: 10px;
	}

	.jjfa-ul li .text .arrow {
		margin-top: 15px;
	}

	.swiper-container-hxgn {
		margin-top: 30px;
	}

	.swiper-container-jjfa .swiper-slide .text {
		padding: 15px 20px 25px;
	}

	.swiper-container-jjfa .swiper-slide .text .nr {
		margin-top: 10px;
	}

	.swiper-container-jjfa .swiper-slide .text .arrow {
		margin-top: 15px;
	}


}

@media only screen and (max-width: 996px) {
	.swiper-container-jjfa .swiper-slide .text {
		padding: 20px 25px;
	}

	.swiper-container-jjfa .swiper-button-next,
	.swiper-container-jjfa .swiper-button-prev {
		margin: 0 20px;
	}

	.swiper-container-hxgn .swiper-slide {
		height: 130px;
	}

}

@media only screen and (max-width: 768px) {
	.yyal-ul li {
		width: 33.33%;
	}

	.qygs-left {
		width: 100%;
		height: auto;
		margin-top: 20px;
	}

	.qygs-right {
		width: 100%;
		padding: 0 20px;
		/* font-size: 18px; */
		line-height: 30px;
		height: auto;
		margin-top: 20px;
	}

	.qygs-content {
		padding: 30px 0;
	}

	.swiper-container-jjfa .swiper-slide .text .bt {
		font-size: 18px;
	}

	.swiper-container-jjfa .swiper-slide .text .nr {
		font-size: 14px;
		margin-top: 10px;
	}

	.swiper-container-jjfa .swiper-slide .text .arrow {
		margin-top: 10px;
	}

	.yyal-ul li {
		height: 120px;
	}

	.swiper-container-hxgn .swiper-slide .bt {
		font-size: 18px;
	}

	.swiper-container-hxgn .swiper-slide .nr {
		font-size: 14px;
		margin-top: 10px;
	}

	.swiper-container-hxgn .swiper-slide {
		height: 100px;
	}

	.qyjjfa-bottom .swiper-button-next,
	.qyjjfa-bottom .swiper-button-prev {
		margin: 0 10px;
	}

	.qyjjfa-bottom .swiper-pagination-bullet {
		margin: 5px !important;
	}
}

@media only screen and (max-width: 600px) {
	.yyal-ul li {
		width: 50%;
	}

	.yyal-ul li {
		height: 100px;
	}

	.qyjjfa-bottom {
		text-align: center;
		padding: 20px 0;
	}

	.swiper-container-jjfa .swiper-pagination-bullet {
		margin: 5px !important;
	}
}

@media only screen and (max-width: 600px) {

	/* .qygs-right{
		font-size: 15px;
		line-height: 26px;
	} */
	.swiper-container-jjfa .swiper-slide .text .nr {
		line-height: 26px;
		height: 52px;
	}
}

.ybal-content {
	padding: 60px 0 0;
	background: #dfdfdf;
}

.ybal-content .gyzz-title .yw {
	color: #FFFFFF;
}

.swiper-container-ybal {
	margin-top: 70px;
	display: block;
}

.swiper-container-ybal .swiper-wrapper {
	display: block;
}

.swiper-container-ybal .swiper-slide {
	background: #FFFFFF;
	width: 32.33%;
	margin-right: 1.5%;
	margin-bottom: 1.5%;
	float: left;
}

.swiper-container-ybal .swiper-slide:nth-child(3n) {
	margin-right: 0;
}

.swiper-container-ybal .swiper-slide a {
	display: block;
}

.swiper-container-ybal .swiper-slide .pic {
	width: 100%;
	padding-bottom: 55.5%;
	position: relative;
	overflow: hidden;
}

.swiper-container-ybal .swiper-slide .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
	transition: all linear 0.3s;
}

.swiper-container-ybal .swiper-slide:hover .pic img {
	transform: scale(1, 1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-webkit-transition: all 1s ease 0.6s;
	-moz-transition: all 1s ease 0.6s;
	-ms-transition: all linear 0.6s;
	-o-transition: all linear 0.6s;
	transition: all linear 0.6s;
}

.swiper-container-ybal .swiper-slide .text {
	padding: 32px 30px 55px 40px;
}

.swiper-container-ybal .swiper-slide .text .bt {
	font-size: 20px;
	font-weight: bold;
	color: #202020;
	line-height: 26px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.swiper-container-ybal .swiper-slide .text .bt p {
	float: left;
	width: calc(100% - 60px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.swiper-container-ybal .swiper-slide .text .bt span {
	float: right;
	font-size: 14px;
	color: #868686;
	font-weight: normal;
}

.swiper-container-ybal .swiper-slide .text .js {
	font-size: 16px;
	line-height: 30px;
	height: 60px;
	color: #5b5b5b;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-top: 25px;
}

.swiper-container-ybal .swiper-slide .text .arrow {
	display: block;
	width: 22px;
	height: 14px;
	background: url(../images/jjfa-arrow.jpg);
	margin-top: 42px;
	transition: .3s all ease;
}

.swiper-container-ybal .swiper-slide:hover .text .arrow {
	margin-left: 20px;
}

@media only screen and (max-width: 1400px) {
	.ybal-content {
		padding-top: 30px;
	}

	.swiper-container-ybal {
		margin-top: 30px;
	}

	.ywcj-content {
		padding: 40px 0;
	}

	.swiper-container-ybal .swiper-slide .text {
		padding: 20px;
	}

	.swiper-container-ybal .swiper-slide .text .js {
		margin-top: 10px;
	}

	.swiper-container-ybal .swiper-slide .text .arrow {
		margin-top: 20px;
	}

	.ywcj-ul {
		margin-top: 30px;
	}

	/* .banner-container .js{
		font-size: 20px;
	} */
	.gs-content,
	.jrzz-content {
		padding: 40px 0;
	}

	.jrzz-ul {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 1200px) {
	.ywcj-ul li .pic img {
		height: 100px;
	}

	.ywcj-ul li .bt {
		font-size: 18px;
		margin-top: 20px;
	}

	.ywcj-ul li .nr {
		font-size: 14px;
		line-height: 22px;
		height: 44px;
	}

	/* .gyzz-title .bt{
		font-size: 32px;
	}
	.gyzz-title .yw {
	    font-size: 16px;
	} */
	.swiper-container-ybal .swiper-slide .text .bt {
		font-size: 18px;
	}

	.swiper-container-ybal .swiper-slide .text .bt span {
		font-size: 12px;
	}

	.swiper-container-ybal .swiper-slide .text .js {
		font-size: 14px;
		line-height: 22px;
		height: 44px;
	}

	.gs-ul li .bt {
		font-size: 18px;
	}

	.gs-ul li .nr {
		font-size: 14px;
		line-height: 22px;
		height: 88px;
	}

	.gs-content {
		height: 430px;
	}

	.gs-right {
		padding: 0 35px;
	}

	.gs-left .text .bt {
		font-size: 26px;
	}

	.gs-left .text .js {
		font-size: 14px;
	}

	.gs-left .text .js {
		line-height: 30px;
		height: 390px;
	}

	.gs-ul li:first-child {
		height: 300px;
	}

	/* 	.gs-ul li:first-child .nr{
		height: 132px;
	} */
	.gs-ul li {
		height: 132px;
	}

}

@media only screen and (max-width: 996px) {
	.ywcj-ul li {
		width: 33.33%;
		margin-bottom: 20px;
	}

	.swiper-container-ybal .swiper-slide {
		width: 49.25%;
	}

	.swiper-container-ybal .swiper-slide:nth-child(3n) {
		margin-right: 1.5%;
	}

	.swiper-container-ybal .swiper-slide:nth-child(2n) {
		margin-right: 0;
	}
}

@media only screen and (max-width: 768px) {

	.gs-left,
	.gs-right {
		width: 100%;
	}

	.gs-left {
		padding-bottom: 50%;
	}

	.gs-left img {
		position: absolute;
		left: 0;
		top: 0;
	}

	.gs-left .gs-arrow {
		position: static;
	}

	.gs-right {
		padding: 0 20px;
	}

	.gs-ul li {
		height: auto !important;
		padding-bottom: 20px;
	}

	.gs-content {
		height: auto;
		padding: 20px 0;
	}

	.gs-ul li .nr {
		margin-top: 10px;
		margin-bottom: 10px;
		height: auto;
		max-height: 300px;
	}

	.gs-left .text .bt {
		font-size: 24px;
	}

	.ywcj-ul li {
		width: 50%;
	}

	.ywcj-ul li .bt {
		font-size: 16px;
	}

	.ywcj-ul li .nr {
		font-size: 12px;
		margin-top: 5px;
	}

	.ywcj-ul li .pic img {
		height: 80px;
	}

	.gs-left .text .js {
		line-height: 22px;
		margin-right: 20px;
	}

	.qyjjfa-bottom .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.qyjjfa-bottom .swiper-button-next,
	.qyjjfa-bottom .swiper-button-prev {
		width: 10px;
		height: 23px;
	}

	.qyjjfa-bottom .swiper-button-next {
		background-position: -18px 0;
	}
}

@media only screen and (max-width: 515px) {
	.gs-left {
		height: auto;
	}

	.gs-left .text .js {
		max-height: 176px;
	}

	.swiper-container-ybal .swiper-slide {
		width: 100%;
		margin-bottom: 10px;
	}

	.swiper-container-ybal .swiper-slide:nth-child(3n) {
		margin-right: 0;
	}

	.swiper-container-ybal .swiper-slide:nth-child(2n) {
		margin-right: 0;
	}
}

/* 数据中台 */
.sjztgs {
	background: url(../images/sjztgs-bg.jpg) center bottom no-repeat;
	background-size: cover;
	min-height: 514px;
	padding: 55px 0;
	box-sizing: border-box;
}

.sjztgs .nr {
	font-size: 16px;
	line-height: 48px;
	text-indent: 2em;
	color: #333333;
	text-align: justify;
	width: 88%;
	margin: 40px auto 0;
}

.sjzt-ptjg {
	background: #FFFFFF;
	padding: 55px 0 45px;
}

.sjzt-ptjg .js {
	font-size: 18px;
	line-height: 48px;
	color: #333333;
	text-align: justify;
	text-indent: 2em;
	width: 91%;
	margin: 50px auto 0;
}

.sjzt-ptjg .nr {
	width: 86.66%;
	text-align: center;
	margin: 45px auto 0;
}

.sjzt-ptjg .nr img {
	width: 100%;
}

.sjzt-pttd {
	padding: 55px 0 130px;
	background: url(../images/sjzt-pttd.jpg) center bottom no-repeat #dfdfdf;
	/* background-size: cover; */
}

.sjzt-pttd .gyzz-title .yw {
	color: #bebebe;
}

.zjzttd-ul {
	margin-top: 75px;
}

.zjzttd-ul li {
	width: 49%;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
	background: #FFFFFF;
	transition: .3s all ease;
}

.zjzttd-ul li:hover {
	background: #165cb3;
}

.zjzttd-ul li a {
	display: block;
	padding: 50px 50px 34px 55px;
}

.zjzttd-ul li:nth-child(2n) {
	margin-right: 0;
}

.zjzttd-ul li .bt {
	font-size: 20px;
	font-weight: bold;
	color: #202020;
	transition: .3s all ease;
}

.zjzttd-ul li:hover .bt {
	color: #ffffff;
}

.zjzttd-ul li .nr {
	font-size: 16px;
	line-height: 30px;
	color: #5b5b5b;
	text-align: justify;
	margin-top: 22px;
	height: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	text-indent: 2em;
	transition: .3s all ease;
}

.zjzttd-ul li .nr,
.zjzttd-ul li .nr * {
	font-size: 16px !important;
	line-height: 30px !important;
	color: #5b5b5b !important;
}

.zjzttd-ul li:hover .nr,
.zjzttd-ul li:hover .nr * {
	color: #cfdef1 !important;
}

@media only screen and (max-width: 1700px) {
	.zjzttd-ul li .nr {
		height: 210px;
		-webkit-line-clamp: 7;
	}
}

@media only screen and (max-width: 1500px) {
	.zjzttd-ul li .nr {
		height: 240px;
		-webkit-line-clamp: 8;
	}
}

@media only screen and (max-width: 1400px) {

	.sjztgs,
	.sjzt-ptjg {
		padding: 30px 0;
	}

	.sjztgs .nr,
	.sjzt-ptjg .js,
	.sjzt-ptjg .nr {
		margin-top: 20px;
	}

	.sjzt-pttd {
		padding: 30px 0 50px;
	}

	.zjzttd-ul {
		margin-top: 20px;
	}

	.zjzttd-ul li a {
		display: block;
		padding: 20px 30px 20px 30px;
	}

	.zjzttd-ul li .nr {
		height: 270px;
		-webkit-line-clamp: 9;
	}

}

@media only screen and (max-width: 1200px) {
	.zjzttd-ul li a {
		padding: 20px;
	}

	.zjzttd-ul li .nr {
		height: 300px;
		-webkit-line-clamp: 10;
	}
}

@media only screen and (max-width: 996px) {

	.sjztgs .nr,
	.sjzt-ptjg .js {
		line-height: 36px;
	}

	.sjztgs {
		min-height: auto;
	}

	.zjzttd-ul li {
		width: 100%;
		margin-right: 0;
	}

	.zjzttd-ul li .nr {
		height: auto;
	}
}

@media only screen and (max-width: 768px) {

	.sjztgs .nr,
	.sjzt-ptjg .js {
		line-height: 30px;
		font-size: 16px;
	}

	.zjzttd-ul li .bt {
		font-size: 18px;
	}

	.zjzttd-ul li .nr {
		font-size: 14px;
		margin-top: 10px;
		line-height: 26px;
	}

}

@media only screen and (max-width: 515px) {
	.sjztgs .nr {
		width: 95%;
	}

	.sjztgs .nr,
	.sjzt-ptjg .js,
	.sjzt-ptjg .nr {
		margin-top: 5px;
		font-size: 14px;
	}

	.zjzttd-ul li a {
		padding: 10px 20px;
	}
}

/* 网站群内容管理云平台 */
.cpgn-content {
	background: #FFFFFF;
	padding: 55px 0 45px;
}

.cpgn-ul li {
	width: 25%;
	float: left;
	margin-top: 52px;
}

.cpgn-ul li a {
	display: block;
	padding: 0 30px;
}

.cpgn-ul li .img {
	margin: 0 auto;
	display: block;
}

.cpgn-ul li .bt {
	font-size: 20px;
	font-weight: bold;
	color: #000000;
	text-align: center;
	margin-top: 35px;
}

.cpgn-ul li .nr {
	font-size: 16px;
	line-height: 28px;
	height: 112px;
	color: #585858;
	text-align: center;
	margin-top: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.cpts-content .gyzz-title .yw {
	color: #FFFFFF
}

.cpts-content {
	padding: 55px 0 88px;
	background: #dfdfdf;
}

.cpts-ul li {
	background: #FFFFFF;
	width: 32.3%;
	margin-right: 1.55%;
	margin-top: 1.55%;
	float: left;
	transition: .3s all ease;
}

.cpts-ul li:hover {
	background: #165cb3;
}

.cpts-ul li:nth-child(3n) {
	margin-right: 0;
}

.cpts-ul li a {
	display: block;
	padding: 48px 10% 65px;
}

.cpts-ul li .bt {
	font-size: 20px;
	font-weight: bold;
	color: #202020;
	text-align: center;
	transition: .3s all ease;
}

.cpts-ul li:hover .bt {
	color: #ffffff;
}

.cpts-ul li .nr {
	font-size: 16px;
	line-height: 30px;
	height: 120px;
	color: #5b5b5b;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	margin-top: 30px;
	transition: .3s all ease;
}

.cpts-ul li:hover .nr {
	color: #d2deed;
}

.dxyy-content {
	padding: 50px 0 0;
	background: #FFFFFF;
}

.swiper-container-dxyy {
	width: 100%;
	margin-top: 48px;
}

.swiper-container-dxyy .swiper-slide {
	background: #efefef;
}

.swiper-container-dxyy .swiper-slide .pic {
	position: relative;
	padding-bottom: 52.6%;
	overflow: hidden;
}

.swiper-container-dxyy .swiper-slide .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
	transition: all linear 0.3s;
}

.swiper-container-dxyy .swiper-slide:hover .pic img {
	transform: scale(1, 1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-webkit-transition: all 1s ease 0.6s;
	-moz-transition: all 1s ease 0.6s;
	-ms-transition: all linear 0.6s;
	-o-transition: all linear 0.6s;
	transition: all linear 0.6s;
}

.swiper-container-dxyy .swiper-slide .text {
	padding: 25px 0 33px;
	text-align: center;
}

.swiper-container-dxyy .swiper-slide .text .bt {
	font-size: 20px;
	font-weight: bold;
	color: #333333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0 10px;

}

.swiper-container-dxyy .swiper-slide .text .link {
	font-size: 16px;
	color: #333333;
	background: url(../images/dxyy-link.png) left center no-repeat;
	padding-left: 30px;
	height: 19px;
	line-height: 19px;
	display: inline-block;
	margin-top: 15px;
	cursor: pointer;
}

.swiper-container-dxyy .swiper-pagination-bullet {
	background: #dfdfdf;
}

.swiper-container-dxyy .swiper-pagination-bullet-active {
	background: #e3454d;
}

@media only screen and (max-width: 1400px) {

	.cpgn-content,
	.cpts-content {
		padding: 30px 0;
	}

	.dxyy-content {
		padding-top: 30px;
	}

	.cpgn-ul li .nr {
		height: 140px;
		-webkit-line-clamp: 5;
	}

	.cpts-ul li .nr {
		height: 150px;
		-webkit-line-clamp: 5;
	}

	.cpts-ul li a {
		padding: 30px 8% 40px;
	}
}

@media only screen and (max-width: 1200px) {
	.cpgn-ul li a {
		padding: 0 10px;
	}

	.cpts-ul li .nr {
		height: 180px;
		-webkit-line-clamp: 6;
	}

	.cpts-ul li a {
		padding: 30px 6% 40px;
	}
}

@media only screen and (max-width: 996px) {
	.cpts-ul {
		margin-top: 1%;
	}

	.cpgn-ul li {
		width: 33.33%;
	}

	.cpgn-ul li .img {
		height: 120px;
	}

	.cpts-ul li {
		width: 49%;
		margin-right: 2%;
	}

	.cpts-ul li:nth-child(3n) {
		margin-right: 2%;
	}

	.cpts-ul li:nth-child(2n) {
		margin-right: 0;
	}

	.cpts-ul li a {
		padding: 30px 10% 30px;
	}

	.cpts-ul li .nr {
		margin-top: 20px;
	}

	.swiper-container-dxyy .swiper-slide .text {
		padding: 15px 0 20px;
	}

	.swiper-container-dxyy {
		margin-top: 20px;
	}
}

@media only screen and (max-width: 768px) {
	.cpgn-ul li {
		margin-top: 30px;
	}

	.cpgn-ul li .img {
		height: 80px;
	}

	.cpgn-ul li .bt {
		margin-top: 20px;
		font-size: 18px;
	}

	.cpgn-ul li .nr {
		margin-top: 10px;
		font-size: 14px;
	}

	.cpts-ul li .bt {
		font-size: 18px;
	}

	.cpts-ul li .nr {
		font-size: 14px;
	}

	.cpts-ul li a {
		padding: 20px;
	}

	.cpts-ul li .nr {
		margin-top: 10px;
	}

	.swiper-container-dxyy .swiper-slide .text .bt {
		font-size: 18px;
	}

	.swiper-container-dxyy .swiper-slide .text .link {
		margin-top: 8px;
	}
}

@media only screen and (max-width: 515px) {
	.cpgn-ul li {
		width: 50%;
		margin-top: 10px;
	}

	.cpgn-ul li .img {
		height: 50px;
	}

	.cpgn-ul li .bt {
		margin-top: 15px;
		font-size: 16px;
	}

	.cpgn-ul li .nr {
		margin-top: 5px;
		line-height: 22px;
		height: 110px;
	}

	.cpts-ul li .bt {
		font-size: 16px;
	}

	.cpts-ul li .nr {
		height: 154px;
		line-height: 22px;
		-webkit-line-clamp: 7;
	}

	.cpts-ul li a {
		padding: 15px 10px;
	}

	.swiper-container-dxyy .swiper-slide .text .bt {
		font-size: 16px;
	}

	.swiper-container-dxyy .swiper-slide .text .link {
		font-size: 14px;
	}
}

@media only screen and (max-width: 414px) {
	.cpgn-ul li .nr {
		height: 132px;
		-webkit-line-clamp: 6;
	}

	.cpts-ul li .nr {
		height: 198px;
		line-height: 22px;
		-webkit-line-clamp: 9;
	}
}

@media only screen and (max-width: 375px) {
	.cpgn-ul li {
		width: 100%;
	}

	.cpts-ul li {
		width: 100%;
		margin-right: 0;
	}

	.cpts-ul li .nr,
	.cpgn-ul li .nr {
		height: auto;
	}
}

/* 运维服务 */
.swiper-container-cgal {
	margin-top: 70px;
}

.swiper-container-cgal .swiper-slide {
	background: #efefef;
}

.swiper-container-cgal .swiper-slide .pic {
	width: 100%;
	padding-bottom: 57.5%;
	position: relative;
	overflow: hidden;
}

.swiper-container-cgal .swiper-slide .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
	transition: all linear 0.3s;
}

.swiper-container-cgal .swiper-slide:hover .pic img {
	transform: scale(1, 1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-webkit-transition: all 1s ease 0.6s;
	-moz-transition: all 1s ease 0.6s;
	-ms-transition: all linear 0.6s;
	-o-transition: all linear 0.6s;
	transition: all linear 0.6s;
}

.swiper-container-cgal .swiper-slide .text {
	padding: 26px 25px 35px;
}

.swiper-container-cgal .swiper-slide .text .bt {
	font-size: 20px;
	font-weight: bold;
	color: #333333;
	height: 52px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	transition: .3s all ease;
}

.swiper-container-cgal .swiper-slide:hover .text .bt {
	color: #165cb3;
}

.swiper-container-cgal .swiper-slide .text .nr {
	width: 100%;
	font-size: 16px;
	line-height: 30px;
	height: 90px;
	color: #666666;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	text-align: justify;
	margin-top: 17px;
}

.swiper-container-cgal .swiper-slide .text .arrow {
	display: block;
	width: 22px;
	height: 14px;
	background: url(../images/jjfa-arrow.png);
	margin-top: 17px;
	transition: .3s all ease;
	float: right;
}

.fwhy-hd {
	margin-top: 40px;
}

.fwhy-hd li {
	width: 23.05%;
	margin-right: 2.6%;
	float: left;
	height: 124px;
	line-height: 124px;
	background: #FFFFFF;
	font-size: 20px;
	font-weight: bold;
	color: #000000;
	text-align: center;
	cursor: pointer;
	transition: .3s all ease;
}

.fwhy-hd li:last-child {
	margin-right: 0;
}

.fwhy-hd li.on {
	background: #165cb3;
	color: #FFFFFF;
}

.fwhy-bd-con {
	padding: 40px 65px;
}

.cgal-content {
	background: #FFFFFF;
	padding: 55px 0 0;
}

.cgal-content .qyjjfa-bottom .swiper-pagination-bullet {
	background: #EFEFEF;
}

.cgal-content .qyjjfa-bottom .swiper-pagination-bullet-active {
	background: #e3454d;
}

@media only screen and (max-width: 1400px) {
	.fwhy-hd li {
		height: 100px;
		line-height: 100px;
	}

	.swiper-container-cgal {
		margin-top: 30px;
	}

	.cgal-content {
		padding-top: 30px;
	}
}

@media only screen and (max-width: 1200px) {
	.fwhy-hd li {
		height: 80px;
		line-height: 80px;
		font-size: 18px;
	}

	.fwhy-hd {
		margin-top: 20px;
	}

	.fwhy-bd-con {
		padding: 30px 40px;
	}
}

@media only screen and (max-width: 996px) {
	.fwhy-hd li {
		height: 60px;
		line-height: 60px;
	}

}

@media only screen and (max-width: 768px) {
	.fwhy-hd li {
		margin-right: 2%;
		width: 23.5%;
		height: 50px;
		line-height: 50px;
		font-size: 16px;
	}

	.fwhy-bd-con {
		padding: 20px;
	}

	.swiper-container-cgal .swiper-slide .text .bt {
		font-size: 18px;
	}

	.swiper-container-cgal .swiper-slide .text .nr {
		font-size: 14px;
		margin-top: 10px;
		line-height: 22px;
		height: 66px;
	}

	.fwhy-bd-con,
	.fwhy-bd-con * {
		font-size: 16px !important;
	}

	.swiper-container-cgal,
	.swiper-container-jjfa {
		margin-top: 20px;
	}
}

@media only screen and (max-width: 515px) {
	.swiper-container-cgal .swiper-slide .text {
		padding: 15px 10px;
	}

	.fwhy-bd-con,
	.fwhy-bd-con * {
		font-size: 14px !important;
	}

	.fwhy-hd li {
		height: 36px;
		line-height: 36px;
	}
}

/* 三维虚拟展馆 */
.yycj-ul {
	margin-top: 42px;
}

.yycj-ul li {
	float: left;
	margin-right: 1.3125%;
	margin-bottom: 1.3125%;
	width: 18.95%;
	position: relative;
	cursor: pointer;
}

.yycj-ul li:nth-child(5n) {
	margin-right: 0;
}

.yycj-ul li .pic {
	width: 100%;
	padding-bottom: 47%;
	position: relative;
	overflow: hidden;
}

.yycj-ul li .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
	webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
	transition: all linear 0.3s;
}

.yycj-ul li:hover .pic img {
	transform: scale(1, 1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-webkit-transition: all 1s ease 0.6s;
	-moz-transition: all 1s ease 0.6s;
	-ms-transition: all linear 0.6s;
	-o-transition: all linear 0.6s;
	transition: all linear 0.6s;
}

.yycj-ul li .text {
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	background: rgba(0, 0, 0, .33);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 9;
	padding: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	box-sizing: border-box;
}

.jsys-content {
	padding: 60px 0 90px;
}

.jsys-content .gyzz-title .yw {
	color: #d2d2d2;
}

.jsys-ul li {
	width: 32.3%;
	margin-right: 1.55%;
	margin-top: 1.55%;
	background: #FFFFFF;
	text-align: center;
	float: left;
	cursor: pointer;
	transition: .3s all ease;
}

.jsys-ul li:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.jsys-ul li:nth-child(3n) {
	margin-right: 0;
}

.jsys-ul li a {
	padding: 74px 0 52px;
	display: inline-block;
}

.jsys-ul li .pic {
	height: 138px;
	line-height: 138px;
	margin-right: 42px;
	float: left;
}

.jsys-ul li .pic img {
	vertical-align: middle;
}

.jsys-ul li .text {
	width: 260px;
	float: left;
	text-align: left;
}

.jsys-ul li .text .bt {
	font-size: 20px;
	font-weight: bold;
	color: #202020;
}

.jsys-ul li .text .nr {
	font-size: 16px;
	color: #5b5b5b;
	margin-top: 22px;
	height: 42px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.section {
	position: relative;
}

@media only screen and (max-width: 1600px) {
	.jsys-ul li .pic {
		margin-right: 20px;
	}

	.jsys-ul li .pic img {
		height: 100px;
	}
}

@media only screen and (max-width: 1400px) {
	.jsys-ul li .pic {
		float: none;
		margin-right: 0;
	}

	.jsys-ul li .text {
		text-align: center;
	}

	.jsys-ul li a {
		padding: 15px 0 30px;
	}

	.jsys-ul li .text .nr {
		margin-top: 10px;
	}

	.jsys-content {
		padding: 30px 0;
	}

	.yycj-ul li .text {
		font-size: 16px;
		padding: 5px;
	}

	.yycj-ul {
		margin-top: 20px;
	}

	.swiper-container-dxyy {
		margin-top: 20px;
	}

	.jsys-ul li .text .bt {
		font-size: 18px;
	}

	.jsys-ul li .text .nr {
		font-size: 14px;
	}

	.swiper-container-dxyy .swiper-slide .text .bt {
		font-size: 18px;
	}

	.swiper-container-dxyy .swiper-slide .text .link {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1200px) {
	.jsys-ul li .pic {
		height: 100px;
		line-height: 100px;
	}

	.jsys-ul li .pic img {
		height: 70px;
	}

	.jsys-ul li .text {
		width: 100%;
		float: initial;
	}
}

@media only screen and (max-width: 996px) {
	.yycj-ul li {
		width: 24.25%;
		margin-right: 1%;
		margin-top: 1%;
	}

	.yycj-ul li:nth-child(5n) {
		margin-right: 1%;
	}

	.yycj-ul li:nth-child(4n) {
		margin-right: 0;
	}
}

@media only screen and (max-width: 768px) {
	.yycj-ul li {
		width: 32.66%;
		margin-right: 1%;
		margin-top: 1%;
	}

	.yycj-ul li:nth-child(5n),
	.yycj-ul li:nth-child(4n) {
		margin-right: 1%;
	}

	.yycj-ul li:nth-child(3n) {
		margin-right: 0;
	}

	.jsys-ul li .pic {
		height: 80px;
		line-height: 80px;
	}

	.jsys-ul li .pic img {
		height: 50px;
	}

	.jsys-ul li a {
		padding: 10px 0;
	}

	.jsys-ul li .text .bt {
		font-size: 16px;
	}

	.jsys-ul li .text .nr {
		font-size: 13px;
	}

	.swiper-container-dxyy .swiper-slide .text .bt {
		font-size: 16px;
	}
}

@media only screen and (max-width: 616px) {
	.jsys-ul li {
		margin-right: 2%;
		margin-top: 2%;
		width: 49%;
	}

	.jsys-ul li:nth-child(3n) {
		margin-right: 2%;
	}

	.jsys-ul li:nth-child(2n) {
		margin-right: 0;
	}

	.yycj-ul li .text {
		font-size: 14px;
	}
}

@media only screen and (max-width: 515px) {
	.yycj-ul li {
		margin-right: 2%;
		margin-top: 1%;
		margin-bottom: 1%;
		width: 49%;
	}

	.yycj-ul li:nth-child(5n),
	.yycj-ul li:nth-child(4n),
	.yycj-ul li:nth-child(3n) {
		margin-right: 2%;
	}

	.yycj-ul li:nth-child(2n) {
		margin-right: 0;
	}

	.swiper-container-dxyy .swiper-slide .text {
		padding: 10px 0px;
	}
}

@media only screen and (max-width: 375px) {
	.jsys-ul li {
		width: 100%;
		margin-right: 0 !important;
	}

	.jsys-ul li .text .nr {
		height: auto;
		max-height: 42px;
	}

	.jsys-ul li .pic {
		height: 50px;
		line-height: 50px;
		margin-bottom: 10px;
	}
}

/* 细览 */
.banner-xilan {
	border-top: 1px solid #ededed;
	width: 100%;
	height: 93px;
}

.banner-xilan img {
	width: 100%;
	height: 100%;
	vertical-align: top;
	object-fit: cover;
}

.detail-left {
	width: 71.14%;
	min-height: 750px;
	padding-right: 26px;
	box-sizing: border-box;
	border-right: 1px solid #ededed;
}

.detail-title {
	border-bottom: 1px solid #e6e6e6;
	padding-top: 45px;
	padding-bottom: 14px;
}

.detail-title .bt {
	font-size: 24px;
	color: #000000;
	text-align: center;
	padding: 0 10px;
}

.detail-title .date {
	font-size: 14px;
	color: #cccccc;
	text-align: center;
	margin-top: 12px;
}

.detail-title .date span {
	margin: 0 9px;
}

.detail-title .zihao {
	font-size: 14px;
	color: #7a7a7a;
	text-align: center;
	margin-top: 12px;
}

.detail-title .zihao em {
	font-style: normal;
	cursor: pointer;
}

.detail-title .zihao span {
	margin: 0 10px;
}

#pv {
	color: #cccccc;
}

.detail-content {
	
}

.detail-content,
.detail-content * {
	font-size: 16px !important;
	color: #333 !important;
	line-height: 40px !important;
}

.detail-content img {
	max-width: 100%;
	margin: 0 auto;
}

.detail-content table {

}

.share {
	width: 120px;
	zoom: 1;
	margin: 0 auto 90px;
}

.share:after {
	content: "";
	display: block;
	clear: both;
}

.share a {
	float: left;
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 50%;
	margin-left: 6px;
	cursor: pointer;
	display: block;
}

.share a i {
	display: block;
	width: 32px;
	height: 32px;
	-webkit-transition: .4s all;
	-moz-transition: .4s all;
	-ms-transition: .4s all;
	transition: .4s all;
}

.share #share-icon {
	width: 26px;
	height: 26px;
	float: left;
	display: none;
}

.share #share-icon img {
	width: 100%;
	height: 100%;
}

.share .share-wechat {
	position: relative;
	margin-left: 0;
}

.share .share-wechat i {
	background: url(../images/share-icon.jpg) -134px center no-repeat;
}

.share .share-weibo i {
	background: url(../images/share-icon.jpg) 0 center no-repeat;
}

.share .share-qqzone i {
	background: url(../images/share-icon.jpg) -89px center no-repeat;
}

.share .bg-code {
	left: -36px;
	z-index: 10;
}

.share .qrcode {
	position: absolute;
	top: -120px;
	border: 1px solid #ccc;
	padding: 5px;
	background: #fff;
	display: none;
	width: 100px;
	height: 100px;
	left: -98%;
	z-index: 11;
}

.share .close-btn {
	position: absolute;
	background: #fff;
	color: #000;
	font-size: 12px;
	z-index: 12;
	width: 12px;
	height: 12px;
	line-height: 12px;
	text-align: center;
	right: -39px;
	top: 50px;
	display: none;
	cursor: pointer;
}

.detail-right {
	width: 28.86%;
	padding-left: 32px;
	box-sizing: border-box;
}

.tjxx-title {
	font-size: 20px;
	font-weight: bold;
	color: #4b4b4b;
	border-bottom: 1px solid #ededed;
	padding-bottom: 13px;
	margin-top: 54px;
}

.tjxx-ul {
	padding-top: 12px;
}

.tjxx-ul li a {
	display: block;
	font-size: 16px;
	height: 36px;
	line-height: 36px;
	color: #4b4b4b;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: .3s all ease;
}

.tjxx-ul li:hover a {
	color: #165cb3;
}

.tjxx-ul li span {
	font-size: 16px;
	font-weight: bold;
	color: #4b4b4b;
	margin-right: 10px;
}

.swiper-container-detail {
	width: 100%;
	/* height: 187px; */
	margin-top: 15px;
	margin-bottom: 35px;
}

.swiper-container-detail .swiper-slide {
	width: 100%;
	height: auto;
	position: relative;
	padding-bottom: 36%;
}

.swiper-container-detail .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}

.swiper-container-detail .swiper-pagination-bullet-active {
	background: #0a54b1;
}

.sxp-list {
	margin-bottom: 14px;
}

.sxp-list span {
	font-size: 16px;
	font-weight: bold;
	color: #165cb3;
	float: left;
}

.sxp-list a {
	font-size: 16px;
	color: #3f3f3f;
	float: left;
	display: block;
	width: calc(100% - 70px);
	transition: .3s all ease;
}

.sxp-list a:hover {
	color: #165cb3;
}

@media only screen and (max-width: 1200px) {
	.detail-left {
		padding-right: 15px;
	}

	.detail-right {
		padding-left: 15px;
	}

	.detail-content {
		padding: 35px 40px;
	}

}

@media only screen and (max-width: 768px) {
	.detail-title {
		padding-top: 20px;
	}

	.detail-title .bt {
		font-size: 22px;
	}

	.detail-content {
		padding: 0px;
		overflow: hidden;
	}

	.banner-xilan {
		height: 25px;
		/* min-height: 25px; */
	}

	.detail-content img {
		width: 100% !important;
		height: auto !important;
		;
	}
}

@media only screen and (max-width: 616px) {

	.detail-left,
	.detail-right {
		width: 100%;
		float: none;
	}

	.detail-left {
		min-height: auto;
		border: none;
		padding-right: 0;
		border-bottom: 1px solid #ededed;
	}

	.detail-right {
		padding-bottom: 30px;
		padding-right: 15px;
	}
}


.logo-yfw {
	width: 154px;
	display: block;
	float: left;
	height: 45px;
	margin: 27px 0 0 30px;
	padding-right: 15px;
	border-right: 1px solid #f1f1f1;
}

.logo-yfw img {
	height: 100%;
}

.yfw-logo {
	margin-top: 34px;
	margin-left: 14px;
	height: 35px;
}

.yfw-logo img {
	height: 100%;
}

.login-yfw {
	display: block;
	height: 100px;
	line-height: 100px;
	border-left: 1px solid #e8e8e8;
	margin-left: 35px;
	padding-left: 55px;
}

.ljzc-btn {
	display: block;
	width: 147px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #cf0000;
	border-radius: 30px;
	color: #cf0000;
	margin: 34px 32px 0 44px;
	font-size: 16px;
}

.banner-yfw {
	height: 500px;
	/* margin-top: 100px; */
}

.banner-left {
	width: 65.3%;
	height: 100%;
}

.swiper-container-yfw,
.swiper-container-yfw .swiper-slide {
	width: 100%;
	height: 100%;
}

.swiper-container-yfw .swiper-slide img {
	width: 100%;
	height: 100%;
}

.swiper-container-yfw .banner-content .bt {
	font-size: 40px;
	font-weight: bold;
	color: #ffffff;
}

.swiper-container-yfw .banner-content .line {
	display: block;
	width: 87px;
	height: 1px;
	background: #FFFFFF;
	opacity: .3;
	margin-top: 23px;
}

.swiper-container-yfw .banner-content .nr {
	font-size: 24px;
	color: #ffffff;
	opacity: .75;
	margin-top: 22px;
}

.swiper-container-yfw .banner-content {
	padding: 0 140px;
}

.swiper-container-yfw .swiper-pagination-yfw {
	width: auto;
	right: 36px;
	left: auto;
	bottom: 23px;
}

.swiper-pagination-yfw .swiper-pagination-bullet-active {
	background: #FFFFFF;
}

.swiper-pagination-yfw .swiper-pagination-bullet {
	width: 36px;
	height: 3px;
	border-radius: 0;
}

.banner-right {
	width: 34.21%;
	height: 100%;
}

.yfw-right1,
.yfw-right2 {
	width: 100%;
	height: 49.4%;
	vertical-align: top;
}

.yfw-right2 {
	margin-top: 1.2%;
}

.zxhd-content {
	height: 65px;
	line-height: 65px;
	padding: 0 43px;
}

.zxhd-content span {
	font-size: 16px;
	font-weight: bold;
	color: #165cb3;
}

.swiper-container-zxhd {
	width: calc(100% - 100px);
	height: 100%;
}

.swiper-container-zxhd .swiper-slide {
	width: 100%;
	height: 100%;
}

.swiper-container-zxhd .swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #353535;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 云上服务 */
.ysfw-content {
	padding: 40px 0 50px;
	background: #f1f1f1;
}

.yfw-title .bt {
	font-size: 34px;
	color: #212121;
	text-align: center;
}

.yfw-title .line {
	display: block;
	width: 70px;
	height: 2px;
	background: #cf0000;
	margin: 16px auto 0;
}

.yfw-ckgd {
	display: block;
	width: 147px;
	height: 16px;
	margin: 18px auto 0;
}

.yfw-ckgd img {
	vertical-align: top;
}

/* 云上服务 */
.ysfw-ul {
	margin-top: 20px;
}

.ysfw-ul li {
	width: 19%;
	margin-right: 1.25%;
	margin-top: 1.25%;
	background: #FFFFFF;
	padding: 55px 20px 39px;
	transition: .3s all ease;
	float: left;
	box-sizing: border-box;
}

.ysfw-ul li:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.ysfw-ul li:nth-child(5n) {
	margin-right: 0;
}

.ysfw-ul li .pic {
	height: 134px;
	line-height: 134px;
	text-align: center;
}

.ysfw-ul li .pic img {
	vertical-align: bottom;
	max-height: 100%;
}

.ysfw-ul li .bt {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #202020;
	margin-top: 42px;
}

.ysfw-ul li .nr {
	text-align: center;
	font-size: 16px;
	color: #3a3a3a;
	text-align: center;
	margin-top: 16px;
	line-height: 28px;
	height: 84px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.ljck-btn {
	display: block;
	width: 130px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid #165cb3;
	border-radius: 20px;
	color: #165cb3;
	margin: 24px auto 0;
}

/* 生态朋友圈 */
.stpyq-content {
	padding: 56px 0;
}

/* 详情 */
.yfw-current {
	height: 50px;
	line-height: 50px;
	padding: 0 30px;
	background: #f1f1f1;
}

.yfw-current p,
.yfw-current a {
	font-size: 14px;
	color: #797979;
}

.yfw-current a:last-child span {
	display: none;
}

.yfw-current a span {
	margin-left: 5px;
}

.yfw-current a.on {
	color: #165cb3;
}

.yfw-left {
	width: 73.95%;
	border-right: 1px solid #f0f0f0;
	box-sizing: border-box;
}

.detail-top {
	padding: 50px 0;
}

.detail-t-js {
	margin-left: 45px;
}

.detail-t-js .pic {
	width: 126px;
	height: 110px;
	line-height: 110px;
	text-align: center;
}
.detail-t-js .pic img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	vertical-align: top;
}

.detail-t-js .text {
	margin-left: 150px;
	width: calc(100% - 150px);
}

.detail-t-js .text .bt {
	font-size: 20px;
	font-weight: bold;
	color: #202020;
	height: 26px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 3px;
}

.detail-t-js .text .nr {
	font-size: 16px;
	line-height: 28px;
	color: #3a3a3a;
	text-align: justify;
	/* height: 56px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2; */
	margin-right: 40px;
	margin-top: 16px;
}

.detail-t-js .text .nr * {
	font-size: 16px !important;
	line-height: 28px !important;
	color: #3a3a3a !important;
	text-align: justify;
}

.detail-t-pj {
	background: url(../images/pj-bg.jpg) center no-repeat;
	height: 106px;
	margin-left: 195px;
	width: calc(100% - 195px);
	margin-top: 18px;
}

.detail-t-pj .price {
	font-size: 18px;
	color: #cf0000;
	height: 106px;
	line-height: 106px;
	margin-left: 30px;
}

.detail-t-pj .price span {
	font-size: 36px;
	font-weight: bold;
	margin-left: 2px;
}

.detail-t-pj .score {
	height: 75px;
	line-height: 75px;
	border-left: 1px solid #e5e5e5;
	margin-top: 17px;
	padding: 0 82px 0 49px;
	font-size: 16px;
	color: #3d3d3d;
}

.detail-t-pj .score img {
	margin-right: 7px;
	margin-top: 28px;
}

.purchase-time {
	margin: 20px 0 0 110px;
	font-size: 16px;
	line-height: 33px;
	color: #3a3a3a;
}

.purchase-time span {
	width: 85px;
}

.purchase-time a {
	display: block;
	width: 100px;
	height: 31px;
	line-height: 31px;
	text-align: center;
	border: 1px solid #b9b9b9;
	margin-right: 11px;
	font-size: 14px;
	color: #8b8b8b;
	cursor: pointer;
}

.purchase-time a.on {
	background: url(../images/choose-time.png) right bottom no-repeat;
	border: 1px solid #cf0000;
	color: #cf0000;
}

.purchase-time p {
	color: #7e7e7e;
	font-size: 14px;
	margin-left: 3px;
}

.yfw-ljgm {
	display: block;
	width: 176px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	color: #FFFFFF;
	background: #cf0000;
	border: none;
	outline: none;
	font-size: 22px;
	margin: 50px 0 0 196px;
	cursor: pointer;
}

.detail-nav {
	width: 100%;
	height: 60px;
	line-height: 60px;
	background: #f6f6f6;
	padding-left: 198px;
	box-sizing: border-box;
}

.detail-nav a {
	font-size: 16px;
	color: #343434;
	margin-right: 50px;
}

.detail-bd {
	padding: 0 60px 0 196px;
}

.detail-con {
	margin-top: 42px;
}

.yfwxq-title {
	font-size: 18px;
	font-weight: bold;
	color: #165cb3;
	height: 22px;
	line-height: 22px;
	border-bottom: 1px solid #dee8f4;
	padding-bottom: 20px;
	position: relative;
}

.yfwxq-title i {
	display: block;
	float: left;
	width: 2px;
	height: 22px;
	background: #165cb3;
	margin-right: 16px;
}

.detail-con .fwxq {
	padding: 32px 0;
}

.fwjg-table {
	margin-top: 45px;
}

.fwjg-table th {
	width: 241px;
	height: 50px;
	line-height: 50px;
	background: #fdfdfd;
	border: 1px solid #efefef;
	font-size: 18px;
	color: #636363;
}

.fwjg-table td {
	width: 241px;
	height: 66px;
	line-height: 66px;
	border: 1px solid #efefef;
	font-size: 16px;
	color: #707070;
	text-align: center;
}

.detail-fwal {
	padding: 35px 0 50px;
}

.detail-fwal a {
	display: block;
	width: 25%;
	height: 86px;
	line-height: 86px;
	text-align: center;
	float: left;
}

.detail-fwal a img {
	max-width: 90%;
	max-height: 90%;
	vertical-align: middle;
}

.yfw-right {
	width: 26.05%;
}

.yfw-r-dl {
	margin: 35px 0 0 28px;
}

.yfw-r-dl dd {
	color: #3a3a3a;
	line-height: 48px;
}

.yfw-r-dl .lxkf a {
	display: inline-block;
	font-size: 14px;
	color: #373737;
	background: url(../images/icon-wechat.png) left center no-repeat;
	padding-left: 30px;
	margin-right: 10px;
}

.yfw-r-dl .wtcl a {
	display: inline-block;
	width: 82px;
	height: 23px;
	line-height: 23px;
	text-align: center;
	border: 1px solid #cf0000;
	font-size: 14px;
	color: #cf0000;
}

.yfw-r-dl .lxdh span {
	font-size: 24px;
	color: #cf0000;
	margin-right: 15px;
}

@media only screen and (max-width: 1600px) {
	.ysfw-ul li {
		width: 24.0625%;
	}

	.ysfw-ul li:nth-child(5n) {
		margin-right: 1.25%;
	}

	.ysfw-ul li:nth-child(4n) {
		margin-right: 0;
	}

	.yfw-r-dl .lxdh span {
		font-size: 21px;
		margin-right: 5px;
	}

	.yfw-r-dl {
		margin-left: 15px;
	}
}

@media only screen and (max-width: 1400px) {
	.ysfw-ul li {
		padding: 25px 20px 25px;
	}

	.ysfw-ul li .bt {
		margin-top: 25px;
		font-size: 18px;
	}

	.ysfw-ul li .nr {
		font-size: 15px;
	}

	.ljck-btn {
		margin-top: 15px;
	}

	.ysfw-ul li .pic {
		height: 80px;
		line-height: 80px;
	}

	.banner-yfw {
		height: 410px;
	}

	.ysfw-content,
	.stpyq-content {
		padding: 30px 0;
	}

	.yfw-title .bt {
		font-size: 32px;
	}

	.yfw-left {
		/* width: 100%; */
		width: calc(100% - 370px);
		padding-right: 20px;
	}

	.detail-t-js {
		margin-left: 20px;
	}

	.detail-t-pj {
		margin-left: 165px;
		width: calc(100% - 165px);
	}

	.yfw-ljgm {
		margin-left: 165px;
	}

	.detail-nav {
		/* padding-left: 165px; */
		padding: 0 40px;
	}

	.detail-bd {
		padding: 0 40px;
	}

	.purchase-time {
		margin-left: 78px;
	}

	.yfw-right {
		/* width: 100%; */
		width: 370px;
		border-top: 1px solid #dee8f4;
	}

	.yfw-r-dl {
		/* margin-left: 196px; */
		margin-left: 10px;
		margin-bottom: 50px;
	}

	.yfw-r-dl .lxdh span {
		font-size: 20px;
		margin-right: 15px;
	}
}

@media only screen and (max-width: 1200px) {
	.ysfw-ul li {
		margin-right: 1%;
		width: 32.66%;
	}

	.ysfw-ul li:nth-child(5n),
	.ysfw-ul li:nth-child(4n) {
		margin-right: 1%;
	}

	.ysfw-ul li:nth-child(3n) {
		margin-right: 0;
	}

	.ljzc-btn {
		margin-left: 20px;
	}

	.login-yfw {
		margin-left: 20px;
		padding-left: 20px;
	}

	.banner-yfw {
		height: 350px;
	}

	.swiper-container-yfw .banner-content {
		padding: 0px 50px;
	}

	.swiper-container-yfw .banner-content .bt {
		font-size: 32px;
	}

	.swiper-container-yfw .banner-content .nr {
		font-size: 20px;
		margin-top: 15px;
	}

	.swiper-container-yfw .banner-content .line {
		margin-top: 15px;
	}

	.yfw-title .bt {
		font-size: 30px;
	}

	.detail-t-pj .score {
		padding: 0 20px;
	}

	.detail-t-pj {
		margin-left: 20px;
		width: calc(100% - 20px);
	}

	.purchase-time {
		margin-left: 20px;
	}

	.yfw-ljgm {
		margin: 50px auto 0;
	}
}

@media only screen and (max-width: 996px) {
	.ysfw-ul li {
		width: 49%;
		margin-right: 2%;
		margin-top: 2%;
	}

	.ysfw-ul li:nth-child(5n),
	.ysfw-ul li:nth-child(4n),
	.ysfw-ul li:nth-child(3n) {
		margin-right: 2%;
	}

	.ysfw-ul li:nth-child(2n) {
		margin-right: 0;
	}

	.ljzc-btn {
		width: 110px;
	}

	.login-yfw {
		margin-left: 10px;
		padding-left: 10px;
	}

	.banner-yfw {
		height: 260px;
	}

	.ljzc-btn {
		margin-left: 10px;
		margin-right: 10px;
	}

	.logo-yfw {
		padding: 0 10px;
	}


	/* .yfw-logo{
		height: 26px;
		margin-top: 37px;
	} */
	.header-yfw .search {
		margin-left: 0;
		width: 120px;
	}

	.header-yfw .search input {
		width: 90px;
	}

	.header-yfw .search-btn {
		padding-left: 5px;
	}

	.header-yfw .search {
		display: none;
	}

	.header-yfw .search-icon {
		display: block;
		margin-top: 35px;
		margin-right: 20px;
	}

	.search-yfw .search input {
		width: calc(100% - 50px);
	}

	.search-yfw .search {
		width: 100%;
		margin-top: 0;
		margin-left: 0;
	}
}

@media only screen and (max-width: 900px) {
	.yfw-left {
		width: 100%;
	}

	.yfw-right {
		width: 100%;
	}

	.yfw-r-dl {
		margin-left: 50px;
	}

	.detail-top {
		padding: 30px 0;
	}

	.yfw-ljgm {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 768px) {
	.header-yfw .search {
		display: none;
	}

	.login-yfw {
		/* float: none; */
		height: 80px;
		line-height: 80px;
		text-align: center;
		border: none;
		padding-left: 0;
		margin-left: 0;
	}

	.ljzc-btn {
		width: auto;
		/* float: left; */
		border: none;
		margin-left: 10px;
		margin-right: 10px;
		margin-top: 23px;
	}

	.header-yfw .search-icon {
		display: block;
		margin-top: 25px;
		margin-right: 20px;
	}

	.search-yfw .search {
		display: block;
		margin-top: 0;
		width: 100%;
		margin-left: 0;
	}

	.search-yfw .search input {
		width: calc(100% - 50px);
	}

	.yfw-title .bt {
		font-size: 28px;
	}

	.header-yfw {
		height: 80px;
	}

	.search-yfw {
		top: 80px;
	}

	.yfw-logo {
		margin-top: 22px;
	}

	.logo-yfw {
		margin-top: 17px;
	}

}

/* @media only screen and (max-width: 650px) {
	.yfw-logo {
		display: none;
	}
} */

@media only screen and (max-width: 616px) {
	.banner-yfw {
		height: auto;
	}

	.banner-left {
		width: 100%;
		/* height: 260px; */
		height: auto;
		float: none;
	}

	.swiper-container-yfw .swiper-slide {
		padding-bottom: 50%;
		height: auto;
		position: relative;
	}

	.swiper-container-yfw .swiper-slide img {
		position: absolute;
		left: 0;
		top: 0;
	}

	.banner-right {
		width: 100%;
		float: none;
	}

	.yfw-right1 {
		margin-right: 2%;
	}

	.yfw-right1,
	.yfw-right2 {
		width: 49%;
		float: left;
		margin-top: 2%;
	}

	.swiper-container-yfw .banner-content .bt {
		font-size: 28px;
	}

	.swiper-container-yfw .banner-content .nr {
		font-size: 16px;
	}

	.swiper-container-yfw .banner-content {
		padding: 0px 20px;
	}

	.detail-t-js .pic,
	.detail-t-js .pic img {
		width: 80px;
		height: 75px;
	}

	.yfw-left {
		padding-right: 20px;
	}

	.detail-top {
		padding: 20px 0;
	}

	.detail-t-js {
		margin-left: 20px;
	}

	.detail-t-js .text {
		margin-left: 90px;
		width: calc(100% - 90px);
	}

	.detail-t-js .text .bt {
		font-size: 18px;
		height: 24px;
	}

	.detail-t-js .text .nr {
		font-size: 14px;
		line-height: 22px;
		/* height: 44px; */
		margin-right: 40px;
		margin-top: 5px;
	}

	.detail-t-js .text .nr * {
		font-size: 14px !important;
		line-height: 22px !important;
		/* height: 44px!important; */
	}

	.detail-t-pj {
		margin-left: 20px;
		width: calc(100% - 20px);
	}

	.detail-t-pj .price span {
		font-size: 30px;
	}

	.detail-t-pj .price {
		font-size: 16px;
		margin-left: 10px;
		height: auto;
		line-height: initial;
		float: none;
		padding-top: 12px;
	}

	.detail-t-pj .score {
		height: 45px;
		line-height: 45px;
		padding: 0 20px 0 20px;
		font-size: 16px;
		float: none;
		border: none;
		margin-top: 0;
	}

	.detail-t-pj .score img {
		margin-top: 12px;
	}

	.purchase-time {
		margin-left: 20px;
		margin-top: 10px;
	}

	.purchase-time a {
		width: 83px;
	}

	.purchase-time p {
		margin-left: 0;
	}

	.yfw-ljgm {
		width: 150px;
		height: 40px;
		line-height: 40px;
		font-size: 18px;
		margin: 10px auto 0;
	}

	.detail-nav {
		padding: 0 20px;
		height: 45px;
		line-height: 45px;
	}

	.detail-nav a {
		margin-right: 30px;
	}

	.detail-bd {
		padding: 0 0 0 20px;
	}

	.detail-con {
		margin-top: 20px;
	}

	.yfwxq-title {
		padding-bottom: 10px;
	}

	.detail-con .fwxq {
		padding: 15px 0;
	}

	.detail-con .fwxq * {
		font-size: 15px !important;
		line-height: initial !important;
	}

	.fwjg-table {
		margin-top: 20px;
		width: 100%;
	}

	.fwjg-table th {
		width: 33.33%;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
	}

	.fwjg-table td {
		width: 33.33%;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
	}

	.detail-fwal {
		padding: 20px 0;
	}

	.detail-fwal a {
		width: 50%;
	}

	.yfw-r-dl {
		margin: 20px;
	}

	.yfw-r-dl dd {
		line-height: 36px;
	}

	.yfw-r-dl .lxdh span {
		font-size: 20px;
		margin-right: 5px;
	}

	.yfw-current {
		height: auto;
		padding: 10px;
		line-height: 22px;
	}

	.yfw-logo {
		height: 30px;
		margin-top: 25px;
	}
}

@media only screen and (max-width: 515px) {
	.header-yfw {
		height: 45px;
	}

	.search-yfw {
		top: 45px;
	}

	.yfw-logo,
	.logo-yfw {
		height: 25px;
		margin-top: 10px;
		width: auto;
		margin-left: 0;
	}

	.logo-yfw img {
		height: 100%;
	}

	.header-yfw .search-icon {
		margin-top: 13px;
		margin-right: 10px;
	}

	.login-yfw {
		height: 65px;
		line-height: 65px;
	}

	.ljzc-btn {
		margin-top: 16px;
	}

	.swiper-container-yfw .banner-content .bt {
		font-size: 24px;
	}

	.swiper-container-yfw .banner-content .nr {
		font-size: 15px;
	}

	.zxhd-content {
		padding: 0 10px;
	}

	.ysfw-ul li {
		padding: 15px 15px 20px;
	}

	.ljck-btn {
		font-size: 14px;
		margin-top: 10px;
		width: 110px;
		height: 24px;
		line-height: 24px;
	}

	.ysfw-ul li .pic {
		height: 60px;
		line-height: 60px;
	}

	.ysfw-ul li .bt {
		margin-top: 15px;
		font-size: 16px;
	}

	.ysfw-ul li .nr {
		font-size: 13px;
		margin-top: 5px;
		line-height: 22px;
		height: 66px;
	}

	.swiper-container-yfw .swiper-pagination-yfw {
		bottom: 5px;
	}

	.ysfw-content,
	.stpyq-content {
		padding: 20px 0;
	}

	.yfw-title .bt {
		font-size: 22px;
	}

	.yfw-title .line {
		margin-top: 5px;
	}

	.yfw-ckgd {
		text-align: center;
		margin-top: 10px;
	}

	.yfw-ckgd img {
		width: 110px;
	}

	.ysfw-content .ysfw-ul,
	.ysfw-content .yyal-ul {
		margin-top: 5px;
	}

}

@media only screen and (max-width: 414px) {
	.ysfw-ul li {
		width: 100%;
		margin-right: 0;
	}

	.ysfw-ul li .nr {
		height: auto;
		max-height: 66px;
	}

	.purchase-time span {
		display: block;
		width: 100%;
	}

	.purchase-time a {
		width: 31.33%;
		margin-right: 2%;
		box-sizing: border-box;
	}
}

@media only screen and (max-width: 375px) {
	.yfw-r-dl .lxdh span {
		font-size: 16px;
	}

	.detail-nav {
		padding: 0 15px;
	}

	.detail-nav a {
		margin-right: 15px;
	}

	.yfw-r-dl {
		margin: 15px 10px;
	}

	.yfw-r-dl dd {
		font-size: 14px;
	}

	.yfw-logo {
		margin-left: 5px;
		height: 18px;
		margin-top: 13px;
	}
}

/* 简历表单 */
.pop {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .8);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#c8000000, endColorstr=#c8000000);
	z-index: 99999;
	overflow: hidden;
	zoom: 1;
	display: block;
}

.pop .pad {
	position: absolute;
	top: 10%;
	left: 0;
	bottom: 10%;
	right: 0;
	margin: auto;
	padding: 50px 159px 50px 65px;
	overflow: auto;
	width: 1126px;
	background-color: #fff;
}

.x-btn {
	position: absolute;
	text-align: center;
	line-height: 40px;
	display: block;
	right: 20px;
	top: 20px;
	font-size: 40px;
	color: #fff;
	width: 40px;
	height: 40px;
	color: #fff;
	z-index: 50;
	-webkit-transition: .3s;
	transition: .3s;
}

.x-btn:hover {
	color: #165cb3;
}

.pop-join h3 {
	font-size: 30px;
	margin-bottom: 50px;
	color: #000000;
}

.pop-join h3 span {
	color: #165cb3;
}

.pop-join .inp-box {
	zoom: 1;
}

.pop-join .inp-box {
	margin-bottom: 35px;
}

.pr {
	position: relative;
}

.pop-join .inp-box .inp {
	width: 488px;
}

.pop-join .layui-form-select .layui-input {
	height: 55px;
}

.pop-join .inp-box select.inp,
.pop-join .inp-box .layui-form-select {
	width: 488px;
	color: #333333;
}

.pop-join .inp {
	border: 1px solid #d0d0d0;
	border-radius: 2px;
	font-size: 14px;
	padding: 0 16px;
	height: 55px;
	line-height: 55px;
	color: #333333;
	outline: none;
	box-sizing: border-box;
}

.pop-join .inp-box .w1066 {
	width: 100%;
	border: 1px solid #d0d0d0;
	border-radius: 2px;
	font-size: 14px;
	padding: 0 16px;
	height: 55px;
	line-height: 55px;
	color: #333333;
	outline: none;
	box-sizing: border-box;
}

.pop-join .inp-box .w929 {
	width: 100%;
	border: 1px solid #d0d0d0;
	border-radius: 2px;
	font-size: 14px;
	padding: 0 16px;
	height: 55px;
	line-height: 55px;
	color: #333333;
	outline: none;
	box-sizing: border-box;
}

.choose-btn {
	display: block;
	width: 135px;
	height: 55px;
	line-height: 55px;
	background: #a2a2a2;
	color: #FFFFFF;
	text-align: center;
	font-size: 14px;
	float: left;
	border-radius: 2px;
	margin-left: -5px;
	z-index: 99;
	position: relative;
}

.scjl-box span {
	width: calc(100% - 135px);
}

.pop-join .inp-box.yzm input {
	width: 200px;
	border: 1px solid #d0d0d0;
	border-radius: 2px;
	font-size: 14px;
	padding: 0 16px;
	height: 55px;
	line-height: 55px;
	color: #333333;
	outline: none;
	box-sizing: border-box;
}

.pop-join .inp-box.yzm .yzm-btn {
	width: 181px;
	height: 55px;
	display: block;
	float: left;
	margin-left: -1px;
	z-index: 99;
	position: relative
}

.pop-join .inp-box.yzm .yzm-btn img {
	width: 100%;
	height: 100%;
}

.btn-s {
	padding-top: 20px;
}

.btn-s input {
	width: 199px;
	height: 66px;
	line-height: 66px;
	text-align: center;
	border: 0;
	cursor: pointer;
	display: inline-block;
	border-radius: 2px;
	font-size: 16px;
	margin-right: 30px;
	-webkit-transition: .3s;
	transition: .3s;
	outline: none;
}

.btn-s .s1 {
	background-color: #165cb3;
	color: #ffffff;
	border: 1px solid #165cb3;
}

.btn-s .s2 {
	background-color: #a2a2a2;
	color: #ffffff;
	margin-right: 0;
}

@media only screen and (max-width: 1550px) {
	.pop .pad {
		width: 992px;
		padding: 50px 65px 50px 65px;
	}

	.pop-join .inp-box .inp {
		width: 444px;
	}

	.pop-join .inp-box select.inp,
	.pop-join .inp-box .layui-form-select {
		width: 444px;
	}
	.ywcj-content .cnt{ width: 80% !important; margin: 0px auto; line-height: 28px;
	max-width: 80%;font-size: 14px !important;}
	.ywcj-content .cnt table {
	  width: 100% !important;
	}
	.hw{width: 1200px !important;margin: 0px auto !important}
}

@media only screen and (max-width: 1270px) {
	.pop .pad {
		width: 768px;
	}

	.pop-join .inp-box .inp {
		width: 334px;
	}

	.pop-join .inp-box select.inp,
	.pop-join .inp-box .layui-form-select {
		width: 334px;
	}

	.x-btn {
		top: 30px;
		right: 30px;
	}
}

@media only screen and (max-width: 992px) {
	.pop .pad {
		width: 600px;
	}

	.pop-join .inp-box .inp {
		width: 264px;
	}

	.pop-join .inp-box select.inp,
	.pop-join .inp-box .layui-form-select {
		width: 264px;
	}
}

@media only screen and (max-width: 768px) {
	.pop .pad {
		width: 80%;
		padding: 50px 20px;
	}

	.pop-join span.fl,
	.pop-join span.fr {
		float: none;
		display: block;
		width: 100%;
	}

	.pop-join .scjl-box span.fl {
		width: calc(100% - 135px);
		float: left;
	}

	.pop-join .yzm span.fl {
		width: calc(100% - 181px);
		float: left;
	}

	.pop-join .inp-box .inp,
	/* .pop-join .inp-box .w1066, */
	/* .pop-join .inp-box .w929, */
	.pop-join .inp-box.yzm input {
		width: 100%;
	}

	.pop-join .inp-box select.inp {
		width: 100%;
	}

	.pop-join .inp-box {
		margin-bottom: 0;
	}

	.pop-join .inp-box span {
		margin-bottom: 20px;
	}

	.choose-btn {
		margin: 0 0 20px;
	}

	.btn-s input {
		width: 46%;
		margin-right: 4%;
	}

	.pop-join h3 {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.btn-s {
		padding-top: 30px;
	}

	.x-btn {
		top: 15px;
		right: 15px;
	}
	#bbbbb{display:none}
}

@media only screen and (max-width: 515px) {

	.pop-join .scjl-box span.fl,
	.pop-join .yzm span.fl {
		width: 100%;
		float: inherit;
	}

	.pop-join .inp-box .inp,
	.pop-join .inp-box .w1066,
	.pop-join .inp-box .w929,
	.pop-join .inp-box.yzm input {
		width: 100%;
	}

	.pop-join .inp-box select.inp,
	.pop-join .inp-box .layui-form-select {
		width: 100%;
	}

	.pop-join .inp-box {
		margin-bottom: 0;
	}

	.btn-s input {
		height: 46px;
		line-height: 46px;
	}
	.bnr{height:auto !important; overflow: hidden}
.bnr .tit1{font-size: 12px; font-weight: bold; color: #fff; display: block; letter-spacing: 6px; line-height: 3}
.bnr .tit2{font-size: 16px; font-weight: bold; color: #fff; display: block;letter-spacing: 6px;}

}
.itembox{
	overflow: hidden;
	background-color: #0e6eb8;
}
.itembox ul li{
	float: left;
	width: 25%;
	padding: 50px 0px;
	text-align: center;
	overflow: hidden;
}
.itembox ul li:nth-child(odd){
	background-color: #1777c1;
}
.itembox ul li:nth-child(even){
	background-color: #1a7bc6;
}
.itembox ul li .box{
	display: inline-block;
	text-align: left;
}
.itembox ul li .t1{
	color: #ffffff;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 10px;
}
.itembox ul li .t2{
	color: #ffffff;
	font-size: 16px;
}

@media screen and (max-width: 1680px){
	.itembox ul li{
		padding: 45px 0px;
	}
}
@media screen and (max-width: 1440px){
	.itembox ul li{
		padding: 40px 0px;
	}
	.itembox ul li .t1{
		font-size: 28px;
	}
}
@media screen and (max-width: 1024px){
	.itembox .conwidth{
		padding: 0;
	}
	.itembox ul li{
		padding: 30px 0px;
	}
	.itembox ul li .t1{
		font-size: 22px;
	}
	.itembox ul li .t2{
		font-size: 15px;
	}
}
@media screen and (max-width: 768px){
	.itembox ul li{
		padding: 25px 0px;
	}
	.itembox ul li .t1{
		font-size: 24px;
	}
	.itembox ul li .t2{
		font-size: 14px;
	}
	
}
@media screen and (max-width: 640px){
	.itembox ul li{
		width: 50%;
		padding: 4% 0;
	}
	.itembox ul li .box{
		width: 100%;
		padding-left: 5%;
		/*padding-right: 3%;*/
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	.itembox ul li .t1{
		font-size:18px;
		margin-bottom: 5px;
	}
	.itembox ul li:nth-child(1), .itembox ul li:nth-child(4){
		background-color: #1777c1;
	}
	.itembox ul li:nth-child(2), .itembox ul li:nth-child(3){
		background-color: #1a7bc6;
	}
	.w{width:100% !important; margin: 0px auto !important}
	.swlist{ width: 100%; margin-top: 10px}
.swlist ul{list-style: none; margin: 0px auto}
.swlist ul li{ width: 45% !important; float: left; margin-left: 2% !important;font-size: 14px; border: 3px solid #042A4A}
.swlist ul li:nth-child(1){margin-left: 0px;}
.swlist ul li h1{font-size: 14px; text-align: center; margin-bottom: 5px;}
.swlist ul li h1 img{width: 97%; margin: 0px auto}
.swlist ul li h1:nth-child(1){ width: 100%; background-color: #042A4A; color:#fff;font-size: 16px; padding-top: 5px; padding-bottom: 5px}
	.right-wrap{display: none !important}
	.footer_fixed{ display:block !important;}
	
	.bnr{height:auto !important; overflow: hidden}
.bnr .tit1{font-size: 14px !important; font-weight: bold; color: #fff; display: block; letter-spacing: 6px !important; line-height: 3}
.bnr .tit2{font-size: 18px !important; font-weight: bold; color: #fff; display: block;letter-spacing: 6px !important;}
	.bt{width: auto !important; margin-right: 5px}
	#container{
    padding-top: 50px;
    }
	.subnav a {
	display: block;
	float: left;
	font-size: 15px !important;
	color: #505050;
	border-bottom: 2px solid transparent;
	margin-right: 5px !important;
   }
	
	.gs-ul li .nr{height: auto !important}
	.gs-ul li:first-child {
	   height: auto !important;
    }
	.subnav {
	width:100%;
	height: auto !important;
	background: #FFFFFF;
    }
	.subnav a{border-top: 1px solid #03244B; border-left: 0px solid #081864;}
	.footer-dl dd{width:auto !important; overflow: hidden; text-overflow: ellipsis;
	white-space: nowrap;}
	.ywcj-ul img{border-radius: 50px}
   .gs-left>div>img {
	display:block !important;
	   width: 100% !important;
	   object-fit: cover;
    }
}
@media screen and (max-width: 414px){
	.itembox ul li .t1{
		font-size: 16px;
	}
	.bnr{height:auto !important; overflow: hidden}
.bnr .tit1{font-size: 14px; font-weight: bold; color: #fff; display: block; letter-spacing: 6px; line-height: 3}
.bnr .tit2{font-size: 16px; font-weight: bold; color: #fff; display: block;letter-spacing: 6px;}

}

/* 手机底部浮动栏样式*/

#btn {
    border-top: 1px solid #dedede;
    background: #252525;
    height: 30px;
}
#btn ul li {
    display: inline;
    float: left;
    height: 50px;
    line-height: 50px;
    text-indent: 2.5em;
    width: 48%;
}
#btn ul li a {
    border-radius: 5px;
    color: #fff;
    display: block;
    height: 34px;
    line-height: 34px;
    margin: 8px auto;
    width: 80%;
}
#btn ul li {
    text-align: center;
}
#btn ul li a.btn_1 {
    background: #1896e6 url("../images/icon_4.png") no-repeat scroll 15% center / 20px auto;
}
#btn ul li a.btn_2 {
    background: #ffbb10 url("../images/icon_5.png") no-repeat scroll 15% center / 20px auto;
}
#btn ul li a.btn_3 {
    background: #50c25f url("../images/icon_6.png") no-repeat scroll 15% center / 20px auto;
}

.footer_fixed {
    background: #fff none repeat scroll 0 0;
    bottom: 0;
    line-height: 50px;
    max-width: 768px;
    min-height: 50px;
    position: fixed;
    width: 100%;
    z-index: 9999;
}
/* end手机底部浮动栏样式*/
.swlist{ width: 100%; margin-top: 10px}
.swlist ul{list-style: none; margin: 0px auto}
.swlist ul li{ width: 18%; float: left; margin-left: 6%;font-size: 14px; border: 3px solid #042A4A}
.swlist ul li:nth-child(1){margin-left: 0px;}
.swlist ul li h1{font-size: 14px; text-align: center; margin-bottom: 5px;}
.swlist ul li h1 img{width: 97%; margin: 0px auto}
.swlist ul li h1:nth-child(1){ background-color: #042A4A; color:#fff;font-size: 16px; padding-top: 5px; padding-bottom: 5px}

.bnr{height: 327px; overflow: hidden}
.bnr .tit1{font-size: 20px; font-weight: bold; color: #fff; display: block; letter-spacing: 12px; line-height: 3}
.bnr .tit2{font-size: 28px; font-weight: bold; color: #fff; display: block;letter-spacing: 12px;}
.bnr i{
	display:block;
	width:80px;
	height:4px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color:#fff;
}
.baseQuote option{background-color: #042A4A;}
@media screen and (max-width: 640px){

    table {
	  width: 100%; 
	  clear: both !important;
	   overflow: scroll !important;
		
    }
	.gundong{
		overflow: scroll !important;
	}
	.ywcj-content .cnt{ width: 100% !important; margin: 0px auto; line-height: 28px;
	max-width: 98%;font-size: 14px !important; }
	.ywcj-content .cnt img{width:98% !important; height: auto !important; margin: 0px auto}
	embed {width: 100%; height: 200px}
	.hw{width:98% !important; margin: 0px auto !important}
  }