/*通用部分 s*/
/*头部导航*/
.header {
	width: 100%;
	height: 110px;
	padding: 0 160px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	position: fixed;
	z-index: 10;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	-webkit-animation: gupIn 1s 0.1s both;
	-moz-animation: gupIn 1s 0.1s both;
	animation: gupIn 1s 0.1s both;
}

.header.mini {
	background-color: #fff;
}

.header.hide {
	display: none
}

.header.on {
	background: #fff;
}

.header.fix {
	position: fixed;
}

.header .wrapper {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .logo {
	height: 100%;
	display: flex;
	align-items: center;
}

.header .logo img {
	width: 470px;
	height: 44px;
}

.header .logo .logo_en {
	width: 288px
}

.header .logo em {
	display: none;
}

.header .logo span {
	display: block;
}


/* 遮罩层 */
.mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 101;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

.mask.mask-show {
	opacity: 1;
	visibility: visible;
}

.language-wrapper {
	height: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.language-wrapper:hover .dorp-down {
	display: block;
}

.language {
	height: 40px;
	padding: 0 16px 0 10px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 40px;
	border: 1px solid #0F4DC8;
	border-radius: 20px;

}

.language .content {
	padding: 0 46px 0 10px;
}

.language .dorp-down {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	display: none;
	position: absolute;
	left: 50%;
	top: 48px;
	width: 150px;
	transform: translateX(-50%);
}

.language .dorp-down a {
	display: block;
	color: #fff;
	padding: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.language .dorp-down a:last-child {
	border-bottom: none;
}

.language .dorp-down a:hover {
	color: #043BA6;
}

.language .icon-yuyan {
	width: 24px;
	height: 24px;
}

.language .icon-bottom {
	width: 8px;
	height: 7px;
}

.nav {
	flex: 1;
	height: 100%;
	padding-bottom: 22px;
}

.nav ul {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	line-height: 22px;
	font-size: 18px;
	position: relative;
}

.nav li {
	height: 100%;
	/* flex: 1; */
	position: relative;
	width: 140px;
	text-align: center;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

}

.nav li .nav-tab {
	height: 100%;
	display: block;
	box-sizing: border-box;
	line-height: 110px;
	/* padding: 47px 0 20px; */
	text-align: center;
	color: #0B1324;
	font-size: 16px;
	display: inline-block;
	border-bottom: 4px solid transparent;
}

.nav li .small-size {
	font-size: 14px;
}

.nav li .nav-tab:hover {
	color: #043BA6;
}

.nav li.on .nav-tab::after {
	content: '';
	width: 60px;
	height: 4px;
	background-color: #0F4DC8;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}


/* banner */
.banner {
	width: 100%;
	height: 800px;
	overflow: hidden;
	position: relative;
	min-width: 1600px;
	/* padding-top: 110px; */
}

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

.banner .video {
	width: 100%;
	height: 100%;
}

.banner-swiper .swiper-pagination-bullets {
	bottom: 50px !important;
}

.banner-swiper .swiper-pagination-bullet {
	width: 10%;
	height: 4px;
	text-align: center;
	color: #000;
	opacity: 1;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.2);
	margin: 0 !important;
}

.banner-swiper .swiper-pagination-bullet-active {
	color: #fff;
	background: #0F4DC8;
	margin: 0;
}

/*头部导航*/
.contact-modal {
	position: fixed;
	left: 50%;
	/* bottom: 372px; */
	bottom: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	padding: 25px 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	visibility: hidden;
	font-family: PingFang-SC-Heavy;
	color: #043BA6;
	font-size: 16px;
	font-weight: 800;
	border-radius: 10px;
	z-index: 1000;
}

.contact-modal .code {
	width: 200px;
	min-height: 200px;
}

.contact-modal .close {
	position: absolute;
	right: 12px;
	top: 12px;
	width: 12px;
	height: 12px;
	cursor: pointer;
}

.show {
	visibility: visible;
}

/*底部*/
.footer {
	color: #FFFFFF;
	width: 100%;
	overflow: hidden;
	background: #011E46;
}

.footer .foot_menu {
	font-size: 14px;
	padding-bottom: 30px;
	display: flex;
	align-items: center;
}

.footer .foot-section {
	flex: 1;
	margin: 0 8%;
	padding: 100px 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer .foot-filing {
	width: 100%;
	height: 60px;
	line-height: 60px;
	background: #011633;
	text-align: center;
	font-size: 14px;
	color: #BAC0CC;
}

.footer .left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.footer .left .logo {
	width: 470px;
}

.footer .left .tips {
	font-size: 16px;
	color: #FFFFFF;
	padding: 42px 0;
}

.footer .left .contact-icons {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 40px;
	margin: 0;
}

.footer .left .contact-icons .icon {
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 50%;
}

.footer .foot_menu a {
	color: #fff;
	display: inline-block;
	text-align: center;
	padding: 0 20px;
	border-right: 1px solid #fff;
}

.footer .foot_menu span {
	padding: 0 30px;
}

.footer .copy-right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
}

.footer .copy-right li {
	margin-right: 10px;
	margin-bottom: 10px;
}

.contact-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 60%;
}

.contact-section .s-wrapper {
	flex: 1;
	display: flex;
	align-items: flex-start;
	gap: 57px;
}

@media screen and (max-width: 1903px) {
	.contact-section {
		width: 60%;
	}
}

.contact-section .show-qr {
	width: 220px;
	border-radius: 14px;
	padding: 10px;
	margin-left: 30px;
	box-sizing: border-box;
	background-color: #ffff;
}

.contact-section .show-qr img {
	width: 100%;
}

.contact-section .public {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.contact-section .public .m-title {
	font-size: 16px;
	color: #6B7E99;
	padding-bottom: 32px;
}

.contact-section .public ul {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	color: #fff;
}

.contact-section .public ul li {
	display: flex;
	align-items: center;
	padding-bottom: 28px;
	gap: 18px;
	font-size: 16px;
	cursor: pointer;
}

.contact-section .public ul li .icon {
	width: 30px;
}

.contact-icons li span {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.qr-popup {
	display: none;
}

/* .barrow_box {
    position: relative;
    background: #fff;
    border: 1px solid #999;
}
.barrow_box:after, .barrow_box:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.barrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
    border-width: 5px;
    margin-left: -5px;
}
.barrow_box:before {
    border-color: rgba(222, 106, 82, 0);
    border-top-color: #999;
    border-width: 6px;
    margin-left: -6px;
} */


.fix_link {
	position: fixed;
	top: 50%;
	right: 0;
	margin-top: -104px;
	display: none;
	z-index: 100
}

.fix_link li {
	width: 50px;
	height: 50px;
	margin-top: 12px;
	cursor: pointer;
	position: relative;
	background: rgba(153, 153, 153, 0.3);
	background-size: 100%;
	background-origin: center;
	background-repeat: no-repeat;
}

.fix_link li .fix_info {
	position: absolute;
	right: 62px;
	width: 116px;
	box-shadow: 0px 0px 8px 0px rgba(4, 0, 0, 0.2);
	text-align: center;
	background: #fff;
	line-height: 36px;
	display: none;
}

.fix_link li .fix_info span {
	position: absolute;
	right: -12px;
	top: 45%;
	background: url(../img/fix_jtico.png) no-repeat;
	width: 12px;
	height: 10px;
	margin-top: -2px;
	display: block;
}

.fix_link li:hover .fix_info {
	display: block;
}

.fix_link li .fix_info {
	top: -30px;
}

.fix_link li .fix_info img {
	width: 96px;
	height: 96px;
	margin: 10px;
}

.fix_link li.fix_qq {
	background-image: url(../img/index/contact_02.png)
}

.fix_link li.fix_wx {
	background-image: url(../img/index/contact_01.png)
}

.fix_link li.fix_top {
	background-image: url(../img/index/contact_03.png)
}

.fix_link li.fix_qq:hover {
	opacity: 0.8
}

.fix_link li.fix_wx:hover {
	opacity: 0.8
}

/*底部*/
[v-cloak] {
	/*比较大的段落，防止闪烁，看到花括号*/
	display: none;
}

/*通用部分 e*/

/*首页*/
.first-section {
	width: 100%;
	height: 208px;
	padding: 0 160px;
	background-color: #fff;
}

.wrapper {
	max-width: 1903px;
	margin: 0 auto;
	min-width: 1583px;
}

.first-section .data-list {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.data-list .divider {
	width: 1px;
	height: 60px;
	background-color: #E8EAED;
}

.first-section .data-item {
	height: 208px;
	display: flex;
	align-items: center;
	gap: 30px;
	position: relative;
}


.first-section .data-text .num {
	font-size: 36px;
	font-weight: bold;
	color: #0F4DC8;
	font-family: PingFang-SC-Heavy;
}

.first-section .data-text .desc {
	font-size: 16px;
	color: #0B1324;
}

.main-container {
	background-color: #FAFBFE;
	padding: 45px 30px 0;
}

.main-container .home-content .title {
	font-size: 54px;
	color: #0F4DC8;
	font-family: PingFang-SC-Heavy;
	font-weight: 800;
	text-align: center;
}

.main-container .sub-title {
	font-size: 18px;
	color: #000000;
}

.main-container .home-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 四大业务板块 */
.business-list {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 52px 120px;
}

.business-list .business-card {
	width: 33%;
	height: 816px;
	background: url(../img/index/intro-01.png) no-repeat center/100% 816px;
	position: relative;
}

.business-list .bg2 {
	background: url(../img/index/intro-02.png) no-repeat center/100% 816px;
}

.business-list .bg3 {
	background: url(../img/index/intro-03.png) no-repeat center/100% 816px;
}

.business-list .business-card .num {
	position: absolute;
	top: 23px;
	left: 87px;
	font-size: 76px;
	color: #BDD4FD;
	font-weight: 800;
	font-family: PingFang-SC-Heavy;
	font-style: italic;
}

.business-list .business-card .card-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	height: 400px;
	padding: 50px 70px 44px 47px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.card-content .bus-title {
	font-size: 46px;
	font-weight: bold;
	font-family: PingFang-SC-Bold;
	color: #000;
}

.card-content .bus-title.en {
	font-size: 28px;
}

.card-content .bus-desc {
	flex: 1;
	font-size: 24px;
	line-height: 36px;
	padding: 20px 0;
}

.card-content .bus-herf {
	font-size: 24px;
	color: #0F4DC8;
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
}

.card-content .bus-herf .h5-right {
	display: none;
}

.bottom-section {
	width: 100%;
	overflow: hidden;
}

/* 底部咨询横幅 */
.bottom-section .contact-banner {
	width: 100%;
	background: url('/img/bottom-section-bg.png') no-repeat center / 100% 220px;
	height: 220px;
	padding: 0 130px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
}

.bottom-section .contact-text .t1 {
	font-size: 30px;
	font-family: PingFang-SC-Medium;
	margin-bottom: 30px;
}

.bottom-section .contact-text p {
	font-size: 16px;
	opacity: 0.8;
}

.bottom-section .contact-btn {
	width: 220px;
	height: 60px;
	background: #fff;
	color: #0F4DC8;
	border-radius: 14px;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}


/* 关于我们 */
.banner-section {
	width: 100%;
	height: 600px;
	padding-top: 110px;
	overflow: hidden;
	position: relative;
	min-width: 1920px;
}

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

.about-container {
	width: 100%;
	padding: 0 30px;
	background-color: #fff;
}

/* 模块通用标题 */
.section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section-title .title {
	font-size: 30px;
	color: #0F4DC8;
	display: inline-block;
	font-weight: 800;
	font-family: PingFang-SC-Heavy;
	line-height: 1.2;
}

.section-title .sub-title {
	padding-left: 20px;
	font-size: 16px;
	color: #0B1324;
	line-height: 32px;
}

/* ========== 1、公司简介区域 左右分栏 ========== */
.intro {
	display: flex;
	padding: 0 130px;
}

.about-left {
	padding-top: 150px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
}

.about-container .intro .about-left h2 {
	font-size: 38px;
	color: #000;
	font-family: PingFang-SC-Medium;
	white-space: pre-line;
}

.about-desc {
	width: 80%;
	font-size: 18px;
	color: #0B1324;
	line-height: 32px;
	margin-bottom: 12px;
	white-space: pre-line;
}

.about-right {
	width: 40%;
	padding: 100px 0;
	background: #FAFBFE;
	border-radius: 0 0 20px 20px;
	display: flex;
	justify-content: center;
}

.about-data-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 70px;
}

.about-data-item {
	display: flex;
	align-items: center;
	gap: 20px;
}

.data-num {
	font-size: 28px;
	font-weight: bold;
	font-family: PingFang-SC-Heavy;
	color: #0F4DC8;
}

.data-tip {
	font-size: 16px;
	color: #0B1324;
}

.mission-vision {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 0 130px;
	margin: 50px 0;
}

.mission-card,
.vision-card {
	background: #FAFBFE;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 17px 0 30px;
	overflow: hidden;
}

.card-main {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 50px;
}

.card-main .card-icon {
	width: 140px;
	height: 140px;
}

.card-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.card-text h4 {
	font-size: 36px;
	font-weight: 500;
	font-family: PingFang-SC-Medium;
	color: #0F4DC8;
}

.card-text p {
	padding-right: 55px;
	font-size: 16px;
	color: #0B1324;
}

.card-img {
	width: 640px;
	object-fit: cover;
}

.tech-section {
	padding: 50px 130px 105px;
}

.tech-title h2 {
	font-size: 38px;
	font-weight: 500;
	font-family: PingFang-SC-Medium;
	color: #000;
	line-height: 1.2;
}

.tech-title .title {
	display: inline-block;
	font-size: 16px;
	font-family: PingFang-SC-Heavy;
	color: #043BA6;
	font-weight: 800;
	padding: 20px 0;
	line-height: 1.2;
}

.tech-title .divider {
	width: 60px;
	height: 6px;
	background: #0F4DC8;
	border-radius: 3px 3px 3px 3px;
}

.tech-section .tech-content {
	width: 100%;
	height: 390px;
	background: url('../img/about/bg-1.png') no-repeat left bottom / 479px 365px;
	margin-top: 36px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 30px;
}

.tech-section .tech-content .tech-item {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 50px;
}

.tech-section .tech-content .tech-item .num {
	font-weight: 500;
	font-size: 38px;
	color: #0F4DC8;
	font-family: PingFang-SC-Medium;
}

.tech-section .tech-content .tech-item .bar {
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 50px;
	font-weight: 500;
	font-family: PingFang-SC-Medium;
	background: url('../img/about/short-bar.png') no-repeat left top / 100% 100%;
}

.tech-section .tech-content .t1 {
	/* width: 1280px; */
	width: 80%;
	background: url('../img/about/long-bar.png') no-repeat left top / 100% 100%;
}

.tech-section .tech-content .t2 {
	/* width: 1151px; */
	width: 72%;
	background: url('../img/about/middle-bar.png') no-repeat left top / 100% 100%;
}

.tech-section .tech-content .t3 {
	/* width: 1021px; */
	width: 62%;
}

.tech-section .tech-content .tech-item .i-icon {
	width: 100px;
	height: 100px;
}

.tech-section .tech-content .bar .title {
	font-size: 20px;
	color: #000;
	padding-bottom: 10px;
	line-height: 1.2;
}

.tech-section .tech-content .bar .sub-title {
	font-size: 16px;
	color: #8A8F99;
	line-height: 1.2;
}



/* ========== 4、底部承诺深色栏 ========== */
.promise-bar {
	width: 100%;
	height: 220px;
	background-color: #fff;
	padding: 0 30px;
	overflow: hidden;
	color: #fff;
}

.promise-wrap {
	width: 100%;
	height: 220px;
	background: url('/img/about/bottom-section-bg.png') no-repeat center / 100% 220px;
	display: flex;
	padding: 0 130px;
	align-items: center;
	justify-content: space-between;
}

.promise-left {
	width: 22%;
}

.promise-left h3 {
	font-size: 30px;
	font-family: PingFang-SC-Medium;
	font-weight: 500;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	white-space: pre-line;
}

.promise-left span {
	font-size: 16px;
	opacity: 0.7;
	display: block;
	margin-bottom: 8px;
}

.promise-list {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px;
}

.promise-item {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 16px;
	font-family: PingFang-SC-Heavy;
}


.promise-item .txt {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 18px;
	font-family: PingFang-SC-Heavy;
	font-weight: 800;
}

.promise-item .txt .small {
	font-size: 14px;
	font-family: PingFang-SC-Regular;
	font-weight: 400;
}

.promise-item .txt .en {
	font-size: 12px;
}


/* 产品技术 */
.technology-container {
	width: 100%;
	background-color: #fff;
}

.pd30 {
	padding: 0 30px;
}


.tech-first-section,
.tech-two-section,
.tech-three-section,
.tech-four-section {
	padding: 0 160px;
}

.tech-two-section,
.tech-three-section {
	background-color: #FAFBFE;
}

.tech-first-section,
.tech-two-section {
	padding-top: 100px;
}

.tech-three-section {
	padding: 120px 160px 150px;
}

.tech-four-section {
	padding-top: 70px;
}

.tech-data-list {
	display: flex;
	align-items: center;
	padding-bottom: 57px;
}

.tech-data-list .tech-data-item {
	width: 20%;
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	position: relative;
}

.tech-data-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 60px;
	width: 1px;
	background-color: #DCDEDD;
}

.tech-data-list .tech-data-item .num {
	font-size: 24px;
	font-weight: 800;
	font-family: PingFang-SC-Heavy;
	color: #BBA161;
}

.tech-data-list .tech-data-item .desc {
	font-size: 16px;
	color: #0B1324;
}

.advertisement {
	width: 100%;
	height: 430px;
}

.advertisement img {
	width: 100%;
	height: 100%;
}

.tech-two-section .check {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #0F4DC8;
	font-family: PingFang-SC-Heavy;
	font-size: 16px;
	font-weight: 800;
}

.product-main {
	display: flex;
	gap: 30px;
	padding: 70px 0 0;
}

.m-product-main {
	display: none;
}

.main-r,
.main-l {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.r-bottom {
	display: flex;
	gap: 30px;
}

.r-bottom .b-l {
	flex: 1;
}

.r-bottom .b-r {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.three-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 70px;
	gap: 20px;
}

.three-main .upgrade {
	margin: 0 10px;
}

.three-main .old-card {
	width: 30%;
	height: 470px;
	padding: 40px;
	background: #FFFFFF;
	border-radius: 20px;
	border: 1px solid #E6EDF8;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.three-main .card-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 20px;
}

.three-main .new-card {
	flex: 1;
	height: 470px;
	padding: 40px;
	background: #FFFFFF;
	border-radius: 20px;
	border: 1px solid #8DA9E2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.three-main .new-card .intro-list {
	gap: 20px;
}

.three-main .old-card.en {
	width: 40%;
	padding: 75px 28px;
	height: 544px;
}

.three-main .old-card.en .intro-i {
	gap: 0;
}

.three-main .old-card.en .intro-i .item-name {
	width: 35%;
}

.three-main .new-card.en {
	width: 33%;
	height: 544px;
}

.three-main .new-card.en .intro-list {
	gap: 14px;
}

.three-main .new-card.en {
	width: 33%;
	height: 544px;
}

.three-main .three-sub-img {
	width: 360px;
}

.three-main .three-sub-img.en {
	width: 360px;
	height: 544px;
}


.l-t {
	font-size: 21px;
	color: #0F4DC8;
	font-weight: 500;
	font-family: PingFang-SC-Medium;
}

.item-text {
	flex: 1;
}

.intro-list {
	display: flex;
	flex-direction: column;
	gap: 34px;
}


.intro-i {
	display: flex;
	align-items: center;
	gap: 20px;
}

.intro-i .img-b {
	width: 10%;
	display: flex;
	justify-content: flex-start;
}

/* 文字区域 */
.item-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.item-name {
	display: flex;
	justify-content: flex-start;
	font-size: 21px;
	color: #000;
	font-weight: 500;
}

.item-desc {
	flex: 1;
	font-size: 16px;
	color: #8A8F99;
	margin: 0;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.m-tech-four-section {
	display: none;
}

.tech-four-section .step-section {
	display: flex;
	padding-bottom: 200px;
}

.tech-four-section .step-section .step-left {
	flex: 1;
}

.tech-four-section .step-section .top {
	padding-bottom: 60px;
}

.tech-four-section .step-section .top .title {
	font-size: 30px;
	color: #0F4DC8;
	font-weight: 800;
	line-height: 1;
}

.tech-four-section .step-section .top .sub-title {
	font-size: 16px;
	color: #0B1324;
	padding-left: 20px;
}

.tech-four-section .sub-img {
	width: 406px;
	height: 305px;
	z-index: 99;
}

.tech-four-section .step-list {
	flex: 1;
	display: flex;
	align-items: flex-start;
}

/* 单个步骤项，均分宽度 */
.step-item {
	width: 16%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* 圆圈+连接线容器 */
.step-circle-box {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	margin-bottom: 28px;
}

/* 圆形序号框 */
.step-circle {
	width: 100px;
	height: 100px;
	border: 1px solid #8DA9E2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	background-color: #fff;
	color: #000;
	font-weight: 500;
	font-family: PingFang-SC-Medium;
	z-index: 2;
	position: relative;
}



/* 中间蓝色连接线 */
.step-line {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 2px;
	background-color: #0F4DC8;
	z-index: 1;
}

/* 步骤主标题 */
.step-title {
	font-size: 21px;
	color: #000;
	font-weight: 500;
	font-family: PingFang-SC-Medium;
}

/* 底部描述文字 */
.step-desc p {
	font-size: 16px;
	color: #8A8F99;
	font-weight: 500;
	font-family: PingFang-SC-Medium;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	white-space: pre-line;
}


.product-container .tabs {
	width: 100%;
	padding: 40px 160px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	background-color: #fff;
}

.product-container .tabs .tab {
	width: 200px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	color: #000000;
	font-weight: 500;
	font-size: 21px;
	font-family: PingFang-SC-Medium;
	background: #F8F8F8;
	cursor: pointer;
}

.product-container .tabs .tab.en {
	width: 260px;
}

.product-container .tabs .active {
	color: #fff;
	background: #0F4DC8;
}

.product-container .list-section {
	background-color: #F3F6FD;
	padding: 0 160px 155px;
}

.product-container .list-section .class-item {
	padding: 54px 0 10px;
}

.list-section .product-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 50px;
}

.list-section .product-list .product-item {
	width: 32%;
	height: 550px;
	background-color: #fff;
	position: relative;
}

.list-section .product-list .product-item img {
	width: 100%;
}

.list-section .product-list .product-item .name {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 60px;
	font-size: 24px;
	font-weight: 800;
	text-align: center;
	font-family: PingFang-SC-Heavy;
	color: #000;
}


.areas-container {
	padding: 0 30px;
	background-color: #F3F6FD;
}

.areas-container .areas-section {
	padding: 120px 130px 160px;
}

.areas-container .areas-section .industry-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 1.3%;
	margin-top: 60px;
}

.areas-container .industry-item {
	width: 24%;
	height: 566px;
	display: flex;
	flex-direction: column;
	margin-bottom: 26px;
	background-color: #fff;
	border-radius: 20px;
}

.industry-item .image {
	width: 100%;
	height: 364px;
}

.industry-item .industry-main {
	flex: 1;
	display: flex;
	align-items: flex-start;
	padding: 0 18px;
}

.industry-item .industry-main .icon {
	width: 78px;
	height: 78px;
	margin-top: -39px;
}

.industry-item .industry-main .industry-content {
	padding: 38px 5px 0;
	font-family: PingFang-SC-Medium;
	font-weight: 500;
}

.industry-item .industry-main .industry-content h3 {
	font-size: 26px;
	color: #0044D4;
	padding-bottom: 16px;
}

.industry-item .industry-main .industry-content p {
	font-size: 20px;
	color: #8A8F99;
	line-height: 1.2;
}

.project-container {
	padding: 0 30px;
	background-color: #F3F6FD;
}

.project-container .project-section {
	padding: 100px 130px 160px;
}

.project-container .project-section .project-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 60px;
}

.project-container .project-item {
	width: 100%;
	height: 240px;
	padding: 20px 50px 20px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 20px;
}

.project-container .project-item .img {
	width: 260px;
	height: 200px;
}

.project-container .project-item .img img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	object-fit: cover;
}

.project-container .project-item .info {
	flex: 1;
	height: 100%;
	padding: 0 37px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	font-family: PingFang-SC-Medium;
	overflow: hidden;
}

.project-container .project-item .info-t {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.project-container .project-item .info h2 {
	font-weight: 500;
	font-size: 32px;
	color: #0B1324;
}

.project-container .project-item .info .content {
	width: 70%;
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 18px;
	color: #808080;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	/* 限制显示的行数为 3 */
	overflow: hidden;
}

.project-container .project-item .info .tag {
	font-size: 16px;
	color: #0044D4;
}

.project-container .project-item .info .tag {
	font-size: 14px;
	color: #0044D4;
}


.pagination-section {
	margin: 90px auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-section li {
	width: 115px;
	height: 38px;
	background: #FBFBFD;
	border-radius: 8px;
	border: 1px solid #C5C6C9;
	font-size: 14px;
	color: #0042F8;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.contact-container {
	padding: 0 30px;
	background-color: #F3F6FD;
}

.contact-container .info-section,
.contact-container .input-section {
	padding: 100px 130px 0;
}

.contact-container .input-section {
	padding-top: 70px;
}

.info-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 50px;
}

.info-list .info-item {
	width: 32%;
	height: 200px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	background-color: #fff;
	font-family: PingFang-SC-Medium;
	font-weight: 500;
}

.info-list .info-item .i-t {
	font-size: 21px;
	color: #0B1324;
}

.info-list .info-item .i-d {
	font-size: 21px;
	color: #0F4DC8;
	padding: 18px 0 15px;
}

.info-list .info-item .i-o {
	font-size: 16px;
	color: #808080;
}

.info-list .info-item .pt {
	padding-top: 18px;
}

.consult-wrap {
	display: flex;
	gap: 50px;
	margin: 50px 0 100px;
}

/* 卡片通用样式 */
.form-card,
.process-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 40px 40px 10px 30px;
}

.process-card {
	flex: 1;
	padding: 40px 170px 10px 30px;
}

.form-card {
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 表单区域样式 */
.form-row {
	width: 100%;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
}


.submit-btn {
	width: 140px;
	height: 54px;
	font-size: 20px;
	color: #0042F8;
	font-weight: 800;
	font-family: PingFang-SC-Heavy;
	background: #FBFBFD;
	border-radius: 10px;
	border: 1px solid #C5C6C9;
	text-align: center;
	line-height: 52px;
	cursor: pointer;
}


.two-col {
	display: flex;
	gap: 30px;
}

.form-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-item.full {
	flex: 1 1 100%;
}

.label {
	padding-left: 10px;
	font-size: 16px;
	color: #0B1324;
	font-weight: 800;
	font-family: PingFang-SC-Heavy;
}

.input {
	height: 50px;
	padding: 0 21px;
	border: 1px solid #DCDFE6;
	border-radius: 10px;
	font-size: 16px;
	color: #808080;
	transition: border-color 0.2s;
}

.input:focus {
	outline: none;
	border-color: #2563eb;
	border: 1px solid #2563eb;

}

.textarea {
	min-height: 160px;
	padding: 20px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	font-size: 16px;
	resize: none;
}

.textarea:focus {
	outline: none;
	border-color: #2563eb;
	border: 1px solid #2563eb;

}

/* 右侧流程标题 */
.process-title {
	font-size: 30px;
	color: #0F4DC8;
	font-family: PingFang-SC-Heavy;
	font-weight: 800;
	margin-bottom: 20px;
}

.process-desc {
	font-size: 16px;
	color: #808080;
	margin: 0 0 70px;
	line-height: 1.8;
}

/* 垂直时间线核心样式 */
.timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}

.timeline.zh {
	gap: 70px;
}


.timeline-item {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	position: relative;
}

.timeline-item::after {
	content: '';
	position: absolute;
	left: 30px;
	bottom: 100%;
	width: 1px;
	height: 100px;
	background-color: #8DA9E2;
}

.timeline-item:first-child::after {
	display: none;
}

.timeline-item:last-child {
	margin-bottom: 0;
}


.timeline-icon {
	width: 60px;
	height: 60px;
	background-color: #fff;
	position: relative;
	z-index: 99;
}

.timeline-icon img {
	width: 60px;
}


.timeline-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.step-title {
	font-size: 20px;
	color: #0B1324;
	font-family: PingFang-SC-Heavy;
	font-weight: 800;
}

.step-desc {
	font-size: 16px;
	color: #808080;
	line-height: 1.8;
}



/*联系我们*/
.contact-one-section {
	width: 100%;
	background: url(../img/contact/contact_back_01.png) no-repeat center/100% 463px;
	height: 461px;
}

.contact-one-section .wrap {
	top: -350px;
	position: absolute;
}

.contact-one-section .title-section {

	margin-left: 8%;

}

.contact-one-section .title-section h2 {
	font-size: 50px;
	color: #fff;
	font-weight: bold;
	position: relative;
	/* width: 320px; */
}

.contact-one-section .title-section h2 .title-line {
	position: absolute;
	right: 0;
	bottom: 12px;
	font-size: 18px;
	color: #32fff3;
	font-family: 'titleFont';
	font-weight: normal;
	transform: translateX(90%);
	white-space: nowrap;
}

.contact-one-section .title-section h3 {
	font-size: 24px;
	color: #666666;
	margin: 30px 0 60px;
}

.contact-one-section .map {
	margin: 0 8%;
	border-radius: 20px;
	overflow: hidden;
}

.contact-one-section .address-section {
	margin: 50px 8%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.contact-one-section .address-section li {
	width: 50%;
	font-size: 18px;
	color: #FFFFFF;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}

.contact-two-section {
	width: 100%;
	background: url(../img/contact/contact_back_02.png) no-repeat center/100% 660px;
	height: 658px;
}

.contact-two-section .title-section {
	padding-top: 50px;
	margin-left: 8%;
	position: relative;
}

.contact-two-section .title-section h2 {
	font-size: 50px;
	color: #fff;
	font-weight: bold;
	position: relative;
	/* width: 485px; */
}

.contact-two-section .title-section h2 .title-line {
	position: absolute;
	right: 0;
	bottom: 12px;
	font-size: 18px;
	color: #32fff3;
	font-family: 'titleFont';
	font-weight: normal;
	white-space: nowrap;
	transform: translateX(90%);
}

.contact-two-section .title-section h3 {
	font-size: 24px;
	color: #666666;
	margin: 30px 0 60px;
}


.contact-two-section .input-section {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0px 8%;
}

.contact-two-section .input-section li {
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, .5);
	padding: 30px;
	box-sizing: border-box;
	width: 23%;
	margin-right: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}


.contact-two-section .input-section li .title {
	font-size: 18px;
	color: #FFFFFF;
	min-width: 80px;
}

.contact-two-section .input-section li input {
	height: 40px;
	font-size: 18px;
	color: #fff;
	flex: 1;
}

.contact-two-section .input-section li.type {
	justify-content: space-between;
	position: relative;
	height: 100px;
	cursor: pointer;
}

.contact-two-section .input-section li.textarea {
	align-items: flex-start;
	width: 71.5%;
	padding: 20px 30px;
}

.contact-two-section .input-section li.textarea .title {
	width: 180px;
}

.contact-two-section .input-section li textarea {
	margin-top: 2px;
	color: #fff;
	width: 100%;
	height: 50px;
	font-size: 18px;

}

.contact-two-section .input-section li.btn {
	background: #2ADDC9;
	text-align: center;
	color: #333333;
	height: 100px;
	font-size: 24px;
	justify-content: center;
}

.contact-two-section .input-section li .arrow {
	width: 10px;
}

.contact-two-section .input-section li .dorp-down-types {
	position: absolute;
	left: 0;
	top: 110px;
	padding: 20x;
	width: 100%;
	background: #06070a;
	border-radius: 20px;
	padding: 0 30px;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, .5);
}

.contact-two-section .input-section li .dorp-down-type {
	padding: 30px;
	color: #fff;
	text-align: center;
	font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	cursor: pointer;
}

.contact-two-section .input-section li .dorp-down-type:hover {
	color: #1CFFF2;
}

.contact-two-section .input-section li .dorp-down-type:last-child {
	border-bottom: none;
}

.details-banner {
	padding-top: 110px;
	width: 100%;
}

.details-banner .container {
	width: 100%;
	height: 300px;
	padding: 0 160px;
	background: url('/img/details-banner.png') no-repeat center / 100% 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
}

.details-banner .container .title {
	font-size: 38px;
	font-weight: 800;
	font-family: PingFang-SC-Heavy;
	padding-bottom: 20px;
}

.details-banner .container .sub-content {
	display: flex;
	align-items: center;
	gap: 22px;
	font-size: 16px;
}

.details-section {
	padding: 68px 160px 300px;
}

.details-section h4 {
	font-size: 18px;
	color: #555;
	margin: 20px 5%;
	text-align: center;

}

.details-section h5 {
	font-size: 14px;
	color: #333;
	border-top: 1px solid #333;
	padding-top: 20px;
	text-align: center;
}

.details-section .content img {
	width: 28% !important;
}

/* 移动导航隐藏 */
.m-header {
	display: none;
}

.m-footer {
	display: none;
}

.m-banner {
	display: none;
}

.m-nav {
	display: none;
}

.news-section .m-service-pic-section {
	display: none;
}

.m-banner-section {
	display: none;
}

@media screen and (min-width: 961px) and (max-width: 1599px) {
	.header {
		padding: 0;
	}
	.header .logo {
		padding: 0 80px;
	}
	.header .logo img {
		width: 370px;
		height: 36px;
	}

	.nav li {
		width: 130px;
	}

	.nav li .nav-tab {
		font-size: 12px;
	}

	.language-wrapper {
		margin-right: 80px;
	}

	.language {
		margin: 0;
	}
	.language .content {
		padding: 0 30px 0 6px;
	}
}

/* 移动端适配 */

@media screen and (max-width: 960px) {

	/* 屏幕小于960px显示移动端 */
	html {
		font-size: 13.3333333vw
		/*以750宽度做来标准，所以rem值，是除以100获得*/
		/*即：我们把html:{font-size: 13.33333333vw} 
      也就是以100px位基准；1rem = 100px;
     现在就好算多了；移动端的尺寸 / 100  =  XXX rem；
   */
	}

	/* 隐藏pc端顶部 */
	a,
	li,
	div {
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	}

	/*  去除点击出现的阴影 */
	:root {
		-webkit-tap-highlight-color: transparent;
		/* 或者你想要的颜色 */
	}

	.header {
		display: none;
	}

	.footer {
		display: none;
	}

	.wrapper {
		max-width: none;
		margin: auto;
		min-width: auto;
	}

	.banner {
		display: none;
	}

	.news-section .service-pic-section {
		display: none;
	}

	.fix-wrap {
		display: none;
	}

	.banner-section {
		display: none;
	}

	/* 头部导航 */
	.m-header {
		width: 100%;
		height: 1.1rem;
		display: block;
		background-color: #fff;
		position: fixed;
		z-index: 10001;
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		transition: 0.3s;
		-webkit-animation: gupIn 1s 0.1s both;
		-moz-animation: gupIn 1s 0.1s both;
		animation: gupIn 1s 0.1s both;
	}

	.m-header.mini {
		box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
		background: rgba(0, 0, 0, 0.4)
	}

	.m-header.hide {
		display: none
	}

	.m-header.on {
		background: #fff;
	}

	.m-header.fix {
		position: fixed;
	}

	.m-header .m-wrapper {
		position: relative;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 0.3rem;
	}

	.m-header .handle-main {
		display: flex;
		align-items: center;
		gap: .3rem;
	}

	.m-header .logo img {
		width: 4.7rem
	}

	.m-header .menu {
		width: .5rem
	}

	.m-header .language {
		gap: 10px;
		border: 0;
		padding: 0;
		margin: 0;
	}

	.m-header .language .icon-yuyan {
		width: .5rem;
		height: .5rem;
	}

	.m-header .language .icon-bottom {
		width: 10px;
		height: 6px;
	}

	.m-header .dorp-down {
		background: rgba(0, 0, 0, 0.2);
		border-radius: 10px;
		border: 1px solid rgba(255, 255, 255, 0.5);
		display: none;
		position: absolute;
		left: 50%;
		top: 48px;
		width: 150px;
		transform: translateX(-50%);
	}

	.m-header .language:hover .dorp-down {
		display: block;
	}

	.m-header .dorp-down a {
		display: block;
		color: #fff;
		padding: 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.m-header .dorp-down a:last-child {
		border-bottom: none;
	}


	.m-header .dorp-down a:hover {
		color: #043BA6;
	}

	/* 遮罩层 */
	.mask {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.4);
		z-index: 101;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease;
	}

	.mask.mask-show {
		opacity: 1;
		visibility: visible;
	}

	.m-nav {
		width: 70%;
		background-color: #F7F7F7;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		z-index: 10000;
		overflow-y: auto;
		display: block;
	}

	.m-nav.menu-show {
		transform: translateX(0);
	}

	.m-nav .close {
		width: .3rem;
		position: absolute;
		right: 0.3rem;
		top: .3rem;
	}

	.m-nav ul {
		margin: 1.1rem 0 0;
		padding: 0 .25rem;
	}

	.m-nav ul li {
		height: 1.2rem;
		font-size: 0.32rem;
		font-weight: 800;
		color: #000000;
		border-bottom: 1px solid #DCDEDD;
	}

	.m-nav ul li.active {
		color: #0F4DC8;
		position: relative;
	}

	.m-nav ul li.active a {
		color: #0F4DC8;
	}

	.m-nav ul li a {
		display: block;
		height: 1.2rem;
		line-height: 1.2rem;
	}

	.m-nav ul li.active:after {
		content: '';
		width: 0.05rem;
		height: 0.4rem;
		background: #0F4DC8;
		position: absolute;
		right: 0;
		top: 0.4rem;
	}

	/* 移动端底部 */

	.m-footer {
		width: 100%;
		background: #011E46;
		display: block;
	}

	.m-footer .wrapper .foot-section {
		padding: .5rem .3rem 1.2rem;
	}

	.m-footer .wrapper .foot-section .left {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.m-footer .wrapper .foot-section .contact-section {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.m-footer .wrapper .foot-section .contact-section .s-wrapper {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: .4rem 0 0;
	}

	.m-footer .left .logo {
		width: 4.7rem;
		height: .44rem;
	}

	.m-footer .left .tips {
		font-size: .16rem;
		color: #FFFFFF;
		padding: .42rem 0 .3rem;
	}

	.m-footer .left .contact-icons {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: .4rem;
		margin: 0;
	}

	.m-footer .left .contact-icons img {
		width: .6rem;
		height: .6rem;
	}

	.m-footer .contact-section .public {
		flex: 1;
	}

	.contact-section .public .m-title {
		font-size: .18rem;
		padding-bottom: .32rem;
	}

	.contact-section .public ul li {
		padding-bottom: .42rem;
		font-size: .2rem;
		gap: .2rem;
	}

	.contact-section .public ul li .icon {
		width: .3rem;
	}

	.contact-section .public ul li .icon img {
		width: .3rem;
		height: .3rem;
	}


	.contact-section .public ul li span {
		flex: 1;
	}

	.m-footer .contact-section .show-qr {
		width: 2rem;
		border-radius: .14rem;
		padding: .1rem;
		box-sizing: border-box;
		margin: 0;
	}

	.m-footer .contact-section .show-qr img {
		width: 100%;
	}

	.m-footer .foot-filing {
		width: 100%;
		height: .6rem;
		line-height: .6rem;
		background: #011633;
		text-align: center;
		font-size: .14rem;
		color: #BAC0CC;
	}

	.contact-modal {
		padding: .25rem .35rem;
		font-size: .18rem;
	}

	.section-title {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
	}

	.section-title .title {
		font-size: .32rem;
	}

	.section-title .sub-title {
		padding-left: .2rem;
		font-size: .18rem;
	}

	/*首页*/
	.m-banner {
		display: block;
		width: 100%;
		position: relative;
		height: 10.19rem;
		overflow: hidden;
		padding-top: 1.1rem;
	}

	.m-banner .banner-swiper {
		height: 10.19rem;
	}

	.m-banner img {
		width: 100%;
	}

	.m-banner .video {
		width: 100%;
	}

	.m-banner .banner-swiper .swiper-pagination-bullets {
		bottom: 0 !important;
	}

	/* 首页h5样式 */
	.first-section {
		width: 100%;
		background-color: #FAFBFE;
		height: auto;
		padding: .3rem;
	}

	.first-section .data-list {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: .1rem;
	}

	.first-section .divider {
		display: none;
	}

	.first-section .data-item {
		width: 49%;
		height: 1.8rem;
		background-color: #fff;
		gap: .3rem;
		border-radius: .3rem;
		padding-left: .64rem;

		justify-content: center;
	}

	.first-section .data-item:last-child {
		width: 100%;
		justify-content: flex-start;

	}

	.first-section .data-item .data-icon {
		width: .6rem;
	}

	.first-section .data-item .data-text {
		flex: 1;
	}

	.first-section .data-text .num {
		font-size: .3rem;
	}

	.first-section .data-text .desc {
		font-size: .16rem;
	}

	.main-container .sub-title {
		font-size: .18rem;
	}

	.main-container {
		padding: .5rem .3rem 0;
	}

	.main-container .home-content .title {
		font-size: .52rem;
		background-color: #FAFBFE;
	}

	.main-container .home-content .title.mobileEn {
		font-size: .34rem !important;
	}

	.main-container .home-content .sub-title.mobileEn {
		font-size: .12rem !important;
	}

	.main-container .business-list {
		display: flex;
		flex-direction: column;
		gap: .2rem;
		padding: 0 0 1.16rem;
		margin-top: .5rem;
	}

	.business-list .business-card {
		width: 100%;
		height: 4.7rem;
		background: url(../img/index/intro-01-h5.png) no-repeat center/100% 4.7rem;
	}

	.business-list .bg2 {
		background: url(../img/index/intro-02-h5.png) no-repeat center/100% 4.7rem;
	}

	.business-list .bg3 {
		background: url(../img/index/intro-03-h5.png) no-repeat center/100% 4.7rem;
	}

	.business-list .business-card .num {
		top: .29rem;
		left: .38rem;
		font-size: .60rem;
	}

	.business-list .business-card .card-content {
		padding: 0 .3rem .28rem .4rem;
		height: 2.2rem;
		justify-content: space-between;
	}

	.card-content .bus-title {
		font-size: .42rem;
	}

	.card-content .bus-title.en {
		font-size: .28rem;
	}

	.card-content .bus-desc {
		width: 70%;
		font-size: .24rem;
		line-height: .4rem;
		padding: 0;
	}

	.card-content .bus-desc.mobileEn {
		width: 100% !important;
	}

	.card-content .bus-herf {
		width: 100%;
		font-size: .2rem;
		gap: .07rem;
		justify-content: flex-end;
	}

	.card-content .bus-herf .pc-right {
		display: none;
	}

	.card-content .bus-herf .h5-right {
		width: .24rem;
		height: .12rem;
		display: block;
	}

	.bottom-section .contact-banner {
		padding: .5rem .4rem;
		height: 3.4rem;
		background: url(/img/bottom-section-bg-h5.png) no-repeat center / 100% 3.4rem;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.bottom-section .contact-text .t1 {
		font-size: .32rem;
		margin-bottom: .34rem;
		line-height: 1.4;
	}

	.bottom-section .contact-text .t1.mobileEn {
		font-size: .26rem;
	}

	.main-container .bottom-section .contact-text .t1 {
		width: 80%;
	}

	.contact-container .bottom-section .contact-text .t1 {
		width: 80%;
	}


	.bottom-section .contact-text p {
		font-size: .18rem;
	}

	.bottom-section .contact-btn {
		width: 2.2rem;
		height: .6rem;
		border-radius: .14rem;
		font-size: .18rem;
		gap: .1rem;
	}

	.bottom-section .contact-btn img {
		width: .16rem;
		height: .1rem;
	}


	/* 第二块 */
	.second-section {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/index_back_02.jpg) no-repeat center/100% 100%;
		/* height: 9.04rem;  9.06rem*/
		height: auto;
	}

	.second-section .title-section {
		margin-top: 0.5rem;
		width: auto;
		text-align: left;
	}

	.second-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
	}

	.second-section .title-section h2 .title-line {
		position: absolute;
		left: 50%;
		transform: translateX(-20%);
		bottom: -0.1rem;
		width: 2.02rem;
	}

	.second-section .title-section h3 {
		font-size: 0.24rem;
		color: #666666;
		margin: 0.2rem 0 0.5rem;
	}

	.second-section .service-section {
		display: block;
		max-width: none;
		margin: 0 0.5rem;
	}

	.second-section .service-section .nav-items {
		width: auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.25rem;
	}

	.second-section .service-section .nav-items li {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 30%;
		height: 1.2rem;
		box-sizing: border-box;
		position: relative;
		border-radius: 0.2rem;
		cursor: pointer;
		border: .01rem solid rgba(255, 255, 255, 0.2);
		/* padding: 0 0.4rem; */
		padding: 0;
		text-align: center;
	}

	.second-section .service-section .nav-items li.active {
		/* padding: 0 0.4rem; */
		padding: 0;
		background: #2FF2DC;
	}

	.second-section .service-section .nav-items li.active .back {
		display: none;
	}

	.second-section .service-section .nav-items li h4 {
		font-weight: 800;
		font-size: 0.24rem;
		color: #fff;
	}

	.second-section .service-section .nav-items li.active h4 {
		color: #333;
		position: relative;
	}

	.second-section .service-section .nav-items li h5 {
		display: none;
	}

	.second-section .service-pic-section {
		margin-left: 0;
		margin-top: 0.3rem;
	}

	.second-section .service-pic-section .service-pic {
		width: 100%;
		height: 4.5rem;
		/* display: none; */
	}

	.second-section .service-pic-section .service-pic.service-pic-active {
		display: block;
	}

	/* 第三块 */
	.news-section {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/index_back_03.jpg) no-repeat center/100% 100%;
		/* height: 14.70rem; 14.72rem  */
		height: auto;
	}

	.news-section .wrap {
		display: block;
		/* padding-top: 0.3rem; */
		padding-top: 1rem;
		margin: 0 0.5rem;
	}

	.news-section .title-section {
		width: 100%;
		margin-left: 0;

	}

	.news-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		line-height: 1;
		/* width: 5.5rem; */
	}

	.news-section .title-section h2 .title-line {
		position: absolute;
		right: 0;
		bottom: 0;
		transform: translateX(90%);
		font-size: .18rem;
	}

	.news-section .title-section h3 {
		font-size: 0.24rem;
		color: #666666;
		margin: 0.2rem 0 0.4rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-right: 0rem;
	}

	.news-section .title-section h3 .more {
		color: #fff;
		font-size: 0.18rem;
	}

	.news-section .title-section h3 .more .icon {
		width: 0.1rem;
		margin-left: 0.05rem;
	}

	.news-section .service-section {
		width: auto;
		margin-right: 0;
	}

	.news-section .service-section .nav-items {
		margin-left: 0;
		margin-top: 0.3rem;
	}

	.news-section .service-section .nav-items li {
		display: flex;
		align-items: center;
		position: relative;
		padding: 0.2rem 0.2rem;
		line-height: 1.6;
		border: 0.01rem solid transparent;
		cursor: pointer;
	}

	.news-section .service-section .nav-items li .date {
		margin-right: 0.3rem;
		border-right: 0.01rem solid #2FF2DC;
		padding-right: 0.2rem;
	}

	.news-section .service-section .nav-items li .date .day {
		font-weight: bold;
		font-size: 0.32rem;
		color: #FFFFFF;
		text-align: center;
	}

	.news-section .service-section .nav-items li .date .year {
		font-size: 0.24rem;
		color: #666666;
		text-align: center;

	}

	.news-section .service-section .nav-items li.active {

		border: 0.01rem solid #2FF2DC;
		border-radius: 0.2rem;
	}

	.news-section .service-section .nav-items li.active .date .day {
		color: #2FF2DC;
	}

	.news-section .service-section .nav-items li.active .date .year {
		color: #2FF2DC;
	}

	.news-section .service-section .nav-items li h4 {
		font-weight: 800;
		font-size: 0.28rem;
		color: #fff;
	}

	.news-section .service-section .nav-items li.active h4 {
		color: #2FF2DC;
		position: relative;
	}

	.news-section .service-section .nav-items li h5 {
		font-size: 0.18rem;
		color: #666666;
	}

	.news-section .service-section .nav-items li.active h5 {
		color: #2FF2DC;
		position: relative;
	}

	.news-section .m-service-pic-section {
		margin-left: 0;
		display: block;
	}

	.news-section .m-service-pic-section .pic-box {
		display: none;
		position: relative;
	}

	.news-section .m-service-pic-section .pic-box .title {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 0.2rem 0.3rem;
		background-color: rgba(0, 0, 0, 0.5);
		font-size: 0.14rem;
		color: #fff;
		display: none;
	}

	.news-section .m-service-pic-section .service-pic {
		width: 100%;
		height: 5.4rem;
		object-fit: contain;
		border-radius: 0.3rem;
	}

	.news-section .m-service-pic-section .pic-box.service-pic-active {
		display: block;
	}


	/* 第四块 */
	.join-section {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/index_back_04.jpg) no-repeat center/100% 7.28rem;
		height: 7.28rem;
		margin-top: 1rem;
	}

	.join-section .title-section {
		margin-top: 0rem;
		margin-left: 0;
	}

	.join-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		text-align: center;
	}

	.join-section .title-section h2 .title-line {
		position: absolute;
		left: 50%;
		transform: translateX(-20%);
		bottom: -0.1rem;
		width: 2.02rem;
	}

	.join-section .title-section h3 {
		box-sizing: border-box;
		font-size: 0.24rem;
		color: #666666;
		padding: 0.3rem 0.3rem 0.3rem;
		margin: 0;
		width: 100%;
		text-align: center;
		word-break: normal;
		overflow-wrap: break-word;
	}

	.join-section .contact {
		font-size: 0.20rem;
		color: #FFFFFF;
		border-radius: 0.06rem 0.5rem 0.06rem 0.5rem;
		border: 0.01rem solid #FFFFFF;
		display: block;
		padding: 0.12rem 0.1rem 0.12rem 0.4rem;
		margin: 0 auto;
		width: 1.6rem;
	}

	.join-section .contact .arrow {
		width: 0.08rem;
		margin-left: 0.05rem;
	}


	.about-section {
		width: 100%;
		overflow: hidden;
		background: none;
		height: auto;
	}

	.about-section .about-info {
		display: block;
		background: url(../img/m/about_back_01.jpg) no-repeat center/100% 9.06rem;
		height: 9.04rem;
		margin: 0.3rem 0 0;
	}

	.about-section .title-section {
		width: auto;
		margin: 0 0.5rem;
	}

	.about-section .title-section h2 {
		font-size: .5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		/* width: 2.5rem; */
	}

	.about-section .title-section h2 .title-line {
		position: absolute;
		right: 0;
		bottom: 12px;
		font-size: .18rem;
		transform: translateX(90%);
	}

	.about-section .title-section h3 {
		font-size: 0.24rem;
		color: #666666;
		margin: 0.3rem 0 0.4rem;
	}

	.about-section .title-section .desc {
		margin-top: 0.3rem;
		font-size: 0.22rem;
		color: #FFFFFF;
		line-height: 1.7;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 6;
		-webkit-box-orient: vertical;
	}

	.about-section .about-info .com-pic {
		width: 6.5rem;
		height: 4rem;
		object-fit: cover;
		border-radius: 0.2rem;
		margin: 0 0.5rem;
		margin-top: 0.5rem;
	}

	.about-section .about-lists {
		display: block;
		background: url(../img/m/about_back_02.jpg) no-repeat center/100% 7.39rem;
		height: 7.37rem;
		margin: 0;
		padding-top: .3rem;
		box-sizing: border-box;

	}

	.about-section .about-lists .about-list {
		background: url(../img/about/intro_back.png) no-repeat center/6.5rem 1.9rem;
		width: 6.5rem;
		box-sizing: border-box;
		height: 2rem;
		padding: .3rem;
		margin: 0 auto 0.3rem;
	}

	.about-section .about-lists h4 {
		display: flex;
		align-items: center;
		font-weight: 800;
		font-size: 0.28rem;
		color: #fff;
	}

	.about-section .about-lists h4 .about-icon {
		width: 0.3rem;
		margin-right: 0.1rem;

	}

	.about-section .about-lists ul {
		display: flex;
		align-items: flex-end;
		margin: 0.15rem 0 0 .8rem;
	}

	.about-section .about-lists ul li {
		flex: 1;
	}

	.about-section .about-lists ul li h3 {
		font-weight: bold;
		font-size: 0.30rem !important;
		color: #FFFFFF;
	}

	.about-section .about-lists ul li h3 span {
		font-size: 0.12rem !important;
		color: #fff;
		font-weight: normal;
	}

	.about-section .about-lists ul li h5 {
		font-size: 0.22rem;
		color: #999999;
	}

	.first-section.about {
		background: url(../img/m/about_back_03.jpg) no-repeat center/100% 100%;
		/* height: 12.24rem; 12.26rem*/
		height: auto;
	}

	.second-section.about {
		background: url(../img/m/about_back_04.jpg) no-repeat center/100% 100%;
		/* height: 8.5rem; 8.52rem*/
		height: auto;

	}

	.about-ecology-setion {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/about_back_05.jpg) no-repeat center/100% 100%;
		/* height: 14.31rem; 14.33rem  */
		height: auto;

	}

	.about-ecology-setion .top {
		flex-direction: column;
		margin: 0.8rem 0.5rem 0;
	}

	.about-ecology-setion .top .pic {
		width: 6.5rem;
		border-radius: 0.2rem;
		order: 2;
	}

	.about-ecology-setion .top .info {
		height: 3.5rem;
		background: url(../img/about/map.png) no-repeat center/100% 3.52rem;
		margin-left: 0;
		padding-left: 0;
		order: 1;
		margin-bottom: .3rem;
		width: 100%;
	}

	.about-ecology-setion .top .info h3 {
		font-weight: 800;
		font-size: 0.5rem;
		color: #FFFFFF;
		margin: 0.3rem 0px 0.3rem;
	}

	.about-ecology-setion .top .info h4 {
		font-size: 0.26rem;
		color: #666666;
	}

	.about-ecology-setion .top .info h5 {
		margin-top: 0.3rem;
		font-size: 0.22rem;
		color: #FFFFFF;
		line-height: 1.7;
	}

	.about-ecology-setion .progress {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
		margin: 0.5rem 0.5rem 0;
	}

	.about-ecology-setion .progress li {
		flex: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		position: relative;
		width: 40%;
		margin-bottom: .5rem;
	}

	.about-ecology-setion .progress li.line {
		display: none;
	}

	.about-ecology-setion .progress li .icon {
		width: 0.85rem;
	}

	.about-ecology-setion .progress li h3 {
		font-weight: 800;
		font-size: 0.24rem;
		color: #FFFFFF;
		margin: 0.2rem 0 0.1rem;
	}

	.about-ecology-setion .progress li h4 {
		font-size: 0.22rem;
		color: #999999;
		margin: 0 .5rem;
		text-align: center;
	}


	.about-mall-section {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/about_back_05.jpg) no-repeat center/100% 100%;
		/* height: 7rem; 7.02rem */
		height: auto;
	}

	.about-mall-section .wrap {
		display: block;
		margin: 0.5rem 0.5rem;
	}

	.about-mall-section .wrap .info {
		width: auto;
		margin: .8rem 0 0.4rem;
	}

	.about-mall-section .wrap .info h2 {
		font-weight: 800;
		font-size: 0.45rem;
		color: #FFFFFF;
	}

	.about-mall-section .wrap .info h3 {
		font-size: 0.28rem;
		color: #666666;
		margin: 0.2rem 0px 0.3rem;
	}

	.about-mall-section .wrap .info h4 {
		font-size: 0.22rem;
		color: #FFFFFF;

		line-height: 1.7;
	}

	.about-mall-section .wrap .pic {
		width: 6.5rem;
	}

	.about-value-section {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/about_back_06.jpg) no-repeat center/100% 100%;
		/* height:  10.28rem; 10.28rem */
		height: auto;
	}

	.about-value-section .wrap {
		display: block;
		align-items: center;
		justify-content: space-between;
		margin: 0.5rem;
	}

	.about-value-section .wrap .info {
		width: auto;
	}

	.about-value-section .wrap .info h2 {
		font-weight: 800;
		font-size: 0.5rem;
		color: #FFFFFF;
	}

	.about-value-section .wrap .info ul {
		border-left: 1px solid rgba(255, 255, 255, .5);
		padding: 0.3rem 0 0.01rem;
		margin-top: 0.5rem;
	}

	.about-value-section .wrap .info ul li {
		display: flex;
		align-items: center;
		margin-left: -0.08rem;
		margin-bottom: 0.4rem;
	}

	.about-value-section .wrap .info ul i {
		width: 0.14rem;
		height: 0.14rem;
		background: #2FF2DC;
		border-radius: 50%;
	}

	.about-value-section .wrap .info ul i {
		width: 0.14rem;
		height: 0.14rem;
		background: #2FF2DC;
		border-radius: 50%;
	}

	.about-value-section .wrap .info ul span {
		background: #2FF2DC;
		border-radius: 0.06rem;
		padding: 0.05rem 0.1rem;
		font-size: 0.22rem;
		color: #333333;
		text-align: center;
		margin: 0 0.2rem;
		display: inline-block;
	}

	.about-value-section .wrap .info ul p {
		font-size: 0.22rem;
		color: #FFFFFF;
		flex: 1;
	}

	.about-value-section .wrap .pic {
		margin-top: .5rem;
		width: 6.5rem;
	}

	/* 短视频 */

	.video-one-section {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/video_back_01.jpg) no-repeat center/100%;
		/* height: 7.5rem;  7.52rem */
		height: auto;
	}

	.video-one-section.w168 {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/w168_back_01.jpg) no-repeat center/100% 100%;
		/* height: 8rem;  8.02rem*/
		height: auto;
	}

	.video-one-section.best {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/best_back_01.jpg) no-repeat center/100% 100%;
		/* height: 7rem; 7.02rem */
		height: auto;

	}

	.video-one-section .title {
		background: url(../img/m/video_title.png) no-repeat center/100%;
		height: 1.31rem;
		margin: 0.3rem 0.5rem 0rem;
		padding-top: 0.8rem;
		text-align: center;
		font-weight: 800;
		font-size: 0.5rem;
		color: #fff;

	}

	.video-one-section .desc {
		font-size: 0.24rem;
		color: #999;
		margin: 0 0.5rem;
		line-height: 1.7;
	}

	.video-one-section .swiper-wrap {
		position: relative;
		/* width: 50%; */
		margin: 0.5rem auto 0;
	}

	.video-one-section .video-swiper {
		height: 2.5rem;
		width: 100%;
	}

	.video-one-section .video-swiper .swiper-slide {
		align-items: center;
		width: 5rem;
	}

	.video-one-section .video-swiper .swiper-slide img {
		width: 100%;
		display: block;
	}

	.video-one-section .video-swiper .swiper-slide .myVideo {
		width: 100%;
		display: block;
	}

	/* .video-one-section .video-swiper .swiper-slide-active, .video-one-section .video-swiper.swiper-slide-duplicate-active{
      transform: scale(1);
   } */

	/* .video-one-section .video-swiper .swiper-slide-active{
       z-index: 999 !important;
   } */
	.core-section {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/video_back_02.jpg) no-repeat center/100% 100%;
		/* height: 15rem;  15.02rem*/
		height: auto;
	}

	.core-section .title-section {
		/* width: 2.4rem; */
		margin: 0.5rem 0.5rem 0.7rem;

	}

	.core-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		line-height: 1;
	}

	.core-section .title-section h2 .title-line {
		position: absolute;
		right: 0;
		bottom: 0.12rem;
		font-size: 0.18rem;
		white-space: nowrap;
		transform: translateX(90%);
	}

	.core-section .core-items {
		margin: 0 0.5rem;
		flex-wrap: wrap;
	}

	.core-section .core-items li {
		width: 3.1rem;
		margin-bottom: 0.3rem;
	}

	.core-section .core-items li .pic {
		width: 100%;
		height: 3.51rem;
		object-fit: cover;
		border-radius: 0.2rem;
	}

	.core-section .core-items li h4 {
		font-weight: 800;
		font-size: 0.28rem;
		color: #FFFFFF;
		margin: 0.3rem 0 0.1rem;
		text-align: left;
	}

	.core-section .core-items li h5 {
		font-size: 0.22rem;
		color: #999;
		line-height: 1.7;
	}

	.fun-section {
		width: 100%;
		overflow: hidden;
		background: none;
		height: auto;
	}

	.fun-section.w168 {
		background: none;
		height: auto;
	}

	.fun-section.best {
		background: none;
		height: auto;
	}

	.fun-section .wrap {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		margin: 0;
	}

	.fun-section .title-section {
		/* width: 3.5rem; */
		padding-bottom: 0.3rem;
		margin-bottom: 0;
		padding-top: 0.5rem;
	}

	.fun-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		/* line-height: 1; */
	}

	.fun-section .left {
		background: url(../img/m/video_back_03.jpg) no-repeat center/100% 100%;
		/* height: 7.7rem;  7.72rem*/
		height: auto;
		padding: 0 0.5rem;
		width: auto;
	}

	.fun-section.w168 .left {
		background: url(../img/m/w168_back_02.jpg) no-repeat center/100% 100%;
		/* height: 10rem;  10.02rem*/
		height: auto;
		padding: 0 0.5rem;
	}

	.fun-section.best .left {
		background: url(../img/m/best_back_02.jpg) no-repeat center/100% 100%;
		/* height: 10.0rem;  10.02rem*/
		height: auto;
		padding: 0 0.5rem;
	}

	.fun-section .title-section h2 .title-line {
		position: absolute;
		right: 0;
		bottom: 0.12rem;
		font-size: .18rem;
		white-space: nowrap;
		transform: translateX(90%);
	}

	.fun-section .fun-items {
		width: 100%;
	}

	.fun-section .fun-items li {
		display: flex;
		align-items: center;
		margin-bottom: 0.5rem;
	}

	.fun-section .fun-items li .pic {
		width: 0.8rem;
	}

	.fun-section .fun-items li .info {
		margin-left: 0.2rem;
	}

	.fun-section .fun-items li .info h4 {
		font-weight: 800;
		font-size: 0.26rem;
		color: #FFFFFF;
		margin-bottom: 0.1rem;
	}

	.fun-section .fun-items li .info h5 {
		font-size: 0.22rem;
		color: #999;
		margin-bottom: 0.05rem;
	}

	.fun-section .main-pic-wrap {
		background: url(../img/m/video_back_04.jpg) no-repeat center/100% 6.6rem;
		height: 6.6rem;
		padding: 0 0.5rem 0rem;
		box-sizing: border-box;
		width: 100%;
	}

	.fun-section.w168 .main-pic-wrap {
		background: url(../img/m/w168_back_03.jpg) no-repeat center/100% 6.6rem;
		height: 6.6rem;
		padding: 0 0.5rem 0rem;
		box-sizing: border-box;
	}

	.fun-section .main-pic-wrap .main-pic {
		margin-top: 0 !important;
	}

	.fun-section.best .main-pic-wrap {
		background: url(../img/m/best_back_03.jpg) no-repeat center/100% 6.6rem;
		height: 6.6rem;
		padding: 0 0.5rem 0rem;
		box-sizing: border-box;
	}

	.fun-section .main-pic {
		width: 100%;
	}

	/*联系我们*/
	.contact-one-section {
		width: 100%;
		background: url(../img/m/contact_back_01.jpg) no-repeat center/100% 7.51rem;
		height: 7.51rem;
	}

	.contact-one-section .wrap {
		top: -3.5rem;
		position: absolute;
		width: 7.5rem;
	}

	.contact-one-section .title-section {
		margin-left: 0.5rem;

	}

	.contact-one-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		/* width: 2.5rem; */
	}

	.contact-one-section .title-section h2 .title-line {
		position: absolute;
		right: 0;
		bottom: 12px;
		font-size: .18rem;
		transform: translateX(90%);
		white-space: nowrap;
	}

	.contact-one-section .title-section h3 {
		font-size: 0.24rem;
		color: #666666;
		margin: 0.3rem 0 0.6rem;
	}

	.contact-one-section .map {
		margin: 0 0.5rem;
		border-radius: 0.2rem;
		overflow: hidden;
		width: 6.5rem;
	}

	.contact-one-section .map #map {
		width: 100%;
		height: 4rem !important;
	}

	.contact-one-section .address-section {
		margin: 0.5rem auto;
		display: block;
	}

	.contact-one-section .address-section li {
		width: 100%;
		font-size: 0.22rem;
		color: #FFFFFF;
		margin-bottom: 0.4rem;
		display: block;
		text-align: center;
	}

	.contact-one-section .address-section li h5 {
		color: #999;
	}

	.contact-two-section {
		width: 100%;
		background: url(../img/m/contact_back_02.jpg) no-repeat center/100% 12.81rem;
		height: 12.79rem;
	}

	.contact-two-section .title-section {
		padding-top: 0.5rem;
		margin-left: 0.5rem;
		position: relative;
	}

	.contact-two-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		/* width: 5rem; */
	}

	.contact-two-section .title-section h2 .title-line {
		position: absolute;
		right: 0;
		bottom: 12px;
		font-size: .18rem;
		white-space: nowrap;
		transform: translateX(90%);
	}

	.contact-two-section .title-section h3 {
		font-size: 0.24rem;
		color: #666666;
		margin: 0.3rem 0 0.6rem;
	}


	.contact-two-section .input-section {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		margin: 0px 0.5rem;
	}

	.contact-two-section .input-section li {
		border-radius: 0.2rem;
		border: 0.02rem solid rgba(255, 255, 255, .5);
		padding: 0.3rem;
		box-sizing: border-box;
		width: 100%;
		margin-right: 0;
		margin-bottom: 0.3rem;
		display: flex;
		align-items: center;
	}


	.contact-two-section .input-section li .title {
		font-size: 0.24rem;
		color: #FFFFFF;
		min-width: 1.2rem;
	}

	.contact-two-section .input-section li input {
		height: 0.4rem;
		font-size: 0.24rem;
		color: #fff;
		flex: 1;
	}

	.contact-two-section .input-section li.type {
		justify-content: space-between;
		position: relative;
		height: 1rem;
	}

	.contact-two-section .input-section li.textarea {
		align-items: flex-start;
		width: 100%;
		padding: 0.2rem 0.3rem;
	}

	.contact-two-section .input-section li.textarea .title {
		width: 2.4rem;
	}

	.contact-two-section .input-section li textarea {
		margin-top: 0.03rem;
		color: #fff;
		width: 100%;
		height: 1.5rem;
		font-size: 0.24rem;
	}

	.contact-two-section .input-section li.btn {
		background: #2ADDC9;
		text-align: center;
		color: #333333;
		height: 1.2rem;
		font-size: 0.28rem;
		justify-content: center;
	}

	.contact-two-section .input-section li .arrow {
		width: 0.15rem;
	}

	.contact-two-section .input-section li .dorp-down-types {
		position: absolute;
		left: 0;
		top: 1.1rem;
		padding: 0.2rem;
		width: 100%;
		background: #06070a;
		border-radius: 0.2rem;
		padding: 0 0.3rem;
		box-sizing: border-box;
		border: 0.01rem solid rgba(255, 255, 255, .5);
	}

	.contact-two-section .input-section li .dorp-down-type {
		padding: 0.3rem;
		color: #fff;
		text-align: center;
		font-size: 0.24rem;
		border-bottom: 0.01rem solid rgba(255, 255, 255, .5);
	}

	.contact-two-section .input-section li .dorp-down-type:last-child {
		border-bottom: none;
	}

	/* 商业合作 */
	.buss-one-section {
		width: 100%;
		background: url(../img/m/buss_back_01.jpg) no-repeat center/100% 100%;
		/* height: 8.03rem; 8.05rem */
		height: auto;
	}

	.buss-one-section .title-section {
		padding-top: 0.5rem;
		margin-left: 0;
		position: relative;
		width: auto;
	}

	.buss-one-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		/* width: 4rem; */
	}

	.buss-one-section .title-section h2 .title-line {
		position: absolute;
		right: 0;
		bottom: 12px;
		font-size: .18rem;
		white-space: nowrap;
		transform: translateX(90%);
	}

	.buss-one-section .title-section h3 {
		font-size: 0.26rem;
		color: #999;
		margin: 0.4rem 0 0.4rem;
		line-height: 1.7;
	}

	.buss-one-section .wrap {
		display: block;
		align-items: center;
		justify-content: space-between;
		margin: 0 0.5rem;
		padding: 0 0;

	}

	.buss-one-section .wrap .pic {
		width: 100%;
	}

	.buss-two-section {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/buss_back_02.jpg) no-repeat center/100% 100%;
		/* height: 9.98rem;  10rem*/
		height: auto;
	}

	.buss-two-section .wrap {
		margin: 0;
		background: none;
		padding: 0.5rem 0.5rem 0;
	}

	.buss-two-section .title-section {

		text-align: center;

	}

	.buss-two-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		line-height: 1;
	}

	.buss-two-section .title-section h2 .title-line {
		position: absolute;
		left: 50%;
		transform: translateX(-20%);
		bottom: -0.15rem;
		width: 2.02rem;
	}

	.buss-two-section .core-items {
		margin: 0.5rem 0 0;
		display: block;
		align-items: center;
		justify-content: space-between;
	}

	.buss-two-section .core-items li {
		width: auto;
		text-align: center;
		display: flex;
		align-items: center;
		margin-bottom: 0.5rem;
	}

	.buss-two-section .core-items li .pic {
		width: 1rem;
		height: 1rem;
		margin-right: .3rem;
	}

	.buss-two-section .core-items li h4 {
		font-weight: 800;
		font-size: 0.26rem;
		color: #FFFFFF;
		margin: 0;
		text-align: left;
		margin: 0.05rem 0 0.1rem;
	}

	.buss-two-section .core-items li h5 {
		font-size: 0.24rem;
		color: #999;
		line-height: 1.7;
	}


	.buss-three-section {
		width: 100%;
		overflow: hidden;
		background: url(../img/m/buss_back_03.jpg) no-repeat center/100% 100%;
		/* height: 10.86rem;  10.88rem*/
		height: auto;
	}

	.buss-three-section .title-section {
		margin: 0rem 0.5rem 0.3rem;
		text-align: center;
		padding-top: 0.5rem;

	}

	.buss-three-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		line-height: 1;
	}

	.buss-three-section .title-section h2 .title-line {
		position: absolute;
		left: 50%;
		transform: translateX(-20%);
		bottom: -0.15rem;
		width: 1.82rem;
	}

	.buss-three-section .core-items {
		margin: 0.5rem 0.5rem 0;
		display: block;
		align-items: center;
		justify-content: space-between;
	}

	.buss-three-section .core-items li {
		width: auto;
		text-align: left;
		height: auto;
		display: flex;
		align-items: center;
		margin-bottom: 0.5rem;
	}

	.buss-three-section .core-items li .pic {
		width: 1rem;
		height: 1rem;
		margin-right: 0.3rem;
	}

	.buss-three-section .core-items li h4 {
		font-weight: 800;
		font-size: 0.26rem;
		color: #FFFFFF;
		margin: 0;
		text-align: left;
		margin: 0.05rem 0 0.1rem;
	}

	.buss-three-section .core-items li h5 {
		font-size: 0.24rem;
		color: #999;
		line-height: 1.7;
		text-align: left;
	}



	.buss-four-section {
		width: 100%;
		background: url(../img/m/buss_back_04.jpg) no-repeat center/100% 11.42rem;
		height: 11.4rem;
	}

	.buss-four-section .title-section {
		padding-top: 0rem;
		margin-left: 0.5rem;
		position: relative;
	}

	.buss-four-section .title-section h2 {
		font-size: 0.5rem;
		color: #fff;
		font-weight: bold;
		position: relative;
		/* width: 3.3rem; */
	}

	.buss-four-section .title-section h2 .title-line {
		position: absolute;
		right: 0;
		bottom: 12px;
		font-size: 0.18rem;
		white-space: nowrap;
		transform: translateX(90%);
	}

	.buss-four-section .title-section h3 {
		font-size: 0.24rem;
		color: #666666;
		margin: 0.3rem 0 0.6rem;
	}


	.buss-four-section .input-section {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		margin: 0px 0.5rem;
	}

	.buss-four-section .input-section li {
		border-radius: 0.2rem;
		border: 0.02rem solid rgba(255, 255, 255, .5);
		padding: 0.3rem;
		box-sizing: border-box;
		width: 100%;
		margin-right: 0;
		margin-bottom: 0;
		display: flex;
		align-items: center;
		margin-bottom: 0.3rem;
	}


	.buss-four-section .input-section li .title {
		font-size: 0.26rem;
		color: #FFFFFF;
		min-width: 80px;
	}

	.buss-four-section .input-section li input {
		height: 0.4rem;
		font-size: 0.26rem;
		color: #fff;
		flex: 1;
	}

	.buss-four-section .input-section li.textarea {
		width: 100%;
		padding: 0.3rem;
	}

	.buss-four-section .input-section li.textarea .title {
		width: 0.4rem;
	}

	.buss-four-section .input-section li textarea {
		margin-top: 0.03rem;
		color: #fff;
		width: 100%;
		height: 1.5rem;
		font-size: 0.26rem;

	}

	.buss-four-section .input-section li.btn {
		background: #2ADDC9;
		text-align: center;
		color: #333333;
		height: 1.2rem;
		font-size: 0.30rem;
		justify-content: center;
		width: 100%;
		margin-top: 0.3rem;
	}

	/* 移动端关于我们 */
	.m-banner-section {
		display: block;
		height: 10.8rem;
		padding-top: 1.1rem;
	}

	.m-banner-section img {
		width: 100%;
	}

	.about-container {
		padding: 0;
		background-color: #fff;

	}

	.about-container .intro {
		padding: 0;
		flex-direction: column;
	}

	.about-container .intro .about-left {
		padding: .55rem .3rem 0;
		gap: .5rem;

	}

	.about-container .intro .about-left h2 {
		font-size: .4rem;
	}

	.about-container .intro .about-left h2.mobileEn {
		font-size: .26rem;
	}

	.about-container .intro .about-left .about-desc {
		width: 100%;
		font-size: .18rem;
		line-height: .32rem;
		margin-bottom: .32rem;
		white-space: pre-line;
	}

	.about-container .intro .about-left .about-desc.mobileEn {
		font-size: .14rem;
		white-space: pre;
	}

	.about-container .intro .about-right {
		width: 100%;
		padding: .28rem .3rem;
		border-radius: 0;
		background-color: #FAFBFE;

	}

	.about-container .intro .about-right .about-data-list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: .1rem;
	}

	.about-data-item {
		width: 49%;
		height: 1.8rem;
		padding-left: .64rem;
		border-radius: .3rem;
		gap: .3rem;
		background-color: #fff;
	}

	.data-icon {
		width: .6rem;
	}

	.data-icon img {
		width: .6rem;
	}

	.data-num {
		font-size: .4rem;
	}

	.data-tip {
		font-size: .18rem;
	}

	.mission-vision {
		margin: .28rem 0 0 0;
		padding: .9rem .3rem;
		gap: .5rem;
	}

	.mission-card,
	.vision-card {
		border-radius: .3rem;
		padding: 0;
		flex-direction: column;
	}

	.vision-card {
		flex-direction: column-reverse;
	}

	.card-main {
		padding: .5rem .3rem .4rem;
		gap: .5rem;
	}

	.card-img {
		width: 100%;
	}

	.card-main .card-icon {
		width: 1.01rem;
		height: 1.01rem;
	}

	.card-text h4 {
		font-size: .4rem;
		line-height: 1.2;
	}

	.card-text p {
		padding: 0;
		font-size: .18rem;
	}

	.card-text p.mobileEn {
		font-size: .14rem;
	}

	.tech-section {
		padding: 0 .3rem .9rem;
	}

	.tech-title h2 {
		font-size: .38rem;
	}

	.tech-title .title {
		font-size: .18rem;
		padding: .3rem 0;
	}

	.tech-title .divider {
		display: none;
	}

	.tech-section .tech-content {
		margin: 0;
		height: auto;
		background-image: none;
		gap: .3rem;
		align-items: flex-start;
	}

	.tech-section .tech-content .tech-item {
		gap: 0;
	}

	.tech-section .tech-content .tech-item .num {
		font-size: .4rem;
	}

	.tech-section .tech-content .tech-item .i-icon {
		width: 1rem;
		height: 1rem;
		margin: 0 .2rem 0 .4rem;
	}

	.tech-section .tech-content .tech-item .bar {
		flex: 1;
		height: 1rem;
		padding: 0 0 0 .5rem;
		background: url(../img/about/bar-h5.png) no-repeat left top / 100% 100%;
	}

	.tech-section .tech-content .bar .title {
		font-size: .22rem;
		padding-bottom: .1rem;
	}

	.tech-section .tech-content .bar .title.mobileEn {
		font-size: .18rem;
	}

	.tech-section .tech-content .bar .sub-title {
		font-size: .16rem;
	}

	.tech-section .tech-content .bar .sub-title.mobileEn {
		font-size: .14rem;
	}

	.promise-bar {
		height: 4rem;
		padding: 0 .3rem;
	}

	.promise-wrap {
		height: 4rem;
		background: url(/img/about/bottom-section-bg-h5.png) no-repeat center / 100% 4rem;
		padding: .4rem .4rem;
		flex-direction: column;
		align-items: flex-start;
	}

	.promise-left {
		width: 100%;
	}

	.promise-left span {
		font-size: .18rem;
		margin-bottom: .1rem;
	}

	.promise-left h3 {
		font-size: .32rem;
		line-height: 1.4;
	}

	.promise-left h3.mobileEn {
		font-size: .26rem;
	}

	.promise-list {
		flex: none;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0;
		gap: .46rem 0;
	}

	.promise-item {
		width: 50%;
		gap: .2rem;
	}

	.promise-item .icon {
		width: .38rem;
	}

	.promise-item .icon img {
		width: 100%;
	}

	.promise-item .txt {
		font-size: .18rem;
	}

	.promise-item .txt .small {
		font-size: .14rem;
	}

	.tech-first-section,
	.tech-two-section,
	.tech-three-section,
	.tech-four-section {
		padding: 0 .3rem;
	}

	.tech-first-section {
		padding-top: .5rem;
		background-color: #FAFBFE;
	}

	.tech-two-section {
		padding-top: 1rem;
	}

	.tech-three-section {
		padding-top: .9rem;
	}

	.tech-four-section {
		display: none;
	}

	.advertisement {
		height: 3.7rem;
	}

	.tech-two-section .check {
		font-size: .18rem;
	}

	.m-tech-four-section {
		display: block;
		padding: .9rem .3rem 0;
	}

	.pd30 {
		padding: 0 .3rem;
	}

	.tech-three-section .section-title {
		flex-direction: column;
		align-items: flex-start;
	}

	.tech-three-section .section-title .sub-title {
		display: block;
		padding: .1rem 0 0;
	}

	.tech-data-list {
		padding: .4rem 0 .7rem 0;
		flex-wrap: wrap;
		gap: .1rem;
	}

	.tech-data-list .tech-data-item {
		width: 49%;
		height: 1.8rem;
		gap: .3rem;
		padding-left: .38rem;
		border-radius: .3rem;
		justify-content: flex-start;
		background-color: #fff;
	}

	.tech-data-item:not(:last-child)::after {
		display: none;
	}

	.tech-data-list .tech-data-item .tech-data-icon {
		min-width: .37rem;
		max-width: .6rem;
	}

	.tech-data-list .tech-data-item .tech-data-icon img {
		width: 100%;
	}

	.tech-data-list .tech-data-item .num {
		font-size: .24rem;
	}

	.tech-data-list .tech-data-item .desc {
		font-size: .18rem;
	}

	.product-main {
		display: none;
	}

	.m-product-main {
		width: 100%;
		padding: .4rem 0 0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: .1rem;
	}

	.m-product-main .product-img {
		width: 49%;
	}

	.m-product-main .product-img img {
		width: 100%;
	}

	.three-main {
		margin-top: .6rem;
		flex-direction: column;
		align-items: center;
	}

	.three-main .old-card {
		min-width: 80%;
		height: 4.62rem;
		padding: .4rem;
		border-radius: .2rem;
	}

	.three-main .old-card.en {
		width: 99%;
		height: 4.62rem;
		padding: .4rem;
	}

	.three-main .card-wrap {
		width: 100%;
		gap: .2rem;
	}

	.three-main .new-card {
		flex: 1;
		height: 4.62rem;
		padding: .4rem .2rem .4rem .4rem;
		border-radius: 7.5px;
	}

	.three-main .new-card.en {
		width: 2.6rem;
		height: 4.62rem;
	}

	.l-t {
		font-size: .22rem;
		line-height: 1.2;
	}

	.three-main .new-card .intro-list {
		gap: .16rem;
	}

	.three-main .new-card.en .intro-list {
		gap: .1rem;
	}

	.intro-i {
		gap: .2rem;
	}

	.intro-i .img-b {
		width: .5rem;
		height: .5rem;
		justify-content: center;
	}

	.intro-i .img-b img {
		width: 100%;
		height: 100%;
		justify-content: center;
	}

	.three-main .three-sub-img {
		width: 2.6rem;
	}

	.three-main .three-sub-img.en {
		width: 2.6rem;
		height: 4.62rem;
	}


	.three-main .old-card .intro-list {
		padding-top: .5rem;
		gap: .34rem;
	}

	.three-main .new-card .intro-list {
		padding-top: .3rem;
	}

	.three-main .old-card .intro-list .item-name {
		width: 25%;
		line-height: 1.2;
		font-size: .22rem;
	}

	.three-main .old-card.en .intro-list .item-name {
		width: 35%;
		padding-left: .2rem;
		line-height: 1.2;
		font-size: .22rem;
	}

	.three-main .new-card .intro-list .item-name {
		width: 100%;
		font-size: .22rem;
		line-height: 1.2;
	}

	.item-desc {
		width: 100%;
		font-size: .14rem;
		line-height: 1.2;
	}

	.three-main .upgrade {
		width: .34rem;
		height: .30rem;
	}

	.m-tech-four-section .step-list {
		padding-top: .4rem;
		display: flex;
		flex-direction: column;
		gap: .2rem;
	}

	.m-tech-four-section .step-list .step-item {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row;
	}

	.m-tech-four-section .step-list .step-item img {
		width: .34rem;
		height: .3rem;
		margin: 0 1.35rem 0 1rem;
	}

	.m-tech-four-section .step-list .step-item img.mobileEn {
		margin: 0 .68rem 0 .36rem;
	}

	.m-tech-four-section .step-list .step-item.reverse {
		flex-direction: row-reverse;
	}

	.m-tech-four-section .step-list .step-item.reverse img {
		margin: 0 1rem 0 1.35rem;
	}

	.m-tech-four-section .step-list .step-item.reverse img.mobileEn {
		margin: 0 .36rem 0 .68rem;
	}

	.m-tech-four-section .step-list .step-item .step-circle-box {
		justify-content: flex-start;
		margin-bottom: 0;
	}

	.step-circle-box .step-circle {
		width: 1rem;
		height: 1rem;
		font-size: .32rem;
	}

	.step-circle-box .step-divider {
		width: .43rem;
		height: .02rem;
		background-color: #0F4DC8;
	}

	.step-circle-box .step-title {
		font-size: .22rem;
		white-space: nowrap;
	}

	.step-circle-box .step-desc {
		flex: 1;
		font-size: .18rem;
		line-height: 1.2;
	}

	.step-desc p {
		font-size: .18rem;
		text-align: left;
	}



	.m-tech-four-section .sub-img {
		width: 100%;
		height: 3.99rem;
		margin: .4rem 0 1rem;
	}

	.technology-container .bottom-section .contact-text .t1 {
		width: 60%;
		margin-bottom: .3rem;
	}

	.product-container .tabs {
		padding: .4rem .3rem;
		gap: .3rem;
	}

	.product-container .tabs .tab {
		width: 2rem;
		height: .8rem;
		line-height: .8rem;
		font-size: .22rem;
	}

	.product-container .tabs .tab.en {
		width: 2.6rem;
	}

	.product-container .list-section {
		padding: 0 .3rem 1.33rem;
	}

	.product-container .list-section .class-item {
		padding: .62rem 0 0;
	}

	.list-section .product-list {
		margin-top: .4rem;
		gap: 1%;
	}

	.list-section .product-list .product-item {
		width: 32%;
		height: 2.34rem;
		margin-bottom: .16rem;
	}

	.list-section .product-list .product-item .name {
		font-size: .18rem;
		bottom: .2rem;
	}

	/* 服务领域 */
	.areas-container {
		padding: .9rem .3rem 0;
	}

	.areas-container .areas-section {
		padding: 0 0 1.3rem;
	}

	.areas-container .areas-section .section-title .title {
		font-size: .28rem;
	}

	.areas-container .areas-section .industry-list {
		margin-top: .55rem;
	}

	.areas-container .industry-item {
		width: 49%;
		height: 5.66rem;
		margin-bottom: .3rem;
		border-radius: .2rem;
	}

	.industry-item .image {
		height: 3.64rem;
	}

	.industry-item .industry-main {
		flex-direction: column;
		padding: 0 .15rem;
	}

	.industry-item .industry-main .icon {
		width: .78rem;
		height: .78rem;
		margin-top: -.39rem;
	}

	.industry-item .industry-main .industry-content {
		padding: .1rem 0 0 .39rem;
	}

	.industry-item .industry-main .industry-content h3 {
		font-size: .22rem;
		padding-bottom: .16rem;
	}

	.industry-item .industry-main .industry-content p {
		font-size: .18rem;
	}

	.bottom-section .contact-text .t1 {
		width: 60%;
	}

	/* 案例展示 */
	.project-container {
		padding: 0 .3rem;
	}

	.project-container .project-section {
		padding: .8rem 0;
	}

	.project-container .project-section .project-list {
		gap: .2rem;
		margin-top: .36rem;
	}

	.project-container .project-item {
		width: 100%;
		height: 1.8rem;
		padding: .15rem;
	}

	.project-container .project-item .img {
		width: 1.95rem;
		height: 100%;
	}

	.project-container .project-item .info {
		padding: 0 .2rem 0 .12rem;
		justify-content: center;
	}

	.project-container .project-item .info h2 {
		font-size: .26rem;
	}

	.project-container .project-item .info h2.mobileEn {
		font-size: .16rem;
		line-height: 1.4;
	}

	.project-container .project-item .info .tag {
		display: flex;
		align-items: flex-end;
		font-size: .2rem;
		gap: .15rem;
		line-height: 1.2;
	}

	.project-container .project-item .info .tag .time {
		font-size: .15rem;
		color: #808080;
	}

	.project-container .project-item .info .content {
		width: 100%;
		font-size: .13rem;
		margin-bottom: .2rem;
	}

	.project-container .project-item .info .content.mobileEn {
		width: 100%;
		font-size: .12rem;
		line-height: 1.2;
	}

	.pagination-section {
		margin-top: .7rem auto 0;
	}

	.pagination-section li {
		width: 1.15rem;
		height: .38rem;
		font-size: .16rem;
		border-radius: .08rem;
	}

	/* 联系我们 */
	.contact-container {
		padding: 0 .3rem;
	}

	.contact-container .info-section,
	.contact-container .input-section {
		padding: .5rem 0 0;
	}

	.info-list {
		margin-top: .4rem;
		flex-direction: column;
		gap: .2rem;
	}

	.info-list .info-item {
		width: 100%;
		height: 2rem;
		padding: .4rem;
		border-radius: .2rem;
	}

	.info-list .info-item .i-t {
		font-size: .22rem;
	}

	.info-list .info-item .i-d {
		font-size: .26rem;
		padding: .18rem 0 .15rem;
		line-height: 1.2;
	}

	.info-list .info-item .i-o {
		font-size: .18rem;
	}

	.consult-wrap {
		flex-direction: column;
		gap: .2rem;
		margin: .4rem 0 .85rem;
	}

	.form-card,
	.process-card {
		border-radius: .2rem;
		padding: .4rem .4rem .1rem .3rem;
	}

	.form-card {
		width: 100%;
	}

	.process-card {
		padding-bottom: 1rem;
	}

	.two-col {
		gap: .3rem;
	}

	.form-row {
		margin-bottom: .3rem;
	}

	.submit-btn {
		width: 1.4rem;
		height: .54rem;
		font-size: 20px;
		background: #FBFBFD;
		border-radius: .1rem;
		border: 1px solid #C5C6C9;
		font-size: .2rem;
		line-height: .52rem;
	}

	.form-item {
		gap: .1rem;
	}

	.label {
		padding-left: .1rem;
		font-size: .18rem;
	}

	.input {
		height: .5rem;
		font-size: .18rem;
		padding: 0 .2rem;
		border-radius: .1rem;
	}

	.textarea {
		min-height: 1.6rem;
		padding: .2rem;
		border-radius: .1rem;
		font-size: .16rem;
	}

	.process-title {
		font-size: .32rem;
	}

	.process-desc {
		font-size: .18rem;
		margin-bottom: .37rem;
	}

	.timeline.zh {
		gap: .7rem;
	}

	.timeline-item {
		gap: .3rem;
	}

	.timeline-item::after {
		left: .3rem;
		bottom: 100%;
		width: 1px;
		height: 1.2rem;
		background-color: #8DA9E2;
	}

	.timeline-icon {
		width: .6rem;
		height: .6rem;
	}

	.timeline-icon img {
		width: 100%;
		height: 100%;
	}

	.step-title {
		font-size: .22rem;

	}

	.step-desc {
		font-size: .18rem;
	}

	.details-banner .container {
		padding: 0 .3rem;
	}

	.details-section {
		padding: .68rem .3rem 3rem;
	}
}