.banner-swiper {
	position: relative;
	width: 100%;
	height: 100vh;
}

.banner-swiper .swiper-slide {
	width: 100%;
	height: 100%;
}

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

.banner-swiper .swiper-pagination {
	position: absolute;
	bottom: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.banner-swiper .swiper-pagination-bullet {
	width: 0.07rem;
	height: 0.07rem;
	background-color: #050f18;
	opacity: 0.7;
	transform: scale(1);
}

.banner-swiper .swiper-pagination-bullet-active {
	background: url(../images/icon_play03.png) no-repeat center;
	background-size: 100%;
	width: 0.13rem;
	height: 0.17rem;
}

.video_box {
	width: 100%;
	height: 5.2rem;
	position: relative;
}

.video_box .poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video_box .video_inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 2;
}

.video_box .video_inner .video_title {
	font-family: 'ali';
	font-size: 0.3rem;
	display: block;
	margin-bottom: 0.2rem;
	text-shadow: 0 0.02rem 0.04rem rgba(0, 0, 0, 0.5);
}

.video_box .video_inner .video_play {
	display: block;
	width: 0.62rem;
	height: 0.62rem;
	background: url(../images/btn_paly.png) no-repeat center;
	background-size: contain;
	margin: 0 auto 0.2rem;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.video_box .video_inner .video_click {
	display: inline-block;
	font-size: 0.16rem;
	letter-spacing: 0.01rem;
	cursor: pointer;
	transition: opacity 0.3s ease;
	border-bottom: solid 0.01rem #fff;
}

.pro_inner {
	width: 100%;
	flex-direction: column;
	height: 2.6rem;
}

.pro_inner .pro_tit {
	font-family: 'siyuanM';
	font-size: 0.34rem;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0.01rem;
	color: #171d29;
	height: 0.4rem;
}

.pro_inner .pro_entit {
	font-family: 'siyuanM';
	font-size: 0.24rem;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0.01rem;
	color: rgba(198, 207, 226, 0.6);
	position: relative;
	height: 0.3rem;
}

.pro_inner .pro_entit::before {
	position: absolute;
	content: '';
	left: 50%;
	top: 70%;
	transform: translate(-50%, -50%);
	background: url(../images/icon_play02.png) no-repeat center;
	background-size: 0.13rem 0.17rem;
	width: 0.13rem;
	height: 0.17rem;
}

.pro_inner .pro_desc {
	font-size: 0.2rem;
	color: #565f72;
	height: 0.5rem;
}

.product_box {
	width: 100%;
	max-width: 14rem;
	margin: 0 auto;
}

.product_box .pro_list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.3rem;
}

.product_box .pro_list .pro_item {
	width: 100%;
	height: 3rem;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
}

.product_box .pro_list .pro_item:hover {
	transform: translateY(-0.05rem);
	box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
}

.product_box .pro_list .pro_item .pro_bg {
	width: 100%;
	height: 100%;
}
.product_box .pro_list .pro_item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(67, 141, 253, 0.1) 0%, rgba(3, 61, 214, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.product_box .pro_list .pro_item:hover::before {
	opacity: 1;
}

.product_box .pro_list .pro_cont {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	left: 0.65rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	transition: all 0.3s ease;
}

.product_box .pro_list .pro_cont .pro_name {
	display: flex;
	align-items: center;
	font-family: 'ali';
	font-size: 0.28rem;
	letter-spacing: 0.01rem;
	color: #033dd6;
	height: 0.5rem;
}

.product_box .pro_list .pro_cont .pro_name img {
	margin-right: 0.05rem;
}

.product_box .pro_list .pro_cont .pro_tit {
	font-size: 0.2rem;
	font-family: 'siyuanM';
	height: 0.32rem;
	margin-top: 0.2rem;
	color: #171d29;
}

.product_box .pro_list .pro_cont .pro_desc {
	font-size: 0.16rem;
	color: #565f72;
	line-height: .22rem;
	margin-bottom: 0.2rem;
}

.product_box .pro_list .pro_cont .btnMore,
.aboutBox .aboutInner .btnMore{
	width: 1.28rem;
	height: 0.4rem;
	background: #438dfd;
	color: #fff;
	font-size: 0.14rem;
	letter-spacing: 0.01rem;
	cursor: pointer;
	transition: all 0.4s ease;
	border: none;
	box-shadow: 0 0.02rem 0.08rem rgba(67, 141, 253, 0.3);
	transform: scale(1);
}

.product_box .pro_list .pro_cont .btnMore i,
.aboutBox .aboutInner .btnMore i{
	transition: all 0.4s ease;
	display: inline-block;
	position: relative;
}
.product_box .pro_list .pro_cont .btnMore i::after,
.aboutBox .aboutInner .btnMore i::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../images/icon_play04.png) no-repeat center;
	background-size: 0.13rem 0.17rem;
	width: 0.13rem;
	height: 0.17rem;
	opacity: 0;
}
.product_box .pro_list .pro_cont .btnMore:hover,
.aboutBox .aboutInner .btnMore:hover {
	width: 1.5rem;
	background: #438dfd;
	box-shadow: 0 0.05rem 0.15rem rgba(67, 141, 253, 0.5);
	transform: scale(1.02);
}
.product_box .pro_list .pro_cont .btnMore:hover i,
.aboutBox .aboutInner .btnMore:hover i{
	padding-right: 0.2rem;
}
.product_box .pro_list .pro_cont .btnMore:hover i::after,
.aboutBox .aboutInner .btnMore:hover i::after {
	opacity: 1;
}

.product_box .pro_list .pro_item:hover .btnMore {
	animation: buttonPulse 0.6s ease;
}

@keyframes buttonPulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1.02); }
}

.plan_box {
	width: 100%;
	max-width: 14rem;
	margin: 0 auto;
}

.plan_box .plan_list {
	width: 100%;
	display: flex;
	gap: 0.24rem;
	align-items: center;
	overflow: hidden;
}

.plan_box .plan_list .planItemBox {
	width: 100%;
	height: 6.2rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	flex: 1 1 0;
	min-width: 0;
	transition: all .5s;
}

.plan_box .plan_list .planItemBox.active {
	flex: 0 0 5.65rem;
	height: 6.2rem;
}

.plan_box .plan_list .planItemBox.active .planItem {
	height: 6.2rem;
}

.plan_box .plan_list .planItemBox.active .planItem .plan_name {
	display: none;
}

.plan_box .plan_list .planItemBox.active .planItem .plan_cont {
	height: 2.6rem;
}

.plan_box .plan_list .planItem {
	width: 100%;
	height: 5.5rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
}

.plan_box .plan_list .planItem .plan_name {
	position: absolute;
	height: 1rem;
	background-color: rgba(246, 249, 255, 0.3);
	left: 0;
	bottom: 0;
	font-size: 0.24rem;
	font-family: 'ali';
	color: #fff;
	width: 100%;
	z-index: 10;
}

.plan_box .plan_list .planItem.active,
.plan_box .plan_list .planItem:hover {
	width: 100%;
	height: 6.2rem;
}

.plan_box .plan_list .planItem .bg {
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition: all 0.3s;
	position: relative;
}

.plan_box .plan_list .planItemBox:nth-child(1) .planItem .bg img {
	width: 5.65rem;
	height: 6.2rem;
	/* object-fit: cover; */
	position: absolute;
	left: 0;
	top:50%;
	transform: translateY(-50%);
}
.plan_box .plan_list .planItemBox:nth-child(2) .planItem .bg img,
.plan_box .plan_list .planItemBox:nth-child(3) .planItem .bg img {
	width: 5.65rem;
	height: 6.2rem;
	/* object-fit: cover; */
	position: absolute;
	left: 50%;
	top:50%;
	transform: translate(-50%,-50%);
}
.plan_box .plan_list .planItemBox:nth-child(4) .planItem .bg img {
	width: 5.65rem;
	height: 6.2rem;
	/* object-fit: cover; */
	position: absolute;
	right: 0;
	top:50%;
	transform: translateY(-50%);
}

.plan_box .plan_list .planItem .plan_cont {
	background: rgba(23, 29, 41, 0.7);
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 0 0.45rem;
	align-items: flex-start;
	justify-content: center;
	z-index: 10;
}

.plan_box .plan_list .planItem .plan_cont .tit-1 {
	font-family: 'ali';
	font-size: 0.28rem;
	color: #fff;
	height: 0.4rem;
	margin-bottom: 0.15rem;
}

.plan_box .plan_list .planItem .plan_cont .tit-1 img {
	margin-right: 0.12rem;
}

.plan_box .plan_list .planItem .plan_cont .desc {
	font-size: 0.16rem;
	color: #f6f9ff;
	line-height: 0.3rem;
	max-height: 0.6rem;
	margin-bottom: 0.3rem;
}

.plan_box .plan_list .planItem .plan_cont .btnMore {
	width: 1.44rem;
	height: 0.4rem;
	background-color: #438dfd;
	color: #fff;
	font-size: 0.14rem;
	letter-spacing: 0.01rem;
	cursor: pointer;
	transition: all 0.3s;
}

.plan_box .plan_list .planItem .plan_cont .btnMore i {
	background: url(../images/icon_play04.png) no-repeat right center;
	background-size: 0.13rem 0.17rem;
	padding-right: 0.2rem;
}

.advantBox {
	width: 100%;
	height: 4.6rem;
	margin-top: 0.6rem;
	background: url(../images/ad_bg.jpg?v=001) no-repeat center center;
	background-size: 19.2rem 4.6rem;
}

.advantBox .ad_inner {
	max-width: 14rem;
	margin: 0 auto;
	width: 100%;
	color: #fff;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
}

.advantBox .ad_inner .ad_tit {
	font-family: 'ali';
	font-size: 0.28rem;
	margin-bottom: 0.35rem;
}

.advantBox .ad_inner .ad_desc {
	font-size: 0.16rem;
	line-height: 0.3rem;
	margin-bottom: 0.25rem;
}

.advantBox .ad_inner .keyList {
	color: #438dfd;
	font-size: 0.16rem;
}
.advantBox .ad_inner .keyList .keyItem{
	color: #438dfd;
}
.advantBox .ad_inner .keyList {
	width: 6.3rem;
	display: flex;
	align-items: center;
	height: 0.3rem;
}

.advantBox .ad_inner .keyList img {
	margin-right: 0.08rem;
}

.advantBox .ad_inner .keyList .line {
	margin: 0 0.3rem;
	width: 0.03rem;
	height: 0.13rem;
	opacity: 0.5;
	background: #50565e;
}

.newsBox {
	background-color: #e7f0f9;
	width: 100%;
}

.newsBox .newsWarper {
	max-width: 14rem;
	margin: 0 auto;
}

.newsBox .newsBottom {
	width: 100%;
	display: flex;
}

.newsBox .newsBottom .newsImg {
	width: 4.65rem;
	height: 5.38rem;
	overflow: hidden;
}

.newsBox .newsBottom .newsImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.newsBox .newsBottom .newsList {
	flex: 1;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.newsBox .newsBottom .newsli {
	width: calc(100% - 0.02rem);
	height: 2.69rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	overflow: hidden;
	padding: 0 0.3rem;
	background: #f4f6fd;
	border: solid 0.01rem #d8eafc;
	margin: 0.01rem;
	cursor: pointer;
	position: relative;
}

.newsBox .newsBottom .newsli:hover {
	box-shadow: 0.02rem -0.01rem 0.1rem 0 rgba(2, 61, 214, 0.25);
}

.newsBox .newsBottom .newsli:hover .tit-1 {
	color: #033dd6;
	font-weight: 550;
}

.newsBox .newsBottom .newsli:hover .btnMore {
	right: 0.25rem;
}

.newsBox .newsBottom .newsli .tit-1 {
	font-size: 0.2rem;
	line-height: 0.32rem;
	color: #171d29;
	height: 0.32rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.newsBox .newsBottom .newsli .desc {
	font-size: 0.16rem;
	color: #565f72;
	line-height: 0.24rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	margin: 0.2rem 0;
}

.newsBox .newsBottom .newsli .time {
	font-size: 0.16rem;
	color: #565f72;
}

.newsBox .newsBottom .newsli .btnMore {
	width: 1.44rem;
	height: 0.4rem;
	border: solid 0.01rem #023dd6;
	color: #033dd6;
	font-size: 0.14rem;
	letter-spacing: 0.01rem;
	cursor: pointer;
	position: absolute;
	bottom: 0.25rem;
	right: -1.8rem;
	transition: all 0.3s;
}

.newsBox .newsBottom .newsli .btnMore i {
	background: url(../images/icon_play02.png) no-repeat right center;
	background-size: 0.13rem 0.17rem;
	padding-right: 0.2rem;
}

.newsBox .newsEnd {
	width: 100%;
	height: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: #393946;
	font-size: 0.14rem;
}

.newsBox .newsEnd a {
	color: #393946;
	cursor: pointer;
}

.aboutBox {
	background: url(../images/aboutBg.jpg?v=001) no-repeat center center;
	background-size: 19.2rem 8.96rem;
	width: 100%;
	height: 8.96rem;
}

.aboutBox .aboutWarper {
	max-width: 14rem;
	margin: 0 auto;
	width: 100%;
}

.aboutBox .pro_inner .pro_tit {
	color: #fff;
}

.aboutBox .pro_inner .pro_entit {
	color: rgba(152, 180, 221, 0.6);
}

.aboutBox .pro_inner .pro_entit::before {
	background: url(../images/icon_play01.png) no-repeat center;
	background-size: 0.13rem 0.17rem;
}

.aboutBox .pro_inner .pro_desc {
	color: rgba(152, 180, 221, 0.6);
}

.aboutBox .aboutInner {
	width: 100%;
	flex-direction: column;
}

.aboutBox .aboutInner .name {
	color: #fff;
	font-size: 0.28rem;
	font-family: 'ali';
	line-height: 0.6rem;
}

.aboutBox .aboutInner .desc {
	font-size: 0.16rem;
	color: #fff;
	line-height: 0.3rem;
	padding: 0.25rem 0.65rem;
	text-align: center;
}
.landBox{
	padding-bottom: 0.9rem;
}
.landBox .landInner {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.partner-swiper-row1,
.partner-swiper-row2 {
	width: 100%;
	padding: 0.1rem 0;
	overflow: hidden;
}

.partner-swiper-row1 .swiper-wrapper,
.partner-swiper-row2 .swiper-wrapper {
	transition-timing-function: linear;
}

.partner-swiper-row1:hover .swiper-wrapper,
.partner-swiper-row2:hover .swiper-wrapper {
	transition-duration: 300ms;
}

.partner-swiper-row1 .swiper-slide,
.partner-swiper-row2 .swiper-slide {
	width: auto;
	height: auto;
	flex-shrink: 0;
}

.landBox .landItem {
	width: 100%;
	height: 1.35rem;
	background-color: #ffffff;
	border: solid 0.01rem #c6cfe1;
	margin: 0.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.partner-swiper-row1 .landItem,
.partner-swiper-row2 .landItem {
	margin: 0;
	border-radius: 0.05rem;
	box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.1);
	width: 1.8rem;
	height: 1.35rem;
}

.partner-swiper-row1 .landItem:hover,
.partner-swiper-row2 .landItem:hover {
	transform: translateY(-0.05rem);
	box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.15);
}

.landBox .landItem img {
	max-width: 90%;
	max-height: 90%;
	object-fit: cover;
}

.xcbanner {
	width: 100%;
	height: 6.5rem;
	position: relative;
}

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

.xcbanner .bannerCont {
	position: absolute;
	width: 100%;
	max-width: 14rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

.xcbanner .bannerCont .title {
	font-family: 'ali';
	font-size: 0.39rem;
	line-height: 0.38rem;
	letter-spacing: 0.02rem;
	color: #0d56c1;
	line-height: 0.55rem;
	font-weight: bold;
}

.mainInner {
	width: 100%;
	max-width: 14rem;
	margin: 0 auto;
}

.mainInnerBox {
	width: 100%;
	display: flex;
	padding: 0.9rem 0;
}

.mainInnerBox .leftNav {
	width: 2.8rem;
	position: sticky;
	top: 0.2rem;
}

.mainInnerBox .leftNav .levelBox {
	width: 2.5rem;
	background-color: #e7f0f9;
	padding: 0 0.05rem;
}

.mainInnerBox .leftNav .levelTit {
	font-size: 0.18rem;
	color: #171d29;
	height: 0.7rem;
	border-bottom: solid 0.01rem #d8e1eb;
	flex-direction: column;
	cursor: pointer;
}

.mainInnerBox .leftNav .levelTit img {
	margin-top: 0.1rem;
	display: none;
	transition: all 0.3s;
}

.mainInnerBox .leftNav .levelTit.active,
.mainInnerBox .leftNav .levelTit:hover {
	height: 0.9rem;
	background-color: #0d56c1;
	box-shadow: 0 0.02rem 0.1rem 0 rgba(2, 61, 214, 0.25);
	width: 2.6rem;
	margin: -0.1rem 0 0 -0.1rem;
	color: #fff;
}

.mainInnerBox .leftNav .levelTit.active img,
.mainInnerBox .leftNav .levelTit:hover img {
	display: block;
}

.mainInnerBox .rightContent {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.25rem;
}

.mainInnerBox .rightContent .honorImg {
	width: 100%;
	background: #fff;
	height: 3.58rem;
	position: relative;
}
.mainInnerBox .rightContent .honorImg .imgT{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.mainInnerBox .rightContent .honorImg .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: all 0.3s;
}

.mainInnerBox .rightContent .honorImg .fd {
	position: absolute;
	right: 0;
	bottom: 0;
}

.mainInnerBox .rightContent .title {
	height: 0.58rem;
	background-color: #ffffff;
	border: solid 0.01rem #e7f0f9;
	font-size: 0.16rem;
	width: 100%;
	display: block;
	padding: 0 0.1rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	line-height: 0.58rem;
	color: #565f72;
}

.mainInnerBox .rightContent .honor {
	cursor: pointer;
	overflow: hidden;
}

.mainInnerBox .rightContent .honor:hover .title {
	background-color: #ffffff;
	border: solid 0.01rem #033dd6;
	color: #033dd6;
}

.mainInnerBox .rightContent .honor:hover .honorImg .bg {
	opacity: 1;
}

.lxbanner {
	width: 100%;
	height: 4.87rem;
	position: relative;
}

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

.cantact_class {
	width: 100%;
	height: 0.7rem;
	background: #e7f0f9;
	position: relative;
	flex: 1;
	display: flex;
	font-size: 0.2rem;
}

.cantact_class .cantactBox {
	flex: 1;
	font-family: 'ali';
	flex-direction: column;
	color: #171d29;
	cursor: pointer;
	transition: all 0.3s;
}

.cantact_class .cantactBox img {
	position: relative;
	z-index: 10;
	margin-top: 0.1rem;
	display: none;
	transition: all 0.3s;
}

.cantact_class .cantactBox::after {
	background: #0d56c1;
	box-shadow: -0.02rem 0 0.1rem 0 rgba(2, 61, 214, 0.25);
	height:100%;
	left: -calc(86vw / 2);
	/*top: -0.1rem;*/
	content: '';
	width: calc((100% - 14rem)/2 + 7rem);
	position: absolute;
	opacity: 0;
	transition: all 0.3s;
}

.cantact_class .cantactBox.active::after,
.cantact_class .cantactBox:hover::after {
	opacity: 1;
}

.cantact_class .cantactBox.active span,
.cantact_class .cantactBox:hover span {
	color: #fff;
}

.cantact_class .cantactBox.active img,
.cantact_class .cantactBox:hover img {
	display: block;
}

.cantact_class .cantactBox span {
	position: relative;
	z-index: 10;
	color: #171d29;
}

.cantactUs {
	width: 100%;
	display: grid;
	padding: 0 0.8rem;
	grid-template-columns: 1fr 3.2rem 1fr;
}

.cantactUs .cantactInner {
	flex-direction: column;
	padding: 0.95rem 0 0.45rem;
}

.cantactUs .cantactInner:hover .cantactCont {
	color: #033dd6;
	border: solid 0.01rem #1a59fa;
}

.cantactUs .img {
	width: 100%;
	height: 0.55rem;
}

.cantactUs .cantactTit {
	color: #033dd6;
	font-size: 0.2rem;
	font-weight: 600;
	line-height: 0.35rem;
	margin-bottom: 0.1rem;
}

.cantactUs .cantactCont {
	font-size: 0.16rem;
	color: #565f72;
	line-height: 0.38rem;
	padding: 0 0.5rem;
	border: solid 0.01rem #fff;
	text-align: center;
}

.hireBox {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 0.8rem 0 0.45rem;
	min-height: 7rem;
	font-size: .16rem;
}
.hireBox p{

}
.hireBox .cantactInner {
	flex-direction: column;
	margin-bottom: 0.25rem;
}

.hireBox .cantactInner:hover .cantactCont {
	color: #033dd6;
}

.hireBox .cantactTit {
	color: #033dd6;
	font-size: 0.2rem;
	font-weight: 600;
	line-height: 0.35rem;
}

.hireBox .cantactCont {
	font-size: 0.16rem;
	color: #565f72;
	line-height: 0.38rem;
	padding: 0 0.5rem;
	text-align: center;
}
.mapBox{
	width: 100%;
	margin-top: 0.2rem;
	margin-bottom: 0.5rem;
}
.mapBox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1024px) {
	.product_box .pro_list .pro_cont {
		left: .3rem;
	}
	.xcbanner {
		height: 5rem;
	}
	.xcbanner .bannerCont{
		padding: 0 .2rem;
	}
	.mainInnerBox .leftNav .levelBox{
		width: 2rem;
	}
	.mainInnerBox .leftNav .levelTit.active, .mainInnerBox .leftNav .levelTit:hover{
		width: 2.1rem;
	}
	.mainInnerBox .rightContent{
		grid-template-columns: repeat(3, 1fr);
	}
	.product_box .pro_list {
		padding: 0 .2rem;
	}
	.xcbanner .bannerCont .title{
		font-size: .28rem;
	}

	.plan_box .plan_list .planItemBox.active {
		height: 5rem;
		flex: 0 0 3rem;
	}

	.plan_box .plan_list {
		gap: .15rem;
		padding: 0 .2rem;
	}

	.plan_box .plan_list .planItemBox.active .planItem {
		height: 5rem;
	}

	.plan_box .plan_list .planItem .plan_cont .tit-1 {
		font-size: .2rem;
		margin-bottom: 0;
	}

	.plan_box .plan_list .planItemBox {
		height: 4.5rem;
	}

	.plan_box .plan_list .planItemBox.active .planItem .plan_cont {
		height: 1.5rem;
		padding: 0 .2rem;
	}

	.plan_box .plan_list .planItem .plan_cont .desc {
		font-size: .14rem;
		line-height: .22rem;
		max-height: .44rem;
		margin-bottom: 0.1rem;
	}

	.advantBox {
		background: url(../images/ad_bg.jpg) no-repeat left center;
		background-size: 19.2rem 4.6rem;
		padding: 0 .2rem;
	}

	.newsBox .newsBottom .newsImg {
		width: 2.8rem;
		height: 4rem;
	}

	.newsBox .newsBottom .newsli {
		height: 2rem;
		padding: 0 .2rem;
	}

	.landBox .landInner {
		padding: 0 .2rem .3rem;
		gap: .15rem;
	}

	.landBox .landItem {
		height: 0.8rem;
	}

	.landBox .landItem {
		margin: 0;
	}

	.newsBox .newsWarper {
		padding: 0 .2rem;
	}
	.mainInnerBox .rightContent .honorImg{
		height: 2rem;
	}
	.mainInnerBox .leftNav{
		width: 2.2rem;
	}
	.mainInnerBox .rightContent .title{
		height: 0.4rem;
		line-height: 0.4rem;
	}
	.cantactUs{
		padding: 0 0.2rem;
		display: flex;
		flex-direction: column;
	}
	.cantactUs .cantactInner{
		padding: 0.5rem 0 0.2rem;
	}
}

/* 移动端响应式样式 */
@media screen and (max-width: 768px) {
	.cantactUs .cantactInner{
		padding: 0.3rem 0 0.1rem;
	}
	.cantactUs .cantactCont{
		line-height: 0.3rem;
	}
	.xcbanner{
		height: 3rem;
	}
	.xcbanner .bannerCont .title{
		font-size: 0.24rem;
	}
	.mainInnerBox .rightContent {
		grid-template-columns: repeat(2, 1fr);
		padding:0.3rem 0.2rem 0 0.2rem;
		gap: 0.15rem;
	}
	.mainInnerBox .rightContent .honorImg{
		height: 1.8rem;
	}
	.mainInnerBox .rightContent .title{
		font-size: 0.14rem;
	}
	.mainInnerBox .leftNav{
		width: 100%;
	}
	.mainInnerBox .leftNav .levelBox{
		width: 100%;
		display: flex;
	}
	.mainInnerBox .leftNav .levelTit{
		font-size: 0.16rem;
		padding: 0 0.1rem;
		text-align: center;
		border-bottom: none;
	}
	.mainInnerBox .leftNav .levelTit.active, .mainInnerBox .leftNav .levelTit:hover{
		width: 1.3rem;
		margin: 0 0 0 0;
	}
	.modalContent {
		max-width: 95vw;
		max-height: 95vh;
	}

	.modalBody {
		padding: 0.2rem;
	}

	.imageControls {
		gap: 0.1rem;
	}

	.controlBtn {
		padding: 0.08rem 0.16rem;
		font-size: 0.13rem;
	}

	.banner-swiper {
		height: 2.5rem;
		margin-top: 0;
	}

	.banner-swiper .swiper-pagination {
		bottom: 0.15rem;
	}

	.banner-swiper .swiper-pagination-bullet {
		width: 0.05rem;
		height: 0.05rem;
		margin: 0 0.03rem;
	}

	.banner-swiper .swiper-pagination-bullet-active {
		width: 0.1rem;
		height: 0.12rem;
	}

	.video_box {
		height: 2rem;
	}

	.video_box .poster {
		height: 2rem;
	}

	.video_box .video_inner .video_title {
		font-size: 0.18rem;
		margin-bottom: 0.15rem;
		text-align: center;
		padding: 0 0.2rem;
	}

	.video_box .video_inner .video_play {
		width: 0.4rem;
		height: 0.4rem;
		margin: 0 auto 0.15rem;
	}

	.video_box .video_inner .video_click {
		font-size: 0.12rem;
	}

	.pro_inner {
		height: 1.8rem;
		padding: 0 0.2rem;
	}

	.pro_inner .pro_tit {
		font-size: 0.24rem;
		height: 0.3rem;
	}

	.pro_inner .pro_entit {
		font-size: 0.16rem;
		height: 0.25rem;
	}

	.pro_inner .pro_desc {
		font-size: 0.14rem;
		height: 0.4rem;
		text-align: center;
		padding: 0 0.2rem;
	}

	.product_box .pro_list {
		grid-template-columns: 1fr;
		gap: 0.2rem;
		padding: 0 0.2rem;
	}

	.product_box .pro_list .pro_item {
		height: 2.5rem;
	}

	.product_box .pro_list .pro_item .pro_bg {
		height: 2.5rem;
	}

	.product_box .pro_list .pro_cont {
		left: 0.3rem;
	}

	.product_box .pro_list .pro_cont .pro_name {
		font-size: 0.2rem;
		height: 0.35rem;
	}

	.product_box .pro_list .pro_cont .pro_tit {
		font-size: 0.16rem;
		height: 0.25rem;
		margin-top: 0.1rem;
	}

	.product_box .pro_list .pro_cont .pro_desc {
		font-size: 0.12rem;
		height: 0.18rem;
		margin-bottom: 0.15rem;
	}

	.product_box .pro_list .pro_cont .btnMore {
		width: 1rem;
		height: 0.3rem;
		font-size: 0.12rem;
	}

	.plan_list {
		padding: 0 0.2rem;
	}

	.planItemBox {
		margin-bottom: 0.15rem;
	}

	.aboutInner {
		padding: 0 0.2rem;
	}

	.aboutBox .aboutInner .desc {
		font-size: 0.12rem;
		line-height: 1.6;
		padding: 0.2rem 0;
	}

	.landInner {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.1rem;
		padding: 0 0.2rem;
	}

	.newsBottom {
		flex-direction: column;
		padding: 0 0.2rem;
	}

	.newsBox .newsBottom .newsImg {
		width: 100%;
		margin-bottom: 0.2rem;
		height: 3.8rem;
	}

	.newsList {
		width: 100%;
	}

	.newsBox .newsBottom .newsli {
		padding: 0.15rem 0.2rem;
		height: 2.1rem;
	}

	.newsli .tit-1 {
		font-size: 0.14rem;
		margin-bottom: 0.1rem;
	}

	.newsli .desc {
		font-size: 0.12rem;
		line-height: 1.5;
		margin-bottom: 0.1rem;
	}
	.advantBox{
		height: 3.6rem;
	}
	.advantBox .ad_inner {
		padding: 0 .2rem;
	}

	.plan_box .plan_list {
		gap: 0.1rem;
	}

	.plan_box .plan_list .planItemBox {
		height: 3.5rem;
	}

	.plan_box .plan_list .planItemBox.active {
		height: 4rem;
		flex: 0 0 2.2rem;
	}

	.plan_box .plan_list .planItemBox.active .planItem {
		height: 4rem;
	}

	.plan_box .plan_list .planItem .plan_cont .tit-1 {
		font-size: .18rem;
		margin-bottom: 0;
	}

	.plan_box .plan_list .planItem .plan_cont .tit-1 img {
		transform: scale(0.8);
	}

	.advantBox .ad_inner .keyList {
		flex-direction: column;
		align-items: flex-start;
		gap: .1rem;
		height: .9rem;
	}

	.landBox .landInner {
		grid-template-columns: repeat(3, 1fr);
	}
	.landBox{
		padding-bottom: 0.3rem;
	}
	.mainInnerBox{
		flex-direction: column;
		padding:0 0 0.5rem 0;
	}

}