@charset "UTF-8";

/*Global style*/

* {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #333333;
	background-color: #ffffff;
	overflow-x: hidden;
}

ul,
li {
	list-style-type: none;
	margin: 0;
}

input,
textarea,
select {
	resize: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	border: 0;
}

a {
	text-decoration: none;
	color: #000;
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

img {
	max-width: 100%;
	border-style: none;
	vertical-align: middle;
}

.zoom-img {
	overflow: hidden;
}

.zoom-img .img {
	overflow: hidden;
}

.zoom-img img {
	transition: all .5s;
}

.zoom-img:hover img {
	transform: scale(1.04);
	-ms-transform: scale(1.04);
	-webkit-transform: scale(1.04);
	-o-transform: scale(1.04);
	-moz-transform: scale(1.04);
}

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

.clear {
	zoom: 1
}

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

.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: none;
	box-shadow: none;
}

.btn-link:focus,
.btn-link:hover {
	text-decoration: none;
}

.h1,
.h2,
.h3,
.h4,
.h5 {
	margin: 0;
	font-weight: normal;
}


/* header */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 9;
	transition: all .3s;
}

.container {
	width: 1630px;
}

.head-wrap {
	justify-content: space-between;
	align-items: stretch;
	height: 140px;
	transition: all .3s;
}

.head-logo {
	width: 274px;
	line-height: 140px;
	font-size: 0;
	transition: all .3s;
}

.head-nav {
	width: calc(100% - 570px);
	justify-content: space-between;
	align-items: center;
	padding-left: 90px;
	margin-left: 75px;
	border-left: 1px solid #e8e8e8;
}

.head-nav .column {
	height: 140px;
	line-height: 140px;
	transition: all .3s;
}

.head-nav .item {
	position: relative;
	font-size: 20px;
	color: #333333;
}

.head-nav .column.on .item {
	color: #3860f4;
	font-weight: bold;
}

.head-nav .column.on .item::before {
	position: absolute;
	content: "";
	top: 140%;
	left: 50%;
	transform: translate(-50%, 0);
	width: 26px;
	height: 2px;
	background-color: #3860f4;
}

.head-nav .drop-down {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	font-size: 0;
	line-height: 1;
	text-align: center;
	padding: 26px 0;
	border-top: 1px solid #c1c1c1;
	background-color: rgba(255, 255, 255, .8);
	z-index: 10;
}

.head-nav .drop-down .box {
	display: inline-block;
}

.head-nav .drop-down a {
	display: inline-block;
	font-size: 16px;
	color: #333333;
	line-height: 36px;
	font-weight: bold;
	margin: 0 58px;
	transition: all .3s;
}

.head-nav .drop-down a.on {
	color: #3860f4;
}

.head-nav .drop-down a:hover {
	color: #3860f4;
}

.head-rbox {
	justify-content: flex-end;
	align-items: center;
	margin-left: 80px;
}

.head-lang {
	position: relative;
	margin-left: 28px;
}

.head-rbox .btn-select {
	position: relative;
	padding-left: 30px;
	background-image: url(../images/icon2.png);
	background-repeat: no-repeat;
	background-position: left center;
	cursor: pointer;
}

.head-rbox .name {
	font-size: 16px;
	color: #333333;
}

.head-rbox .btn-select .icon {
	margin-left: 12px;
}

.head-search {
	position: relative;
}

.head-search .icon {
	cursor: pointer;
}

.head-search .drop-down {
	display: none;
	position: absolute;
	top: 180%;
	left: 50%;
	width: 300px;
	background-color: #ffffff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
	border-radius: 25px;
	transform: translate(-50%, 0);
}

.head-search .form {
	align-items: center;
	font-size: 0;
	padding: 10px 20px 10px 10px;
}

.head-search .input-text {
	width: calc(100% - 17px);
	font-size: 14px;
	color: #666666;
	height: 30px;
	padding: 0 10px;
}

.head-search .btn-submit {
	width: 17px;
	font-size: 0;
	padding: 0;
	background: none;
	border: 0;
	line-height: 1;
}

.head-lang .drop-down {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	width: 100%;
	padding: 5px;
	white-space: nowrap;
	transform: translate(-50%, 0);
	box-shadow: 0 3px 7px rgba(0, 0, 0, .1);
	background-color: #ffffff;
}

.head-lang .drop-down a {
	display: block;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
}

.header.on {
	box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

.header.on .head-wrap {
	height: 90px;
}

.header.on .head-logo {
	line-height: 90px;
}

.header.on .head-nav .column {
	height: 90px;
	line-height: 90px;
}

.header .column:last-child .box {
	margin-left: 40%;
}

.head-menu {
	display: none;
}

.head-menu .btn-menu {
	width: 40px;
	height: auto;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.head-menu .btn-menu>span {
	width: 40px;
	height: 2px;
	background-color: #000000;
	margin: 4px 0;
	transition: all .3s;
}

.head-menu .btn-menu.on>span {
	width: 20px;
}

.head-menu .btn-menu.on>span:first-child {
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.head-menu .btn-menu.on>span:nth-child(2) {
	display: none;
}

.head-menu .btn-menu.on>span:last-child {
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	margin-top: -6px;
}

.head-menu .drop-down {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	height: calc(100% - 70px);
	background-color: #ffffff;
	z-index: 99;
	padding: 15px 0;
}

.m-head-nav .column {
	padding: 0 30px;
}

.m-head-nav .item {
	display: block;
	font-size: 18px;
	color: #333333;
	line-height: 40px;
	border-bottom: 1px dashed #eeeeee;
}

.m-head-nav .drop-down2 {
	display: none;
}

.m-head-nav .drop-down2 a {
	display: block;
	font-size: 14px;
	color: #333333;
	line-height: 30px;
}


/* footer */

.footer {
	border-top: 1px solid #eeeeee;
	background-color: #f8f8f8;
}

.foot-wrap {
	justify-content: space-between;
	align-items: stretch;
}

.footer .l-box {
	width: 74.6875%;
}

.foot-nav {
	padding: 60px 0;
}

.foot-nav .column {
	margin-right: 110px;
}

.foot-nav .column:last-child {
	margin-right: 0;
}

.foot-nav a {
	display: block;
	font-size: 14px;
	color: #8a8a8a;
	line-height: 33px;
	transition: all .3s;
}

.foot-nav a:hover {
	color: #3860f4;
}

.foot-nav .h1 {
	font-size: 18px;
	color: #333333;
	line-height: 27px;
	margin-bottom: 10px;
}

.foot-info {
	justify-content: space-between;
	align-items: center;
	padding: 12px 0 21px;
	padding-right: 90px;
	border-top: 1px solid #e5e5e5;
}

.foot-info .d1 {
	line-height: 34px;
}

.foot-info .name {
	font-size: 16px;
	color: #8a8a8a;
	line-height: 34px;
	margin-left: 12px;
}

.foot-info .d2 {
	font-size: 16px;
	color: #333333;
	line-height: 34px;
}

.footer .r-box {
	flex-direction: column;
	justify-content: space-between;
	width: 25.3125%;
	padding: 60px 40px 75px;
	border-left: 1px solid #e5e5e5;
}

.footer .r-box .h1 {
	font-size: 18px;
	color: #333333;
	line-height: 34px;
	margin-bottom: 7px;
}

.footer .r-box .text {
	font-size: 14px;
	color: #8a8a8a;
	line-height: 31px;
}

.foot-share {
	margin-top: 20px;
}

.foot-share .name {
	font-size: 18px;
	color: #333333;
	line-height: 34px;
	margin-bottom: 17px;
}

.foot-share .share {
	align-items: center;
}

.foot-share a {
	width: 24px;
	height: 24px;
	margin-right: 27px;
}

.foot-share a:last-child {
	margin-right: 0;
}

.foot-share img {
	transition: all .3s;
}

.foot-share .img2 {
	display: none;
}

.foot-share a:hover .img1 {
	display: none;
}

.foot-share a:hover .img2 {
	display: block;
}

.footer .bot-box {
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #e5e5e5;
	padding: 18px 0 11px;
	font-size: 14px;
	color: #8a8a8a;
	line-height: 34px;
}

.footer .bot-box a {
	color: #8a8a8a;
}


/* 媒体查询 */

@media only screen and (max-width: 1680px) {
	.container {
		width: 1430px;
	}
	.head-nav {
		padding-left: 60px;
		margin-left: 30px;
	}
	.foot-info {
		flex-wrap: wrap;
		padding-bottom: 10px;
	}
	.foot-info .column {
		margin-right: 30px;
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 1600px) {
	.container {
		width: 1200px;
	}
}

@media only screen and (max-width: 1440px) {
	.head-logo {
		width: 220px;
	}
	.head-nav {
		width: calc(100% - 466px);
	}
	.head-nav .item {
		font-size: 16px;
	}
	.head-nav .drop-down a {
		font-size: 14px;
		line-height: 24px;
	}
	.footer .l-box {
		width: 70%;
	}
	.foot-nav {
		padding: 40px 0;
	}
	.foot-nav .column {
		margin-right: 80px;
	}
	.foot-nav a {
		line-height: 30px;
	}
	.foot-nav .h1 {
		font-size: 16px;
		line-height: 26px;
	}
	.foot-info {
		padding-right: 50px;
	}
	.foot-info .d1 {
		line-height: 24px;
	}
	.foot-info .name {
		font-size: 14px;
		line-height: 24px;
	}
	.foot-info .d2 {
		font-size: 14px;
		line-height: 24px;
	}
	.footer .r-box {
		width: 30%;
		padding: 40px 30px;
		padding-right: 0;
	}
	.footer .r-box .h1 {
		font-size: 16px;
		line-height: 26px;
	}
	.footer .r-box .text {
		line-height: 30px;
	}
	.foot-share .name {
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 10px;
	}
	.footer .bot-box {
		padding: 10px 0;
	}
}

@media only screen and (max-width: 1280px) {
	.container {
		width: 1030px;
	}
	.head-nav {
		padding-left: 30px;
	}
	.head-rbox {
		margin-left: 30px;
	}
}

@media only screen and (max-width: 1199px) {
	.container {
		width: 90%;
	}
	.head-wrap {
		align-items: center;
	}
	.head-nav {
		display: none;
	}
	.head-rbox {
		display: none;
	}
	.head-menu {
		display: block;
	}
	.head-wrap {
		height: 70px;
	}
	.head-logo {
		line-height: 70px;
	}
	.header.on .head-wrap {
		height: 70px;
	}
	.header.on .head-logo {
		line-height: 70px;
	}
	.foot-nav .column {
		margin-right: 60px;
	}
}

@media only screen and (max-width: 1024px) {
	.footer .top-box {
		flex-wrap: wrap;
	}
	.footer .l-box {
		width: 100%;
	}
	.foot-nav {
		flex-wrap: wrap;
		padding-bottom: 10px;
	}
	.foot-nav .column {
		width: 100%;
		margin-right: 0;
	}
	.foot-nav .h1 {
		display: block;
		line-height: 40px;
		margin-bottom: 0;
	}
	.foot-nav .nav {
		display: none;
		font-size: 0;
	}
	.foot-nav a {
		display: inline-block;
		margin-right: 30px;
	}
	.foot-info {
		padding: 10px 0 0;
	}
	.footer .r-box {
		width: 100%;
		padding: 10px 0;
		border: 0;
	}
}

@media only screen and (max-width: 767px) {
	.container {
		width: 100%;
	}
	.head-wrap {
		height: 50px;
	}
	.head-logo {
		line-height: 50px;
	}
	.head-logo img {
		height: 40px;
	}
	.header.on .head-wrap {
		height: 50px;
	}
	.header.on .head-logo {
		line-height: 50px;
	}
	.head-menu .btn-menu {
		width: 30px;
	}
	.head-menu .btn-menu>span {
		width: 30px;
		margin: 3px 0;
	}
	.head-menu .btn-menu.on>span:last-child {
		margin-top: -5px;
	}
	.head-menu .drop-down {
		top: 50px;
		height: calc(100% - 50px);
	}
	.m-head-nav .column {
		padding: 0 15px;
	}
	.m-head-nav .item {
		font-size: 16px;
		line-height: 36px;
	}
	.foot-nav {
		padding-top: 20px;
	}
	.foot-nav .nav a {
		margin-top: 5px;
		margin-right: 15px;
	}
	.foot-nav .h1 {
		display: block !important;
		font-size: 16px;
		line-height: 36px;
		margin-bottom: 0;
		margin-right: 0;
		border-bottom: 1px solid #eeeeee;
	}
	.foot-nav .column:last-child .h1 {
		border-bottom: 0;
	}
	.foot-info {
		align-items: flex-start;
	}
	.foot-info .column {
		width: 50%;
		margin-right: 0;
	}
	.footer .r-box {
		padding-top: 0;
	}
	.foot-share {
		margin-top: 0;
	}
	.foot-share .name {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 5px;
	}
	.foot-share a {
		width: 20px;
		height: 20px;
		margin-right: 15px;
	}
	.footer .r-box .text-box {
		display: none;
	}
	.footer .bot-box {
		flex-wrap: wrap;
	}
	.footer .bot-box {
		font-size: 14px;
		line-height: 24px;
	}
}


/* home */

.animated {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
}

.page-main {
	padding-top: 140px;
}

.page-main.on {
	padding-top: 90px;
}

.swiper1 a {
	position: relative;
	display: block;
}

.swiper1 .swiper-slide .suspen {
	position: absolute;
	top: 14%;
	left: 50%;
	transform: translate(-50%, 0);
	text-align: center;
}

.swiper1 .text {
	font-size: 40px;
	color: #f6f6f6;
	line-height: 69px;
	font-weight: bold;
	margin-bottom: 40px;
}

.swiper1 .btn-more {
	font-size: 16px;
	color: #ffffff;
	line-height: 27px;
	text-decoration: underline;
}

.swiper1 .swiper-pagination {
	font-size: 0;
	bottom: 35px;
}

.swiper1 .swiper-pagination-bullet {
	position: relative;
	width: 11px;
	height: 11px;
	margin: 0 35px !important;
	background-color: #ffffff;
	opacity: .5;
}

.swiper1 .swiper-pagination-bullet::before {
	position: absolute;
	content: "";
	top: 5px;
	left: 17px;
	width: 58px;
	height: 1px;
	background-color: #ffffff;
}

.swiper1 .swiper-pagination-bullet:last-child::before {
	display: none;
}

.swiper1 .swiper-pagination-bullet-active {
	border: 2px solid #ffffff;
	background: none;
	opacity: 1;
}

.swiper1 .swiper-pagination-bullet-active::before {
	top: 3px;
	opacity: .5;
}

.home-prod {
	padding: 70px 0 52px;
}

.swiper2 {
	padding: 30px 0 74px;
}

.swiper2 a {
	display: block;
	border: 1px solid #eeeeee;
	transition: all .3s;
}

.swiper2 .text-box {
	padding: 15px 30px 27px;
	border-top: 1px solid #eeeeee;
}

.swiper2 .name {
	font-size: 22px;
	color: #333333;
	line-height: 60px;
	font-weight: bold;
	margin-bottom: 14px;
	transition: all .3s;
}

.swiper2 .list-box {
	justify-content: space-between;
	flex-wrap: wrap;
}

.swiper2 .column {
	width: 40%;
	padding-bottom: 14px;
	border-bottom: 1px solid #e7e7e7;
	margin-bottom: 38px;
}

.swiper2 .text {
	font-size: 16px;
	color: #4d4d4d;
	line-height: 26px;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.swiper2 .bot-box {
	justify-content: space-between;
	align-items: center;
}

.swiper2 .view {
	font-size: 14px;
	color: #666666;
	line-height: 26px;
}

.swiper2 .icon {
	width: 21px;
	height: 12px;
	background-image: url(../images/icon4.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all .3s;
}

.swiper2 a:hover {
	margin-top: -30px;
	box-shadow: 0 5px 24px rgba(0, 0, 0, .1);
}

.swiper2 a:hover .name {
	color: #3860f4;
}

.swiper2 a:hover .view {
	color: #3860f4;
}

.swiper2 a:hover .icon {
	background-image: url(../images/icon5.png);
}

.swiper2 .swiper-pagination {
	font-size: 0;
	bottom: 0;
}

.swiper2 .swiper-pagination-bullet {
	position: relative;
	width: 11px;
	height: 11px;
	margin: 0 35px !important;
	background-color: #d2d2dd;
	opacity: .5;
}

.swiper2 .swiper-pagination-bullet::before {
	position: absolute;
	content: "";
	top: 5px;
	left: 17px;
	width: 58px;
	height: 1px;
	background-color: #d2d2d2;
}

.swiper2 .swiper-pagination-bullet:last-child::before {
	display: none;
}

.swiper2 .swiper-pagination-bullet-active {
	border: 2px solid #3860f4;
	background: none;
	opacity: 1;
}

.swiper2 .swiper-pagination-bullet-active::before {
	top: 3px;
	opacity: .5;
}

.home-app {
	padding: 107px 0 90px;
	padding-left: 7.3%;
	margin-right: -15px;
	background-color: #f6f9fb;
}

.home-app .container {
	width: 100%;
}

.home-main .title .h1 {
	font-size: 34px;
	color: #333333;
	line-height: 1;
	font-weight: bold;
}

.home-main .title .h2 {
	font-size: 18px;
	color: #666666;
	line-height: 54px;
}

.home-app .l-box {
	width: 42.88%;
	padding-top: 45px;
	padding-right: 5%;
}

.home-app .title {
	margin-bottom: 67px;
}

.app-list {
	align-items: center;
	flex-wrap: wrap;
}

.app-list .column {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 140px;
	height: 140px;
	border: 1px solid #def3fe;
	border-radius: 50%;
	overflow: hidden;
	background-color: #ffffff;
	margin-right: 60px;
	margin-bottom: 60px;
	transition: all .5s;
	cursor: pointer;
}

.app-list .column:nth-child(3n) {
	margin-right: 0;
}

.app-list .img2 {
	display: none;
}

.app-list .name {
	font-size: 16px;
	color: #666666;
	line-height: 1;
	margin-top: 10px;
	transition: all .3s;
}

.app-list .column.on {
	background-color: #3860f4;
	border: 1px solid #3860f4;
}

.app-list .column.on .img1 {
	display: none;
}

.app-list .column.on .img2 {
	display: block;
}

.app-list .column.on .name {
	color: #ffffff;
}

.home-app .r-box {
	width: 57.12%;
	background-color: #ffffff;
	border-radius: 30px 0 0 30px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, .2);
	padding: 80px 161px 50px 75px;
	background-image: url(../images/img3.jpg);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
}

.swiper3 .swiper-slide {
	background-color: #ffffff;
}

.swiper3 .text-box {
	width: calc(100% - 340px);
	padding-right: 80px;
}

.swiper3 .img-box{
	width: 340px;
}

.swiper3 .name {
	font-size: 22px;
	color: #333333;
	line-height: 54px;
	font-weight: bold;
	margin-bottom: 8px;
}

.swiper3 .h1 {
	font-size: 18px;
	color: #333333;
	line-height: 54px;
}

.swiper3 .text {
	font-size: 16px;
	color: #666666;
	line-height: 33px;
	height: 198px;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}

.swiper3 .btn-more {
	font-size: 14px;
	color: #ffffff;
	background-color: #3860f4;
	border-radius: 15px;
	width: 150px;
	height: 50px;
	padding: 0;
	line-height: 50px;
	margin-top: 10px;
}

.home-app .bot-box {
	max-width: 85%;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #e9e9e9;
	padding-top: 25px;
	margin-top: 55px;
}

.home-app .swiper-button-next,
.home-app .swiper-button-prev {
	position: static;
	top: auto;
	margin-top: auto;
	width: 32px;
	height: 15px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all .3s;
}

.home-app .swiper-button-prev {
	background-image: url(../images/icon12.png);
}

.home-app .swiper-button-next {
	background-image: url(../images/icon12-2.png);
	margin-left: 37px;
}

.home-app .swiper-button-prev:hover {
	background-image: url(../images/icon13.png);
}

.home-app .swiper-button-next:hover {
	background-image: url(../images/icon13-2.png);
}

.home-app .swiper-pagination {
	position: static;
}

.home-app .swiper-pagination-bullet {
	width: auto;
	height: auto;
	font-size: 16px;
	color: #888888;
	line-height: 24px;
	margin: 0 12px;
	opacity: 1;
	background: none;
}

.home-app .swiper-pagination-bullet:last-child {
	margin-right: 0;
}

.home-app .swiper-pagination-bullet-active {
	color: #3860f4;
}

.home-about .container {
	width: 100%;
	padding: 0;
}

.home-about .box-wrap {
	justify-content: space-between;
	align-items: stretch;
}

.home-about .l-box {
	width: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-top: 6.73%;
	padding-left: 8%;
	padding-right: 4.5%;
}

.home-about .title {
	margin-bottom: 50px;
}

.home-about .title .h1 {
	color: #ffffff;
}

.home-about .l-box .text {
	font-size: 20px;
	color: #ffffff;
	line-height: 50px;
	font-weight: bold;
}

.home-about .l-box .text2 {
	font-size: 16px;
	color: #ffffff;
	line-height: 36px;
	font-weight: normal;
}

.home-about .l-box .list-box {
	align-items: center;
	margin-top: 70px;
}

.home-about .l-box .column {
	text-align: center;
	margin-right: 70px;
}

.home-about .l-box .column:last-child {
	margin-right: 0;
}

.home-about .l-box .name {
	font-size: 16px;
	color: #ffffff;
	line-height: 58px;
}

.home-about .r-box {
	width: 50%;
}

.home-about .bot-box {
	text-align: center;
	padding: 5.26% 16.82% 6.63%;
	background-color: #f9f9f9;
}

.home-about .r-box .h1 {
	font-size: 24px;
	color: #333333;
	line-height: 60px;
	font-weight: bold;
	margin-bottom: 6px;
}

.home-about .r-box .text {
	font-size: 16px;
	color: #333333;
	line-height: 36px;
	text-align: left;
}

.data-list {
	justify-content: center;
	align-items: center;
	margin-top: 55px;
}

.data-list .column {
	margin: 0 45px;
	white-space: nowrap;
}

.data-list .d1 {
	font-size: 36px;
	color: #3860f4;
	line-height: 36px;
	font-weight: bold;
}

.data-list .d2 {
	font-size: 16px;
	color: #666666;
	line-height: 36px;
}

.home-news {
	padding: 95px 0 75px;
}

.home-news .title {
	margin-bottom: 60px;
}

.home-news .l-box {
	width: 60.625%;
	padding-right: 8.13%;
}

.news-list .column {
	padding-right: 260px;
	padding-bottom: 30px;
	margin-bottom: 34px;
	border-bottom: 1px solid #e7e7e7;
	background-image: url(../images/icon4.png);
	background-repeat: no-repeat;
	background-position: 98% center;
	transition: all .3s;
}

.news-list .column:last-child {
	margin-bottom: 0;
}

.news-list .h1 {
	font-size: 18px;
	color: #333333;
	line-height: 27px;
	margin-bottom: 10px;
	transition: all .3s;
}

.news-list .text {
	font-size: 16px;
	color: #666666;
	line-height: 30px;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-list .column:hover {
	background-image: url(../images/icon5.png);
}

.news-list .column:hover .h1 {
	color: #3860f4;
	font-weight: bold;
}

.home-news .btn-more {
	width: 150px;
	height: 50px;
	font-size: 14px;
	color: #fefefe;
	line-height: 50px;
	padding: 0;
	background-color: #3860f4;
	border-radius: 0;
	margin-top: 45px;
}

.home-news .r-box {
	width: 39.375%;
	margin-top: 10px;
}


/* 媒体查询 */

@media only screen and (max-width: 1680px) {
	.home-app {
		padding-left: 7.1%;
	}
	.home-app .l-box {
		padding-right: 2%;
	}
	.home-app .r-box {
		padding-right: 80px;
	}
	.home-news .title {
		margin-bottom: 40px;
	}
	.news-list .column {
		padding-right: 150px;
		padding-bottom: 25px;
		margin-bottom: 25px;
	}
}

@media only screen and (max-width: 1600px) {
	.home-app .l-box {
		width: 50%;
		padding-top: 25px;
	}
	.home-app .title {
		margin-bottom: 40px;
	}
	.app-list .column {
		margin-bottom: 40px;
	}
	.home-app .r-box {
		width: 50%;
		padding: 60px 60px 40px;
	}
	.swiper3 .text-box {
		width: calc(100% - 300px);
		padding-right: 40px;
	}
	.swiper3 .text {
		height: 132px;
		-webkit-line-clamp: 4;
	}
	.swiper3 .img-box {
		width: 300px;
	}
	.home-app .bot-box {
		max-width: 100%;
		padding-top: 25px;
		margin-top: 25px;
	}
	.home-news .title {
		margin-bottom: 30px;
	}
	.news-list .column {
		padding-right: 50px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.home-news .btn-more {
		margin-top: 15px;
	}
}

@media only screen and (max-width: 1440px) {
	.swiper1 .text {
		font-size: 30px;
		line-height: 50px;
		margin-bottom: 30px;
	}
	.home-prod {
		padding: 50px 0 30px;
	}
	.swiper2 .swiper-pagination {
		bottom: 15px;
	}
	.swiper2 .text-box {
		padding: 15px 20px;
	}
	.swiper2 .name {
		font-size: 18px;
		line-height: 30px;
	}
	.swiper2 .column {
		width: 45%;
		margin-bottom: 20px;
	}
	.home-app {
		padding: 70px 0 70px 7.7%;
	}
	.home-app .l-box {
		width: 43%;
	}
	.home-app .title {
		margin-bottom: 30px;
	}
	.home-main .title .h1 {
		font-size: 28px;
	}
	.home-main .title .h2 {
		font-size: 16px;
		line-height: 50px;
	}
	.home-app .r-box {
		width: 57%;
		padding: 40px;
	}
	.app-list .column {
		width: 120px;
		height: 120px;
		margin-right: 50px;
		margin-bottom: 30px;
	}
	.app-list .icon {
		width: 50px;
	}
	.swiper3 .name {
		font-size: 18px;
		line-height: 40px;
	}
	.swiper3 .h1 {
		font-size: 16px;
		line-height: 36px;
	}
	.swiper3 .text {
		font-size: 14px;
		line-height: 30px;
		height: 120px;
	}
	.swiper3 .btn-more {
		width: 120px;
		height: 40px;
		line-height: 40px;
		border-radius: 10px;
	}
	.home-about .l-box {
		padding-left: 8.7%;
	}
	.home-about .title {
		margin-bottom: 30px;
	}
	.home-about .l-box .text {
		font-size: 16px;
		line-height: 30px;
	}
	.home-about .l-box .text2 {
		font-size: 14px;
		line-height: 24px;
	}
	.home-about .l-box .list-box {
		margin-top: 40px;
	}
	.home-about .r-box .h1 {
		font-size: 20px;
		line-height: 40px;
	}
	.home-about .r-box .text {
		font-size: 14px;
		line-height: 30px;
	}
	.data-list {
		margin-top: 30px;
	}
	.data-list .column {
		margin: 0 20px;
	}
	.home-about .bot-box {
		padding: 5% 10%;
	}
	.home-news {
		padding: 70px 0 50px;
	}
	.news-list .h1 {
		font-size: 16px;
		line-height: 26px;
	}
	.news-list .text {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1280px) {
	.app-list .column {
		width: 90px;
		height: 90px;
	}
	.app-list .icon {
		width: 40px;
	}
	.app-list .name {
		font-size: 14px;
	}
	.swiper3 .text-box {
		width: calc(100% - 240px);
	}
	.swiper3 .img-box {
		width: 240px;
	}
	.news-list .text {
		-webkit-line-clamp: 1;
	}
	.home-news .btn-more {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 1280px) {
	.page-main.on {
		padding-top: 70px;
	}
}

@media only screen and (max-width: 1199px) {
	.page-main {
		padding-top: 70px;
	}
}

@media only screen and (max-width: 1024px) {
	.home-app {
		padding-left: 0;
	}
	.home-app .container {
		width: 90%;
	}
	.home-app .box-wrap {
		flex-wrap: wrap;
	}
	.home-app .l-box {
		width: 100%;
		padding: 0;
	}
	.app-list {
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	.app-list .column {
		margin-right: 0 !important;
	}
	.home-app .r-box {
		width: 100%;
		border-radius: 20px;
	}
	.home-about .box-wrap {
		flex-wrap: wrap;
	}
	.home-about .l-box {
		width: 100%;
		padding: calc(5% + 15px);
	}
	.home-about .r-box {
		width: 100%;
	}
	.home-about .bot-box {
		padding-left: calc(5% + 15px);
		padding-right: calc(5% + 15px);
	}
	.data-list {
		justify-content: space-around;
	}
	.home-news .box-wrap {
		flex-wrap: wrap;
	}
	.home-news .l-box {
		width: 100%;
		padding-right: 0;
	}
	.home-news .r-box {
		display: none;
	}
	.home-news .btn-more {
		display: block;
		margin: 0 auto;
		margin-top: 50px;
	}
}

@media only screen and (max-width: 767px) {
	.page-main {
		padding-top: 50px;
	}
	.page-main.on {
		padding-top: 50px;
	}
	.swiper1 .suspen {
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.swiper1 .text {
		font-size: 16px;
		line-height: 26px;
		white-space: nowrap;
		margin-bottom: 5px;
	}
	.swiper1 .btn-more {
		font-size: 12px;
		line-height: 24px;
	}
	.swiper1 .swiper-pagination {
		bottom: 10px;
	}
	.swiper1 .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
		margin: 0 15px !important;
	}
	.swiper1 .swiper-pagination-bullet::before {
		top: 4px;
		left: 10px;
		width: 24px;
	}
	.swiper1 .swiper-pagination-bullet-active::before {
		top: 2px;
	}
	.home-prod {
		padding: 40px 0 20px;
	}
	.swiper2 {
		padding: 0 0 30px;
	}
	.swiper2 .text-box {
		padding: 15px;
	}
	.swiper2 .name {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 10px;
	}
	.swiper2 .column {
		width: 48%;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.swiper2 .text {
		font-size: 14px;
		line-height: 20px;
	}
	.swiper2 .view {
		line-height: 20px;
	}
	.swiper2 .swiper-pagination {
		bottom: 5px;
	}
	.swiper2 .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
		margin: 0 15px !important;
	}
	.swiper2 .swiper-pagination-bullet::before {
		top: 4px;
		left: 10px;
		width: 24px;
	}
	.swiper2 .swiper-pagination-bullet-active::before {
		top: 2px;
	}
	.home-app {
		padding: 40px 0;
	}
	.home-app .container {
		width: 100%;
	}
	.home-app .title {
		margin-bottom: 20px;
	}
	.home-main .title .h1 {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.home-main .title .h2 {
		font-size: 14px;
		line-height: 24px;
	}
	.app-list .column {
		margin-right: 10px !important;
		margin-bottom: 20px;
	}
	.app-list .column:nth-child(3n) {
		margin-right: 0 !important;
	}
	.home-about .l-box {
		padding: 40px 15px;
	}
	.home-about .title {
		margin-bottom: 0;
	}
	.home-about .l-box .text {
		font-size: 14px;
		line-height: 24px;
	}
	.home-about .l-box .list-box {
		margin-top: 20px;
	}
	.home-about .l-box .column {
		margin-right: 50px;
	}
	.home-about .icon img {
		width: 50px;
	}
	.home-about .l-box .name {
		font-size: 14px;
		line-height: 30px;
	}
	.home-about .bot-box {
		padding: 30px 15px;
	}
	.home-about .r-box .h1 {
		font-size: 18px;
		line-height: 30px;
	}
	.home-about .r-box .text {
		line-height: 24px;
	}
	.data-list {
		margin-top: 10px;
	}
	.data-list .d1 {
		font-size: 16px;
		line-height: 30px;
	}
	.data-list .d2 {
		font-size: 14px;
		line-height: 20px;
	}
	.home-news {
		padding: 40px 0;
	}
	.home-news .title {
		margin-bottom: 15px;
	}
	.news-list .h1 {
		margin-bottom: 0;
	}
	.news-list .column {
		padding-right: 35px;
	}
	.home-news .btn-more {
		width: 90px;
		height: 32px;
		font-size: 12px;
		line-height: 32px;
		margin-top: 20px;
		border-radius: 16px;
	}
}

@media only screen and (max-width: 640px) {
	.home-app {
		margin-right: 0;
	}
	.home-app .r-box {
		padding: 15px;
		background: none;
		background-color: #ffffff;
		border-radius: 15px;
	}
	.swiper3 a {
		flex-wrap: wrap;
	}
	.swiper3 .text-box {
		width: 100%;
		padding: 0;
	}
	.swiper3 .img-box {
		width: 100%;
	}
	.swiper3 .name {
		line-height: 30px;
		margin-bottom: 0;
	}
	.swiper3 .h1 {
		font-size: 16px;
		line-height: 36px;
	}
	.swiper3 .text {
		line-height: 24px;
		height: 96px;
	}
	.swiper3 .btn-more {
		display: block;
		width: 90px;
		height: 32px;
		font-size: 12px;
		line-height: 32px;
		margin: 10px auto 20px;
		border-radius: 16px;
	}
	.home-app .bot-box {
		padding-top: 15px;
		margin-top: 15px;
	}
	.home-app .swiper-pagination-bullet {
		font-size: 14px;
		line-height: 20px;
		margin: 0 10px;
	}
	.home-app .swiper-button-next,
	.home-app .swiper-button-prev {
		width: 21px;
		height: 10px;
	}
	.home-app .swiper-button-next {
		margin-left: 15px;
	}
}


/* 产品 */

.banner {
	position: relative;
}

.banner .suspen {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.banner .h1 {
	font-size: 47px;
	color: #ffffff;
	line-height: 69px;
	font-weight: bold;
	margin-bottom: 8px;
}

.banner .h2 {
	font-size: 20px;
	color: #ffffff;
	line-height: 42px;
}

.prod-search {
	margin: 52px 0 48px;
}

.prod-search .form-inline {
	position: relative;
}

.prod-search .input-text {
	width: 400px;
	height: 60px;
	font-size: 16px;
	color: #a7a7a7;
	padding: 0 70px;
	border: 1px solid #cccccc;
}

.prod-search .input-text::-webkit-input-placeholder {
	color: #a7a7a7;
}

.prod-search .btn-submit {
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translate(0, -50%);
	font-size: 0;
	background: none;
}

.prod-box .box-wrap {
	flex-wrap: wrap;
}

.prod-box .l-box {
	padding: 0;
	border-right: 1px solid #e3e3e3;
}

.prod-box .l-box .title {
	font-size: 26px;
	color: #333333;
	line-height: 1;
	font-weight: bold;
	padding: 6px 30px 28px;
	border-bottom: 1px solid #e3e3e3;
}

.prod-box .l-box .top {
	justify-content: space-between;
	align-items: center;
	padding-left: 30px;
	padding-right: 24px;
	border-bottom: 1px solid #e3e3e3;
	cursor: pointer;
}

.prod-box .l-box .name {
	font-size: 18px;
	color: #333333;
	line-height: 60px;
}

.prod-box .l-box .open {
	position: relative;
	width: 13px;
	height: 13px;
}

.prod-box .l-box .open::after {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	width: 100%;
	height: 1px;
	background-color: #333333;
	transform: translate(-50%, -50%);
}

.prod-box .l-box .open::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	width: 1px;
	height: 100%;
	background-color: #333333;
	transform: translate(-50%, -50%);
}

.prod-box .l-box .column.on .top {
	background-color: #434343;
}

.prod-box .l-box .column.on .name {
	color: #ffffff;
}

.prod-box .l-box .column.on .open::after {
	background-color: #f0f0f0;
}

.prod-box .l-box .column.on .open::before {
	display: none;
}

.prod-box .l-box .drop-down {
	display: none;
	background-color: #f6f6f6;
}

.prod-box .l-box .drop-down a {
	display: block;
	font-size: 16px;
	color: #333333;
	line-height: 60px;
	padding: 0 50px;
	border-bottom: 1px solid #e3e3e3;
}

.prod-box .l-box .column.on .drop-down {
	display: block;
}

.prod-box .l-box .drop-down a.on {
	color: #3860f4;
}

.prod-box .r-box {
	padding-left: 44px;
}

.prod-box .r-box .title {
	border-bottom: 1px solid #e3e3e3;
	padding-bottom: 9px;
	margin-bottom: 27px;
}

.prod-box .r-box .title .name {
	font-size: 18px;
	color: #333333;
	line-height: 23px;
	text-align: left;
	padding-left: 45px;
	background-image: url(../images/icon24.png);
	background-repeat: no-repeat;
	background-position: 10px center;
}

.table-responsive{
	overflow-x: auto;
}

.table-responsive::-webkit-scrollbar{
	display: none;
}

.prod-box .r-box .table{
	width: 1274px;
}

.prod-box .r-box .table th {
	font-size: 14px;
	color: #333333;
	line-height: 24px;
	text-align: center;
	font-weight: normal;
	display: table-cell;
	vertical-align: middle;
	border: 1px solid #e3e3e3 !important;
	background-color: #f4f4f4;
	padding-top: 12px;
	padding-bottom: 12px;
}

.prod-box .r-box .table th:first-child {
	font-size: 16px;
	border-left: 0 !important;
}

.prod-box .r-box .table th:last-child {
	border-right: 0 !important;
}

.prod-box .r-box .table td {
	font-size: 16px;
	color: #666666;
	line-height: 24px;
	text-align: center;
	font-weight: normal;
	display: table-cell;
	vertical-align: middle;
	border: 1px solid #e3e3e3 !important;
	padding: 20px 8px;
	transition: all .3s;
	cursor: pointer;
}

.prod-box .r-box .table tr.on td {
	background-color: #f4f4f4;
}

.prod-box .r-box .table td:first-child {
	position: relative;
	padding: 10px;
	text-align: left;
}

.prod-box .r-box .table td:first-child::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.prod-box .r-box .table tbody tr:first-child td {
	padding-top: 12px;
	padding-bottom: 12px;
}

.prod-box .r-box .table tbody tr:first-child td:first-child {
	padding: 12px 10px;
}

.prod-box .r-box .table tbody tr:first-child td:first-child::before {
	display: none;
}

.prod-box .r-box .table td:first-child {
	font-size: 16px;
	border-left: 0 !important;
}

.prod-box .r-box .table td:last-child {
	border-right: 0 !important;
}

.prod-box .r-box .table label {
	font-weight: normal;
	margin-bottom: 0;
}

.prod-box .r-box .table .check {
	margin-right: 10px;
}

.prod-box .r-box .table .icon {
	display: inline-block;
	font-size: 0;
	width: 64px;
}

.prod-box .r-box .table .img2 {
	display: none;
}

.prod-box .r-box .table tr.on .img1 {
	display: none;
}

.prod-box .r-box .table tr.on .img2 {
	display: inline-block;
}

.prod-box .r-box .bot-box {
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	margin-bottom: 10px;
}

.prod-box .r-box .bot-box .checkbox-inline {
	position: relative;
	font-size: 16px;
	color: #666666;
	margin-left: 23px;
}

.prod-box .r-box .bot-box .checkbox-inline::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.prod-box .r-box .link-down {
	width: 190px;
	height: 50px;
	font-size: 16px;
	color: #666666;
	line-height: 50px;
	text-align: center;
	border-radius: 10px;
	background-color: #f4f4f4;
	background-image: url(../images/icon25.png);
	background-repeat: no-repeat;
	background-position: 30px center;
	padding-left: 20px;
}

.prod-box .nav-page {
	margin-top: 60px;
	margin-bottom: 75px;
}

.nav-page a {
	display: inline-block;
	width: 35px;
	height: 35px;
	font-size: 14px;
	color: #666666;
	line-height: 35px;
	margin: 0 2px;
	background-color: #f4f4f4;
}

.nav-page a.on {
	color: #ffffff;
	background-color: #3860f4;
}

.nav-page a.active {
	width: auto;
	padding: 0 16px;
}


/* 媒体查询 */

@media only screen and (max-width: 1680px) {
	.prod-box .r-box .table {
		width: 1300px;
	}
}

@media only screen and (max-width: 1600px) {
	.prod-box .l-box {
		width: 20%;
	}
	.prod-box .r-box {
		width: 80%;
	}
	.prod-box .l-box .title {
		padding-left: 20px;
		padding-right: 20px;
	}
	.prod-box .l-box .top {
		padding: 0 20px;
	}
	.prod-box .l-box .drop-down a {
		padding: 0 30px;
	}
	.prod-box .r-box {
		padding-left: 20px;
	}
}

@media only screen and (max-width: 1440px) {
	.banner .h1 {
		font-size: 30px;
		line-height: 50px;
	}
	.banner .h2 {
		font-size: 16px;
		line-height: 30px;
	}
	.prod-search {
		margin: 40px 0;
	}
	.prod-search .input-text {
		width: 300px;
		height: 40px;
		font-size: 14px;
		padding: 0 40px;
	}
	.prod-search .input-text::-webkit-input-placeholder {
		font-size: 14px;
	}
	.prod-search .btn-submit {
		left: 15px;
	}
	.prod-box .l-box .title {
		font-size: 20px;
		padding: 6px 20px 15px;
	}
	.prod-box .l-box .name {
		font-size: 16px;
		line-height: 40px;
	}
	.prod-box .l-box .drop-down a {
		font-size: 14px;
		line-height: 40px;
	}
	.prod-box .r-box .title {
		margin-bottom: 20px;
	}
	.prod-box .r-box .title .name {
		font-size: 16px;
	}
	.prod-box .r-box .table td {
		padding: 8px;
	}
	.prod-box .nav-page {
		margin-top: 40px;
		margin-bottom: 40px;
	}
}

@media only screen and (max-width: 1199px) {
	.prod-box .l-box {
		width: 25%;
	}
	.prod-box .r-box {
		width: 75%;
	}
}

@media only screen and (max-width: 1024px) {
	.prod-search {
		margin-bottom: 30px;
	}
	.prod-box .l-box {
		width: 100%;
		border-right: 0;
		margin-bottom: 30px;
	}
	.prod-box .r-box {
		width: 100%;
		padding-left: 0;
	}
	.prod-box .nav-page {
		width: 100%;
		margin-left: 0;
	}
}

@media only screen and (max-width: 767px) {
	.banner .suspen {
		width: 100%;
		padding: 0 15px;
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.banner .h1 {
		font-size: 20px;
		line-height: 30px;
	}
	.banner .h2 {
		font-size: 14px;
		line-height: 24px;
	}
	.prod-search .input-text {
		width: 100%;
	}
	.prod-search .form-group {
		margin-bottom: 0;
	}
	.prod-box .l-box .title {
		font-size: 18px;
		padding: 0 15px 15px;
	}
	.prod-box .l-box .top {
		padding: 0 15px;
	}
	.prod-box .r-box .table {
		width: 1100px;
	}
	.prod-box .r-box .table th {
		line-height: 20px;
		padding: 8px;
	}
	.prod-box .r-box .table td {
		font-size: 14px;
		line-height: 20px;
	}
	.prod-box .r-box .table tbody tr:first-child td:first-child {
		padding: 8px;
	}
	.prod-box .r-box .table td:first-child {
		font-size: 14px;
		padding: 8px;
	}
	.prod-box .r-box .table .icon {
		width: auto;
	}
	.prod-box .r-box .bot-box {
		margin: 10px 0;
	}
	.prod-box .r-box .bot-box .checkbox-inline {
		font-size: 14px;
		margin-left: 10px;
	}
	.prod-box .r-box .link-down {
		width: 120px;
		height: 34px;
		font-size: 12px;
		line-height: 34px;
		padding-left: 14px;
		background-size: 12px 12px;
		background-position: 14px center;
	}
	.prod-box .nav-page {
		margin: 20px auto 40px;
	}
}


/* 服务支持 */

.certi-box {
	background-position: center center;
	background-size: cover;
	padding: 110px 0;
}

.certi-box .box-wrap {
	justify-content: flex-start;
	align-items: center;
}

.service-main .title .cn {
	font-size: 36px;
	color: #333333;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 12px;
}

.service-main .title .en {
	font-size: 14px;
	color: #666666;
	line-height: 1;
}

.certi-box .title {
	margin-right: 280px;
}

.swiper4 {
	width: 380px;
	margin: 0;
	margin-right: 220px;
}

.certi-box .r-box {
	width: calc(100% - 1024px);
	padding-top: 6%;
}

.certi-list {
	height: 275px;
	overflow-y: auto;
}

.certi-list .column {
	position: relative;
	font-size: 20px;
	color: #333333;
	line-height: 55px;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all .3s;
}

.certi-list .column.on {
	color: #3860f4;
	padding-left: 20px;
	font-weight: bold;
}

.certi-list .column.on::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 7px;
	width: 7px;
	height: 2px;
	background-color: #3860f4;
	transform: translate(-50%, 0);
}

.certi-box .number {
	font-size: 16px;
	color: #666666;
	line-height: 1;
	font-weight: bold;
	margin-top: 80px;
	margin-bottom: 10px;
}

.certi-box .sequence {
	font-size: 16px;
	color: #9f9f9f;
	line-height: 1;
	font-weight: bold;
}

.prob-box {
	padding: 78px 0 70px;
}

.prob-box .title {
	margin-bottom: 110px;
}

.prob-box .box {
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #b5b5b5;
	padding: 15px 0;
}

.prob-box .box:last-child {
	border-bottom: 0;
}

.prob-box .l-box {
	text-align: center;
	margin: 0 140px 0 120px;
}

.prob-box .name {
	font-size: 18px;
	color: #333333;
	line-height: 1;
	font-weight: bold;
	margin-top: 20px;
}

.prob-box .prob-list {
	width: calc(100% - 335px);
}

.prob-list .column a {
	display: block;
	font-size: 18px;
	color: #333333;
	line-height: 60px;
	border-bottom: 1px solid #e5e5e5;
	padding: 0 80px 0 40px;
	background-image: url(../images/icon28.jpg);
	background-repeat: no-repeat;
	background-position: 95% center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.prob-list .column:last-child a {
	border-bottom: 0;
}

.prob-box .box:last-child .column:last-child a {
	border-bottom: 1px solid #e5e5e5;
}

.down-box {
	padding: 87px 0 90px;
	background-color: #f7f7f7;
}

.down-box .title {
	margin-bottom: 52px;
}

.down-box .nav {
	background-color: #ffffff;
	margin-bottom: 78px;
}

.down-box .column {
	width: 33.33%;
	text-align: center;
	padding: 30px 0;
	cursor: pointer;
}

.down-box .cn {
	font-size: 24px;
	color: #333333;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 12px;
}

.down-box .en {
	font-size: 14px;
	color: #666666;
	line-height: 1;
}

.down-box .column.on {
	position: relative;
	background-color: #3860f4;
}

.down-box .column.on .cn {
	color: #ffffff;
}

.down-box .column.on .en {
	color: #ffffff;
}

.down-box .column.on::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 12px solid;
	border-color: transparent transparent #ffffff;
	transform: translate(-50%, 0);
}

.down-box .h1 {
	font-size: 18px;
	color: #333333;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 38px;
}

.down-box .box {
	display: none;
}

.down-box .box.on {
	display: block;
}

.down-list .column2 {
	margin-bottom: 20px;
}

.down-list .column2 a {
	justify-content: space-between;
	align-items: center;
	height: 100px;
	padding: 0 55px;
	background-color: #ffffff;
	transition: all .3s;
}

.down-list .name {
	width: calc(100% - 750px);
	font-size: 18px;
	color: #333333;
	line-height: 1;
	font-weight: bold;
	transition: all .3s;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.down-list .time {
	width: 100px;
	font-size: 16px;
	color: #666666;
	line-height: 1;
	text-align: center;
	margin: 0 50px;
	transition: all .3s;
}

.down-list .format {
	width: 100px;
	font-size: 16px;
	color: #666666;
	line-height: 1;
	text-align: center;
	margin: 0 50px;
	transition: all .3s;
}

.down-list .size {
	width: 100px;
	font-size: 16px;
	color: #666666;
	line-height: 1;
	text-align: center;
	margin: 0 50px;
	transition: all .3s;
}

.down-list .icon {
	width: 33px;
	height: 30px;
	background-image: url(../images/icon29.png);
	background-size: cover;
	margin-left: 117px;
	transition: all .3s;
}

.down-list .column2:hover a {
	background-color: #3860f4;
}

.down-list .column2:hover .color {
	color: #ffffff;
}

.down-list .column2:hover .icon {
	background-image: url(../images/icon30.png);
}

.serv-main .news-box .l-box {
	width: 100%;
}


/* 媒体查询 */

@media only screen and (max-width: 1680px) {
	.certi-box .title {
		margin-right: 200px;
	}
	.swiper4 {
		margin-right: 170px;
	}
	.certi-box .r-box {
		width: calc(100% - 900px);
	}
}

@media only screen and (max-width: 1600px) {
	.certi-box .title {
		margin-right: 150px;
	}
	.swiper4 {
		width: 300px;
		margin-right: 156px;
	}
	.certi-box .r-box {
		padding-top: 0;
		width: calc(100% - 750px);
	}
	.certi-box .number {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 1440px) {
	.certi-box {
		padding: 70px 0;
	}
	.service-main .title .cn {
		font-size: 26px;
	}
	.certi-list {
		height: 200px;
	}
	.certi-list .column {
		font-size: 16px;
		line-height: 40px;
	}
	.prob-box {
		padding: 50px 0;
	}
	.prob-box .title {
		margin-bottom: 70px;
	}
	.prob-box .name {
		font-size: 16px;
		margin-top: 10px;
	}
	.prob-list .column a {
		font-size: 16px;
		line-height: 50px;
	}
	.down-box {
		padding: 50px 0;
	}
	.down-box .title {
		margin-bottom: 40px;
	}
	.down-box .nav {
		margin-bottom: 50px;
	}
	.down-box .column {
		padding: 25px 0;
	}
	.down-box .cn {
		font-size: 18px;
	}
	.down-box .h1 {
		font-size: 16px;
		margin-bottom: 30px;
	}
	.down-list .column2 a {
		height: 80px;
	}
	.down-list .name {
		font-size: 16px;
	}
	.down-list .name {
		width: calc(100% - 570px);
	}
	.down-list .color {
		font-size: 14px;
		margin: 0 30px;
	}
	.down-list .icon {
		margin-left: 57px;
	}
}

@media only screen and (max-width: 1280px) {
	.certi-box .title {
		margin-right: 100px;
	}
	.swiper4 {
		width: 250px;
		margin-right: 106px;
	}
	.certi-box .r-box {
		width: calc(100% - 590px);
	}
	.certi-box .number {
		margin-top: 30px;
	}
	.prob-box .l-box {
		margin: 0 100px;
	}
	.prob-box .prob-list {
		width: calc(100% - 264px);
	}
}

@media only screen and (max-width: 1024px) {
	.certi-box .box-wrap {
		flex-wrap: wrap;
	}
	.certi-box .title {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
		margin-right: 0;
	}
	.swiper4 {
		margin-right: 100px;
	}
	.certi-box .r-box {
		width: calc(100% - 350px);
	}
	.prob-box .l-box {
		margin: 0 60px;
	}
	.prob-box .prob-list {
		width: calc(100% - 184px);
	}
	.down-list .column2 a {
		padding: 0 30px;
	}
	.down-list .color {
		margin: 0 15px;
	}
	.down-list .icon {
		margin-left: 27px;
	}
	.down-list .name {
		width: calc(100% - 450px);
	}
}

@media only screen and (max-width: 767px) {
	.certi-box {
		padding: 40px 0;
	}
	.service-main .title {
		text-align: center;
	}
	.service-main .title .cn {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.swiper4 {
		width: 40%;
		margin-right: 0;
	}
	.certi-box .r-box {
		width: 60%;
		padding-left: 5%;
	}
	.certi-list {
		height: 140px;
	}
	.certi-list .column {
		font-size: 14px;
		line-height: 28px;
	}
	.certi-box .number {
		font-size: 14px;
		margin: 20px 0 10px;
	}
	.certi-box .sequence {
		font-size: 14px;
	}
	.prob-box {
		padding: 40px 0;
	}
	.prob-box .title {
		margin-bottom: 30px;
	}
	.prob-box .box {
		flex-wrap: wrap;
		margin-bottom: 20px;
		border-bottom: 0;
		padding: 0;
	}
	.prob-box .box:last-child {
		margin-bottom: 0;
	}
	.prob-box .l-box {
		width: 100%;
		margin: 0;
		text-align: left;
	}
	.prob-box .icon {
		display: none;
	}
	.prob-box .name {
		font-size: 14px;
		margin-top: 0;
		margin-bottom: 5px;
	}
	.prob-box .prob-list {
		width: 100%;
	}
	.prob-list .column a {
		font-size: 14px;
		line-height: 40px;
		padding: 0 30px 0 0;
	}
	.prob-list .column:last-child a {
		border-bottom: 1px solid #e5e5e5;
	}
	.down-box {
		padding: 40px 0;
	}
	.down-box .title {
		margin-bottom: 30px;
	}
	.down-box .nav {
		flex-wrap: wrap;
		margin-bottom: 30px;
	}
	.down-box .column {
		width: 100%;
		padding: 15px;
	}
	.down-box .column.on::before {
		border: 8px solid;
		border-color: transparent transparent #ffffff;
	}
	.down-box .cn {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.down-box .h1 {
		margin-bottom: 20px;
	}
	.down-box .box {
		overflow-x: auto;
		white-space: nowrap;
	}
	.down-box .box::-webkit-scrollbar {
		display: none;
	}
	.down-list {
		width: 600px;
	}
	.down-list .column2 {
		margin-bottom: 10px;
	}
	.down-list .column2:last-child {
		margin-bottom: 0;
	}
	.down-list .column2 a {
		height: 60px;
		padding: 0 15px;
	}
	.down-list .color {
		margin: 0 5px;
	}
	.down-list .icon {
		width: 23px;
		height: 20px;
	}
	.down-list .name {
		width: calc(100% - 390px);
	}
}


/* 关于我们 */

.intro-box {
	padding: 60px 0 67px;
}

.about-main .title .cn {
	font-size: 36px;
	color: #333333;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 17px;
}

.about-main .title .en {
	font-size: 14px;
	color: #666666;
	line-height: 1;
}

.intro-box .box-wrap {
	justify-content: space-between;
	align-items: center;
}

.intro-box .text-box {
	width: calc(100% - 558px);
	padding-right: 105px;
}

.intro-box .title {
	margin-bottom: 38px;
}

.intro-box .text {
	font-size: 18px;
	color: #333333;
	line-height: 37px;
}

.intro-box .data-list2 {
	justify-content: flex-start;
	align-items: center;
	margin-top: 53px;
}

.intro-box .column {
	text-align: center;
}

.intro-box .column.line {
	width: 60px;
	height: 1px;
	background-color: #e5e5e5;
	margin: 0 15px;
}

.intro-box .name {
	font-size: 16px;
	color: #333333;
	margin-top: 10px;
}

.intro-box .img-box {
	width: 558px;
}

.pursue-box {
	padding: 58px 0;
}

.pursue-box .box-wrap {
	justify-content: space-between;
	align-items: center;
}

.pursue-box .text-box {
	width: calc(100% - 564px);
	padding-right: 115px;
}

.pursue-box .title {
	margin-bottom: 70px;
}

.pursue-box .text {
	font-size: 18px;
	color: #333333;
	line-height: 37px;
}

.pursue-box .h1 {
	font-size: 24px;
	color: #333333;
	line-height: 35px;
	font-weight: bold;
	margin-bottom: 16px;
}

.pursue-box .img-box {
	position: relative;
	width: 564px;
}

.pursue-box .suspen {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.pursue-box .suspen img {
	-webkit-animation: changeright 5s linear infinite;
	animation: changeright 5s linear infinite;
}

@-webkit-keyframes changeright {
	0% {
		-webkit-transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(-180deg);
	}
	100% {
		-webkit-transform: rotate(-360deg);
	}
}

@keyframes changeright {
	0% {
		-webkit-transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(-180deg);
	}
	100% {
		-webkit-transform: rotate(-360deg);
	}
}

.course-box {
	position: relative;
	padding: 80px 0 130px;
	background-repeat: no-repeat;
	background-size: cover;
}

.course-box::before {
	position: absolute;
	content: "";
	top: 350px;
	left: 0;
	width: 100%;
	border-top: 1px dashed #3860f4;
}

.course-box .box-wrap {
	position: relative;
	justify-content: space-between;
	align-items: center;
}

.course-box .l-box {
	width: 453px;
}

.course-box .title {
	margin-bottom: 57px;
}

.swiper5 .swiper-slide{
	opacity: 0 !important;
}

.swiper5 .swiper-slide-active{
	box-shadow: 0 5px 30px rgba(0, 0, 0, .15);
	opacity: 1 !important;
}

.swiper5 .text-box {
	padding: 22px;
	background-color: #ffffff;
}

.course-list {
	height: 108px;
	overflow-y: auto;
}

.course-list::-webkit-scrollbar {
	display: none;
}

.course-list .column2 {
	font-size: 16px;
	color: #333333;
	line-height: 36px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.course-list .point {
	color: #3860f4;
	margin-right: 5px;
}

.swiper6 {
	width: calc(100% - 500px);
	padding-top: 50px;
	margin-left: 47px;
}

.swiper6 .box {
	width: 82px;
	text-align: center;
	padding-top: 30px;
	margin: 0 auto;
}

.swiper6 .img {
	width: 82px;
	height: 82px;
	padding: 5px;
	border: 1px dashed #5678f5;
	background-color: #ffffff;
	border-radius: 50%;
	overflow: hidden;
}

.swiper6 .img i {
	display: block;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	background-size: cover;
}

.swiper6 .years {
	font-size: 18px;
	color: #333333;
	margin-top: 20px;
}

.swiper6 .active-nav .box {
	width: 142px;
	padding-top: 0;
}

.swiper6 .active-nav .img {
	width: 142px;
	height: 142px;
}

.swiper6 .active-nav .img i {
	width: 130px;
	height: 130px;
}

.swiper6 .active-nav .years {
	font-size: 22px;
	color: #3860f4;
	font-weight: bold;
	margin-top: 25px;
}

.team-box {
	padding: 40px 0;
}

.team-box .box-wrap {
	justify-content: space-between;
}

.team-box .l-box {
	width: calc(100% - 1313px);
}

.team-box .title {
	margin-top: 80px;
	margin-bottom: 60px;
}

.team-list .column {
	position: relative;
	font-size: 18px;
	color: #333333;
	line-height: 80px;
	cursor: pointer;
}

.team-list .column.on {
	color: #3860f4;
	font-weight: bold;
	background-color: #f7f7f7;
}

.team-list .column.on::before {
	position: absolute;
	content: "";
	top: 26px;
	right: -16px;
	width: 0;
	height: 0;
	border-top: 16px solid transparent;
	border-left: 16px solid #f7f7f7;
	border-bottom: 16px solid transparent;
	z-index: 2;
}

.team-list .column.on::after {
	position: absolute;
	content: "";
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: #f7f7f7;
	z-index: 0;
}

.team-box .r-box {
	width: 1313px;
}

.team-box .box {
	display: none;
}

.team-box .box.on {
	display: block;
}

.team-box .bot-box {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 250px;
	height: 72px;
	line-height: 72px;
	/* background-color: #f7f7f7; */
	z-index: 2;
}

.team-box .swiper-pagination {
	position: static;
	width: auto;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	margin: 0;
	font-size: 16px;
	color: #f1e4e4;
	font-weight: bold;
}

.team-box .swiper-pagination-current {
	font-size: 24px;
}

.team-box .arrow {
	width: 56px;
	height: 7px;
	margin-top: -3px;
	background-size: cover;
	opacity: 1;
	z-index: 3;
	opacity: 0;
}

.team-box .swiper-button-prev {
	background-image: url(../images/icon35.jpg);
	left: 20px;
}

.team-box .swiper-button-prev:hover {
	background-image: url(../images/icon36.jpg);
}

.team-box .swiper-button-next {
	background-image: url(../images/icon35-2.jpg);
	right: 20px;
}

.team-box .swiper-button-next:hover {
	background-image: url(../images/icon36-2.jpg);
}


/* 媒体查询 */

@media only screen and (max-width: 1680px) {
	.team-box .l-box {
		width: calc(100% - 1170px);
	}
	.team-box .r-box {
		width: 1170px;
	}
}

@media only screen and (max-width: 1600px) {
	.intro-box .text-box {
		width: calc(100% - 500px);
		padding-right: 60px;
	}
	.intro-box .img-box {
		width: 500px;
	}
	.pursue-box .text-box {
		width: calc(100% - 420px);
		padding-right: 60px;
	}
	.pursue-box .img-box {
		width: 420px;
	}
	.course-box .l-box {
		width: 400px;
	}
	.swiper6 {
		width: calc(100% - 430px);
		margin-left: 30px;
	}
	.course-box::before {
		top: 340px;
	}
	.team-box .l-box {
		width: calc(100% - 950px);
	}
	.team-box .title {
		margin: 40px 0 30px;
	}
	.team-box .r-box {
		width: 950px;
	}
}

@media only screen and (max-width: 1440px) {
	.intro-box {
		padding: 60px 0;
	}
	.intro-box .title {
		margin-bottom: 30px;
	}
	.about-main .title .cn {
		font-size: 28px;
	}
	.intro-box .text {
		font-size: 14px;
		line-height: 30px;
	}
	.intro-box .data-list2 {
		margin-top: 30px;
	}
	.intro-box .name {
		font-size: 14px;
	}
	.pursue-box .title {
		margin-bottom: 30px;
	}
	.pursue-box .text {
		font-size: 14px;
		line-height: 30px;
	}
	.pursue-box .h1 {
		font-size: 18px;
	}
	.pursue-box {
		padding: 50px 0;
	}
	.course-box {
		padding: 60px 0 100px;
	}
	.course-box .title {
		margin-bottom: 30px;
	}
	.swiper6 .box {
		width: 62px;
		padding-top: 20px;
	}
	.swiper6 .img {
		width: 62px;
		height: 62px;
	}
	.swiper6 .img i {
		width: 50px;
		height: 50px;
	}
	.swiper6 .years {
		font-size: 16px;
		margin-top: 10px;
	}
	.swiper6 .active-nav .box {
		width: 102px;
	}
	.swiper6 .active-nav .img {
		width: 102px;
		height: 102px;
	}
	.swiper6 .active-nav .img i {
		width: 90px;
		height: 90px;
	}
	.swiper6 .active-nav .years {
		font-size: 18px;
		margin-top: 15px;
	}
	.course-box::before {
		top: 300px;
	}
	.team-list .column {
		height: 70px;
		line-height: 70px;
	}
	.team-list .column.on::before {
		top: 21px;
	}
}

@media only screen and (max-width: 1280px) {
	.intro-box .text-box {
		width: calc(100% - 400px);
		padding-right: 30px;
	}
	.intro-box .img-box {
		width: 400px;
	}
	.intro-box .column.line {
		width: 40px;
		margin: 0 10px;
	}
	.pursue-box .text-box {
		width: calc(100% - 370px);
		padding-right: 30px;
	}
	.pursue-box .img-box {
		width: 370px;
	}
	.team-box .l-box {
		width: calc(100% - 800px);
	}
	.team-list .column {
		height: 50px;
		line-height: 50px;
	}
	.team-list .column.on::before {
		top: 16px;
		right: -10px;
		border-top: 10px solid transparent;
		border-left: 10px solid #f7f7f7;
		border-bottom: 10px solid transparent;
	}
	.team-box .r-box {
		width: 800px;
	}
	.team-box .bot-box {
		width: 200px;
		height: 50px;
		line-height: 50px;
	}
	.team-box .swiper-pagination {
		font-size: 14px;
	}
	.team-box .swiper-pagination-current {
		font-size: 18px;
	}
	.team-box .arrow {
		width: 34px;
		height: 4px;
	}
}

@media only screen and (max-width: 1199px) {
	.intro-box .text-box {
		width: 60%;
	}
	.intro-box .img-box {
		width: 40%;
	}
	.pursue-box .text-box {
		width: 65%;
	}
	.pursue-box .img-box {
		width: 35%;
	}
	.course-box .l-box {
		width: 40%;
	}
	.swiper6 {
		width: 58%;
		margin-left: 2%;
	}
	.team-box .l-box {
		width: 25%;
	}
	.team-box .r-box {
		width: 75%;
	}
}

@media only screen and (max-width: 1024px) {
	.intro-box .box-wrap {
		flex-wrap: wrap;
	}
	.intro-box .text-box {
		width: 100%;
		padding: 0;
		margin-bottom: 30px;
	}
	.intro-box .img-box {
		display: none;
	}
	.pursue-box .text-box {
		width: 100%;
		margin-bottom: 30px;
	}
	.pursue-box .img-box {
		width: 50%;
		margin: 0 auto;
	}
	.course-box .l-box {
		width: 100%;
		margin-bottom: 30px;
	}
	.swiper6 {
		width: 100%;
		margin: 0;
	}
	.course-box::before {
		top: auto;
		bottom: 190px;
	}
	.team-box .l-box {
		width: 100%;
		font-size: 0;
	}
	.team-list {
		margin-bottom: 30px;
	}
	.team-list .column {
		display: inline-block;
		margin-right: 20px;
	}
	.team-list .column::before {
		display: none;
	}
	.team-list .column::after {
		display: none;
	}
	.team-list .column.on {
		background: none;
	}
	.team-box .r-box {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.intro-box {
		padding: 40px 0;
	}
	.intro-box .title {
		margin-bottom: 20px;
	}
	.about-main .title .cn {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.intro-box .text-box {
		margin-bottom: 0;
	}
	.intro-box .text {
		line-height: 24px;
	}
	.intro-box .column.line {
		width: 30px;
		margin: 0 5px;
	}
	.intro-box .name {
		font-size: 12px;
	}
	.pursue-box {
		padding: 40px 0;
	}
	.pursue-box .title {
		margin-bottom: 20px;
	}
	.pursue-box .title .cn {
		line-height: 1.2;
	}
	.pursue-box .title .en {
		line-height: 1.2;
	}
	.pursue-box .text {
		line-height: 24px;
	}
	.pursue-box .h1 {
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 10px;
	}
	.pursue-box .img-box {
		width: 70%;
	}
	.course-box {
		padding: 40px 0;
	}
	.course-box .title {
		margin-bottom: 20px;
	}
	.course-list {
		height: 90px;
	}
	.course-list .column2 {
		font-size: 14px;
		line-height: 30px;
	}
	.swiper6 {
		padding-top: 0;
	}
	.swiper6 .box {
		width: 42px;
		padding-top: 5px;
	}
	.swiper6 .box .img {
		width: 42px;
		height: 42px;
		padding: 3px;
	}
	.swiper6 .box .img i {
		width: 34px;
		height: 34px;
	}
	.swiper6 .years {
		font-size: 12px;
		margin-top: 5px;
	}
	.swiper6 .active-nav .box {
		width: 52px;
	}
	.swiper6 .active-nav .img {
		width: 52px;
		height: 52px;
	}
	.swiper6 .active-nav .img i {
		width: 44px;
		height: 44px;
	}
	.swiper6 .active-nav .years {
		font-size: 14px;
		margin-top: 10px;
	}
	.course-box::before {
		bottom: 95px;
	}
	.team-box .title {
		margin: 0 0 20px;
	}
	.team-list {
		margin-bottom: 20px;
	}
	.team-list .column {
		font-size: 14px;
		height: 24px;
		line-height: 24px;
		margin-right: 15px;
	}
	.team-list .column:last-child {
		margin-right: 0;
	}
	.team-box .bot-box {
		width: 90px;
		height: 30px;
		line-height: 30px;
	}
	.team-box .arrow {
		display: none;
	}
}


/* 行业应用 */

.appli-box {
	padding: 81px 0 107px;
}

.appli-list {
	border: 1px solid #e3e3e3;
	border-bottom: 0;
}

.appli-list .column {
	position: relative;
	padding: 0;
	border-right: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
}

.appli-list .column:nth-child(3n) {
	border-right: 0;
}

.appli-list .img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: 0;
}

.appli-list .suspen {
	position: relative;
	text-align: center;
	padding: 90px 77px 94px;
	background-color: #ffffff;
	transition: all .3s;
}

.appli-list .name {
	font-size: 30px;
	color: #333333;
	line-height: 54px;
	margin: 8px 0 30px;
	transition: all .3s;
}

.appli-list .text {
	font-size: 18px;
	color: #666666;
	line-height: 38px;
	height: 84px;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	transition: all .3s;
}

.appli-list .btn-more {
	width: 150px;
	height: 50px;
	font-size: 14px;
	color: #ffffff;
	line-height: 50px;
	background-color: #3860f4;
	margin: 0 auto;
	margin-top: 67px;
	transition: all .3s;
}

.appli-list .column:hover .suspen {
	background-color: rgba(0, 0, 0, .5);
}

.appli-list .column:hover .name {
	color: #ffffff;
}

.appli-list .column:hover .text {
	color: #ffffff;
}

.appli-list .column:hover .btn-more {
	border-radius: 15px;
}

.direc-box {
	padding: 90px 0 100px;
}

.appli-main .title .cn {
	font-size: 30px;
	color: #333333;
	line-height: 1;
	margin-bottom: 15px;
}

.appli-main .title .en {
	font-size: 14px;
	color: #999999;
	line-height: 1;
}

.direc-box .title {
	margin-bottom: 35px;
}

.direc-box .text {
	font-size: 18px;
	color: #333333;
	line-height: 44px;
}

.direc-list {
	align-items: center;
	margin-top: 33px;
}

.direc-list .column {
	text-align: center;
	margin-right: 100px;
}

.direc-list .name {
	font-size: 18px;
	color: #333333;
	line-height: 44px;
	margin-top: 4px;
}

.direc-list .column:last-child {
	margin-right: 0;
}

.effect-box {
	padding: 63px 0 0;
	background-color: #f7f7f7;
}

.effect-box .title {
	margin-bottom: 35px;
}

.effect-box .text {
	font-size: 18px;
	color: #333333;
	line-height: 44px;
	margin-bottom: 65px;
}

.effect-box .box {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding-top: 20px;
}

.effect-box .name{
	position: absolute;
	bottom: 3.5%;
	left: 50%;
	font-size: 24px;
	color: #ffffff;
	transform: translate(-50%,0);
	margin-left: -8px;
	z-index: 2;
}

.effect-box .ring {
	width: 60%;
	padding-top: 60%;
	border-radius: 50%;
	background: rgba(0, 0, 0, .05);
	position: absolute;
	top: 8%;
	left: 19.5%;
	opacity: 1;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-animation: scale_ring 3s linear infinite;
	animation: scale_ring 3s linear infinite;
}

.effect-box .ring:nth-of-type(2) {
	-webkit-animation-delay: 600ms;
	animation-delay: 600ms;
}

.effect-box .ring:nth-of-type(3) {
	-webkit-animation-delay: 1200ms;
	animation-delay: 1200ms;
}

.effect-box .ring:nth-of-type(4) {
	-webkit-animation-delay: 1800ms;
	animation-delay: 1800ms;
}

.effect-box .ring:nth-of-type(5) {
	-webkit-animation-delay: 2400ms;
	animation-delay: 2400ms;
}

@-webkit-keyframes scale_ring {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: .2;
	}
}

@keyframes scale_ring {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: .2;
	}
}

.rela-case {
	padding: 80px 0 110px;
}

.rela-case .title {
	margin-bottom: 68px;
}


/* 媒体查询 */

@media only screen and (max-width: 1680px) {
	.effect-box .ring {
		top: 15%;
	}
}

@media only screen and (max-width: 1600px) {
	.effect-box .ring {
		width: 70%;
		padding-top: 70%;
		left: 14.3%;
	}
}

@media only screen and (max-width: 1440px) {
	.appli-box {
		padding: 60px 0;
	}
	.appli-list .suspen {
		padding: 60px 40px;
	}
	.appli-list .icon {
		display: inline-block;
		width: 50px;
	}
	.appli-list .name {
		font-size: 20px;
		line-height: 40px;
		margin: 5px 0 20px;
	}
	.appli-list .text {
		font-size: 14px;
		line-height: 24px;
		height: 72px;
	}
	.appli-list .btn-more {
		width: 120px;
		height: 40px;
		line-height: 40px;
	}
	.direc-box {
		padding: 60px 0;
	}
	.appli-main .title .cn {
		font-size: 20px;
	}
	.direc-box .title {
		margin-bottom: 30px;
	}
	.direc-box .text {
		font-size: 14px;
		line-height: 30px;
	}
	.direc-list .column {
		margin-right: 60px;
	}
	.direc-list .name {
		font-size: 16px;
		line-height: 30px;
	}
	.effect-box .title {
		margin-bottom: 30px;
	}
	.effect-box .text {
		font-size: 14px;
		line-height: 30px;
		margin-bottom: 30px;
	}
	.effect-box .box {
		padding: 20px 20px 0;
	}
	.rela-case {
		padding: 60px 0 80px;
	}
	.rela-case .title {
		margin-bottom: 30px;
	}
	
	.effect-box .name{
		font-size: 18px;
	}
}

@media only screen and (max-width: 767px) {
	.appli-box {
		padding: 40px 0;
	}
	.appli-list .column {
		border-right: 0;
	}
	.appli-list .suspen {
		padding: 30px 15px;
	}
	.appli-list .name {
		font-size: 16px;
		line-height: 30px;
		margin: 10px 0;
	}
	.appli-list .btn-more {
		margin-top: 30px;
	}
	.direc-box {
		padding: 40px 0;
	}
	.appli-main .title .cn {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.direc-box .title {
		margin-bottom: 20px;
	}
	.direc-box .text {
		line-height: 24px;
	}
	.direc-list {
		margin-top: 30px;
	}
	.direc-list .column {
		margin-right: 20px;
	}
	.direc-list .column img {
		width: 30px;
	}
	.direc-list .name {
		font-size: 12px;
	}
	.effect-box {
		padding: 40px 0 0;
	}
	.effect-box .title {
		margin-bottom: 20px;
	}
	.effect-box .text {
		line-height: 24px;
		margin-bottom: 10px;
	}
	.effect-box .box {
		padding: 20px 0 0;
	}
	.effect-box .ring {
		width: 80%;
		padding-top: 80%;
		left: 8.5%;
	}
	.rela-case {
		padding: 40px 0;
	}
	.rela-case .title {
		margin-bottom: 20px;
	}
}


/* 联系我们 */

.contact-main .title {
	text-align: center;
}

.contact-main .title .cn {
	font-size: 36px;
	color: #333333;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 12px;
}

.contact-main .title .en {
	font-size: 14px;
	color: #666666;
	line-height: 1;
}

.map-box {
	padding: 70px 0 0;
}

.map-box .title,
.message-box .title {
	margin-bottom: 15px;
}

.contact-main .map-box .h1,
.contact-main .message-box .h1 {
	font-size: 18px;
	color: #666666;
	line-height: 68px;
	text-align: center;
	margin-bottom: 50px;
}

.map-box .text-box {
	padding: 10% 5% 9% 16%;
}

.map-box .h2 {
	font-size: 26px;
	color: #f7f7f7;
	line-height: 34px;
	font-weight: bold;
	margin-bottom: 6px;
}

.map-box .h3 {
	font-size: 20px;
	color: #f7f7f7;
	line-height: 34px;
	margin-bottom: 60px;
}

.map-box .text {
	font-size: 20px;
	color: #f7f7f7;
	line-height: 45px;
}

.map-box .map {
	position: relative;
	padding: 0;
}

.map-box .suspen {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
}

.message-box {
	padding: 105px 0 28px;
}

.message-box .form-inline {
	margin: 0 -25px;
}

.message-box .form-group {
	padding: 0 25px;
	margin-bottom: 60px;
}

.message-box .name {
	font-size: 18px;
	color: #333333;
	margin-bottom: 17px;
}

.message-box .form-control {
	width: 100%;
	height: 70px;
	border: 1px solid #bfbfbf;
	border-radius: 0;
	font-size: 16px;
	color: #888888;
	box-shadow: none;
}

.message-box .area-box {
	width: 100%;
	margin-bottom: 46px;
}

.message-box .area-box .form-control {
	height: 262px;
}

.message-box .btn-submit {
	width: 160px;
	height: 60px;
	font-size: 18px;
	color: #ffffff;
	background-color: #3860f4;
	border-radius: 0;
}


/* 媒体查询 */

@media only screen and (max-width: 1680px) {
	.map-box .text-box {
		padding: 8% 5% 8% 13%;
	}
}

@media only screen and (max-width: 1600px) {
	.map-box .text-box {
		padding: 5% 5% 5% 13%;
	}
}

@media only screen and (max-width: 1440px) {
	.map-box {
		padding-top: 60px;
	}
	.contact-main .title .cn {
		font-size: 28px;
		margin-bottom: 10px;
	}
	.contact-main .map-box .h1,
	.contact-main .message-box .h1 {
		font-size: 16px;
		line-height: 40px;
		margin-bottom: 30px;
	}
	.map-box .h2 {
		font-size: 20px;
		line-height: 30px;
	}
	.map-box .h3 {
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 30px;
	}
	.map-box .text {
		font-size: 16px;
		line-height: 30px;
	}
	.message-box {
		padding: 60px 0 30px;
	}
	.message-box .form-inline {
		margin: 0 -15px;
	}
	.message-box .form-control {
		font-size: 14px;
		height: 50px;
	}
	.message-box .form-group {
		padding: 0 15px;
		margin-bottom: 30px;
	}
	.message-box .name {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.message-box .area-box .form-control {
		height: 182px;
	}
	.message-box .btn-submit {
		width: 120px;
		height: 40px;
		font-size: 16px;
	}
}

@media only screen and (max-width: 1199px) {
	.map-box .text-box {
		padding: 5% 5% 5% 7.2%;
	}
}

@media only screen and (max-width: 767px) {
	.map-box {
		padding-top: 40px;
	}
	.contact-main .title .cn {
		font-size: 18px;
	}
	.contact-main .map-box .h1,
	.contact-main .message-box .h1 {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 15px;
	}
	.map-box .text-box {
		width: 100%;
		padding: 5%;
	}
	.map-box .h2 {
		font-size: 16px;
		line-height: 26px;
	}
	.map-box .h3 {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 15px;
	}
	.map-box .text {
		font-size: 14px;
		line-height: 24px;
	}
	.message-box {
		padding: 40px 0 25px;
	}
	.message-box .form-group {
		margin-bottom: 15px;
	}
	.message-box .name {
		font-size: 14px;
	}
	.message-box .form-control {
		height: auto;
	}
	.message-box .area-box .form-control {
		height: 152px;
	}
	.message-box .btn-submit {
		width: 90px;
		height: 32px;
		font-size: 14px;
	}
}


/* 人才招聘 */

.recru-main .title {
	text-align: center;
	margin-bottom: 15px;
}

.recru-main .title .cn {
	font-size: 36px;
	color: #333333;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 12px;
}

.recru-main .title .en {
	font-size: 14px;
	color: #666666;
	line-height: 1;
}

.join-box {
	padding: 70px 0 75px;
}

.join-box .h1 {
	font-size: 18px;
	color: #666666;
	line-height: 68px;
	text-align: center;
	margin-bottom: 50px;
}

.post-list .column {
	margin-bottom: 50px;
}

.post-list .top-box {
	justify-content: space-between;
	align-items: center;
	padding: 54px 102px 34px 138px;
	border: 1px solid #bfbfbf;
	cursor: pointer;
}

.post-list .l-box {
	width: 23%;
	padding-right: 2%;
}

.post-list .name {
	font-size: 22px;
	color: #3860f4;
	line-height: 26px;
	margin-bottom: 55px;
}

.post-list .text {
	font-size: 16px;
	color: #333333;
	line-height: 40px;
}

.post-list .c-box {
	width: calc(77% - 27px);
	padding-right: 3%;
}

.post-list .c-box .box {
	max-width: 630px;
	width: 100%;
}

.post-list .time {
	font-size: 0;
	margin-bottom: 55px;
}

.post-list .time>span {
	display: inline-block;
	width: 50%;
	border-left: 1px solid #a7a7a7;
	font-size: 16px;
	color: #666666;
	line-height: 26px;
	text-align: center;
	padding: 0 70px;
}

.post-list .text-box {
	justify-content: space-between;
	padding: 0 70px;
}

.post-list .r-box {
	position: relative;
	width: 27px;
	height: 27px;
	background-image: url(../images/icon40.jpg);
	background-position: center center;
	background-size: cover;
}

.post-list .r-box.on {
	background-image: url(../images/icon41.jpg);
}

.post-list .bot-box {
	display: none;
	border: 1px solid #bfbfbf;
	border-top: 0;
}

.post-list .text-box2 {
	padding: 36px 102px 56px 138px;
}

.post-list .h2 {
	font-size: 16px;
	color: #333333;
	line-height: 40px;
	font-weight: bold;
}

.post-list .text2 {
	font-size: 16px;
	color: #333333;
	line-height: 40px;
}

.post-list .text3 {
	display: none;
}

.post-list .btn-apply {
	display: block;
	width: 144px;
	height: 46px;
	font-size: 16px;
	color: #ffffff;
	line-height: 46px;
	text-align: center;
	background-color: #3860f4;
	margin-top: 40px;
}

.join-box .nav-page {
	margin-top: 75px;
}


/* 媒体查询 */

@media only screen and (max-width: 1440px) {
	.join-box {
		padding: 60px 0;
	}
	.recru-main .title .cn {
		font-size: 28px;
		margin-bottom: 10px;
	}
	.join-box .h1 {
		font-size: 16px;
		line-height: 40px;
		margin-bottom: 30px;
	}
	.post-list .top-box {
		padding: 40px 90px;
	}
	.post-list .name {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 40px;
	}
	.post-list .text {
		font-size: 14px;
		line-height: 24px;
	}
	.post-list .time {
		margin-bottom: 40px;
	}
	.post-list .time>span {
		font-size: 14px;
		line-height: 20px;
		padding: 0 35px;
	}
	.post-list .text-box {
		padding: 0 35px;
	}
	.post-list .r-box {
		width: 20px;
		height: 20px;
	}
	.post-list .text-box2 {
		padding: 30px 90px;
	}
	.post-list .h2 {
		font-size: 14px;
		line-height: 30px;
	}
	.post-list .text2 {
		font-size: 14px;
		line-height: 30px;
	}
	.post-list .btn-apply {
		width: 120px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
}

@media only screen and (max-width: 1199px) {
	.post-list .top-box {
		padding: 30px 50px;
	}
	.post-list .text-box2 {
		padding: 20px 50px;
	}
	.post-list .btn-apply {
		margin-top: 20px;
	}
}

@media only screen and (max-width: 991px) {
	.post-list .top-box {
		padding: 20px;
	}
	.post-list .name {
		margin-bottom: 30px;
	}
	.post-list .time {
		margin-bottom: 30px;
	}
	.post-list .time>span {
		padding: 0 10px;
	}
	.post-list .text-box {
		padding: 0 10px;
	}
	.post-list .text-box2 {
		padding: 20px;
	}
	
	.effect-box .name{
		margin-left: -5px;
	}
}

@media only screen and (max-width: 767px) {
	.join-box {
		padding: 40px 0;
	}
	.recru-main .title .cn {
		font-size: 18px;
	}
	.join-box .h1 {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 15px;
	}
	.post-list .column {
		margin-bottom: 20px;
	}
	.post-list .top-box {
		padding: 15px;
	}
	.post-list .l-box {
		width: 100%;
		padding-right: 0;
	}
	.post-list .name {
		margin-bottom: 15px;
	}
	.post-list .text {
		display: none;
	}
	.post-list .c-box {
		width: 100%;
		padding-right: 0;
	}
	.post-list .time {
		margin-bottom: 0;
	}
	.post-list .time>span {
		padding: 0 5px;
		border-left: 0;
		padding-left: 0;
		text-align: left;
		font-size: 12px;
	}
	.post-list .r-box {
		display: none;
	}
	.post-list .text-box2 {
		padding: 15px;
	}
	.post-list .h2 {
		line-height: 24px;
	}
	.post-list .text2 {
		line-height: 24px;
	}
	.post-list .text3 {
		display: block;
	}
	.post-list .btn-apply {
		width: 90px;
		height: 32px;
		font-size: 12px;
		line-height: 32px;
		margin-top: 10px;
	}
	.join-box .nav-page {
		margin-top: 30px;
	}
	
	.effect-box .name{
		bottom: 1%;
		font-size: 12px;
		margin-left: -2px;
	}
}


/* 新闻 */

.news-box {
	padding: 100px 0 80px;
}

.news-box .box-wrap {
	justify-content: space-between;
}

.news-box .l-box {
	width: 69.5%;
}

.news-list2 .column {
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: 1px solid #e5e5e5;
}

.news-list2 .img {
	border-radius: 10px;
}

.news-list2 .text-box {
	width: calc(100% - 370px);
	padding: 24px 40px 0;
}

.news-list2 .h1 {
	font-size: 24px;
	color: #333333;
	line-height: 36px;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 17px;
	transition: all .3s;
}

.news-list2 .time {
	font-size: 16px;
	color: #666666;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 25px;
}

.news-list2 .text {
	font-size: 18px;
	color: #666666;
	line-height: 36px;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-list2 .btn-more {
	display: inline-block;
	font-size: 16px;
	color: #666666;
	line-height: 36px;
	margin-top: 14px;
	padding-right: 20px;
	background-image: url(../images/icon42.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	transition: all .3s;
}

.news-list2 .column:hover .h1 {
	color: #3860f4;
}

.news-list2 .column:hover .btn-more {
	color: #3860f4;
	background-image: url(../images/icon43.jpg);
}

.news-box .nav-page {
	margin-top: 77px;
}

.news-box .r-box {
	width: 30.5%;
}

.hot-box {
	padding-left: 35px;
	margin-left: 45px;
	border-left: 1px solid #e5e5e5;
}

.hot-box .h1 {
	font-size: 24px;
	color: #333333;
	line-height: 36px;
	font-weight: bold;
	padding: 40px 0 22px;
}

.hot-list .column {
	background-color: #f7f7f7;
	margin-bottom: 40px;
}

.hot-list .column a {
	display: block;
	padding: 34px 34px 26px;
}

.hot-list .text {
	font-size: 18px;
	color: #666666;
	line-height: 34px;
	height: 102px;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.hot-list .time {
	font-size: 16px;
	color: #666666;
	line-height: 36px;
	font-weight: bold;
	margin-top: 20px;
}

.news-box.detail-box {
	padding: 80px 0 50px;
}

.news-box.detail-box .box-wrap {
	align-items: stretch;
}

.news-box.detail-box .top-box {
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}

.news-box.detail-box .top-box .h1 {
	font-size: 24px;
	color: #333333;
	line-height: 36px;
	font-weight: bold;
	padding: 45px 0 16px;
}

.news-box.detail-box .top-box .time {
	font-size: 16px;
	color: #666666;
	line-height: 36px;
	font-weight: bold;
	margin-right: 160px;
}

.news-box.detail-box .share {
	font-size: 16px;
	color: #666666;
	line-height: 36px;
}

.news-box.detail-box .share a {
	margin-right: 10px;
}

.news-box.detail-box .text-box {
	padding: 40px 0;
}

.news-box.detail-box .text-box .text {
	font-size: 18px;
	color: #333333;
	line-height: 40px;
}

.upper-lower {
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid #e5e5e5;
}

.upper-lower .nav {
	width: calc(100% - 70px);
	
}

.upper-lower .nav a {
	font-size: 18px;
	color: #333333;
	line-height: 40px;
	transition: all .3s;
}

.upper-lower .nav a:hover {
	color: #3860f4;
}

.upper-lower .s1 {
	width: 95px;
}

.upper-lower .s2 {
	max-width: calc(100% - 75px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.upper-lower .btn-return {
	font-size: 18px;
	color: #333333;
	line-height: 40px;
	padding-right: 24px;
	background-image: url(../images/icon47.jpg);
	background-repeat: no-repeat;
	background-position: right center;
}

.news-box.detail-box .hot-box {
	height: 100%;
}


/* 媒体查询 */

@media only screen and (max-width: 1600px) {
	.news-list2 .img {
		width: 320px;
	}
	.news-list2 .text-box {
		width: calc(100% - 320px);
		padding: 15px 20px 0;
	}
	.news-list2 .h1 {
		margin-bottom: 10px;
	}
	.news-list2 .time {
		margin-bottom: 10px;
	}
	.hot-box {
		padding-left: 30px;
		margin-left: 30px;
	}
	.hot-list .column a {
		padding: 20px;
	}
	.hot-box .h1 {
		padding: 15px 0 10px;
	}
}

@media only screen and (max-width: 1440px) {
	.news-box {
		padding: 70px 0 60px;
	}
	.news-list2 .column {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.news-list2 .h1 {
		font-size: 18px;
		line-height: 30px;
	}
	.news-list2 .time {
		font-size: 14px;
	}
	.news-list2 .text {
		font-size: 14px;
		line-height: 30px;
	}
	.news-list2 .btn-more {
		font-size: 14px;
		line-height: 30px;
	}
	.hot-box .h1 {
		font-size: 18px;
		line-height: 30px;
	}
	.hot-list .text {
		font-size: 14px;
		line-height: 30px;
		height: 90px;
	}
	.hot-list .time {
		font-size: 14px;
		line-height: 30px;
		margin-top: 10px;
	}
	.news-box.detail-box {
		padding: 60px 0 40px;
	}
	.news-box.detail-box .top-box .h1 {
		font-size: 18px;
		line-height: 30px;
		padding: 15px 0 10px;
	}
	.news-box.detail-box .top-box .time {
		font-size: 14px;
		line-height: 30px;
	}
	.news-box.detail-box .share {
		font-size: 14px;
		line-height: 30px;
	}
	.news-box.detail-box .text-box .text {
		font-size: 14px;
		line-height: 30px;
	}
	.upper-lower .nav a {
		font-size: 14px;
		line-height: 30px;
	}
	.upper-lower .btn-return {
		font-size: 14px;
		line-height: 30px;
	}
}

@media only screen and (max-width: 1024px) {
	.news-box .l-box {
		width: 100%;
	}
	.news-box .r-box {
		display: none;
	}
}

@media only screen and (max-width: 640px) {
	.news-box {
		padding: 40px 0;
	}
	.news-list2 .column {
		padding-bottom: 0;
		margin-bottom: 20px;
	}
	.news-list2 .img {
		width: 100%;
	}
	.news-list2 .text-box {
		width: 100%;
		padding: 15px 0;
	}
	.news-list2 .h1 {
		font-size: 16px;
		line-height: 20px;
	}
	.news-list2 .text {
		line-height: 24px;
	}
	.news-list2 .btn-more {
		line-height: 24px;
		margin-top: 10px;
	}
	.news-box .nav-page {
		margin-top: 30px;
	}
	.news-box.detail-box {
		padding: 40px 0;
	}
	.news-box.detail-box .top-box {
		padding-bottom: 15px;
	}
	.news-box.detail-box .top-box .h1 {
		font-size: 16px;
		line-height: 20px;
		padding-top: 0;
	}
	.news-box.detail-box .top-box .time {
		line-height: 24px;
		margin-right: 20px;
	}
	.news-box.detail-box .share {
		line-height: 24px;
	}
	.news-box.detail-box .share a {
		display: inline-block;
		width: 18px;
		margin-right: 5px;
	}
	.news-box.detail-box .text-box {
		padding: 25px 0;
	}
	.upper-lower {
		margin-top: 0;
		padding-top: 15px;
	}
	.upper-lower .nav a {
		line-height: 24px;
	}
	.upper-lower .s1 {
		width: 60px;
	}
	.upper-lower .s2 {
		max-width: calc(100% - 60px);
	}
}

/* 搜索 */
.top-search .form{
	max-width: 500px;
	width: 100%;
	margin: 150px auto 100px;
	font-size: 0;
	border: 1px solid #DDDDDD;
	border-radius: 5px;
	padding: 0 5px;
}

.top-search .input-text{
	display: inline-block;
	width: calc(100% - 40px);
	height: 40px;
	border: 0;
	box-shadow: none;
}

.top-search .btn-submit{
	width: 40px;
	height: 40px;
	font-size: 0;
	background: none;
	padding: 0;
}

.search-box .news-list2{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.search-box .news-list2 .text-box{
	width: 100%;
	padding: 0;
}

.search-box .news-list2 .column{
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.search-box .nav-page{
	margin: 50px 0 50px;
}

/* 媒体查询 */
@media only screen and (max-width: 1440px){
	.top-search .form{
		margin: 70px auto 50px;
	}
}

@media only screen and (max-width: 767px){
	.top-search .form{
		margin: 50px auto 30px;
	}
}