/*导航*/
.nav_box{
	width: 100%;
	height:5.5rem;
	position: sticky;
	top: 0;
	background: #FFFFFF;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	z-index: 1000;
	-moz-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
}

.nav{
    width: 90%;
	height: 100%;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav_logo{
	width: auto;
	height: 45%;
	position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.nav_logo>a{
	width: auto;
	height: 100%;
	margin: 0 auto;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


.nav_logo img{
	width: auto;
	height: 100%;
	margin: 0 auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_main{
	width: 100%;
	height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: center;
}
.nav_menu{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
	padding-right: 5rem;
}
.nav_menu_item{
    width: auto;
    height: 100%;
	position: relative;
	margin-left: 3rem;
}
.nav_menu_item>a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: auto;
	height: 100%;
	position: relative;
	padding: 0 1rem;
	font-family: opm;
	font-size: 1.125rem;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_menu_item>a:hover{
	color: var(--OneColor);
}




.nav_down{
	position: absolute;
	width: 10rem;
	height: 0;
	overflow: hidden;
	background: rgba(255,255,255,0.9);
	left: calc(50% - 5rem);
	top: 100%;
	padding: 0rem 0rem;
	text-align: center;
	-moz-box-shadow: 0px 5px 5px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 5px 5px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 5px 5px 0 rgba(0,0,0,0.08);
	opacity: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_menu_item:hover .nav_down{
	opacity: 1;
	height: auto;
	padding: 1rem 0rem;
}
.nav_down a{
	display: block;
	font-size: 1rem;
	color: #656160;
	margin: 0.4rem 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_down a:hover{
	color: var(--OneColor);
}


.nav_search{
    width: auto;
    height: 2.7rem;
    padding: 0.5rem 0;
    font-size: 0;
    margin-right: 1rem;
    position: relative;
	z-index: 10;
	margin-left: 2rem;
}
.nav_search_dbtn{
    position: absolute;
    width: 4rem;
    height: 100%;
    right: -1rem;
    top: 0;
    z-index: 10;
    cursor: pointer;
}
.nav_search_on .nav_search_dbtn{
    display: none;
}
.nav_search a{
    display: inline-block;
    width: auto;
    height: 100%;
    position: relative;
    z-index: 5;
}
.nav_search svg{
    width: auto;
    height: 100%;
    fill:#000000;
    cursor: pointer;
}
.nav_box_index .nav_search svg{
    fill:#ffffff;
}
.nav_box_index_on .nav_search svg{
    fill:#000000;
}
.nav_search_main{
    position: absolute;
    width: 0rem;
    height: 120%;
    background: #FFFFFF;
    right: -1rem;
	border: 1px solid rgba(0,0,0,0.1);
    top: -10%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_box_on  .nav_search_main{
    border: 1px solid rgba(0,0,0,0.1);
}
.nav_search_on .nav_search_main{
    width: 25rem;
    opacity: 1;
}
.nav_search_main input{
    width: calc(100% - 4rem);
    height: 2rem;
    padding: 0 1rem;
    font-size: 1.125rem;
    border: none;
}

/*导航2*/
.nav2_box{
	width: 100%;
	height:5.5rem;
	position: fixed;
	top: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	z-index: 1000;
}
.nav2_box_on{
	background: #FFFFFF;
	-moz-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
}

.nav2{
    width: 90%;
	height: 100%;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav2_logo{
	width: auto;
	height: 45%;
	position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.nav2_logo>a{
	width: auto;
	height: 100%;
	margin: 0 auto;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


.nav2_logo img{
	width: auto;
	height: 100%;
	margin: 0 auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav2_main{
	width: 100%;
	height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: center;
}
.nav2_menu{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
	padding-right: 5rem;
}
.nav2_menu_item{
    width: auto;
    height: 100%;
	position: relative;
	margin-left: 3rem;
}
.nav2_menu_item>a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: auto;
	height: 100%;
	position: relative;
	padding: 0 1rem;
	font-family: opm;
	font-size: 1.125rem;
	color: #FFFFFF;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav2_menu_item>a:hover{
	color: var(--OneColor);
}
.nav2_box_on .nav2_menu_item>a{
	color: #000000;
}

.nav2_search{
    width: auto;
    height: 2.7rem;
    padding: 0.5rem 0;
    font-size: 0;
    margin-right: 1rem;
    position: relative;
	z-index: 10;
	margin-left: 2rem;
}
.nav2_search_dbtn{
    position: absolute;
    width: 4rem;
    height: 100%;
    right: -1rem;
    top: 0;
    z-index: 10;
    cursor: pointer;
}
.nav2_search_on .nav2_search_dbtn{
    display: none;
}
.nav2_search a{
    display: inline-block;
    width: auto;
    height: 100%;
    position: relative;
    z-index: 5;
}
.nav2_search svg{
    width: auto;
    height: 100%;
    fill:#ffffff;
    cursor: pointer;
}

.nav2_box_on .nav2_search svg{
    fill:#000000;
}
.nav2_search_main{
    position: absolute;
    width: 0rem;
    height: 120%;
    background: #FFFFFF;
    right: -1rem;
	border: 1px solid rgba(0,0,0,0.1);
    top: -10%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav2_box_on  .nav2_search_main{
    border: 1px solid rgba(0,0,0,0.1);
}
.nav2_search_on .nav2_search_main{
    width: 25rem;
    opacity: 1;
}
.nav2_search_main input{
    width: calc(100% - 4rem);
    height: 2rem;
    padding: 0 1rem;
    font-size: 1.125rem;
    border: none;
}

.menubtn{
	display: none;
}



/*footer*/
.footer_box{
    width: 100%;
    height: auto;
    position: relative;
	background: #f2f4f8;
}
.footer{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 5rem;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer_lx{
	width: auto;
	height: auto;
}
.footer_lx_logo{
	width: 100%;
	height: auto;
}
.footer_lx_logo img{
	width: auto;
	height: 2.5rem;
}
.footer_lx_title{
	width: 100%;
	height: auto;
	font-size: 1rem;
	margin-top: 3.5rem;
}
.footer_lx_tel{
	width: 100%;
	height: auto;
	font-size: 2.187rem;
	font-family: opb;
	margin-top: 0.5rem;
}

.footer_menu{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.footer_item{
    width: auto;
    height: auto;
	margin: 0 5rem;
}

.footer_item_title{
	font-size: 1.375rem;
	font-family: opm;
	color: rgba(0,0,0,1);
}
.footer_itemc{
	padding-top: 1rem;
}
.footer_itemc_con{
	display: block;
	font-size: 1rem;
	color: rgba(0,0,0,0.5);
	margin-top: 0.5rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_itemc_con:hover{
	color: rgba(0,0,0,1);
}



.footer_code{
    width: 9rem;
    height: auto;
    font-size: 0;
	margin-top: 1.5rem;
}
.footer_code img{
    width: 100%;
    height: auto;
}
.footer_code_title{
	font-size: 1.375rem;
	font-family: opm;
	color: rgba(0,0,0,1);
	text-align: center;
}



.footer_bottom{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
    margin-top: 5rem;
    position: relative;
    z-index: 5;
	font-size: 1rem;
    color: rgba(0,0,0,0.3);
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.footer_bottom a{
    color: rgba(0,0,0,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_bottom a:hover{
    color: rgba(0,0,0,1);
}

/*客服*/
.ser{
	position: fixed;
	width: 4rem;
	height: auto;
	z-index: 1000;
	right: 1rem;
	bottom: 20%;
}
.ser_item{
	display: block;
	position: relative;
	width: 3.6rem;
	height: 3.6rem;
	margin: 0.7rem 0;
}
.ser_item_back{
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	background:var(--OneColor);
	border-radius: 8px;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ser_item:hover .ser_item_back{
	background:#ec603f;
}
.ser_item_ico{
	position: relative;
	z-index: 5;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 0;
}
.ser_item_ico svg{
	width: auto;
	height: 45%;
	margin: 0 auto;
	fill:#ffffff;
}

.ser_item_tel{
	position: absolute;
	width: 0rem;
	overflow: hidden;
	height: 3.6rem;
	line-height: 3.6rem;
	border-radius: 8px;
	background:#ec603f;
	right: 0;
	top: 0;
	z-index: 3;
	font-size: 1.5rem;
	color: #FFFFFF;
	font-family: opb;
	padding: 0 2rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 0;
}
.ser_item:hover .ser_item_tel{
	width: 17rem;
	opacity: 1;
}

.ser_item_code{
	position: absolute;
	width: 0rem;
	overflow: hidden;
	height: 9rem;
	right: 110%;
	top: calc(50% - 4.5rem);
	z-index: 3;
	font-size: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 0;
}
.ser_item_code img{
	width:9rem;
	height: 9rem;
	object-fit: cover;
	object-position: center;
}
.ser_item:hover .ser_item_code{
	width: 9rem;
	opacity: 1;
}

/*nbanner*/
.nbanner{
    width: 100%;
    aspect-ratio: 1920/515;
    position: relative;
}
.nbanner_img{
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 0;
    left: 0;
    top: 0;
}
.nbanner_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.nbanner_con{
    width: 1400px;
    width: var(--mainwidth);
    height: 100%;
	margin: 0 auto;
	position: relative;
    z-index: 5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 3rem;
}
.nbanner_con_title{
    font-size: 4.125rem;
    color: #000000;
    font-family: opm;
}
.nbanner_con_ltitle{
    font-size: 1.75rem;
	color: #000000;
    font-family: opm;
	text-transform: uppercase;
	margin-top: 1rem;
}


/*nbanner2*/
.nbanner2{
    width: 100%;
	height: 100vh;
    position: relative;
}
.nbanner2_img{
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 0;
    left: 0;
    top: 0;
}
.nbanner2_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.nbanner2_con{
    width: 1400px;
    width: var(--mainwidth);
    height: 100%;
	margin: 0 auto;
	position: relative;
    z-index: 5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 3rem;
}
.nbanner2_con_title{
    font-size:3.375rem;
	letter-spacing: 1rem;
    color: #FFFFFF;
    font-family: opb;
}
.nbanner2_con_ltitle{
    font-size: 3rem;
	color: #FFFFFF;
    font-family: opb;
	text-transform: uppercase;
	margin-top: 1rem;
}


/*翻页*/

.npage{
    width: 100%;
    height: auto;
	margin-top: 5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}
.npage_as{
    width: 3.2rem;
    height: 3.2rem;
	border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
	background: #d1d1d1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0 1rem;
}
.npage_as:hover{
	background: var(--OneColor);
}
.npage_as svg{
    width: 2rem;
    height: 2rem;
    fill:#ffffff;
    margin: 0 auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.npage_as:hover svg{
    fill:#ffffff;
}

.npage_ac{
    display: inline-block;
    width:2rem;
    height: 3.2rem;
    line-height: 3.2rem;
    text-align: center;
    margin: 0 0.2rem;
    font-size: 1.25rem;
    font-family: opm;
    color: rgba(0,0,0,1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.npage_ac:hover{
    color:var(--OneColor);
}
.npage_acon{
    color:var(--OneColor);
}



/*pro_list*/

.pro{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 6rem;
	padding-bottom: 6rem;
}
.prol{
	width: 23%;
	height: auto;
}

.prol_title{
	margin-top: 3rem;
	font-size: 2.25rem;
	font-family: opm;
	color: #000000;
}
.prolb{
	width: 100%;
	height: auto;
	padding-left: 2rem;
	position: relative;
	margin-top: 3.5rem;
	z-index: 0;
}
.prolb:after{
	position: absolute;
	content: '';
	font-size: 0;
	width: 3px;
	height: 100%;
	background: #d4d9df;
	left: 0;
	top: 1rem;
	z-index: 0;
}
.prolb_back{
	position: absolute;
	font-size: 0;
	width: 3px;
	height: 0%;
	background: var(--OneColor);
	left: 0;
	top: 1rem;
	z-index: 5;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.prolbi{
	padding-bottom: 3rem;
	position: relative;
}
.prolbi:after{
	position: absolute;
	content: '';
	font-size: 0;
	width: 6px;
	height: 6px;
	background: #FFFFFF;
	border: 2px solid #d4d9df;
	border-radius: 50%;
	left: calc(0px - 2rem - 3px);
	top: 0.5rem;
	z-index: 15;
}
.prolbi_on:after{
	background: var(--OneColor);
	border: 2px solid var(--OneColor);
}

.prolbit{
	font-size: 1.375rem;
	color: #7d7d7d;
	font-family: opm;
	position: relative;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.prolbi_on .prolbit{
	color: var(--OneColor);
}

.prolbic{
	width: 100%;
	height: 0;
	overflow: hidden;
	background: #f6f7fa;
	padding: 0rem 2rem;
	margin-top: 0rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.prolbi_on .prolbic{
	height: auto;
	padding: 0.3rem 2rem;
	margin-top: 1rem;
}

.prolbici{
	font-size: 1.125rem;
	color: #a2a2a2;
	margin: 1.75rem 0;
	display: block;
	position: relative;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.prolbici:hover{
	color: var(--OneColor);
}
.prolbici_on{
	color: var(--OneColor);
}
.prolbici:after{
	position: absolute;
	content: '>';
	font-size: 1.25rem;
	font-family: '宋体';
	font-weight: bold;
	color: var(--OneColor);
	right: 1rem;
	top: 0rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 0;
}
.prolbici_on:after{
	opacity: 1;
}
.prolbici:hover:after{
	opacity: 1;
}


.pror{
	width: 69.5%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.pror_item{
	width: 32%;
	height: auto;
	margin-right: 2%;
	margin-top: 3rem;
}
.pror_item:nth-child(3n){
	margin-right: 0;
}
.pror_item_img{
	width: 100%;
	aspect-ratio: 462/325;
	font-size: 0;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,0.1);
	/*background: #f6f7fa;*/
}
.pror_item_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	transform: perspective(100px) translateZ(0px);
}
.pror_item:hover .pror_item_img img{
	transform: perspective(100px) translateZ(2px);
}
.pror_item_title{
	font-size: 1.25rem;
	color:#000000;
	font-family: opm;
	height: auto;
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.pror_item:hover .pror_item_title{
	color:var(--OneColor);
}
.pror_item_ltitle{
	font-size: 1rem;
	color:rgba(0,0,0,0.7);
	font-family: opm;
	height: auto;
	margin-top: 0.2rem;
}
.pror_item_btn{
	width: 6rem;
	height: 2.5rem;
	background: var(--OneColor);
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 2.5rem;
	text-align: center;
	font-size: 1.125rem;
	color: #FFFFFF;
	margin-top: 1rem;
}


.loadmore{
	width: 100%;
	height: auto;
	text-align: center;
	margin-top: 3rem;
}
.loadmore a{
	width: auto;
	height: 3.8rem;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,1.00);
	border: 1px solid rgba(0,0,0,0.3);
	border-radius: 3.8rem;
	padding: 0 3rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	cursor: pointer;
}
.loadmore a:hover{
	border: 1px solid #ec603f;
	color: #ec603f;
}

/*产品详情*/
.spro_banner{
	width: 100%;
	height: calc(100vh - 5.5rem);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.spro_banner_back{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	font-size: 0;
}
.spro_banner_back img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.spro_bannerc{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	position: relative;
	z-index: 5;
}
.spro_bannerc_sw{
	width: 100%;
	height: auto;
	position: relative;
	z-index: 0;
}
.spro_bannerc_sw .swiper-slide{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
.spro_bannerc_con{
	width: 35%;
	height: auto;
}
.spro_bannerc_con_title{
	font-size: 3rem;
	font-family: opm;
	color: #000000;
}
.spro_bannerc_con_ltitle{
	font-size: 1.625rem;
	color: #000000;
	margin-top: 1rem;
}
.spro_bannerc_con_des{
	margin-top: 2rem;
	padding-bottom: 0.5rem;
}
.spro_bannerc_con_des span{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.7);
	margin-top: 1.5rem;
	display: block;
	position: relative;
	padding-left: 1.2rem;
}
.spro_bannerc_con_des span:after{
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	font-size: 0;
	background: rgba(0,0,0,0.3);
	left: 0;
	top: 0.5rem;
}
.spro_bannerc_con_btn{
	margin-top: 3rem;
}
.spro_bannerc_con_btn a{
	width: 12rem;
	height: 3.5rem;
	background: var(--OneColor);
	border-radius: 3.5rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.spro_bannerc_con_btn_text{
	font-size: 1.25rem;
	color: #FFFFFF;
	font-family: opm;
}
.spro_bannerc_con_btn_ico{
	font-size: 0;
	width: auto;
	height: 1.2rem;
	margin-left: 1rem;
}
.spro_bannerc_con_btn_ico svg{
	width: auto;
	height: 100%;
	fill:#ffffff;
	transform: rotate(180deg);
}
.spro_bannerc_img{
	width: 60%;
	height: auto;
	max-height: 80%;
	font-size: 0;
	text-align: center;
	display: flex;
	flex-direction: center;
	justify-content: center;
}
.spro_bannerc_img img{
	width: auto;
	height: auto;
	max-height: 100%;
	max-width: 100%;
}
.spro_bannerc_swmb{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 6rem;
	padding: 0 5rem;
}
.spro_bannerc_swm{
	width: calc(100% - 12rem);
	height: auto;
}
.spro_bannerc_swm_img{
	width: 100%;
	aspect-ratio: 254/120;
	background: #FFFFFF;
	border: 2px solid #FFFFFF;
	font-size: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	padding: 10%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
}
.spro_bannerc_swm .swiper-slide-active .spro_bannerc_swm_img{
	background: none;
	border: 2px solid var(--OneColor);
}
.spro_bannerc_swm_img img{
	width:100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.spro_bannerc_swm_btn{
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	background: #a7aeb8;
	font-size: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	bottom: 2.4rem;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.spro_bannerc_swm_btn:hover{
	background: var(--OneColor);
}
.spro_bannerc_swm_btn svg{
	width: auto;
	height: 55%;
	fill:#ffffff;
}
.spro_menub{
	width: 100%;
	height: auto;
	border-bottom: 1px solid #e5e5e5;
}
.spro_menu{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 0;
}
.spro_menul{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.5);
	font-family: opm;
}
.spro_menul a{
	color: rgba(0,0,0,0.5);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.spro_menul a:hover{
	color: var(--OneColor);
}
.spro_menul span{
	font-family: '宋体';
	font-weight: bold;
	margin: 0 0.3rem;
}
.spro_menur{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.spro_menur a{
	font-size: 1.25rem;
	color: #000000;
	font-family: opm;
	margin-left: 2.5rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.spro_menur a:hover{
	color: var(--OneColor);
}

.ntitle{
	font-size: 3rem;
	font-family: opm;
	color: #000000;
	text-align: center;
	
}

.spro_csb{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 5rem;
}
.spro_cs{
	width: 100%;
	height: auto;
	margin-top: 2rem;
}
.spro_cs img{
	width: 100%;
	height: auto;
}

.spro_tdb{
	width: 100%;
	height: auto;
	margin-top: 5rem;
	background: #f2f4f8;
	padding: 5rem 0;
}
.spro_td{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.spro_tdi{
	width: 24.25%;
	height: auto;
	margin-right: 1%;
	margin-top: 3rem;
}
.spro_tdi:nth-child(4n){
	margin-right: 0;
}
.spro_tdi_ico{
	width: 6rem;
	height: 6rem;
	margin: 0 auto;
	background: var(--OneColor);
	border-radius: 50%;
	font-size: 0;
	position: relative;
	z-index: 5;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.spro_tdi:hover .spro_tdi_ico{
	transform: rotate(360deg);
}
.spro_tdi_ico img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;

-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.spro_tdic{
	width: 100%;
	height: calc(100% - 3rem);
	background: #FFFFFF;
	margin-top: -3rem;
	position: relative;
	z-index: 0;
	padding: 2.3rem;
	padding-top: 4rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.spro_tdi:hover .spro_tdic{
	-moz-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
}
.spro_tdic_title{
	font-size: 1.375rem;
	font-family: opm;
	color: #000000;
	text-align: center;
}
.spro_tdic_des{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.5);
	text-align: center;
	margin-top: 1rem;
	line-height: 150%;
}

.spro_yyb{
	width: 100%;
	height: auto;
	margin-top: 5rem;
}
.spro_yy_sw{
	width: 100%;
	height: auto;
	margin-top: 2rem;
}
.spro_yy_img{
	width: 100%;
	aspect-ratio: 794/451;
	font-size: 0;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.spro_yy_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;

-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;

transform: perspective(100px) translateZ(0px);
}
.spro_yy_sw .swiper-slide:hover .spro_yy_img img{
	transform: perspective(100px) translateZ(2px);
}
.spro_yy_title{
	width: 80%;
	height: 6rem;
	background: #FFFFFF;
	margin: 0 auto;
	margin-top: -3rem;
	position: relative;
	z-index: 5;
	-moz-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 0px 25px 0 rgba(0,0,0,0.08);
	font-size: 1.5rem;
	font-family: opm;
	color: #000000;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.spro_xnb{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 5rem;
}
.spro_xn{
	width: 100%;
	height: auto;
	position: relative;
}
.spro_xn_sw{
	width: 100%;
	height: auto;
	margin-top: 2rem;
}
.spro_xn_img{
	width: 100%;
	aspect-ratio: 676/315;
	font-size: 0;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.spro_xn_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;

-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;

transform: perspective(100px) translateZ(0px);
}
.spro_xn_sw .swiper-slide:hover .spro_xn_img img{
	transform: perspective(100px) translateZ(0px);
}


.spro_xn_btn{
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	background: #a7aeb8;
	position: absolute;
	top: calc(50% - 1.6rem);
	font-size: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	bottom: 2.4rem;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.spro_xn_btn:hover{
	background: var(--OneColor);
}
.spro_xn_btn svg{
	width: auto;
	height: 55%;
	fill:#ffffff;
}
.spro_xn_btnl{
	left: -5rem;
}
.spro_xn_btnr{
	right: -5rem;
}


.spro_tjb{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 5rem;
}
.spro_tj{
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.spro_tji{
	width: 49.2%;
	height: auto;
	background: #f6f7fb;
	margin-top: 1.6%;
}
.spro_tji a{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	height: auto;
}
.spro_tji_img{
	width: 40%;
	height: auto;
	font-size: 0;
}
.spro_tji_img img{
	width: 100%;
	height: auto;
}
.spro_tjic{
	width: 60%;
	height: auto;
	position: relative;
	padding: 2.5rem 0;
}
.spro_tjic_title{
	font-size: 1.5rem;
	font-family: opm;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.spro_tji a:hover .spro_tjic_title{
	color: var(--OneColor);
}
.spro_tjic_des{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.7);
	margin-top: 0.5rem;
}
.spro_tjic_btn{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 6rem;
	height: 2.2rem;
	border-radius: 2.2rem;
	background: var(--OneColor);
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 2.5rem;
	font-size: 1.125rem;
	color: #FFFFFF;
}


/*关于我们*/
.ab_jj_box{
	width: 100%;
	height: auto;
	position: relative;
	background: #FFFFFF;
	padding-top: 6rem;
}
.ab_jj_back{
	position: absolute;
	width: 42%;
	height: auto;
	font-size: 0;
	left: 0;
	bottom: 0;
	z-index: 0;
}
.ab_jj_back img{
	width: 100%;
	height: auto;
}
.ab_jj{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 5;
}
.ab_jjl{
	width: 43.5%;
	height: auto;
}
.ab_jjl_title{
	font-size: 3.125rem;
	font-family: opm;
}
.ab_jjl_line{
	font-size: 0;
	margin-top: 2rem;
	width: 5rem;
	height: 5px;
	background: var(--OneColor);
}

.ab_jjr{
	width: 56.5%;
	height: auto;
}
.ab_jjr_con{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.7);
	line-height: 170%;
}



.ab_jjr_num{
    margin-top: 8rem;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.ab_jjr_num_item_top{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.ab_jjr_num_item_count{
    font-size: 4rem;
    font-family: oph;
    color: #2f4ea4;
    line-height: 100%;
}
.ab_jjr_num_item_rgiht{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 0.5rem;
}
.ab_jjr_num_item_rgiht_uit{
    font-size: 4rem;
    font-family: oph;
    color: #2f4ea4;
    line-height: 100%;
}
.ab_jjr_num_item_title{
    font-size: 2rem;
    color: rgba(0,0,0,1);
    margin-top: 0.5rem;
	font-family: opm;
}



.ab_ry_box{
	width: 100%;
	height: auto;
	padding: 5rem 0;
}
.ab1_ry{
	width: 1400px;
    width: var(--mainwidth);
	aspect-ratio: 1400/430;
	margin: 0 auto;
	margin-top: 3rem;
	padding-bottom: 1rem;
}
.ab1_ry_sw{
	width: 100%;
	height: auto;
}
.ab1_ry_item{
	width: 100%;
	height: auto;
	transform: scale(0.7);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab1_ry_sw .swiper-slide-active .ab1_ry_item{
	transform: scale(1);
}
.ab1_ry_item_img{
	width: 100%;
	aspect-ratio: 554/366;
	font-size: 0;
}
.ab1_ry_item_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.ab1_ry_item_title{
	width: 100%;
	text-align: center;
	font-size: 1.375rem;
	font-family: opm;
	color: #605e5e;
	margin-top: 2rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab1_ry_sw .swiper-slide-active .ab1_ry_item_title{
	margin-top: 4rem;
}

.ab1_ry_btn_box{
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	bottom: 1.5rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.ab1_ry_btn{
	width: 3rem;
	height: 3rem;
	background: #c9c9c9;
	border-radius: 50%;
	font-size: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 10;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab1_ry_btn:hover{
	background: var(--OneColor);
}
.ab1_ry_btn svg{
	width: auto;
	height: 60%;
	fill:#ffffff;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab1_ry_btn:hover svg{
	fill:#ffffff;
}
.ab1_ry_btn_left{
	margin-right: 15%;
}
.ab1_ry_btn_right{
	margin-left: 15%;
}



.ab_wh_box{
    width: 100%;
    height: auto;
    padding: 5rem 0;
    background: #f3f6fd;
	margin-top: 5rem;
	padding-bottom: 7rem;
}
.ab_wh{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.ab_wh_item{
    width: 32%;
    aspect-ratio: 529/447;
    position: relative;
    background: #FFFFFF;
    -moz-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.01);
    -webkit-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.01);

    box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.01);
    padding: 2.5rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_wh_item:hover{
    background: var(--OneColor);
}
.ab_wh_item_back{
    position: absolute;
    width: 40%;
    height: auto;
    font-size: 0;
    z-index: 0;
    right: 1rem;
    bottom: 0;
}
.ab_wh_item_back svg{
    width: 100%;
    height: auto;
    fill:#f5f5f5;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_wh_item:hover .ab_wh_item_back svg{
    fill: #2c5ada;
}

.ab_wh_item_title{
    font-size: 1.375rem;
    font-family: opm;
    color: rgba(0,0,0,0.5);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_wh_item:hover .ab_wh_item_title{
    color: rgba(255,255,255,0.5);
}
.ab_wh_item_des{
    font-size: 1.5rem;
    font-family: opm;
    color: rgba(0,0,0,1);
    margin-top: 1.5rem;
    line-height: 150%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_wh_item:hover .ab_wh_item_des{
    color: #ffffff;
}

.ab_wh_item_ico{
    position: absolute;
    width: 5rem;
    height: auto;
    font-size: 0;
    z-index: 0;
    left: 2.5rem;
    bottom: 2.5rem;
}
.ab_wh_item_ico svg{
    width: 100%;
    height: auto;
    fill: var(--OneColor);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_wh_item:hover .ab_wh_item_ico svg{
    fill: #ffffff;
}



/*新闻中心*/
.new_top{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 5rem;
}
.new_top a{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	height: auto;
}
.new_topl{
	width: 66%;
	aspect-ratio: 923/430;
	font-size: 0;
	overflow: hidden;
}
.new_topl img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	transform: perspective(100px) translateZ(0px);
}
.new_top a:hover .new_topl img{
	transform: perspective(100px) translateZ(1px);
}
.new_topr{
	width: 34%;
	height: auto;
	background: var(--OneColor);
	overflow: hidden;
	position: relative;
	padding: 2.5rem;
}

.new_topr_data{
	font-size: 1.125rem;
	font-family: 'Arial';
	color: #FFFFFF;
	width: 5rem;
	text-align: center;
}
.new_topr_title{
	font-size: 1.75rem;
	font-family: opm;
	color: #FFFFFF;
	margin-top: 2rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.new_topr_des{
	font-size: 1.125rem;
	font-family: opm;
	color: #FFFFFF;
	margin-top: 2rem;
	line-height: 170%;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.new_topr_btn{
	position: absolute;
	left: 2.5rem;
	bottom: 2.5rem;
	width: 11rem;
	height: 3rem;
	border-radius: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 2px solid #FFFFFF;
	font-size: 1.125rem;
	color: #FFFFFF;
	font-family: opm;
}

.new_list{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.new_item{
	width: 32%;
	height: auto;
	margin-top: 2%;
	margin-right: 2%;
}
.new_item:nth-child(3n){
	margin-right: 0;
}
.new_item a{
	width: 100%;
	height: auto;
	display: block;
	background: #f6f7fa;
	padding: 2.5rem;
}
.new_item_data{
	font-size: 1.125rem;
	font-family: bjm;
	color: rgba(0,0,0,0.8);
}
.new_item_title{
	font-size: 1.375rem;
	font-family: opm;
	color: #000000;
	margin-top: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.new_item:hover .new_item_title{
	color: var(--OneColor);
}

.new_item_btn{
	width: 9rem;
	height: 3rem;
	border-radius: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--OneColor);
	font-size: 1.125rem;
	color: #FFFFFF;
	font-family: opm;
	margin-top: 1.5rem;
}


.new2_item{
	width: 32%;
	height: auto;
	margin-top: 2%;
	margin-right: 2%;
	
}
.new2_item:nth-child(3n){
	margin-right: 0;
}
.new2_item a{
	width: 100%;
	height: auto;
	display: block;
	background: #f6f7fa;
	padding-bottom: 2.5rem;
}
.new2_item_img{
	width: 100%;
	aspect-ratio: 450/317;
	font-size: 0;
	overflow: hidden;
}
.new2_item_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;

-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;

transform: perspective(100px) translateZ(0px);
}
.new2_item a:hover .new2_item_img img{
	transform: perspective(100px) translateZ(3px);
}

.new2_item_data{
	font-size: 1.125rem;
	font-family: bjm;
	color: rgba(0,0,0,0.8);
	margin-top: 2rem;
	padding:0 2.5rem;
}
.new2_item_title{
	font-size: 1.375rem;
	font-family: opm;
	color: #000000;
	margin-top: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	padding:0 2.5rem;
}
.new2_item a:hover .new2_item_title{
	color: var(--OneColor);
}

.new2_item_btn{
	width: 9rem;
	height: 3rem;
	border-radius: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--OneColor);
	font-size: 1.125rem;
	color: #FFFFFF;
	font-family: opm;
	margin-top: 1.5rem;
	margin-left: 2.5rem;
}


/*新闻详情*/
.snew{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	padding-top: 5rem;
}
.snew_title{
	font-size: 2.875rem;
	font-family: opb;
	color: rgba(0,0,0,0.8);
}
.snew_tag{
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.5);
	margin-top: 1rem;
	padding-bottom: 2rem;
}
.snew_con{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.8);
	font-family: opm;
	line-height: 170%;
	padding: 2.5rem 0;
}

.snew_page{
	width: 100%;
	height: 4rem;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.snew_page a{
	font-size: 1.125rem;
	color: #000000;
	font-family: opm;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.snew_page a:hover{
	color: var(--OneColor);
}

.snew_tj{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 4rem;
}
.snew_tj_title{
	font-size: 1.75rem;
	font-family: opm;
	color: #000000;
}
.snew_tj .new_list{
	margin-top: 0;
}

/*联系我们*/
.lx_title{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	font-size: 2.375rem;
	font-family: opb;
	margin-top: 5rem;
}
.lx_img{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 3rem;
	font-size: 0;
}
.lx_img img{
	width: 100%;
	height: auto;
}

.lx{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-bottom: 5rem;
}
.lxl{
	width: 50%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.lxli_title{
	font-size: 1.375rem;
	color: #a9a9a9;
}
.lxli_des{
	font-size: 1.625rem;
	color: #000000;
	font-family: opm;
}
.lxli_des2{
	font-size: 2.125rem;
	color: #000000;
	font-family: opm;
}
.lxli_img{
	width: auto;
	height: 9rem;
	font-size: 0;
	margin-top: 1rem;
}
.lxli_img img{
	width: auto;
	height: 100%;
}

.lxr{
	width: 50%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.lxr_item{
    width: 100%;
    height: 5rem;
    background: #f2f4f8;
    border-radius: 10px;
    margin-top: 3%;
}
.lxr_item input{
    width: 100%;
    height: 100%;
    background: none;
    padding: 0 1.5rem;
    font-size: 1.25rem;
    border: none;
}
.lxr_item2{
    width: 100%;
    height: 11rem;
    background: #f2f4f8;
    border-radius: 10px;
    margin-top: 3%;
}
.lxr_item2 textarea{
    width: 100%;
    height: 100%;
    background: none;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    border: none;
	font-family: opm;
}
.lxr_item_btn{
    width: 100%;
    height: auto;
    margin-top: 3%;
}
.lxr_item_btn a{
    width: 100%;
    height: 5rem;
    background: var(--OneColor);
    border-radius: 10px;
    font-size: 1.375rem;
    font-family: opm;
    color: #FFFFFF;
	text-align: center;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	cursor: pointer;
}
.lx_sh_ly_btn a:hover{
    -moz-box-shadow: 0px 5px 10px 0 rgba(22,67,135,0.3);
    -webkit-box-shadow: 0px 5px 10px 0 rgba(22,67,135,0.3);
    box-shadow: 0px 5px 10px 0 rgba(22,67,135,0.3);
    transform: translateY(-2px);
}


/*首页*/

.id_banner{
	width: 100%;
	height: 100vh;
}
.id_banner_sw{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
}
.id_banner_img{
	width: 100%;
	height: 100%;
	font-size: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
.id_banner_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.id_banner_con{
	width: 1400px;
    width: var(--mainwidth);
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 5;
}
.id_banner_con_t1{
	font-size: 3.625rem;
	color: #FFFFFF;
	font-family: opm;
}
.id_banner_con_t2{
	font-size: 2.625rem;
	color: #FFFFFF;
	font-family: bjm;
	text-transform: uppercase;
	line-height: 100%;
	margin-top: 1rem;
}

.id_banner_pagination{
	position: absolute;
	left: 0;
	bottom: 1rem;
    width: 100%;
    height: 2.8rem;
    z-index: 10;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 1rem;
}
.pro_item_yy .swiper-pagination-bullets{
    bottom: 0;
}
.id_banner_pagination .swiper-pagination-bullet { 
	display: inline-block; 
	width:0.7rem; 
	height:0.7rem;  
	background: #FFFFFF;
	border-radius: 50%;
    margin: 0 0.4rem;
	cursor: pointer;  
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_banner_pagination .swiper-pagination-bullet-active{ 
	background: var(--OneColor);
}

.id_pro_box{
	width: 100%;
	height: calc(100vh - 5.5rem);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.id_pro_box_back{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	font-size: 0;
}
.id_pro_box_back img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.id_proc{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	position: relative;
	z-index: 5;
}
.id_proc_sw{
	width: 100%;
	height: auto;
	position: relative;
	z-index: 0;
}
.id_proc_sw .swiper-slide{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
.id_proc_con{
	width: 35%;
	height: auto;
}
.id_proc_con_title{
	font-size: 3rem;
	font-family: opm;
	color: #000000;
}
.id_proc_con_ltitle{
	font-size: 1.625rem;
	color: #000000;
	margin-top: 1rem;
}
.id_proc_con_des{
	margin-top: 2rem;
	padding-bottom: 0.5rem;
}
.id_proc_con_des span{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.7);
	margin-top: 1.5rem;
	display: block;
	position: relative;
	padding-left: 1.2rem;
}
.id_proc_con_des span:after{
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	font-size: 0;
	background: rgba(0,0,0,0.3);
	left: 0;
	top: 0.5rem;
}
.id_proc_con_btn{
	margin-top: 3rem;
}
.id_proc_con_btn a{
	width: 12rem;
	height: 3.5rem;
	background: var(--OneColor);
	border-radius: 3.5rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.id_proc_con_btn_text{
	font-size: 1.25rem;
	color: #FFFFFF;
	font-family: opm;
}
.id_proc_con_btn_ico{
	font-size: 0;
	width: auto;
	height: 1.6rem;
	margin-left: 1rem;
}
.id_proc_con_btn_ico svg{
	width: auto;
	height: 100%;
	fill:#ffffff;
}
.id_proc_img{
	width: 60%;
	height: auto;
	max-height:90%;
	font-size: 0;
	text-align: center;
}
.id_proc_img img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height:100%;
}
.id_prob{
	width: 85%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 6rem;
}
.id_pro_swm{
	width: calc(100% - 10rem);
	height: auto;
}
.id_pro_line{
	width: 3px;
	height: 2rem;
	background: var(--OneColor);
	margin: 0 auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 0;
}
.id_pro_swm .swiper-slide-active .id_pro_line{
	opacity: 1;
}
.id_pro_title{
	text-align: center;
	font-size: 1.25rem;
	color: rgba(0,0,0,0.5);
	font-family: opm;
	height: 4rem;
	line-height: 4rem;
	position: relative;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.id_pro_swm .swiper-slide-active .id_pro_title{
	font-size: 1.875rem;
	color: var(--OneColor);
}



.id_pro_btn{
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	font-size: 0;
	margin-bottom: 0.4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	
}
.id_pro_btn svg{
	width: auto;
	height: 55%;
	fill:#888b93;
}
.id_pro_btn:hover svg{
	fill:var(--OneColor);
}


.id_ab_box{
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 5rem;
}
.id_ab_box_back{
	width: auto;
	height: 75%;
	font-size: 0;
	right: 0;
	top: 10%;
	position: absolute;
}
.id_ab_box_back img{
	width: auto;
	height: 100%;
}
.id_ab{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	z-index: 5;

}
.id_abl{
	width: 38%;
	height: auto;
	padding-bottom: 10rem;
}

.id_abl_title{
	font-size: 3rem;
	font-family: opm;
	color: #000000;
	margin-top: 2rem;
	line-height: 130%;
}
.id_abl_con{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.8);
	margin-top: 5rem;
	line-height: 170%;
}
.id_abl_btn_box{
	width: auto;
	height: auto;
	margin-top: 4rem;
}
.id_abl_btn{
	width: auto;
	height: 3.6rem;
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	background: var(--OneColor);
	border-radius: 3.6rem;
	padding: 0 1.5rem;
}
.id_abl_btn_ico{
	width: auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 0;
	margin-left: 1rem;
}
.id_abl_btn_ico svg{
	width: auto;
	height: 60%;
	margin: 0 auto;
	fill:#ffffff;
}
.id_abl_btn_title{
	font-size: 1.25rem;
	color: #FFFFFF;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	padding-left: 1rem;
	font-family: opm;
}


.id_abr{
	width: 62%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
}

.id_abrc{
	margin-top: 2rem;
}
.id_abrc_item{
	width: 36rem;
	height: 7rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.id_abrc_iteml{
	width: 18rem;
	height: auto;
	font-size: 4rem;
	font-family: bjm;
	color: var(--OneColor);
	font-weight: bold;
}

.id_abrc_itemr{
	width: 18rem;
	height: auto;
	font-size: 2rem;
	color: #000000;
	font-family: opm;
}


.id_new{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	padding: 6rem 0;
}
.id_new_title{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
.id_new_titlel{
	font-size: 3rem;
	font-family: opm;
	color: #000000;
}
.id_new_titler{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
.id_new_titler a{
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.5);
	margin-left: 2rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_new_titler a:hover{
	color: var(--OneColor);
}

.id_newt{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 2rem;
}
.id_newtl{
	width: 66%;
	aspect-ratio: 923/430;
	position: relative;
}
.id_newtl_img{
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	overflow: hidden;
}
.id_newtl_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	transform: perspective(100px) translateZ(0px);
}
.id_newtl:hover .id_newtl_img img{
	transform: perspective(100px) translateZ(2px);
}
.id_newtl_con{
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	bottom: 0;
	padding: 2.5rem;
	z-index: 5;
}
.id_newtl_con_data{
	font-size: 1.125rem;
	color: rgba(255,255,255,0.8);
	font-family: bjm;
}
.id_newtl_con_title{
	font-size: 1.375rem;
	color: rgba(255,255,255,1);
	font-family: opm;
	margin-top: 0.7rem;
}

.id_newtr{
	width: 32%;
	height: auto;
	background-image: url("../images/id_new_back.jpg");
	background-size: cover;
	background-position: center;
	padding: 2.5rem;
	position: relative;
}
.id_newtr_data{
	font-size: 1.125rem;
	color: rgba(255,255,255,1);
	font-family: bjm;
}
.id_newtr_title{
	font-size: 1.75rem;
	color: rgba(255,255,255,1);
	font-family: opm;
	line-height: 130%;
	margin-top: 1rem;
}
.id_newtr_des{
	font-size: 1.125rem;
	color: rgba(255,255,255,0.9);
	font-family: opm;
	line-height: 160%;
	margin-top: 1.5rem;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.id_newtr_btn{
	position: absolute;
	left: 2.5rem;
	bottom: 2.5rem;
	width: 11rem;
	height: 3rem;
	border-radius: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 1.125rem;
	color: #FFFFFF;
	border: 3px solid #FFFFFF;
	font-family: opm;
}


.id_newc{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.id_newc_item{
	width: 32%;
	height: auto;
	margin-top: 2%;
	margin-right: 2%;
}
.id_newc_item:nth-child(3n){
	margin-right: 0;
}
.id_newc_item a{
	width: 100%;
	height: auto;
	display: block;
	background: #eceef2;
	padding: 2.5rem;
}
.id_newc_item_data{
	font-size: 1.125rem;
	font-family: bjm;
	color: rgba(0,0,0,0.8);
}
.id_newc_item_title{
	font-size: 1.375rem;
	font-family: opm;
	color: #000000;
	margin-top: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_newc_item:hover .id_newc_item_title{
	color: var(--OneColor);
}

.id_newc_item_btn{
	width: 9rem;
	height: 3rem;
	border-radius: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--OneColor);
	font-size: 1.125rem;
	color: #FFFFFF;
	font-family: opm;
	margin-top: 1.5rem;
}

.id_cpb{
	width: 100%;
	height: auto;
	background: #f6f7fa;
	margin-top: 5rem;
	padding: 5rem 0;
}
.id_cpbt{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.id_cpbtl{
	font-size: 3rem;
	font-family: opm;
}
.id_cpbtr{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
.id_cpbtr a{
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.5);
	margin-left: 2rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_cpbtr a.id_cpbtraon{
	color: var(--OneColor);
}

.id_cpsb{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	position: relative;
	margin-top: 2rem;
}
.id_cp_sw{
	width: 100%;
	height: auto;
}
.id_cp_sw .swiper-slide{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
}


.id_cpi{
	width: 49.2%;
	height: auto;
	background: #FFFFFF;
	margin-top: 1.6%;
}
.id_cpi a{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	height: auto;
}
.id_cpi_img{
	width: 40%;
	height: auto;
	font-size: 0;
}
.id_cpi_img img{
	width: 100%;
	height: auto;
}
.id_cpic{
	width: 60%;
	height: auto;
	position: relative;
	padding: 2.5rem 0;
}
.id_cpic_title{
	font-size: 1.5rem;
	font-family: opm;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_cpi a:hover .id_cpic_title{
	color: var(--OneColor);
}
.id_cpic_des{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.7);
	margin-top: 0.5rem;
}
.id_cpic_btn{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 6rem;
	height: 2.2rem;
	border-radius: 2.2rem;
	background: var(--OneColor);
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 2.5rem;
	font-size: 1.125rem;
	color: #FFFFFF;
}


.id_cp_btn{
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	font-size: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	position: absolute;
	top: calc(50% - 1.6rem);
	
}
.id_cp_btn svg{
	width: auto;
	height: 100%;
	fill:#d5d6d9;
}
.id_cp_btn:hover svg{
	fill:var(--OneColor);
}
.id_cp_btnl{
	left: -5rem;
}
.id_cp_btnr{
	right: -5rem;
}