@keyframes scroll {
	0% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(5px);
		-moz-transform: translateY(5px);
		-ms-transform: translateY(5px);
		transform: translateY(5px);
	}
}

@keyframes scroll1 {

	0%,
	100% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	50% {
		-webkit-transform: translateY(5px);
		-moz-transform: translateY(5px);
		-ms-transform: translateY(5px);
		transform: translateY(5px);
	}
}

@keyframes scale {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}

	70% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.dom_loaded .header .nav_btn span {
	-webkit-transition: all 0.47s ease;
	-moz-transition: all 0.47s ease;
	-ms-transition: all 0.47s ease;
	transition: all 0.47s ease;
}

.dom_loaded .nav_popups,
.dom_loaded .search_popups {
	display: block;
	-webkit-transition: transform 0.6s ease-in-out;
	-moz-transition: transform 0.6s ease-in-out;
	-ms-transition: transform 0.6s ease-in-out;
	transition: transform 0.6s ease-in-out;
}

.dom_loaded .page_system .popups {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* loading */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 15;
}

@media screen and (max-width: 992px) {
	.loading {
		display: none;
	}
}

.loading.hide {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}

.loading .bg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
}

.loading .bg img {
	display: block;
	width: 54vw;
	max-width: 1035px;
}

.loading .line {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #b5b5b5;
	z-index: 2;
}

.loading .line span {
	background-color: #ff8615;
	height: 3px;
	position: absolute;
	top: 0;
	left: 0;
}

.loading .txt_block {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	text-align: center;
}

.loading .txt_block img {
	display: block;
	margin: 0 auto;
}

.loading .txt_block h3 {
	font-size: 48px;
	color: #636363;
	margin: 40px 0 20px;
}

.loading .txt_block .number {
	font-size: 16px;
	color: #92959c;
	font-family: 'gilroy-medium';
}

.loading .txt_block .number span {
	font-size: 24px;
	width: 35px;
	text-align: right;
	margin-right: 5px;
	display: inline-block;
	vertical-align: middle;
}

/*tcgtool220617 start*/
@media screen and (max-width: 992px){
	.top-nav{
		display: none;
	}
}
@media screen and (min-width: 992px) {
	.top-nav{
		position: relative;
		height: 7.9vw;
		box-sizing: border-box;
		padding: 0 5.2vw; 
		display: flex;
	    justify-content: center;
		background-color: #ff8615;
		align-items: center;
	}
	.top-nav img.logo{
		width: 11.9vw;
		margin-right:1.65vw;
	}
	.top-nav>ul{
		display: flex;
		height: 100%;
		align-items: center;
	    width: 69vw;
	    justify-content: space-around;
	}
	.top-nav li {
		box-sizing: border-box;
		/* position: relative; */
		/*padding-right: 2.8vw;*/
		padding: 0 1vw;
		display: flex;
		align-items: center;
		height: 100%;
	}
	.top-nav li:hover{
		background-color: #f3aa63;
	}
	.top-nav li a{
		display: block;
		font-size: 1.1vw;
		color: #fff; 
	}
	.top-nav li:hover div.drop_nav{
		display: flex;
		justify-content: center;
	}
	.top-nav div.drop_nav{
		position: absolute;
		top: 7.9vw;
	    left: 0;
	    z-index: 2;
	    padding: 1vw;
	    background-color: rgba(255,134,21,0.7);
	    min-width: 100%;
		display: none;
	}
	.top-nav div.drop_nav a{
		display: block;
		margin: 0 1vw;
		font-size: 0.8333vw;
		line-height: 1.3vw;
	    white-space: nowrap;
	    color: rgba(255, 255, 255, 0.7);
	    -webkit-transition: color 0.3s ease;
	    -moz-transition: color 0.3s ease;
	    -ms-transition: color 0.3s ease;
	    transition: color 0.3s ease;
		height: 1.3vw;
		box-sizing: border-box;
	}
	.top-nav div.drop_nav a:hover{
		color: #fff;
		border-bottom: 1px solid #fff;
	}
	.top-nav div.search_btn{
		height: 1.1vw;
		width:1.1vw; 
		background: url("/template/pc/skin/img/icon-1.png");
		background-size: 100% 100%;
	}

	.footer .mid_box .info {
		display: none;
	}
}
/*tcgtool220617 end*/



/* header */
.header {
	width: 96px;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	background-color: #ff8615;
	border-right: 1px solid #ff8615;
	z-index: 9;
}

.header .logo {
	margin-top: 40px;
}

.header .logo img {
	display: block;
	margin: 0 auto;
}

.header .nav_btn {
	width: 36px;
	height: 32px;
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -11px;
	overflow: hidden;
	cursor: pointer;
}

.header .nav_btn span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #0d1f3f;
	position: absolute;
	top: 50%;
	left: 0;
	transform-origin: left 50%;
}

.header .nav_btn span.top {
	margin-top: -10px;
}

.header .nav_btn span.bottom {
	margin-top: 10px;
}

@media screen and (min-width: 992px) {
/*tcgtool220617 start*/
.header{
	display: none;
}
/*tcgtool220617 end*/
	.header .nav_btn:not(.active):hover span {
		background-color: #0d1f3f;
	}

	.header .nav_btn:not(.active):hover span.top {
		-webkit-transform: translateX(50%);
		-moz-transform: translateX(50%);
		-ms-transform: translateX(50%);
		transform: translateX(50%);
	}

	.header .nav_btn:not(.active):hover span.bottom {
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

.header .nav_btn.active span.top {
	-webkit-transform: rotate(45deg) translate(0, -4px);
	-moz-transform: rotate(45deg) translate(0, -4px);
	-ms-transform: rotate(45deg) translate(0, -4px);
	transform: rotate(45deg) translate(0, -4px);
}

.header .nav_btn.active span.middle {
	opacity: 0;
}

.header .nav_btn.active span.bottom {
	-webkit-transform: rotate(-45deg) translate(0, 4px);
	-moz-transform: rotate(-45deg) translate(0, 4px);
	-ms-transform: rotate(-45deg) translate(0, 4px);
	transform: rotate(-45deg) translate(0, 4px);
}

.header .search_btn {
	width: 22px;
	height: 22px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/icon-1.png");
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 40px;
	cursor: pointer;
}

.nav_popups {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 8;
	background-color: #fff;
	padding-left: 96px;
	padding-right: 145px;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	display: none;
}

.nav_popups .left_box {
	position: relative;
	width: 100%;
	height: 100%;
}

.nav_popups .left_box .bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
	opacity: .1;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.nav_popups .left_box img.logo {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
	top: 46px;
}

.nav_popups .left_box .cont {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15vh;
	padding: 0 11.5vw;
	z-index: 2;
}

.nav_popups .left_box .nav {
	width: 50%;
	position: relative;
}

.nav_popups .left_box .nav li {
	margin-top: 24px;
}

.nav_popups .left_box .nav li:first-of-type {
	margin-top: 0;
}

.nav_popups .left_box .nav li a.sig {
	display: block;
	font-size: 28px;
	line-height: 36px;
	color: #000;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.nav_popups .left_box .nav li a.sig:before {
	content: '';
	width: 30px;
	height: 3px;
	background-color: #ff8615;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -1px;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.nav_popups .left_box .nav li .drop_nav {
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	min-height: 100%;
	display: none;
}

.nav_popups .left_box .nav li .drop_nav a {
	display: block;
	margin-top: 24px;
	font-size: 24px;
	line-height: 36px;
	color: #000;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.nav_popups .left_box .nav li .drop_nav a:first-of-type {
	margin-top: 0;
}

.nav_popups .left_box .nav li .drop_nav a:before {
	content: '';
	width: 30px;
	height: 3px;
	background-color: #ff8615;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -1px;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

@media screen and (min-width: 992px) {
	.nav_popups .left_box .nav li .drop_nav a:hover {
		color: #ff8615;
		padding-left: 40px;
	}

	.nav_popups .left_box .nav li .drop_nav a:hover:before {
		-webkit-transform: scaleX(1);
		-moz-transform: scaleX(1);
		-ms-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.nav_popups .left_box .nav li:hover a.sig {
	color: #ff8615;
	padding-left: 40px;
}

.nav_popups .left_box .nav li:hover a.sig:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.nav_popups .left_box .link {
	margin-top: 12vh;
	font-size: 0;
}

.nav_popups .left_box .link a {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 26px;
	color: #000;
	margin-right: 35px;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.nav_popups .left_box .link a:last-of-type {
	margin-right: 0;
}

.nav_popups .left_box .link a:hover {
	color: #ff8615;
}

.nav_popups .right_box {
	position: absolute;
	top: 0;
	right: 0;
	width: 145px;
	height: 100%;
	background-color: #000;
}

.nav_popups .right_box .ewm {
	position: absolute;
	top: 3.4vw;
	left: 0;
	right: 0;
	cursor: pointer;
	padding: 0 20px;
}

.nav_popups .right_box .ewm img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.nav_popups .right_box .share {
	position: absolute;
	bottom: 2.5vw;
	left: 0;
	right: 0;
}

.nav_popups .right_box .share a {
	display: block;
	float: none;
	margin: 15px auto 0;
	padding: 0;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-position: center;
	background-repeat: no-repeat;
}

.nav_popups .right_box .share a[data-cmd="weixin"] {
	background-image: url("/template/pc/skin/img/share-1.png");
}

.nav_popups .right_box .share a[data-cmd="tsina"] {
	background-image: url("/template/pc/skin/img/share-2.png");
}

.nav_popups .right_box .share a[data-cmd="linkedin"] {
	background-image: url("/template/pc/skin/img/share-3.png");
}

.nav_popups.active {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.search_popups {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 7;
	background-color: #f4f4f4;
	padding: 12vh 12vw 12vh 24vw;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	display: none;
}

.search_popups .close {
	position: absolute;
	right: 30px;
	top: 30px;
	width: 46px;
	height: 46px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/close.png");
	cursor: pointer;
}

.search_popups h3 {
	font-size: 4vw;
}

.search_popups form {
	margin-top: 30px;
	display: block;
	position: relative;
}

.search_popups input {
	display: block;
	width: 100%;
	height: 60px;
	background-color: transparent;
	font-size: 18px;
	border-bottom: 1px solid #999999;
}

.search_popups button {
	width: 60px;
	height: 60px;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/icon-1.png");
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
}

.search_popups.active {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

/* footer */
.footer {
	padding: 7vw 8.4vw 6vw;
	background-color: #0d1f3f;
}

.footer .logo {
	font-size: 0;
	overflow: hidden;
}

.footer .logo img {
	float: left;
	height: 48px;
}

.footer .logo:after {
	content: '';
	float: right;
	width: calc(100% - 250px);
	height: 1px;
	background-color: rgba(255, 255, 255, 0.15);
	margin-top: 22px;
}

.footer .mid_box {
	margin: 6vw 0 3vw;
	overflow: hidden;
}

.footer .mid_box .nav {
	/*float: left;*/
	margin: 0 auto;
	display: flex;
	justify-content: space-between; 
	font-size: 0;
	/*width: calc(100% - 16.6vw);*/
	width: 100%;
}

.footer .mid_box .info {
	width: 320px;
	float: right;
}

.footer .mid_box .box {
	display: inline-block;
	vertical-align: top;
	/*width: 16.66%;*/
	/*padding-right: 15px;*/
}

.footer .mid_box h3 {
	font-size: 20px;
	color: #fff;
}

.footer .mid_box h3 a {
	color: #fff;
}

.footer .mid_box .a_block {
	margin-top: 20px;
	font-size: 18px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.3);
}

.footer .mid_box .a_block a,
.footer .mid_box .a_block p {
	margin-top: 24px;
}

.footer .mid_box .a_block a:nth-of-type(1),
.footer .mid_box .a_block p:nth-of-type(1) {
	margin-top: 0;
}

.footer .mid_box .a_block a {
	display: block;
	color: rgba(255, 255, 255, 0.3);
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.footer .mid_box .a_block a:hover {
	color: #ff8615;
}

.footer .bot_box {
	font-size: 0;
}

.footer .bot_box .tel {
	display: none;
}

.footer .copyright {
	display: inline-block;
	vertical-align: bottom;
	width: calc(100% - 320px);
}

.footer .copyright:before {
	content: '';
	width: 40px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.3);
	display: inline-block;
	vertical-align: middle;
}

.footer .copyright span {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.3);
	display: inline-block;
	vertical-align: middle;
	margin-left: 1.5vw;
}

.footer .copyright span br {
	display: none;
}

.footer .ewm {
	width: 320px;
	display: inline-block;
	vertical-align: bottom;
	overflow: hidden;
}

.footer .ewm .img:nth-of-type(1) {
	float: left;
}

.footer .ewm .img:nth-of-type(2) {
	float: right;
}

.footer .ewm img {
	width: 90px;
	display: block;
}

.footer .ewm p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 15px;
	text-align: center;
}

/* fixed right */
.fixed_right {
	position: fixed;
	right: 0;
	bottom: 10%;
	z-index: 7;
}

.fixed_right .block {
	position: relative;
	width: 60px;
	height: 60px;
	margin-top: 1px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.fixed_right .block i {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 2;
	background-color: #ff8615;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.fixed_right .block.top i {
	background-image: url("/template/pc/skin/img/fixed-1.png");
}

.fixed_right .block.top:hover i {
	background-image: url("/template/pc/skin/img/fixed-1-on.png");
}

.fixed_right .block.download i {
	background-image: url("/template/pc/skin/img/fixed-2.png");
}

.fixed_right .block.download:hover i {
	background-image: url("/template/pc/skin/img/fixed-2-on.png");
}

.fixed_right .block.zixun i {
	background-image: url("/template/pc/skin/img/fixed-3.png");
}

.fixed_right .block.zixun:hover i {
	background-image: url("/template/pc/skin/img/fixed-3-on.png");
}

.fixed_right .block.share i {
	background-image: url("/template/pc/skin/img/fixed-4.png");
}

.fixed_right .block.share:hover i {
	background-image: url("/template/pc/skin/img/fixed-4-on.png");
}

.fixed_right .block .box {
	width: 180px;
	height: 60px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	-webkit-transition: left 0.3s ease;
	-moz-transition: left 0.3s ease;
	-ms-transition: left 0.3s ease;
	transition: left 0.3s ease;
}

.fixed_right .block .box a.btn {
	display: block;
	width: 100%;
	padding: 0 30px;
	font-size: 12px;
	color: #fff;
	line-height: 60px;
	background-color: #ff8615;
}

.fixed_right .block .share {
	background-color: #fff;
	overflow: hidden;
}

.fixed_right .block .share a {
	width: 60px;
	height: 60px;
	margin: 0;
	padding: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #ff8615;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.fixed_right .block .share a[data-cmd="weixin"] {
	background-image: url("/template/pc/skin/img/share-1.png");
}

.fixed_right .block .share a[data-cmd="tsina"] {
	background-image: url("/template/pc/skin/img/share-2.png");
}

.fixed_right .block .share a[data-cmd="linkedin"] {
	background-image: url("/template/pc/skin/img/share-3.png");
}

.fixed_right .block:hover i {
	background-color: #ff8615;
}

.fixed_right .block:hover .box {
	left: -180px;
}

@media screen and (max-width: 1600px) {
	.nav_popups .left_box img.logo {
		height: 100px;
	}

	.nav_popups .left_box .cont {
		bottom: 10vh;
	}

	.nav_popups .left_box .link {
		margin-top: 8vh;
	}

	.nav_popups .left_box .nav li a.sig {
		font-size: 24px;
	}

	.nav_popups .left_box .nav li {
		margin-top: 20px;
	}

	.nav_popups .left_box .nav li .drop_nav a {
		margin-top: 20px;
		font-size: 20px;
	}

	.footer {
		padding: 5vw 8.6vw;
	}

	.footer .mid_box {
		margin: 4vw 0 2vw;
	}

	.footer .mid_box h3 {
		font-size: 18px;
	}

	.footer .mid_box .info {
		width: 280px;
	}

	.footer .mid_box .nav {
		/*width: calc(100% - 280px);*/
		/*width: calc(100% - 16.6vw);*/
		width: 100%;
	}

	.footer .mid_box .a_block,
	.footer .copyright span,
	.footer .ewm p {
		font-size: 16px;
	}

	.footer .mid_box .a_block a,
	.footer .mid_box .a_block p {
		margin-top: 10px;
	}

	.footer .ewm {
		width: 260px;
	}

	.footer .copyright {
		width: calc(100% - 260px);
		padding-right: 20px;
	}
}

@media screen and (max-width: 1366px) {
	.nav_popups {
		padding-right: 120px;
	}

	.nav_popups .right_box {
		width: 120px;
	}

	.nav_popups .left_box .cont {
		bottom: 40px;
	}

	.nav_popups .left_box img.logo {
		height: 80px;
	}

	.nav_popups .left_box .nav li {
		margin-top: 15px;
	}

	.nav_popups .left_box .nav li a.sig {
		font-size: 20px;
		line-height: 30px;
	}

	.nav_popups .left_box .nav li .drop_nav a {
		font-size: 16px;
		line-height: 30px;
		margin-top: 15px;
	}

	.footer .mid_box .info {
		width: 200px;
	}

	.footer .mid_box .nav {
		/*width: calc(100% - 200px);*/
		/*width: calc(100% - 16.6vw);*/
		width: 100%;
	}
}

@media screen and (max-width: 992px) {
	.header {
		width: 100%;
		height: 60px;
		padding: 0 10px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	}

	.header .logo {
		margin-top: 10px;
		float: left;
	}

	.header .logo img {
		height: 40px;
	}

	.header .nav_btn {
		right: 20px;
		margin-top: -17px;
	}

	.header .search_btn {
		left: auto;
		right: 80px;
		bottom: 19px;
	}

	.dom_loaded .nav_popups {
		top: 60px;
		padding-left: 0;
		padding-right: 0;
	}

	.nav_popups .right_box {
		display: none;
	}

	.nav_popups .left_box img.logo {
		display: none;
	}

	.nav_popups .left_box .cont {
		bottom: 0;
		top: 0;
		padding: 40px;
	}

	.nav_popups .left_box .nav li {
		margin-top: 10px;
		font-size: 0;
	}

	.nav_popups .left_box .nav li a.sig {
		font-size: 16px;
		display: inline-block;
		vertical-align: top;
		width: calc(100% - 40px);
	}

	.nav_popups .left_box .nav li:hover a.sig {
		padding-left: 24px;
	}

	.nav_popups .left_box .nav li a.sig:before {
		width: 20px;
		height: 2px;
	}

	.nav_popups .left_box .nav li i {
		width: 40px;
		height: 30px;
		display: inline-block;
		vertical-align: top;
		background-position: center;
		background-repeat: no-repeat;
		background-image: url("/template/pc/skin/img/nav.png");
		background-size: auto 12px;
	}

	.nav_popups .left_box .nav li .drop_nav a {
		font-size: 14px;
		line-height: 30px;
		margin-top: 10px;
	}

	.footer {
		padding: 30px 20px 70px;
	}

	.footer .logo:after {
		display: none;
	}

	.footer .logo img {
		float: none;
		height: 50px;
		display: block;
		margin: 0 auto;
	}

	.footer .mid_box {
		margin: 20px 0;
	}

	.footer .mid_box .nav {
		display: none;
	}

	.footer .mid_box .info {
		width: 100%;
		text-align: center;
		float: none;
	}

	.footer .mid_box h3 {
		display: none;
	}

	.footer .mid_box .a_block {
		margin-top: 0;
	}

	.footer .mid_box .m_hide {
		display: none;
	}
	.footer .mid_box .m_phone {
		display: block;
	}
	.footer .ewm {
		display: none;
	}

	.footer .copyright {
		width: 100%;
		padding-right: 0;
		text-align: center;
	}

	.footer .copyright span {
		margin-left: 0;
		display: block;
	}

	.footer .copyright span br {
		display: inline-block;
	}

	.footer .copyright:before {
		display: none;
	}

	.footer .bot_box .tel {
		margin-top: 10px;
		display: block;
		text-align: center;
		font-size: 12px;
		color: rgba(255, 255, 255, 0.3);
	}

	.footer .bot_box .tel span {
		display: inline-block;
		vertical-align: top;
	}

	.footer .bot_box .tel span:last-of-type {
		margin-left: 10px;
	}

	.footer .bot_box .tel a {
		color: rgba(255, 255, 255, 0.3);
	}

	.fixed_right {
		display: none;
	}

	.search_popups {
		padding: 100px 40px;
	}

	.search_popups h3 {
		font-size: 24px;
	}

	.search_popups input {
		height: 40px;
		font-size: 14px;
	}

	.search_popups button {
		width: 40px;
		height: 40px;
	}

	.search_popups .close {
		width: 30px;
		height: 30px;
		right: 20px;
		top: 80px;
		background-size: contain;
	}
}

.wrapper_page {
	/*tcgtool220617 start*/
	/*margin-left: 96px;*/
	/*tcgtool220617 end*/
}

.video_pop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 11;
	display: none;
}

.video_pop .bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.video_pop .close {
	width: 32px;
	height: 32px;
	position: absolute;
	right: 20px;
	top: 20px;
	background: url("/template/pc/skin/img/close-1.png") center no-repeat;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	transition: all 500ms ease;
	cursor: pointer;
	z-index: 2;
}

.video_pop .close:hover {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.video_pop .iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60vw;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video_pop .iframe iframe {
	width: 100%;
	height: 100%;
}

.video_pop video {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	max-height: 70vh;
	max-width: 70vw;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.comm_banner {
	position: relative;
}

.comm_banner .pos {
	position: absolute;
	left: 7.5vw;
	top: 3.5vw;
	font-size: 18px;
	color: #fff;
	padding-bottom: 10px;
	border-bottom: 2px solid #ff8615;
}

.comm_banner .scroll {
	position: absolute;
	left: 7.5vw;
	bottom: 4.5vw;
	font-size: 14px;
	line-height: 16px;
	color: #fff;
	text-align: center;
	width: 16px;
}

.comm_banner .scroll:after {
	content: '';
	width: 11px;
	height: 23px;
	display: block;
	margin: 10px auto 0;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/scroll.png");
	-webkit-animation: scroll 1s linear infinite;
	-moz-animation: scroll 1s linear infinite;
	-ms-animation: scroll 1s linear infinite;
	animation: scroll 1s linear infinite;
}

.comm_banner a.btn {
	position: absolute;
	bottom: 4.5vw;
	right: 5vw;
	background-color: #ff8615;
	font-size: 18px;
	line-height: 46px;
	color: #fff;
	width: 140px;
	text-align: center;
	border-radius: 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comm_banner a.btn:hover {
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

.comm_banner .item {
	position: relative;
}

.comm_banner .item .img_block.bg {
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.comm_banner .item img {
	display: block;
	width: 100%;
}

.comm_banner .item .txt_block {
	position: absolute;
	left: 7.5vw;
	right: 7.5vw;
	top: 30vh;
}

.comm_banner .item .txt_block.w {
	top: 17vw;
}

.comm_banner .item .txt_block h3 {
	font-size: 60px;
	color: #fff;
}

.comm_banner .item .txt_block h4 {
	font-size: 24px;
	color: #fff;
	margin-top: 2vw;
}

.comm_banner .item .txt_block p {
	font-size: 14px;
	color: #fff;
	margin-top: 2vw;
}

.comm_banner .item .txt_block p:before {
	content: '';
	width: 45px;
	height: 1px;
	background-color: #fff;
	opacity: .5;
	display: inline-block;
	vertical-align: middle;
	margin: -2px 15px 0 0;
}

.comm_banner .item .txt_block a {
	display: inline-block;
	font-size: 14px;
	line-height: 48px;
	color: #fff;
	padding-left: 70px;
	margin-top: 30px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/index/icon-1.png");
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comm_banner .item .txt_block a:hover {
	background-position: 10px center;
}

.comm_banner .slick-dots {
	position: absolute;
	left: 7.5vw;
	right: 7.5vw;
	top: 65vh;
	font-size: 0;
}

.comm_banner .slick-dots li {
	display: inline-block;
	vertical-align: top;
	padding: 0 16px 20px;
	opacity: .3;
	margin-right: 2px;
	border-bottom: 2px solid transparent;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.comm_banner .slick-dots li:hover,
.comm_banner .slick-dots li.slick-active {
	opacity: 1;
	border-color: #ff8615;
}

.comm_banner .slick-dots button {
	background-color: transparent;
	font-size: 16px;
	font-family: 'DIN-Medium';
	color: #fff;
	cursor: pointer;
}

.comm_pages {
	text-align: center;
	font-size: 0;
}

.comm_pages li {
	display: inline-block;
	vertical-align: top;
	margin: 0 12px;
}

.comm_pages li a {
	display: block;
	width: 50px;
	height: 50px;
	font-size: 18px;
	line-height: 48px;
	font-family: 'Arial';
	border: 1px solid #cccccc;
	background-color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comm_pages li:hover a,
.comm_pages li.active a {
	border-color: #ff8615;
	background-color: #ff8615;
	color: #fff;
}

.comm_slick1 {
	margin-left: -80px;
	margin-right: -80px;
	padding: 0 56px;
	position: relative;
	font-size: 0;
}

@media screen and (min-width: 992px) {
	.comm_slick1 .slick-list {
		padding-top: 10px;
	}
}

.comm_slick1 .item {
	display: inline-block;
	vertical-align: top;
	width: calc(33.33% - 48px);
	margin: 0 24px;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.comm_slick1 .item .img_block {
	overflow: hidden;
}

.comm_slick1 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comm_slick1 .item .txt_block {
	margin-top: 30px;
}

.comm_slick1 .item h3 {
	font-size: 30px;
	color: #202020;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.comm_slick1 .item h3.small {
	font-size: 24px;
}

.comm_slick1 .item p {
	font-size: 16px;
	color: #666;
	margin-top: 10px;
}

@media screen and (min-width: 992px) {
	.comm_slick1 .item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.comm_slick1 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.comm_slick1 .item:hover h3 {
	color: #ff8615;
}

.comm_slick1 .slick-arrow {
	width: 46px;
	height: 46px;
	border: 1px solid #cececb;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 12px;
	background-color: transparent;
	position: absolute;
	top: 46%;
	font-size: 0;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comm_slick1 .slick-arrow:hover {
	background-color: #0d1f3f;
}

.comm_slick1 .slick-prev {
	background-image: url("/template/pc/skin/img/prev-1.png");
	left: 0;
}

.comm_slick1 .slick-prev:hover {
	background-image: url("/template/pc/skin/img/prev-2.png");
}

.comm_slick1 .slick-next {
	background-image: url("/template/pc/skin/img/next-1.png");
	right: 0;
}

.comm_slick1 .slick-next:hover {
	background-image: url("/template/pc/skin/img/next-2.png");
}

.comm_section1 {
	font-size: 0;
	margin: 2vw 0 4.5vw;
}

.comm_section1 .item {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	margin-top: 3vw;
}

@media screen and (min-width: 992px) {

	.comm_section1 .item:nth-of-type(1),
	.comm_section1 .item:nth-of-type(2) {
		margin-top: 0;
	}
}

.comm_section1 .item .img_block {
	width: 43%;
	max-width: 328px;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
}

.comm_section1 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comm_section1 .item .txt_block {
	display: inline-block;
	vertical-align: middle;
	width: 57%;
	padding: 0 3.5vw;
}

.comm_section1 .item h3 {
	font-size: 24px;
	color: #202020;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.comm_section1 .item p {
	font-size: 16px;
	line-height: 36px;
	height: 72px;
	overflow: hidden;
	color: #999999;
	margin: 10px 0;
}

.comm_section1 .item span {
	display: block;
	width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/about/icon-7.png");
}

.comm_section1 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.comm_section1 .item:hover h3 {
	color: #ff8615;
}

.inner_tit1 {
	text-align: center;
}

.inner_tit1 h3 {
	font-size: 36px;
	color: #202020;
}

.inner_tit1 p {
	font-size: 24px;
	color: #202020;
	margin-top: 10px;
}

.inner_tit1:after {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: block;
	margin: 30px auto 0;
}

.inner_tit2 {
	text-align: center;
}

.inner_tit2 h3 {
	font-size: 36px;
	line-height: 48px;
	color: #202020;
}

.inner_tit2 p {
	font-size: 16px;
	margin-top: 10px;
	color: #666666;
}

.inner_tit2:after {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: block;
	margin: 20px auto 0;
}

.comm_section2 {
	padding: 9vw 7vw;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("/template/pc/skin/img/dazhai/img-15.jpg");
}

.comm_section2 .inner_tit2 h3:after {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: block;
	margin: 20px auto 0;
}

.comm_section2 .inner_tit2:after {
	display: none;
}

.comm_section2 .items {
	font-size: 0;
	text-align: center;
	margin-top: 3.5vw;
}

.comm_section2 .item {
	display: inline-block;
	vertical-align: top;
	margin: 0 2vw;
	text-align: left;
}

.comm_section2 .item .icon {
	display: inline-block;
	vertical-align: middle;
	width: 100px;
	height: 100px;
	position: relative;
	padding: 12px;
}

.comm_section2 .item .icon:before,
.comm_section2 .item .icon:after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 1px solid #0d1f3f;
	border-radius: 50%;
	opacity: 0;
	z-index: 1;
	-webkit-animation: scale 1.5s linear infinite;
	-moz-animation: scale 1.5s linear infinite;
	-ms-animation: scale 1.5s linear infinite;
	animation: scale 1.5s linear infinite;
}

.comm_section2 .item .icon:after {
	animation-delay: .5s;
}

.comm_section2 .item .icon i {
	display: block;
	height: 100%;
	border-radius: 50%;
	background-color: #0d1f3f;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 2;
}

.comm_section2 .item:nth-of-type(1) .icon i {
	background-image: url("/template/pc/skin/img/dazhai/icon-8.png");
}

.comm_section2 .item:nth-of-type(2) .icon i {
	background-image: url("/template/pc/skin/img/dazhai/icon-9.png");
}

.comm_section2 .item .txt {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

.comm_section2 .item .txt h3 {
	font-size: 20px;
	color: #181818;
}

.comm_section2 .item .txt p {
	font-size: 18px;
	color: #666;
	margin-top: 5px;
}

.comm_section2 .item .txt a {
	color: #666;
}

.comm_section3 {
	background-color: #fff;
	padding: 5vw 7vw;
}

.comm_section3 .inner_tit2 h3:after {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: block;
	margin: 20px auto 0;
}

.comm_section3 .inner_tit2:after {
	display: none;
}

.comm_section3 .items {
	margin-top: 2.5vw;
	font-size: 0;
}

.comm_section3 .item {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 17px);
	position: relative;
}

@media screen and (min-width: 992px) {
	.comm_section3 .item {
		-webkit-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
	}

	.comm_section3 .item:nth-of-type(odd) {
		margin-right: 34px;
	}
}

.comm_section3 .item .img_block {
	overflow: hidden;
}

.comm_section3 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comm_section3 .item .txt_block {
	position: absolute;
	left: 3vw;
	right: 3vw;
	bottom: 3vw;
	z-index: 2;
}

.comm_section3 .item .label {
	font-size: 15px;
	color: #ff8615;
}

.comm_section3 .item h3 {
	font-size: 20px;
	color: #fff;
	margin-top: 10px;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.comm_section3 .item a:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 30%;
	bottom: 0;
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	background: -o-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	z-index: 1;
}

@media screen and (min-width: 992px) {
	.comm_section3 .item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.comm_section3 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.comm_section3 .item:hover h3 {
	color: #ff8615;
}

/* news */
.news_item {
	background-color: #fff;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.news_item .img_block {
	overflow: hidden;
	height: 207px;
}

.news_item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.news_item .txt_block {
	padding: 2vw 2vw 2.5vw;
}

.news_item .txt_block:before {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: block;
	-webkit-transition: width 0.3s ease;
	-moz-transition: width 0.3s ease;
	-ms-transition: width 0.3s ease;
	transition: width 0.3s ease;
}

.news_item h3 {
	font-size: 20px;
	line-height: 28px;
	color: #202020;
	height: 112px;
	overflow: hidden;
	margin-top: 24px;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.news_item span {
	display: block;
	margin-top: 2.5vw;
	font-size: 13px;
	color: #666666;
	opacity: .5;
	font-family: 'Arial';
}

@media screen and (min-width: 992px) {
	.news_item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.news_item:hover .txt_block:before {
	width: 50px;
}

.news_item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.news_item:hover h3 {
	color: #ff8615;
}

.news_list {
	background-color: #f4f4f4;
}

.news_list .section1 {
	padding: 4vw 5vw 5vw;
}

.news_list .section1 .inner_tit2:after {
	display: none;
}

.news_list .section1 .items {
	font-size: 0;
	margin: 2.5vw 0 6vw;
}

.news_list .section1 .news_item {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 90px) / 4);
}

@media screen and (min-width: 992px) {
	.news_list .section1 .news_item {
		margin: 30px 30px 0 0;
	}

	.news_list .section1 .news_item:nth-of-type(1),
	.news_list .section1 .news_item:nth-of-type(2),
	.news_list .section1 .news_item:nth-of-type(3),
	.news_list .section1 .news_item:nth-of-type(4) {
		margin-top: 0;
	}

	.news_list .section1 .news_item:nth-of-type(4n) {
		margin-right: 0;
	}
}

.news_detail {
	background-color: #f4f4f4;
}

.news_detail .section1 {
	position: relative;
}

.news_detail .section1 img {
	display: block;
	width: 100%;
}

.news_detail .section1 a.back {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 46px;
	height: 46px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/news/icon-2.png");
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.news_detail .section1 a.back:hover {
	background-image: url("/template/pc/skin/img/news/icon-2-on.png");
}

.news_detail .section1:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.news_detail .section2 {
	max-width: 1060px;
	width: 80%;
	margin: -4.5vw auto 0;
	position: relative;
	z-index: 2;
}

.news_detail .section2 .info {
	height: 6.875vw;
	position: relative;
	padding: 0 6.875vw;
	background-color: #fff;
}

.news_detail .section2 .info .date {
	position: absolute;
	left: 0;
	top: 0;
	width: 6.875vw;
	height: 6.875vw;
	background-color: #ff8615;
	color: #fff;
	text-align: center;
}

.news_detail .section2 .info .date span {
	font-size: 48px;
	font-family: 'DIN-Medium';
}

.news_detail .section2 .info .date p {
	font-size: 16px;
	font-family: 'DIN-Medium';
}

.news_detail .section2 .info .tit {
	padding: 0 3vw;
	height: 100%;
}

.news_detail .section2 .info h3 {
	font-size: 30px;
	color: #222;
}

.news_detail .section2 .info .share {
	position: absolute;
	right: 0;
	top: 0;
	width: 6.875vw;
	height: 6.875vw;
	border-left: 1px solid #f4f4f4;
}

.news_detail .section2 .info .share a {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/news/icon-1.png");
}

.news_detail .section2 .cont {
	padding: 3vw 6.875vw 6vw;
	font-size: 16px;
	line-height: 36px;
	color: #222222;
}

.news_detail .section2 .cont:before {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: block;
	margin-bottom: 2.5vw;
}

.news_detail .section2 .cont img {
	max-width: 100%;
}

.news_detail .section3 {
	padding: 0 10vw 6vw;
}

.news_detail .section3 .slick {
	padding: 0 5vw;
}

@media screen and (min-width: 992px) {
	.news_detail .section3 .slick .slick-list {
		padding-top: 10px;
	}
}

.news_detail .section3 .slick .news_item {
	margin: 0 15px;
}

.news_detail .section3 .slick .slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -24px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #cccccc;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 12px;
	background-color: transparent;
	font-size: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.news_detail .section3 .slick .slick-arrow:hover {
	background-color: #ff8615;
	border-color: #ff8615;
}

.news_detail .section3 .slick .slick-prev {
	left: 0;
	background-image: url("/template/pc/skin/img/prev-1.png");
}

.news_detail .section3 .slick .slick-prev:hover {
	background-image: url("/template/pc/skin/img/prev-2.png");
}

.news_detail .section3 .slick .slick-next {
	right: 0;
	background-image: url("/template/pc/skin/img/next-1.png");
}

.news_detail .section3 .slick .slick-next:hover {
	background-image: url("/template/pc/skin/img/next-2.png");
}

.news_detail .section3 a.more {
	display: block;
	width: 240px;
	font-size: 15px;
	color: #202020;
	line-height: 52px;
	border: 1px solid #cccccc;
	background-color: #fff;
	text-align: center;
	margin: 3vw auto 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.news_detail .section3 a.more:hover {
	border-color: #ff8615;
	background-color: #ff8615;
	color: #fff;
}

/* solution */
.solution_list {
	background-color: #f4f4f4;
}

.solution_list .section1 {
	padding: 7vw 11vw;
}

.solution_list .section1 .items {
	font-size: 0;
	margin-top: 2vw;
}

.solution_list .section1 .item {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 2vw) / 2);
}

@media screen and (min-width: 992px) {
	.solution_list .section1 .item {
		margin: 2.5vw 2vw 0 0;
		-webkit-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
	}

	.solution_list .section1 .item:nth-of-type(1),
	.solution_list .section1 .item:nth-of-type(2) {
		margin-top: 0;
	}

	.solution_list .section1 .item:nth-of-type(even) {
		margin-right: 0;
	}
}

.solution_list .section1 .item .img_block {
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_list .section1 .item .hide {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(13, 31, 63, 0.9);
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_list .section1 .item .hide:after {
	content: '';
	width: 56px;
	height: 56px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/solution/icon-1.png");
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.solution_list .section1 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_list .section1 .item h3 {
	font-size: 24px;
	color: #202020;
	margin: 24px 0;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.solution_list .section1 .item p {
	font-size: 16px;
	color: #666666;
}

@media screen and (min-width: 992px) {
	.solution_list .section1 .item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.solution_list .section1 .item:hover .img_block {
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.solution_list .section1 .item:hover .hide {
	opacity: 1;
}

.solution_list .section1 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.solution_list .section1 .item:hover h3 {
	color: #ff8615;
}

.solution_list .section1 a.load {
	display: block;
	width: 260px;
	line-height: 58px;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	color: #202020;
	background-color: #fff;
	margin: 5vw auto 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_list .section1 a.load:after {
	content: '';
	width: 14px;
	height: 14px;
	display: inline-block;
	vertical-align: middle;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/add.png");
	margin: -3px 0 0 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_list .section1 a.load:hover {
	background-color: #ff8615;
	color: #fff;
}

.solution_list .section1 a.load:hover:after {
	background-image: url("/template/pc/skin/img/add-white.png");
}

.solution_page_1 .section1 {
	padding: 7vw 0 3vw;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("/template/pc/skin/img/solution/img-7.jpg");
}

.solution_page_1 .section1 .main {
	margin: 2vw auto 0;
	max-width: 552px;
	position: relative;
	margin-bottom: 84px;
}

.solution_page_1 .section1 .main img {
	display: block;
	width: 100%;
	position: relative;
	z-index: 2;
}

.solution_page_1 .section1 .main .dot {
	position: absolute;
}

.solution_page_1 .section1 .main .dot h3 {
	font-size: 24px;
	color: #202020;
	font-weight: normal;
}

.solution_page_1 .section1 .main .dot i {
	width: 50px;
	height: 45px;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
	margin: -3px 15px 0 0;
}

.solution_page_1 .section1 .main .dot .scale {
	width: 0;
	height: 0;
	position: absolute;
}

.solution_page_1 .section1 .main .dot .scale span {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	margin: -10px 0 0 -10px;
	border: 1px solid #999;
	border-radius: 50%;
	opacity: 0;
	-webkit-animation: scale 2s linear infinite;
	-moz-animation: scale 2s linear infinite;
	-ms-animation: scale 2s linear infinite;
	animation: scale 2s linear infinite;
}

.solution_page_1 .section1 .main .dot .scale span:nth-of-type(2) {
	animation-delay: .7s;
}

.solution_page_1 .section1 .main .dot .scale span:nth-of-type(3) {
	animation-delay: 1.4s;
}

.solution_page_1 .section1 .main .dot:nth-of-type(1) {
	left: -93px;
	top: 100px;
}

.solution_page_1 .section1 .main .dot:nth-of-type(1):after {
	content: '';
	width: 280px;
	height: 85px;
	background-position: center top;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/solution/img-9.png");
	display: block;
	margin-top: 12px;
}

.solution_page_1 .section1 .main .dot:nth-of-type(1) .scale {
	bottom: 81px;
	left: 4px;
}

.solution_page_1 .section1 .main .dot:nth-of-type(2) {
	right: -93px;
	top: 100px;
	text-align: right;
}

.solution_page_1 .section1 .main .dot:nth-of-type(2):after {
	content: '';
	width: 280px;
	height: 85px;
	background-position: center top;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/solution/img-10.png");
	display: block;
	margin-top: 12px;
}

.solution_page_1 .section1 .main .dot:nth-of-type(2) .scale {
	bottom: 81px;
	right: 4px;
}

.solution_page_1 .section1 .main .dot:nth-of-type(3) {
	bottom: -84px;
	left: 0;
	right: 0;
	text-align: center;
}

.solution_page_1 .section1 .main .dot:nth-of-type(3):before {
	content: '';
	width: 8px;
	height: 85px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/solution/img-11.png");
	display: block;
	margin: 0 auto 10px;
}

.solution_page_1 .section1 .main .dot:nth-of-type(3) .scale {
	top: 81px;
	left: 50%;
}

.solution_page_1 .section1 .m_img {
	display: none;
}

.solution_page_1 .section1 .m_img img {
	display: block;
	width: 100%;
}

.solution_page_1 .section2 .item {
	position: relative;
	background-color: #fff;
}

.solution_page_1 .section2 .item img {
	display: block;
	width: 100%;
}

.solution_page_1 .section2 .item .txt_block {
	position: absolute;
	top: 0;
	bottom: 0;
}

.solution_page_1 .section2 .item h3 {
	font-size: 20px;
}

.solution_page_1 .section2 .item span {
	font-family: 'DINPro-Bold';
	font-size: 60px;
}

.solution_page_1 .section2 .item h4 {
	font-size: 36px;
	line-height: 48px;
	margin: 24px 0;
}

.solution_page_1 .section2 .item p {
	font-size: 16px;
}

.solution_page_1 .section2 .item .imgs {
	margin-top: 2vw;
}

.solution_page_1 .section2 .item .img {
	display: inline-block;
	vertical-align: top;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 10px solid #fff;
	margin-right: 2vw;
	overflow: hidden;
}

.solution_page_1 .section2 .item .img img {
	display: block;
	width: 100%;
}

.solution_page_1 .section2 .item:nth-of-type(1) h3,
.solution_page_1 .section2 .item:nth-of-type(1) h4,
.solution_page_1 .section2 .item:nth-of-type(1) p {
	color: #fff;
}

.solution_page_1 .section2 .item:nth-of-type(2) h3,
.solution_page_1 .section2 .item:nth-of-type(3) h3 {
	color: #ff8615;
}

.solution_page_1 .section2 .item:nth-of-type(2) h4,
.solution_page_1 .section2 .item:nth-of-type(3) h4 {
	color: #202020;
}

.solution_page_1 .section2 .item:nth-of-type(2) p,
.solution_page_1 .section2 .item:nth-of-type(3) p {
	color: #666;
}

.solution_page_1 .section2 .item:nth-of-type(odd) .txt_block {
	left: 9.5vw;
}

.solution_page_1 .section2 .item:nth-of-type(even) .txt_block {
	right: 9.5vw;
}

.solution_page_1 .section3 {
	padding-top: 5vw;
}

.solution_page_1 .section3 .items {
	margin-top: 2vw;
	font-size: 0;
}

.solution_page_1 .section3 .item {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 6px);
	position: relative;
}

.solution_page_1 .section3 .item .img_block {
	overflow: hidden;
}

.solution_page_1 .section3 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_page_1 .section3 .item:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(168, 124, 85, 0.9);
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 1;
}

.solution_page_1 .section3 .item .txt_block {
	position: absolute;
	width: 22vw;
	height: 22vw;
	left: 50%;
	top: 50%;
	margin: -11vw 0 0 -11vw;
	text-align: center;
	border: 1px solid transparent;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 2;
}

.solution_page_1 .section3 .item i {
	display: block;
	width: 55px;
	height: 55px;
	margin: 0 auto;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_page_1 .section3 .item:nth-of-type(1) i {
	background-image: url("/template/pc/skin/img/solution/icon-5.png");
}

.solution_page_1 .section3 .item:nth-of-type(1):hover i {
	background-image: url("/template/pc/skin/img/solution/icon-5-on.png");
}

.solution_page_1 .section3 .item:nth-of-type(2) i {
	background-image: url("/template/pc/skin/img/solution/icon-6.png");
}

.solution_page_1 .section3 .item:nth-of-type(2):hover i {
	background-image: url("/template/pc/skin/img/solution/icon-6-on.png");
}

.solution_page_1 .section3 .item h3 {
	font-size: 30px;
	color: #fff;
	margin: 20px 0;
}

.solution_page_1 .section3 .item p {
	font-size: 16px;
	color: #999;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_page_1 .section3 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.solution_page_1 .section3 .item:hover:after {
	content: '';
	opacity: 1;
}

.solution_page_1 .section3 .item:hover .txt_block {
	border-color: rgba(255, 255, 255, 0.5);
}

.solution_page_1 .section3 .item:hover p {
	color: #fff;
}

@media screen and (min-width: 992px) {
	.solution_page_1 .section3 .item:nth-of-type(odd) {
		margin-right: 12px;
	}
}

.solution_page_1 .section4 {
	padding: 6vw 0;
	background-color: #f5f5f5;
}

.solution_page_1 .section4 .main {
	width: 514px;
	height: 514px;
	margin: 180px auto 90px;
	border: 1px solid #d2d2d2;
	border-radius: 50%;
	position: relative;
}

.solution_page_1 .section4 svg {
	position: absolute;
	top: -3px;
	left: -3px;
	width: calc(100% + 6px);
	height: calc(100% + 6px);
	fill: none;
	stroke: #ff8615;
	stroke-width: 4px;
	stroke-dasharray: 1602;
	stroke-dashoffset: 1281;
	stroke-linejoin: round;
	stroke-linecap: round;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_page_1 .section4 svg[data-rotate="0"] {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

.solution_page_1 .section4 svg[data-rotate="1"] {
	-webkit-transform: rotate(72deg);
	-moz-transform: rotate(72deg);
	-ms-transform: rotate(72deg);
	transform: rotate(72deg);
}

.solution_page_1 .section4 svg[data-rotate="2"] {
	-webkit-transform: rotate(144deg);
	-moz-transform: rotate(144deg);
	-ms-transform: rotate(144deg);
	transform: rotate(144deg);
}

.solution_page_1 .section4 svg[data-rotate="3"] {
	-webkit-transform: rotate(216deg);
	-moz-transform: rotate(216deg);
	-ms-transform: rotate(216deg);
	transform: rotate(216deg);
}

.solution_page_1 .section4 svg[data-rotate="4"] {
	-webkit-transform: rotate(288deg);
	-moz-transform: rotate(288deg);
	-ms-transform: rotate(288deg);
	transform: rotate(288deg);
}

.solution_page_1 .section4 .bg_box {
	position: absolute;
	width: 334px;
	height: 334px;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	overflow: hidden;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.solution_page_1 .section4 .bg_box .item {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_page_1 .section4 .bg_box .item img {
	display: block;
	width: 100%;
}

.solution_page_1 .section4 .bg_box .item.active {
	opacity: 1;
}

.solution_page_1 .section4 .icon_box span {
	position: absolute;
	width: 94px;
	height: 94px;
	margin: -47px 0 0 -47px;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border: 1px solid #bfbfbf;
	cursor: pointer;
}

.solution_page_1 .section4 .icon_box span:nth-of-type(1) {
	top: 0;
	left: 50%;
	background:#fff url("/template/pc/skin/img/jjfa/icon1.png") no-repeat center center;
}

.solution_page_1 .section4 .icon_box span:nth-of-type(1).active {
	background: #ff8615 url("/template/pc/skin/img/jjfa/icon1-on.png") no-repeat center center;
}

.solution_page_1 .section4 .icon_box span:nth-of-type(2) {
	top: 182px;
	left: 496px;
	background:#fff url("/template/pc/skin/img/jjfa/icon5.png") no-repeat center center;
}

.solution_page_1 .section4 .icon_box span:nth-of-type(2).active {
	background:#ff8615  url("/template/pc/skin/img/jjfa/icon5-on.png") no-repeat center center;
}

.solution_page_1 .section4 .icon_box span:nth-of-type(3) {
	top: 460px;
	left: 404px;
	background:#fff url("/template/pc/skin/img/jjfa/icon2.png") no-repeat center center;
}

.solution_page_1 .section4 .icon_box span:nth-of-type(3).active {
	background:#ff8615  url("/template/pc/skin/img/jjfa/icon2-on.png") no-repeat center center;
}

.solution_page_1 .section4 .icon_box span:nth-of-type(4) {
	top: 460px;
	left: 110px;
	background:#fff url("/template/pc/skin/img/jjfa/icon3.png") no-repeat center center;
}

.solution_page_1 .section4 .icon_box span:nth-of-type(4).active {
	background:#ff8615  url("/template/pc/skin/img/jjfa/icon3-on.png") no-repeat center center;
}

.solution_page_1 .section4 .icon_box span:nth-of-type(5) {
	top: 182px;
	left: 18px;
	background:#fff url("/template/pc/skin/img/jjfa/icon4.png") no-repeat center center;
}

.solution_page_1 .section4 .icon_box span:nth-of-type(5).active {
	background:#ff8615  url("/template/pc/skin/img/jjfa/icon4-on.png") no-repeat center center;
}

.solution_page_1 .section4 .icon_box span.active {
	background-color: #ff8615;
	border-color: #ff8615;
}

.solution_page_1 .section4 .txt_box .item {
	font-size: 16px;
	color: #666;
	position: absolute;
	white-space: nowrap;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.solution_page_1 .section4 .txt_box .item p {
	font-size: 12px;
	margin-top: 5px;
	display: none;
}

.solution_page_1 .section4 .txt_box .item span {
	display: block;
	color: #202020;
	margin-bottom: 5px;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.solution_page_1 .section4 .txt_box .item:nth-of-type(1) {
	text-align: center;
	top: -90px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.solution_page_1 .section4 .txt_box .item:nth-of-type(2) {
	top: 150px;
	left: 574px;
}

.solution_page_1 .section4 .txt_box .item:nth-of-type(3) {
	top: 440px;
	left: 480px;
}

.solution_page_1 .section4 .txt_box .item:nth-of-type(4) {
	text-align: right;
	top: 440px;
	right: 480px;
}

.solution_page_1 .section4 .txt_box .item:nth-of-type(5) {
	text-align: right;
	top: 150px;
	right: 574px;
}

@media screen and (min-width: 992px) {
	.solution_page_1 .section4 .txt_box .item.active {
		color: #ff8615;
	}

	.solution_page_1 .section4 .txt_box .item.active span {
		color: #ff8615;
	}
}

.solution_page_1 .section4 .info_box .item {
	max-width: 200px;
	position: absolute;
	font-size: 16px;
	color: #ff8615;
	white-space: nowrap;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.solution_page_1 .section4 .info_box .item span {
	display: block;
	font-size: 18px;
	margin-bottom: 5px;
}

.solution_page_1 .section4 .info_box .item:nth-of-type(1) {
	top: -30px;
	left: 450px;
}

.solution_page_1 .section4 .info_box .item:nth-of-type(2) {
	top: 310px;
	left: 540px;
}

.solution_page_1 .section4 .info_box .item:nth-of-type(3) {
	text-align: center;
	top: 550px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.solution_page_1 .section4 .info_box .item:nth-of-type(4) {
	text-align: right;
	top: 310px;
	right: 530px;
}

.solution_page_1 .section4 .info_box .item:nth-of-type(5) {
	text-align: right;
	top: -30px;
	right: 450px;
}

.solution_page_1 .section4 .info_box .item.active {
	opacity: 1;
}

.solution_page_1 .section5 {
	padding: 6vw 11vw 10vw;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("/template/pc/skin/img/jjfa/view-bg1.png");
}

.solution_page_1 .section5 .inner_tit2 h3 {
	color: #fff;
}

.solution_page_1 .section5 .items {
	text-align: center;
	font-size: 0;
	margin-top: 3.5vw;
}

.solution_page_1 .section5 .item {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 56px) / 3);
	background-color: #f4f4f4;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
	.solution_page_1 .section5 .item {
		margin-right: 28px;

	}

	.solution_page_1 .section5 .item:nth-of-type(3n) {
		margin-right: 0;
	}
}

.solution_page_1 .section5 .item .img_block {
	overflow: hidden;
}

.solution_page_1 .section5 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.solution_page_1 .section5 .item .txt_block {
	text-align: center;
	padding: 3vw 20px;
}

.solution_page_1 .section5 .item h3 {
	font-size: 24px;
	color: #202020;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.solution_page_1 .section5 .item p {
	font-size: 16px;
	line-height: 24px;
	color: #333;
	height: 48px;
	margin-top: 20px;
}

@media screen and (min-width: 992px) {
	.solution_page_1 .section5 .item:hover {
		background-color: #fff;
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.solution_page_1 .section5 .item:hover h3 {
	color: #ff8615;
}

.solution_page_1 .section5 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

/* case */
.case_list .null {
	display: none;
}

.case_list .filter_box {
	padding: 3vw 7.5vw;
	font-size: 0;
	background-color: #fff;
	top: 0;
	left: 96px;
	right: 0;
	z-index: 2;
}

.case_list .filter_box.fixed {
	position: fixed;
	padding: 20px 7.5vw;
	-webkit-transition: padding 0.3s ease;
	-moz-transition: padding 0.3s ease;
	-ms-transition: padding 0.3s ease;
	transition: padding 0.3s ease;
}

.case_list .filter_box span {
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	line-height: 36px;
	color: #202020;
}

.case_list .filter_box .a_block {
	float: right;
	font-size: 0;
}

.case_list .filter_box .a_block a {
	display: inline-block;
	vertical-align: top;
	padding-left: 60px;
	margin-left: 5vw;
	font-size: 15px;
	line-height: 36px;
	color: #202020;
	background-position: left center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.case_list .filter_box .a_block a:nth-of-type(1) {
	background-image: url("/template/pc/skin/img/case/icon-1.png");
}

.case_list .filter_box .a_block a:nth-of-type(1):hover,
.case_list .filter_box .a_block a:nth-of-type(1).active {
	background-image: url("/template/pc/skin/img/case/icon-1-on.png");
}

.case_list .filter_box .a_block a:nth-of-type(2) {
	background-image: url("/template/pc/skin/img/case/icon-2.png");
}

.case_list .filter_box .a_block a:nth-of-type(2):hover,
.case_list .filter_box .a_block a:nth-of-type(2).active {
	background-image: url("/template/pc/skin/img/case/icon-2-on.png");
}

.case_list .filter_box .a_block a:nth-of-type(3) {
	background-image: url("/template/pc/skin/img/case/icon-3.png");
}

.case_list .filter_box .a_block a:nth-of-type(3):hover,
.case_list .filter_box .a_block a:nth-of-type(3).active {
	background-image: url("/template/pc/skin/img/case/icon-3-on.png");
}

.case_list .filter_box .a_block a:nth-of-type(4) {
	background-image: url("/template/pc/skin/img/case/icon-4.png");
}

.case_list .filter_box .a_block a:nth-of-type(4):hover,
.case_list .filter_box .a_block a:nth-of-type(4).active {
	background-image: url("/template/pc/skin/img/case/icon-4-on.png");
}

.case_list .filter_box .a_block a:hover,
.case_list .filter_box .a_block a.active {
	color: #ff8615;
}

.case_list .section1 {
	background-color: #f4f4f4;
	padding: 6vw 7.5vw;
}

.case_list .section1 .items {
	font-size: 0;
}

.case_list .section1 .item {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 2vw) / 2);
}

@media screen and (min-width: 992px) {
	.case_list .section1 .item {
		-webkit-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
		margin: 4vw 2vw 0 0;
	}

	.case_list .section1 .item:nth-of-type(1),
	.case_list .section1 .item:nth-of-type(2) {
		margin-top: 0;
	}

	.case_list .section1 .item:nth-of-type(even) {
		margin-right: 0;
	}
}

.case_list .section1 .item .img_block {
	overflow: hidden;
}

.case_list .section1 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.case_list .section1 .item .txt_block {
	padding-top: 2vw;
}

.case_list .section1 .item .label {
	font-size: 15px;
	color: #ff8615;
}

.case_list .section1 .item h3 {
	font-size: 24px;
	color: #202020;
	margin-top: 10px;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

@media screen and (min-width: 992px) {
	.case_list .section1 .item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.case_list .section1 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.case_list .section1 .item:hover h3 {
	color: #ff8615;
}

.case_list .section1 a.load {
	display: block;
	width: 260px;
	line-height: 58px;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	color: #202020;
	background-color: #fff;
	margin: 5vw auto 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.case_list .section1 a.load:after {
	content: '';
	width: 14px;
	height: 14px;
	display: inline-block;
	vertical-align: middle;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/add.png");
	margin: -3px 0 0 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.case_list .section1 a.load:hover {
	background-color: #ff8615;
	color: #fff;
}

.case_list .section1 a.load:hover:after {
	background-image: url("/template/pc/skin/img/add-white.png");
}

.case_detail .back_box {
	padding: 2.5vw 7vw;
	background-color: #fff;
}

@media screen and (min-width: 992px) {
	.case_detail .back_box {
		position: fixed;
		top: 0;
		left: 95px;
		right: 0;
		z-index: 3;
	}
}

.case_detail .back_box a {
	font-size: 18px;
	line-height: 20px;
	color: #202020;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.case_detail .back_box a:hover {
	color: #ff8615;
}

.case_detail .detail_box {
	background-color: #f4f4f4;
	padding: 6vw 7vw;
	position: relative;
}

@media screen and (min-width: 992px) {
	.case_detail .detail_box {
		margin-top: calc(5vw + 20px);
	}
}

.case_detail .detail_box .main {
	padding: 0 6vw;
	position: relative;
	min-height: 12vw;
}

.case_detail .other_page {
	position: sticky;
	top: 30vw;
	z-index: 2;
}

.case_detail .other_page a {
	position: absolute;
	top: -12vw;
	font-size: 14px;
	color: #666;
	text-align: center;
}

.case_detail .other_page a:before {
	content: '';
	width: 48px;
	height: 48px;
	display: block;
	margin: 0 auto 10px;
	border: 1px solid #ccc;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 12px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.case_detail .other_page a.prev {
	left: 0;
}

.case_detail .other_page a.prev:before {
	background-image: url("/template/pc/skin/img/prev-1.png");
}

.case_detail .other_page a.prev:hover:before {
	background-image: url("/template/pc/skin/img/prev-2.png");
}

.case_detail .other_page a.next {
	right: 0;
}

.case_detail .other_page a.next:before {
	background-image: url("/template/pc/skin/img/next-1.png");
}

.case_detail .other_page a.next:hover:before {
	background-image: url("/template/pc/skin/img/next-2.png");
}

.case_detail .other_page a:hover:before {
	background-color: #ff8615;
}

.case_detail .title_1 {
	text-align: center;
}

.case_detail .title_1 h4 {
	font-size: 20px;
	color: #ff8615;
}

.case_detail .title_1 h3 {
	font-size: 36px;
	color: #202020;
	margin: 20px 0;
}

.case_detail .title_1 .date {
	font-size: 15px;
	color: #666;
}

.case_detail .para {
	font-size: 16px;
	line-height: 36px;
	color: #666;
	text-align: center;
}

.case_detail .para.mt {
	margin-top: 3.5vw;
}

.case_detail .slick {
	margin-top: 5vw;
	padding: 0 14.5vw;
}

.case_detail .slick .item {
	position: relative;
}

.case_detail .slick .item img {
	display: block;
	width: 100%;
}

.case_detail .slick .item span {
	position: absolute;
	bottom: 3vw;
	left: 3vw;
	right: 3vw;
	text-align: center;
	font-size: 16px;
	color: #fff;
	z-index: 2;
}

.case_detail .slick .slick-dots {
	margin-top: 2.5vw;
	text-align: center;
	font-size: 0;
}

.case_detail .slick .slick-dots li {
	display: inline-block;
	vertical-align: top;
	padding: 0 16px 20px;
	margin-right: 2px;
	opacity: .3;
	border-bottom: 2px solid transparent;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.case_detail .slick .slick-dots li:hover,
.case_detail .slick .slick-dots li.slick-active {
	opacity: 1;
	border-color: #ff8615;
}

.case_detail .slick .slick-dots button {
	background-color: transparent;
	font-size: 16px;
	font-family: 'DIN-Medium';
	color: #202020;
	cursor: pointer;
}

.case_detail .box {
	margin-top: 4vw;
}

.case_detail .box .h3_t {
	font-size: 24px;
	color: #202020;
	line-height: 36px;
	text-align: center;
}

.case_detail .box .para {
	margin-top: 2vw;
}

.case_detail .box img {
	display: block;
	max-width: 100%;
	margin: 4vw auto 0;
}

.case_detail .back_cont {
	margin-top: 5vw;
}

.case_detail .back_cont a {
	display: block;
	width: 240px;
	line-height: 52px;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	color: #202020;
	background-color: #fff;
	margin: 0 auto;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.case_detail .back_cont a:hover {
	background-color: #ff8615;
	color: #fff;
}

/* about */
.about_intro .section1 {
	background-color: #f4f4f4;
	padding: 6vw 10vw;
}

.about_intro .section1 .para {
	font-size: 16px;
	line-height: 36px;
	color: #666666;
	margin-top: 3vw;
}

.about_intro .section2 {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 6vw 10vw;
}

.about_intro .section2 .inner_tit2 h3,
.about_intro .section2 .inner_tit2 p {
	color: #fff;
}

.about_intro .section2 .items {
	font-size: 0;
	margin-top: 2.5vw;
	font-size: 0;
}

.about_intro .section2 .item {
	display: inline-block;
	vertical-align: top;
	width: calc(33.33% - 2px);
	margin: 1px;
	position: relative;
}

.about_intro .section2 .item .img_block {
	overflow: hidden;
}

.about_intro .section2 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_intro .section2 .item .txt_block {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 2;
}

.about_intro .section2 .item i {
	display: block;
	height: 54px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_intro .section2 .item:nth-of-type(1) i {
	background-image: url("/template/pc/skin/img/about/icon-1.png");
}

.about_intro .section2 .item:nth-of-type(1).slick-current i,
.about_intro .section2 .item:nth-of-type(1):hover i {
	background-image: url("/template/pc/skin/img/about/icon-1-on.png");
}

.about_intro .section2 .item:nth-of-type(2) i {
	background-image: url("/template/pc/skin/img/about/icon-2.png");
}

.about_intro .section2 .item:nth-of-type(2).slick-current i,
.about_intro .section2 .item:nth-of-type(2):hover i {
	background-image: url("/template/pc/skin/img/about/icon-2-on.png");
}

.about_intro .section2 .item:nth-of-type(3) i {
	background-image: url("/template/pc/skin/img/about/icon-3.png");
}

.about_intro .section2 .item:nth-of-type(3).slick-current i,
.about_intro .section2 .item:nth-of-type(3):hover i {
	background-image: url("/template/pc/skin/img/about/icon-3-on.png");
}

.about_intro .section2 .item:nth-of-type(4) i {
	background-image: url("/template/pc/skin/img/about/icon-4.png");
}

.about_intro .section2 .item:nth-of-type(4).slick-current i,
.about_intro .section2 .item:nth-of-type(4):hover i {
	background-image: url("/template/pc/skin/img/about/icon-4-on.png");
}

.about_intro .section2 .item:nth-of-type(5) i {
	background-image: url("/template/pc/skin/img/about/icon-5.png");
}

.about_intro .section2 .item:nth-of-type(5).slick-current i,
.about_intro .section2 .item:nth-of-type(5):hover i {
	background-image: url("/template/pc/skin/img/about/icon-5-on.png");
}

.about_intro .section2 .item:nth-of-type(6) i {
	background-image: url("/template/pc/skin/img/about/icon-6.png");
}

.about_intro .section2 .item:nth-of-type(6).slick-current i,
.about_intro .section2 .item:nth-of-type(6):hover i {
	background-image: url("/template/pc/skin/img/about/icon-6-on.png");
}

.about_intro .section2 .item h3 {
	font-size: 24px;
	color: #202020;
	margin: 20px 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_intro .section2 .item p {
	font-size: 16px;
	line-height: 24px;
	color: #666666;
	height: 48px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_intro .section2 .item:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 1;
}

.about_intro .section2 .item.slick-current:after,
.about_intro .section2 .item:hover:after {
	background-color: rgba(13, 31, 63, 0.9);
}

.about_intro .section2 .item.slick-current img,
.about_intro .section2 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.about_intro .section2 .item.slick-current h3,
.about_intro .section2 .item.slick-current p,
.about_intro .section2 .item:hover h3,
.about_intro .section2 .item:hover p {
	color: #fff;
}

.about_intro .section3 {
	background-color: #f4f4f4;
	padding: 6vw 10vw;
	position: relative;
}

@media screen and (min-width: 992px) {
	.about_intro .section3 .inner_tit2 {
		text-align: left;
	}

	.about_intro .section3 .inner_tit2:after {
		margin-left: 0;
	}
}

.about_intro .section3 .para {
	font-size: 16px;
	color: #666;
	line-height: 30px;
	margin-top: 15px;
}

.about_intro .section3 .slick {
	margin: 4vw -10vw 0;
	padding: 0 5vw 0 10vw;
	position: relative;
}

.about_intro .section3 .slick:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #d4d6d7;
	top: 58px;
}

.about_intro .section3 .line_dot:before,
.about_intro .section3 .line_dot:after {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #ff8615;
	position: absolute;
	top: 54px;
}

.about_intro .section3 .line_dot:before {
	left: 7vw;
}

.about_intro .section3 .line_dot:after {
	right: 7vw;
}

.about_intro .section3 .item {
	margin-right: 5vw;
}

.about_intro .section3 .item .date {
	font-family: 'gilroy-bold';
	font-size: 36px;
	color: #202020;
	line-height: 1;
	padding-bottom: 20px;
	border-bottom: 4px solid #ff8615;
}

.about_intro .section3 .item p {
	font-size: 16px;
	line-height: 36px;
	color: #666666;
	margin-top: 24px;
}

.about_intro .section3 .btns {
	position: absolute;
	font-size: 0;
	top: calc(6vw + 70px);
	right: 10vw;
}

.about_intro .section3 .btn {
	width: 39px;
	height: 23px;
	display: inline-block;
	vertical-align: top;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.about_intro .section3 .btn.prev {
	background-image: url("/template/pc/skin/img/about/prev.png");
}

.about_intro .section3 .btn.prev:hover {
	-webkit-transform: translateX(-5px);
	-moz-transform: translateX(-5px);
	-ms-transform: translateX(-5px);
	transform: translateX(-5px);
}

.about_intro .section3 .btn.next {
	background-image: url("/template/pc/skin/img/about/next.png");
	margin-left: 20px;
}

.about_intro .section3 .btn.next:hover {
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
	-ms-transform: translateX(5px);
	transform: translateX(5px);
}

.about_list .section1 {
	padding: 6vw 7vw;
	background-color: #f4f4f4;
}

.about_detail .back_box {
	padding: 2.5vw 7vw;
	background-color: #fff;
}

@media screen and (min-width: 992px) {
	.about_detail .back_box {
		position: fixed;
		top: 0;
		left: 95px;
		right: 0;
		z-index: 3;
	}
}

.about_detail .back_box a {
	font-size: 18px;
	color: #202020;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.about_detail .back_box a:hover {
	color: #ff8615;
}

.about_detail .cont_box {
	background-color: #f4f4f4;
	padding: 6vw 24vw 8vw;
}

@media screen and (min-width: 992px) {
	.about_detail .cont_box {
		margin-top: calc(5vw + 20px);
	}
}

.about_detail .label {
	font-size: 18px;
	color: #ff8615;
}

.about_detail .label:before {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: inline-block;
	vertical-align: middle;
	margin: -3px 26px 0 0;
}

.about_detail .info {
	margin-top: 2vw;
}

.about_detail .info h3 {
	font-size: 36px;
	color: #202020;
}

.about_detail .info h4 {
	font-size: 24px;
	color: #202020;
	margin-top: 10px;
}

.about_detail .info .p_block {
	font-size: 16px;
	line-height: 36px;
	color: #666;
	margin-top: 30px;
	overflow: hidden;
}

.about_detail .info .p_block P {
	width: 50%;
	float: left;
}

.about_detail .head_img {
	margin-top: 3.5vw;
}

.about_detail .head_img img {
	display: block;
	max-width: 100%;
}

.about_detail .intro {
	margin-top: 3.5vw;
}

.about_detail .intro h3 span {
	font-size: 30px;
	color: #202020;
	display: inline-block;
	padding-bottom: 18px;
	border-bottom: 2px solid #ff8615;
}

.about_detail .intro .para {
	margin-top: 24px;
	font-size: 16px;
	line-height: 36px;
	color: #666;
}

.about_index .section1 {
	padding: 6vw 7vw;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("/template/pc/skin/img/about/img-7.jpg");
	font-size: 0;
}

.about_index .section1 .txt_block {
	width: 55%;
	display: inline-block;
	vertical-align: middle;
	padding-right: 5vw;
}

@media screen and (min-width: 992px) {
	.about_index .section1 .txt_block .inner_tit1 {
		text-align: left;
	}

	.about_index .section1 .txt_block .inner_tit1:after {
		margin-left: 0;
	}
}

.about_index .section1 .txt_block .para {
	font-size: 16px;
	line-height: 36px;
	color: #666666;
	margin-top: 30px;
	max-width: 520px;
}

.about_index .section1 .txt_block a {
	display: block;
	width: 240px;
	line-height: 58px;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	color: #202020;
	background-color: #fff;
	margin-top: 2.5vw;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_index .section1 .txt_block a:after {
	content: '';
	width: 14px;
	height: 14px;
	display: inline-block;
	vertical-align: middle;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/add.png");
	margin: -3px 0 0 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_index .section1 .txt_block a:hover {
	background-color: #ff8615;
	color: #fff;
}

.about_index .section1 .txt_block a:hover:after {
	background-image: url("/template/pc/skin/img/add-white.png");
}

.about_index .section1 .img_block {
	width: 45%;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	overflow: hidden;
}

.about_index .section1 .img_block img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_index .section1 .img_block a {
	width: 84px;
	height: 84px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/icon-3.png");
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.about_index .section1 .img_block a:before {
	content: '';
	position: absolute;
	border-radius: 50%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #ff8615;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_index .section1 .img_block a:hover:before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.about_index .section1 .img_block:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.about_index .section2 {
	padding: 6vw 7vw;
}

.about_index .section2 .slick {
	margin-top: 2vw;
	padding: 0 5vw;
}

.about_index .section2 .slick .item {
	margin: 0 2vw;
}

@media screen and (min-width: 992px) {
	.about_index .section2 .slick .item {
		margin-top: 10px;
		-webkit-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
	}
}

.about_index .section2 .slick .item .img_block {
	/* background-color: #f4f4f4; */
	text-align: center;
	height: 200px;
}

.about_index .section2 .slick .item .img_block img {
	width: 90%;
	max-width: 90%;
	max-height: 90%;
}

.about_index .section2 .slick .item h3 {
	font-size: 20px;
	color: #222222;
	text-align: center;
	margin-top: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media screen and (min-width: 992px) {
	.about_index .section2 .slick .item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.about_index .section2 .slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -24px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #cccccc;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 12px;
	background-color: transparent;
	font-size: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.about_index .section2 .slick-arrow:hover {
	background-color: #ff8615;
	border-color: #ff8615;
}

.about_index .section2 .slick-prev {
	left: 0;
	background-image: url("/template/pc/skin/img/prev-1.png");
}

.about_index .section2 .slick-prev:hover {
	background-image: url("/template/pc/skin/img/prev-2.png");
}

.about_index .section2 .slick-next {
	right: 0;
	background-image: url("/template/pc/skin/img/next-1.png");
}

.about_index .section2 .slick-next:hover {
	background-image: url("/template/pc/skin/img/next-2.png");
}

.about_index .section3 {
	padding: 6vw 7vw;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("/template/pc/skin/img/about/img-12.jpg");
	position: relative;
}

.about_index .section3 .inner_tit2 {
	position: absolute;
	top: 6vw;
	left: 0;
	right: 0;
}

.about_index .section3 .box {
	position: relative;
}

.about_index .section3 .map_box {
	position: relative;
	width: 56vw;
	max-width: 1070px;
	margin: 0 auto;
	-webkit-transform: translateX(-4vw);
	-moz-transform: translateX(-4vw);
	-ms-transform: translateX(-4vw);
	transform: translateX(-4vw);
}

.about_index .section3 .map_box img {
	display: block;
	width: 100%;
}

.about_index .section3 .map_box .dot {
	position: absolute;
	cursor: pointer;
}

.about_index .section3 .map_box .dot span {
	font-size: 18px;
	line-height: 20px;
	padding-top: 40px;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.about_index .section3 .map_box .dot span:before {
	content: '';
	width: 21px;
	height: 28px;
	margin: 0 auto;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/about/icon-8.png");
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	-webkit-animation: scroll1 2s linear infinite;
	-moz-animation: scroll1 2s linear infinite;
	-ms-animation: scroll1 2s linear infinite;
	animation: scroll1 2s linear infinite;
}

.about_index .section3 .map_box .dot:nth-of-type(1) {
	top: 59%;
	left: 77.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(2) {
	top: 91.8%;
	left: 66.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(2) span:before {
	animation-delay: .3s;
}

.about_index .section3 .map_box .dot:nth-of-type(3) {
	top: 83.5%;
	left: 73%;
}

.about_index .section3 .map_box .dot:nth-of-type(3) span:before {
	animation-delay: .6s;
}

.about_index .section3 .map_box .dot:nth-of-type(4) {
	top: 54.7%;
	left: 61.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(4) span:before {
	animation-delay: .9s;
}

.about_index .section3 .map_box .dot:nth-of-type(5) {
	top: 25.7%;
	left: 24.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(6) {
	top: 59.7%;
	left: 82.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(7) {
	top: 82.7%;
	left: 47.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(8) {
	top: 71.7%;
	left: 75.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(9) {
	top: 71.7%;
	left: 67.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(10) {
	top: 62.7%;
	left: 71.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(11) {
	top: 52.7%;
	left: 70.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(12) {
	top: 72.7%;
	left: 58.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(13) {
	top: 62.7%;
	left: 50.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(14) {
	top: 45.7%;
	left: 67.5%;
}

.about_index .section3 .map_box .dot:nth-of-type(15) {
	top: 64.7%;
	left: 60.5%;
}

.about_index .section3 .popups {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
}

.about_index .section3 .popups .txt_block {
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	padding: 0 40px;
}

.about_index .section3 .popups .txt_block .close {
	position: absolute;
	right: -24px;
	top: -24px;
	width: 48px;
	height: 48px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/about/icon-10.png");
	cursor: pointer;
}

.about_index .section3 .popups .txt_block h3 {
	padding: 30px 0;
	border-bottom: 1px solid #d6d6d6;
	font-size: 30px;
	line-height: 36px;
	color: #202020;
	padding-left: 50px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/about/icon-9.png");
}

.about_index .section3 .popups .txt_block .info {
	padding: 30px 0 40px;
}

.about_index .section3 .popups .txt_block h4 {
	font-size: 20px;
	line-height: 24px;
	color: #222222;
	margin-bottom: 10px;
}

.about_index .section3 .popups .txt_block p {
	font-size: 16px;
	line-height: 30px;
	color: #666666;
}

.about_index .section4 {
	padding: 6vw 7vw;
	background-color: #0d1f3f;
}

@media screen and (min-width: 992px) {
	.about_index .section4 .inner_tit2 {
		text-align: left;
	}

	.about_index .section4 .inner_tit2:after {
		margin-left: 0;
	}
}

.about_index .section4 .inner_tit2 h3 {
	color: #fff;
}

.about_index .section4 .inner_tit2 p {
	color: #999;
}

.about_index .section4 .box {
	position: relative;
}

.about_index .section4 .tab_tit {
	position: absolute;
	right: 0;
	top: 60px;
	font-size: 0;
}

.about_index .section4 .tab_tit .item {
	display: inline-block;
	vertical-align: top;
	margin-left: 3vw;
	cursor: pointer;
}

.about_index .section4 .tab_tit .item i,
.about_index .section4 .tab_tit .item span {
	display: inline-block;
	vertical-align: middle;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_index .section4 .tab_tit .item i {
	width: 30px;
	height: 38px;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 16px;
}

.about_index .section4 .tab_tit .item span {
	font-size: 18px;
	color: #999;
}

.about_index .section4 .tab_tit .item:nth-of-type(1) i {
	background-image: url("/template/pc/skin/img/about/icon-11.png");
}

.about_index .section4 .tab_tit .item:nth-of-type(1):hover i,
.about_index .section4 .tab_tit .item:nth-of-type(1).active i {
	background-image: url("/template/pc/skin/img/about/icon-11-on.png");
}

.about_index .section4 .tab_tit .item:nth-of-type(2) i {
	background-image: url("/template/pc/skin/img/about/icon-12.png");
}

.about_index .section4 .tab_tit .item:nth-of-type(2):hover i,
.about_index .section4 .tab_tit .item:nth-of-type(2).active i {
	background-image: url("/template/pc/skin/img/about/icon-12-on.png");
}

.about_index .section4 .tab_tit .item:nth-of-type(3) i {
	background-image: url("/template/pc/skin/img/about/icon-13.png");
}

.about_index .section4 .tab_tit .item:nth-of-type(3):hover i,
.about_index .section4 .tab_tit .item:nth-of-type(3).active i {
	background-image: url("/template/pc/skin/img/about/icon-13-on.png");
}

.about_index .section4 .tab_tit .item:hover span,
.about_index .section4 .tab_tit .item.active span {
	color: #ff8615;
}

.about_index .section4 .tab_cont {
	margin-top: 2.5vw;
}

.about_index .section4 .tab_cont .child {
	height: 0;
	overflow: hidden;
}

.about_index .section4 .tab_cont .child.active {
	height: auto;
}

.about_index .section4 .tab_cont .slick {
	margin-right: -2vw;
}

.about_index .section4 .tab_cont .item {
	margin-right: 2vw;
}

@media screen and (min-width: 992px) {
	.about_index .section4 .tab_cont .item {
		margin-top: 10px;
		-webkit-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
	}
}

.about_index .section4 .tab_cont .item .img_block {
	position: relative;
	overflow: hidden;
}

.about_index .section4 .tab_cont .item .hide {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(13, 31, 63, 0.9);
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_index .section4 .tab_cont .item .hide:after {
	content: '';
	width: 46px;
	height: 46px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/about/icon-14.png");
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.about_index .section4 .tab_cont .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_index .section4 .tab_cont .item .txt_block {
	margin-top: 30px;
}

.about_index .section4 .tab_cont .item h3 {
	font-size: 24px;
	color: #fff;
	margin-bottom: 15px;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.about_index .section4 .tab_cont .item h4 {
	font-size: 16px;
	color: #999999;
	margin-bottom: 20px;
}

.about_index .section4 .tab_cont .item p {
	font-size: 16px;
	color: #666666;
}

@media screen and (min-width: 992px) {
	.about_index .section4 .tab_cont .item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.about_index .section4 .tab_cont .item:hover .hide {
	opacity: 1;
}

.about_index .section4 .tab_cont .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.about_index .section4 .tab_cont .item:hover h3 {
	color: #ff8615;
}

.about_index .section4 .tab_cont .ope {
	margin-top: 3vw;
	font-size: 0;
}

.about_index .section4 .tab_cont .ope span,
.about_index .section4 .tab_cont .ope .btn,
.about_index .section4 .tab_cont .ope:after {
	display: inline-block;
	vertical-align: middle;
}

.about_index .section4 .tab_cont .ope span {
	font-size: 14px;
	color: #ffffff;
	font-family: 'DINPro-Regular';
}

.about_index .section4 .tab_cont .ope span.curr {
	color: #ff8615;
}

.about_index .section4 .tab_cont .ope span.line {
	margin: 0 10px;
}

.about_index .section4 .tab_cont .ope .btn {
	width: 39px;
	height: 23px;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: 20px;
	cursor: pointer;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.about_index .section4 .tab_cont .ope .btn.prev {
	background-image: url("/template/pc/skin/img/about/prev-1.png");
}

.about_index .section4 .tab_cont .ope .btn.prev:hover {
	-webkit-transform: translateX(-5px);
	-moz-transform: translateX(-5px);
	-ms-transform: translateX(-5px);
	transform: translateX(-5px);
}

.about_index .section4 .tab_cont .ope .btn.next {
	background-image: url("/template/pc/skin/img/about/next-1.png");
}

.about_index .section4 .tab_cont .ope .btn.next:hover {
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
	-ms-transform: translateX(5px);
	transform: translateX(5px);
}

.about_index .section4 .tab_cont .ope:after {
	content: '';
	width: 50px;
	height: 1px;
	background-color: #fff;
	margin-left: 24px;
}

.about_index .section5 {
	padding: 6vw 7vw;
	background-color: #f4f4f4;
}

.about_index .section5 a.load {
	display: block;
	width: 260px;
	line-height: 58px;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	color: #202020;
	background-color: #fff;
	margin: 0 auto;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_index .section5 a.load:after {
	content: '';
	width: 14px;
	height: 14px;
	display: inline-block;
	vertical-align: middle;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/add.png");
	margin: -3px 0 0 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about_index .section5 a.load:hover {
	background-color: #ff8615;
	color: #fff;
}

.about_index .section5 a.load:hover:after {
	background-image: url("/template/pc/skin/img/add-white.png");
}

/* index */
.index_main .comm_banner .dot {
	width: 46px;
	height: 46px;
	position: absolute;
}

.index_main .comm_banner .item:nth-of-type(1) .dot:nth-of-type(1) {
	top: 11vw;
	left: 28vw;
}

.index_main .comm_banner .item:nth-of-type(1) .dot:nth-of-type(2) {
	bottom: 9vw;
	left: 24vw;
}

.index_main .comm_banner .item:nth-of-type(1) .dot:nth-of-type(3) {
	bottom: 18vw;
	left: 41vw;
}

.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(1) {
	top: 33.7vw;
	left: 27.6vw;
}

.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(2) {
	top: 27.6vw;
	left: 36.45vw;
}

.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(3) {
	top: 13.3vw;
	left: 46.25vw;
}

.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(4) {
	top: 27.86vw;
	left: 71.8vw;
}

.index_main .comm_banner .dot:after {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -3px 0 0 -3px;
}

.index_main .comm_banner .dot i {
	position: absolute;
	top: 100%;
	left: 50%;
	font-size: 14px;
	color: #fff;
	font-style: normal;
	white-space: nowrap;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_main .comm_banner .dot span {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-animation: scale 2s linear infinite;
	-moz-animation: scale 2s linear infinite;
	-ms-animation: scale 2s linear infinite;
	animation: scale 2s linear infinite;
}

.index_main .comm_banner .dot span:nth-of-type(2) {
	animation-delay: .7s;
}

.index_main .comm_banner .dot span:nth-of-type(3) {
	animation-delay: 1.4s;
}

.index_main .index_tit {
	text-align: center;
}

.index_main .index_tit h3 {
	font-size: 36px;
	color: #202020;
}

.index_main .index_tit h3 span {
	color: #ff8615;
}

.index_main .index_tit p {
	font-size: 24px;
	color: #636363;
	margin-top: 10px;
}

.index_main .index_tit .info {
	font-size: 14px;
	line-height: 28px;
	color: #999999;
	margin-top: 20px;
}

.index_main .section1 {
	padding: 6vw 7.5vw;
}

.index_main .section1 .cont {
	margin-top: 2vw;
	position: relative;
}

.index_main .section1 .map_box {
	width: 40vw;
	max-width: 718px;
	margin: 0 auto;
	position: relative;
}

.index_main .section1 .map_box img {
	display: block;
	width: 100%;
}

.index_main .section1 .map_box .dot {
	position: absolute;
	width: 88px;
	height: 88px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.index_main .section1 .map_box .dot:before {
	content: '';
	width: 16px;
	height: 16px;
	background-color: #f1e9e0;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: 2;
}

.index_main .section1 .map_box .dot:after {
	content: '';
	width: 6px;
	height: 6px;
	background-color: #ff8615;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: 3;
}

.index_main .section1 .map_box .dot span {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #ff8615;
	border-radius: 50%;
	z-index: 1;
	opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-animation: scale 2s linear infinite;
	-moz-animation: scale 2s linear infinite;
	-ms-animation: scale 2s linear infinite;
	animation: scale 2s linear infinite;
}

.index_main .section1 .map_box .dot span:nth-of-type(2) {
	animation-delay: .7s;
}

.index_main .section1 .map_box .dot span:nth-of-type(3) {
	animation-delay: 1.4s;
}

.index_main .section1 .map_box .dot:nth-of-type(1) {
	top: 38.5%;
	left: 74%;
}

.index_main .section1 .map_box .dot:nth-of-type(2) {
	top: 58.18%;
	left: 82.35%;
}

.index_main .section1 .map_box .dot:nth-of-type(3) {
	top: 56%;
	left: 62%;
}

.index_main .section1 .map_box .dot:nth-of-type(4) {
	top: 27%;
	left: 90%;
}

.index_main .section1 .map_box .dot:nth-of-type(5) {
	top: 33.44%;
	left: 85.43%;
}

.index_main .section1 .map_box .dot:nth-of-type(6) {
	top: 35.54%;
	left: 64.7%;
}

.index_main .section1 .map_box .dot:nth-of-type(7) {
	top: 47%;
	left: 67.5%;
}

.index_main .section1 .map_box .dot:nth-of-type(8) {
	top: 46%;
	left: 72.12%;
}

.index_main .section1 .map_box .dot:nth-of-type(9) {
	top: 49.65%;
	left: 77.8%;
}

.index_main .section1 .map_box .dot:nth-of-type(10) {
	top: 55.74%;
	left: 70.3%;
}

.index_main .section1 .map_box .dot:nth-of-type(11) {
	top: 62%;
	left: 85.43%;
}

.index_main .section1 .map_box .dot:nth-of-type(12) {
	top: 62.36%;
	left: 77.45%;
}

.index_main .section1 .map_box .dot:nth-of-type(13) {
	top: 64.45%;
	left: 69.18%;
}

.index_main .section1 .map_box .dot:nth-of-type(14) {
	top: 72.82%;
	left: 75.9%;
}

.index_main .section1 .map_box .dot:nth-of-type(15) {
	top: 77.52%;
	left: 80.67%;
}

.index_main .section1 .map_box .dot:nth-of-type(16) {
	top: 82.75%;
	left: 72.26%;
}

.index_main .section1 .map_box .dot:nth-of-type(17) {
	top: 88.85%;
	left: 71.7%;
}

.index_main .section1 .map_box .dot:nth-of-type(18) {
	top: 85.46%;
	left: 76.61%;
}

.index_main .section1 .map_box .dot:nth-of-type(18)::after {
	width: 9px;
	height: 9px;
}

.index_main .section1 .map_box .dot:nth-of-type(19) {
	top: 85%;
	left: 63.72%;
}

.index_main .section1 .map_box .dot:nth-of-type(20) {
	top: 32.22%;
	left: 24.92%;
}

.index_main .section1 .map_box .dot:nth-of-type(21) {
	top: 50.69%;
	left: 38.37%;
}

.index_main .section1 .map_box .dot:nth-of-type(22) {
	top: 53.13%;
	left: 53.22%;
}

.index_main .section1 .map_box .dot:nth-of-type(23) {
	top: 68.11%;
	left: 50.14%;
}

.index_main .section1 .map_box .dot:nth-of-type(24) {
	top: 82.75%;
	left: 47.9%;
}

.index_main .section1 .num_box {
	position: absolute;
	top: 2.5vw;
	left: 0;
	right: 0;
	font-size: 0;
	text-align: center;
}

.index_main .section1 .num_box .item {
	display: inline-block;
	vertical-align: top;
	width: 25%;
	max-width: 260px;
	text-align: center;
}

.index_main .section1 .num_box .item .num {
	font-size: 30px;
	font-family: 'DIN-Medium';
	color: #ff8615;
	line-height: 1;
}

.index_main .section1 .num_box .item .num span {
	font-size: 50px;
}

.index_main .section1 .num_box .item p {
	font-size: 14px;
	color: #202020;
}

.index_main .section1 a.more {
	display: block;
	margin: 3vw auto 0;
	background-color: #ff8615;
	font-size: 18px;
	line-height: 46px;
	color: #fff;
	width: 140px;
	text-align: center;
	border-radius: 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_main .section1 a.more:hover {
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

.index_main .section2 {
	padding: 6vw 7.5vw;
	background-color: #f7f7f7;
}

.index_main .section2 .comm_slick1 {
	margin-top: 3vw;
}

.index_main .section3 {
	padding: 6vw 7.5vw;
}

.index_main .section3 .slick {
	margin-top: 3.5vw;
}

.index_main .section3 .slick .item {
	position: relative;
	background-color: #f7f7f7;
}

.index_main .section3 .slick .item .txt_block {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 37.7%;
	padding: 0 6vw;
}

.index_main .section3 .slick .item .txt_block .label {
	font-size: 20px;
	color: #636363;
}

.index_main .section3 .slick .item .txt_block .label:before {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: inline-block;
	vertical-align: middle;
	margin: -3px 12px 0 0;
}

.index_main .section3 .slick .item .txt_block h3 {
	font-size: 42px;
	color: #202020;
	line-height: 60px;
	margin-top: 20px;
}

.index_main .section3 .slick .item .txt_block p {
	font-size: 18px;
	line-height: 30px;
	color: #636363;
	margin-top: 30px;
	max-height: 90px;
	overflow: hidden;
}

.index_main .section3 .slick .item .txt_block a {
	display: block;
	width: 140px;
	line-height: 48px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	background-color: #ff8615;
	border-radius: 30px;
	margin-top: 4vw;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_main .section3 .slick .item .txt_block a:hover {
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(172, 128, 82, 0.3);
}

.index_main .section3 .slick .item .img_block {
	width: 62.3%;
	margin-left: 37.7%;
}

.index_main .section3 .slick .item img {
	display: block;
	width: 100%;
}

.index_main .section3 .slick .slick-arrow {
	width: 70px;
	height: 70px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	margin-top: -35px;
	background-color: #fff;
	font-size: 0;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 2;
}

.index_main .section3 .slick .slick-arrow:hover {
	background-color: #0d1f3f;
}

.index_main .section3 .slick .slick-prev {
	left: 0;
	background-image: url("/template/pc/skin/img/index/prev-1.png");
}

.index_main .section3 .slick .slick-prev:hover {
	background-image: url("/template/pc/skin/img/index/prev-3.png");
}

.index_main .section3 .slick .slick-next {
	right: 0;
	background-image: url("/template/pc/skin/img/index/next-1.png");
}

.index_main .section3 .slick .slick-next:hover {
	background-image: url("/template/pc/skin/img/index/next-3.png");
}

.index_main .section3 .icons {
	margin-top: 3vw;
	font-size: 0;
}

.index_main .section3 .icons .item {
	display: inline-block;
	vertical-align: top;
	/* width: 10%; */
	width: calc(100%/9);
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_main .section3 .icons .item i {
	display: block;
	height: 45px;
	background-position: center;
	background-repeat: no-repeat;
}

.index_main .section3 .icons .item h3 {
	font-size: 18px;
	color: #666666;
	margin-top: 2vw;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_main .section3 .icons .item:hover,
.index_main .section3 .icons .item.active {
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.index_main .section3 .icons .item:hover h3,
.index_main .section3 .icons .item.active h3 {
	color: #ff8615;
}

.index_main .section4 {
	padding: 6vw 7.5vw;
	background-color: #f7f7f7;
}

.index_main .section4 .tab_cont {
	margin-top: 3vw;
	position: relative;
	z-index: 1;
}

.index_main .section4 .child {
	height: 0;
	overflow: hidden;
}

.index_main .section4 .child.active {
	height: auto;
}

.index_main .section4 .slick {
	position: relative;
}

.index_main .section4 .slick .item {
	position: relative;
}

.index_main .section4 .slick .item:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.index_main .section4 .slick .item .img_block {
	overflow: hidden;
}

.index_main .section4 .slick .item img {
	display: block;
	width: 100%;
}

.index_main .section4 .slick .item .txt_block {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0 6vw;
	text-align: center;
	z-index: 2;
}

.index_main .section4 .slick .item .label {
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	opacity: 0;
	-webkit-transform: translateY(-2vw);
	-moz-transform: translateY(-2vw);
	-ms-transform: translateY(-2vw);
	transform: translateY(-2vw);
	-webkit-transition: opacity 0.3s ease, transform 0.3s ease;
	-moz-transition: opacity 0.3s ease, transform 0.3s ease;
	-ms-transition: opacity 0.3s ease, transform 0.3s ease;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.index_main .section4 .slick .item h3 {
	font-size: 36px;
	line-height: 40px;
	margin-top: 20px;
	color: #fff;
	opacity: 0;
	-webkit-transform: translateY(2vw);
	-moz-transform: translateY(2vw);
	-ms-transform: translateY(2vw);
	transform: translateY(2vw);
	-webkit-transition: opacity 0.3s ease, transform 0.3s ease;
	-moz-transition: opacity 0.3s ease, transform 0.3s ease;
	-ms-transition: opacity 0.3s ease, transform 0.3s ease;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.index_main .section4 .slick .item.slick-active .label,
.index_main .section4 .slick .item.slick-active h3 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.index_main .section4 .slick .item.slick-active .label {
	transition-delay: .5s;
}

.index_main .section4 .slick .item.slick-active h3 {
	transition-delay: .8s;
}

.index_main .section4 .slick .btn {
	position: absolute;
	top: 50%;
	margin-top: -15px;
	font-size: 14px;
	color: #fff;
	line-height: 30px;
	z-index: 2;
	cursor: pointer;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.index_main .section4 .slick .btn.prev {
	left: 3.5vw;
}

.index_main .section4 .slick .btn.prev:before {
	content: '';
	width: 27px;
	height: 30px;
	margin-right: 20px;
	display: inline-block;
	vertical-align: top;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/index/prev-2.png");
}

@media screen and (min-width: 992px) {
	.index_main .section4 .slick .btn.prev:hover {
		-webkit-transform: translateX(-5px);
		-moz-transform: translateX(-5px);
		-ms-transform: translateX(-5px);
		transform: translateX(-5px);
	}
}

.index_main .section4 .slick .btn.next {
	right: 3.5vw;
}

.index_main .section4 .slick .btn.next:after {
	content: '';
	width: 27px;
	height: 30px;
	margin-left: 20px;
	display: inline-block;
	vertical-align: top;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/index/next-2.png");
}

@media screen and (min-width: 992px) {
	.index_main .section4 .slick .btn.next:hover {
		-webkit-transform: translateX(5px);
		-moz-transform: translateX(5px);
		-ms-transform: translateX(5px);
		transform: translateX(5px);
	}
}

.index_main .section4 .tab_tit {
	font-size: 0;
	text-align: center;
	margin-top: -65px;
	position: relative;
	z-index: 2;
}

.index_main .section4 .tab_tit .item {
	display: inline-block;
	vertical-align: top;
	width: 130px;
	height: 130px;
	background-color: #fff;
	margin: 0 7px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.index_main .section4 .tab_tit .item i {
	display: block;
	height: 36px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_main .section4 .tab_tit .item span {
	display: block;
	font-size: 15px;
	color: #202020;
	margin-top: 10px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_main .section4 .tab_tit .item:nth-of-type(1) i {
	background-image: url("/template/pc/skin/img/index/icon-12.png");
}

.index_main .section4 .tab_tit .item:nth-of-type(1):hover i,
.index_main .section4 .tab_tit .item:nth-of-type(1).active i {
	background-image: url("/template/pc/skin/img/index/icon-12-on.png");
}

.index_main .section4 .tab_tit .item:nth-of-type(2) i {
	background-image: url("/template/pc/skin/img/index/icon-13.png");
}

.index_main .section4 .tab_tit .item:nth-of-type(2):hover i,
.index_main .section4 .tab_tit .item:nth-of-type(2).active i {
	background-image: url("/template/pc/skin/img/index/icon-13-on.png");
}

.index_main .section4 .tab_tit .item:nth-of-type(3) i {
	background-image: url("/template/pc/skin/img/index/icon-14.png");
}

.index_main .section4 .tab_tit .item:nth-of-type(3):hover i,
.index_main .section4 .tab_tit .item:nth-of-type(3).active i {
	background-image: url("/template/pc/skin/img/index/icon-14-on.png");
}

.index_main .section4 .tab_tit .item:nth-of-type(4) i {
	background-image: url("/template/pc/skin/img/index/icon-15.png");
}

.index_main .section4 .tab_tit .item:nth-of-type(4):hover i,
.index_main .section4 .tab_tit .item:nth-of-type(4).active i {
	background-image: url("/template/pc/skin/img/index/icon-15-on.png");
}

.index_main .section4 .tab_tit .item:hover,
.index_main .section4 .tab_tit .item.active {
	background-color: #ff8615;
}

.index_main .section4 .tab_tit .item:hover span,
.index_main .section4 .tab_tit .item.active span {
	color: #fff;
}

.index_main .section5 {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 12.3vw 7.5vw;
	overflow: hidden;
}

.index_main .section5 .txt_block {
	float: left;
	width: 50%;
}

.index_main .section5 .txt_block .label {
	font-size: 14px;
	color: #999;
}

.index_main .section5 .txt_block .label:before {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: inline-block;
	vertical-align: middle;
	margin: -2px 20px 0 0;
}

.index_main .section5 .txt_block h3 {
	font-size: 36px;
	color: #222222;
	margin-top: 10px;
}

.index_main .section5 .txt_block a {
	display: inline-block;
	font-size: 14px;
	line-height: 48px;
	color: #666;
	padding-left: 70px;
	margin-top: 30px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/index/icon-1.png");
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_main .section5 .txt_block a:hover {
	background-position: 10px center;
}

.index_main .section5 .link_block {
	float: right;
	width: 450px;
	font-size: 0;
	text-align: right;
}

.index_main .section5 .link_block a {
	display: inline-block;
	vertical-align: top;
	width: 140px;
	height: 140px;
	background-color: #fff;
	color: #222;
	text-align: left;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin: 0 0 10px 10px;
}

.index_main .section5 .link_block a:hover {
	background-color: #0d1f3f;
	color: #fff;
}

.index_main .section5 .link_block .txt {
	position: absolute;
	bottom: 24px;
	left: 20px;
	right: 20px;
}

.index_main .section5 .link_block .txt i {
	display: block;
	font-style: normal;
	font-size: 16px;
	font-family: 'DIN-Medium';
}

.index_main .section5 .link_block .txt span {
	display: block;
	font-size: 15px;
	margin-top: 10px;
}

.index_main .section6 {
	padding: 7.5vw 7.5vw 0;
	background-color: #f7f7f7;
}

.index_main .section6 .box {
	font-size: 0;
	position: relative;
}

.index_main .section6 .box:before {
	content: '';
	width: 6vw;
	height: 38vw;
	display: inline-block;
	vertical-align: middle;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/index/img-13.png");
}

.index_main .section6 .img_block {
	width: 68vw;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.index_main .section6 .img_block img {
	display: block;
	width: 100%;
}

.index_main .section6 .img_block a {
	width: 84px;
	height: 84px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/icon-3.png");
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.index_main .section6 .img_block a:before {
	content: '';
	position: absolute;
	border-radius: 50%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #ff8615;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_main .section6 .img_block a:hover:before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.index_main .section6 .txt_block {
	width: 28vw;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 3vw;
	background-color: #fff;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.index_main .section6 .txt_block .label {
	font-size: 14px;
	color: #000;
}

.index_main .section6 .txt_block .label:before {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: inline-block;
	vertical-align: middle;
	margin: -2px 20px 0 0;
}

.index_main .section6 .txt_block h3 {
	font-size: 34px;
	color: #222222;
	margin: 24px 0;
}

.index_main .section6 .txt_block p {
	font-size: 15px;
	line-height: 34px;
	color: #888888;
}

.index_main .section6 .txt_block .link {
	margin-top: 24px;
	text-align: right;
}

.index_main .section6 .txt_block .link a {
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	color: #ff8615;
	position: relative;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.index_main .section6 .txt_block .link a:after {
	content: '';
	position: absolute;
	right: -15px;
	top: 4px;
	width: 7px;
	height: 12px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("/template/pc/skin/img/index/next-1.png");
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.index_main .section6 .txt_block .link a:hover {
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	-ms-transform: translateX(-20px);
	transform: translateX(-20px);
}

.index_main .section6 .txt_block .link a:hover:after {
	opacity: 1;
}

.index_main .section7 {
	padding: 6vw 7.5vw;
	background-color: #f7f7f7;
}

.index_main .section7 .items {
	font-size: 0;
	margin-top: 3.5vw;
}

.index_main .section7 .news_item {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 75px) / 4);
	margin-right: 25px;
}

@media screen and (min-width: 992px) {
	.index_main .section7 .news_item:nth-of-type(4n) {
		margin-right: 0;
	}
}

/* dazhai */
.page_dazhai .inner_tit2 h3:after,
.page_dazhai_1 .inner_tit2 h3:after,
.page_jiangxin .inner_tit2 h3:after {
	content: '';
	width: 40px;
	height: 2px;
	background-color: #ff8615;
	display: block;
	margin: 20px auto 0;
}

.page_dazhai .inner_tit2:after,
.page_dazhai_1 .inner_tit2:after,
.page_jiangxin .inner_tit2:after {
	display: none;
}

.page_dazhai .section1 {
	padding: 7vw;
	background-color: #f4f4f4;
}

.page_dazhai .section1 .label {
	font-size: 20px;
	color: #ff8615;
	text-align: center;
	margin-bottom: 20px;
}

.page_dazhai .section1 .inner_tit2 h3:after {
	display: none;
}

.page_dazhai .section1 .para {
	font-size: 18px;
	line-height: 30px;
	color: #666666;
	text-align: center;
	margin-top: 2vw;
}

.page_dazhai .section2 {
	background-color: #f4f4f4;
	padding: 0 7vw 6vw;
}

.page_dazhai .section2 .comm_slick1 {
	margin-top: 3.5vw;
}

.page_dazhai .section3 {
	padding: 6vw 7vw;
}

.page_dazhai .section3 .items {
	font-size: 0;
	text-align: center;
	margin-top: 2vw;
}

.page_dazhai .section3 .item {
	display: inline-block;
	vertical-align: top;
	width: 25%;
}

@media screen and (min-width: 992px) {
	.page_dazhai .section3 .item {
		-webkit-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
	}
}

.page_dazhai .section3 .item i {
	display: block;
	width: 150px;
	height: 150px;
	margin: 0 auto;
	border: 1px solid #dedede;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_dazhai .section3 .item:nth-of-type(1) i {
	background-image: url("/template/pc/skin/img/dazhai/icon-1.png");
}

.page_dazhai .section3 .item:nth-of-type(1):hover i {
	background-image: url("/template/pc/skin/img/dazhai/icon-1-on.png");
}

.page_dazhai .section3 .item:nth-of-type(2) i {
	background-image: url("/template/pc/skin/img/dazhai/icon-2.png");
}

.page_dazhai .section3 .item:nth-of-type(2):hover i {
	background-image: url("/template/pc/skin/img/dazhai/icon-2-on.png");
}

.page_dazhai .section3 .item:nth-of-type(3) i {
	background-image: url("/template/pc/skin/img/dazhai/icon-3.png");
}

.page_dazhai .section3 .item:nth-of-type(3):hover i {
	background-image: url("/template/pc/skin/img/dazhai/icon-3-on.png");
}

.page_dazhai .section3 .item:nth-of-type(4) i {
	background-image: url("/template/pc/skin/img/dazhai/icon-4.png");
}

.page_dazhai .section3 .item:nth-of-type(4):hover i {
	background-image: url("/template/pc/skin/img/dazhai/icon-4-on.png");
}

.page_dazhai .section3 .item h3 {
	margin-top: 24px;
	font-size: 20px;
	line-height: 26px;
	color: #202020;
}

@media screen and (min-width: 992px) {
	.page_dazhai .section3 .item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.page_dazhai .section3 .item:hover i {
	border-color: #0d1f3f;
	background-color: #0d1f3f;
}

.page_dazhai .section4 {
	background-color: #f4f4f4;
	padding: 6vw 7vw;
}

.page_dazhai .section4 .items {
	font-size: 0;
	margin-top: 3vw;
}

.page_dazhai .section4 .item {
	display: inline-block;
	vertical-align: top;
	width: 33.33%;
	position: relative;
}

.page_dazhai .section4 .item .img_block {
	overflow: hidden;
}

.page_dazhai .section4 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_dazhai .section4 .item .txt_block {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 0 30px;
	text-align: center;
}

.page_dazhai .section4 .item i {
	display: block;
	margin: 0 auto;
	width: 150px;
	height: 150px;
	border: 1px solid #ff8615;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
}

.page_dazhai .section4 .item h3 {
	font-size: 30px;
	color: #fff;
	margin: 15px 0 20px;
}

.page_dazhai .section4 .item p {
	font-size: 16px;
	color: #fff;
	opacity: .5;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_dazhai .section4 .item:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(13, 31, 63, 0.9);
	z-index: 1;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_dazhai .section4 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.page_dazhai .section4 .item:hover:after {
	opacity: 1;
}

.page_dazhai .section4 .item:hover p {
	opacity: 1;
}

.page_dazhai .section5 {
	background-color: #f4f4f4;
	padding: 0 7vw 6vw;
	font-size: 0;
}

.page_dazhai .section5 .slick {
	margin: 3vw -20px 0 0;
}

.page_dazhai .section5 .slick .item {
	display: inline-block;
	vertical-align: top;
	width: calc(20% - 24px);
	margin-right: 24px;
}

@media screen and (min-width: 992px) {
	.page_dazhai .section5 .slick .item {
		margin-top: 10px;
		-webkit-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
	}
}

.page_dazhai .section5 .slick .item .img_block {
	overflow: hidden;
}

.page_dazhai .section5 .slick .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_dazhai .section5 .slick .item .txt_block {
	padding-top: 30px;
	text-align: center;
}

.page_dazhai .section5 .slick .item h3 {
	font-size: 24px;
	color: #ff8615;
	line-height: 1;
}

.page_dazhai .section5 .slick .item p {
	font-size: 16px;
	line-height: 24px;
	color: #666666;
	margin-top: 10px;
}

@media screen and (min-width: 992px) {
	.page_dazhai .section5 .slick .item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.page_dazhai .section5 .slick .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.page_dazhai .section5 .slick-dots {
	text-align: center;
	margin-top: 2.5vw;
	font-size: 0;
	margin-right: 20px;
}

.page_dazhai .section5 .slick-dots li {
	display: inline-block;
	vertical-align: top;
	width: 14px;
	height: 14px;
	background-color: #bfbfbf;
	margin: 0 4px;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.page_dazhai .section5 .slick-dots li.slick-active {
	background-color: #ff8615;
}

.page_dazhai .section5 .slick-dots button {
	display: none;
}

.page_dazhai .section6 {
	padding: 6vw 7vw;
}

.page_dazhai .section6 .comm_slick1 {
	margin-top: 3vw;
}

.page_dazhai .section7 {
	padding: 6vw 7vw;
	background-color: #f4f4f4;
}

.page_dazhai .section7 .items {
	font-size: 0;
	margin-top: 3vw;
}

.page_dazhai .section7 .item {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 70px) / 7);
	height: calc((86vw - 166px) / 7);
	position: relative;
	text-align: center;
	background-color: #fff;
	margin: 5px;
}

.page_dazhai .section7 .item .img_block {
	height: 100%;
}

.page_dazhai .section7 .item .img_block img {
	width: auto;
	max-width: 80%;
	max-height: 80%;
}

.page_dazhai .section7 .item .txt_block {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ff8615;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_dazhai .section7 .item .txt_block span {
	font-size: 24px;
	color: #fff;
	padding: 0 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.page_dazhai .section7 .item:hover .txt_block {
	opacity: 1;
	visibility: visible;
}

.page_dazhai_1 .tit {
	text-align: center;
}

.page_dazhai_1 .tit h3 {
	font-size: 36px;
	color: #202020;
}

.page_dazhai_1 .tit h3 span {
	color: #ff8615;
}

.page_dazhai_1 .tit h4 {
	font-size: 20px;
	color: #202020;
	margin-top: 20px;
}

.page_dazhai_1 .list_num {
	text-align: center;
}

.page_dazhai_1 .list_num h3 {
	text-transform: uppercase;
	font-family: 'DINPro-Regular';
	font-size: 30px;
}

.page_dazhai_1 .list_num h3 span {
	font-size: 60px;
}

.page_dazhai_1 .list_num h3.white {
	color: #fff;
}

.page_dazhai_1 .list_num h3.color {
	color: #ff8615;
}

.page_dazhai_1 .list_num h4 {
	font-size: 30px;
	margin: 10px 0;
}

.page_dazhai_1 .list_num h4.white {
	color: #fff;
}

.page_dazhai_1 .list_num h4.color {
	color: #202020;
}

.page_dazhai_1 .list_num h4.color span {
	color: #ff8615;
}

.page_dazhai_1 .list_num h5 {
	font-size: 20px;
}

.page_dazhai_1 .list_num h5.white {
	color: #fff;
}

.page_dazhai_1 .list_num h5.color {
	color: #202020;
}

.page_dazhai_1 .list_num p {
	font-size: 20px;
	color: #636363;
	margin-top: 1.5vw;
}

.page_dazhai_1 .section1 {
	padding: 6vw 7vw;
	background-color: #f4f4f4;
}

.page_dazhai_1 .section1 .para {
	font-size: 18px;
	line-height: 30px;
	color: #666666;
	text-align: center;
	margin: 2.5vw 0;
}

.page_dazhai_1 .section1 .items {
	font-size: 0;
}

.page_dazhai_1 .section1 .item {
	position: relative;
	background-color: #fff;
}

.page_dazhai_1 .section1 .item .img_block {
	width: 50%;
	overflow: hidden;
}

.page_dazhai_1 .section1 .item .txt_block {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
	text-align: center;
	padding: 0 3vw;
	-webkit-transition: background 0.3s ease;
	-moz-transition: background 0.3s ease;
	-ms-transition: background 0.3s ease;
	transition: background 0.3s ease;
}

.page_dazhai_1 .section1 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_dazhai_1 .section1 .item h3 {
	font-size: 24px;
	color: #202020;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.page_dazhai_1 .section1 .item p {
	font-size: 18px;
	line-height: 30px;
	color: #666666;
	margin: 20px 0;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.page_dazhai_1 .section1 .item span {
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 4px;
	background-color: #ff8615;
	-webkit-transition: background 0.3s ease;
	-moz-transition: background 0.3s ease;
	-ms-transition: background 0.3s ease;
	transition: background 0.3s ease;
}

.page_dazhai_1 .section1 .item:nth-of-type(1) .img_block {
	margin-left: 50%;
}

.page_dazhai_1 .section1 .item:nth-of-type(1) .txt_block {
	left: 0;
}

.page_dazhai_1 .section1 .item:nth-of-type(2) .txt_block {
	left: 50%;
}

.page_dazhai_1 .section1 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.page_dazhai_1 .section1 .item:hover .txt_block {
	background-color: #ff8615;
}

.page_dazhai_1 .section1 .item:hover h3,
.page_dazhai_1 .section1 .item:hover p {
	color: #fff;
}

.page_dazhai_1 .section1 .item:hover span {
	background-color: #fff;
}

.page_dazhai_1 .section2 {
	padding: 6vw 7vw;
}

.page_dazhai_1 .section2 .img_block {
	margin: 20px auto 0;
	width: 46vw;
	max-width: 798px;
}

.page_dazhai_1 .section2 .img_block img {
	display: block;
	width: 100%;
}

.page_dazhai_1 .section3 {
	background-color: #f4f4f4;
}

.page_dazhai_1 .section3 .list_num {
	padding: 3vw 0;
}

.page_dazhai_1 .section3 .items {
	font-size: 0;
}

.page_dazhai_1 .section3 .item {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	position: relative;
}

.page_dazhai_1 .section3 .item .img_block {
	overflow: hidden;
}

.page_dazhai_1 .section3 .item img {
	display: block;
	width: 100%;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.page_dazhai_1 .section3 .item .txt_block {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	text-align: center;
	z-index: 2;
}

.page_dazhai_1 .section3 .item h3 {
	font-size: 24px;
	color: #fff;
}

.page_dazhai_1 .section3 .item p {
	font-size: 18px;
	line-height: 24px;
	height: 48px;
	color: #fff;
	margin-top: 10px;
	opacity: .5;
}

.page_dazhai_1 .section3 .item:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 30%;
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	background: -o-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	z-index: 1;
}

.page_dazhai_1 .section3 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.page_dazhai_1 .section4 {
	position: relative;
	overflow: hidden;
}

.page_dazhai_1 .section4 img {
	display: block;
	width: 100%;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.page_dazhai_1 .section4 .list_num {
	position: absolute;
	left: 0;
	right: 0;
	top: 3vw;
	z-index: 2;
}

.page_dazhai_1 .section4:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.page_dazhai_1 .section6 {
	padding: 6vw 7vw;
}

.page_dazhai_1 .section6 .comm_slick1 {
	margin-top: 3vw;
}

/* jiangxin */
.page_jiangxin .section1 {
	background-color: #f4f4f4;
	padding: 6vw 7vw;
}

.page_jiangxin .section1 .items {
	font-size: 0;
	margin-top: 4vw;
}

.page_jiangxin .section1 .item {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	position: relative;
}

.page_jiangxin .section1 .item .img_block {
	width: 50%;
	overflow: hidden;
}

.page_jiangxin .section1 .item .txt_block {
	width: 50%;
	background-color: #fff;
	padding: 2.5vw;
	position: absolute;
	top: 0;
	bottom: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_jiangxin .section1 .item .txt_block:after {
	content: '';
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_jiangxin .section1 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_jiangxin .section1 .item span {
	display: block;
	font-size: 60px;
	line-height: 1;
	color: #ff8615;
	font-family: 'DIN-Medium';
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_jiangxin .section1 .item h3 {
	font-size: 24px;
	color: #202020;
	margin: 24px 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_jiangxin .section1 .item p {
	font-size: 16px;
	line-height: 24px;
	color: #666666;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_jiangxin .section1 .item i {
	width: 2.6vw;
	height: 2.6vw;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 2.5vw;
	bottom: 2vw;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_jiangxin .section1 .item:nth-of-type(1) i {
	background-image: url("/template/pc/skin/img/jiangxin/icon-1.png");
}

.page_jiangxin .section1 .item:nth-of-type(1):hover i {
	background-image: url("/template/pc/skin/img/jiangxin/icon-1-on.png");
}

.page_jiangxin .section1 .item:nth-of-type(2) i {
	background-image: url("/template/pc/skin/img/jiangxin/icon-2.png");
}

.page_jiangxin .section1 .item:nth-of-type(2):hover i {
	background-image: url("/template/pc/skin/img/jiangxin/icon-2-on.png");
}

.page_jiangxin .section1 .item:nth-of-type(3) i {
	background-image: url("/template/pc/skin/img/jiangxin/icon-3.png");
}

.page_jiangxin .section1 .item:nth-of-type(3):hover i {
	background-image: url("/template/pc/skin/img/jiangxin/icon-3-on.png");
}

.page_jiangxin .section1 .item:nth-of-type(4) i {
	background-image: url("/template/pc/skin/img/jiangxin/icon-4.png");
}

.page_jiangxin .section1 .item:nth-of-type(4):hover i {
	background-image: url("/template/pc/skin/img/jiangxin/icon-4-on.png");
}

@media screen and (min-width: 992px) {
	.page_jiangxin .section1 .item:hover .txt_block {
		background-color: #ff8615;
	}

	.page_jiangxin .section1 .item:hover .txt_block:after {
		opacity: 1;
	}

	.page_jiangxin .section1 .item:hover img {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

	.page_jiangxin .section1 .item:hover span,
	.page_jiangxin .section1 .item:hover h3,
	.page_jiangxin .section1 .item:hover p {
		color: #fff;
	}

	.page_jiangxin .section1 .item:nth-of-type(1) .txt_block,
	.page_jiangxin .section1 .item:nth-of-type(2) .txt_block {
		right: 0;
	}

	.page_jiangxin .section1 .item:nth-of-type(1) .txt_block:after,
	.page_jiangxin .section1 .item:nth-of-type(2) .txt_block:after {
		right: 100%;
		border-right: 10px solid #ff8615;
	}

	.page_jiangxin .section1 .item:nth-of-type(3) .img_block,
	.page_jiangxin .section1 .item:nth-of-type(4) .img_block {
		margin-left: 50%;
	}

	.page_jiangxin .section1 .item:nth-of-type(3) .txt_block,
	.page_jiangxin .section1 .item:nth-of-type(4) .txt_block {
		left: 0;
	}

	.page_jiangxin .section1 .item:nth-of-type(3) .txt_block:after,
	.page_jiangxin .section1 .item:nth-of-type(4) .txt_block:after {
		left: 100%;
		border-left: 10px solid #ff8615;
	}
}

.page_jiangxin .section2 {
	background-color: #f4f4f4;
	padding: 0 7vw 6vw;
}

.page_jiangxin .section2 .items {
	font-size: 0;
	margin-top: 4vw;
}

.page_jiangxin .section2 .item {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 60px) / 4);
	text-align: center;
	margin-right: 20px;
}

@media screen and (min-width: 992px) {
	.page_jiangxin .section2 .item {
		-webkit-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
	}
}

.page_jiangxin .section2 .item:nth-of-type(4n) {
	margin-right: 0;
}

.page_jiangxin .section2 .item .img_block {
	overflow: hidden;
}

.page_jiangxin .section2 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_jiangxin .section2 .item h3 {
	margin: 40px 0 15px;
	font-size: 24px;
	color: #202020;
}

.page_jiangxin .section2 .item p {
	font-size: 17px;
	line-height: 24px;
	color: #666666;
}

@media screen and (min-width: 992px) {
	.page_jiangxin .section2 .item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.page_jiangxin .section2 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.page_jiangxin .section3 {
	padding: 6vw 7vw;
}

.page_jiangxin .section3 .items {
	font-size: 0;
	margin-top: 4vw;
}

.page_jiangxin .section3 .item {
	display: inline-block;
	vertical-align: top;
	width: 20%;
	text-align: center;
}

@media screen and (min-width: 992px) {
	.page_jiangxin .section3 .item {
		-webkit-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
	}
}

.page_jiangxin .section3 .item i {
	display: block;
	margin: 0 auto;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 1px solid #dcdcdc;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_jiangxin .section3 .item:nth-of-type(1) i {
	background-image: url("/template/pc/skin/img/jiangxin/icon-5.png");
}

.page_jiangxin .section3 .item:nth-of-type(1):hover i {
	background-image: url("/template/pc/skin/img/jiangxin/icon-5-on.png");
}

.page_jiangxin .section3 .item:nth-of-type(2) i {
	background-image: url("/template/pc/skin/img/jiangxin/fc.png");
}

.page_jiangxin .section3 .item:nth-of-type(2):hover i {
	background-image: url("/template/pc/skin/img/jiangxin/fc-on.png");
}

.page_jiangxin .section3 .item:nth-of-type(3) i {
	background-image: url("/template/pc/skin/img/jiangxin/xc.png");
}

.page_jiangxin .section3 .item:nth-of-type(3):hover i {
	background-image: url("/template/pc/skin/img/jiangxin/xc-on.png");
}

.page_jiangxin .section3 .item:nth-of-type(4) i {
	background-image: url("/template/pc/skin/img/jiangxin/zl.png");
}

.page_jiangxin .section3 .item:nth-of-type(4):hover i {
	background-image: url("/template/pc/skin/img/jiangxin/zl-on.png");
}

.page_jiangxin .section3 .item:nth-of-type(5) i {
	background-image: url("/template/pc/skin/img/jiangxin/gq.png");
}

.page_jiangxin .section3 .item:nth-of-type(5):hover i {
	background-image: url("/template/pc/skin/img/jiangxin/gq-on.png");
}

.page_jiangxin .section3 .item h3 {
	margin: 24px 0;
	font-size: 20px;
	color: #202020;
}

.page_jiangxin .section3 .item p {
	font-size: 16px;
	line-height: 24px;
	color: #666666;
}

@media screen and (min-width: 992px) {
	.page_jiangxin .section3 .item:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.page_jiangxin .section3 .item:hover i {
	background-color: #ff8615;
	border-color: #ff8615;
}

.page_jiangxin .section4 {
	background-color: #f4f4f4;
	padding: 6vw 7vw;
}

.page_jiangxin .section4 .cont {
	background-color: #fff;
	margin-top: 4vw;
	position: relative;
}

.page_jiangxin .section4 .left_box {
	width: 30%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.page_jiangxin .section4 .right_box {
	width: 70%;
	margin-left: 30%;
	padding: 4vw 0.5vw;
}

.page_jiangxin .section4 .right_box .img {
	display: none;
}

.page_jiangxin .section4 .right_box img {
	display: block;
	width: 100%;
	/* max-width: 960px; */
	margin: 0 auto;
}

.page_jiangxin .section4 .tab_tit {
	font-size: 0;
}

.page_jiangxin .section4 .tab_tit span {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	text-align: center;
	font-size: 20px;
	color: #202020;
	line-height: 5.5vw;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.page_jiangxin .section4 .tab_tit span:not(.active):hover {
	color: #ff8615;
}

.page_jiangxin .section4 .tab_tit span.active {
	color: #fff;
	background-color: #ff8615;
}

.page_jiangxin .section4 .tab_cont {
	padding: 5vw 4vw;
}

.page_jiangxin .section4 .tab_cont h3 {
	font-size: 20px;
	line-height: 36px;
	color: #202020;
	padding-left: 54px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/jiangxin/icon-10.png");
}

.page_jiangxin .section4 .tab_cont h4 {
	margin: 2.5vw 0;
	padding-top: 2.5vw;
	border-top: 1px solid #dcdcdc;
	font-size: 20px;
	color: #202020;
}

.page_jiangxin .section4 .tab_cont span {
	color: #ff8615;
}

.page_jiangxin .section4 .tab_cont p {
	font-size: 16px;
	line-height: 30px;
	color: #202020;
}

.page_jiangxin .section5 {
	padding: 6vw 7vw;
}

.page_jiangxin .section5 .cont {
	margin-top: 4vw;
}

.page_jiangxin .section5 .slick {
	margin-right: -7vw;
}

.page_jiangxin .section5 .item {
	margin-right: 30px;
}

.page_jiangxin .section5 .item a {
	display: block;
	position: relative;
}

.page_jiangxin .section5 .item a:after {
	content: '';
	position: absolute;
	top: 60%;
	left: 0;
	right: 0;
	bottom: 0;
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	background: -o-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
	z-index: 1;
}

.page_jiangxin .section5 .item .img_block {
	overflow: hidden;
}

.page_jiangxin .section5 .item img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_jiangxin .section5 .item .txt_block {
	position: absolute;
	bottom: 3vw;
	left: 3vw;
	right: 3vw;
	font-size: 0;
	z-index: 2;
}

.page_jiangxin .section5 .item .txt_block h3,
.page_jiangxin .section5 .item .txt_block span {
	display: inline-block;
	vertical-align: middle;
}

.page_jiangxin .section5 .item .txt_block h3 {
	font-size: 20px;
	color: #fff;
	line-height: 26px;
	width: calc(100% - 46px);
	padding-right: 20px;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.page_jiangxin .section5 .item .txt_block span {
	width: 46px;
	height: 46px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/jiangxin/icon-11.png");
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: .5;
}

.page_jiangxin .section5 .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.page_jiangxin .section5 .item:hover h3 {
	color: #ff8615;
}

.page_jiangxin .section5 .item:hover span {
	opacity: 1;
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
	-ms-transform: translateX(5px);
	transform: translateX(5px);
}

.page_jiangxin .section5 .ope {
	margin-top: 3vw;
	font-size: 0;
}

.page_jiangxin .section5 .ope span,
.page_jiangxin .section5 .ope .btn,
.page_jiangxin .section5 .ope:after {
	display: inline-block;
	vertical-align: middle;
}

.page_jiangxin .section5 .ope span {
	font-size: 14px;
	color: #000000;
	font-family: 'DINPro-Regular';
}

.page_jiangxin .section5 .ope span.curr {
	color: #ff8615;
}

.page_jiangxin .section5 .ope span.line {
	margin: 0 10px;
}

.page_jiangxin .section5 .ope .btn {
	width: 39px;
	height: 23px;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: 20px;
	cursor: pointer;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.page_jiangxin .section5 .ope .btn.prev {
	background-image: url("/template/pc/skin/img/about/prev.png");
}

.page_jiangxin .section5 .ope .btn.prev:hover {
	-webkit-transform: translateX(-5px);
	-moz-transform: translateX(-5px);
	-ms-transform: translateX(-5px);
	transform: translateX(-5px);
}

.page_jiangxin .section5 .ope .btn.next {
	background-image: url("/template/pc/skin/img/about/next.png");
}

.page_jiangxin .section5 .ope .btn.next:hover {
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
	-ms-transform: translateX(5px);
	transform: translateX(5px);
}

.page_jiangxin .section5 .ope:after {
	content: '';
	width: 50px;
	height: 1px;
	background-color: #e5e5e5;
	margin-left: 24px;
}

/* system */
.page_system .section1 {
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.page_system .section1 .cont {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.page_system .section1 h3.tit {
	font-size: 60px;
	text-align: center;
	color: #fff;
}

.page_system .section1 p.tit {
	font-size: 24px;
	text-align: center;
	color: #fff;
}

.page_system .section1 .main {
	width: 107vh;
	max-width: 1153px;
	margin: 12vh auto 8vh;
	position: relative;
}

.page_system .section1 .main img {
	display: block;
	width: 100%;
}

.page_system .section1 .dot {
	width: 74px;
	height: 82px;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.page_system .section1 .dot .icon {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/system/icon-c.png");
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_system .section1 .dot .icon i {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_system .section1 .dot span {
	position: absolute;
	top: 100%;
	padding-top: 20px;
	font-size: 20px;
	color: #fff;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap;
}

.page_system .section1 .dot:nth-of-type(1) {
	top: 11.55%;
	left: 0;
}

.page_system .section1 .dot:nth-of-type(1) .icon i {
	background-image: url("/template/pc/skin/img/system/icon-4.png");
}

.page_system .section1 .dot:nth-of-type(1):hover .icon i {
	background-image: url("/template/pc/skin/img/system/icon-4-on.png");
}

.page_system .section1 .dot:nth-of-type(2) {
	top: 32.5%;
	left: 16.528%;
}

.page_system .section1 .dot:nth-of-type(2) .icon i {
	background-image: url("/template/pc/skin/img/system/icon-1.png");
}

.page_system .section1 .dot:nth-of-type(2):hover .icon i {
	background-image: url("/template/pc/skin/img/system/icon-1-on.png");
}

.page_system .section1 .dot:nth-of-type(3) {
	top: 6.13%;
	left: 38%;
}

.page_system .section1 .dot:nth-of-type(3) .icon i {
	background-image: url("/template/pc/skin/img/system/icon-18.png");
}

.page_system .section1 .dot:nth-of-type(3):hover .icon i {
	background-image: url("/template/pc/skin/img/system/icon-18-on.png");
}

.page_system .section1 .dot:nth-of-type(4) {
	top: 31.22%;
	left: 55.6%;
}

.page_system .section1 .dot:nth-of-type(4) .icon i {
	background-image: url("/template/pc/skin/img/system/icon-16.png");
}

.page_system .section1 .dot:nth-of-type(4):hover .icon i {
	background-image: url("/template/pc/skin/img/system/icon-16-on.png");
}

.page_system .section1 .dot:nth-of-type(5) {
	top: 0;
	left: 79.53%;
}

.page_system .section1 .dot:nth-of-type(5) .icon i {
	background-image: url("/template/pc/skin/img/system/icon-10.png");
}

.page_system .section1 .dot:nth-of-type(5):hover .icon i {
	background-image: url("/template/pc/skin/img/system/icon-10-on.png");
}

.page_system .section1 .dot:nth-of-type(6) {
	top: 27.07%;
	left: 100%;
}

.page_system .section1 .dot:nth-of-type(6) .icon i {
	background-image: url("/template/pc/skin/img/system/icon-9.png");
}

.page_system .section1 .dot:nth-of-type(6):hover .icon i {
	background-image: url("/template/pc/skin/img/system/icon-9-on.png");
}

.page_system .section1 .dot:nth-of-type(7) {
	top: 57.76%;
	left: 37.9%;
}

.page_system .section1 .dot:nth-of-type(7) .icon i {
	background-image: url("/template/pc/skin/img/system/icon-2.png");
}

.page_system .section1 .dot:nth-of-type(7):hover .icon i {
	background-image: url("/template/pc/skin/img/system/icon-2-on.png");
}

.page_system .section1 .dot:nth-of-type(8) {
	top: 55.95%;
	left: 79.53%;
}

.page_system .section1 .dot:nth-of-type(8) .icon i {
	background-image: url("/template/pc/skin/img/system/icon-17.png");
}

.page_system .section1 .dot:nth-of-type(8):hover .icon i {
	background-image: url("/template/pc/skin/img/system/icon-17-on.png");
}

.page_system .section1 .dot:nth-of-type(9) {
	top: 87.9%;
	left: 16.91%;
}

.page_system .section1 .dot:nth-of-type(9) .icon i {
	background-image: url("/template/pc/skin/img/system/icon-3.png");
}

.page_system .section1 .dot:nth-of-type(9):hover .icon i {
	background-image: url("/template/pc/skin/img/system/icon-3-on.png");
}

.page_system .section1 .dot:nth-of-type(10) {
	top: 100%;
	left: 64.353%;
}

.page_system .section1 .dot:nth-of-type(10) .icon i {
	background-image: url("/template/pc/skin/img/system/icon-7.png");
}

.page_system .section1 .dot:nth-of-type(10):hover .icon i {
	background-image: url("/template/pc/skin/img/system/icon-7-on.png");
}

.page_system .section1 .dot:hover .icon {
	background-image: url("/template/pc/skin/img/system/icon-c-on.png");
}

.page_system .popups {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 12;
	background-color: #f7f7f7;
	opacity: 0;
	visibility: hidden;
}

.page_system .popups.active {
	opacity: 1;
	visibility: visible;
}

.page_system .popups .close {
	position: absolute;
	top: 2.5vw;
	right: 2.5vw;
	width: 46px;
	height: 46px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("/template/pc/skin/img/close.png");
	cursor: pointer;
	z-index: 3;
}

.page_system .popups .slick .item {
	height: 100vh;
	position: relative;
	background-color: #f7f7f7;
}

.page_system .popups .slick .item .bg {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	opacity: .05;
}

.page_system .popups .slick .item .txt_block {
	position: absolute;
	width: 60%;
	max-width: 860px;
	margin: 0 auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.page_system .popups .slick .item i {
	display: block;
	margin: 0 auto;
	width: 74px;
	height: 74px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.page_system .popups .slick .item h3 {
	text-align: center;
	font-size: 36px;
	color: #202020;
	margin-top: 10px;
}

.page_system .popups .slick .item .para {
	margin-top: 6vh;
}

.page_system .popups .slick .item h4 {
	font-size: 24px;
	color: #202020;
}

.page_system .popups .slick .item p {
	font-size: 16px;
	line-height: 36px;
	color: #666666;
	height: 216px;
	overflow: auto;
	padding-right: 20px;
	margin-right: -20px;
	margin-top: 10px;
}

.page_system .popups .slick .item .logo {
	margin-top: 6vh;
}

.page_system .popups .slick .item .logo .s_logos {
	margin-top: 2vw;
}

.page_system .popups .slick .item .logo .s_logo {
	margin-top: 10px;
	margin-right: 36px;
	text-align: center;
}

@media screen and (min-width: 992px) {
	.page_system .popups .slick .item .logo .s_logo {
		-webkit-transition: transform 0.3s ease;
		-moz-transition: transform 0.3s ease;
		-ms-transition: transform 0.3s ease;
		transition: transform 0.3s ease;
	}
}

.page_system .popups .slick .item .logo .s_logo .lo {
	height: 74px;
	background-color: #fff;
	border-radius: 10px;
}

.page_system .popups .slick .item .logo .s_logo .lo img {
	max-width: 80%;
	max-height: 80%;
	width: auto;
}

.page_system .popups .slick .item .logo .s_logo span {
	font-size: 20px;
	color: #202020;
	margin-top: 20px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
	.page_system .popups .slick .item .logo .s_logo:hover {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

.page_system .popups .slick .item .logo .s_logo:hover span {
	color: #ff8615;
}

.page_system .popups .slick .item .slick-dots {
	text-align: center;
	margin-top: 2.5vw;
	font-size: 0;
	margin-right: 20px;
}

.page_system .popups .slick .item .slick-dots li {
	display: inline-block;
	vertical-align: top;
	width: 14px;
	height: 14px;
	background-color: #fff;
	margin: 0 4px;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.page_system .popups .slick .item .slick-dots li.slick-active {
	background-color: #ff8615;
}

.page_system .popups .slick .item .slick-dots button {
	display: none;
}

.page_system .popups .btns {
	position: absolute;
	left: calc(50% + 540px);
	top: 37vh;
	z-index: 2;
}

.page_system .popups .btns .btn {
	width: 46px;
	height: 46px;
	cursor: pointer;
	position: relative;
}

.page_system .popups .btns .btn i {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #cececb;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 12px;
	background-color: transparent;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_system .popups .btns .btn .tit {
	position: absolute;
	left: 100%;
	padding-left: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	white-space: nowrap;
	font-size: 12px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page_system .popups .btns .btn .tit span {
	display: block;
	color: #ff8615;
}

.page_system .popups .btns .btn:hover i {
	background-color: #ff8615;
}

.page_system .popups .btns .btn:hover .tit {
	visibility: visible;
	opacity: 1;
}

.page_system .popups .btns .prev i {
	background-image: url("/template/pc/skin/img/prev-1.png");
}

.page_system .popups .btns .prev:hover i {
	background-image: url("/template/pc/skin/img/prev-2.png");
}

.page_system .popups .btns .next {
	margin-top: 20px;
}

.page_system .popups .btns .next i {
	background-image: url("/template/pc/skin/img/next-1.png");
}

.page_system .popups .btns .next:hover i {
	background-image: url("/template/pc/skin/img/next-2.png");
}

.page_system .section2 .inner_tit2 {
	padding: 3.5vw 0;
}

.page_system .section2 .inner_tit2 span {
	color: #ff8615;
}

.page_system .section2 .inner_tit2:after {
	display: none;
}

.page_system .section2 .items {
	font-size: 0;
}

.page_system .section2 .item {
	display: inline-block;
	vertical-align: top;
	width: 33.33%;
}

.page_system .section2 .item a {
	display: block;
	position: relative;
}

.page_system .section2 .item a:after {
	content: '';
	position: absolute;
	top: 60%;
	left: 0;
	right: 0;
	bottom: 0;
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
	background: -o-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
	z-index: 1;
}

@media screen and (min-width: 992px) {
	.page_system .section2 .item a:after {
		opacity: .5;
		-webkit-transition: opacity 0.3s ease;
		-moz-transition: opacity 0.3s ease;
		-ms-transition: opacity 0.3s ease;
		transition: opacity 0.3s ease;
	}
}

.page_system .section2 .item .img_block {
	overflow: hidden;
}

.page_system .section2 .item img {
	display: block;
	width: 100%;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.page_system .section2 .item .txt_block {
	position: absolute;
	left: 2.5vw;
	right: 2.5vw;
	bottom: 2.5vw;
	z-index: 2;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.page_system .section2 .item .txt_block:before {
	content: '';
	width: 32px;
	height: 2px;
	background-color: #ff8615;
	display: block;
}

.page_system .section2 .item h3 {
	font-size: 24px;
	color: #fff;
	margin-top: 24px;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

@media screen and (min-width: 992px) {
	.page_system .section2 .item:hover a:after {
		opacity: 1;
	}

	.page_system .section2 .item:hover .txt_block {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	.page_system .section2 .item:hover img {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

	.page_system .section2 .item:hover h3 {
		color: #ff8615;
	}
}

.system_detail {
	background-color: #f4f4f4;
}

.system_detail .section1 .item {
	position: relative;
}

.system_detail .section1 .item img.img {
	display: block;
	width: 100%;
}

.system_detail .section1 .item .txt {
	position: absolute;
	top: 50%;
	left: 15vw;
	right: 15vw;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.system_detail .section1 .item .txt .logo img {
	height: 25px;
	display: block;
}

.system_detail .section1 .item .txt h3 {
	font-size: 36px;
	line-height: 1;
	color: #fff;
	margin-top: 21px;
}

.system_detail .section1 .slick-arrow {
	width: 46px;
	height: 46px;
	border: 1px solid #cececb;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 12px;
	background-color: #23231e;
	position: absolute;
	top: 46%;
	font-size: 0;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 2;
}

.system_detail .section1 .slick-arrow:hover {
	border-color: #ff8615;
	background-color: #ff8615;
}

.system_detail .section1 .slick-prev {
	background-image: url("/template/pc/skin/img/prev-2.png");
	left: 7vw;
}

.system_detail .section1 .slick-next {
	background-image: url("/template/pc/skin/img/next-2.png");
	right: 7vw;
}

.system_detail .section2 {
	padding: 4vw 7vw 5vw;
}

.system_detail .section2 .label {
	text-align: center;
	font-size: 15px;
	color: #ff8615;
}

.system_detail .section2 img.logo {
	display: block;
	margin: 0 auto;
	max-height: 50px;
	margin-top: 2vw;
}

.system_detail .section2 .para {
	font-size: 16px;
	line-height: 36px;
	color: #666666;
	text-align: center;
	max-width: 100%;
	margin: 0 auto;
	margin-top: 2vw;
}
.system_detail .section2 .para p img{
	max-width: 100%;
}
.system_detail .section3 h3 {
	font-size: 24px;
	color: #202020;
	text-align: center;
}

.system_detail .section3 h3.line:after {
	content: '';
	width: 90px;
	height: 2px;
	background-color: #ff8615;
	display: block;
	margin: 15px auto 0;
}

.system_detail .section3 .tab_wrap {
	margin-top: 2vw;
}

.system_detail .section3 .tab_tit {
	font-size: 0;
	text-align: center;
}

.system_detail .section3 .tab_tit span {
	display: inline-block;
	vertical-align: top;
	width: 140px;
	line-height: 48px;
	border-radius: 30px;
	border: 1px solid #dcdcdc;
	font-size: 18px;
	color: #202020;
	margin: 0 15px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.system_detail .section3 .tab_tit span:hover,
.system_detail .section3 .tab_tit span.active {
	background-color: #ff8615;
	border-color: #ff8615;
	color: #fff;
}

.system_detail .section3 .tab_cont {
	margin-top: 2vw;
}

.system_detail .section3 .tab_cont .child {
	display: none;
}

.system_detail .section3 .tab_cont p {
	font-size: 16px;
	line-height: 30px;
	color: #666666;
	text-align: center;
	max-width: 100%;
	margin: 0 auto;
	margin-top: 0.5vw;
}
.system_detail .section3 .tab_cont p img{
	width:100%;
}
.system_detail .section3 .slicks {
	margin-top: 3vw;
}

.system_detail .section3 .slick {
	overflow: hidden;
	height: 0;
}

.system_detail .section3 .slick.active {
	height: auto;
}

.system_detail .section3 .items {
	margin-right: -4vw;
}

.system_detail .section3 .items .item {
	margin-right: 4vw;
	background-color: #e8e8e8;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.system_detail .section3 .items .item .img_block {
	height: 26vw;
	text-align: center;
}

.system_detail .section3 .items .item .img_block img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.system_detail .section3 .items .item .txt_block {
	padding: 0 3vw 3vw;
}

.system_detail .section3 .items .item .txt_block:before {
	content: '';
	width: 45px;
	height: 2px;
	background-color: #ff8615;
	display: block;
}

.system_detail .section3 .items .item h3 {
	margin: 20px 0;
	text-align: left;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.system_detail .section3 .items .item p {
	font-size: 16px;
	line-height: 30px;
	color: #666;
	height: 90px;
	overflow: hidden;
}

.system_detail .section3 .items .item:hover {
	background-color: #202020;
}

.system_detail .section3 .items .item:hover h3 {
	color: #fff;
}

.system_detail .section3 .slick-dots {
	margin-top: 4vw;
	font-size: 0;
	text-align: center;
}

.system_detail .section3 .slick-dots li {
	display: inline-block;
	vertical-align: middle;
	width: 45px;
	height: 3px;
	background-color: #fff;
	margin: 0 6px;
	cursor: pointer;
}

.system_detail .section3 .slick-dots li.slick-active {
	height: 8px;
	background-color: #ff8615;
}

.system_detail .section3 .slick-dots button {
	display: none;
}

.system_detail .section4 {
	padding: 6vw 7vw;
	position: relative;
}

.system_detail .section4:before {
	content: '';
	width: 11px;
	height: 205px;
	position: absolute;
	right: calc(50% + 36vw);
	top: 46%;
	margin-top: -102px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/system/img-8.png");
}

.system_detail .section4 .slick {
	width: 68vw;
	margin: 0 auto;
}

.system_detail .section4 .slick .item {
	position: relative;
}

.system_detail .section4 .slick .item img {
	display: block;
	width: 100%;
}

.system_detail .section4 .slick .item span {
	position: absolute;
	bottom: 3vw;
	left: 3vw;
	right: 3vw;
	text-align: center;
	font-size: 16px;
	color: #fff;
	z-index: 2;
}

.system_detail .section4 .slick .item a {
	width: 100px;
	height: 100px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/template/pc/skin/img/system/icon-12.png");
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.system_detail .section4 .slick .item a:before {
	content: '';
	position: absolute;
	border-radius: 50%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #fff;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.system_detail .section4 .slick .item a:hover:before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.system_detail .section4 .slick .slick-dots {
	margin-top: 2.5vw;
	text-align: center;
	font-size: 0;
}

.system_detail .section4 .slick .slick-dots li {
	display: inline-block;
	vertical-align: top;
	padding: 0 16px 20px;
	opacity: .3;
	border-bottom: 2px solid transparent;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
	margin-right: 2px;
}

.system_detail .section4 .slick .slick-dots li:hover,
.system_detail .section4 .slick .slick-dots li.slick-active {
	opacity: 1;
	border-color: #ff8615;
}

.system_detail .section4 .slick .slick-dots button {
	background-color: transparent;
	font-size: 16px;
	font-family: 'DIN-Medium';
	color: #202020;
	cursor: pointer;
}

.system_detail .back_cont {
	padding-bottom: 7vw;
}

.system_detail .back_cont a {
	display: block;
	width: 240px;
	line-height: 52px;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 14px;
	color: #202020;
	background-color: #fff;
	margin: 0 auto;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.system_detail .back_cont a:hover {
	background-color: #ff8615;
	color: #fff;
}

/* search */
.search_list .section1 {
	padding: 6vw 7vw;
	background-color: #f4f4f4;
}

.search_list .section1 .items {
	margin: 3vw auto;
	max-width: 950px;
}

.search_list .section1 .item {
	padding: 30px 0;
	border-bottom: 1px solid #dddddd;
}

.search_list .section1 .item h3 {
	font-size: 20px;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.search_list .section1 .item .date {
	font-size: 16px;
	color: #999;
	margin: 10px 0;
}

.search_list .section1 .item p {
	font-size: 16px;
	line-height: 30px;
	color: #666;
	max-height: 60px;
	overflow: hidden;
}

.search_list .section1 .item:first-of-type {
	border-top: 1px solid #ddd;
}

.search_list .section1 .item:hover h3 {
	color: #ff8615;
}

@media screen and (max-width: 1800px) {
	.index_main .section3 .slick .item .txt_block h3 {
		font-size: 36px;
		line-height: 46px;
	}

	.page_jiangxin .section1 .item span {
		font-size: 40px;
	}

	.page_jiangxin .section1 .item h3 {
		font-size: 20px;
		margin: 12px 0;
	}

	.page_jiangxin .section1 .item p {
		font-size: 14px;
		line-height: 20px;
		max-height: 160px;
		overflow: hidden;
	}

	.page_jiangxin .section4 .tab_cont {
		padding: 3vw;
	}

	.page_jiangxin .section4 .tab_cont h4 {
		margin: 2vw 0;
		padding-top: 2vw;
		font-size: 18px;
	}

	.page_jiangxin .section4 .tab_cont h3 {
		font-size: 18px;
	}

	.page_system .section1 .main {
		width: 54vw;
	}
}

@media screen and (max-width: 1600px) {
	.about_detail .cont_box {
		padding: 6vw 20vw;
	}

	.comm_banner .item .txt_block h3,
	.page_system .section1 h3.tit {
		font-size: 50px;
	}

	.comm_banner .item .txt_block h4,
	.page_system .section1 p.tit {
		font-size: 20px;
	}

	.about_index .section3 .map_box {
		width: 46vw;
		-webkit-transform: translateX(-2vw);
		-moz-transform: translateX(-2vw);
		-ms-transform: translateX(-2vw);
		transform: translateX(-2vw);
	}

	.about_index .section3 .map_box .dot span {
		font-size: 16px;
	}

	.comm_section1 .item .img_block {
		width: 38%;
	}

	.comm_section1 .item .txt_block {
		width: 62%;
	}

	.index_main .section1 .num_box .item .num span {
		font-size: 40px;
	}

	.index_main .section3 .slick .item .txt_block h3 {
		font-size: 30px;
		line-height: 36px;
	}

	.index_main .section3 .slick .item .txt_block .label {
		font-size: 18px;
	}

	.index_main .section3 .slick .item .txt_block p {
		font-size: 16px;
		line-height: 26px;
		max-height: 78px;
	}

	.page_system .popups .slick .item i {
		width: 60px;
		height: 60px;
	}

	.page_system .popups .slick .item h3 {
		font-size: 30px;
	}

	.page_system .popups .slick .item h4 {
		font-size: 20px;
	}

	.page_system .popups .slick .item p {
		line-height: 30px;
		height: 180px;
	}

	.page_system .section1 .main {
		width: 50vw;
	}
}
.inner_tit2 h3{
	font-weight:bold;
}
@media screen and (max-width: 1500px) {
	.about_detail .label {
		font-size: 16px;
	}

	.about_detail .info h3,
	.inner_tit1 h3,
	.inner_tit2 h3 {
		font-size: 30px;
	}

	.inner_tit2 h3 {
		line-height: 40px;
	}

	.about_detail .info h4,
	.inner_tit1 p {
		font-size: 20px;
	}

	.about_detail .intro h3 span {
		font-size: 26px;
		padding-bottom: 10px;
	}

	.about_index .section2 .slick .item .img_block {
		height: 160px;
	}

	.about_index .section2 .slick .item h3 {
		font-size: 16px;
		margin-top: 20px;
	}

	.about_index .section3 .popups .txt_block h3 {
		font-size: 24px;
		padding: 20px 0 20px 46px;
	}

	.about_index .section3 .popups .txt_block h4 {
		font-size: 18px;
	}

	.about_index .section3 .popups .txt_block p {
		font-size: 15px;
	}

	.about_index .section3 .popups .txt_block {
		padding: 0 30px;
	}

	.about_index .section3 .popups .txt_block .info {
		padding: 20px 0 30px;
	}

	.about_index .section3 .map_box .dot span {
		font-size: 14px;
	}

	.about_index .section4 .tab_cont .item h3 {
		font-size: 20px;
	}

	.about_index .section4 .tab_cont .item .txt_block {
		margin-top: 20px;
	}

	.comm_section1 .item .txt_block {
		padding: 0 2.5vw;
	}

	.comm_section1 .item h3 {
		font-size: 20px;
	}

	.comm_section1 .item p {
		font-size: 14px;
		line-height: 24px;
		height: 48px;
	}

	.about_index .section5 a.load,
	.about_index .section1 .txt_block a,
	.case_list .section1 a.load,
	.case_detail .back_cont a,
	.news_detail .section3 a.more,
	.solution_list .section1 a.load,
	.system_detail .back_cont a {
		width: 200px;
		line-height: 48px;
	}

	.about_index .section4 .tab_tit .item span {
		font-size: 16px;
	}

	.about_intro .section2 .item h3 {
		font-size: 20px;
	}

	.about_intro .section3 .item .date {
		font-size: 30px;
		padding-bottom: 15px;
	}

	.about_intro .section3 .item p {
		line-height: 30px;
		margin-top: 20px;
	}

	.about_intro .section3 .slick:before {
		top: 46px;
	}

	.about_intro .section3 .line_dot:before,
	.about_intro .section3 .line_dot:after {
		top: 42px;
	}

	.about_intro .section3 .slick {
		margin: 4vw -8vw 0;
		padding: 0 4vw 0 8vw;
	}

	.about_intro .section3 .item {
		margin-right: 4vw;
	}

	.about_intro .section3 .line_dot:before {
		left: 5vw;
	}

	.about_intro .section3 .line_dot:after {
		right: 5vw;
	}

	.comm_pages li {
		margin: 0 5px;
	}

	.comm_pages li a {
		width: 40px;
		height: 40px;
		font-size: 16px;
		line-height: 38px;
	}

	.case_list .filter_box .a_block a {
		margin-left: 4vw;
	}

	.case_list .section1 .item h3 {
		font-size: 20px;
	}

	.case_detail .title_1 h4 {
		font-size: 18px;
	}

	.case_detail .title_1 h3 {
		font-size: 30px;
	}

	.case_detail .box .h3_t {
		font-size: 20px;
		line-height: 30px;
	}

	.comm_section3 .item .label {
		font-size: 14px;
	}

	.comm_section3 .item h3 {
		font-size: 18px;
	}

	.comm_slick1 .item h3.small {
		font-size: 20px;
	}

	.comm_slick1 .item .txt_block {
		margin-top: 20px;
	}

	.page_dazhai .section3 .item i {
		width: 120px;
		height: 120px;
		background-size: auto 44px;
	}

	.page_dazhai .section3 .item h3 {
		margin-top: 20px;
		font-size: 16px;
	}

	.page_dazhai .section4 .item i {
		width: 120px;
		height: 120px;
		background-size: auto 44px;
	}

	.page_dazhai .section4 .item h3 {
		font-size: 24px;
		margin: 15px 0;
	}

	.page_dazhai .section5 .slick .item .txt_block {
		padding-top: 20px;
	}

	.page_dazhai .section5 .slick .item h3 {
		font-size: 20px;
	}

	.page_dazhai .section5 .slick .item p {
		font-size: 14px;
	}

	.page_dazhai .section7 .item .txt_block span {
		font-size: 18px;
	}

	.comm_slick1 {
		margin-left: -60px;
		margin-right: -60px;
	}

	.comm_slick1 .item {
		margin: 0 15px;
	}

	.page_dazhai_1 .section1 .item h3 {
		font-size: 20px;
	}

	.page_dazhai_1 .section1 .item p {
		font-size: 16px;
		line-height: 26px;
		margin: 15px 0;
	}

	.page_dazhai_1 .section2 .img_block {
		width: 52vw;
	}

	.page_dazhai_1 .list_num h3 {
		font-size: 24px;
	}

	.page_dazhai_1 .list_num h3 span {
		font-size: 48px;
	}

	.page_dazhai_1 .list_num h4 {
		font-size: 24px;
	}

	.page_dazhai_1 .list_num h5,
	.page_dazhai_1 .list_num p {
		font-size: 16px;
	}

	.page_dazhai_1 .list_num p {
		margin-top: 10px;
	}

	.page_dazhai_1 .section3 .item h3 {
		font-size: 20px;
	}

	.page_dazhai_1 .section3 .item p {
		font-size: 16px;
	}

	.page_dazhai_1 .tit h3 {
		font-size: 30px;
	}

	.page_dazhai_1 .tit h4 {
		font-size: 18px;
	}

	.news_item h3 {
		font-size: 18px;
	}

	.news_detail .section2 .info h3 {
		font-size: 24px;
	}

	.news_detail .section2 .info .date span {
		font-size: 36px;
	}

	.news_detail .section3 {
		padding: 0 7vw 6vw;
	}

	.solution_list .section1 .item h3 {
		font-size: 20px;
		margin: 15px 0;
	}

	.index_main .index_tit h3 {
		font-size: 30px;
	}

	.index_main .index_tit p {
		font-size: 20px;
	}

	.comm_slick1 .item h3 {
		font-size: 24px;
	}

	.index_main .section3 .icons .item h3 {
		font-size: 16px;
		margin-top: 15px;
	}

	.index_main .section4 .slick .item h3 {
		font-size: 30px;
	}

	.index_main .section5 .txt_block h3 {
		font-size: 30px;
	}

	.index_main .section6 .txt_block h3 {
		font-size: 30px;
	}

	.index_main .section6 .txt_block p {
		line-height: 30px;
	}

	.page_jiangxin .section1 .item .txt_block {
		padding: 2vw;
	}

	.page_jiangxin .section1 .item i {
		right: 2vw;
		bottom: 2vw;
	}

	.page_jiangxin .section1 .item p {
		max-height: 120px;
	}

	.page_jiangxin .section2 .item h3 {
		margin: 20px 0 10px;
		font-size: 20px;
	}

	.page_jiangxin .section2 .item p {
		font-size: 16px;
	}

	.page_jiangxin .section3 .item i {
		width: 120px;
		height: 120px;
	}

	.page_jiangxin .section3 .item p {
		font-size: 14px;
	}

	.page_jiangxin .section3 .item h3 {
		margin: 20px 0;
	}

	.page_jiangxin .section4 .tab_cont {
		padding: 2vw;
	}

	.page_jiangxin .section4 .tab_cont h4 {
		margin: 20px 0;
		padding-top: 20px;
	}

	.solution_page_1 .section1 .main .dot h3 {
		font-size: 20px;
	}

	.solution_page_1 .section2 .item span {
		font-size: 46px;
	}

	.solution_page_1 .section2 .item h3 {
		font-size: 18px;
	}

	.solution_page_1 .section2 .item h4 {
		font-size: 30px;
		margin: 15px 0;
		line-height: 36px;
	}

	.solution_page_1 .section2 .item .img {
		width: 120px;
		height: 120px;
		border-width: 5px;
	}

	.solution_page_1 .section3 .item h3 {
		font-size: 24px;
	}

	.solution_page_1 .section4 .main {
		width: 440px;
		height: 440px;
	}

	.solution_page_1 .section4 .bg_box {
		width: 300px;
		height: 300px;
	}

	.solution_page_1 .section4 .icon_box span {
		width: 80px;
		height: 80px;
		margin: -40px 0 0 -40px;
	}

	.solution_page_1 .section4 .icon_box span:nth-of-type(2) {
		top: 155px;
		left: 430px;
	}

	.solution_page_1 .section4 .icon_box span:nth-of-type(3) {
		top: 395px;
		left: 350px;
	}

	.solution_page_1 .section4 .icon_box span:nth-of-type(4) {
		top: 395px;
		left: 90px;
	}

	.solution_page_1 .section4 .icon_box span:nth-of-type(5) {
		top: 155px;
		left: 12px;
	}

	.solution_page_1 .section4 .txt_box .item:nth-of-type(1) {
		top: -100px;
	}

	.solution_page_1 .section4 .txt_box .item:nth-of-type(2) {
		top: 126px;
		left: 490px;
	}

	.solution_page_1 .section4 .txt_box .item:nth-of-type(3) {
		top: 370px;
		left: 410px;
	}

	.solution_page_1 .section4 .txt_box .item:nth-of-type(4) {
		top: 370px;
		right: 410px;
	}

	.solution_page_1 .section4 .txt_box .item:nth-of-type(5) {
		top: 126px;
		right: 490px;
	}

	.solution_page_1 .section4 .info_box .item:nth-of-type(1) {
		left: 400px;
	}

	.solution_page_1 .section4 .info_box .item:nth-of-type(2) {
		top: 260px;
		left: 470px;
	}

	.solution_page_1 .section4 .info_box .item:nth-of-type(3) {
		top: 480px;
	}

	.solution_page_1 .section4 .info_box .item:nth-of-type(4) {
		top: 260px;
		right: 470px;
	}

	.solution_page_1 .section4 .info_box .item:nth-of-type(5) {
		right: 400px;
	}

	.solution_page_1 .section5 .item h3 {
		font-size: 20px;
	}

	.system_detail .section1 .item .txt h3 {
		font-size: 30px;
	}

	.system_detail .section3 .items .item p {
		font-size: 14px;
		line-height: 24px;
		height: 72px;
	}

	.system_detail .section4 .slick .item a {
		width: 80px;
		height: 80px;
		background-size: contain;
	}

	.page_system .section1 .dot span {
		font-size: 16px;
		padding-top: 10px;
	}

	.page_system .section1 .dot {
		width: 60px;
		height: 66px;
	}

	.page_system .section1 .dot .icon {
		background-size: contain;
	}

	.page_system .section1 .dot .icon i {
		background-size: auto 26px;
	}

	.page_system .section1 .main {
		width: 42vw;
	}

	.page_system .popups .btns {
		left: 86%;
	}

	.page_system .section2 .item h3 {
		font-size: 20px;
	}
}

@media screen and (max-width: 1366px) {

	.comm_banner .item .txt_block h3,
	.page_system .section1 h3.tit {
		font-size: 44px;
	}

	.about_index .section1 .txt_block .para {
		font-size: 14px;
		line-height: 30px;
	}

	.about_index .section3 .popups .txt_block p {
		font-size: 14px;
	}

	.about_index .section1 .img_block a {
		width: 60px;
		height: 60px;
		background-size: contain;
	}

	.page_dazhai .section7 .item .txt_block span {
		font-size: 16px;
	}

	.news_item h3 {
		font-size: 16px;
		line-height: 24px;
		height: 72px;
	}

	.index_main .section3 .slick .slick-arrow {
		width: 60px;
		height: 60px;
	}

	.index_main .section4 .tab_tit .item {
		width: 110px;
		height: 110px;
	}

	.index_main .section5 .link_block a {
		width: 130px;
		height: 130px;
	}

	.index_main .section5 .link_block .txt {
		bottom: 20px;
		left: 15px;
		right: 15px;
	}

	.index_main .section6 .txt_block h3,
	.index_main .section3 .slick .item .txt_block h3,
	.index_main .section4 .slick .item h3 {
		font-size: 26px;
	}

	.index_main .section6 .img_block a {
		width: 60px;
		height: 60px;
		background-size: contain;
	}

	.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(1) {
		top: 27.7vw;
	}

	.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(2) {
		top: 21vw;
		left: 35vw;
	}

	.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(3) {
		top: 8vw;
		left: 45vw;
	}

	.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(4) {
		top: 22vw;
		left: 70vw;
	}

	.page_jiangxin .section1 .item h3 {
		font-size: 18px;
	}

	.page_jiangxin .section1 .item span {
		font-size: 36px;
	}

	.page_jiangxin .section4 .tab_cont p {
		font-size: 14px;
		line-height: 24px;
	}

	.page_jiangxin .section5 .item .txt_block h3 {
		font-size: 18px;
	}

	.solution_page_1 .section1 .main {
		width: 450px;
	}

	.solution_page_1 .section1 .main .dot:nth-of-type(1):after {
		height: 54px;
	}

	.solution_page_1 .section1 .main .dot:nth-of-type(2):after {
		height: 54px;
	}

	.solution_page_1 .section1 .main .dot:nth-of-type(1) .scale {
		bottom: 50px;
	}

	.solution_page_1 .section1 .main .dot:nth-of-type(2) .scale {
		bottom: 50px;
	}

	.solution_page_1 .section5 .item p {
		font-size: 14px;
	}

	.system_detail .section3 .tab_tit span {
		line-height: 40px;
	}

	.system_detail .section4 .slick .item a {
		width: 60px;
		height: 60px;
	}

	.page_system .popups .slick .item i {
		width: 50px;
		height: 50px;
	}

	.page_system .popups .slick .item h3 {
		font-size: 26px;
	}

	.page_system .popups .slick .item .para,
	.page_system .popups .slick .item .logo {
		margin-top: 24px;
	}

	.page_system .popups .slick .item p {
		font-size: 14px;
		line-height: 24px;
		height: 120px;
	}

	.page_system .popups .slick .item .logo .s_logo span {
		font-size: 16px;
		margin-top: 10px;
	}

	.page_system .section1 .dot span {
		font-size: 12px;
	}
}

@media screen and (max-width: 1200px) {
	.about_detail .cont_box {
		padding: 6vw 10vw;
	}

	.about_index .section3 .map_box {
		width: 54vw;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.about_index .section3 .popups .txt_block h3 {
		font-size: 20px;
	}

	.about_index .section3 .popups .txt_block h4 {
		font-size: 16px;
	}

	.about_intro .section2 .item h3 {
		margin: 10px 0;
	}

	.page_dazhai .section4 .item h3 {
		font-size: 20px;
	}

	.news_detail .section2 .info h3 {
		font-size: 20px;
	}

	.news_detail .section2 .info .date p {
		font-size: 14px;
	}

	.news_detail .section2 .info .date span {
		font-size: 30px;
	}

	.comm_slick1 .item h3 {
		font-size: 20px;
	}

	.index_main .section6 .txt_block h3,
	.index_main .section3 .slick .item .txt_block h3,
	.index_main .section4 .slick .item h3 {
		font-size: 20px;
	}

	.index_main .section3 .slick .item .txt_block h3 {
		line-height: 26px;
		margin-top: 15px;
	}

	.index_main .section3 .slick .item .txt_block .label {
		font-size: 16px;
	}

	.index_main .section3 .slick .item .txt_block p {
		font-size: 14px;
		line-height: 24px;
		max-height: 72px;
	}

	.index_main .section3 .slick .item .txt_block a,
	.index_main .section1 a.more {
		width: 120px;
		line-height: 40px;
		font-size: 14px;
	}

	.index_main .section3 .icons .item h3 {
		font-size: 15px;
	}

	.index_main .section4 .slick .item h3 {
		line-height: 26px;
	}

	.index_main .section5 .txt_block {
		width: 40%;
	}

	.index_main .section6 .txt_block p {
		font-size: 14px;
		line-height: 24px;
	}

	.index_main .section3 .slick .slick-arrow {
		width: 50px;
		height: 50px;
	}

	.page_jiangxin .section1 .item p {
		max-height: 80px;
	}

	.page_jiangxin .section2 .item p {
		font-size: 14px;
	}

	.page_jiangxin .section4 .tab_cont h3 {
		font-size: 16px;
	}

	.page_jiangxin .section4 .tab_cont h4 {
		font-size: 16px;
		margin: 15px 0;
		padding-top: 15px;
	}
}

@media screen and (max-width: 992px) {
	.wrapper_page {
		margin-left: 0;
		margin-top: 60px;
	}

	.about_detail .back_box,
	.case_detail .back_box {
		padding: 10px 20px;
	}

	.about_detail .back_box a,
	.case_detail .back_box a {
		font-size: 14px;
	}

	.about_detail .cont_box {
		padding: 10vw 20px;
	}

	.about_detail .info {
		margin-top: 15px;
	}

	.about_detail .info h3 {
		font-size: 24px;
	}

	.about_detail .info h4 {
		font-size: 18px;
	}

	.about_detail .info .p_block {
		margin-top: 15px;
		font-size: 14px;
		line-height: 24px;
	}

	.about_detail .info .p_block p {
		width: 100%;
	}

	.about_detail .head_img,
	.about_detail .intro {
		margin-top: 15px;
	}

	.about_detail .intro h3 span {
		font-size: 20px;
	}

	.about_detail .intro .para {
		font-size: 14px;
		line-height: 24px;
		margin-top: 15px;
	}

	.comm_banner .item .img_block.bg {
		height: 40vh;
	}

	.comm_banner .pos {
		left: 20px;
		top: 20px;
		font-size: 16px;
	}

	.comm_banner .item .txt_block {
		left: 20px;
		right: 20px;
		top: 30%;
	}

	.comm_banner .item .txt_block h3,
	.page_system .section1 h3.tit {
		font-size: 22px;
	}

	.comm_banner .item .txt_block h4,
	.page_system .section1 p.tit {
		font-size: 14px;
	}

	.comm_banner .scroll {
		left: 20px;
		bottom: 20px;
		display: none;
	}

	.comm_banner a.btn {
		right: 20px;
		bottom: 20px;
		line-height: 40px;
		font-size: 14px;
		width: 120px;
	}

	.about_index .section1 {
		padding: 10vw 20px;
		background-color: #f5f5f5;
		background-image: none;
	}

	.about_index .section1 .txt_block {
		width: 100%;
		padding-right: 0;
	}

	.about_detail .info h3,
	.inner_tit1 h3,
	.inner_tit2 h3 {
		font-size: 20px;
		line-height: 26px;
		font-weight: bold;
	}

	.inner_tit1 p,
	.inner_tit2 p {
		font-size: 14px;
	}

	.inner_tit1:after {
		margin-top: 10px;
	}

	.about_index .section1 .txt_block .para {
		line-height: 24px;
		margin-top: 15px;
		max-width: 100%;
	}

	.about_index .section1 .txt_block a {
		margin: 15px auto 0;
	}

	.about_index .section5 a.load,
	.about_index .section1 .txt_block a,
	.case_list .section1 a.load,
	.case_detail .back_cont a,
	.news_detail .section3 a.more,
	.solution_list .section1 a.load,
	.system_detail .back_cont a {
		width: 160px;
		line-height: 40px;
	}

	.about_index .section1 .img_block {
		width: 100%;
		margin-top: 20px;
	}

	.about_index .section2 {
		padding: 10vw 20px;
	}

	.inner_tit2 h3 {
		line-height: 30px;
	}

	.inner_tit2:after {
		margin-top: 10px;
	}

	.about_index .section2 .slick {
		margin-top: 20px;
		padding: 0;
	}

	.about_index .section2 .slick .item {
		margin: 0 2px;
	}

	.about_index .section2 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.about_index .section2 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.about_index .section2 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.about_index .section2 .slick-dots button {
		display: none;
	}

	.about_index .section3 {
		padding: 10vw 20px;
	}

	.about_index .section3 .inner_tit2 {
		position: static;
	}

	.about_index .section3 .map_box {
		width: 90%;
	}

	.about_index .section3 .map_box .dot:nth-of-type(3) {
		left: 81%;
	}

	.about_index .section3 .map_box .dot span {
		font-size: 12px;
		padding-top: 24px;
	}

	.about_index .section3 .map_box .dot span:before {
		width: 16px;
		height: 21px;
		background-size: contain;
	}

	.about_index .section3 .popups .txt_block {
		right: 5%;
		width: 90%;
		padding: 0 20px;
	}

	.about_index .section3 .popups .txt_block .close {
		width: 30px;
		height: 30px;
		right: -15px;
		top: -15px;
		background-size: contain;
	}

	.about_index .section3 .popups .txt_block h3 {
		font-size: 18px;
		line-height: 30px;
		background-size: auto 30px;
		padding: 15px 0 15px 34px;
	}

	.about_index .section3 .popups .txt_block .info {
		padding: 15px 0 20px;
	}

	.about_index .section3 .popups .txt_block p {
		font-size: 12px;
		line-height: 24px;
	}

	.about_index .section4 {
		padding: 10vw 20px;
	}

	.about_index .section4 .tab_tit {
		position: static;
		margin-top: 20px;
		text-align: center;
	}

	.about_index .section4 .tab_tit .item i {
		width: 24px;
		height: 24px;
		background-size: contain;
		margin-right: 10px;
	}

	.about_index .section4 .tab_tit .item {
		margin-left: 20px;
	}

	.about_index .section4 .tab_tit .item span {
		font-size: 14px;
	}

	.about_index .section4 .tab_cont {
		margin-top: 20px;
	}

	.about_index .section4 .tab_cont .item {
		margin: 0 2px;
	}

	.about_index .section4 .tab_cont .item .txt_block {
		text-align: center;
		margin-top: 15px;
	}

	.about_index .section4 .tab_cont .item h3 {
		font-size: 16px;
		margin-bottom: 5px;
	}

	.about_index .section4 .tab_cont .item h4 {
		margin-bottom: 5px;
	}

	.about_index .section4 .tab_cont .item h4,
	.about_index .section4 .tab_cont .item p {
		font-size: 14px;
	}

	.about_index .section4 .tab_cont .ope {
		display: none;
	}

	.about_index .section4 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.about_index .section4 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.about_index .section4 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.about_index .section4 .slick-dots button {
		display: none;
	}

	.about_index .section5 {
		padding: 10vw 20px;
	}

	.comm_section1 {
		margin: 15px 0;
	}

	.comm_section1 .item {
		width: 100%;
		margin-top: 15px;
	}

	.comm_section1 .item:nth-of-type(1) {
		margin-top: 0;
	}

	.comm_section1 .item .txt_block {
		padding: 0 0 0 10px;
	}

	.comm_section1 .item h3 {
		font-size: 16px;
	}

	.comm_section1 .item p {
		margin: 5px 0;
		height: auto;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.about_intro .section1 {
		padding: 10vw 20px;
	}

	.about_intro .section1 .para {
		font-size: 14px;
		line-height: 24px;
		margin-top: 15px;
	}

	.about_intro .section2 {
		padding: 10vw 20px;
	}

	.about_intro .section2 .items {
		margin-top: 20px;
	}

	.about_intro .section2 .item {
		width: 100%;
		margin: 0 2px;
	}

	.about_intro .section2 .item h3 {
		margin: 15px 0;
	}

	.about_intro .section2 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.about_intro .section2 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.about_intro .section2 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.about_intro .section2 .slick-dots button {
		display: none;
	}

	.about_intro .section3 {
		padding: 10vw 20px;
	}

	.about_intro .section3 .btns {
		display: none;
	}

	.about_intro .section3 .para {
		font-size: 14px;
		line-height: 24px;
	}

	.about_intro .section3 .slick {
		margin: 20px 0 0;
		padding: 0;
	}

	.about_intro .section3 .slick:before,
	.about_intro .section3 .line_dot {
		display: none;
	}

	.about_intro .section3 .item {
		margin-right: 0;
		margin-top: 20px;
	}

	.about_intro .section3 .item:first-of-type {
		margin-top: 0;
	}

	.about_intro .section3 .item .date {
		font-size: 24px;
		border-bottom-width: 1px;
		padding-bottom: 10px;
	}

	.about_intro .section3 .item p {
		margin-top: 10px;
		font-size: 14px;
		line-height: 24px;
	}

	.about_intro .section3 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.about_intro .section3 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.about_intro .section3 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.about_intro .section3 .slick-dots button {
		display: none;
	}

	.about_list .section1 {
		padding: 10vw 20px;
	}

	.comm_pages li {
		margin: 0 2px;
	}

	.comm_pages li a {
		width: 30px;
		height: 30px;
		font-size: 12px;
		line-height: 28px;
	}

	.case_list .filter_box {
		padding: 15px 20px;
		left: 0;
		top: 60px;
	}

	.case_list .filter_box.fixed {
		padding: 15px 20px;
	}

	.case_list .filter_box span {
		font-size: 16px;
		display: none;
	}

	.case_list .filter_box .a_block {
		float: none;
	}

	.case_list .filter_box .a_block a {
		margin: 5px 0;
		width: 50%;
		padding-left: 50px;
		background-size: auto 30px;
	}

	.case_list .section1 {
		padding: 10vw 20px;
	}

	.case_list .section1 .item {
		width: 100%;
		margin-top: 15px;
	}

	.case_list .section1 .item:nth-of-type(1) {
		margin-top: 0;
	}

	.case_list .section1 .item .txt_block {
		padding-top: 10px;
	}

	.case_list .section1 .item h3 {
		font-size: 16px;
		margin-top: 5px;
	}

	.case_list .section1 a.load {
		margin-top: 20px;
	}

	.case_detail .detail_box {
		padding: 10vw 20px 90px;
	}

	.case_detail .other_page {
		position: absolute;
		bottom: 60px;
		left: 0;
		right: 0;
		top: auto;
		line-height: 32px;
	}

	.case_detail .other_page a.prev {
		left: 20px;
		top: 0;
		padding-left: 50px;
	}

	.case_detail .other_page a.next {
		right: 20px;
		top: 0;
		padding-right: 50px;
	}

	.case_detail .other_page a:before {
		position: absolute;
		top: 0;
		width: 30px;
		height: 30px;
	}

	.case_detail .other_page a.prev:before {
		left: 0;
	}

	.case_detail .other_page a.next:before {
		right: 0;
	}

	.case_detail .detail_box .main {
		padding: 0;
	}

	.case_detail .title_1 h4 {
		font-size: 16px;
	}

	.case_detail .title_1 h3 {
		font-size: 20px;
		margin: 10px 0;
	}

	.case_detail .title_1 .date {
		font-size: 14px;
	}

	.case_detail .para.mt {
		margin-top: 20px;
	}

	.case_detail .para {
		font-size: 14px;
		line-height: 24px;
	}

	.case_detail .slick {
		margin-top: 15px;
	}

	.case_detail .slick .item span {
		bottom: 15px;
		left: 15px;
		right: 15px;
	}

	.case_detail .slick .slick-dots {
		margin-top: 15px;
	}

	.case_detail .slick .slick-dots li {
		padding: 0 10px 10px;
	}

	.case_detail .box {
		margin-top: 15px;
	}

	.case_detail .box .h3_t {
		font-size: 18px;
		line-height: 24px;
	}

	.case_detail .box img {
		margin-top: 15px;
	}

	.case_detail .box .para {
		margin-top: 15px;
	}

	.case_detail .back_cont {
		margin-top: 20px;
	}

	.comm_section3 {
		padding: 10vw 20px;
	}

	.comm_section3 .items {
		margin-top: 20px;
	}

	.comm_section3 .item {
		width: 100%;
		margin-top: 15px;
	}

	.comm_section3 .item:nth-of-type(1) {
		margin-top: 0;
	}

	.comm_section3 .item .txt_block {
		left: 15px;
		right: 15px;
		bottom: 15px;
	}

	.page_dazhai .section1 {
		padding: 10vw 20px;
	}

	.page_dazhai .section1 .label {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.page_dazhai .section1 .para {
		margin-top: 15px;
		font-size: 14px;
		line-height: 24px;
	}

	.page_dazhai .section2 {
		padding: 0 20px 10vw;
	}

	.page_dazhai .section2 .comm_slick1 {
		margin: 20px 0 0;
		padding: 0;
	}

	.comm_slick1 .item {
		margin: 0 2px;
	}

	.comm_slick1 .item .txt_block {
		margin-top: 15px;
		text-align: center;
	}

	.comm_slick1 .item h3 {
		font-size: 18px;
	}

	.comm_slick1 .item h3.small {
		font-size: 18px;
	}

	.comm_slick1 .item p {
		font-size: 14px;
		margin-top: 5px;
	}

	.comm_slick1 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.comm_slick1 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.comm_slick1 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.comm_slick1 .slick-dots button {
		display: none;
	}

	.page_dazhai .inner_tit2 h3::after,
	.page_dazhai_1 .inner_tit2 h3::after,
	.page_jiangxin .inner_tit2 h3::after {
		margin-top: 10px;
	}

	.page_dazhai .section3 {
		padding: 10vw 20px;
	}

	.page_dazhai .section3 .items {
		margin-top: 20px;
	}

	.page_dazhai .section3 .item {
		width: 50%;
		margin-top: 15px;
	}

	.page_dazhai .section3 .item:nth-of-type(1),
	.page_dazhai .section3 .item:nth-of-type(2) {
		margin-top: 0;
	}

	.page_dazhai .section3 .item i {
		width: 80px;
		height: 80px;
		background-size: auto 30px;
	}

	.page_dazhai .section3 .item h3 {
		margin-top: 10px;
		font-size: 14px;
		line-height: 20px;
	}

	.page_dazhai .section4 {
		padding: 10vw 20px;
	}

	.page_dazhai .section4 .items {
		margin-top: 20px;
	}

	.page_dazhai .section4 .item {
		margin: 0 2px;
	}

	.page_dazhai .section4 .item:after {
		display: none;
	}

	.page_dazhai .section4 .item .txt_block {
		position: static;
		background-color: #ff8615;
		padding: 20px;
		text-align: left;
	}

	.page_dazhai .section4 .item i {
		width: 60px;
		height: 60px;
		float: left;
		background-size: auto 30px;
	}

	.page_dazhai .section4 .item h3 {
		margin: 0 0 0 80px;
	}

	.page_dazhai .section4 .item p {
		margin: 5px 0 0 80px;
	}

	.page_dazhai .section4 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.page_dazhai .section4 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.page_dazhai .section4 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.page_dazhai .section4 .slick-dots button {
		display: none;
	}

	.page_dazhai .section5 {
		padding: 0 20px 10vw;
	}

	.page_dazhai .section5 .slick {
		margin: 20px 0 0;
	}

	.page_dazhai .section5 .slick .item {
		margin: 0 5px;
	}

	.page_dazhai .section5 .slick .item .txt_block {
		padding-top: 15px;
	}

	.page_dazhai .section5 .slick .item h3 {
		font-size: 16px;
	}

	.page_dazhai .section5 .slick .item p {
		line-height: 20px;
		margin-top: 5px;
	}

	.page_dazhai .section5 .slick-dots li {
		width: 8px;
		height: 8px;
		margin: 0 2px;
	}

	.page_dazhai .section6 {
		padding: 10vw 20px;
	}

	.page_dazhai .section7 {
		padding: 10vw 20px;
	}

	.page_dazhai .section7 .items {
		margin-top: 20px;
		text-align: center;
	}

	.page_dazhai .section7 .item {
		margin: 2px;
		width: calc((100vw - 60px) / 3);
		height: calc((100vw - 60px) / 3);
	}

	.page_dazhai .section7 .item .txt_block span {
		font-size: 12px;
	}

	.comm_section2 {
		padding: 10vw 20px;
	}

	.comm_section2 .items {
		margin-top: 20px;
	}

	.comm_section2 .item {
		width: 100%;
		margin: 5px 0;
	}

	.comm_section2 .item .icon {
		width: 80px;
		height: 80px;
		padding: 5px;
	}

	.comm_section2 .item .txt {
		width: calc(100% - 90px);
	}

	.comm_section2 .item .txt h3 {
		font-size: 16px;
	}

	.comm_section2 .item .txt p {
		font-size: 14px;
	}

	.page_dazhai_1 .section1 {
		padding: 10vw 20px;
	}

	.page_dazhai_1 .tit h3 {
		font-size: 24px;
	}

	.page_dazhai_1 .tit h4 {
		font-size: 16px;
		margin-top: 10px;
	}

	.page_dazhai_1 .section1 .para {
		margin: 15px 0;
		font-size: 14px;
		line-height: 24px;
	}

	.page_dazhai_1 .section1 .item:nth-of-type(1) .img_block {
		margin-left: 0;
	}

	.page_dazhai_1 .section1 .item .img_block {
		width: 100%;
	}

	.page_dazhai_1 .section1 .item .txt_block {
		position: static;
		padding: 15px;
		width: 100%;
	}

	.page_dazhai_1 .section1 .item h3 {
		font-size: 18px;
	}

	.page_dazhai_1 .section1 .item p {
		font-size: 14px;
		line-height: 24px;
		margin: 10px 0;
	}

	.page_dazhai_1 .section2 {
		padding: 10vw 20px;
	}

	.page_dazhai_1 .section2 .img_block {
		width: 100%;
	}

	.page_dazhai_1 .section3 .list_num {
		padding: 20px;
	}

	.page_dazhai_1 .list_num h3 {
		font-size: 18px;
	}

	.page_dazhai_1 .list_num h3 span {
		font-size: 36px;
	}

	.page_dazhai_1 .list_num h4 {
		font-size: 18px;
	}

	.page_dazhai_1 .list_num h5,
	.page_dazhai_1 .list_num p {
		font-size: 14px;
	}

	.page_dazhai_1 .section3 .item {
		width: 100%;
	}

	.page_dazhai_1 .section3 .item .txt_block {
		left: 15px;
		right: 15px;
		bottom: 15px;
	}

	.page_dazhai_1 .section3 .item h3 {
		font-size: 18px;
	}

	.page_dazhai_1 .section3 .item p {
		font-size: 14px;
		line-height: 20px;
		height: auto;
	}

	.page_dazhai_1 .section4 .list_num {
		position: static;
		padding: 20px;
	}

	.page_dazhai_1 .list_num h3.white {
		color: #ff8615;
	}

	.page_dazhai_1 .list_num h4.white {
		color: #202020;
	}

	.page_dazhai_1 .list_num h5.white {
		color: #202020;
	}

	.page_dazhai_1 .section6 {
		padding: 10vw 20px;
	}

	.comm_banner .item img {
		display: none;
	}

	.news_list .comm_banner .item .img_block,
	.search_list .comm_banner .item .img_block {
		height: 40vh;
	}

	.comm_banner .item .txt_block.w {
		top: 30%;
	}

	.news_list .section1 {
		padding: 10vw 20px;
	}

	.news_list .section1 .items {
		margin: 20px 0;
	}

	.news_list .section1 .news_item {
		width: 100%;
		margin-top: 15px;
	}

	.news_list .section1 .news_item:nth-of-type(1) {
		margin-top: 0;
	}

	.news_item .txt_block {
		padding: 15px;
	}

	.news_item h3 {
		margin-top: 15px;
		height: auto;
	}

	.news_item span {
		margin-top: 10px;
	}

	.news_detail .section2 {
		width: 100%;
		margin: 0;
		padding: 10vw 20px;
	}

	.news_detail .section2 .info {
		height: auto;
		padding: 15px;
	}

	.news_detail .section2 .info .date {
		position: static;
		width: 100%;
		height: auto;
		background-color: transparent;
		color: #ff8615;
	}

	.news_detail .section2 .info .share {
		display: none;
	}

	.news_detail .section2 .info h3 {
		font-size: 18px;
		margin-top: 10px;
	}

	.news_detail .section2 .cont {
		padding: 0;
		margin-top: 20px;
		font-size: 14px;
		line-height: 26px;
	}

	.news_detail .section2 .cont:before {
		margin-bottom: 10px;
	}

	.news_detail .section3 {
		padding: 0 20px 10vw;
	}

	.news_detail .section3 .slick {
		padding: 0;
	}

	.news_detail .section3 .slick .news_item {
		margin: 0 2px;
	}

	.news_detail .section3 .slick .news_item h3 {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.news_detail .section3 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.news_detail .section3 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.news_detail .section3 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.news_detail .section3 .slick-dots button {
		display: none;
	}

	.news_detail .section3 a.more {
		margin-top: 15px;
	}

	.solution_list .section1 {
		padding: 10vw 20px;
	}

	.solution_list .section1 .items {
		margin-top: 20px;
	}

	.solution_list .section1 .item {
		width: 100%;
		margin-top: 15px;
	}

	.solution_list .section1 .item:nth-of-type(1) {
		margin-top: 0;
	}

	.solution_list .section1 .item h3 {
		font-size: 16px;
		font-weight: bold;
		margin: 10px 0;
	}

	.solution_list .section1 .item p {
		font-size: 14px;
	}

	.solution_list .section1 a.load {
		margin-top: 15px;
	}

	.comm_banner .slick-dots {
		left: 20px;
		right: 20px;
		top: auto;
		bottom: 20px;
	}

	.comm_banner .slick-dots li {
		padding: 0 10px 10px;
	}

	.comm_banner .item .txt_block a {
		margin-top: 20px;
		line-height: 30px;
		background-size: auto 30px;
		padding-left: 40px;
	}


	.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(1) {
		top: 22vh;
		left: 22vw;
	}

	.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(2) {
		top: 16vh;
		left: 32vw;
	}

	.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(3) {
		top: 6vh;
		left: 42vw;
	}

	.index_main .comm_banner .item:nth-of-type(2) .dot:nth-of-type(4) {
		top: 18vh;
		left: 76vw;
	}

	.index_main .comm_banner .dot i {
		font-size: 12px;
	}

	.index_main .section1 {
		padding: 10vw 20px;
	}

	.index_main .index_tit h3 {
		font-size: 20px;
	}

	.index_main .index_tit p {
		font-size: 14px;
	}

	.index_main .section1 .map_box {
		width: 80%;
	}

	.index_main .section1 .map_box .dot {
		width: 50px;
		height: 50px;
	}

	.index_main .section1 .map_box .dot:before {
		width: 10px;
		height: 10px;
	}

	.index_main .section1 .map_box .dot:after {
		width: 4px;
		height: 4px;
	}

	.index_main .section1 .num_box {
		position: static;
		margin-top: 20px;
	}

	.index_main .section1 .num_box .item .num span {
		font-size: 26px;
	}

	.index_main .section1 .num_box .item p {
		font-size: 12px;
		margin-top: 10px;
	}

	.index_main .section1 a.more {
		margin-top: 15px;
	}

	.index_main .section2 {
		padding: 10vw 20px;
	}

	.comm_slick1 {
		margin-left: 0;
		margin-right: 0;
		padding: 0;
	}

	.page_dazhai .section6 .comm_slick1,
	.index_main .section2 .comm_slick1 {
		margin-top: 20px;
	}

	.index_main .section3 {
		padding: 10vw 20px;
	}

	.index_main .section3 .slick {
		margin-top: 20px;
	}

	.index_main .section3 .slick .item .txt_block {
		position: static;
		width: 100%;
		padding: 20px;
	}

	.index_main .section3 .slick .item .txt_block h3 {
		font-size: 18px;
	}

	.index_main .section3 .slick .item .txt_block .label {
		font-size: 14px;
	}

	.index_main .section3 .slick .item .txt_block p {
		margin-top: 15px;
		height: 48px;
	}

	.index_main .section3 .slick .item .img_block {
		width: 100%;
		margin-left: 0;
	}

	.index_main .section3 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.index_main .section3 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.index_main .section3 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.index_main .section3 .slick-dots button {
		display: none;
	}

	.index_main .section3 .icons {
		display: none;
	}

	.index_main .section4 {
		padding: 10vw 20px;
	}

	.index_main .index_tit .info {
		line-height: 24px;
		margin-top: 15px;
	}

	.index_main .section4 .tab_cont {
		margin-top: 20px;
	}

	.index_main .section4 .tab_tit {
		margin-top: 10px;
	}

	.index_main .section4 .tab_tit .item {
		width: 60px;
		height: 60px;
	}

	.index_main .section4 .tab_tit .item i {
		height: 24px;
		background-size: contain;
	}

	.index_main .section4 .tab_tit .item span {
		font-size: 12px;
		margin-top: 5px;
	}

	.index_main .section4 .slick .btn {
		font-size: 0;
	}

	.index_main .section4 .slick .item .label {
		font-size: 12px;
	}

	.index_main .section4 .slick .item h3 {
		font-size: 14px;
		line-height: 20px;
		margin-top: 10px;
	}

	.index_main .section5 {
		padding: 21vw 20px;
		position: relative;
	}

	.index_main .section5:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.3);
	}

	.index_main .section5 .txt_block {
		float: none;
		width: 100%;
		position: relative;
		z-index: 2;
	}

	.index_main .section5 .txt_block .label {
		color: #fff;
	}

	.index_main .section5 .txt_block h3 {
		font-size: 20px;
		margin-top: 10px;
		color: #fff;
	}

	.index_main .section5 .txt_block a {
		margin-top: 20px;
		line-height: 30px;
		background-size: auto 30px;
		padding-left: 40px;
		color: #fff;
		background-image: url("/template/pc/skin/img/index/icon-1.png");
	}

	.index_main .section5 .link_block {
		width: 100%;
		float: none;
		text-align: left;
		position: relative;
		margin-top: 15px;
		z-index: 2;
	}

	.index_main .section5 .link_block a {
		width: calc((100vw - 70px) / 3);
		height: calc((100vw - 70px) / 3);
		margin: 5px;
	}

	.index_main .section5 .link_block .txt {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.index_main .section5 .link_block .txt span {
		font-size: 12px;
		line-height: 20px;
	}

	.index_main .section6 {
		padding: 10vw 20px 0;
	}

	.index_main .section6 .box:before {
		display: none;
	}

	.index_main .section6 .img_block {
		width: 100%;
	}

	.index_main .section6 .txt_block {
		position: static;
		width: 100%;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		transform: none;
		padding: 20px;
	}

	.index_main .section6 .txt_block h3 {
		margin: 15px 0;
		font-size: 18px;
	}

	.index_main .section7 {
		padding: 10vw 20px;
	}

	.index_main .section7 .items {
		margin-top: 20px;
	}

	.index_main .section7 .news_item {
		width: 100%;
		margin: 0 2px;
	}

	.index_main .section7 .news_item h3 {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.index_main .section7 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.index_main .section7 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.index_main .section7 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.index_main .section7 .slick-dots button {
		display: none;
	}

	.page_jiangxin .section1 {
		padding: 10vw 20px;
	}

	.page_jiangxin .section1 .items {
		margin-top: 20px;
	}

	.page_jiangxin .section1 .item {
		width: 100%;
	}

	.page_jiangxin .section1 .item .img_block {
		width: 100%;
	}

	.page_jiangxin .section1 .item .txt_block {
		position: static;
		width: 100%;
		padding: 20px;
	}

	.page_jiangxin .section1 .item span {
		font-size: 30px;
	}

	.page_jiangxin .section1 .item h3 {
		font-size: 16px;
	}

	.page_jiangxin .section1 .item p {
		max-height: none;
	}

	.page_jiangxin .section1 .item i,
	.page_jiangxin .section1 .item .txt_block:after {
		display: none;
	}

	.page_jiangxin .section2 {
		padding: 0 20px 10vw;
	}

	.page_jiangxin .section2 .items {
		margin-top: 20px;
	}

	.page_jiangxin .section2 .item {
		width: 100%;
		margin: 0 2px;
	}

	.page_jiangxin .section2 .item h3 {
		margin: 10px 0 5px;
		font-size: 18px;
		padding: 0 10px;
	}

	.page_jiangxin .section2 .item p {
		padding: 0 10px;
	}

	.page_jiangxin .section2 .item p br {
		display: none;
	}

	.page_jiangxin .section2 .slick-dots,
	.page_jiangxin .section3 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.page_jiangxin .section2 .slick-dots li,
	.page_jiangxin .section3 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.page_jiangxin .section2 .slick-dots li.slick-active,
	.page_jiangxin .section3 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.page_jiangxin .section2 .slick-dots button,
	.page_jiangxin .section3 .slick-dots button {
		display: none;
	}

	.page_jiangxin .section3 {
		padding: 10vw 20px;
	}

	.page_jiangxin .section3 .items {
		margin-top: 20px;
	}

	.page_jiangxin .section3 .item {
		margin: 0 2px;
	}

	.page_jiangxin .section3 .item h3 {
		margin: 15px 0 10px;
		font-size: 18px;
	}

	.page_jiangxin .section3 .item p {
		font-size: 12px;
		line-height: 20px;
	}

	.page_jiangxin .section3 .item p br {
		display: none;
	}

	.page_jiangxin .section4 {
		padding: 10vw 20px;
	}

	.page_jiangxin .section4 .cont {
		margin-top: 20px;
	}

	.page_jiangxin .section4 .left_box {
		width: 100%;
		position: static;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	}

	.page_jiangxin .section4 .tab_tit {
		background-color: #fff;
		position: sticky;
		top: 60px;
	}

	.page_jiangxin .section4 .tab_tit span {
		line-height: 40px;
		font-size: 16px;
	}

	.page_jiangxin .section4 .tab_cont {
		padding: 20px;
	}

	.page_jiangxin .section4 .right_box {
		width: 100%;
		margin-left: 0;
		padding: 15px;
	}

	.page_jiangxin .section5 {
		padding: 10vw 20px;
	}

	.page_jiangxin .section5 .cont {
		margin-top: 20px;
	}

	.page_jiangxin .section5 .slick {
		margin-right: 0;
	}

	.page_jiangxin .section5 .item {
		margin: 0 2px;
	}

	.page_jiangxin .section5 .item .txt_block span {
		display: none;
	}

	.page_jiangxin .section5 .item .txt_block h3 {
		width: 100%;
		font-size: 16px;
	}

	.page_jiangxin .section5 .item .txt_block {
		left: 15px;
		right: 15px;
		bottom: 15px;
		text-align: center;
	}

	.page_jiangxin .section5 .ope {
		display: none;
	}

	.page_jiangxin .section5 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.page_jiangxin .section5 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.page_jiangxin .section5 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.page_jiangxin .section5 .slick-dots button {
		display: none;
	}

	.solution_page_1 .comm_banner .item .img_block.bg {
		background-position: 85% center;
		background-size: 146% auto;
	}

	.solution_page_1 .section1 {
		padding: 10vw 20px;
	}

	.solution_page_1 .section1 .main {
		display: none;
	}

	.solution_page_1 .section1 .m_img {
		display: block;
		margin-top: 20px;
	}

	.solution_page_1 .section2 {
		background-color: #f5f5f5;
		padding: 0 20px 10vw;
	}

	.solution_page_1 .section2 .item {
		margin-top: 15px;
	}

	.solution_page_1 .section2 .item:nth-of-type(1) {
		margin-top: 0;
	}

	.solution_page_1 .section2 .item .txt_block {
		position: static;
		padding: 15px 20px;
		text-align: center;
	}

	.solution_page_1 .section2 .item h3 {
		font-size: 14px;
	}

	.solution_page_1 .section2 .item span {
		font-size: 24px;
	}

	.solution_page_1 .section2 .item h4 {
		font-size: 16px;
		line-height: 24px;
		margin: 10px 0;
	}

	.solution_page_1 .section2 .item p {
		font-size: 14px;
	}

	.solution_page_1 .section2 .item .imgs {
		margin-top: 10px;
	}

	.solution_page_1 .section2 .item:nth-of-type(1) h3 {
		color: #ff8615;
	}

	.solution_page_1 .section2 .item:nth-of-type(1) h4 {
		color: #202020;
	}

	.solution_page_1 .section2 .item:nth-of-type(1) p {
		color: #666;
	}

	.solution_page_1 .section3 {
		padding: 10vw 20px;
	}

	.solution_page_1 .section3 .items {
		margin-top: 0;
	}

	.solution_page_1 .section3 .item {
		width: 76%;
		display: block;
		margin: 20px auto 0;
	}

	.solution_page_1 .section3 .item:nth-of-type(1) i {
		background-image: url("/template/pc/skin/img/solution/icon-5-on.png");
	}

	.solution_page_1 .section3 .item:nth-of-type(2) i {
		background-image: url("/template/pc/skin/img/solution/icon-6-on.png");
	}

	.solution_page_1 .section3 .item .txt_block {
		top: 10%;
		left: 10%;
		right: 10%;
		bottom: 10%;
		width: 80%;
		height: 80%;
		margin: 0;
	}

	.solution_page_1 .section3 .item i {
		width: 40px;
		height: 40px;
		background-size: contain;
	}

	.solution_page_1 .section3 .item h3 {
		font-size: 18px;
		margin: 10px 0;
	}

	.solution_page_1 .section3 .item p {
		font-size: 14px;
		color: #fff;
	}

	.solution_page_1 .section4 {
		padding: 10vw 20px;
	}

	.solution_page_1 .section4 svg {
		display: none;
	}

	.solution_page_1 .section4 .main {
		width: 100%;
		height: auto;
		border: none;
		border-radius: 0;
		margin: 20px auto 0;
	}

	.solution_page_1 .section4 .bg_box {
		width: 100%;
		height: auto;
		border-radius: 0;
		position: static;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.solution_page_1 .section4 .bg_box .item {
		position: static;
		opacity: 1;
		margin: 0 2px;
	}

	.solution_page_1 .section4 .icon_box,
	.solution_page_1 .section4 .info_box {
		display: none;
	}

	.solution_page_1 .section4 .txt_box {
		margin-top: 15px;
	}

	.solution_page_1 .section4 .txt_box .item {
		position: static;
		text-align: center !important;
	}

	.solution_page_1 .section4 .txt_box .item p {
		display: block;
	}

	.solution_page_1 .section4 .txt_box .item:nth-of-type(1) {
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.solution_page_1 .section4 .txt_box .slick-dots,
	.solution_page_1 .section5 .slick-dots,
	.system_detail .section1 .slick-dots,
	.page_system .section2 .slick-dots {
		text-align: center;
		margin-top: 15px;
		font-size: 0;
	}

	.solution_page_1 .section4 .txt_box .slick-dots li,
	.solution_page_1 .section5 .slick-dots li,
	.system_detail .section1 .slick-dots li,
	.page_system .section2 .slick-dots li {
		display: inline-block;
		vertical-align: top;
		width: 8px;
		height: 8px;
		background-color: #bfbfbf;
		margin: 0 2px;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.solution_page_1 .section4 .txt_box .slick-dots li.slick-active,
	.solution_page_1 .section5 .slick-dots li.slick-active,
	.system_detail .section1 .slick-dots li.slick-active,
	.page_system .section2 .slick-dots li.slick-active {
		background-color: #ff8615;
	}

	.solution_page_1 .section4 .txt_box .slick-dots button,
	.solution_page_1 .section5 .slick-dots button,
	.system_detail .section1 .slick-dots button,
	.page_system .section2 .slick-dots button {
		display: none;
	}

	.solution_page_1 .section5 {
		padding: 10vw 20px;
	}

	.solution_page_1 .section5 .items {
		margin-top: 20px;
	}

	.solution_page_1 .section5 .item {
		margin: 0 2px;
		width: 100%;
	}

	.solution_page_1 .section5 .item .txt_block {
		padding: 15px 20px;
	}

	.solution_page_1 .section5 .item h3 {
		font-size: 18px;
	}

	.solution_page_1 .section5 .item p {
		margin-top: 10px;
		line-height: 20px;
		height: 40px;
	}

	.system_detail .section1 .item .txt {
		left: 20px;
		right: 20px;
	}

	.system_detail .section1 .item .txt .logo img {
		height: 16px;
	}

	.system_detail .section1 .item .txt h3 {
		font-size: 18px;
		margin-top: 10px;
	}

	.system_detail .section2 {
		padding: 10vw 20px;
	}

	.system_detail .section2 img.logo {
		margin-top: 10px;
	}

	.system_detail .section2 .para,
	.system_detail .section3 .tab_cont p {
		margin-top: 15px;
		font-size: 14px;
		line-height: 24px;
	}

	.system_detail .section3 h3 {
		font-size: 20px;
	}

	.system_detail .section3 h3.line:after {
		margin-top: 10px;
	}

	.system_detail .section3 .tab_wrap {
		margin-top: 20px;
	}

	.system_detail .section3 .tab_tit span {
		width: 120px;
		line-height: 36px;
		font-size: 14px;
		margin: 0 2px;
	}

	.system_detail .section3 {
		padding: 0 20px;
	}

	.system_detail .section3 .tab_cont {
		margin-top: 15px;
	}

	.system_detail .section3 .tab_cont h3 {
		font-size: 16px;
	}

	.system_detail .section3 .items .item .img_block {
		height: 50vw;
	}

	.system_detail .section3 .items .item .img_block img {
		max-width: 60%;
		max-height: 60%;
	}

	.system_detail .section3 .slicks {
		margin-top: 20px;
	}

	.system_detail .section3 .items .item .txt_block {
		padding: 0 15px 20px;
	}

	.system_detail .section3 .items .item .txt_block:before {
		margin: 0 auto;
	}

	.system_detail .section3 .items .item h3 {
		font-size: 18px;
		text-align: center;
	}

	.system_detail .section3 .slick-dots li {
		width: 20px;
		margin: 0 2px;
	}

	.system_detail .section3 .slick-dots li.slick-active {
		height: 3px;
	}

	.system_detail .section4 {
		padding: 10vw 20px;
	}

	.system_detail .section4:before {
		display: none;
	}

	.system_detail .section4 .slick {
		width: 100%;
	}

	.system_detail .section3 .items {
		margin-right: 0;
	}

	.system_detail .section3 .items .item {
		margin: 0 2px;
	}

	.system_detail .section4 .slick .item a {
		top: 40%;
	}

	.system_detail .section4 .slick .item span {
		left: 15px;
		right: 15px;
		bottom: 15px;
		font-size: 14px;
	}

	.system_detail .section4 .slick .slick-dots {
		margin-top: 15px;
	}

	.system_detail .section4 .slick .slick-dots li {
		padding: 0 10px 10px;
	}

	.system_detail .back_cont {
		padding-bottom: 10vw;
	}

	.page_system .section2 {
		padding: 10vw 20px;
	}

	.page_system .section2 .inner_tit2 {
		padding: 0;
	}

	.page_system .section2 .items {
		margin-top: 20px;
	}

	.page_system .section2 .item {
		width: 100%;
		margin: 0 2px;
	}

	.page_system .section2 .item .txt_block {
		left: 15px;
		right: 15px;
		bottom: 15px;
	}

	.page_system .section2 .item h3 {
		font-size: 18px;
		margin-top: 10px;
	}

	.page_system .section1 {
		height: auto;
	}

	.page_system .section1 .cont {
		position: static;
		padding: 10vw 20px;
	}

	.page_system .section1 .main {
		width: 100%;
		margin: 0;
	}

	.page_system .section1 .main img {
		display: none;
	}

	.page_system .section1 p.tit {
		margin-top: 10px;
	}

	.page_system .section1 .dots {
		font-size: 0;
		text-align: left;
	}

	.page_system .section1 .dot {
		width: 25%;
		height: auto;
		display: inline-block;
		vertical-align: top;
		position: static;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		transform: none;
		margin-top: 20px;
		text-align: center;
	}

	.page_system .section1 .dot span {
		display: block;
		position: static;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.page_system .section1 .dot .icon {
		width: 60px;
		height: 66px;
		margin: 0 auto;
	}

	.page_system .popups {
		position: fixed;
	}

	.page_system .popups .slick .item i {
		width: 40px;
		height: 40px;
	}

	.page_system .popups .slick .item h3 {
		font-size: 20px;
	}

	.page_system .popups .slick .item .para,
	.page_system .popups .slick .item .logo {
		margin-top: 20px;
	}

	.page_system .popups .slick .item h4 {
		font-size: 16px;
	}

	.page_system .popups .slick .item p {
		height: auto;
	}

	.page_system .popups .slick .item .logo .s_logos {
		margin-top: 15px;
	}

	.page_system .popups .slick .item .slick-dots {
		margin-top: 10px;
		margin-right: 10px;
	}

	.page_system .popups .slick .item .slick-dots li {
		width: 8px;
		height: 8px;
		margin: 0 2px;
	}

	.page_system .popups .slick .item .logo .s_logo {
		display: inline-block;
		vertical-align: top;
		width: calc(50% - 10px);
		margin-right: 10px;
	}

	.page_system .popups .slick .item .logo .s_logo .lo {
		height: 60px;
	}

	.page_system .popups .slick .item .logo .s_logo span {
		font-size: 12px;
	}

	.page_system .popups .close {
		top: 20px;
		right: 20px;
		width: 30px;
		height: 30px;
	}

	.page_system .popups .slick .item .txt_block {
		width: 90%;
		top: 60px;
		bottom: 80px;
		overflow-y: auto;
		overflow-x: hidden;
		padding-right: 5px;
	}

	.page_system .popups .btns {
		top: auto;
		bottom: 15px;
		left: 0;
		right: 0;
		text-align: center;
	}

	.page_system .popups .btns .btn {
		display: inline-block;
		vertical-align: top;
		margin: 0 10px;
	}

	.page_system .popups .btns .next {
		margin-top: 0;
	}

	.page_system .popups .btns .btn .tit {
		display: none;
	}

	.video_pop video {
		max-width: 80vw;
		max-height: 80vh;
	}

	.video_pop .iframe {
		width: 90vw;
	}

	.search_list .section1 {
		padding: 10vw 20px;
	}

	.search_list .section1 .items {
		margin: 20px 0;
	}

	.search_list .section1 .item {
		padding: 15px 0;
	}

	.search_list .section1 .item h3 {
		font-size: 16px;
	}

	.search_list .section1 .item .date {
		font-size: 12px;
	}

	.search_list .section1 .item p {
		font-size: 14px;
		line-height: 24px;
		max-height: 48px;
	}
}

@media (max-width:767px) {
	.para br {
		display: none;
	}

	.system_detail .section3 .tab_tit span {
		margin-bottom: 8px;
	}
}





/* 分页 */
.pagelists {
	text-align: center;
}

.tcdPageCode {
	text-align: center;
}

.tcdPageCode>li {
	display: inline-block;
	padding: 10px;
	border: 1px solid #e0e0e0;
	margin: 0 5px;
}

.tcdPageCode>li a,
.tcdPageCode>li span {
	font-size: 14px;
	display: block;
	width: 100%;
	height: 100%;
}

.tcdPageCode>li span.current {
	color: #eeb436;
	/* font-size: 18px; */
	font-weight: bold;
}


/* 友情链接 */
.links span {
	font-size: 16px;
	color: #e6e6e6;
}

.links a {
	font-size: 16px;
	color: #e6e6e6;
}












/* 留言模块 */
.page_jiangxin .message {
	padding: 6vw 4vw;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	display: flex;
}

.page_jiangxin .message .title {
	text-align: center;
}

.page_jiangxin .message .title div:nth-child(1) {
	font-size: 48px;
	text-align: center;
	margin-bottom: 16px;
}

.page_jiangxin .message .title div:nth-child(2) {
	font-size: 20px;
	text-align: center;
	color: #666;
}

.page_jiangxin .message .form {
	background: #fff;
	margin-top: 2vw;
	box-shadow: 0 7px 27px 0 rgba(0, 0, 0, .1);
	position: relative;
	width: 67.5%;
}

.page_jiangxin .message .form>.content div.input {
	width: 90%;
	margin: 1vw auto 2vw;
	display: flex;
	justify-content: space-between;
}

.page_jiangxin .message .form>.content div.input>div {
	width: 32%;
	display: flex;
	flex-direction: column;
}

.page_jiangxin .message .form>.content div.input>div label {
	font-size: 16px;
	color: #999;
}

.page_jiangxin .message .form>.content div.input>div>input {
	color: #333;
	margin-top: 12px;
	font-size: 18px;
	height: 60px;
	background: #f4f4f4;
	border-radius: 6px;
	border: none;
}

.page_jiangxin .message .form>.content div.input>div>.select_city {
	color: #333;
	margin-top: 12px;
	height: 60px;
	background: #f4f4f4;
	border-radius: 6px;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_jiangxin .message .form>.content div.input>div>.select_city>div {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_jiangxin .message .form>.content div.input>div>.select_city>div select {
	width: 60%;
}

.page_jiangxin .message .form>.content div.input>div>.select_city>div>div {
	color: #333;
	margin-left: 0.5vw;
}

.page_jiangxin .message .form .textarea {
	width: 90%;
	margin: 1vw auto 2vw;
}

.page_jiangxin .message .form .textarea label {
	font-size: 16px;
	color: #999;
}

.page_jiangxin .message .form .textarea textarea {
	font-size: 18px;
	display: block;
	padding: 0.1vw;
	font-size: 20px;
	color: #333;
	margin-top: 1.1vw;
	width: 100%;
	height: 232px;
	background: #f4f4f4;
	border-radius: .375rem;
	border: none;
	resize: none;
}

.page_jiangxin .message .form button {
	display: inherit;
	margin: 2vw auto 2vw;
	border: 1px solid #ff9f2d;
	border-radius: 6px;
	color: #ff9f2d;
	background: #fff;
	font-size: 16px;
	text-align: center;
	width: 246px;
	line-height: 60px;
	height: 60px;

}

.page_jiangxin .message .form button:hover {
	color: #fff;
	background: #ff9f2d;
}

@media screen and (max-width: 992px) {
	.page_jiangxin .message .form>.content div.input {
		flex-wrap: wrap;
		margin-top: 4vw;
	}

	.page_jiangxin .message .form>.content div.input>div {
		width: 100%;
		margin-top: 2vw;
	}

	.page_jiangxin .message .form {
		width: 100%;
		margin-top: 4vw;
	}

	.page_jiangxin .message .form>.content div.input>div>input {
		height: 45px;
		font-size: 16px;
	}

	.page_jiangxin .message .form>.content div.input>div>.select_city {
		height: 45px;
	}

	.page_jiangxin .message .form .textarea textarea {
		height: 100px;
		margin-top: 12px;
		font-size: 16px;
	}

	.page_jiangxin .message .form button {
		width: 180px;
		height: 45px;
		font-size: 14px;
		color: #ff9f2d;
		line-height: 45px;
		margin: 4vw auto 4vw;
	}

	.page_jiangxin .message .form>.content div.input>div label {
		font-size: 14px;
	}

	.page_jiangxin .message .form .textarea label {
		font-size: 14px;
	}

}

/* 留言模块 end*/













/* 关于我们 联系我们版块*/
.contact_message {
	padding: 6vw 7vw;
	width: 100%;
	background-color: #f6f6f6
}

.contact_message .contact_message_content {
	width: 1200px;
	margin: 0 auto
}

.contact_message .title {
	font-size: 30px;
	padding-bottom: 18px;
	color: #2f2f2f;
	font-weight: 400;
	padding-top: 50px
}

.contact_message .underline {
	width: 34px;
	border-bottom: 2px solid #000
}

.contact_message .contact_company {
	margin-top: 18px
}

.contact_message .contact_company .fourth {
	font-size: 14px
}

.contact_message .contact_company .fourth span {
	font-size: 14px;
	color: red
}

.contact_message h2,
.contact_message h3 {
	font-size: 18px;
	line-height: 36px;
	color: #2f2f2f;
	font-weight: 500
}

.contact_message p {
	font-size: 16px;
	line-height: 32px;
	color: #888
}

.contact_message .left {
	width: 400px;
	float: left
}

.contact_message .right {
	width: 500px;
	float: left
}

.contact_message .last {
	float: left
}

.contact_message .contact_cooperation {
	margin-top: 20px
}

.contact_message a {
	color: #2f7cd3
}

.contact_message .contact_ecology {
	margin-top: 34px
}

.clearfix:after {
	content: ' ';
	display: block;
	clear: both;
	height: 0
}

.clearfix {
	zoom: 1
}

/* .contact_bg1 {
	background-image: url(//static.orvibo.com/guanwang_second/front/images/new_version/contactUs/banner_01-26377c0cef.jpg);
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 300px
} */
@media screen and (max-width: 992px) {
	.contact_message .title{
		font-size: 24px;
		padding-bottom: 10px;
	}
	.contact_message{
		padding: 0vw 2vw;
		height: auto;
	}
	.contact_message .contact_message_content{
		width: 100%;
		padding-bottom: 20px;
	}
	.contact_message .left{
		width: 100%;
	}
	.contact_message .right{
		width: 100%;
	}
	.contact_message h2, .contact_message h3{
		font-size: 16px;
	}
	.contact_message p{
		font-size: 14px;
		line-height: 24px;
	}
	.contact_message .contact_ecology{
		margin-top: 15px;
	}
}
/* 关于我们 联系我们版块 end*/





.solution_page_1>p>img{
	width: 100%;
}


.links{
	margin-top: 20px;
}
.links::after{
	clear: both;
	content: ".";
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}
.links>p{
	float: left;
	font-size: 13px;
	color: #7d7d7d;
	margin-right: 10px;
	line-height: 21px;
}
.links>div.as{
	width: 70%;
	float: left;
}
.links>div.as a{
	margin-right: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.3);
}
.links>div.as a:hover{
	color: #fff;
}