@media screen and (max-width:1023px)and (min-width:300px)
{
/*nav*/
.gz_nav_box{
	width: 100%;
	height: 8vh;
	position: sticky;
	top: 0;
	z-index: 500;
	background: #FFFFFF;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_nav_boxon{
	-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);
}

.gz_nav{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
}
.gz_nav_logo{
	width: 20%;
	text-align: left;
	padding-left: 5%;
}
.gz_nav_logo img{
	height: 5vh;
	margin-top: 1.5vh;
}
.gz_nav_main{
	position: absolute;
	width: 0%;
	overflow: hidden;
	height: auto;
	left: auto;
	right: 0;
	top: 8vh;
	background:#FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	z-index: -1;
	opacity: 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	padding: 2rem 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_nav_mainon{
	width: 100%;
	z-index: 10;
	opacity: 1;
}
.gz_nav_menu{
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}
.gz_nav_menu_line{
	width: 1rem;
	height: 2px;
	background: var(--OneColor);
	border-radius: 0%;
	margin: 0;
	margin: 0 auto;
}

.gz_nav_menu_item{
	width: 100%;
	height: auto;
	position: relative;
	display: block;
	text-align: center;
	padding: 2rem 0;
}
.gz_nav_menu_item>a{
	font-size: 1.375rem;
	height: auto;
	color: #000000;
	font-family: opm;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_nav_menu_item:hover>a{
	color: var(--OneColor);
}


.gz_nav_menu_down{
	width: 100%;
	height: 0;
	overflow: hidden;
	background: #FFFFFF;
	position: relative;
	left: 0%;
	z-index: 5;
	top: 0%;
	opacity: 0;
	padding-top: 0rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	-moz-box-shadow: 0px 4px 35px 0 rgba(0,0,0,0.0);
    -webkit-box-shadow: 0px 4px 35px 0 rgba(0,0,0,0.0);
    box-shadow: 0px 4px 35px 0 rgba(0,0,0,0.0);
	

}
.gz_nav_menu_item:hover .gz_nav_menu_down{
	top: 0%;
	height: auto;
	opacity: 1;
	padding-top: 1rem;
}

.gz_nav_menu_down a{
	display: block;
	text-align: center;
	padding: 0.5rem 0;
	line-height: normal;
	font-family: opr;
	height: auto;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	font-size: 1.125rem;
}
.gz_nav_menu_down a:hover{
	color: var(--OneColor);
}

.gz_nav_menu_item_pro{
	position: relative;
}


.gz_nav_menu_down_pro{
	width: 100%;
	height: 0;
	overflow: hidden;
	position: relative;
	left: 0%;
	z-index: 5;
	top: 0%;
	opacity: 0;
	padding-top: 0rem;
	background: #FFFFFF;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.gz_nav_menu_item_pro:hover .gz_nav_menu_down_pro{
	top: 0%;
	opacity: 1;
	padding-top: 1rem;
	height: auto;
}
.gz_nav_menu_down_pro_left{
	width: 100%;
	height: auto;
	padding: 0rem;
}
.gz_nav_menu_down_pro_left>a{
	display: block;
	text-align: center;
	line-height: normal;
	font-family: opr;
	height: auto;
	padding: 0.5rem 0;
	margin: 0;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	font-size: 1.125rem;
}
.gz_nav_menu_down_pro_left>a.gz_nav_mdpl_aon{
	color: #000000;
}
.gz_nav_menu_down_pro_left>a:after{
	display: none;
}

.gz_nav_menu_down_pro_right{
	display: none;
}
	
.gz_nav_search{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	color: #FFFFFF;
	position: relative;
	margin-top: 2rem;
	margin-bottom: 2rem;
	padding-right: 3.3rem;
}
.gz_nav_search_text{
	position: relative;
	width: 20rem;
	height: 3.3rem;
	line-height: 3.3rem;
	border: 1px solid var(--OneColor);
	left: 3.3rem;
	z-index: 0;
	border-radius: 1.65rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 1;
}
.gz_nav_search:hover .gz_nav_search_text{
	width: 20rem;
	left: 3.3rem;
	opacity: 1;
}
	
.menubtn{
	width: 25px;
	position: absolute;
	right: 5%;
	top: calc(50% - 10px);
	z-index: 10;
	display: block;
}
/* nav-icon-5 */
.nav-icon-5{  width: 25px; z-index: 20;  height: 20px; position: relative;  cursor: pointer;}
.nav-icon-5 span{  background-color:var(--OneColor);  position: absolute;  border-radius:3px;  transition: 0.3s cubic-bezier(.8, .5, .2, 1.4);  width:100%;  height: 3px;  transition-duration: 500ms}
.nav-icon-5 span:nth-child(1){  top:0px;  left: 0px;}
.nav-icon-5 span:nth-child(2){  top:8px;  left: 0px;  opacity:1;}
.nav-icon-5 span:nth-child(3){  bottom:0px;  left: 0px;}
.nav-icon-5:not(.open):hover span:nth-child(1){  transform: rotate(0deg) scaleY(1.1);}
.nav-icon-5:not(.open):hover span:nth-child(2){  transform: rotate(0deg) scaleY(1.1);}
.nav-icon-5:not(.open):hover span:nth-child(3){  transform: rotate(0deg) scaleY(1.1);}
.nav-icon-5.open span:nth-child(1){  transform: rotate(45deg);  top: 8px;}
.nav-icon-5.open span:nth-child(2){  opacity:0;}
.nav-icon-5.open span:nth-child(3){  transform: rotate(-45deg);  top: 8px;}

/*nbanner*/
.gz_nbanner_title{
	font-size: 3.25rem;
	padding: 0 3rem;
}

.gz_menu{
	width: 100%;
	height: 14rem;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 30px;
	padding: 0 2rem;
	margin-top: -4rem;
	position: relative;
	z-index: 5;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.gz_menu>a{
	width: 30%;
	height: auto;
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: center;
}

.gz_menu_ico{
	width: 4.5rem;
	height: 4.5rem;
	margin: 0 auto;
}
.gz_menu_ico>span{
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background-size: 3rem auto;
	background-position: top center;
	background-repeat: no-repeat;
	margin-top: calc(0.75rem - 2px);
}
.gz_menu_title{
	height: 4rem;
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 0rem;
	margin-top: 1rem;
}
.gz_menu_title_cn{
	font-size: 1.5rem;
}


/*menu2*/
.gz_menu2{
	width: 100%;
	height: 5rem;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 20px;
	padding: 0 1rem;
	margin-top: -2.5rem;
	position: relative;
	z-index: 5;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.gz_menu2_a{
	width: auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gz_menu2_a>a{
	
	font-size: 1.125rem;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	text-align: center;
}
.gz_menu2_a>a:hover{
	color: var(--OneColor);
}
.gz_menu2_aon>a{
	color: var(--OneColor);
}
.gz_menu2_line{
	width: 1px;
	height: 1.6rem;
	background: rgba(0,0,0,0.2);
	margin: 0 1rem;
}

/*title*/
.gz_title{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	border-top: 1px solid var(--OneColor);
	position: relative;
	padding: 1.5rem 0;
	/*margin-top: 4rem;*/
}
.gz_title:after{
	position: absolute;
	content: '';
	width: 50%;
	height: 3px;
	background: var(--OneColor);
	left: 25%;
	top: -3px;
}
.gz_title_cn{
	font-size: 2.125rem;
	text-align: center;
}
.gz_title_line{
	display: none;
}
.gz_title_en{
	font-size: 1.5rem;
	text-align: center;
}
	
.gz_yy_jg{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.gz_yy_jg_con{
	width: 49%;
	height: calc(94vw * 0.3266 * 402 / 463);
	margin-right: 0%;
	margin-bottom: 2%;
}
.gz_yy_jg_con:first-child{
	width: 100%;
	height: calc(94vw * 0.3266 * 402 / 463);
	margin-right: 0%;
	margin-bottom: 2%;
}
.gz_yy_jg_con_title{
	width: 100%;
	height: auto;
	color: #FFFFFF;
	text-align: center;
	font-size: 1.5rem;
	color: #FFFFFF;
	font-family: opm;
	z-index: 5;
}

.gz_yy_pro{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.gz_yy_pro_con{
	width: 48.5%;
	height:auto;
	position: relative;
	margin-right: 3%;
	margin-bottom: 3%;
}
.gz_yy_pro_con:nth-child(3n){
	margin-right: 3%;
}
.gz_yy_pro_con:nth-child(2n){
	margin-right: 0%;
}
.gz_yy_pro_con_img{
	width: 100%;
	height: calc((94vw * 0.485 * 0.96) * 292 / 446);
	overflow: hidden;
}
.gz_yy_pro_con_title{
	padding-top: 1rem;
	padding-bottom: 0.5rem;
	font-size: 1.25rem;
}

.gz_yy_al{
	width: 94%;
	height: auto;
	margin: 0 auto;
}
.gz_yy_al_box{
	width: 94vw;
	height: auto;
	margin: 0 auto;
	position: relative;
	padding-top: 4rem;
}
.gz_yy_al_img{
	position: relative;
	width: 100%;
	height: calc(94vw * 478 / 652);
	left: 0%;
	bottom: auto;
}

.gz_yy_al_title{
	position: absolute;
	width: 100%;
	font-size: 1.625rem;
	font-family: opm;
	text-align: center;
	top: 0;
	right: 0;
}
.gz_yy_al_con{
	width: 100%;
	height: auto;
	margin: 0 auto;
	background: #FFFFFF;
	-moz-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.03);
    -webkit-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.03);
    box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.03);
	padding: 2rem 0;
	padding-left: 2rem;
	padding-right: 2rem;
	line-height: 1.5rem;
	overflow: auto;
}
	
	
.gz_yy_al_menu{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 2rem;
	margin-bottom: 3rem;
}
/*footer*/
.gz_footer_box{
	width: 100%;
	height: auto;
	background: #0c0c0c;
	padding-top: 5rem;
}
.gz_footer{
	width: 90%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.gz_footer_menu{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.gz_footer_menu_con{
	margin-right: 0rem;
	width: 33.33%;
	text-align: center;
}
.gz_footer_menu_con>a{
	display: block;
}
.gz_footer_menu_at{
	font-size: 1.312rem;
	color: #FFFFFF;
	margin-bottom: 1.5rem;
}
.gz_footer_menu_con>a.gz_footer_menu_a{
	display: none;
}

.gz_footer_contact_ico{
	text-align: center;
	margin-top: 2rem;
}	
.gz_footer_contact_ico>img{
	height: 4rem;
}
.gz_footer_contact_tel{
	font-size: 2.25rem;
	text-align: center;
}
.gz_footer_contact_tel_title{
	color: rgba(249,249,249,0.4);
	margin-top: 0.5rem;
	text-align: center;
}
.gz_footer_contact_btn{
	margin-top: 1.5rem;
	text-align: center;
}
.gz_footer_bottom{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 0;
	border-top: 1px solid rgba(255,255,255,0.1);
	margin-top: 5rem;
}
.gz_footer_bottom_left{
	width: 100%;
	text-align: center;
	font-size: 1.125rem;
	color: rgba(255,255,255,0.2);
}
.gz_footer_bottom_left a{
	color: rgba(255,255,255,0.2);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_footer_bottom_left a:hover{
	color: rgba(255,255,255,1);
}
.gz_footer_bottom_right{
	display: none;
}

.gz_yy_gs{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.gz_yy_gs_left{
	width: 100%;
	height: calc(94vw * 428 / 700);
}
	
.gz_yy_gs_right{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 2rem;
}
.gz_yy_gs_right_title{
	font-size: 1.875rem;
	text-align: center;
}
.gz_yy_gs_right_con{
	height: calc(100% - 5rem);
	font-size: 1.125rem;
	color: rgba(0,0,0,0.8);
	overflow: auto;
	line-height: 170%;
	margin-top: 1rem;
}


/*联系我们*/

.gz_join_title{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--OneColor);
	position: relative;
	padding: 1.5rem 0;
	margin-top: 0rem;
}
.gz_join_title:after{
	position: absolute;
	content: '';
	width: 50%;
	height: 3px;
	background: var(--OneColor);
	left: 25%;
	top: -3px;
}
.gz_join_title_left{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.gz_title_right{
	text-align: center;
	margin-top: 1.5rem;
}
.gz_title_right>a{
	font-size: 1.25rem;
	color: #333333;
	margin-left: 0rem;
	margin: 0 1rem;
}
	

.gz_lx_join{
	width: 94%;
	height: auto;
	margin: 0 auto;
}

.gz_lx_join_con_top_title{
	font-size: 1.25rem;
}

.gz_lx_join_page{
	margin-top: 2rem;
}


.gz_lx_lxbox{
	width: 100%;
	height: auto;
	padding: 5vh 0;
	background-image: linear-gradient(to bottom,#ffffff,#f9f9f9);
	margin-top: 8vh;
}
.gz_lx_lx{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.5rem;
}
.gz_lx_lx_left{
	width: 100%;
	height: calc((94vw - 3rem) * 496 / 651);
}

.gz_lx_lx_right{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 2rem;
}
.gz_lx_lx_right_title{
	width: auto;
	height: auto;
	background-image: url("../images/address.svg");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 2.5rem 2.5rem;
	padding-left: 3rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}
.gz_lx_lx_right_title_1{
	font-size: 1.75rem;
	height: 2.5rem;
	line-height: 2.5rem;
	font-family: opm;
}
.gz_lx_lx_right_title_2{
	font-size: 1.375rem;
	font-family: opm;
	margin-top: 0.5rem;
}

.gz_lx_lx_right_item{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	font-size: 1.375rem;
	color: rgba(0,0,0,0.7);
	line-height: 170%;
}
.gz_lx_lx_right_item_title{
	width: 4.5rem;
}
.gz_lx_lx_right_item_con{
	width: calc(100% - 4.5rem);
}

/*新闻详情*/
.gz_snew{
	width: 94%;
	height: auto;
	margin:  auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.gz_snew_s{
	margin: 2rem auto;
	
}
.gz_snew_left{
	width: 100%;
	height: auto;
	-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);
	background: #FFFFFF;
	padding: 3rem 2.5rem;
}
.gz_snew_left_title{
	width: 100%;
	height: auto;
	font-size: 1.875rem;
}

.gz_snew_left_des{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.7);
	font-family: opm;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding-bottom: 1rem;
	margin-top: 2rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between
}
.gz_snew_left_des>span{
	margin-right: 0;
}


.gz_snew_left_page{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-top: 1px solid rgba(0,0,0,0.1);
	margin-top: 2rem;
	padding-top: 2rem;
}
.gz_snew_left_page>a{
	font-size: 1.25rem;
	width: 100%;
	height: auto;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
	color: rgba(0,0,0,0.7);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	margin-top: 0.5rem;
}
.gz_snew_left_page>a:hover{
	color: var(--OneColor);
}

.gz_snew_right{
	width: 100%;
	height: auto;
	-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);
	background: #FFFFFF;
	padding: 2rem;
	margin-top: 2rem;
	
}

.gz_snew_right_title{
	font-size: 1.25rem;
	font-family: opm;
}


/*关于我们*/

.gz_ab_box{
	width: 100%;
	height: auto;
	background-image: url("../images/ab_jj_back.png");
	background-repeat: no-repeat;
	background-position: left 90%;
	background-size: 27rem auto;
}
.gz_ab_title{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	border-top: 1px solid var(--OneColor);
	position: relative;
	padding: 1.5rem 0;
	/*margin-top: 4rem;*/
}
.gz_ab_title:after{
	position: absolute;
	content: '';
	width: 50%;
	height: 3px;
	background: var(--OneColor);
	left: 25%;
	top: -3px;
}
.gz_ab_title_left{
	width: 100%;
	height: auto;
}
.gz_ab_title_right{
	width: 100%;
	height: auto;
}
.gz_ab_title_right_top{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 1rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding-bottom: 3rem;
}
.gz_ab_title_right_top>div{
	width: 100%;
	height: auto;
	font-size: 1.25rem;
	font-family: opm;
	line-height: 170%;
	text-align: left;
	margin-top: 1.5rem;
}
.gz_ab_title_right_item{
	padding: 3rem 0;
}
.gz_ab_title_right_item_title{
	font-size: 1.875rem;
}
.gz_ab_title_right_item_con{
	font-size: 1.25rem;
	color: rgba(0,0,0,0.68);
	font-family: opm;
	margin-top: 1rem;
}


.gz_ab_ys_menu{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.gz_ab_ys_menu_item{
	padding: 0 1rem;
}
.gz_ab_ys_menu_item_ico{
	width: 5rem;
	height: 5rem;
}
.gz_ab_ys_menu_itemon .gz_ab_ys_menu_item_ico{
	background-position: bottom center;
}
.gz_ab_ys_menu_item_title{
	font-size: 1.125rem;
}

.gz_ab_ys{
	width: 94%;
	height: auto;
	margin: 0 auto;
	margin-top: 3rem;
	position: relative;
}
.gz_ab_ys .swiper-slide{
	padding-top: 15rem;
}
.gz_ab_ys_con{
	width: 100%;
	height: auto;
	background: #ffffff;
	position: relative;
	padding: 2rem 2rem;
	z-index: 0;
}

.gz_ab_ys_con_img{
	width: 14rem;
	height: 14rem;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	right: 0rem;
	top: -15rem;
}

.gz_ab_ys_con_text>p{
	font-size: 1.25rem;
	height: auto;
	line-height: 2rem;
	position: relative;
	padding-left: 15px;
}
.gz_ab_ys_con_text>p:before{
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	left: 0;
	top: 0.7rem;
	background: var(--OneColor);
}
.gz_ab_ys_img{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.gz_ab_ys_img>img{
	width: auto;
	height: 7.2rem;
	margin: 1rem 1rem;
}

.gz_ab_ys_btn{
	position: absolute;
	top: 11rem;
	z-index: 5;
	cursor: pointer;
}
.gz_ab_ys_pagination{
	position: absolute;
	top: 10.5rem;
	z-index: 5;
	left: 7rem;
	font-size: 1.125rem;
	font-family: db;
	height: 3rem;
}


.gz_ab_lc{
	width: 100%;
	height: auto;
	/*background-image: url("../images/ab_lc_back.jpg");*/
	background-repeat: no-repeat;
	background-position:center 95%;
	background-size: 100% auto;
}
.gz_ab_lc_sw_box{
	width: 100%;
	height: auto;
	position: relative;
	padding-bottom: 0rem;
}
.gz_ab_lc_sw{
	/*width: 0px;
	height: 0px;
	z-index: -10;*/
	overflow: hidden;
	position: relative;
	
	opacity: 0;
}
.gz_ab_lc_sw_box .swiper-pagination-bullets{
	display: none;
}
.gz_ab_lc_menu_box{
	position: relative;
	width: 94%;
	height: auto;
	left: 3%;
	top: 1rem;
	background: #FFFFFF;
	z-index: 10;
	padding: 2rem;
}
.gz_ab_lc_menu{
	width: 100%;
}

.gz_ab_lc_menu_img{
	width: 100%;
	height: calc((100vw * 0.94 - 4rem) * 242 / 459);
}




.gz_ab_new{
	width: 94%;
	height: auto;
	margin: 0 auto;
	margin-top: 1rem;
}
.gz_ab_new_type{
	width: 5rem;
	height: 2rem;
	line-height: 2.1rem;
	background: var(--OneColor);
	color: #FFFFFF;
	border-radius: 50px;
	text-transform: uppercase;
	text-align: center;
}
.gz_ab_new_title{
	font-size: 1.25rem;
	font-family: opm;
	color: #000000;
	margin-top: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_ab_new a:hover .gz_ab_new_title{
	color: var(--OneColor);
}
.gz_ab_new_time{
	color: rgba(0,0,0,0.4);
	margin-top: 1.2rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_ab_new a:hover .gz_ab_new_time{
	color: rgba(0,0,0,1);
}
.gz_ab_new_img{
	width: 100%;
	height: calc((94vw * 0.5 - 7px) * 299 / 431);
	overflow: hidden;
	margin-top: 1.2rem;
	overflow: hidden;
}
.gz_ab_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;
}
.gz_ab_new a:hover .gz_ab_new_img>img{
	transform: scale(1.03);
}

.gz_ab_new_menu{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 2rem;
	margin-bottom: 3rem;
}
.gz_ab_new_menu_line{
	width: calc(100% - 7.4rem);
	height: 2px;
	background: #eef1f4;
}
.gz_ab_new_menu_btn{
	width: auto;
	height: 3rem;
	background: #eef1f4;
	border-radius: 1.5rem;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	margin-left: 0.7rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

/*服务支持-百科*/
.gz_fw_title{
	width: 94%;
	height: auto;
	margin: 0 auto;
	font-size: 2.5rem;
	font-family: opm;
	color: rgba(0,0,0,0.9);
	/*margin-top: 4rem;*/
}

.gz_fw{
	width: 94%;
	height: auto;
	margin: 0 auto;
}
.gz_fw_item{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-top: 2rem;
	margin-bottom: 3rem;
}
.gz_fw_item_left{
	width: 100%;
	height: calc(94vw * 245 / 350);
	overflow: hidden;
}
.gz_fw_item_left 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;
}
.gz_fw_item:hover .gz_fw_item_left img{
	transform: scale(1.03);
}
.gz_fw_item_right{
	width: 100%;
	height: auto;
	background: #FFFFFF;
	padding: 1.5rem 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	padding-bottom: 2rem;
	-moz-box-shadow: 0px 0px 25px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 25px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 0px 25px 0 rgba(0,0,0,0.08);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_fw_item:hover .gz_fw_item_right{
	-moz-box-shadow: 0px 0px 25px 0 rgba(222,41,16,0.1);
    -webkit-box-shadow: 0px 0px 25px 0 rgba(222,41,16,0.1);
    box-shadow: 0px 0px 25px 0 rgba(222,41,16,0.1);
}

.gz_fw_item_right_left{
	width: 30%;
	height: 100%;
	border-right: 0px solid rgba(0,0,0,0.1);
	text-align: center;
	position: relative;
}
.gz_fw_item_right_left:after{
	display: none;
}

.gz_fw_item_right_left_ri{
	font-size: 2.875rem;
}
.gz_fw_item:hover .gz_fw_item_right_left_ri{
	color: var(--OneColor);
}
.gz_fw_item_right_left_nian{
	font-size: 1.25rem;
}
.gz_fw_item:hover .gz_fw_item_right_left_nian{
	color: var(--OneColor);
}
.gz_fw_item_right_right{
	width: 70%;
	height: 100%;
	padding: 0 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-left: 1px solid rgba(0,0,0,0.1);
}
.gz_fw_item_right_right_title{
	font-size: 1.25rem;
}
.gz_fw_item:hover .gz_fw_item_right_right_title{
	color: var(--OneColor);
}
.gz_fw_item_right_right_des{
	font-size: 1rem;
	color: #333333;
	margin-top: 1rem;
	line-height: 160%;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.gz_fw_item_right_right_tag{
	font-size: 1rem;
	color: #333333;
	margin-top: 1rem;
}


.gz_fw_page{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 2rem;
	/*margin-bottom: 6rem;*/
}
	
/*服务支持*/
.gz_xz_title{
	width: 94%;
	height: auto;
	margin: 0 auto;
	font-size: 2.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.9);
	/*margin-top: 4rem;*/
	text-align: center;
}

.gz_xz_search{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 2rem;
}

.gz_xz_search_left{
	width: 70%;
	height: 3.5rem;
	background: #FFFFFF;
}
.gz_xz_search_left_input{
	width: 100%;
	height: 100%;
	background: none;
	padding: 0 2rem;
	font-size: 1.125rem;
	border: none;
}
.gz_xz_search_right{
	width: 30%;
	height: 3.5rem;
}
.gz_xz_search_right>a{
	display: block;
	width: 100%;
	height: 100%;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	background: var(--OneColor);
	color: #FFFFFF;
	font-size: 1.125rem;
	text-align: center;
}
.gz_xz_search_right>a>span{
	display: inline-block;
	width: 6.5rem;
	height: auto;
	text-align: left;
	margin: 0 auto;
	background-image: url("../images/search.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto 100%;
}
.gz_xz{
	width: 94%;
	height: auto;
	margin: 0 auto;
	margin-top: 2rem;
}
.gz_xz_top{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	padding: 1.5rem 0;
}
.gz_xz_top>div{
	height: auto;
	font-size: 1.125rem;
	font-family: opm;
	text-align: center;
}

.gz_xz_top_1{
	width: 70%;
}
.gz_xz_top_2{
	width: 12%;
	display: none;
}
.gz_xz_top_3{
	width: 12%;
	display: none;
}
.gz_xz_top_4{
	width: 12%;
	display: none;
}
.gz_xz_top_5{
	width: 30%;
}
.gz_xz_item_box{
	width: 100%;
	height: auto;
}
.gz_xz_item{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding: 1.5rem 0;
	background: #FFFFFF;
	margin-top: 0.8rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_xz_item:hover{
	background: var(--OneColor);
	color: #FFFFFF;
}
.gz_xz_item>div{
	height: auto;
	font-size: 1.125rem;
	text-align: center;
	line-height: 2rem;
}
.gz_xz_item_1{
	width: 70%;
	font-family: opm;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	line-height: 1.8rem;
	padding-left: 2rem;
}
.gz_xz_item_1_img{
	width: 1.9rem;
	height: 1.9rem;
	overflow: hidden;
	margin-right: 1rem;
}
.gz_xz_item_1_img>img{
	width: 1.9rem;
	height: 1.9rem;
	display: block;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
	.gz_xz_item_1>span:nth-child(2){
		width: calc(100% - 2rem);
		text-align: left;
		 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
	}
.gz_xz_item:hover .gz_xz_item_1_img>img:first-child{
	margin-top: -100%;
}
.gz_xz_item_2{
	width: 12%;
	display: none;
}
.gz_xz_item_3{
	width: 12%;
	display: none;
}
.gz_xz_item_4{
	width: 12%;
	display: none;
}
.gz_xz_item_5{
	width: 30%;
}
	
	
.gz_pro{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.gz_pro_item{
	width: 100%;
	height: auto;
	margin-right: 0%;
	margin-top: 1.8rem;
	padding: 1rem;
	position: relative;
	background: #FFFFFF;
	margin-top: 5rem;
}
.gz_pro_item:nth-child(3n){
	margin-right: 0%;
}
.gz_pro_item_type>span{
	display: inline-block;
	width: auto;
	height: 3.6rem;
	line-height: 3.6rem;
	font-size: 1.5rem;
	color: #FFFFFF;
	background: var(--OneColor);
	border-radius: 50px;
	margin: 0 auto;
	padding: 0 2rem;
}
.gz_pro_item_img img{
	width: 100%;
	height: calc((94vw - 2rem) * 292 / 446);
	object-fit: cover;
	object-position: center;
}
.gz_pro_item_con{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding-top: 1rem;
}
.gz_pro_item_con>a{
	font-size: 1.125rem;
}
	
.gz_pro_bottom{
	width: 94%;
	height: auto;
	margin: 5rem auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.gz_pro_bottom>a{
	display: block;
	width: 100%;
	height: calc(94vw * 284 / 694);
	position: relative;
	margin-top: 1rem;
}
.gz_pro_bottom_text{
	font-size: 1.875rem;
}

/*产品详情*/
.gz_spro_banner{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.gz_spro_banner_left{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: calc(70vw + 5rem);
}
.gz_spro_banner_left_title{
	font-size: 1.625rem;
	color: var(--OneColor);
	font-family: opb;
	text-align: center;
}
.gz_spro_banner_left_title2{
	font-size: 2.125rem;
	color: #000000;
	font-family: opm;
	margin-top: 0rem;
	text-align: center;
}
.gz_spro_banner_left_line{
	width: 3.5rem;
	height: 3px;
	background: var(--OneColor);
	margin: 1.5rem auto;
}

.gz_spro_banner_left_menu{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 1rem;
}
.gz_spro_banner_left_menu_item{
	width: auto;
	height: auto;
	margin-right: 1rem;
	margin-left: 1rem;
	cursor: pointer;
}
.gz_spro_banner_left_menu_item_img{
	width: 7rem;
	height: 7rem;
}
.gz_spro_banner_downs{
	width: 100%;
	height: auto;
	margin-top: 2rem;
	margin-bottom: 3rem;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.gz_spro_banner_downs a{
	display: inline-block;
    height: 3rem;
    line-height: 3rem;
    color: #FFFFFF;
    background: #CCC8C8;
    border-radius: 50px;
    font-size: 1.125rem;
    width: 9rem;
    text-align: center;
	margin-right: 0.5rem;
	margin-left: 0.5rem;
	cursor: pointer;
}

.gz_spro_banner_right{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	top: 3rem;
	left: 0;
}

.sn_spro_brsw{
	width: 100%;
	height: auto;
}
.sn_spro_brsw_back{
	width: 70vw;
	height: 70vw;
	background: #FFFFFF;
	border-radius: 50%;
	position: absolute;
	left: 15vw;
	top: 0;
	z-index: 0;
}
.sn_spro_brsw_img{
	width: 70vw;
	height: 70vw;
	position: relative;
	margin: 0 auto;
	z-index: 10;
}
	
	
.sn_spro_nav_box{
	width: 100%;
	height: 8vh;
	background: #FFFFFF;
}
.sn_spro_nav{
	width: 100%;
	height: 8vh;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content:center;
}
.sn_spro_nav>span{
	display: inline-block;
	height: 8vh;
	line-height: 8vh;
	color: #9b9b9b;
	font-size: 1.125rem;
	font-family: opm;
	color: #9b9b9b;
	margin-right: 0rem;
	margin: 0 0.8rem;
	position: relative;
	cursor: default;
}

.sn_spro_box{
	width: 94%;
	height: auto;
	margin: 0 auto;
	position: relative;
}
.sn_spro{
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	padding: 4rem 0;
	opacity: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.sn_sproon{
	position: relative;
	opacity: 1;
	z-index: 10;
}

.sn_spro_title{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.sn_spro_title_cn{
	font-size: 1.875rem;
	font-family: opm;
	text-align: center;
}
.sn_spro_title_en{
	font-size: 2rem;
	font-family: dm;
	text-transform: uppercase;
	color: rgba(0,0,0,0.2);
	margin-left: 0rem;
	text-align: center;
}

.sn_spro_model1{
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.sn_spro_model1_title{
	font-size: 5.25rem;
}
.sn_spro_model1_title_back{
	font-size: 2.25rem;
}
.sn_spro_model1_con{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.8);
	line-height: 190%;
}


.sn_spro_model2{
	width: 94%;
}


.sn_spro_model3{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sn_spro_model3_item{
	width: 100%;
	height: auto;
	min-height: 8rem;
	border-left: 3px solid var(--OneColor);
	background: #FFFFFF;
	padding: 1rem 2rem;
	margin-top: 3%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.sn_spro_model3_item_title{
	display: block;
	font-size: 1.25rem;
	/*color: var(--OneColor);*/
	font-family: opm;
}
.sn_spro_model3_item_des{
	display: block;
	margin-top: 1rem;
	font-size: 1rem;
	color: #575757;
	font-family: opm;
}


.sn_spro_tj_box{
	width: 100%;
	height: auto;
	/*background: #FFFFFF;
	padding: 10vh 0;*/
}
.sn_spro_tj_box_title{
	width: 94%;
	height: auto;
	margin: 0 auto;
	font-size: 2.625rem;
	font-family: opm;
	margin-bottom: 2rem;
}

/*首页*/
.gz_banner{
	width: 100%;
	height: auto;
	background: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gz_banner .swiper-wrapper{
	width: 100%;
	height: auto;
}
.gz_banner .swiper-slide{
	width: 100%;
	height: auto;
}
.gz_banner .swiper-slide a{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	color: #000000;
}
.sn_banner_img{
	width: 100%;
	height: 100%;
}
.sn_banner_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gz_banner_left{
	width: 80%;
	height: auto;
	padding: 8% 0;
	padding-left: 0;
	margin: 0 auto;
	position: relative;
}
.gz_banner_left_title{
	font-size: 2rem;
}
.gz_banner_left_title:before{
	position: absolute;
	content: attr(text);
	font-size: 2rem;
	width: 3.3rem;
	padding-left: 1.2rem;
	height: 4.5rem;
	line-height: 4.5rem;
	color: #FFFFFF;
	background: var(--OneColor);
	left: -1.2rem;
	top: calc(50% - 2.25rem);
	border-radius: 50%;
	z-index: 0;
	overflow: hidden;
}
.gz_banner_left_title2{
	font-size:2.325rem;
}
.gz_banner_left_des{
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.6);
	position: relative;
	z-index: 5;
	padding-right: 00%;
	line-height: 180%;
	margin-top: 3rem;
}

.gz_banner_right{
	width: 100vw;
	height: auto;
	position: relative;
	margin: 0 auto;
	margin-bottom: 25%;
	justify-content: flex-end;
}
.gz_banner_right_back{
	width: 100%;
	height: 100%;
	background: #dedede;
	border-radius: 50%;
	z-index: 0;
	position: absolute;
	left: 0;
	top: 0%;
}
.gz_banner_right>img{
	height: 80%;
	width: 80%;
	position: relative;
	z-index: 10;
}

.gz_banner_btn{
	position: absolute;
	width: 50%;
	height: auto;
	left: auto;
	bottom: 5%;
	right: 10%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	z-index: 20;
}
.gz_banner_btn>div{
	margin-right: 0rem;
	margin-left: 1rem;
}

.gz_banner_pagination{
	position: absolute;
	width: 50%;
	height: auto;
	left: 10%;
	bottom: 5%;
	z-index: 20;
	font-family: dm;
	font-size: 1.125rem;
}

.gz_id_yy{
	width: 94%;
	height: calc(94vw * 600 / 1400);
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.gz_id_yy_item{
	width: 25%;
}
.gz_id_yy_itemon{
	width: 48%;
}


.gz_id_yy_item_con{
	width: calc(94vw * 0.25);
	height: 100%;
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 10;
	padding: 1.5rem 0;
}
.gz_id_yy_item_con div{
	text-align: center;
}
.gz_id_yy_item_con span{
	display: inline-block;
	font-size: 1.5rem;
	font-family: opm;
	color: #FFFFFF;
	text-align: center;
	background-repeat: no-repeat;
	background-size: auto 2.5rem;
	background-position: top center;
	padding-top: 3rem;
}

	
.gz_id_yy_item_btn{
	position: absolute;
	width: 6rem;
	height: 6rem;
	right: 0;
	bottom: 0;
	overflow: hidden;
	opacity: 0;
	z-index: -1;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_yy_itemon .gz_id_yy_item_btn{
	opacity: 1;
	z-index: 10;
}
.gz_id_yy_item_btn>a{
	position: absolute;
	width: 12rem;
	height: 12rem;
	background: var(--OneColor);
	right: -6rem;
	bottom: -6rem;
	border-radius: 50%;
	text-align: left;
}
.gz_id_yy_item_btn svg{
	width: 2rem;
	height: 2rem;
	fill:#ffffff;
	position: absolute;
	left: 2.5rem;
	top: 2.7rem;
	z-index: 10;
}
.gz_id_yy_item:hover .gz_id_yy_item_btn{
	animation: giyiamiet 0.7s infinite alternate;
    -webkit-animation: giyiamiet 0.7s infinite alternate; /* Safari 与 Chrome */
}
@keyframes giyiamiet
{
    to {transform: scale(1.1);}
}
 
@-webkit-keyframes giyiamiet /* Safari 与 Chrome */
{
    to {transform: scale(1.1);}
}


.gz_id_pro_title{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--OneColor);
	position: relative;
	padding: 1.5rem 0;
/*	margin-top: 4rem;*/
}
.gz_id_pro_title:after{
	position: absolute;
	content: '';
	width: 50%;
	height: 3px;
	background: var(--OneColor);
	left: 25%;
	top: -3px;
}
.gz_id_pro_title_left{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: center;
}
.gz_id_pro_title_right{
	text-align: center;
	margin-top: 2rem;
}
.gz_id_pro_title_right>a{
	font-size: 1.5rem;
	color: #333333;
	margin-left: 1rem;
	margin-right: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


.gz_id_pro{
	width: 94%;
	height: auto;
	margin: 0 auto;
}
.gz_id_pro_menu{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 0rem;
	margin-bottom: 0rem;
}
.gz_id_pro_menu_line{
	width: calc(100% - 7.4rem);
	height: 2px;
	background: #eef1f4;
}
.gz_id_pro_menu_btn{
	width: 3rem;
	height: 3rem;
	background: #eef1f4;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	margin-left: 0.7rem;
}
.gz_id_pro_menu_btn:hover{
	background: var(--OneColor);
}
.gz_id_pro_menu_btn>svg{
	width: 1.6rem;
	height: 1.6rem;
	fill:#919191;
	margin-top: 0.7rem;
}
.gz_id_pro_menu_btn:hover>svg{
	fill: #ffffff;
}

.gz_id_pro_bbox{
	width: 94%;
	height: auto;
	margin: 0 auto;
}
.gz_id_pro{
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.gz_id_pro .swiper-slide{
	position: relative;
	padding: 2rem 0;
}
.gz_id_prosw_img{
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
}
.gz_id_prosw_img_back{
	width: 70%;
	height: calc(94vw * 0.49 * 0.7);
	position: absolute;
	background: #ececec;
	border: 1rem solid #FFFFFF;
	border-radius: 50%;
	left: 15%;
	top: 2rem;
	z-index: 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);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_pro .swiper-slide a:hover .gz_id_prosw_img_back{
	background: #FFFFFF;
}
.gz_id_prosw_img_img{
	width: 70%;
	height: calc(94vw * 0.49 * 0.7);
	margin-left: 15%;
	position: relative;
	z-index: 10;
	margin-top: 2rem;
}
.gz_id_prosw_img_img>img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.gz_id_prosw_con{
	width: 84%;
	height: auto;
	margin: 0 auto;
	background: #FFFFFF;
	margin-top: calc(94vw * 0.49 * 0.7 * 0.5);
	padding: 0 2rem;
	padding-top:calc(94vw * 0.49 * 0.7 * 0.5);
	-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-bottom-left-radius: calc(94vw * 0.49 * 0.5);
	border-bottom-right-radius: calc(94vw * 0.49 * 0.5);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


.gz_id_prosw_title{
	font-size: 1.25rem;
	font-family: opm;
	color: #000000;
	text-align: center;
	margin-top: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.gz_id_prosw_des{
	font-size: 1rem;
	color: rgba(0,0,0,0.6);
	line-height: 160%;
	margin-top: 1rem;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.gz_id_prosw_btn{
	text-align: center;
	padding-top: 1rem;
	padding-bottom: 2rem;
}
.gz_id_prosw_btn>svg{
	width: 1.4rem;
	height: 1.4rem;
	fill:#ffffff;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
	
	
.gz_id_ys_menu{
	width: 94%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 1rem;
}
.gz_id_ys_menu_item{
	width: 20%;
	height: auto;
	text-align: center;
	position: relative;
	cursor: default;
}
.gz_id_ys_menu_item:nth-child(1){
	margin-top: 3rem;
}
.gz_id_ys_menu_item:nth-child(1):after{
	position: absolute;
	content: '';
	width:33%;
	height: 100%;
	background-image: url("../images/id_ys_line1.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	left: 100%;
	top: 0%;
}
.gz_id_ys_menu_item:nth-child(2):after{
	position: absolute;
	content: '';
	width:33%;
	height: 100%;
	background-image: url("../images/id_ys_line2.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	left: 100%;
	top: 15%;
}
.gz_id_ys_menu_item:nth-child(4):after{
	position: absolute;
	content: '';
	width:33%;
	height: 100%;
	background-image: url("../images/id_ys_line3.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	left: -33%;
	top: 0%;
}
.gz_id_ys_menu_item:nth-child(4){
	margin-top: 3rem;
}

.gz_id_ys_menu_item_ico{
	width: 4rem;
	height: 4rem;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_ys_menu_itemon .gz_id_ys_menu_item_ico{
	background-position: bottom center;
}
.gz_id_ys_menu_item_title{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.7);
	margin-top: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


.gz_id_ys{
	width: 100%;
	height: 30rem;
	background-image: url("../images/id_ys_back.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size:auto 100%;
	position: relative;
}
.gz_id_ys_con{
	width: 60%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1rem solid #e7e7e7;
}
.gz_id_ys_con_ico{
	width: 6rem;
	height: 6rem;
	background: var(--OneColor);
	border: 1rem solid #eededc;
	border-radius: 50%;
	margin: 0 auto;
	text-align: center;
}
.gz_id_ys_con_ico span{
	display: inline-block;
	width: 3rem;
	height: 3rem;
	margin: 0.5rem auto;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
}
.gz_id_ys_con_con{
	width: 90%;
	height: auto;
	max-height: 8rem;
	overflow: auto;
	margin: 0 auto;
	font-size: 1rem;
	font-family: opm;
	text-align: center;
	line-height: 140%;
	margin-top: 1rem;
}


.gz_id_ys_btn_left{
	left: 3vw;
}
.gz_id_ys_btn_right{
	right: 3vw;
}

.gz_id_ab_box{
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	background: none;
}
.gz_id_ab_img{
	width: 50vw;
	height: 50vw;
	background-image: url("../images/id_ab_back.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 100%;
	position: absolute;
	top: 0;
	left: 0;
	
}

.gz_id_ab_img img{
	width: calc(50vw * 0.64);
	height: calc(50vw * 0.64);
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
	position: absolute;
	right: 4%;
	top: calc(50vw * 0.18);
}

.gz_id_ab_con_lbox{
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 50vw;
}

.gz_id_ab_con_box{
	position: relative;
	width: 94%;
	height: auto;
	left: auto;
	top: auto;
	margin: 2rem auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


.gz_id_ab_con_menu{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.gz_id_ab_con_menu_btn{
	width: auto;
	height: 3rem;
	background: #eef1f4;
	border-radius: 1.5rem;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	margin-right: 0.4rem;
	margin-left: 0.4rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
}


.gz_id_ab_con_pagination{
	position: absolute;
	width: 50%;
	height: auto;
	text-align: right;
	right: 0;
	left: auto;
	top: 1rem;
	z-index: 20;
	font-family: dm;
	font-size: 1.25rem;
	color: #adadad;
}

.gz_id_ab_con_pagination .swiper-pagination-current{
	font-size:1.75rem;
	font-family: dm;
	color: #000000;
}

.gz_id_ab_con_title{
	font-size: 1.75rem;
	margin-top: 1rem;
}
.gz_id_ab_con_des{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.8);
	line-height: 160%;
	margin-top: 1rem;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_ab_con a:hover .gz_id_ab_con_des{
	color: rgba(0,0,0,1);
}

.gz_id_ab_right{
	width: 46vw;
	height: 46vw;
	position: absolute;
	top: 2vw;
	right: -23vw;
	border: 1px dashed #d8d8d8;
	border-radius: 50%;
}
.gz_id_ab_right_1{
	position: absolute;
	width: 74%;
	height: 74%;
	left: 13%;
	top: 13%;
	border-radius: 50%;
	border: 1px dashed #d8d8d8;
}
.gz_id_ab_right_1>svg{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10;
	opacity: 0;
}
.gz_id_ab_right_1_c{
	position: absolute;
	left: -0.6rem;
	top: -0.6rem;
	width: 1.2rem;
	height: 1.2rem;
	background: #FFFFFF;
	border: 0.4rem solid rgba(0,0,0,0.3);
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	z-index: 50;
}
.gz_id_ab_right_1_con{
	border: 0.4rem solid var(--OneColor);
}

.gz_id_ab_right_1_c:after{
	position: absolute;
	content: attr(text);
	width: 5.6rem;
	height: 2rem;
	line-height: 2rem;
	font-size: 1.125rem;
	color: rgba(0,0,0,0.3);
	top: -0.75rem;
	left: -5.3rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_ab_right_1_con:after{
	color: rgba(0,0,0,1);
}

.gz_id_ab_right_2{
	position: absolute;
	width: 84%;
	height: 84%;
	left: 8%;
	top: 8%;
	border-radius: 50%;
	background: var(--OneColor);
	z-index: 0;
}
.gz_id_ab_right_3{
	position: absolute;
	width: 84%;
	height: 84%;
	left: 8%;
	top: 8%;
	background-image: url("../images/gz_id_ab_right_3.svg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	animation: giar3amiet 10s linear infinite normal;
    -webkit-animation: giar3amiet 10s linear infinite normal; /* Safari 与 Chrome */
}
@keyframes giar3amiet
{
    to {
		transform: rotate(1turn);
	}
}
 
@-webkit-keyframes fnmiamiet /* Safari 与 Chrome */
{
    to {
		transform: rotate(1turn);
	}
}
	
}