@charset "utf-8";
@import url('reset.css');
@import url('animate.min.css');
@import url('/public/plugins/font-awesome-4.7.0/css/font-awesome.min.css');

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--page-width: 1600px;
	--font-size: 14px;
	--font-color: #939393;
	--theme-color: #2a6cf4;
	--hover-color: #23a3d9;
	--nav-height: 96px;
	--nav-son-color: #23a3d9;
	--p-line-height: 200%;
	--p-size: 18px;
	--p-color: #808080;
	--font-color-hover: #23a3d9;
}

body {
	background-color: #fff;
	overflow: hidden;
	font-size: var(--font-size);
}


input,
button {
	font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, 微软雅黑, Arial, sans-serif;
}

img {
	max-width: 100%;
}

a {
	background: transparent;
	text-decoration: none;
	color: var(--p-color)
}

a:active,
a:hover {
	outline: 0
}

a:hover {
	text-decoration: none;
	color: var(--hover-color)
}

.textCenter {
	text-align: center;
}

.wrapper {
	width: var(--page-width);
	margin: 0 auto;
	text-align: left
}

.index .wrapper {
	width: var(--page-width);
}

.ov {
	overflow: hidden;
}

.ts {
	text-transform: uppercase
}

.mauto {
	margin: 0 auto
}

.pz {
	position: relative;
	z-index: 0
}

.pa {
	position: absolute;
	z-index: 0
}

.bz {
	box-sizing: border-box
}

.b {
	font-weight: bold
}

.i {
	font-style: italic
}

.hidden {
	display: none !important
}

.cb {
	clear: both
}

.tes {
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mt20 {
	margin-top: 20px;
}

/*animation*/
@keyframes slideDown {
	0% {
		top: 45px;
		opacity: 0;
	}

	to {
		top: 100px;
		opacity: 1;
	}
}

@-webkit-keyframes slideDown {
	0% {
		top: 45px;
		opacity: 0;
	}

	to {
		top: 100px;
		opacity: 1;
	}
}

@keyframes slideUp {
	0% {
		transform: translate(-50%, 100%);
		opacity: 0;
	}

	to {
		transform: translate(-50%, 0);
		opacity: 1;
	}
}

@-webkit-keyframes slideUp {
	0% {
		transform: translate(-50%, 100%);
		opacity: 0;
	}

	to {
		transform: translate(-50%, 0);
		opacity: 1;
	}
}

@keyframes headerDown {
	0% {
		transform: translateY(-70%);
	}

	to {
		transform: translateY(0);
	}
}

.img img {
	transform: scale(1);
}

a:hover .img img {
	transform: scale(1.1, 1.1);
}

.flex {
	display: flex;
	display: -webkit-flex;
}

.flexJb {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}

.flexColumn {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
}

.flexAc {
	display: flex;
	display: -webkit-flex;
	align-items: center;
}

.flexCenter {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}

.flexWrap {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}

.flexRight {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
}

.ovd {
	overflow: hidden;
}

.db {
	display: block;
}

#app {
	overflow: hidden;
}

.wow {
	visibility: hidden;
	/* 初始状态不可见 */
	opacity: 0;
	/* 初始状态完全透明 */
}

.wow.animate__animated {
	visibility: visible;
	/* 动画触发时可见 */
	opacity: 1;
	/* 动画触发时完全不透明 */
}

[v-clock] {
	display: none;
}

/*header*/
.container {
	max-width: 1800px;
	padding: 0 100px;
	margin: 0 auto;
}

/* ========== */
/* = PC-HEADER = */
/* ========== */
.pc-header {
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, .3);
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

.pc-header .logo img,
.pc-header .logo2 img {
	height: 75px;
}

.pc-header .logo2 {
	display: none;
}

.pc-header>.container {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
}

.pc-header ul {
	width: 58%;
	max-width: 840px;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
}

.pc-header ul li>a {
	font-size: 20px;
	line-height: 100px;
	height: 100px;
	color: #fff;
}

.pc-header ul li.current>a,
.pc-header ul li:hover>a {
	color: #2a6cf4;
}

.pc-header .navdiv {
	display: none;
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	background-image: url(../images/navdiv_bg.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

.pc-header .navdiv .container {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}

.pc-header .navdiv .text {
	width: 30%;
	padding: 65px 0 80px;
	background: #f8f8f8;
	position: relative;
	font-weight: bold;
}

.pc-header .navdiv .text:before {
	content: "";
	position: absolute;
	right: 100%;
	top: 0;
	width: 100%;
	background: #f8f8f8;
	height: 100%;
}

.pc-header .navdiv .text span {
	font-size: 36px;
	color: #333333;
}

.pc-header .navdiv .text p {
	font-size: 60px;
	color: #cdcdcd;
	margin-top: 10px;
	text-transform: uppercase;
}

.pc-header .navdiv .con {
	width: 70%;
	padding: 40px 80px;
}

.pc-header .navdiv .con .row {
	margin-bottom: 50px;
}

.pc-header .navdiv .con .tit {
	margin-bottom: 15px;
	position: relative;
}

.pc-header .navdiv .con .tit img {
	position: absolute;
	top: 50%;
	margin-top: -15px;
	left: -40px;
}

.pc-header .navdiv .con .tit span {
	font-size: 18px;
	color: #333333;
}

.pc-header .navdiv .con a {
	display: inline-block;
	font-size: 16px;
	margin-right: 35px;
	text-transform: uppercase;
}

.pc-header .navdiv .con a:hover {
	color: #2a6cf4;
}

.pc-header .navdiv .con .des {
	width: 120%;
	clear: both;
	font-size: 30px;
	color: #d0d0d0;
	font-style: italic;
	margin-top: 100px;
}

.pc-header .navdiv .con .des span {
	display: inline-block;
	padding: 0 40px;
	position: relative;
}

.pc-header .navdiv .con .des span:before,
.pc-header .navdiv .con .des span:after {
	content: "";
	position: absolute;
	width: 30px;
	height: 30px;
	background-size: cover;
}

.pc-header .navdiv .con .des span:before {
	left: 0;
	top: -8px;
	background-image: url(../images/navdiv_yin1.png);
}

.pc-header .navdiv .con .des span:after {
	right: 0;
	bottom: -8px;
	background-image: url(../images/navdiv_yin2.png);
}

.pc-header li:hover .navdiv {
	display: block;
}

.pc-header .top .tel {
	display: block;
	padding-left: 40px;
	line-height: 30px;
	background: url(../images/icon/ico_tel.png) no-repeat left;
	color: #2a6cf4;
	font-size: 20px;
}

.pc-header .top a {
	margin-top: 4px;
	display: block;
	background: #2a6cf4;
	color: #FFFFFF;
	font-size: 18px;
	line-height: 40px;
	padding: 0 5px;
	text-align: center;
}

.pc-header .a-en {
	position: relative;
	display: inline-block;
	padding-left: 34px;
	color: #444;
}

.pc-header .a-en:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -15px;
	display: block;
	width: 30px;
	height: 30px;
	background-size: cover;
	background-image: url(../images/ico_en2.png);
}

.pc-header-index {
	background: rgba(0, 0, 0, .3);
	-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, .08);
	box-shadow: 0 0 0 rgba(0, 0, 0, .08);
}

.pc-header-index .logo2 {
	display: block;
}

.pc-header-index .logo {
	display: none;
}

.pc-header-index ul li>a {
	color: #FFFFFF;
}

.pc-header-index ul li.current>a {
	color: #FFFFFF;
}

.pc-header-index .top .tel {
	color: #FFFFFF;
}

.pc-header-index .a-en {
	color: #fff;
}

.pc-header-index .a-en:after {
	background-image: url(../images/ico_en.png);
}

@media (max-width:1540px) {
	.pc-header .navdiv .con .des span {
		font-size: 26px;
	}
}

@media (max-width:1300px) {
	.pc-header .navdiv .con .des span {
		font-size: 22px;
	}
}

.pc-header .r .search-icon {
	width: 100px;
	height: 100px;
	background-color: #2a6cf4;
	cursor: pointer;
}

.pc-header .r .search-icon svg {
	fill: #fff;
}

.pc-header-index .r .search-icon {
	background: none;
}

.pc-header .r .tel {
	margin-right: 60px;
}

.pc-header .r .tel .number {
	height: 25px;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #fff;
}

.pc-header .r .tel .title {
	height: 28px;
	font-size: 16px;
	color: #fff;
}

.pc-header .r .tel svg {
	fill: #fff;
	margin-right: 15px;
}

.pc-header-index .r .tel .number,
.pc-header-index .r .tel .title {
	color: #fff;
}

.pc-header-index .r .tel svg {
	fill: #fff;
}

/*swiper*/
.home-swiper .swiper-slide {
	z-index: 1;
}

.home-swiper .swiper-slide::after {
	content: "";
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(0, 0, 0, .6);
}

.home-swiper img {
	width: 100%;
}

.home-swiper article {
	top: 20%;
	left: 0;
	width: 100%;
	z-index: 999;
}

.home-swiper article .title {
	font-weight: bold;
	font-size: 66px;
	color: #fff;
	line-height: 140%;
}

.home-swiper article .des {
	margin-top: 25px;
	font-size: 32px;
	color: #fff;
	line-height: 46px;
}

.swiper-button-next,
.swiper-button-prev {
	color: #fff !important;
}

.swiper-pagination-bullet-active {
	background-color: var(--font-color) !important;
}

.home-swiper .swiper-pagination {
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: center;
	bottom: 25px !important;
}

.home-swiper .swiper-pagination-bullet {
	background-color: #fff;
	opacity: 1;
	width: 15px;
	height: 15px;
	border: 1px solid transparent;
	border-radius: 50%;
	background: none !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-swiper .swiper-pagination-bullet::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background-color: #fff;
	border-radius: 50%;
}

.home-swiper .swiper-pagination-bullet-active {
	border-color: #fff;
}

/*other*/
.banner {
	width: 100%;
}

.banner img {
	display: block;
	width: 100%;
}

.banner article {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.banner article .title {
	line-height: 150%;
	font-size: 48px;
	color: #fff;
}

.banner article .intro {
	line-height: 250%;
	font-size: 32px;
	color: #fff;
}

/*service*/
.service-page1 {
	padding: 100px 0;
}

.service-page1 .title {
	line-height: 65px;
	font-size: 48px;
	color: #343434;
}

.service-page1 .intro {
	margin-top: 14px;
	line-height: 37px;
	font-size: 18px;
	color: #999;
}

.service-page1 .text {
	margin-top: 76px;
}

.service-page1 .text article {
	font-size: 30px;
	color: #0b328c;
}

.service-page1 .text article:first-child {
	margin-right: 79px;
	padding-right: 181px;
	background: url(../images/icon/service-page1-arrow.png) no-repeat right center;
}

.service-page1 .text article:last-child {
	margin-left: 79px;
	padding-left: 181px;
	background: url(../images/icon/service-page1-arrow2.png) no-repeat left center;
}

.service-page1 .text div {
	font-size: 18px;
	color: #333;
}

.service-page1 ul {
	margin-top: 71px;
	padding: 0 153px;
}

.service-page1 ul li {
	width: 252px;
	height: 152px;
	border: 2px solid #787878;
	border-radius: 10px;
	margin-right: 42px;
}

.service-page1 ul li:last-child {
	margin-right: 0;
}

.service-page1 ul li .title2 {
	line-height: 39px;
	font-size: 24px;
	color: #0b328c;
}

.service-page1 ul li .content {
	margin-top: 12px;
	line-height: 24px;
	font-size: 16px;
	color: #333;
}

.service-page2 {
	padding: 77px 0 100px 0;
	background: url(../images/bg/service-page2.jpg) no-repeat center top;
	background-size: cover;
}

.service-page2 .typename {
	line-height: 69px;
	font-size: 48px;
	color: #fff;
}

.service-page2 .typename2 {
	margin-top: 15px;
	line-height: 29px;
	font-size: 18px;
	color: #fff;
}

.service-page2>ul {
	margin-top: 68px;
}

.service-page2>ul>li {
	margin-bottom: 12px;
}

.service-page2>ul>li .title {
	line-height: 49px;
	width: 229px;
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 30px;
	color: #fff;
}

.service-page2>ul>li .title2 {
	line-height: 49px;
	width: 146px;
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 30px;
	color: #fff;
}

.service-page2>ul>li>ul {
	width: 1002px;
}

.service-page2>ul>li:first-child>ul>li:not(.arrow) div.title3 {
	width: 142px;
	height: 52px;
	border: 2px solid #fff;
	border-radius: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #fff;
}

.service-page2>ul>li:first-child>ul>li:not(.arrow) div.img {
	margin-top: 12px;
}

.service-page2>ul>li:first-child>ul>li.arrow {
	width: 59px;
	height: 16px;
	background: url(../images/icon/service-page2-arrow.png) no-repeat;
	margin: 0 5px;
	margin-top: 17px;
}

.service-page2>ul>li:nth-child(2)>ul {
	width: 1002px;
	min-height: 202px;
	overflow: hidden;
	border: 2px solid #b5bedb;
	border-radius: 45px;
	background-color: rgba(42, 108, 244, .7);
	padding: 0 25px;
}

.service-page2>ul>li:nth-child(3)>ul {
	margin-top: 7px;
	padding: 0 82px 0 72px;
}

.service-page2>ul>li:nth-child(3)>ul li {
	width: 8px;
	height: 37px;
}

.service-page2>ul>li:nth-child(4)>ul li {
	width: 151px;
	height: 206px;
	border: 1px solid #fff;
	border-radius: 8px;
}

.service-page2>ul>li:nth-child(4)>ul li .title2 {
	height: 37px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: #fff;
}

.service-page2>ul>li:nth-child(4)>ul li article {
	margin-top: 8px;
	line-height: 24px;
	font-size: 16px;
	color: #fff;
}

.service-page3 {
	width: 100%;
	background: url(../images/bg/service-page3.jpg) no-repeat center top #f9f9f9;
	padding: 90px 0 0 0;
	min-height: 1080px;
}

.service-page3 .typename {
	line-height: 69px;
	font-size: 48px;
	color: #343434;
}

.service-page3 .title {
	margin-top: 9px;
	line-height: 51px;
	font-size: 24px;
	color: #0b328c;
}

.service-page3 .intro {
	line-height: 30px;
	font-size: 16px;
	color: #333;
}

.service-page3 article {
	margin-right: 41px;
	flex-shrink: 0;
}

.service-page3 ul {
	width: 1440px;
}

.service-page3 li {
	position: absolute;
	z-index: 10;
}

.service-page3 li .icon {
	width: 93px;
	height: 93px;
	background-color: #0b328c;
	border-radius: 50%;
	line-height: 93px;
	font-size: 0;
	text-align: center;
	flex-grow: 0;
	flex-shrink: 0;
}

.service-page3 li .icon img {
	max-width: 60%;
	max-height: 60%;
	vertical-align: middle;
}

.service-page3 li:first-child {
	top: 115px;
	right: 955px;
}

.service-page3 li:nth-child(2) {
	top: 115px;
	left: 947px;
}

.service-page3 li:nth-child(3) {
	top: 403px;
	right: 1074px;
}

.service-page3 li:nth-child(3) article {
	width: 320px;
}

.service-page3 li:nth-child(4) {
	top: 403px;
	left: 1068px;
}

.service-page3 li:nth-child(5) {
	top: 694px;
	right: 948px;
}

.service-page3 li:nth-child(6) {
	top: 694px;
	left: 948px;
}

.service-page3 li:nth-child(even) article {
	margin-left: 48px;
}

.service-page3 li:last-child {
	top: 488px;
	left: 615px;
	width: 203px;
}

.service-page3 li:last-child .title2 {
	line-height: 42px;
	font-size: 30px;
	color: #fff;
}

.service-page3 li:last-child .title3 {
	line-height: 43px;
	font-size: 18px;
	color: #fff;
}

.service-page4 {
	background: url(../images/bg/service-page4.jpg) no-repeat center top;
	background-size: cover;
	padding: 78px 0;
}

.service-page4 .typename {
	line-height: 69px;
	font-size: 48px;
	color: #fff;
}

.service-page4 ul {
	margin-top: 67px;
	align-items: stretch;
}

.service-page4 ul li {
	width: calc((100% - 92px) / 3);
	margin-right: 46px;
	background-color: #fff;
	border-radius: 10px;
	padding: 65px 34px;
	cursor: pointer;
}

.service-page4 ul li .icon {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 10px 10px #ccc;
	text-align: center;
	line-height: 65px;
}

.service-page4 ul li .icon img {
	max-width: 90%;
	max-height: 90%;
	vertical-align: middle;
}

.service-page4 ul li .num {
	font-size: 84px;
	font-weight: bold;
	color: #eee;
}

.service-page4 ul li .title {
	margin-top: 115px;
	height: 50px;
	line-height: 50px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 48px;
	color: #0b328c;
}

.service-page4 ul li .content {
	margin-top: 14px;
	line-height: 30px;
	font-size: 16px;
	color: #666;
}

.service-page4 ul li:hover {
	background: url(../images/bg/service-page4-li.png) no-repeat center bottom #0b328c;
}

.service-page4 ul li:hover .icon {
	background-color: #fff;
	box-shadow: none;
}

.service-page4 ul li:hover .num {
	color: #7885b3;
}

.service-page4 ul li:hover .title,
.service-page4 ul li:hover .content {
	color: #fff;
}

.service-page5 {
	padding: 90px 0 0;
	background-color: #f9f9f9;
}

.service-page5 .typename {
	line-height: 65px;
	font-size: 48px;
	color: #343434;
}

.service-page5 .description {
	margin-top: 17px;
	line-height: 31px;
	font-size: 18px;
	color: #999;
}

.service-page5 .description span {
	color: #4278f4;
}

.service-page5 .wrapper {
	margin-top: 71px;
	height: 543px;
	background: url(../images/bg/service-page5-center.jpg) no-repeat center top;
}

.service-page5 .wrapper {
	width: 1440px;
}

.service-page5 .wrapper ul {
	width: 100%;
}

.service-page5 .wrapper li .title {
	line-height: 47px;
	font-size: 24px;
	color: #0b328c;
}

.service-page5 .wrapper li .title2 {
	line-height: 27px;
	font-size: 16px;
	color: #333;
}

.service-page5 .wrapper li:nth-child(1) {
	width: 306px;
}

.service-page5 .wrapper li:nth-child(2) {
	width: 292px;
}

.service-page5 .wrapper ul:first-child li {
	margin-top: 45px;
}

.service-page5 .wrapper ul:nth-child(2) li {
	margin-top: 18px;
}

.service-page5 .wrapper ul:nth-child(3) li {
	margin-top: 20px;
}

.service-page5 .wrapper ul:nth-child(2) li:nth-child(1) {
	width: 385px;
}

.service-page5 .wrapper ul:nth-child(2) li:nth-child(2) {
	width: 367px;
}

.service-page5 .wrapper ul:nth-child(3) li:nth-child(1) {
	width: 470px;
}

.service-page5 .wrapper ul:nth-child(3) li:nth-child(2) {
	width: 457px;
}

.service-page6 {
	padding: 132px 0 112px 0;
}

.service-page6 .typename {
	line-height: 60px;
	font-size: 48px;
	color: #343434;
}

.service-page6 .c {
	width: 100%;
	padding: 0 5%;
	margin-top: 122px;
}

.service-page6 .c .title {
	line-height: 50px;
	font-size: 24px;
	color: #0b328c;
}

.service-page6 .c .content {
	line-height: 30px;
	font-size: 16px;
	color: #333;
}

.service-page6 .c article {
	margin-top: 10px;
}

.service-page6 .c .icon {
	width: 93px;
	height: 93px;
	border-radius: 50%;
	background-color: #0b328c;
	text-align: center;
	line-height: 93px;
}

.service-page6 .c .icon img {
	max-width: 90%;
	max-height: 90%;
	vertical-align: middle;
}

.service-page6 .c .l li .icon {
	margin-left: 41px;
}

.service-page6 .c .l li article {
	width: 280px;
}

.service-page6 .c .r li article {
	width: 295px;
	margin-left: 48px;
}

.service-page6 .c .circle {
	border: 109px solid #e9f0fe;
	width: 538px;
	background-color: #0b328c;
	border-radius: 50%;
	height: 538px;
	margin: 25px 109px 0 109px;
	flex-grow: 0;
	flex-shrink: 0;
}

.service-page6 .c li {
	margin-bottom: 35px;
}

.service-page7 {
	padding: 124px 0 110px 0;
	background: url(../images/bg/service-page7.jpg) no-repeat center top;
	background-size: cover;
}

.service-page7 .typename {
	line-height: 81px;
	font-size: 48px;
	color: #fff;
}

.service-page7 .typedes {
	margin-top: 70px;
	line-height: 48px;
	font-size: 24px;
	color: #fff;
}

.service-page7 .l {
	width: 720px;
	margin-top: 90px;
}

.service-page7 .l li {
	margin-bottom: 62px;
}

.service-page7 .l li:last-child {
	margin-bottom: 0;
}

.service-page7 .l li .icon {
	width: 94px;
	height: 94px;
	border: 1px solid #fff;
	border-radius: 50%;
	line-height: 94px;
	text-align: center;
	font-size: 0;
}

.service-page7 .l li .icon img {
	vertical-align: middle;
}

.service-page7 .l li article {
	margin-left: 45px;
}

.service-page7 .l li article .title {
	line-height: 37px;
	font-size: 24px;
	color: #fff;
}

.service-page7 .l li article .title2 {
	line-height: 55px;
	font-size: 36px;
	color: #fff;
	font-weight: bold;
}

.service-page7 .r {
	flex-grow: 0;
	flex-shrink: 0;
	width: 880px;
	margin-top: 50px;
}

.service-page7 .r li {
	width: 33.333%;
	height: 155px;
	text-align: center;
	line-height: 155px;
	font-size: 0;
}

.service-page7 .r li img {
	max-width: 90%;
	max-height: 90%;
	vertical-align: middle;
}

/*about*/
.about-page1 {
	padding: 90px 0 80px 0;
	background: url(../images/bg/about-page1.jpg) no-repeat right bottom;
}

.about-page1 .typename {
	line-height: 66px;
	font-size: 48px;
	color: #343434;
}

.about-page1 .typedes {
	line-height: 43px;
	font-size: 18px;
	color: #999;
}

.about-page1 .typedes::after {
	content: '';
	display: block;
	width: 48px;
	height: 4px;
	background-color: #0b328c;
	margin-top: 13px;
}

.about-page1 .type-content {
	line-height: 76px;
	font-size: 18px;
	color: #666;
	margin-top: 20px;
}

.about-page1 ul {
	margin-top: 40px;
}

.about-page1 ul li {
	min-width: 150px;
}

.about-page1 ul li .number {
	height: 73px;
}

.about-page1 ul li .number .n {
	font-size: 80px;
	color: #333;
	font-weight: bold;
	line-height: 73px;
}

.about-page1 ul li:nth-child(4n) .number .n {
	color: #0b328c;
}

.about-page1 ul li .number .u {
	font-size: 18px;
	color: #808080;
}

.about-page1 ul li .text {
	line-height: 38px;
	font-size: 16px;
	color: #808080;
}

.about-page2 {
	padding: 90px 0 80px 0;
	background: url(../images/bg/about-page2.jpg) no-repeat right top;
	background-size: cover;
}

.about-page2 .prev,
.about-page2 .next {
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 10px #ccc;
	top: 50%;
}

.about-page2 .prev.disabled,
.about-page2 .next.disabled {
	opacity: .3;
	cursor: not-allowed;
}

.about-page2 .prev i,
.about-page2 .next i {
	font-size: 30px;
	color: var(--theme-color);
}

.about-page2 .prev {
	left: 5%;
}

.about-page2 .next {
	right: 5%;
}

.about-page2 .typename {
	line-height: 66px;
	font-size: 48px;
	color: #343434;
}

.about-page2 .typedes {
	line-height: 43px;
	font-size: 18px;
	color: #999;
}

.about-page2 .typedes::after {
	content: '';
	display: block;
	width: 48px;
	height: 4px;
	background-color: #0b328c;
	margin-top: 13px;
}

.about-page2 .type-content {
	line-height: 76px;
	font-size: 18px;
	color: #666;
	margin-top: 20px;
}

.about-page2 .list {
	margin-top: 63px;
}

.about-page2 .list li {
	display: none;
	animation: fadeIn 2.5s 1;
}

.about-page2 .list li.active {
	display: flex;
}

.about-page2 .list .image-wrap {
	width: 720px;
	height: 405px;
}

.about-page2 .list .image-wrap img {
	width: 100%;
	height: 405px;
	object-fit: cover;
}

.about-page2 .list article {
	margin-left: 62px;
	flex: 1;
}

.about-page2 .list article .year {
	line-height: 193px;
	font-size: 200px;
	color: #0b328c;
	font-weight: bold;
}

.about-page2 .list article .intro {
	margin-top: 36px;
	line-height: 36px;
	font-size: 18px;
	color: #333;
}

.about-page2 .years {
	width: 100%;
	height: 133px;
	overflow: scroll;
	overflow-x: auto;
	overflow-y: hidden;
}

.about-page2 .years::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #2a6cf4;
	position: absolute;
	z-index: -1;
	top: 81px;
	left: 0;
}

.about-page2 .years li {
	width: 120px;
	height: 133px;
	line-height: 31px;
	font-size: 18px;
	color: #999;
}

.about-page2 .years li::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-color: #999;
	margin-top: 61px;
	border-radius: 50%;
}

.about-page2 .years li.active {
	color: #2a6cf4;
}

.about-page2 .years li.active::before {
	background-color: #2a6cf4;
}

.about-page3 {
	padding: 98px 0;
	background: url(../images/bg/about-page3.jpg) no-repeat center bottom;
	background-size: cover;
}

.about-page3 .typename {
	line-height: 74px;
	font-size: 48px;
	color: #fff;
}

.about-page3 .typename::after {
	content: '';
	display: block;
	width: 48px;
	height: 4px;
	background-color: #fff;
	margin-top: 23px;
}

.about-page3 .typedes {
	margin-top: 31px;
	line-height: 27px;
	font-size: 16px;
	color: #fff;
}

.about-page3 .tabs {
	margin-top: 42px;
	width: 448px;
	height: 50px;
	background-color: #fff;
	padding: 0 44px;
}

.about-page3 .tabs li {
	font-size: 16px;
	color: #333;
}

.about-page3 .image-wrap {
	margin-top: 78px;
}

.about-page4 {
	padding: 98px 0 100px 0;
}

.about-page4 .typename {
	line-height: 74px;
	font-size: 48px;
	color: #333;
}

.about-page4 .typename::after {
	content: '';
	display: block;
	width: 48px;
	height: 4px;
	background-color: #fff;
	margin-top: 23px;
}

.about-page4 ul {
	margin-top: 40px;
	align-items: stretch;
}

.about-page4 ul li {
	width: calc((100% - 96px) / 3);
	margin-right: 48px;
	border: 1px solid #e6e6e6;
	padding: 32px 40px 44px 40px;
}

.about-page4 ul li:nth-child(3n) {
	margin-right: 0;
}

.about-page4 ul li .num {
	line-height: 50px;
	font-size: 50px;
	color: #e5e5e5;
}

.about-page4 ul li .title {
	margin-top: 27px;
	height: 34px;
	line-height: 34px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 24px;
	color: #333;
}

.about-page4 ul li .title::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	margin-right: 9px;
	background-color: #0b328c;
}

.about-page4 ul li article {
	margin-top: 18px;
	line-height: 24px;
	font-size: 14px;
	color: #333;
}

.about-page4 ul li:hover {
	background-color: #0b328c;
}

.about-page4 ul li:hover .title,
.about-page4 ul li:hover article {
	color: #fff;
}

.about-page4 ul li:hover .title::before {
	background-color: #fff;
}

.about-page5 {
	padding: 100px 0 60px 0;
	background-color: #f9f9f9;
}

.about-page5 .typename {
	line-height: 74px;
	font-size: 48px;
	color: #333;
}

.about-page5 .typename::after {
	content: '';
	display: block;
	width: 48px;
	height: 4px;
	background-color: #0b328c;
	margin-top: 23px;
}

.about-page5 ul {
	margin-top: 53px;
}

.about-page5 li {
	width: 295px;
}

.about-page5 li .image-wrap {
	width: 295px;
	height: 409px;
	padding: 22px 20px;
	background: url(../images/bg/about-page5-image.png) no-repeat;
	background-size: cover;
}

.about-page5 li .image-wrap img {
	width: 100%;
}

.about-page5 li .title {
	margin-top: 20px;
	line-height: 40px;
	font-size: 24px;
	color: #222;
}

.about-page6 {
	padding: 102px 0 184px 0;
	background: url(../images/bg/about-page6.jpg) no-repeat center top;
	background-size: cover;
}

.about-page6 .title {
	line-height: 68px;
	font-size: 48px;
	color: #fff;
}

.about-page6 .typename {
	line-height: 74px;
	font-size: 48px;
	color: #fff;
}

.about-page6 .typename::after {
	content: '';
	display: block;
	width: 48px;
	height: 4px;
	background-color: #2a6cf4;
	margin-top: 23px;
}

.about-page6 ul {
	margin-top: 127px;
}

.about-page6 li {
	color: #fff;
	font-size: 18px;
	height: 45px;
}

.about-page6 li:last-child {
	margin-top: 30px;
}

.about-page6 li .icon {
	width: 31px;
	margin-right: 16px;
}

/*sidebar*/
.sidebar {
	padding: 34px 0 51px 0;
}

.sidebar li {
	margin-left: 80px;
}

.sidebar li:last-child {
	margin-right: 0;
}

.sidebar li a {
	font-size: 24px;
	color: #666;
}

.sidebar li.active a {
	font-size: 42px;
	color: #333;
}

.sidebar li a:hover {
	color: var(--theme-color);
}

.sidebar li.active a::after {
	content: '';
	position: absolute;
	top: 90px;
	left: 50%;
	transform: translateX(-50%);
	width: 41px;
	height: 20px;
	background: url(../images//icon/arrow-up.jpg) no-repeat;
}

.main .r {
	width: 960px;
}

/*main*/

main .typename {
	line-height: 52px;
	font-size: 36px;
}

.detail {
	background-color: #fff;
	padding: 35px 50px;
}

.introduction {
	padding: 30px 0;
	text-align: justify;
	line-height: var(--p-line-height);
	font-size: var(--p-size);
	color: var(--p-color);
}

.introduction.nmt {
	margin-top: 0;
	padding: 0;
}

.introduction div,
.introduction p {
	font-size: var(--p-size);
	color: var(--p-color);
}

.introduction img {
	max-width: 100%
}

.introduction .share a {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #ececec;
	line-height: 50px;
	font-size: 0;
	margin-left: 10px;
}

.introduction .share a img {
	vertical-align: middle;
}

.introduction .share a:hover {
	border-color: var(--theme-color);
}

/*news detail*/
.article-details {
	padding: 105px 0;
}

.article-details .title {
	line-height: 56px;
	font-size: 30px;
	color: #333;
}

.article-details .addtime {
	margin-top: 39px;
	height: 31px;
	font-size: 18px;
	color: #ccc;
}

.article-details .addtime i {
	margin-right: 10px;
}

.article-details .guide {
	margin-top: 35px;
	padding: 15px 40px;
	background-color: #f7f7f7;
	line-height: 32px;
	font-size: 16px;
	color: #808080;
}

.article-details .introduction {
	margin-top: 30px;
}

.article-details .article-pages {
	margin-top: 40px;
	padding-top: 38px;
	border-top: 4px solid #333;
}

.article-details .article-pages .back {
	width: 200px;
	height: 60px;
	border: 1px solid #e6e6e6;
}

.article-details .article-pages li {
	margin-left: 11px;
}

.article-details .article-pages li a {
	width: 200px;
	height: 60px;
	border: 1px solid #e6e6e6;
}

.article-details .article-pages li a:hover,
.article-details .article-pages .back:hover {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
	color: #fff;
}

/*cases list*/
.cases-list {
	padding: 106px 0;
	background-color: #f5f5f5;
}

.cases-list-top .typename {
	line-height: 65px;
	font-size: 42px;
	color: #333;
}

.cases-list-top .typename::after {
	content: '';
	display: block;
	margin-top: 26px;
	width: 48px;
	height: 4px;
	background-color: #2a6cf4;
}

.cases-list-top ul li {
	margin-left: 73px;
}

.cases-list-top ul li a {
	font-size: 18px;
	color: #333;
}

.cases-list-top ul li.active a,
.cases-list-top ul li a:hover {
	color: #2a6cf4;
}

.cases-list-top ul li.active a::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background-color: #2a6cf4;
	margin-right: 10px;
}

.cases-list .list {
	margin-top: 66px;
}

.cases-list .list li {
	width: calc((100% - 98px) / 3);
	margin-right: 49px;
	margin-bottom: 49px;
	background-color: #fff;
	padding: 35px 40px 26px 40px;
}

.cases-list .list li:hover {
	box-shadow: 0 0 10px #ccc;
}

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

.cases-list .list li .logo {
	height: 52px;
	line-height: 52px;
	width: 100%;
	font-size: 0;
}

.cases-list .list li .logo img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}

.cases-list .list li .title {
	margin-top: 25px;
	padding-top: 29px;
	height: 72px;
	border-top: 1px solid #e6e6e6;
	font-size: 24px;
	color: #333;
	line-height: 42px;
}

.cases-list .list li .sns {
	margin-top: 8px;
	height: 32px;
	line-height: 32px;
	font-size: 16px;
	color: #333;
}

/*news list*/
.news {
	padding: 60px 0;
	background-color: #f7f7f7;
}

.news-list {}

.news-list li {
	background-color: #fff;
	padding: 40px;
}

.news-list li .image-wrap,
.news-list li .image-wrap img {
	width: 420px;
}

.news-list li .image-wrap {
	border-radius: 8px;
	overflow: hidden;
}

.news-list li:hover .image-wrap img {
	transform: scale(1.1);
}

.news-list li article {
	margin-left: 42px;
	flex: 1;
	margin-top: 31px;
}

.news-list li article .title {
	height: 41px;
	line-height: 41px;
	font-size: 24px;
	color: #333;
}

.news-list li article .des {
	margin-top: 13px;
	line-height: 28px;
	font-size: 16px;
	color: #333;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	overflow: hidden;
}

.news-list li article .addtime {
	margin-top: 45px;
	line-height: 23px;
	font-size: 16px;
	color: #ccc;
}

/*分页*/
.pages {
	padding: 40px 0 15px 0;
	border-top: 4px solid #202230;
	text-align: right;
}

.pages li {
	display: inline-flex;
	margin-right: 10px;
}

.pages li a,
.pages li span {
	display: inline-flex;
	line-height: 38px;
	padding: 0 15px;
	border: 1px solid #d9d9d9;
}

.pages li.active a,
.pages li a:hover {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
	color: #fff;
}

.short-film.main .pages li.active a {
	background-color: #84bb25;
}

.market.main .pages li.active a {
	background-color: #029fd1;
}

.sanxiao.main .pages li.active a {
	background-color: #f5a425;
}


/*在线留言*/
.guestbook {
	padding: 92px 0 390px 0;
	background: url(../images/bg/guestbook-page1.jpg) no-repeat center top;
}

.guestbook.guestbook2 {
	background-image: url(../images/bg/guestbook2-main.png);
	background-position: left top;
}

.guestbook .title2 {
	margin-top: 40px;
	line-height: 36px;
	font-size: 18px;
	color: #333;
}

.guestbook ul {
	margin: 0 auto;
	margin-top: 40px;
	width: 708px;
}

.guestbook li {
	margin-bottom: 30px;
}

.guestbook li.no-margin {
	margin-bottom: 0;
}

.guestbook li.text {
	margin-bottom: 0;
	line-height: 43px;
	font-size: 14px;
	color: #808080;
	padding: 0 20px;
}

.guestbook .input {
	width: 342px;
	height: 60px;
	background: #fff;
	border: 1px solid #e6e6e6;
	padding: 0 19px;
	font-size: 14px;
	color: #333;
}

.guestbook .select {
	width: 100%;
	height: 60px;
	background: #fff;
	border: 1px solid #e6e6e6;
	padding: 0 19px;
	font-size: 14px;
	color: #999;
}


.guestbook .textarea {
	width: 100%;
	height: 144px;
	background: #fff;
	border: 1px solid #e6e6e6;
	padding: 10px 19px;
	font-size: 14px;
	color: #333;
}

.guestbook .button {
	width: 100%;
	height: 60px;
	background: var(--theme-color);
	border: 0;
	cursor: pointer;
	font-size: 24px;
	color: #fff;
	font-family: '微软雅黑';
}

.guestbook.guestbook2 .button {
	background: #a476e9;
}

.page .title .text {
	line-height: 57px;
	font-size: 42px;
	color: #333;
}

.page .title::after {
	content: '';
	margin-top: 31px;
	display: block;
	width: 48px;
	height: 4px;
	background-color: var(--theme-color);
}

/*home*/
.home-swiper,
.home-swiper img {
	width: 100%;
	display: block;
}

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

.home-swiper .title {
	line-height: 180%;
	font-size: 72px;
	color: #fff;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s ease .7s;
}

.home-swiper .title2 {
	padding: 30px 0 50px 0;
	line-height: 180%;
	font-size: 24px;
	color: #fff;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s ease 1s;
	/* 延迟0.2秒 */
}

.home-swiper .intro {
	line-height: 180%;
	font-size: 48px;
	color: #fff;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s ease 1.3s;
	/* 延迟0.4秒 */
}

/* 当前活动slide中的元素显示 */
.home-swiper .swiper-slide-active .title,
.home-swiper .swiper-slide-active .title2,
.home-swiper .swiper-slide-active .intro {
	opacity: 1;
	transform: translateY(0);
}

.home-swiper .swiper-pagination {
	display: flex;
	justify-content: center;
	width: 100%;
	bottom: 60px !important;
}

.swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #fff;
	opacity: 1;
	margin: 0 17px !important;
}

.swiper-pagination .swiper-pagination-bullet::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
}

.swiper-pagination .swiper-pagination-bullet-active {
	border-color: #fff;
}

.home .page-title {
	line-height: 66px;
	font-size: 48px;
	color: #000;
}

.home .page-title::after {
	content: '';
	display: block;
	width: 48px;
	height: 2px;
	margin-top: 8px;
	background-color: var(--theme-color);
}

.home .page-des {
	margin-top: 18px;
	line-height: 31px;
	font-size: 18px;
	color: #666;
}

.home .page1 {
	padding: 101px 0 86px 0;
	background: url(../images/bg/home-page1.jpg) no-repeat center bottom;
	background-size: cover;
}

.home .page1 .page-title {
	margin-bottom: 38px;
}

.home .page1 ul {
	margin-top: 70px;
}

.home .page1 ul li .number {
	height: 73px;
}

.home .page1 ul li .number .n {
	font-size: 80px;
	color: #333;
	font-weight: bold;
	line-height: 73px;
}

.home .page1 ul li:nth-child(4) .number .n {
	color: #2a6cf4;
}

.home .page1 ul li .number .u {
	font-size: 18px;
	color: #808080;
}

.home .page1 ul li .text {
	line-height: 38px;
	font-size: 16px;
	color: #808080;
}

.home .page1 .more {
	margin-top: 101px;
	width: 150px;
	height: 50px;
	border: 1px solid var(--theme-color);
	font-size: 14px;
	color: var(--theme-color);
}

.home .page1 .more i {
	font-size: 18px;
	margin-left: 25px;
}

.home .page1 .more:hover {
	background-color: var(--theme-color);
	color: #fff;
}

.home .page2 {
	width: 100%;
	padding: 101px 0 130px 0;
	background-color: #f9f9f9;
}

.home .page2 .page-title::after {
	display: none;
}

.home .page2 .list {
	margin-top: 90px;
	padding: 10px;
}

.home .page2 .list li {
	width: calc((100% - 246px) / 3);
	margin-right: 123px;
	box-shadow: 0 0 20px #ececec;
}

.home .page2 .list li:nth-child(3n) {
	margin-right: 0;
}

.home .page2 .list li .image-wrap,
.home .page2 .list li .image-wrap img {
	display: block;
	width: 100%;
}

.home .page2 .list li:hover .image-wrap img {
	transform: scale(1.1);
}

.home .page2 .list li article {
	padding: 32px 40px 51px 40px;
	background-color: #fff;
}

.home .page2 .list li article .title {
	height: 42px;
	line-height: 42px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 24px;
	color: #333;
}

.home .page2 .list li article .content {
	line-height: 42px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 15px;
	font-size: 16px;
	color: #888;
}

.home .page2 .list li article .more {
	margin-top: 27px;
	width: 180px;
	height: 40px;
	border: 1px solid var(--theme-color);
	border-radius: 20px;
	font-size: 14px;
	color: var(--theme-color);
}

.home .page2 .list li article .more .icon {
	width: 18px;
	height: 18px;
	background-color: var(--theme-color);
	border-radius: 50%;
	margin-left: 44px;
}

.home .page2 .list li article .more i {
	font-size: 14px;
	color: #fff;
}

.home .page2 .list li article .more:hover {
	background-color: var(--theme-color);
	color: #fff;
}

.home .page3 {
	width: 100%;
	background: url(../images/bg/home-page3.jpg) no-repeat center top #fff;
	padding: 100px 0 96px 0;
	background-size: cover;
}

.home .page3 .page-title::after {
	display: none;
}

.home .page3 ul {
	margin-top: 78px;
	width: 100%;
}

.home .page3 ul li {
	width: 16.6666%;
	height: 120px;
	font-size: 0;
}

.home .page3 ul li img {
	max-width: 80%;
	max-height: 80px;
}

.home .page4 {
	width: 100%;
	background: url(../images/bg/home-page4_bg.jpg?1.1);
	padding: 100px 0 96px 0;
}

.home .page4 .page-title::after {
	display: none;
}

.home .page4 .wrap {
	width: 100%;
	height: auto;
	background: url(../images/bg/home-page4.png) no-repeat center top;
}

.home .page4 .wrap .l {
	width: 422px;
}

.home .page4 .wrap .l .tabs {
	margin-top: 26px;
}

.home .page4 .wrap .l .tabs li {
	height: 63px;
	font-size: 24px;
	color: #333;
}

.home .page4 .wrap .l .tabs li.active {
	color: var(--theme-color);
}

.home .page4 .wrap .r {
	width: 1180px;
	flex-grow: 0;
	flex-shrink: 0;
}

.home .page4 .wrap .r .cases-swiper {
	width: 100%;
}

.home .page4 .wrap .r .cases-swiper .image-wrap {
	width: 600px;
}

.home .page4 .wrap .r .cases-swiper .image-wrap img {
	width: 100%;
}

.home .page4 .wrap .r .cases-swiper article {
	width: 532px;
	padding-right: 5px;
}

.home .page4 .wrap .r .cases-swiper article .title {
	margin-top: 88px;
	height: 69px;
	line-height: 69px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 36px;
	color: #333;
}

.home .page4 .wrap .r .cases-swiper article .content {
	margin-top: 27px;
	line-height: 36px;
}

.home .page4 .wrap .r .cases-swiper article .more {
	margin-top: 43px;
	width: 180px;
	height: 40px;
	border: 1px solid var(--theme-color);
	border-radius: 20px;
	font-size: 14px;
	color: var(--theme-color);
}

.home .page4 .wrap .r .cases-swiper article .more .icon {
	width: 18px;
	height: 18px;
	background-color: var(--theme-color);
	border-radius: 50%;
	margin-left: 44px;
}

.home .page4 .wrap .r .cases-swiper article .more i {
	font-size: 14px;
	color: #fff;
}

.home .page4 .wrap .r .cases-swiper article .more:hover {
	background-color: var(--theme-color);
	color: #fff;
}

.home .page4 .wrap .r .swiper-button {
	margin-top: 63px;
	width: 100%;
	height: 41px;
}

.home .page4 .wrap .r .swiper-button-next,
.home .page4 .wrap .r .swiper-button-prev {
	width: 153px;
	height: 41px;
	background: url(../images/icon/page4-swiper-button.png) no-repeat left center;
	position: static;
	margin: 0;
	cursor: pointer;
}

.home .page4 .wrap .r .swiper-button-next::after,
.home .page4 .wrap .r .swiper-button-prev::after {
	display: none;
}

.home .page4 .wrap .r .swiper-button-prev {
	transform: rotate(-180deg);
}

.home .page4 .wrap .r .swiper-button .line {
	width: 872px;
	height: 1px;
	background-color: #acaab1;
	margin-top: 1px;
}

.home .page5 {
	padding: 119px 0 108px 0;
}

.home .page5 .page-title::after {
	display: none;
}

.home .page5 ul {
	margin-top: 47px;
}

.home .page5 ul li {
	width: calc((100% - 308px) / 3);
	margin-right: 154px;
}

.home .page5 ul li:nth-child(3n) {
	margin-right: 0;
}

.home .page5 ul li .image-wrap {
	width: 100%;
	border-radius: 10px;
}

.home .page5 ul li .image-wrap img {
	width: 100%;
}

.home .page5 ul li:hover .image-wrap img {
	transform: scale(1.1);
}

.home .page5 ul li .title {
	margin-top: 26px;
	height: 38px;
	line-height: 38px;
	text-overflow: ellipsis;
	font-size: 22px;
	color: #333;
}

.home .page5 ul li .content {
	margin-top: 13px;
	line-height: 27px;
	font-size: 14px;
	color: #888;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	/* 限制显示的行数 */
	overflow: hidden;
	text-overflow: ellipsis;
}

.home .page5 ul li .addtime-num {
	margin-top: 33px;
	height: 49px;
}

.home .page5 ul li .addtime {
	font-size: 14px;
	color: #888;
}

.home .page5 ul li .addtime i {
	margin-right: 8px;
	color: var(--theme-color);
	font-size: 24px;
	margin-left: -15px;
}

.home .page5 ul li .line {
	width: 255px;
	height: 1px;
	background-color: transparent;
}

.home .page5 ul li .num {
	font-size: 48px;
	font-weight: bold;
	color: #f3f3f6;
}

.home .page5 ul li:hover .addtime i {
	margin-left: 0;
}

.home .page5 ul li:hover .num {
	color: var(--theme-color);
}

.home .page5 ul li:hover .line {
	background-color: var(--theme-color);
}

/*positions*/
.positions-wrap {
	height: 60px;
	background-color: #f7f7f7;
}

.positions li:first-child {
	font-size: 0;
}

.positions span {
	margin: 0 18px;
}

.positions-wrap ul li {
	margin-left: 28px;
}

.positions-wrap ul li a {
	font-size: 16px;
	color: #333;
	display: inline-flex;
	padding: 0 18px;
	line-height: 56px;
	border-bottom: 4px solid transparent;
}

.positions-wrap ul li.active a,
.positions-wrap ul li a:hover {
	color: var(--theme-color);
	border-color: var(--theme-color);
}

/*forum*/
.forum {
	padding: 87px 0;
	background: url(../images/bg/forum.jpg) no-repeat center top #f9f9f9;
}

.forum .positions {
	margin-top: 23px;
}

.forum-list li {
	width: 100%;
}

.forum-list li a {
	width: 100%;
	border-bottom: 1px solid #be8a30;
	font-size: 16px;
	padding: 10px 0;
	line-height: 35px;
}

.market.main .forum-list li a {
	border-color: #029fd1;
}


/* 二维码弹窗样式 */
.qr-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.qr-modal-content {
	background: white;
	border-radius: 8px;
	width: 280px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	animation: modalFadeIn 0.3s;
}

.qr-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.qr-modal-header h3 {
	margin: 0;
	font-size: 18px;
	color: #333;
}

.close-btn {
	font-size: 24px;
	cursor: pointer;
	color: #999;
	padding: 0 10px;
}

.close-btn:hover {
	color: #666;
}

.qr-code-container {
	padding: 10px;
	background: #f5f5f5;
	border-radius: 4px;
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
}

.qr-canvas {
	border: 1px solid #eee;
}

.qr-instruction {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
}

.qr-instruction p {
	margin: 5px 0;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*footer*/
footer {
	padding: 80px 0 0;
	background-image: url(../images/bg/map.png);
	background-position: 96% top;
	background-repeat: no-repeat;
	background-color: #181d23;
}

footer .footer-top {
	padding-bottom: 55px;
}

footer .footer-top .l .logo {
	margin-bottom: 21px;
	display: block;
}

footer .footer-top .l .logo img {
	max-height: 100px;
}

footer .footer-top .l .title {
	line-height: 25px;
	font-size: 14px;
	color: #fff;
}

footer .footer-top .l .tel {
	margin-top: 8px;
	line-height: 33px;
	font-size: 32px;
	color: #2a6cf4;
}

footer .footer-top .l .address {
	margin-top: 12px;
	line-height: 35px;
	font-size: 14px;
	color: #a6a6a6;
}

footer .footer-top .l .weixin {
	margin-top: 35px;
	width: 120px;
}

footer .footer-top .l .weixin img {
	max-width: 120px;
}

footer .footer-top .l .weixin .title {
	margin-top: 16px;
	line-height: 20px;
	font-size: 14px;
	color: #808080;
}

footer .footer-top .form {
	width: 837px;
}

footer .footer-top .form .title .en-title {
	margin-left: 7px;
	font-size: 72px;
	line-height: 100%;
	color: #fff;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

footer .footer-top .form .title .cn-title {
	margin-left: 44px;
	line-height: 29px;
	font-size: 18px;
	color: #fff;
}

footer .footer-top .form .gb {
	margin-top: 106px;
}

footer .footer-top .form .gb li.u-flex {
	margin-bottom: 35px;
}

footer .footer-top .form .gb li.u-flex input {
	width: calc((100% - 56px) / 3);
	margin-right: 28px;
	height: 44px;
	background: none;
	border: 0;
	border-bottom: 1px solid #fff;
	text-indent: 12px;
	font-size: 16px;
	color: #fff;
}

footer .footer-top .form .gb li.u-flex input:last-child {
	margin-right: 0;
}

footer .footer-top .form .gb li textarea {
	width: 100%;
	height: 86px;
	background: none;
	border: 0;
	border-bottom: 1px solid #fff;
	font-size: 16px;
	padding: 8px 12px;
	color: #fff;
}

footer .footer-top .form .gb li button {
	background: none;
	border: 0;
	font-size: 16px;
	color: #fff;
	margin: 40px 29px 0 0;
	cursor: pointer;
}

footer .footer-bottom {
	padding: 39px 0;
	border-top: 1px solid #24292e;
}

footer .footer-bottom .l ul {
	margin-bottom: 20px;
}

footer .footer-bottom .l ul li {
	line-height: 32px;
}

footer .footer-bottom .l ul li::after {
	content: '';
	display: block;
	width: 1px;
	height: 16px;
	background-color: #67676c;
	margin-left: 31px;
	margin-right: 31px;
}

footer .footer-bottom .l ul li:last-child::after {
	display: none;
}

footer .footer-bottom .l ul li a {
	color: #fff;
	font-size: 16px;
}

footer .footer-bottom .l ul li a:hover {
	color: var(--theme-color);
}

footer .footer-bottom .l .copyright {
	font-size: 16px;
	color: #9b9da1;
	line-height: 31px;
}

footer .footer-bottom .sns li {
	margin-left: 30px;
	cursor: pointer;
}

footer .footer-bottom .sns li .image-wrap {
	width: 31px;
	height: 31px;
	border: 1px solid #fff;
	border-radius: 50%;
	line-height: 31px;
	text-align: center;
	font-size: 0;
}

footer .footer-bottom .sns li:hover .image-wrap {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
}

footer .footer-bottom .sns li .image-wrap img {
	vertical-align: middle;
	margin: 0;
}

footer .footer-bottom .sns li .pa {
	bottom: 31px;
	left: 50%;
	transform: translate(-50%, -20px);
	width: 120px;
	padding-bottom: 10px;
	visibility: hidden;
	opacity: 0;
}

footer .footer-bottom .sns li:hover .pa {
	visibility: visible;
	transform: translate(-50%, 0);
	opacity: 1;
}

footer .footer-bottom .sns li .pa i {
	font-size: 18px;
	color: #fff;
	line-height: 100%;
	margin-top: -6px;
}

/*image-list*/
.image-list {
	margin-top: 33px;
	padding-bottom: 32px;
	border-bottom: 2px solid var(--theme-color);
}

.short-film.main .image-list {
	border-color: #84bb25;
}

.news.main .image-list {
	border-color: #be7a30;
}

.sanxiao.main .image-list {
	border-color: #f5a425;
}

.image-list li {
	width: calc((100% - 44px * 3) / 4);
	margin-right: 44px;
	margin-bottom: 23px;
}

.image-list li:nth-child(4n) {
	margin-right: 0;
}

.image-list li .text {
	width: 100%;
	height: 47px;
	line-height: 47px;
	text-align: left;
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}


/*news-detail*/
.news-detail {
	padding: 92px 0;
}

.news-detail .title {
	line-height: 64px;
	font-size: 36px;
}

.news-detail .date {
	margin-top: 17px;
	height: 33px;
	font-size: 18px;
	color: #ccc;
}

.news-detail .date svg {
	margin-right: 9px;
}

.news-detail .des {
	margin-top: 34px;
	padding: 25px;
	background-color: #f7f7f7;
	line-height: 180%;
	font-size: 16px;
	color: #808080;
}

.news-detail .share {
	margin-top: 35px;
}

.news-detail .share .title {
	font-size: 14px;
	color: #808080;
}

.news-detail .share .weixin,
.news-detail .share .sina {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #e9e9e9;
	margin-left: 10px;
	cursor: pointer;
}

.news-detail .prev-next {
	padding-top: 38px;
	border-top: 4px solid #be7a30;
}

.news-detail .prev-next a {
	width: 200px;
	height: 60px;
	background-color: #fff;
	border: 1px solid #e6e6e6;
	font-size: 18px;
	color: #808080;
}

.news-detail .prev-next a:hover {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
	color: #fff;
}

/*products list*/
.products-top-categories {
	margin-top: 65px;
	padding: 33px 30px 36px 30px;
	background-color: #f9f9f9;
}

.products-top-categories .name {
	line-height: 37px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e2e2e2;
	font-size: 24px;
	color: #333333;
}

.products-top-categories .list {
	margin-top: 19px;
}

.products-top-categories .list li {
	width: calc((100% - 86px * 4) / 5);
	margin-right: 86px;
}

.products-top-categories .list li:nth-child(5n) {
	margin-right: 0;
}

.products-top-categories .list li .img {
	width: 100%;
	height: 125px;
	background: url(../images/bg/image-wrap.png) no-repeat;
	background-size: cover;
	text-align: center;
	line-height: 125px;
	font-size: 0;
	border-radius: 8px;
	border: 1px solid transparent;
}

.products-top-categories .list li .img img {
	max-width: 85%;
	max-height: 80%;
	vertical-align: middle;
}

.products-top-categories .list li .title {
	margin-top: 15px;
	line-height: 31px;
	font-size: 18px;
	color: #333;
}

.products-top-categories .list li:hover .title,
.products-top-categories .list li.active .title {
	color: #23a3d9;
}

.products-top-categories .list li:hover .img,
.products-top-categories .list li.active .img {
	border-color: #23a3d9;
}


.products-top-categories2 {
	margin-top: 90px;
	padding: 33px 30px 36px 30px;
	background-color: #f9f9f9;
}

.products-top-categories2 .name {
	line-height: 37px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e2e2e2;
	font-size: 24px;
	color: #333333;
}

.products-top-categories2 .list {
	margin-top: 19px;
}

.products-top-categories2 .list li {
	width: calc((100% - 86px * 2) / 3);
	margin-right: 86px;
	margin-bottom: 30px;
}

.products-top-categories2 .list li:nth-child(3n) {
	margin-right: 0;
}

.products-top-categories2 .list li .img {
	width: 100%;
	height: 260px;
	background: url(../images/bg/image-wrap.png) no-repeat;
	background-size: cover;
	text-align: center;
	line-height: 260px;
	font-size: 0;
	border: 1px solid transparent;
	border-radius: 8px;
}

.products-top-categories2 .list li .img img {
	max-width: 85%;
	max-height: 80%;
	vertical-align: middle;
}

.products-top-categories2 .list li .title {
	margin-top: 15px;
	line-height: 31px;
	font-size: 18px;
	color: #333;
}

.products-top-categories2 .list li:hover .title,
.products-top-categories2 .list li.active .title {
	color: #23a3d9;
}

.products-top-categories2 .list li:hover .img,
.products-top-categories2 .list li.active .img {
	border-color: #23a3d9;
}

.products-list li {
	width: calc((100% - 148px) / 3);
	margin-right: 74px;
	margin-bottom: 50px;
}

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

.products-list li .image-wrap {
	width: 100%;
	height: 260px;
	background: url(../images/bg/image-wrap.png) no-repeat;
	background-size: cover;
}

.products-list li:hover .image-wrap img {
	transform: scale(1.1);
}

.products-list li .title {
	margin-top: 26px;
	height: 39px;
	line-height: 39px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 22px;
	color: #23a3d9;
}

.products-list li .des {
	line-height: 28px;
	font-size: 14px;
	color: #888;
}

.products-search {
	margin-top: 50px;
}

.products-search .input {
	width: 598px;
	height: 50px;
	border: 1px solid #ddd;
	border-radius: 0;
	padding-left: 20px;
}

.products-search .input input {
	width: 559px;
	height: 50px;
	background: none;
	border: 0;
}

.products-search button {
	width: 100px;
	height: 50px;
	border: 0;
	background: #23a3d9;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
	font-family: '微软雅黑';
}

.products-screening {
	margin-top: 7px;
	margin-bottom: 50px;
}

.products-screening .filter-boxs {
	border-bottom: 1px solid #ddd;
	padding: 30px 0;
	line-height: 43px;
	font-size: 18px;
	color: #333;
}

.products-screening .filter-boxs a {
	display: inline-flex;
	margin-right: 62px;
}

.products-screening .filter-boxs a b {
	font-weight: normal;
}

.products-screening .filter-boxs a .checkbox {
	margin-right: 6px;
}

.products-screening .filter-bt {
	margin-top: 20px;
}

.products-detail {
	margin-top: 66px;
}

.products-detail-top {
	border: 1px solid #f6f6f6;
	background-color: #fcfcfc;
}

.products-detail-top .album {
	width: 694px;
	background-color: #fff;
	border: 1px solid #eee;
}

.products-detail-top .album .big {
	width: 100%;
	height: 430px;
	border-bottom: 1px solid #eee;
}

.products-detail-top .album .swiper-slide {
	border: 1px solid #eee;
}

.products-detail-top .album .swiper-slide.active {
	border-color: #1583c8;
}

.products-detail-top .album .swiper-button-next::after,
.products-detail-top .album .swiper-button-prev::after {
	font-size: 18px;
}

.products-detail-top article {
	width: 715px;
	padding: 72px 35px;
}

.products-detail-top article h1 {
	line-height: 52px;
	font-size: 32px;
	color: #000;
	padding-bottom: 30px;
	border-bottom: 1px solid #e4e4e4;
}

.products-detail-top article .des {
	margin-top: 28px;
	line-height: 36px;
	font-size: 16px;
	color: #666;
}

.products-detail-bottom {
	margin: 82px 0;
}

.products-detail-bottom .tabs {
	width: 100%;
	height: 80px;
	background-color: #f9f9f9;
}

.products-detail-bottom .tabs li {
	display: inline-flex;
	padding: 0 35px;
	line-height: 80px;
	font-size: 24px;
	color: #333;
	cursor: pointer;
}

.products-detail-bottom .tabs li.active {
	background-color: #1583c8;
	color: #fff;
}

.products-detail-bottom .content {
	margin-top: 40px;
	line-height: 180%;
	font-size: 18px;
	color: #333;
}

/*solution-list*/
.solution-list {
	margin: 103px 0;
}

.solution-list li {
	margin-bottom: 60px;
	padding: 50px;
}

.solution-list li .img,
.solution-list li .img img {
	width: 570px;
}

.solution-list li article {
	width: 570px;
}

.solution-list li article .title {
	margin-top: 52px;
	line-height: 60px;
	font-size: 36px;
	color: #000;
}

.solution-list li article .des {
	margin-top: 6px;
	line-height: 31px;
	font-size: 16px;
	color: #666;
}

.solution-list li article a {
	margin-top: 31px;
	display: inline-flex;
	line-height: 54px;
	padding: 0 45px;
	background-color: #23a3d9;
	font-size: 18px;
	color: #fff;
}

/* 添加搜索框样式 */
.search-popup {
	position: fixed;
	top: 100px;
	/* header高度 */
	left: 0;
	width: 100%;
	background: #fff;
	padding: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 99999;
	display: none;
	height: 100px;
}

.search-popup.active {
	display: flex;
	align-items: center;
	-webkit-animation: fadeInDown .5s 1;
	-khtml-animation: fadeInDown .5s 1;
}

.search-popup .search-container {
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.search-popup input {
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	width: calc(100% - 150px);
	height: 50px;
}

.search-popup button {
	margin-left: 20px;
	padding: 10px 20px;
	background: var(--theme-color);
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.search-popup .close {
	margin-left: 25px;
}

.search-popup .close i {
	font-size: 28px;
}

.search-popup .close:hover {
	transform: rotate(360deg);
}

.history {
	margin-top: 89px;
	background-color: #fff;
}

.history,
.history * {
	user-select: none;
}

.history .wrap {
	margin-top: 23px;
	background: url(../images/bg/map.jpg) 39vw top no-repeat;
	background-size: 60vw auto;
	padding-bottom: 330px;
}

.history .swiper {
	margin-top: 171px;
}

.history .swiper .swiper-slide {
	height: 276px;
}

.history .swiper .swiper-slide::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--theme-color);
	position: absolute;
	z-index: -1;
	left: 0;
	top: 50%;
}

.history .swiper .swiper-slide .atitle {
	font-size: 80px;
	color: #222;
	height: 95px;
}

.history .swiper .swiper-slide.swiper-slide-active .atitle {
	color: var(--theme-color);
}

.history .swiper .swiper-slide.even .atitle {
	transform: translateY(121px);
}

.history .swiper .swiper-slide .dot {
	width: 25px;
	height: 25px;
	background-color: #fff;
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	box-shadow: 0 0 10px #ccc;
}

.history .swiper .swiper-slide .dot::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-color: #666;
	border-radius: 50%;
}

.history .swiper .swiper-slide article {
	padding: 30px 0;
}

.history .swiper .swiper-slide .content {
	left: 50%;
	background-color: #fff;
	box-shadow: 0 0 10px #ccc;
	border-radius: 8px;
	padding: 10px;
	line-height: 170%;
	font-size: 16px;
	color: #222;
	width: 90%;
	transform: translateX(-50%);
	top: 160px;
	height: auto;
	opacity: 0;
	max-height: 100px;
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: auto;
}

.history .swiper .swiper-slide.even .content {
	top: 0;
	bottom: inherit;
}

.history .swiper .swiper-slide:hover .content {
	opacity: 1;
}

.history .swiper .swiper-slide.swiper-slide-active .dot::after {
	background-color: var(--theme-color);
}

.history .buttons {
	margin-top: 30px;
}

.history .swiper-button-next,
.history .swiper-button-prev {
	position: static;
	width: 170px;
	height: 40px;
	background-color: #e6e6e6;
	margin-top: 0;
}

.history .swiper-button-next {
	background-color: var(--theme-color);
}

.history .swiper-button-next::after,
.history .swiper-button-prev::after {
	display: none;
}

.history .swiper-button-next svg,
.history .swiper-button-prev svg {
	height: 35px;
}

.history .swiper-button-prev svg {
	transform: rotate(180deg);
}

/*下载中心*/
.download-list {
	margin: 50px 0 0;
}

.download-list li a {
	width: 100%;
	height: 90px;
	background: #fff;
	border: 1px solid #e8edf0;
	margin-bottom: 23px;
	padding: 0 40px;
}

.download-list li a:hover {
	background-color: #1583c8;
}

.download-list li .num {
	display: inline-flex;
	padding-right: 27px;
	line-height: 24px;
	border-right: 1px solid #333;
	font-size: 24px;
	color: #333;
	margin-right: 31px;
}

.download-list li .title {
	font-size: 16px;
	color: #333;
}

.download-list li a:hover .num,
.download-list li a:hover .title {
	color: #fff;
}

.download-list li a:hover .num {
	border-color: #449cd3;
}

.nav,
.leftNav {
	display: none;
}

#productsSwiper .swiper-button-next,
#productsSwiper .swiper-button-prev {
	color: #1583c8 !important;
}

@media (max-width: 1500px) {
	:root {
		--page-width: 1340px;
	}

	.home-swiper .title,
	.home .page-title {
		font-size: 36px;
	}

	.home .page3 .c .topnews {
		width: 600px;
	}

	.home .page3 .c .topnews .title {
		font-size: 20px;
	}

	footer .footer-top .footer-nav li {
		margin-left: 70px;
	}
}

@media (max-width: 1400px) {
	:root {
		--page-width: 1240px;
	}

	.home-swiper .title,
	.home .page-title {
		font-size: 32px;
	}

	.home .page3 .c .topnews {
		width: 500px;
	}

	.home .page3 .c .topnews .title {
		font-size: 18px;
	}

	footer .footer-top .footer-nav li {
		margin-left: 60px;
	}
}


@media (max-width: 1300px) {
	:root {
		--page-width: 1140px;
	}

	.home-swiper .title,
	.home .page-title {
		font-size: 28px;
	}

	.home .page3 .c .topnews {
		width: 540px;
	}

	.home .page3 .c .topnews .title {
		font-size: 16px;
	}

	footer .footer-top .footer-nav li {
		margin-left: 45px;
	}

	.home .page3 .c .list {
		width: 550px;
	}

	.solution-list li .img,
	.solution-list li .img img {
		width: 530px;
	}

	.products-top-categories .list li {
		width: calc((100% - 56px * 4) / 5);
		margin-right: 56px;
	}

	.products-top-categories .list li .title,
	.products-screening .filter-boxs {
		font-size: 16px;
	}

	.products-list li .title {
		font-size: 20px;
	}

	.home .page3 {
		padding: 80px 0;
		height: auto;
	}

	.home .page2 article .title {
		font-size: 30px;
	}

	footer .footer-top .footer-nav li dl a {
		font-size: 13px;
	}
}

@media (max-width: 1200px) {
	:root {
		--page-width: 1140px;
	}

	.home-swiper .title,
	.home .page-title {
		font-size: 32px;
	}

	.home .page3 .c .topnews {
		width: 530px;
	}

	.home .page3 .c .topnews .title {
		font-size: 18px;
	}

	footer .footer-top .footer-nav li {
		margin-left: 30px;
	}

	footer .footer-top .footer-nav li a {
		font-size: 14px;
	}

	footer .footer-top .footer-nav li dl a {
		font-size: 12px;
	}

	footer .footer-top .l .address {
		font-size: 12px;
	}

	.solution-list li .img,
	.solution-list li .img img {
		width: 500px;
	}

	main .typename {
		font-size: 30px;
	}

	main .about .intro {
		font-size: 16px;
	}
}


@media (max-width: 1100px) {
	:root {
		--page-width: 1040px;
	}

	.home-swiper .title,
	.home .page-title {
		font-size: 28px;
	}

	.home .page3 .c .topnews {
		width: 430px;
	}

	.home .page3 .c .topnews .title {
		font-size: 16px;
	}

	footer .footer-top .footer-nav li {
		margin-left: 30px;
	}

	footer .footer-top .footer-nav li dl a {
		font-size: 14px;
	}

	.solution-list li .img,
	.solution-list li .img img {
		width: 450px;
	}

	.solution-list li article {
		width: 350px;
	}

	.solution-list li article .title {
		margin-top: 0;
	}
}


@media (max-width: 1000px) {
	:root {
		--page-width: 950px;
	}

	.home-swiper .title,
	.home .page-title {
		font-size: 28px;
	}

	.home .page3 .c .topnews {
		width: 350px;
	}

	.home .page3 .c .topnews .title {
		font-size: 16px;
	}

	footer .footer-top .footer-nav li {
		margin-left: 30px;
	}

	footer .footer-top .footer-nav li dl a {
		font-size: 14px;
	}
}

@media (max-width: 1850px) {
    .container {
        width: 1750px;
    }
}

@media (max-width: 1750px) {
    :root {
	    --page-width: 1600px;
    }
    .container {
        width: 1650px;
    }
    
    .pc-header ul {
        max-width: 740px;
    }
}

@media (max-width: 1650px) {
    :root {
	    --page-width: 1500px;
    }
    .container {
        width: 1550px;
    }
    
    .pc-header ul {
        max-width: 640px;
    }
    
    .service-page6 .c .circle {
        width: 438px;
        height: 438px;
    }
}

@media (max-width: 1550px) {
    :root {
	    --page-width: 1400px;
    }
    
    .container {
        width: 1450px;
        padding: 0 10px;
    }
    
    .home-swiper article .title, .home-swiper .intro {
        font-size: 35px;
    }
        
    .pc-header ul {
        max-width: 540px;
    }
    
    .pc-header ul li>a {
        font-size: 18px;
    }
    
    .about-page2 .list article .year {
        font-size: 160px;
    }
    
    .service-page3-wrap {
        background-color: #f9f9f9;
    }
    
    .service-page3 {
        transform: scale(0.9);
    }
    
    .service-page6 .c {
        align-items: center;
    }
    
    .service-page6 .c .circle {
        width: 418px;
        height: 418px;
        margin-left: 70px;
        margin-right: 70px;
    }
    
    .service-page6 .c .l li article {
        width: 200px;
    }
    
    .service-page6 .c .title {
        font-size: 20px;
    }
    
    .service-page6 .c .content {
        font-size: 14px;
    }
    
    .home .page4 .wrap .r .cases-swiper .image-wrap {
        width: 500px;
        flex-grow: 0;
        flex-shrink: 0;
    }
    
    .home .page4 .wrap .r .cases-swiper article {
        width: auto;
        flex: 1;
        margin-left: 40px;
        flex-grow: 0;
        flex-shrink: 0;
    }
    
    .home .page4 .wrap .r .cases-swiper article .title {
        margin-top: 40px;
    }
    
    .home .page5 ul li {
        width: calc((100% - 208px) / 3);
        margin-right: 104px;
    }
    
    .service-page4 ul li .title {
    margin-top: 85px;
    height: 40px;
    line-height: 40px;
    font-size: 28px;
    }
}

@media (max-width: 1450px) {
    :root {
	    --page-width: 1300px;
    }
    .container {
        width: 1350px;
    }
    
    .cases-list .list li .title {
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
        height: 55px;
        padding-top: 0;
        line-height: 55px;
        overflow: hidden;
        font-size: 18px;
    }
    
    .cases-list .list li .sns {
        font-size: 14px;
    }
    
    
    .home .page4 .wrap .r {
        width: 1050px;
    }
    
    .home .page4 .wrap .r .cases-swiper article .title {
        font-size: 26px;
    }
    
    .home .page4 .wrap .l .tabs li {
        font-size: 20px;
    }
    
    .home .page5 ul li .line {
        width: 180px;
    }
    
    .pc-header ul {
        width: 500px;
    }
    
    .pc-header ul li>a {
        font-size: 16px;
    }
    
       
    .service-page3 {
        width: 1000px;
        height: 1000px;
        margin: 0 auto;
        background-position: center;
    }
    
    .service-page3 li:first-child {
        right: inherit;
        left: -25px;
    }
    
    .service-page3 li:nth-child(2) {
        left: inherit;
        right: 290px;
    }
    
    .service-page3 li:nth-child(3) {
        right: 1294px;
    }
    
    .service-page3 li:nth-child(4) {
        left: 850px;
    }
    
    .service-page3 li:nth-child(5) {
        right: 1420px;
    }
    
    .service-page3 li:nth-child(6) {
        left: 730px;
    }
    
    .service-page3 li:last-child {
        left: 395px;
    }
    
    .news-list li .image-wrap, .news-list li .image-wrap img {
        width: 320px;
    }
    
    .service-page3 article {
        margin-right: 20px;
    }
    
    .service-page3 li:nth-child(even) article {
        margin-left: 20px;
    }
    
}

@media (max-width: 1350px) {
    :root {
	    --page-width: 1200px;
    }
    .container {
        width: 1250px;
        padding: 0 50px;
    }
    
    .home .page1 ul li .number .n {
        font-size: 60px;
    }
    
    .home .page2 .list li {
        width: calc((100% - 140px) / 3);
        margin-right: 70px;
    }
    
    .home .page2 .list li article .more {
        width: 140px;
    }
    
    .home .page4 .wrap .r {
        width: 950px;
    }
    
    .home .page4 .wrap .r .cases-swiper .image-wrap {
        width: 400px;
    }
    
    .home .page5 ul li {
        width: calc((100% - 150px) / 3);
        margin-right: 75px;
    }
    
    footer .footer-top .form {
        width: 700px;
    }
    
    .service-page3 ul {
        width: 1200px;
    }
    
    .service-page2>ul>li .title {
        width: 150px;
        font-size: 20px;
    }
    
    .service-page2>ul>li>ul {
        width: 910px;
    }
    
     .service-page3 {
        width: 810px;
        height: 810px;
    }
    
    .service-page3 ul {
        width: 1100px;
    }
    
    .service-page3 article {
        margin-right: 10px;
    }
    
    .service-page3 li:first-child {
        right: inherit;
        left: -75px;
    }
    
    .service-page3 li:nth-child(2) {
        left: inherit;
        right: 70px;
    }
    
    .service-page3 li:nth-child(3) {
        right: 1050px;
    }
    
    .service-page3 li:nth-child(4) {
        left: 730px;
    }
    
    .service-page3 li:nth-child(5) {
        right: 1155px;
    }
    
    .service-page3 li:nth-child(6) {
        left: 630px;
    }
    
    .service-page3 li:last-child {
        left: 300px;
    }
    
    .news-list li .image-wrap, .news-list li .image-wrap img {
        width: 320px;
    }
    
    .pc-header ul {
        width: 450px;
    }
    
    .service-page3 li:nth-child(even) article {
        margin-left: 10px;
    }
    
    .service-page2>ul>li:first-child>ul>li.arrow {
        background-size: contain;
    }
    
        
    .service-page4 ul li .title {
    margin-top: 55px;
    height: 32px;
    line-height: 32px;
    font-size: 20px;
    }
    
    .home .page2, .home .page3 {
        padding: 50px 0;
    }
    
        .home .page2 .list li {
        width: calc((100% - 60px) / 3);
        margin-right: 30px;
    }
    
    .home .page4 .wrap .r {
        width: 800px;
    }
    
        .home .page4 .wrap .r .cases-swiper .image-wrap {
        width: 300px;
    }
    
        .home .page5 ul li {
        width: calc((100% - 50px) / 3);
        margin-right: 25px;
    }
    
    .home .page5 ul li .title {
        font-size: 18px;
    }
}

@media (max-width: 1250px) {
    :root {
	    --page-width: 1100px;
    }
    .container {
        width: 1150px;
    }
    
    .service-page3 {
        width: 810px;
        height: 810px;
        transform: scale(0.8);
    }
    
    .service-page3 ul {
        width: 1100px;
    }
    
    .service-page3 article {
        margin-right: 10px;
    }
    
    .service-page3 li:first-child {
        right: inherit;
        left: -75px;
    }
    
    .service-page3 li:nth-child(2) {
        left: inherit;
        right: 60px;
    }
    
    .service-page3 li:nth-child(3) {
        right: 1050px;
    }
    
    .service-page3 li:nth-child(4) {
        left: 750px;
    }
    
    .service-page3 li:nth-child(5) {
        right: 1155px;
    }
    
    .service-page3 li:nth-child(6) {
        left: 630px;
    }
    
    .service-page3 li:last-child {
        left: 300px;
    }
    
    .service-page3 li:nth-child(even) article {
        margin-left: 10px;
    }
    
    .about-page2 .list article .year {
        font-size: 120px;
    }
    
    .service-page1 .title, .service-page2 .typename, .service-page3 .typename, .service-page4 .typename, .service-page5 .typename, .service-page6 .typename, .service-page7 .typename {
        font-size: 36px;
    }
    
    .home .page2 .list li article .title {
        font-size: 18px;
    }
    
    .home .page4 .wrap .r .cases-swiper .image-wrap {
        width: 400px;
    }
    
    .home .page4 .wrap .r .cases-swiper article {
        width: 350px;
    }
    
    .home .page4 .wrap .r .cases-swiper article .intro {
        
    }
    
    footer .footer-top .form .title .cn-title {
        font-size: 16px;
    }
    
    .sidebar {
        padding: 20px 0;
    }
    
    .sidebar li a, .news-list li article .title {
        font-size: 18px;
    }
    
    .news-list li article .des {
        font-size: 14px;
    }
    
    .news-list li article .addtime {
        margin-top: 20px;
    }
    
    .article-details .title {
        font-size: 20px;
    }
    
    .article-details .addtime {
        margin-top: 20px;
    }
    
    .cases-list .list li {
        width: calc((100% - 50px) / 3);
        margin-right: 25px;
        margin-bottom: 25px;
    }
    
    .cases-list .list li {
        padding: 20px;
    }
    
    .banner article .title {
        font-size: 36px;
    }
}

@media (max-width: 1150px) {
    :root {
	    --page-width: 1000px;
    }
    .container {
        width: 1050px;
        padding: 0;
    }
   
    .service-page3 {
        transform: scale(0.7);
    }
    
    .service-page3 li:first-child {
        left: -95px;
    }
    
    .pc-header ul {
        width: 400px;
    }

    .service-page1 .title, .service-page2 .typename, .service-page4 .typename, .service-page5 .typename, .service-page6 .typename, .service-page7 .typename,  {
        font-size: 45px;
    }
    
    .service-page2>ul>li:nth-child(3)>ul {
        padding: 0 50px;
    }
    
    .service-page2>ul>li>ul {
        width: 705px;
    }
    
    .service-page2>ul>li:first-child>ul>li:not(.arrow) div.title3 {
        width: 132px;
    }
    
    .service-page2>ul>li:nth-child(4)>ul li {
        width: 111px;
        margin-right: 15px;
    }
    
     .service-page2>ul>li:nth-child(4)>ul li:last-child {
         margin-right: 0;
     }
    
    .service-page5 .wrapper {
        width: 1050px;
        background-size: 600px auto;
    }
    
    .service-page5 .wrapper {
        flex-direction: column;
    }
    
    .service-page5 .wrapper ul:nth-child(2) {
        margin-top: 35px;
    }
    
    .service-page5 .wrapper li:nth-child(1), .service-page5 .wrapper li:nth-child(2) {
        width: 220px;
    }
    
    .service-page5 .wrapper ul:nth-child(2) li:nth-child(1), .service-page5 .wrapper ul:nth-child(2) li:nth-child(2) {
        width: 250px;
    }
    
    
    .service-page5 .wrapper ul:nth-child(3) li:nth-child(1), .service-page5 .wrapper ul:nth-child(3) li:nth-child(2) {
        width: 300px;
        margin-top: 10px;
    }
    
    .service-page5 .wrapper li .title {
        font-size: 16px;
    }
    
    .service-page5 .wrapper li .title2 {
        font-size: 14px;
    }
    
    .service-page5 .wrapper ul:first-child li {
        margin-top: 30px;
    }
    
    .service-page5 .wrapper ul:nth-child(2) li {
        margin-top: 0;
    }
    
    .service-page6 {
        padding: 72px 0;
    }
    
    .service-page6 .c {
        margin-top: 70px;
    }
    
    .service-page6 .c .circle {
        width: 300px;
        height: 300px;
        margin: 25px;
        border-width: 60px;
    }
    
    .service-page6 .c .icon {
        width: 55px;
        height: 55px;
        line-height: 55px;
        margin-left: 20px;
    }
    
    .service-page6 .c .icon img {
    max-width: 70%;
    max-height: 70%;
        
    }

.service-page6 .c .r li article {
    margin-left: 20px;
}

.service-page6 .c .l li .icon {
    margin-left: 20px;
}
    
    .service-page7 .typedes {
        margin-top: 50px;
        font-size: 18px;
    }
    
    .service-page7 .l {
        width: 520px;
    }
    
    .service-page7 .r {
        width: 550px;
    }
    
    .service-page7 .l li article .title2 {
        font-size: 24px;
    }
    
    .cases-list-top .typename {
        font-size: 38px;
    }
    
    .cases-list-top ul li {
        margin-left: 50px;
    }
    
    .positions span {
        margin: 0 5px;
    }
    
    .positions-wrap ul li a {
        padding: 0 10px;
    }
    
    .positions-wrap ul li {
        margin-left: 15px;
    }
    
    .about-page1 .typename, .about-page2 .typename, .about-page3 .typename, .about-page4 .typename, .about-page5 .typename, .about-page6 .typename {
        font-size: 36px;
    }
    
    .about-page2 .list .image-wrap {
        width: 500px;
        height: auto;
    }
    
    .about-page2 .list article .year {
        font-size: 100px;
    }
    
    .about-page6 {
        padding: 70px 0;
        background-position: right top;
    }
    
    footer .footer-top .form .title .en-title {
        font-size: 50px;
    }
    
    footer .footer-top .form .gb {
        margin-top: 70px;
    }
    
    footer .footer-top .form {
        width: 600px;
    }
}

@media (max-width: 1050px) {
    :root {
	    --page-width: 900px;
    }
    .container {
        width: 950px;
    }
}

@media (max-width: 1000px) {
	:root {
		--page-width: 100vw;
	}
	
	.container {
	    width: 100%;
	}

	header {
		padding: 0 2%;
	}

	.banner img {
		width: 100%;
		height: 30vh;
		object-fit: cover;
	}

	.banner article {
		padding: 0 2%;
	}

	.banner article .title {
		font-size: 16px;
		margin-bottom: 2vw;
	}

	.banner article .intro {
		line-height: 150%;
		font-size: 14px;
		text-align: center;
	}

	.page .title .text {
		line-height: 170%;
		font-size: 20px;
	}

	.page .title::after {
		margin-top: 2vw;
	}


	footer {
		padding: 30px 2%;
	}

	footer .copyright {
		padding-top: 0;
	}

	header nav {
		display: none;
	}

	.nav {
		display: block;
		width: .45rem;
		height: .26rem;
		background: url(../images/icon/headerNav.png) no-repeat;
		background-size: 100%;
		border: 0;
		margin-right: .3rem;
	}

	.leftNav {
		display: block;
		position: fixed;
		width: 50%;
		max-width: 400px;
		height: 100vh;
		background: var(--theme-color);
		background: rgba(0, 0, 0, .75);
		z-index: 99999 !important;
		top: 0;
		left: 0;
		transform: translateX(-100%);
		transition: all .6s;
	}

	.leftNav.hide {
		transform: translateX(-100%);
	}

	.leftNav.active {
		transform: translateX(0);
	}

	.leftNav li {
		width: 100%;
		min-height: .6rem;
		line-height: .6rem;
		border-bottom: 1px solid #fff;
		padding: 0 .1rem;
		font-size: .24rem;
		color: #fff;
	}

	.leftNav li a {
		text-decoration: none;
		color: #fff;
		display: block;
		height: .6rem;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: .22rem;
	}

	.leftNav .angle {
		width: .3rem;
		height: .2rem;
	}

	.leftNav .angle i {
		font-size: .22rem;
	}

	.leftNav .angle.active i {
		transform: rotate(90deg);
	}

	.leftNav li.son {
		overflow: hidden;
		padding: 0 .4rem;
	}

	.shadow {
		position: fixed;
		width: 100vw;
		height: 100vh;
		overflow: hidden;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 99999 !important;
		top: 0;
		left: 0;
		display: none;
	}

	.shadow.active {
		display: block;
		animation: shadowShow .5s 1;
	}

	header .logo,
	header .logo img {
		height: .8rem;
	}

	.home-swiper article .title {
		font-size: 18px;
	}

	.home-swiper article .des {
		font-size: 16px;
	}

	.home-swiper img {
		height: 50vh;
		object-fit: cover;
	}

	.home-swiper article {
		padding: 0 3vw;
		overflow: hidden;
		width: 100%;
	}

	.guestbook {
		padding: .6rem 0;
	}

	.guestbook .title2 {
		line-height: 180%;
		font-size: .26rem;
		margin-top: .4rem;
	}

	.guestbook ul {
		width: 100%;
	}

	.guestbook ul li {
		flex-direction: column;
		margin-top: 0;
		margin-bottom: 0;
	}

	.guestbook .input,
	.guestbook .select,
	.guestbook .textarea {
		width: 100%;
		margin-bottom: .2rem;
	}

	.guestbook .button {
		margin-top: .2rem;
		height: .6rem;
		font-size: .2rem;
	}

	.guestbook li.text {
		line-height: 180%;
		font-size: .24rem;
	}

	.home .page1 {
		height: auto;
	}

	.home .page1 .search {
		margin-top: 1.3rem;
		padding: .3rem;
	}

	.home .page1 .search .button {
		flex-grow: 0;
		flex-shrink: 0;
		width: 100px;
	}

	.home .page1 .search .input {
		flex: 1;
		margin-right: .44rem;
	}

	.home .page1 .list {
		margin-top: .6rem;
	}

	.home .page1 .list li {
		width: calc((100% - .4rem) / 2);
		margin-right: .4rem;
	}

	.home .page1 .list li:nth-child(even) {
		margin-right: 0;
	}

	.home .page1 .list li .img {
		width: 100%;
	}

	.home .page2,
	.home .page3 {
		padding: 0 2%;
		height: auto;
	}

	.home .page2 .title,
	.home .page3 .title {
		font-size: .36rem;
		flex-grow: 0;
		flex-shrink: 0;
	}

	.home .page2 .list,
	.home .page3 .c {
		margin: 1rem 0 0 .4rem;
		flex-grow: 0;
		flex-shrink: 0;
		flex: 1;
	}

	.home .page2 .list li {
		width: calc((100% - .4rem) / 2);
		margin-right: .4rem;
		margin-bottom: .4rem;
	}

	.home .page2 .list li:nth-child(even) {
		margin-right: 0;
	}

	.home .page2 .list li .text {
		display: block;
		font-size: .24rem;
	}

	.home .page3 .c {
		flex-direction: column;
		margin: 0;
		padding: 0 2%;
		flex: 1;
		overflow: hidden;
	}

	.home .page3 .c .topnews {
		width: 100%;
		margin-bottom: .4rem;
	}

	.home .page3 .c .topnews .text {
		margin-top: .2rem;
		line-height: 180%;
		font-size: .2rem;
	}

	.home .page3 .c .list {
		width: 100%;
	}

	.home .page3 .c .list .img,
	.home .page3 .c .list .img .img {
		width: 2rem;
	}

	.home .page3 .c .list article {
		width: calc(100% - .2rem);
		margin-left: .2rem;
	}

	.home .page3 .c .list article .text {
		line-height: 180%;
		font-size: .22rem;
		margin-top: 0;
	}

	.home .page3 .c .list article .details {
		margin-top: .1rem;
		width: 100px;
		font-size: .22rem;
	}

	.main>.wrapper {
		flex-direction: column;
	}

	.main .r {
		width: 100%;
	}

	.image-list {
		width: 100%;
		overflow: hidden;
	}

	.image-list li {
		width: calc((100% - .4rem) / 2);
		margin-right: .4rem;
		margin-bottom: .4rem;
	}

	.image-list li:nth-child(even) {
		margin-right: 0;
	}

	.image-list li .text {
		display: block;
		font-size: .24rem;
	}

	.news-detail,
	.forum {
		padding: .5rem 0;
	}

	.common-typename2 {
		line-height: 180%;
		font-size: .28rem;
	}

	.history {
		padding: 5vw 0 0;
		margin-top: 0;
	}

	.history .swiper .swiper-slide .content {
		opacity: 1;
	}

	.history .swiper {
		margin-top: 0;
	}

	.history .wrap {
		padding-bottom: 50px;
	}

	.history .swiper .swiper-slide .atitle {
		font-size: 40px;
	}

	.home-swiper .title {
		padding: 0 15%;
		width: 100%;
		white-space: wrap;
		font-size: .24rem;
		text-align: center;
	}

	.home-swiper .intro {
		margin-top: .1rem;
		font-size: .24rem;
	}

	.home .page-title {
		line-height: .58rem;
		font-size: .48rem;
	}

	.home .page1 {
		margin-top: .88rem;
		padding: 0 3%;
	}

	.products-list li {
		width: 100%;
		margin-right: 0;
		margin-bottom: .5rem;
	}

	.products-list li .title {
		margin-top: .26rem;
		line-height: 180%;
		height: auto;
		font-size: .26rem;
	}

	.products-list li .des {
		line-height: 170%;
		font-size: .24rem;
	}

	.positions-wrap {
		height: auto;
	}

	.positions-wrap .wrapper {
		padding: 3vw;
		flex-direction: column;
	}

	.positions-wrap .wrapper ul {
		flex-wrap: wrap;
		margin: .2rem 0;
	}

	.sidebar li a {
		margin-bottom: .15rem;
		line-height: 180%;
		font-size: .26rem;
	}

	main .about {
		padding: 0 3%;
		padding-top: .5rem;
	}

	main .about .title {
		line-height: 180%;
		font-size: .36rem;
	}

	main .about .title2 {
		line-height: 180%;
		font-size: .3rem;
	}

	main .about .intro {
		margin-top: .3rem;
		line-height: 180%;
		font-size: .24rem;
	}

	footer .footer-top {
		padding-bottom: .55rem;
		flex-direction: column;
	}

	footer .footer-top .l .address {
		line-height: 170%;
		font-size: .24rem;
	}

	footer .footer-nav {
		margin-top: .3rem;
		width: 100%;
		flex-wrap: wrap;
	}

	footer .footer-top .footer-nav li {
		margin-left: 0;
		width: 50%;
	}

	footer .footer-top .footer-nav li dl {
		margin-top: .23rem;
	}

	footer .footer-top .footer-nav li a {
		line-height: 180%;
		font-size: .24rem;
	}

	footer .footer-top .footer-nav li dl a {
		line-height: 180%;
		font-size: .22rem;
	}

	footer .footer-bottom .l .copyright {
		margin-right: .3rem;
	}

	.solution-list {
		margin: 0;
	}

	.solution-list li {
		margin-bottom: .4rem;
		border-bottom: 1px solid #ccc;
		padding: .4rem .2rem;
	}

	.solution-list li:last-child {
		border-bottom: 0;
	}

	.solution-list li .img {
		width: 100%;
		margin-right: .3rem;
	}

	.solution-list li article .title {
		margin-top: 0;
		line-height: 180%;
		font-size: .28rem;
	}

	.solution-list li article .des {
		line-height: 180%;
		font-size: .24rem;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		/* 限制显示的行数 */
		overflow: hidden;
		text-overflow: ellipsis;
		/* 超出部分显示省略号 */
	}

	.solution-list li article a {
		margin-top: .3rem;
		line-height: 180%;
		padding: 0 .45rem;
		font-size: .24rem;
	}

	main .typename {
		line-height: 180%;
		font-size: .28rem;
	}

	.news-list {
		margin: 0;
		padding: 3vw;
	}

	.news-list li {
		width: 100%;
		margin-right: 0;
		border-bottom: 1px solid #ccc;
		margin-bottom: .3rem;
	}

	.news-list li .title {
		font-size: .26rem;
	}

	.honor-list {
		margin-top: .3rem;
		padding: 3vw;
	}

	.honor-list li {
		width: calc((100% - .5rem) / 2);
		margin-right: .5rem !important;
		margin-bottom: .5rem;
	}

	.honor-list li:nth-child(even) {
		margin-right: 0 !important;
	}

	.honor-list li .img {
		text-align: center;
	}

	.honor-list li .img img {
		width: auto;
		height: auto;
		max-width: 75%;
		max-height: 75%;
		margin: 0 auto;
	}

	.honor-list li .title {
		font-size: .24rem;
	}

	.contact-info {
		flex-direction: column;
		margin-top: .5rem;
	}

	.contact-info li {
		width: 100%;
	}

	main .about .intro {
		margin-bottom: .3rem;
	}

	.intro iframe {
		width: 100% !important;
		height: 50vh !important;
	}

	.xstd tr {
		display: flex;
		flex-direction: column;
	}

	.products-list li .des {
		height: auto;
		white-space: wrap;
	}

	.home .page2 .wrapper {
		height: auto;
		padding: 8vw 3vw;
		width: 100%;
	}

	.home .page2 article .title {
		line-height: 180%;
		font-size: .35rem;
	}

	.home .page2 .list {
		height: auto;
		flex-wrap: wrap;
		position: static;
		margin: .5rem 0 0;
	}

	.wrapper {
		width: 100%;
	}

	.home .page2 article {
		margin-top: .8rem;
	}


	.home .page2 article .des {
		line-height: 180%;
		font-size: .24rem;
	}

	.home .page2 .list li .title {
		font-size: .24rem;
	}

	.home .page3 {
		padding: .5rem .3rem;
	}

	.home .page3 .c {
		width: 100%;
		flex-direction: column;
	}

	.home .page3 .c .topnews .title {
		font-size: .26rem;
	}

	.home .page3 .c .topnews .des {
		font-size: .24rem;
		line-height: 170%;
	}

	.home .page3 .c .list li {
		padding: 0 0 .3rem 0;
		width: 100%;
	}

	.home .page3 .c .list li article {
		margin-left: .2rem;
	}

	.home .page3 .c .list li article .title {
		font-size: .24rem;
		height: auto;
		line-height: 180%;
	}

	.home .page3 .c .list li .time {
		flex-grow: 0;
		flex-shrink: 0;
		width: 1rem;
	}

	.home .page3 .c .list li::after {
		left: .8rem;
	}

	.home .page3 .c .list li::before {
		left: .78rem;
	}

	.home .page3 .c .list article {
		width: calc(100% - 1.5rem);
	}

	.products-top-categories,
	.products-top-categories2 {
		margin-top: .65rem;
		padding: .3rem;
	}

	.products-top-categories .name,
	.products-top-categories2 .name {
		font-size: .26rem;
	}

	.products-top-categories ul,
	.products-top-categories2 ul {
		flex-wrap: wrap;
	}

	.products-top-categories .list li,
	.products-top-categories2 .list li {
		width: auto;
		display: inline-flex;
		margin-right: .3rem;
	}

	.products-search {
		margin-top: .5rem;
		padding: 0 3%;
	}

	.products-search .input {
		width: calc(100% - 1.2rem);
		display: flex;
		align-items: center;
	}

	.products-search button {
		flex-grow: 0;
		width: 1.2rem;
		flex-shrink: 0;
	}

	.products-search .input input {
		width: 100%;
		font-size: .24rem;
	}

	.products-screening {
		padding: .3rem;
	}

	.filter-cen {
		font-size: .24rem;
	}

	.products-list {
		padding: .3rem;
	}

	.products-detail-bottom .tabs {
		height: .8rem;
		width: calc(100% - 4vw);
		margin: 0 2vw;
	}

	.products-detail-bottom .tabs li {
		padding: 0 .35rem;
		font-size: .24rem;
		height: .8rem;
		line-height: .8rem;
	}

	.products-detail-bottom .content {
		padding: 0 .3rem;
	}

	.products-detail {
		margin-top: .66rem;
		padding: 0 3vw;
	}

	.products-detail-top {
		flex-direction: column;
	}

	.products-detail-top .album {
		width: 100%;
	}

	.products-detail-top .album .big {
		width: 100%;
		height: 94vw;
		line-height: 94vw;
	}

	.products-detail-top article {
		width: 100%;
		padding: 3vw;
	}

	.products-detail-top article h1 {
		line-height: 170%;
		font-size: .28rem;
	}

	.download-list {
		margin: .5rem 0;
		padding: 0 3vw;
	}

	.download-list li a {
		padding: 0 .4rem;
		height: 1rem;
		margin-bottom: .25rem;
	}

	.download-list li .num {
		font-size: .3rem;
	}

	.download-list li .title {
		font-size: .24rem;
	}
	
	.container {
	    padding: 0 2%;
	}
	
	.pc-header .r .tel {
	    display: none;
	}
	
	.pc-header ul {
	    display: none;
	}
	
	.pc-header {
	    padding: 10px 0;
	}
	
	.pc-header .r .search-icon {
	    width: 30px;
	    height: 30px;
	}
	
	.pc-header .logo img, .pc-header .logo2 img {
	    height: 45px;
	}
	
	.home-swiper .swiper-slide video {
	    height: 100vh;
	    object-fit: cover;
	}
	
	.home .page1 {
	    padding-bottom: .5rem;
	}
	
	.home .page1 ul li .number .n {
	    font-size: .8rem;
	}
	
	.home .page2 .list {
	    flex-direction: column;
	}
	
	.home .page2 .list li {
	    width: 100%;
	    margin-right: 0;
	}
	
	.home .page2 .list li article {
	    padding: .32rem .4rem .51rem .4rem;
	    margin-top: .4rem;
	}
	
	.home .page2 .list li article .title {
	    height: .42rem;
	    line-height: .42rem;
	    font-size: .24rem;
	}
	
	.home .page2 .list li article .content {
	    line-height: .42rem;
	    font-size: .24rem;
	}
	
	.home .page3 ul {
	    margin-top: .78rem;
	}
	
	.home .page3 ul li {
	    width: 50%;
	}
	
	.home .page4 {
	    padding: 1rem 0;
	}
	
	.home .page4 .wrapper {
	    flex-direction: column;
	    padding: 0 2%;
	}
	
	.home .page4 .wrap .l {
	    width: 100%;
	}
	
	.home .page4 .wrap .l .tabs {
	    display: flex;
	    flex-wrap: wrap;
	    align-items: center;
	}
	
	.home .page4 .wrap .l .tabs li {
	    height: .63rem;
	    font-size: .3rem;
	    margin-right: .2rem;
	}
	
	.home .page4 .wrap .l .tabs li:last-child {
	    margin-right: 0;
	}
	
	.home .page4 .wrap .r {
	    width: 100%;
	    margin-top: .4rem;
	}
	
	.home .page4 .wrap .swiper-slide {
	    flex-direction: column;
	}
	
	.home .page4 .wrap .r .cases-swiper .image-wrap {
	    width: 100%;
	}
	
	.home .page4 .wrap .r .cases-swiper .image-wrap img {
	    width: 100%;
	}
	
	.home .page4 .wrap .r .cases-swiper article {
	    width: 100%;
	    margin-right: 0;
	}
	
	.home .page4 .wrap .r .cases-swiper article .title {
	    margin-top: .4rem;
	    height: .69rem;
	    line-height: .69rem;
	    font-size: .36rem;
	}
	
	.home .page4 .wrap .r .swiper-button-next, .home .page4 .wrap .r .swiper-button-prev {
	    flex-grow: 0;
	    flex-shrink: 0;
	    width: 1.53rem;
	    height: .41rem;
	    background-size: 100%;
	}
	
	.home .page5 {
	    padding: 1rem 0 0;
	}
	
	.home .page5 ul {
	    padding: 0 3%;
	    margin-top: .47rem;
	    flex-direction: column;
	}
	
	.home .page5 ul li {
	    width: 100%;
	    margin-right: 0;
	    margin-bottom: .3rem;
	}
	
	.home .page5 ul li .title {
	    height: .38rem;
	    line-height: .38rem;
	    font-size: .24rem;
	}
	
	.home .page5 ul li .content {
	    font-size: .22rem;
	}
	
	.home .page5 ul li .addtime-num {
	    margin-top: .33rem;
	}
	
	footer .footer-top .l .logo img {
	    max-width: 60%;
	}
	
	footer .footer-top .l .tel {
	    font-size: .32rem;
	}
	
	footer .footer-top .form {
	    width: 100%;
	    margin-top: .3rem;
	}
	
	footer .footer-top .form .title {
	    flex-direction: column;
	    justify-content: flex-start;
	    align-items: flex-start;
	}
	
	footer .footer-top .form .title .en-title {
	    font-size: .72rem;
	}
	
	footer .footer-top .form .title .cn-title {
	    margin-top: .2rem;
	    margin-left: 0;
	}
	
	footer .footer-top .form .gb {
	    margin-top: .7rem;
	}
	
	footer .footer-top .form .gb li.u-flex {
	    flex-direction: column;
	}
	
	footer .footer-top .form .gb li.u-flex .input {
	    width: 100%;
	    margin-right: 0;
	    margin-bottom: .3rem;
	}
	
	footer .footer-bottom {
	    padding: .39rem 0;
	}
	
	footer .footer-bottom .wrapper {
	    flex-direction: column;
	}
	
	footer .footer-bottom .sns li:first-child {
	    margin-left: 0;
	}
	
	footer .footer-bottom .l .copyright {
	    margin-bottom: .3rem;
	}
	
	footer .footer-top {
	    padding-bottom: .3rem;
	}
	
	.pc-header .r .search-icon {
	    background: none;
	}
	
	.service-page1 {
	    padding: 1rem 2%;
	}
	
	.service-page1 .title {
	    line-height: .65rem;
	    font-size: .48rem;
	}
	
	.service-page1 .intro {
	    line-height: 170%;
	    font-size: .24rem;
	    text-align: left;
	}
	
	.service-page2, .service-page3 {
	    display: none;
	}
    
    .service-page1 .text {
        margin-top: .76rem;
    }
    
    .service-page1 .text article:first-child, .service-page1 .text article:last-child {
        display: none;
    }
    
    .service-page1 ul {
        margin-top: .5rem;
        padding: 0;
        flex-direction: column;
    }
    
    .service-page1 ul li {
        width: 100%;
        height: auto;
        padding: .3rem;
        margin-right: 0;
        margin-bottom: .4rem;
    }
    
    .service-page4 {
        padding: .8rem 3%;
    }
    
    .service-page4 .typename {
        line-height: .69rem;
        font-size: .38rem;
    }
    
    .service-page4 ul {
        margin-top: .67rem;
        flex-direction: column;
    }
    
    .service-page4 ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: .3rem;
        padding: .65rem .34rem;
    }
    
    .service-page4 ul li .num {
        font-size: .84rem;
    }
    
    .service-page4 ul li .title {
        margin-top: .6rem;
        height: .5rem;
        line-height: .5rem;
        font-size: .48rem;
    }
    
    .service-page4 ul li .content {
        line-height: 180%;
        font-size: .24rem;
    }
    
    .service-page5 {
        padding: .9rem 2%;
        display: none;
    }
    
    .service-page5 .typename {
        line-height: .65rem;
        font-size: .48rem;
    }
    
    .service-page5 .description {
        margin-top: .17rem;
        line-height: 180%;
        font-size: .24rem;
    }
    
    .service-page6 {
        padding: 1.3rem 3%;
    }
    
    .service-page6 .typename {
        line-height: .6rem;
        font-size: .48rem;
    }
    
    .service-page6 .c {
        margin-top: 1.22rem;
        flex-direction: column;
    }
    
    .service-page6 .c .circle {
        display: none;
    }
    
    .service-page6 .c .l, .service-page6 .c .r {
        width: 100%;
    }
    
    .service-page6 .c .l li article {
        width: auto;
    }
    
    .service-page6 .c .icon {
        width: .93rem;
        height: .93rem;
        flex-grow: 0;
        flex-shrink: 0;
        line-height: .93rem;
    }
    
    .service-page6 .c .icon img {
        max-width: 65%;
        max-height: 65%;
    }
    
    .service-page6 .c .title {
        line-height: .5rem;
        font-size: .24rem;
    }
    
    .service-page7 {
        padding: 1rem 3%;
    }
    
    .service-page7 .typename {
        line-height: .81rem;
        font-size: .48rem;
    }
    
    .service-page7 .typedes {
        margin-top: .7rem;
        line-height: .48rem;
        font-size: .24rem;
    }
    
    .service-page7>.wrapper>.u-flex {
        flex-direction: column;
    }
    
    .service-page7 .l, .service-page7 .r {
        width: 100%;
    }
    
    .service-page7 .l {
        margin-top: .9rem;
    }
    
    .service-page7 .l li {
        margin-bottom: .6rem;
    }
    
    .service-page7 .l li article .title {
        line-height: .37rem;
        font-size: .24rem;
    }
    
    .service-page7 .l li article .title2 {
        line-height: .55rem;
        font-size: .36rem;
    }
    
    .sidebar {
        padding: .3rem 0;
    }
    
    .sidebar li {
        margin-left: .4rem;
    }
    
    .news {
        padding: .5rem 0;
    }
    
    .news-list li {
        padding: .2rem;
    }
    
    .news-list li a {
        flex-direction: column;
    }
    
    .news-list li .image-wrap, .news-list li .image-wrap img {
        width: 100%;
    }
    
    .news-list li article {
        width: 100%;
        margin: .3rem 0 0;
    }
    
    .news-list li article .title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: .28rem;
    }
    
    .news-list li article .des {
        font-size: .22rem;
    }
    
    .news-list li article .addtime {
        margin-top: .25rem;
        font-size: .22rem;
        line-height: 150%;
    }
    
    .positions span {
        margin: 0 .1rem;
    }
    
    .positions-wrap ul li a {
        padding: 0 .1rem;
    }
    
    .article-details {
        padding: .4rem 3%;
    }
    
    .article-details .title {
        line-height: 6%;
        font-size: .3rem;
    }
    
    .article-details .addtime, .article-details .guide {
        font-size: .22rem;
    }
    
    .introduction, .introduction * {
        font-size: .22rem !important;
    }
    
    .article-details .article-pages .back, .article-details .article-pages li a {
        display: inline-flex;
        padding: 0 .2rem;
        width: auto;
    }
    
    .cases-list {
        padding: .5rem 3%;
    }
    
    .cases-list>.wrapper>.u-flex {
        flex-direction: column;
    }
    
    .cases-list-top .typename {
        line-height: .65rem;
        font-size: .42rem;
    }
    
     .cases-list-top ul {
         flex-wrap: wrap;
         margin-top: .35rem;
     }
     
     .cases-list-top ul li a {
         margin: .1rem 0;
         line-height: 180%;
         font-size: .26rem;
     }
     
     .cases-list .list {
         margin-top: .66rem;
         flex-direction: row !important;
     }
     
     .cases-list .list li {
         width: calc((100% - .4rem) / 2) !important;
         margin-right: .4rem !important;
         margin-bottom: .4rem;
         padding: .2rem .1rem;
     }
     
     .cases-list .list li:nth-child(even) {
         margin-right: 0 !important;
     }
     
     .cases-list .list li .title {
         padding-top: .29rem;
         height: auto;
         line-height: 150%;
         margin-top: .25rem;
         font-size: .24rem;
     }
     
     .cases-list .list li .sns {
         height: auto;
         line-height: .32rem;
         font-size: .22rem;
     }
     
     .pages {
         padding: .2rem 0;
     }
     
     .pages li {
         margin-right: .1rem;
     }
     
     .pages li a, .pages li span {
         padding: 0 .1rem;
     }
     
     .search-popup {
         top: .8rem;
     }
     
     .about-page1 {
         padding: .7rem 3%;
     }
     
     .about-page1 .typename {
         line-height: .66rem;
         font-size: .48rem;
     }
     
     .about-page1 .typedes {
         line-height: .43rem;
         font-size: .24rem;
     }
     
     .about-page1 .type-content {
         line-height: 180%;
         font-size: .22rem;
     }
     
     .about-page1 ul li .number .n {
         font-size: .8rem;
     }
     
     .about-page2 {
         padding: .9rem 3%;
     }
     
     .about-page2 .typename {
         line-height: .66rem;
         font-size: .48rem;
     }
     
     .about-page2 .typedes {
         line-height: .43rem;
         font-size: .24rem;
     }
     
     .about-page2 .list {
         margin-top: .63rem;
     }
     
     .about-page2 .list .image-wrap {
         width: 94vw;
         height: auto;
     }
     
     .about-page3 {
         padding: 1rem 3%;
     }
     
     .about-page3 .typename {
         line-height: .74rem;
         font-size: .48rem;
     }
     
     .about-page4 {
         padding: 1rem 3%;
     }
     
     .about-page4 .typename {
         line-height: .74rem;
         font-size: .48rem;
     }
     
     .about-page4 ul {
         margin-top: .4rem;
         flex-direction: column;
     }
     
     .about-page4 ul li {
         width: 100%;
         margin-right: 0;
         margin-bottom: .4rem;
     }
     
     .about-page5 {
         padding: 1rem 3% .5rem 3%;
     }
     
     .about-page5 .typename {
         line-height: .74rem;
         font-size: .48rem;
     }
     
     .about-page5 ul {
         margin-top: .53rem;
     }
     
     .about-page5 ul li {
         width: calc((100% - .4rem) / 2) !important;
         margin-right: .4rem !important;
         margin-bottom: .4rem;
     }
     
     .about-page5 ul li:nth-child(even) {
         margin-right: 0 !important;
     }
     
     .about-page5 li .image-wrap {
         width: 100%;
         height: auto;
     }
     
     .about-page5 li .title {
         margin-top: .2rem;
         line-height: .4rem;
         font-size: .24rem;
     }
     
     .about-page6 {
         padding: 1rem 3%;
     }
     
     .about-page6 .typename {
         line-height: .74rem;
         font-size: .48rem;
     }
     
     .about-page6 ul {
         margin-top: 1rem;
     }
     
     .about-page6 li {
         font-size: .24rem;
     }
     
     .news-list li a {
         flex-direction: column;
     }
     
     .home .page3 ul li {
         text-align: center;
     }
     
     .home .page3 ul li img {
         max-width: 80%;
         max-height: 80%;
     }
}


