@font-face {
	font-family: 'banner';
	src: url('../font/banner.ttf');
}

@font-face {
	font-family: 'HarmonyOS_Regular';
	src: url('../font/HarmonyOS_Sans_SC_Regular.ttf');
}
@font-face {
	font-family: 'HarmonyOS_SC_medium';
	src: url('../font/HarmonyOS_Sans_SC_Medium.ttf');
}
@font-face {
	font-family: 'HarmonyOS_light';
	src: url('../font/HarmonyOS_Sans_SC_Light.ttf');
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: .16rem;
	/* font-family: Source Han Sans CN, Source Han Sans CN; */
	/*font-family: 'mr';*/
	font-weight: 400;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/* For some Androids */
	/* 英文开启 */
	word-wrap: break-word !important;
	word-break: normal !important;
}

:root {
	--c: #3D60ED;
	--s_tran: 0.3s ease-in-out;
	--l_tran: 0.8s ease-in-out;
	--m_fa: 'HarmonyOS_light';
}

.main {
	justify-content: space-between;
	max-width: 14.4rem;
	width: 95%;
	margin: 0 auto;
}

.page_wrap {
	/* padding-top: 1.2rem; */
}

.mainWidth{
	max-width: 17.92rem;
	width: 95%;
	margin: auto;
}
.mainWidth2{
	max-width: 12.16rem;
	width: 95%;
	margin: auto;
}
.mainWidth3{
	max-width: 13.16rem;
	width: 95%;
	margin: auto;
}

.lmx_h1 {
	width: 0px;
	height: 0px;
	margin: 0;
	text-indent: -9999em;
}

html {
	font-size: 100px;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	display: block;
	width: 100%;
	height: 100%;
}

ul {
	list-style: none;
}

input,
textarea {
	outline: 0;
	border: none;
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	display: block;
}

hr {
	border: none;
}

/*文字描边*/
/* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
/* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* 左右flex布局 */
.flex_box {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

.flex_start {
	align-items: flex-start;
}

.flex_box [class*=flex_box] {
	flex: 1 1 auto;
	position: relative;
}


/* 列表flex布局 */
.list_flex {
	display: flex;
	flex-wrap: wrap;
}



/*多行溢出*/
.line1 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 0.16rem;
	font-family: HarmonyOS_SC_medium;
}

.line2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 2;
}

.line3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 3;
}

.line4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 4;
}

.line5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 5;
}

.index_title{
	position: relative;
}
.index_title img{
	width: 100%;
	height: 0.96rem;
}
.index_title p{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -80%);
	font-family: HarmonyOS_Regular;
	font-weight: bold;
	font-size: 0.28rem;
	color: #1E1B89;
	letter-spacing: 0.06rem;
}
.index_title span{
    font-family: HarmonyOS_Regular;
    font-weight: bold;
    font-size: 0.28rem;
    color: #F99F45;
    letter-spacing: 0.06rem;
}

/* 板块标题 */
.index_title {}


/* 内页标题 */
.inner_title {}


/* 水波纹效果 */
.btn-ripple {
	vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
	opacity: 1;
	position: relative;
	overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
	animation: ani_ripple 0.75s;
	z-index: 1;
	content: "";
	position: absolute;
	display: block;
	transition: all 0.6s;
	width: 100%;
	height: 0;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	padding-top: 100%;
	transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
	0% {
		background: rgba(0, 0, 0, 0.25);
		transform: translateX(-50%) translateY(-50%) scale(0);
	}

	to {
		background: transparent;
		transform: translateX(-50%) translateY(-50%) scale(1);
	}
}




.more {
	height: 0.81rem;
	width: 1.85rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #504D4D;
	font-size: 0.18rem;
	border-right: 0.01rem solid #787676;
	transition: all .25s;
}

.pointer {
	cursor: pointer;
}



/* 公共面包屑 */
.bread{
    /*margin-top: 0.72rem;*/
}
.bread .flex_box2{
	padding: 0.22rem 0 0.22rem;
}
.bread hr{
	width: 100%;
	height: 0.01rem;
	background: rgba(232,232,235,0.8);
}
.bread .icon {
	width: 0.15rem;
	height: 0.15rem;
	margin-right: 0.08rem;
}

.bread .item span {
	display: flex;
	align-items: center;
	font-family: HarmonyOS_SC_regular;
	font-weight: 400;
	font-size: 0.14rem;
	color: #333333 !important;
	line-height: 0.28rem;
	transition: all 0.5s;
	
}
.bread .item span:hover{
    cursor: pointer;
    color: #3C6AF4 !important;
}
.bread .item>a {
	display: flex;
	align-items: center;
}

.bread .item:nth-of-type(2) span:hover{
    color: #333333;
}

.bread .list .item:not(:first-child)::before {
	content: '';
	display: block;
	align-self: center;
	font-weight: bold;
	font-size: 20px;
	color: #333333;
	margin: 0 0.3rem;
	background: url(../img/homearrow.png) no-repeat;
	height: 0.15rem;
	width: 0.18rem;
	flex: 0 0 auto;
	background-size: 100% 100%;
}
.bread .item span:hover{
    color: #3C6AF4;
    
}
.icon{
	position: relative;
}
.icon img{
	width: 0.21rem;
	height: 0.21rem;
	transition: all 0.5s;
}
.icon img:nth-of-type(2){
	opacity: 0;
	position: absolute;
	transition: all 0.5s;
}
.bread .item:hover .icon img:nth-of-type(2){
	opacity: 1;
	transition: all 0.5s;
}
.bread .item:hover .icon img:nth-of-type(1){
	opacity: 0;
	transition: all 0.5s;
}

.bread .list,
.bread .item {
	display: flex;
}

.bread .main {
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
}

.bread .active span {
	    /*font-family: HarmonyOS_light;*/
	    /*font-weight: 400;*/
	    /*font-size: 0.18rem;*/
	    /*color: #1E1B89;*/
	    /*line-height: 0.28rem;*/
}

.bread .list {
	justify-content: flex-start;
}



/* hover-图片放大1.1 */
.scale_box {
	display: block;
	width: auto;
	overflow: hidden;
}
.scale_box .scale_img {
	width: 100%;
	height: 100%;
	transition: var(--s_tran);
	cursor: pointer;
	object-fit: cover;
}
.hover_box:hover .scale_img {
	transform: scale(1.1);
}


/* hover-图片旋转向上位移 */
.rotate_box {
	display: block;
	width: auto;
}
.rotate_box .rotate_img {
	transition: var(--s_tran);
	object-fit: cover;
}
.hover_box:hover .rotate_img {
	transform: rotateY(180deg) translateY(-0.1rem);
}




/* 页码 */
.page {
	width: fit-content;
	margin: 0 auto;
	margin-top: 1.12rem;
	display: flex;
	align-items: center;
}

.page .list {
	display: flex;
	align-items: center;
	color: #666666;
}

.page .list .item {
	display: block;
	width: 0.32rem;
	height: 0.32rem;
	margin-left: 0.05rem;
	margin-right: 0.05rem;
	border: 0.01rem solid rgba(56, 102, 240, 0);
	text-align: center;
	line-height: 0.32rem;
	cursor: pointer;
	overflow: hidden;
	background: #F4F4F5;
	border-radius: 0.02rem;
    font-family: HarmonyOS_SC_medium;
    font-weight: 400;
    font-size: 0.16rem;
    color: #666666;
}

.page .list .item:hover {
	background: #1E1B89;
	color: white;
	border: 0.01rem solid #1E1B89;
}

.page .list .active {
	background: #1E1B89;
	color: white;
	border: 0.01rem solid #1E1B89;
}

.page .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.32rem;
	height: 0.32rem;
	margin-left: 0.05rem;
	margin-right: 0.05rem;
	border: 0.01rem solid #F4F4F5;
	cursor: pointer;
	overflow: hidden;
	background:#F4F4F5;
	flex: 0 0 0.32rem;
	border-radius: 0.02rem;
}

.page .btn img {
	height: 0.11rem;
	object-fit: contain;
}

.page .prev::after {
	content: '<';
}

.page .next::after {
	content: '>';
}

.page .prev::after,
.page .next::after {
	position: absolute;
	font-size: 0.16rem;
	font-family: '宋体';
	color: #666666;
	font-weight: bold;
}

.page .btn:hover {
	background: #E7ECFE;
}

.page .btn:hover::after{
	color: #3C6AF4;
}

.page .disable {
	    opacity: 1;
	    background: #F4F4F5;
	    color: #666666;
}

.page .btn:hover img {
	filter: brightness(0) invert(1);
}

.page .total {
	margin-right: 0.23rem;
	font-size: 0.14rem;
	color: #333333;
}

.page .to_page {
	font-size: 0.14rem;
	color: #FFFFFF;
	margin-left: 0.08rem;
}

.page .to_page input {
	width: 0.6rem;
	height: 0.31rem;
	margin: 0 0.05rem;
	padding: 0 0.1rem;
	border-radius: 0.01rem 0.01rem 0.01rem 0.01rem;
	border: 0.01rem solid rgba(61, 96, 237, 1);
	outline: none;
	font-size: 0.14rem;
	color: #FFFFFF;
	background: transparent;
}



.banner{
	width: 100%;
	height: 5.8rem;
	position: relative;
}
.banner_bg{
	width: 100%;
	height: 100%;
	/*height: auto;*/
}
.banner_posi{
	width: 80%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10%;
	/*z-index: 999;*/
	/*animation: posi 1s ease-in-out;*/
}
.banner_posi2{
    max-width: 12.16rem;
    width: 95%;
    margin: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 54%;
    position: absolute;
}
.slogon{
	font-family: banner;
	font-size: 0.4rem;
	color: #FFFFFF;
	letter-spacing: 0.1rem;
}
.tony{
	font-family: HarmonyOS_SC_regular;
	font-weight: 300;
	font-size: 0.16rem;
	color: #FFFFFF;
	line-height: 0.36rem;
	margin-top: 0.63rem;
	width: 52%;
	opacity: 0.8;
}
@keyframes posi {
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}


/* other */
.serve_other{
	background: #F5F5F7;
	padding-top: 1rem;
	padding-bottom: 1.2rem;
}
.other_tit{
	position: relative;
}
.other_en{
	font-family: HarmonyOS_light;
	font-weight: bold;
	font-size: 0.72rem;
	color: #8785CC;
	opacity: 0.1;
	text-align: center;
}
.other_cn{
	font-family: HarmonyOS_light;
	font-weight: bold;
	font-size: 0.28rem;
	color: #F78716;
	text-align: center;
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translateX(-50%);
	letter-spacing: 0.06rem;
}
.other_cn span{
	font-family: HarmonyOS_light;
	font-weight: bold;
	font-size: 0.28rem;
	color: #1E1B89;
}
.other_line1{
	width: 0.48rem;
	height: 0.03rem;
	margin: auto;
	background: #1E1B89;
}
.other_line2{
	width: 100%;
	height: 0.01rem;
	border: 0.01rem solid #B2B0EB;
	opacity: 0.5;
}
.other_list{
	margin: 0.6rem 0 0 !important;
}
.listSwiper .other_list_a{
    margin: 0 !important;
}
.other_list_a{
	width: auto;
	position: relative;
    margin: 0 0.16rem;
	height: 3.2rem;
	padding: 0;
	overflow: hidden;
}
.other_list_a2{
    height: 3.26rem;
}
.listSwiper .swiper-slide{
    /*padding: 0 0.39rem;*/
}
.other_list_a img{
    transition: all 0.5s;
}
.other_list_a:hover img{
    transform: scale(1.1);
    transition: all 0.5s;
}
.other_list_a:hover .other_list_cn{
    opacity: 1 !important;
    transition: all 0.5s;
}
.other_list_a:hover .other_list_en{
    opacity: 1 !important;
    transition: all 0.5s;
}
.other_list_p{
	padding: 0 1rem !important;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
}
.other_list_cn{
	font-family: HarmonyOS_SC_medium !important;
    font-weight: 500 !important;
    font-size: 0.18rem !important;
    color: #FFFFFF !important;
    opacity: 0.8 !important;
	text-align: center;
	letter-spacing: 0.04rem;
	transition: all 0.5s;
}
.other_list_en{
	font-family: HarmonyOS_SC_regular !important;
    font-weight: 400 !important;
    font-size: 0.14rem !important;
    color: #FFFFFF !important;
    line-height: 0.24rem !important;
    opacity: 0.5 !important;
    margin-top: 0.29rem !important;
    margin-bottom: 0.46rem !important;
	text-align: center;
	transition: all 0.5s;
}
.listSwiper .other_list_en{
    height: 0.48rem;
}
/*.other_list_p:hover button{*/
/*    background: #F78716;*/
/*    transition: all 0.5s;*/
/*}*/
.other_list_p button{
	width: 2.2rem;
	height: 0.36rem;
	font-family: HarmonyOS_light !important;
font-weight: 400 !important;
font-size: 0.14rem !important;
color: #FFFFFF !important;
opacity: 0.8 !important;
 background: #1E1B89 !important;
	margin: auto;
	display: flex;
	line-height: 0.34rem;
	border: none;
	transition: all 0.5s;
}
.other_list_a:hover .other_list_p button{
    background: #302CC3 !important;
    transition: all 0.5s !important;
}


.modern_tit{
	position: relative;
}
.modern_tit img{
	width: 1.18rem;
	height: 0.06rem;
	margin-top: 0.2rem;
	margin: 0.16rem auto 0;
}
.modern_en{
	font-size: 0.4rem;
	font-weight: bold;
	background: -webkit-linear-gradient(180deg, rgba(30,27,137,0.2), RGBA(247,247,250,0.4));
	background: linear-gradient(180deg, rgba(30,27,137,0.2), RGBA(247,247,250,0.4));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	text-align: center;
	text-transform: uppercase;
}
.modern_cn{
	font-family: HarmonyOS_Regular;
	font-weight: bold;
	font-size: 0.28rem;
	color: #333333;
	position: absolute;
	top: 0.2rem;
	left: 50%;
	transform: translateX(-50%);
}
.modern_text p{
	font-family: HarmonyOS_SC_regular;
	font-weight: 400;
	font-size: 0.14rem;
	color: #333333;
	line-height: 0.3rem;
	text-indent: 2em;
}

.modern_text span{
    font-family: HarmonyOS_SC_regular !important;
	font-size: 0.14rem !important;
}
.modern_text span > span{
	font-family: HarmonyOS_SC_ medium !important;
	font-size: 0.14rem !important;
}
.modern_text p span{
    font-size: inherit;
}
.modern_text p strong{
    font-size: inherit;
}
.modern_text span{
	/*color: #1E1B89;*/
	/*font-family: HarmonyOS_light;*/
	/*font-weight: bold;*/
	/*font-size: 0.18rem;*/
	/*line-height: 0.4rem;*/
}

.listSwiper{
    width: 100% !important;
}

/*input:focus {*/
/*    border: 1px solid #4096ff;*/
/*  box-shadow: 0 0 6px RGBA(64,150,255,0.5);*/
/*}*/


.modern_ul{
    background: rgba(255,255,255,0.8) !important;
}
.modern_li a{
    border-right: 0.04rem solid transparent;
    transition: all 0.5s;
}
.other_titimg{
    height: 0.86rem;
    width: 100%;
    margin: 15px 0;
}
.modern_li a:hover,.modern_li a p:hover{
    color: #3C6AF4;
    transition: all 0.5s;
}

.swiper-scrollbar{
	height: 0.04rem;
	background: RGBA(30, 27, 137, 0.05);
	bottom: 0 !important;
    width: 100% !important;
    left: 0 !important;
}
.swiper-scrollbar:hover{
    height: 0.08rem;
}
.swiper-scrollbar-drag{
	background: #1E1B89;
	opacity: 0.3;
}
.swiper-scrollbar:hover .swiper-scrollbar-drag{
    opacity: 1;
}


.banner video{
    /*height: 7.19rem !important;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}




@media only screen and (max-width: 1024px){
    
    
/* 隐藏整个滚动条 */
*::-webkit-scrollbar {
    display: none;
}
 
/* 或者只隐藏滚动条的轨道、滑块和滚动条角落 */
/* 隐藏轨道 */
*::-webkit-scrollbar-track {
    background: none;
}
 
/* 隐藏滑块 */
*::-webkit-scrollbar-thumb {
    background: none;
}
 
/* 隐藏角落 */
*::-webkit-scrollbar-corner {
    background: none;
}
    
    .banner .swiper-slide img{
        height: auto;
    }
    .banner video{
    /*height: 150px !important;*/
}
.slogon, 
.modern_en{
    font-size: 20px !important;
}
.modern_cn{
    font-size: 16px !important;
}
.all_list_tit, 
.news .list_flex .flex_box2 .title, 
.historySwiper .swiper-slide-next .history_date, 
.honor_list .flex_box p, 
.culture_tit, 
.news_detail .title, 
.pain_list.active .pain_tit, 
.Overview_tit, 
.other_list_cn, 
.light_tit, 
.about_tit span, 
.news_tit, 
.solution_tit, 
.serve_tit, 
.index_title span, 
.index_title p, 
.about_tit{
    font-size: 16px !important;
    line-height: 1.5;
}
.footer_contact a, 
.footer_contact p, 
.contact_tel p:nth-of-type(2) a, 
.contact_tel p:nth-of-type(1), 
.contact_dec, 
.contact_tit, 
.cat_list_tit, 
.cat_list_dec, 
.pain_num, 
.message_item_other input, 
.message_item input, 
.c-button--dropdown, 
.oeder_tit, 
.order_mi p, 
.c-dropdown__item, 
.message_checkbox p, 
.message_checkbox p span, 
.message_btn, 
.history_cont p, 
.culture_dec, 
.sustain_dec, 
.gonggao-mess .title, 
.news_detail .info p, 
.news_detail .info span, 
.news_detail .info strong, 
.page .list .item, 
.news .list_flex .flex_box2 .des, 
.import_tit, 
.import_date, 
.modern_li a, 
.coreSwiper p, 
.core_list, 
.pain_list.active .pain_dec, 
.Overview_ul li, 
.Overview_dec, 
.bread .item span, 
.cat_list_right p, 
.modern_li p, 
.other_list_en, 
.other_list_p button, 
.modern_apply_cont p, 
.light_dec, 
.modern_text p, 
.modern_text span, 
.list_cn, 
.list_en, 
.tony, 
.footer_copyright, 
.ewm p, 
.news_dec, 
.news_date, 
.style_title p, 
.solution_dec, 
.serve_dec, 
.about_dec{
    font-size: 14px !important;
    line-height: 1.5 !important;
}
    .index_title img{
       height: 25px;
    }
    .tony{
        margin-top: 15px;
    }

.banner{
    margin-top: 50px;
    height: 3.2rem;
}

.other_list{
    margin-top: 15px !important;
}
.tony{
    	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 3;
	display: none;
}
/*.modern_apply_cont p{	display: -webkit-box;*/
/*	-webkit-box-orient: vertical;*/
/*	text-overflow: ellipsis;*/
/*	overflow: hidden;*/
/*	-webkit-line-clamp: 3;}*/
	
	.other_list_p{
	    padding: 15px !important;
	}
	.other_list_en{
        margin-top: 5px !important;
    margin-bottom: 10px !important;
    	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp:5;
	display: none;
    
}
.other_list_a{
    /*padding: 15px;*/
}
.bread .list .item:not(:first-child)::before{
    background-size: contain;
}
.listSwiper .other_list_en{
    height: auto;
    	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 5;
	display: none;
}
.page{
    margin-top: 15px;
}
.page .item{
    width: 20px !important;
    height: 20px !important;
}
.news_detail1{
    flex-direction: column;
}
.order{
    padding-bottom: 15px;
}

.other_list_cn{
    width: 100%;
    	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.modern_ul{
    display: none;
}
.mainWidth2{
        width: 90%;
        overflow: hidden;
}
.index_title,
.modern_tit{
    margin: 15px auto;
}
.honor3_img img{
    height: auto;
}
.honor_list{
    margin-bottom: 10px;
}
.honor3{
    margin-top: 15px;
}
.modern_apply_img img{
    /*height: 150px !important;*/
}
.other_list_p button{
    line-height: 28px !important;
    height: 28px !important;
    margin-top: 20px;
}
.swiper-scrollbar{
    display: none;
}
.bread .item>a span{
    display: block;
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bread .item>a span{
    /*display: flex;*/
    min-width: 15px;
    min-height: 15px;
}
.icon img{
    width: 15px;
    height: 15px;
    display: block;
}

}
	