/*导航*/
.nav_box{
	width: 100%;
	height: 7rem;
	position: fixed;
	top: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	z-index: 1000;
}
.nav_box_on{
	height: 6rem;
	background: #FFFFFF;
	-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 15px 15px 0 rgba(0,0,0,0.02);
}

.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: 50%;
	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: auto;
	height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: center;
}
.nav_menu{
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.nav_menu_item{
    width: auto;
    height: 100%;
	position: relative;
}
.nav_menu_item>a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: auto;
	height: 100%;
	position: relative;
	padding: 0 2.5rem;
	font-size: 1.25rem;
	color: #FFFFFF;
	font-family: opm;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	overflow: hidden;
}
.nav_menu_item_on>a{
	color: var(--OneColor);
}
.nav_menu_item:hover>a{
	color: var(--OneColor);
}
.nav_menu_item>a span{
	position: relative;
	z-index: 5;
}

.nav_box_on .nav_menu_item>a{
	color: #000000;
}
.nav_box_on .nav_menu_item_on>a{
	color: var(--OneColor);
}
.nav_box_on .nav_menu_item:hover>a{
	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_lag{
	width: auto;
	height: auto;
}
.nav_lagt{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.nav_lagtl{
	font-size: 0;
	width: 2rem;
	height: auto;
}
.nav_lagtl svg{
	width: 100%;
	height: auto;
	fill:#ffffff;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.nav_box_on .nav_lagtl svg{
	fill: #000000;
}
.nav_lagtm{
	font-size: 1.125rem;
	color: #FFFFFF;
	font-family: opm;
	margin-left: 0.75rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_lagtm a{
	color:  #FFFFFF;
}
.nav_box_on .nav_lagtm{
	color: #000000;
}
.nav_box_on .nav_lagtm a{
	color:  #000000;
}
.nav_lagtr{
	font-size: 0;
	width: 1rem;
	height: auto;
	margin-left: 0.75rem;
}
.nav_lagtr svg{
	width: 100%;
	height: auto;
	fill:#ffffff;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.nav_box_on .nav_lagtr svg{
	fill: #000000;
}


.menubtn{
	display: none;
}


/*footer*/
.footer_box{
    width: 100%;
    height: auto;
	background-image: url("../images/footer_back.jpg");
	background-size: cover;
	background-position: center;
    position: relative;
    overflow: hidden;
	padding-top: 5rem;
}
.footer_back{
	position: absolute;
	width: 100%;
	height: 80%;
	left: 0;
	bottom: 0;
	z-index: 0;
	opacity: 0.4;
}
.footert{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 10;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footert_left{
	font-size: 0;
}
.footert_left img{
	width: auto;
	height: 3.6rem;
}

.footer_menu{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.footerm_item{
    width: auto;
    height: auto;
	font-size: 1.125rem;
	color: #FFFFFF;
	font-family: opm;
	margin-left: 5rem;
}
.footer{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 3rem;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footeri{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.footeri_ico{
	font-size: 0;
	width: 4.5rem;
	height: 4.5rem;
}
.footeri_ico img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.footeric{
	width: auto;
	height: 4.5rem;
	padding: 0.3rem 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-left: 1rem;
}
.footeric_title{
	font-size: 1rem;
	color: rgba(255,255,255,0.5);
}
.footeric_con{
	font-size: 1.25rem;
	color: rgba(255,255,255,1);
	font-family: opm;
}


.footer_right{
    width: 9rem;
    height: auto;
    text-align: center;
}

.footer_right_code{
    width: 100%;
    height: auto;
    font-size: 0;
	border-radius: 10px;
	overflow: hidden;
}
.footer_right_code img{
    width: 100%;
    height: auto;
}

.footer_bottom{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 5;
    color: #6a6e78;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 170%;
}
.footer_bottom a{
    color: #6a6e78;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_bottom a:hover{
    color: rgba(255,255,255,1);
}
.footer_bottom_left{
    text-align: left;
}

.footer_bottom_right{
    text-align: right;
}
.footer_bottom_right a{
    margin-left: 3rem;
}

/*nbanner*/
.nbanner{
    width: 100%;
    aspect-ratio: 1920/659;
    position: relative;
}
.nbanner_img{
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 0;
    left: 0;
    top: 0;
	overflow: hidden;
}
.nbanner_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.2);
    animation: ahniamit 1s ease forwards;
}
@keyframes ahniamit
{

    to {transform: scale(1);}

}
.nbanner_con{
    width: 1600px;
    width: var(--mainwidth);
    height: 100%;
	margin: 0 auto;
	position: relative;
    z-index: 5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 0rem;
}
.nbanner_con_title{
    font-size: 5.25rem;
    color: #FFFFFF;
    font-family: oph;
}
.nbanner_con_ltitle{
    font-size: 3rem;
	color: #FFFFFF;
    font-family: opm;
	text-transform: uppercase;
}

/*ntitle*/
.ntitle{
	font-size: 3rem;
	font-family: opm;
	color: #000000;
	text-align: center;
}
.ntitle_line{
	width: 6rem;
	height: 4px;
	font-size: 0;
	margin: 0 auto;
	margin-top: 2rem;
	background: var(--OneColor);
}
/*联系我们*/

.lx_box{
    width: 100%;
	height: auto;
	margin: 0 auto;
    padding: 8rem 0;
	background-image: url("../images/lx_back.jpg");
	background-size: cover;
	background-position: center;
}
.lx{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.lxc{
    width: 50%;
    height: auto;
}
.lxc .ntitle{
    text-align: left;
    padding-bottom: 1rem;
}
.lxc .ntitle_line{
    margin-left: 0;
}
.lxcl{
	width: 100%;
	height: auto;
	padding-top: 1.5rem;
}
.lxc_item{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
}
.lxc_item_ico{
    width: 3.8rem;
    height: 3.8rem;
    font-size: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.lxc_item:hover .lxc_item_ico{
	transform: rotate(360deg);
}
.lxc_item_ico img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.lxc_item_con{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    height: auto;
    padding-left: 1rem;
    font-size: 1.375rem;
    font-family: opm;
    color: #000000;
    line-height: 120%;
}


.lxr{
    width: 50%;
    height: auto;
    position: relative;
}
.lxr_sw_img{
    width: 100%;
    aspect-ratio: 800/514;
    font-size: 0;
    overflow: hidden;
	border-radius: 0 0 10rem 0;
}
.lxr_sw_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);
}
.lxr_sw_img img:hover{
	transform: perspective(100px) translateZ(3px);
}


.lx_sh_box{
    width: 100%;
    height: auto;
    padding: 8rem 0;
}



.lx_sh_ly_box{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	background: #f1f4f8;
    margin-top: 3rem;
	border-radius: 15px;
}
.lx_sh_ly{
    width: 64%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
	padding: 5rem;
}
.lx_sh_ly_item{
    width: 47%;
    height: 5rem;
	padding: 0 1.3rem;
    background: #FFFFFF;
    border-radius: 10px;
    margin-top: 1%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.lx_sh_ly_item_ico{
	width: auto;
	height: 2.5rem;
	font-size: 0;
}
.lx_sh_ly_item_ico img{
	width: auto;
	height: 100%;
}
.lx_sh_ly_item input{
    width: 100%;
    height: 100%;
    background: none;
    padding: 0 1rem;
    font-size: 1.25rem;
    border: none;
	font-family: opm;
}
.lx_sh_ly_item_x{
	font-size: 1.25rem;
	font-family: opm;
	color: var(--OneColor);
}
.lx_sh_ly_item2{
    width: 100%;
    height: 11rem;
    background: #FFFFFF;
    border-radius: 10px;
    margin-top: 1%;
}
.lx_sh_ly_item2 textarea{
    width: 100%;
    height: 100%;
    background: none;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    border: none;
	font-family: opm;
}
.lx_sh_ly_btn{
    width: 100%;
    height: auto;
    margin-top: 2%;
}
.lx_sh_ly_btn a{
    width: auto;
    height: 5rem;
    background: var(--OneColor);
    border-radius: 10px;
    margin-top: 1%;
    font-size: 1.375rem;
    font-family: opm;
    color: #FFFFFF;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5rem;
    -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);
}

.lx_sh_ly_note{
	font-size: 1.25rem;
	color: rgba(0,0,0,0.4);
	font-family: opm;
	margin-top: 2rem;
}

.lx_sh_ly_right{
    font-size: 0;
    width: 36%;
    aspect-ratio: 583/716;
	overflow: hidden;
	border-radius: 0 15px 15px 0;
}
.lx_sh_ly_right 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);
}
.lx_sh_ly_right img:hover{
	transform: perspective(100px) translateZ(3px);
}


/*企业概况*/
.ab_jjbb{
	width: 100%;
	height: auto;
	padding: 6rem 0;
	background-image: url("../images/ab_jj_back.jpg");
	background-size: cover;
	background-position: center;
}
.ab_jj{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.ab_jjl{
	width: 45%;
	height: auto;
}
.ab_jjl .ntitle{
	text-align: left;
}
.ab_jjl .ntitle_line{
	margin-left: 0;
}
.ab_jjl_con{
	font-size: 1.375rem;
	color: rgba(0,0,0,0.6);
	font-family: opm;
	line-height: 200%;
	margin-top: 2.5rem;
}
.ab_jjr{
	width: 50%;
	aspect-ratio: 800/561;
	font-size: 0;
	border-radius: 0 0 0 10rem;
	overflow: hidden;
}
.ab_jjr 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);
}
.ab_jjr img:hover{
	transform: perspective(100px) translateZ(3px);
}


.ab_jjr_num{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 6rem;
}

.ab_jjr_num_item_top{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
	align-items: flex-end;
}
.ab_jjr_num_item_count{
    font-size: 4.5rem;
    font-family: oph;
    color: var(--OneColor);
    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: 2.5rem;
    font-family: oph;
    color: var(--OneColor);
    line-height: 100%;
	padding-bottom: 0.3rem;
}
.ab_jjr_num_item_rgiht_uit2{
    font-size: 4.5rem;
    font-family: oph;
    color: var(--OneColor);
    line-height: 100%;
}
.ab_jjr_num_item_title{
    font-size: 1.375rem;
    color: rgba(0,0,0,0.6);
    margin-top: 1rem;
	font-family: opm;
}

.ab_lcb{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 6rem;
	position: relative;
}
.ab_lcb_back{
	position: absolute;
	width: 100%;
	height: auto;
	font-size: 0;
	left: 0;
	bottom: 4rem;
	z-index: 10;
}
.ab_lcb_back img{
	width: 100%;
	height: auto;
}
.ab_lcb_title{
	font-size: 3rem;
	font-family: opm;
}

.ab_lc{
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 3rem;
}
.ab_lc_btn{
	width: 3rem;
	height: auto;
	font-size: 0;
	cursor: pointer;
}
.ab_lc_btn svg{
	width: 100%;
	height: auto;
	fill:#ccd4dd;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_lc_btn:hover svg{
	fill:var(--OneColor);
}

.ab_lc_sw{
	width: calc(100% - 8rem);
	height: auto;
}
.ab_lc_item{
	width: auto;
	height: auto;
	position: relative;
	padding: 0 1rem;
}
.ab_lc_item:after{
	position: absolute;
	content: '';
	width: 2px;
	height: calc(100% - 22px);
	left: calc(10px + 1rem);
	top: 40px;
	background: var(--OneColor);	
}
.ab_lc_item_title{
	font-size: 3.312rem;
	font-family: opb;
	color: var(--OneColor);
	position: relative;
	padding-left: 3rem;
}
.ab_lc_item_title:after{
	position: absolute;
	content: '';
	width: 23px;
	height: 23px;
	background-image: url("../images/ab_lc_ico.png");
	background-size: cover;
	background-position: center;
	left: 0;
	top: calc(50% - 11px);
	
}
.ab_lc_item_des{
	font-size: 1.375rem;
	font-family: opm;
	color: rgba(0,0,0,0.6);
	position: relative;
	padding-left: 4.5rem;
	line-height: 160%;
	margin-top: 1.5rem;
	height: 12rem;
}
.ab_lc_item_des:after{
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	left: 3rem;
	top: 1rem;
	background: var(--OneColor);
	border-radius: 50%;
	
}
.ab_lc_item_btitle{
	font-size: 1.5rem;
	font-family: opb;
	color: rgba(0,0,0,0.7);
	height: 3rem;
	margin-top: 3rem;
}

.ab_sb{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 8rem;
}
.ab_sbt{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 3rem;
}
.ab_sbti{
	width: 19%;
	height: auto;
	background: #f7faff;
	padding:2.5rem 1.5rem;
	border-radius: 15px;
	text-align: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_sbti:hover{
	-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);
}
.ab_sbti_ico{
	width: auto;
	height: 3.2rem;
	font-size: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_sbti:hover .ab_sbti_ico{
	transform: translateY(-4px);
}
.ab_sbti_ico img{
	width: auto;
	height: 100%;
}
.ab_sbti_title{
	font-size: 1.75rem;
	font-family: opm;
	margin-top: 1.5rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_sbti:hover .ab_sbti_title{
	color: var(--OneColor);
	transform: translateY(-4px);
}
.ab_sbti_des{
	font-size: 1.25rem;
	font-family: opm;
	margin-top: 1rem;
	line-height: 150%;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_sbti:hover .ab_sbti_des{
	transform: translateY(-4px);
}

.ab_sbb{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 2%;
}
.ab_sbbi{
	width: 24%;
	aspect-ratio: 383/255;
	border-radius: 15px;
	text-align: center;
	overflow: hidden;
	font-size: 0;
}
.ab_sbbi 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);
}
.ab_sbbi:hover img{
	transform: perspective(100px) translateZ(3px);
}

.ab_clb{
	width: 100%;
	height: auto;
	padding: 7rem 0;
	background-image: url("../images/ab_cl_back.jpg");
	background-size: cover;
	background-position: center;
	margin-top: 8rem;
}
.ab_cl{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.ab_cll{
	width: 50%;
	height: auto;
}
.ab_cll .ntitle{
	text-align: left;
}

.ab_clli{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 4rem;
}
.ab_clli_ico{
	width: 7.5rem;
	height: 7.5rem;
	-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);
	border-radius: 13px;
	overflow: hidden;
	background: #FFFFFF;
	font-size: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_clli:hover .ab_clli_ico{
	-moz-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.2);
    box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.2);
}
.ab_clli_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;
	transform: perspective(100px) translateZ(0px);
}
.ab_clli:hover .ab_clli_ico img{
	transform: perspective(100px) translateZ(4px);
}
.ab_cllic{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 2rem;
}
.ab_cllic_title{
	font-size: 2rem;
	font-family: opm;
}

.ab_cllic_des{
	font-size: 1.25rem;
	font-family: opm;
	margin-top: 1rem;
}
.ab_clr{
	width: 50%;
	height: auto;
	padding-top: 5rem;
	font-size: 0;
	position: relative;
}
.ab_clri{
	height: 14rem;
	aspect-ratio: 436/254;
	font-size: 0;
	border: 6px solid #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
}
.ab_clri img{
	width:100%;
	height: 100%;
	border-radius: 10px;
	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);
}
.ab_clri:hover img{
	transform: perspective(100px) translateZ(3px);
}

.ab_clri:nth-child(1){
	position: relative;
	z-index: 0;
}
.ab_clri:nth-child(2){
	position: absolute;
	left: 18rem;
	z-index: 5;
	top: 15.5rem;
}
.ab_clri:nth-child(3){
	margin-top: 7rem;
	position: relative;
	z-index: 10;
}



/*首页*/
.id_banner{
	width: 100%;
	height: 100vh;
	position: relative;
}
.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;
	overflow: hidden;
}
.id_banner_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


.id_bannerc{
	width: 1600px;
    width: var(--mainwidth);
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 5;
}
.id_bannerc_en{
	font-size: 6.25rem;
	font-family: oph;
	color: #FFFFFF;
	-webkit-transition: all 1s 0.4s;
    -moz-transition: all 1s 0.4s;
    transition: all 1s 0.4s;
	transform: translateY(5rem);
	opacity: 0;
}
.swiper-slide-active .id_bannerc_en{
	transform: translateY(0rem);
	opacity: 1;
}
.id_bannerc_title{
	font-size: 4rem;
	font-family: opm;
	color: #FFFFFF;
	margin-top: 1rem;
	-webkit-transition: all 1.2s 0.4s;
    -moz-transition: all 1.2s 0.4s;
    transition: all 1.2s 0.4s;
	transform: translateY(7rem);
	opacity: 0;
}
.swiper-slide-active .id_bannerc_title{
	transform: translateY(0rem);
	opacity: 1;
}
.id_bannerc_ltitle{
	font-size: 1.375rem;
	font-family: opm;
	color: rgba(255,255,255,0.6);
	margin-top: 0.6rem;
	-webkit-transition: all 1.2s 0.6s;
    -moz-transition: all 1.2s 0.6s;
    transition: all 1.2s 0.6s;
	transform: translateY(7rem);
	opacity: 0;
}
.swiper-slide-active .id_bannerc_ltitle{
	transform: translateY(0rem);
	opacity: 1;
}
.id_bannerc_btn{
	width: auto;
	height: auto;
	margin-top: 4rem;
	-webkit-transition: all 1.2s 0.8s;
    -moz-transition: all 1.2s 0.8s;
    transition: all 1.2s 0.8s;
	transform: translateY(7rem);
	opacity: 0;
}
.swiper-slide-active .id_bannerc_btn{
	transform: translateY(0rem);
	opacity: 1;
}
.id_bannerc_btn a{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 14rem;
	height: 4rem;
	background: var(--OneColor);
	border-radius: 4rem;
	font-family: opm;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_bannerc_btn a:hover{
	-moz-box-shadow: 0px 0px 20px 0 rgba(255,255,255,0.5);
    -webkit-box-shadow: 0px 0px 20px 0 rgba(255,255,255,0.5);
    box-shadow: 0px 0px 20px 0 rgba(255,255,255,0.5);
	transform: translateY(-3px);
}
.id_bannerc_btn_text{
	font-size: 1.25rem;
	color: #FFFFFF;
}
.id_bannerc_btn_ico{
	font-size: 0rem;
	width: auto;
	height: 1.3rem;
	margin-left: 0.2rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_bannerc_btn a:hover .id_bannerc_btn_ico{
	margin-left: 0.6rem;
}
.id_bannerc_btn_ico svg{
	width: auto;
	height: 100%;
	fill:#ffffff;
}


.id_banner_menub{
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 2000;
	left: 0;
	bottom: 5rem;
}
.id_banner_menu{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.id_banner_menu_l{
	width: 1.8rem;
	height: 2.5rem;
	border: 2px solid #FFFFFF;
	border-radius: 1.8rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	font-size: 0;
}
.id_banner_menu_l span{
	display: block;
	width: 2px;
	height: 7px;
	font-size: 0;
	background: #FFFFFF;
	border-radius: 2px;
	margin-top: 0.4rem;
	opacity: 0;
	animation: zhbminiamit 1.5s ease infinite;
}
@keyframes zhbminiamit

{

    50%{
        opacity: 1;
        transform: translateY(0.4rem);
    }
    100%{
        opacity: 0;
        transform: translateY(0.4rem);
    }

}
.id_banner_menu_ll{
	width: 10rem;
	height: 1px;
	background: #FFFFFF;
	font-size: 0;
	margin-left: 1.5rem;
}
.id_banner_menu_p{
	width: auto;
	height: auto;
	margin-left: 1.5rem;
}

.id_banner_pagination{
    width: auto;
    height: auto;
    z-index: 10;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.pro_item_yy .swiper-pagination-bullets{
    bottom: 0;
}
.id_banner_pagination .swiper-pagination-bullet { 
	display: inline-block; 
	width:0.4rem; 
	height:0.4rem;  
	background: none;
	border: 1px solid #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: #FFFFFF;
}
.id_banner_menu_r{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	font-size: 1.125rem;
	font-family: opb;
	color: #FFFFFF;
	margin-left: 1.5rem;
}
.id_banner_menu_rline{
	font-size: 1rem;
	padding: 0 0.3rem;
}

.id_abb{
	width: 100%;
	height: auto;
	background-image: url("../images/id_ab_back.jpg");
	background-size: cover;
	background-position: center;
	padding: 10rem 0 8rem 0;
}
.id_ab{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
.id_abl{
	width: 40%;
	height: auto;
}
.id_abl_img{
	width: auto;
	height: 6.5rem;
	font-size: 0;
}
.id_abl_img img{
	width: auto;
	height: 100%;
}
.id_abl .ntitle{
	text-align: left;
	margin-top: 3rem;
}
.id_abl .ntitle_line{
	margin-left: 0;
}
.id_abl_con{
	font-size: 1.375rem;
	font-family: opm;
	color: rgba(0,0,0,0.6);
	line-height: 200%;
	margin-top: 3rem;
}
.id_abl_btn{
	margin-top: 2rem;
}
.id_abl_btn a{
	font-size: 1.25rem;
	font-family: opm;
	color: var(--OneColor);
}


.id_ab_num{
    width: 47%;
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-bottom: 4rem;
}
.id_ab_num_item{
	width: 50%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin-top: 7rem;
}
.id_ab_num_item:nth-child(2n){
	width: 38%
}
.id_ab_num_item_ico{
	width: 6rem;
	height: 6rem;
	font-size: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_ab_num_item:hover .id_ab_num_item_ico{
	transform: scale(1.03);
}
.id_ab_num_item_ico img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.id_ab_num_itemc{
	width: calc(100% - 6rem);
	height: 6rem;
	padding-left: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.id_ab_num_item_top{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
	align-items: flex-end;
}
.id_ab_num_item_count{
    font-size: 2.75rem;
    font-family: oph;
    color: var(--OneColor);
    line-height: 100%;
}
.id_ab_num_item_rgiht{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 0.5rem;
}
.id_ab_num_item_rgiht_uit{
    font-size: 1.75rem;
    font-family: opm;
    color: var(--OneColor);
    line-height: 100%;
	padding-bottom: 0.3rem;
}
.id_ab_num_item_rgiht_uit2{
    font-size: 2.75rem;
    font-family: oph;
    color: var(--OneColor);
    line-height: 100%;
}
.id_ab_num_item_title{
    font-size: 1.375rem;
    color: rgba(0,0,0,0.6);
	font-family: opm;
	margin-top: 0.6rem;
}

.id_ys{
	width: 100%;
	height: 100vh;
	position: relative;
}

.id_ys_titleb{
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	top: 8rem;
	z-index: 10;
}
.id_ys_title{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.id_ys_title .ntitle{
	text-align: left;
	color: #FFFFFF;
}
.id_ys_title .ntitle_line{
	margin-left: 0;
}

.id_ys_sw{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	left: 0;
	top: 0;
}
.id_ys_img{
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 0;
	left: 0;
	top: 0;
}
.id_ys_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.1);
	-webkit-transition: all 3s 0.8s;
    -moz-transition: all 3s 0.8s;
    transition: all 3s 0.8s;
}
.swiper-slide-active .id_ys_img img{
	transform: scale(1);
}
.id_ysc{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding-bottom: 5rem;
}
.id_ysc_title{
	font-size: 3rem;
	font-family: opm;
	color: #FFFFFF;
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
	opacity: 0;
	transform: translateY(5rem);
}
.swiper-slide-active .id_ysc_title{
	opacity: 1;
	transform: translateY(0rem);
}
.id_ysc_des{
	font-size: 1.375rem;
	font-family: opm;
	color: rgba(255,255,255,0.8);
	line-height: 200%;
	margin-top: 1.5rem;
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
	opacity: 0;
	transform: translateY(5rem);
}
.swiper-slide-active .id_ysc_des{
	opacity: 1;
	transform: translateY(0rem);
}

.id_ysb{
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	bottom: 7rem;
}
.id_ysb:after{
	position: absolute;
	content: '';
	width: 100%;
	height: 0.2rem;
	z-index: -1;
	font-size: 0;
	background: rgba(255,255,255,0.2);
	left: 0;
	top: 0.5rem;
}
.id_ysl{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.id_ysm{
	width: 100%;
	height: auto;
	padding: 0 5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
}


.id_ysmi{
	width: auto;
	height: auto;
	position: relative;
	cursor: pointer;
	z-index: 5;
}
.id_ysmi_back{
	position: absolute;
	z-index: 0;
	width: 0px;
	height: 0.2rem;
	font-size: 0;
	background: var(--OneColor);
	left: 0rem;
	bottom: 0.5rem;
	opacity: 0;
}
.id_ysmi_on .id_ysmi_back{
	opacity: 1;
}
.id_ysmi_d{
	width: 1.2rem;
	height: 1.2rem;
	font-size: 0;
	background: #FFFFFF;
	border: 0.1rem solid #FFFFFF;
	border-radius: 50%;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_ysmi_on .id_ysmi_d{
	background: var(--OneColor);
	border: 0.3rem solid var(--OneColor);
}
.id_ysmi_text{
	position: absolute;
	width: 9rem;
	height: auto;
	left: calc(50% - 4.5rem);
	top: 2rem;
	font-size: 1.45rem;
	text-align: center;
	color: #FFFFFF;
}
.id_ysmi_ico{
	position: absolute;
	width: 7rem;
	height: 7rem;
	font-size: 0;
	left: calc(50% - 3.5rem);
	bottom: 2.5rem;
	-webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    transition: all 0.8s;
	opacity: 0;
}
.id_ysmi_ico img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.id_ysmi_on .id_ysmi_ico{
	opacity: 1;
}

.id_ysb_bt{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.id_ysb_btn{
	width: 3.2rem;
	height: 3.2rem;
	font-size: 0;
	background: var(--OneColor);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 1rem;
	cursor: pointer;
}
.id_ysb_btn svg{
	width: auto;
	height: 40%;
	margin: 0 auto;
	fill:#ffffff;
}
.id_zzb{
	width: 100%;
	height: 100vh;
	background-image: url("../images/id_ry_back.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.id_zz{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.id_zzl{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.id_zzl_title .ntitle{
	text-align: left;
}
.id_zzl_title .ntitle_line{
	margin-left: 0;
}
.id_zzl_btn a{
	font-size: 1.25rem;
	color: var(--OneColor);
	font-family: opm;
}

.id_zzm{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.id_zzmi{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.id_zzmi_ico{
	width: 7rem;
	height: 7rem;
	font-size: 0;
	-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 35px 0 rgba(0,0,0,0.08);
	border-radius: 10px;
	overflow: hidden;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_zzmi:hover .id_zzmi_ico{
	background: #FFFFFF;
	-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 35px 0 rgba(0,0,0,0.08);
}
.id_zzmi_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;
	transform: perspective(100px) translateZ(0px);
}
.id_zzmi:hover .id_zzmi_ico img{
	transform: perspective(100px) translateZ(3px);
}
.id_zzmic{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 2rem;
}
.id_zzmic_title{
	font-size: 2rem;
	color: #2a2a2a;
	font-family: opm;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_zzmi:hover .id_zzmic_title{
	color: var(--OneColor);
}
.id_zzmic_des{
	font-size: 1.375rem;
	color: rgba(0,0,0,0.6);
	font-family: opm;
	margin-top: 1rem;
}
.id_zzr{
	width: 38%;
	height: auto;
}
.id_zzr img{
	width: 100%;
	height: auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	transform: perspective(100px) translateZ(0px);
}
.id_zzr img:hover{
	transform: perspective(100px) translateZ(2px);
}


.id_zn{
	width: 100%;
	height: 100vh;
	position: relative;
}

.id_zn_titleb{
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	top: 8rem;
	z-index: 10;
}
.id_zn_title{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.id_zn_title .ntitle{
	text-align: left;
	color: #FFFFFF;
}
.id_zn_title .ntitle_line{
	margin-left: 0;
}

.id_zn_sw{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	left: 0;
	top: 0;
}
.id_zn_img{
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 0;
	left: 0;
	top: 0;
}
.swiper-slide-active .id_zn_img{
	opacity: 1;
}
.id_zn_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.1);
	-webkit-transition: all 3s 0.8s;
    -moz-transition: all 3s 0.8s;
    transition: all 3s 0.8s;
}
.swiper-slide-active .id_zn_img img{
	transform: scale(1);
}
.id_zncb{
	width: 1600px;
    width: var(--mainwidth);
	height: 100%;
	margin: 0 auto;
}
.id_znc{
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.id_znc_count{
	font-size: 1.125rem;
	font-family: opb;
	color: #FFFFFF;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	-webkit-transition: all 1s 0.4s;
    -moz-transition: all 1s 0.4s;
    transition: all 1s 0.4s;
	transform: translateY(5rem);
	opacity: 0;
}
.swiper-slide-active .id_znc_count{
	transform: translateY(0rem);
	opacity: 1;
}
.id_znc_count div{
	padding: 0 0.3rem;
}
.id_znc_title{
	font-size: 2rem;
	font-family: opm;
	color: #FFFFFF;
	margin-top: 2.5rem;
	-webkit-transition: all 1s 0.4s;
    -moz-transition: all 1s 0.4s;
    transition: all 1s 0.4s;
	transform: translateY(5rem);
	opacity: 0;
}
.swiper-slide-active .id_znc_title{
	transform: translateY(0rem);
	opacity: 1;
}
.id_znc_des{
	font-size: 1.375rem;
	font-family: opm;
	margin-top: 1.5rem;
	line-height: 200%;
	color: rgba(255,255,255,0.8);
	-webkit-transition: all 1s 0.4s;
    -moz-transition: all 1s 0.4s;
    transition: all 1s 0.4s;
	transform: translateY(5rem);
	opacity: 0;
}
.swiper-slide-active .id_znc_des{
	transform: translateY(0rem);
	opacity: 1;
}

.id_zntb{
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 7rem;
	z-index: 20;
}

.id_znt{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.id_zn_btn{
	width: 3.2rem;
	height: 3.2rem;
	font-size: 0;
	background: var(--OneColor);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 1rem;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_zn_btn:hover{
	transform: translateY(-3px);
	-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 5px 15px 0 rgba(255,255,255,0.5);
}
.id_zn_btn svg{
	width: auto;
	height: 40%;
	margin: 0 auto;
	fill:#ffffff;
}

.id_newb{
	width: 100%;
	height: auto;
	padding: 7rem 0;
	background-image: url("../images/id_news_back.jpg");
	background-size: cover;
	background-position: center;
}
.id_new{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.id_newt{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.id_newt .ntitle_line{
	margin-left: 0;
}
.id_newtr a{
	font-size: 1.25rem;
	color: var(--OneColor);
	font-family: opm;
}

.id_new_sw{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 4rem;
}

.id_new_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_new_sw a:hover .id_new_title{
	color: var(--OneColor);
}

.id_new_data{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.6);
	margin-top: 1rem;
}
.id_new_img{
	width: 100%;
	aspect-ratio: 493/285;
	font-size: 0;
	border-radius: 15px;
	overflow: hidden;
	margin-top: 2rem;
}
.id_new_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_new_sw a:hover .id_new_img img{
	transform: perspective(100px) translateZ(3px);
}




.id_new_btnb{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	position: relative;
	margin-top: 3rem;
}


.id_new_btnb:after{
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	left: 0;
	top: 50%;
	font-size: 0;
	background: rgba(0,0,0,0.1);
	z-index: 0;
}
.id_new_btn{
	width: 3.2rem;
	height: 3.2rem;
	font-size: 0;
	background: var(--OneColor);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 1rem;
	cursor: pointer;
	position: relative;
	z-index: 5;
}
.id_new_btn svg{
	width: auto;
	height: 40%;
	margin: 0 auto;
	fill:#ffffff;
}

.id_prob{
	width: 100%;
	height: 100vh;
	background-image: url("../images/id-pro_back.jpg");
	background-size: cover;
	background-position: center;
	padding-top: 7rem;
}
.id_pro{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.id_prot{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.id_protl .ntitle_line{
	margin-left: 0;
}
.id_protr{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

.id_protri{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-left: 5rem;
	cursor: pointer;
}
.id_protri_ico{
	width: 5rem;
	height: 5rem;
	font-size: 0;
	position: relative;
}
.id_protri_ico img{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_protri_ico img:nth-child(2){
	opacity: 0;
}
.id_protri_on .id_protri_ico img:nth-child(2){
	opacity: 1;
}
.id_protri_text{
	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;
}
.id_protri_on .id_protri_text{
	color: rgba(0,0,0,1);
}

.id_pro_sw{
	width: 100%;
	height: auto;
}

.id_pron_sw{
	width: 100%;
	height: auto;
}
.id_pron_sw .swiper-slide{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
	width: 100%;
	height: auto;
	padding-bottom: 2rem;
	z-index: 5;
}
.id_pron_sw .swiper-slide-active{
	
	z-index: 15;
}
.id_pronl{
	width: 45%;
	height: auto;
	padding-top: 5rem;
}
.id_pronl_title{
	font-size: 2rem;
	font-family: opb;
	color: #000000;
	text-transform: uppercase;
	-webkit-transition: all 1s 0.5s;
    -moz-transition: all 1s 0.5s;
    transition: all 1s 0.5s;
	transform: translateY(5rem);
	opacity: 0;
}
.id_pron_sw .swiper-slide-active .id_pronl_title{
	transform: translateY(0rem);
	opacity: 1;
}
.id_pronl_des{
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.6);
	line-height: 160%;
	-webkit-transition: all 1s 0.5s;
    -moz-transition: all 1s 0.5s;
    transition: all 1s 0.5s;
	transform: translateY(5rem);
	opacity: 0;
}
.id_pron_sw .swiper-slide-active .id_pronl_des{
	transform: translateY(0rem);
	opacity: 1;
}
.id_pronl_btn{
	margin-top: 3rem;
	font-size: 1.25rem;
	font-family: opm;
	-webkit-transition: all 1s 0.5s;
    -moz-transition: all 1s 0.5s;
    transition: all 1s 0.5s;
	transform: translateY(5rem);
	opacity: 0;
	
}
.id_pron_sw .swiper-slide-active .id_pronl_btn{
	transform: translateY(0rem);
	opacity: 1;
}
.id_pronl_btn a{
	color: var(--OneColor);
}

.id_pronr{
	width: 45%;
	height: auto;
	font-size: 0;
	opacity: 0;
	-webkit-transition: all 2s;
    -moz-transition: all 2s;
    transition: all 2s;
}
.id_pron_sw .swiper-slide-active .id_pronr{
	opacity: 1;
}
.id_pronr img{
	width: 100%;
	height: auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;

transform: perspective(100px) translateZ(0px);
}
.id_pronr img:hover{
	transform: perspective(100px) translateZ(2px);
}

.id_pronm{
	position: absolute;
	left: 0;
	bottom: 2rem;
	z-index: 100;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}


.id_pronm_btn{
	width: 3.2rem;
	height: 3.2rem;
	font-size: 0;
	background: var(--OneColor);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	position: relative;
	z-index: 5;
}
.id_pronm_btn svg{
	width: auto;
	height: 40%;
	margin: 0 auto;
	fill:#ffffff;
}
.id_pronm_btnl{
	margin-right: 1rem;
}
.id_pronm_btnr{
	margin-left: 1rem;
}

.id_pronmc{
	width: calc(27rem + 40px);
	height: auto;
}
.id_pronmc_sw{
	width: 100%;
	height: auto;
	position: relative;
	z-index: 20;
}
.id_pronmc_sw .swiper-slide{
	position: relative;
	width: 100%;
	height: auto;
	z-index: 40;
}
.id_pronmci{
	width: 100%;
	aspect-ratio: 1/1;
	font-size: 0;
	border-radius: 50%;
	border: 3px solid #e6e6e6;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	cursor: pointer;
}
.id_pronmc_sw .swiper-slide-active .id_pronmci{
	border: 3px solid var(--OneColor);
}
.id_pronmci img{
	width: auto;
	height: auto;
	max-width: 90%;
	max-height: 90%;
	margin: 0 auto;
}