/*nav*/
.gz_nav_box{
	width: 100%;
	height: 11vh;
	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: 90%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.gz_nav_logo{
	width: 20%;
	text-align: left;
}
.gz_nav_logo img{
	height: 6vh;
	margin-top: 2.5vh;
}
.gz_nav_main{
	width: 80%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.gz_nav_menu{
	width: auto;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.gz_nav_menu_line{
	width: 5px;
	height: 5px;
	background: var(--OneColor);
	border-radius: 50%;
	margin: 0 2rem;
}

.gz_nav_menu_item{
	width: auto;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gz_nav_menu_item>a{
	font-size: 1.375rem;
	color: #000000;
	-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: 200%;
	height: 0px;
	overflow: hidden;
	background: #FFFFFF;
	position: absolute;
	padding: 0;
	left: -50%;
	z-index: -1;
	top: 80%;
	opacity: 0;
	-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.08);
    -webkit-box-shadow: 0px 4px 35px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 4px 35px 0 rgba(0,0,0,0.08);

}
.gz_nav_menu_item:hover .gz_nav_menu_down{
	top: 100%;
	height: auto;
	opacity: 1;
	padding: 1rem 0;
}

.gz_nav_menu_down a{
	display: block;
	text-align: center;
	line-height: 1.5rem;
	padding: 0.5rem 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 a:hover{
	color: var(--OneColor);
}

.gz_nav_menu_item_pro{
	position: static;
}


.gz_nav_menu_down_pro{
	width: 100%;
	height: 0;
	overflow: hidden;
	background: #f0f0f0;
	position: absolute;
	left: 0%;
	z-index: -1;
	top: 80%;
	opacity: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.gz_nav_menu_item_pro:hover .gz_nav_menu_down_pro{
	top: 100%;
	opacity: 1;
	height: auto;
}
.gz_nav_menu_down_pro_left{
	width: 18.5%;
	height: auto;
	padding: 1rem 0;
}
.gz_nav_menu_down_pro_left>a{
	display: block;
	height: 2.25rem;
	line-height: 2.25rem;
	font-size: 1.25rem;
	font-family: opm;
	text-align: right;
	color: #a4a4a4;
	margin: 2rem 0;
	position: relative;
	padding-right: 2rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_nav_menu_down_pro_left>a.gz_nav_mdpl_aon{
	color: #000000;
}
.gz_nav_menu_down_pro_left>a:after{
	position: absolute;
	content: '';
	width: 3px;
	height: 0%;
	background: var(--OneColor);
	right: 0;
	top: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_nav_menu_down_pro_left>a.gz_nav_mdpl_aon:after{
	height: 100%;
}
.gz_nav_menu_down_pro_right{
	width: 81.5%;
	height: auto;
	background: #f9f9f9;
	padding-top: 3rem;
	padding-bottom: 4rem;
}
.gz_nav_mdpr_sw{
	width: 100%;
	height: auto;
}
.gz_nav_mdpr_sw .swiper-slide{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.gz_nav_mdpr_sw_itme{
	width: 25%;
	height: auto;
	padding-left: 4rem;
}
.gz_nav_mdpr_sw_itme a{
	display: block;
	color: rgba(0,0,0,0.8);
	font-family: opm;
	margin: 0.8rem 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	position: relative;
}
.gz_nav_mdpr_sw_itme a:hover{
	color: var(--OneColor);
	padding-left: 8px;
}
.gz_nav_mdpr_sw_itme a:after{
	position: absolute;
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 50%;
	top: calc(50% - 2px);
	left: 0;
	background: var(--OneColor);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 0;
}
.gz_nav_mdpr_sw_itme a:hover:after{
	opacity: 1;
}
.gz_nav_mdpr_sw_itme a.gz_nav_mdpr_sw_itme_at{
	color: rgba(0,0,0,1);
	font-size: 1.25rem;
	font-family: opm;
	margin: 0;
	margin-bottom: 2rem;
	position: relative;
}
.gz_nav_mdpr_sw_itme a.gz_nav_mdpr_sw_itme_at:hover{
	padding-left: 10px;
}
.gz_nav_mdpr_sw_itme a.gz_nav_mdpr_sw_itme_at:after{
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	top: calc(50% - 2px);
	left: 0;
	background: var(--OneColor);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 0;
}
.gz_nav_mdpr_sw_itme a.gz_nav_mdpr_sw_itme_at:hover:after{
	opacity: 1;
}

.gz_nav_search{
	width: auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #FFFFFF;
	position: relative;
}
.gz_nav_search_text{
	position: absolute;
	width: 0rem;
	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: 0;
}
.gz_nav_search:hover .gz_nav_search_text{
	width: 20rem;
	left: -16.7rem;
	opacity: 1;
}
.gz_nav_search_text input{
	width: calc(90% - 4rem);
	height: 100%;
	margin-left: 10%;
	color: #000000;
	font-size: 1.25rem;
	border: none;
	background: none;
}
.gz_nav_search_btn{
	width: 3.3rem;
	height: 3.3rem; 
	position: relative;
	z-index: 20;
}
.gz_nav_search_btn a{
	display: inline-block;
	width: 100%;
	height: 100%;
	background: var(--OneColor);
	border-radius: 50%;
	text-align: center;
}
.gz_nav_search_btn svg{
	width: 1.5rem;
	height: 1.5rem;
	fill:#ffffff;
	margin-top: 0.9rem;
}
	
.menubtn{
	display: none;
}

/*nbanner*/
.gz_nbanner{
	width: 100%;
	height: calc(100vw * 521 / 1920);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 0;
}
.gz_nbanner_img{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.gz_nbanner_img>img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}
.gz_nbanner_title{
	text-align: center;
	font-size: 4.125rem;
	color: #FFFFFF;
	font-family: opm;
	position: relative;
	z-index: 5;
}

.gz_menu{
	width: 73vw;
    width: var(--mainwidth);
	height: 8rem;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 200px;
	padding: 0 6rem;
	margin-top: -4rem;
	position: relative;
	z-index: 5;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.gz_menu>a{
	width: auto;
	height: auto;
	margin-top: 1.5rem;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.gz_menu_ico{
	width: 5rem;
	height: 5rem;
	border: 2px solid #b6b6b6;
	border-radius: 50%;
	text-align: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_menu>a:hover .gz_menu_ico{
	border: 2px solid var(--OneColor);
}
.gz_menu>a.gz_menuaon .gz_menu_ico{
	border: 2px solid var(--OneColor);
}
.gz_menu_ico>span{
	display: inline-block;
	width: 3.5rem;
	height: 3.5rem;
	background-size: 3.5rem auto;
	background-position: top center;
	background-repeat: no-repeat;
	margin-top: calc(0.75rem - 2px);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_menu>a:hover .gz_menu_ico>span{
	background-position: bottom center;
}
.gz_menu>a.gz_menuaon .gz_menu_ico>span{
	background-position: bottom center;
}
.gz_menu_title{
	height: 5rem;
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 1rem;
}
.gz_menu_title_cn{
	font-size: 1.875rem;
	color: #000000;
	font-family: opm;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_menu>a:hover .gz_menu_title_cn{
	color: var(--OneColor);
}
.gz_menu>a.gz_menuaon .gz_menu_title_cn{
	color: var(--OneColor);
}
.gz_menu_title_en{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.4);
	font-family: dm;
	text-transform: uppercase;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_menu>a:hover .gz_menu_title_en{
	color: var(--OneColor);
}
.gz_menu>a.gz_menuaon .gz_menu_title_en{
	color: var(--OneColor);
}


/*menu2*/
.gz_menu2{
	width: 73vw;
    width: var(--mainwidth);
	height: 5rem;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 200px;
	padding: 0 6rem;
	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.375rem;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_menu2_a>a:hover{
	color: var(--OneColor);
}
.gz_menu2_aon>a{
	color: var(--OneColor);
}
.gz_menu2_line{
	width: 1px;
	height: 1.2rem;
	background: rgba(0,0,0,0.2);
	margin: 0 4rem;
}

/*title*/
.gz_title{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	border-top: 1px solid var(--OneColor);
	position: relative;
	padding: 2.5rem 0;
	/*margin-top: 4rem;*/
}
.gz_title:after{
	position: absolute;
	content: '';
	width: 13rem;
	height: 3px;
	background: var(--OneColor);
	left: 0;
	top: -3px;
}
.gz_title_cn{
	font-size: 3.75rem;
	color: rgba(0,0,0,0.9);
	font-family: opm;
}
.gz_title_line{
	width: 1px;
	height: 3.5rem;
	background: rgba(0,0,0,0.2);
	margin: 0 2.1rem;
}
.gz_title_en{
	font-size: 4.125rem;
	color: rgba(0,0,0,0.2);
	font-family: dm;
	text-transform: uppercase;
}
.gz_yy_jg{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.gz_yy_jg_con{
	width: 32.66%;
	height: calc(73vw * 0.3266 * 402 / 463);
	height: calc(var(--mainwidth) * 0.3266 * 402 / 463);
	margin-right: 1%;
	margin-bottom: 1%;
}
.gz_yy_jg_con:nth-child(3n){
	margin-right: 0%;
}
.gz_yy_jg_con>a{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gz_yy_jg_con_img{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	overflow: hidden;
}
.gz_yy_jg_con_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_yy_jg_con:hover .gz_yy_jg_con_img>img{
	transform: scale(1.03);
}
.gz_yy_jg_con_title{
	width: 100%;
	height: auto;
	color: #FFFFFF;
	text-align: center;
	font-size: 2.5rem;
	color: #FFFFFF;
	font-family: opm;
	z-index: 5;
}

.gz_yy_pro{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.gz_yy_pro_con{
	width: 32%;
	height:auto;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 2%;
	margin-bottom: 2%;
	padding: 2%;
	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);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_yy_pro_con:hover{
	transform: scale(1.01);
}
.gz_yy_pro_con:nth-child(3n){
	margin-right: 0%;
}
.gz_yy_pro_con_img{
	width: 100%;
	height: calc((73vw * 0.32 * 0.96) * 292 / 446);
	height: calc((var(--mainwidth) * 0.32 * 0.96) * 292 / 446);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gz_yy_pro_con_img>img{
	max-width:100%;
	max-height: 80%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_yy_pro_con:hover .gz_yy_pro_con_img>img{
	transform: scale(1.03);
}
.gz_yy_pro_con_title{
	width: 100%;
	height: auto;
	padding-top: 2rem;
	padding-bottom: 0.5rem;
	font-family: opm;
	font-size: 1.5rem;
	color: #000000;
	text-align: center;
	border-top: 1px solid rgba(0,0,0,0.1);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_yy_pro_con:hover .gz_yy_pro_con_title{
	color: var(--OneColor);
}

.gz_yy_al{
	width: calc(73vw + 30px);
    width: calc(var(--mainwidth) + 30px);
	height: calc(73vw * 0.47 * 478 / 652 + 3rem);
	height: calc(var(--mainwidth) * 0.47 * 478 / 652 + 3rem);
	margin: 0 auto;
}
.gz_yy_al_img{
	position: absolute;
	width: 47%;
	height: calc(73vw * 0.47 * 478 / 652);
	height: calc(var(--mainwidth) * 0.47 * 478 / 652);
	left: 2.5%;
	bottom: 2rem;
}
.gz_yy_al_img>img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.gz_yy_al_title{
	position: absolute;
	width: 40%;
	font-size: 2.5rem;
	font-family: opm;
	text-align: right;
	top: 0;
	right: 0;
}
.gz_yy_al_box{
	width: 73vw;
    width: var(--mainwidth);
	height: 100%;
	margin: 0 auto;
	position: relative;
	padding-top: 7rem;
}
.gz_yy_al_con{
	width: 100%;
	height: 100%;
	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: 52%;
	padding-right: 2.5%;
	line-height: 1.5rem;
	overflow: auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.gz_yy_al_con a{
	color: var(--OneColor);
	font-family: opm;
}
.gz_yy_al_menu{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 2rem;
	margin-bottom: 3rem;
}
.gz_yy_al_menu_line{
	width: calc(100% - 7.4rem);
	height: 2px;
	background: #eef1f4;
}
.gz_yy_al_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_yy_al_menu_btn:hover{
	background: var(--OneColor);
}
.gz_yy_al_menu_btn>svg{
	width: 1.6rem;
	height: 1.6rem;
	fill:#919191;
	margin-top: 0.7rem;
}
.gz_yy_al_menu_btn:hover>svg{
	fill: #ffffff;
}


/*footer*/
.gz_footer_box{
	width: 100%;
	height: auto;
	background: #0c0c0c;
	padding-top: 5rem;
}
.gz_footer{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.gz_footer_menu{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.gz_footer_menu_con{
	margin-right: 5rem;
}
.gz_footer_menu_con>a{
	display: block;
}
.gz_footer_menu_at{
	font-size: 1.562rem;
	color: #FFFFFF;
	margin-bottom: 3rem;
}
.gz_footer_menu_a{
	font-size: 1.125rem;
	color: rgba(255,255,255,0.3);
	margin-bottom: 0.7rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_footer_menu_a:hover{
	color: rgba(255,255,255,1);
}
.gz_footer_contact_ico>img{
	height: 4rem;
}
.gz_footer_contact_tel{
	font-size: 3rem;
	color: #FFFFFF;
	font-family: dm;
}
.gz_footer_contact_tel_title{
	color: rgba(249,249,249,0.4);
	margin-top: 0.5rem;
}
.gz_footer_contact_btn{
	margin-top: 1rem;
}
.gz_footer_contact_btn>a{
	font-size: 1.125rem;
	display: inline-block;
	padding: 0 4rem;
	height: 3rem;
	line-height: 3rem;
	background: var(--OneColor);
	color: #FFFFFF;
	border-radius: 50px;
	border: 1px solid var(--OneColor);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_footer_contact_btn>a:hover{
	background: none;
	color: var(--OneColor);
}
.gz_footer_bottom{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 3rem 0;
	border-top: 1px solid rgba(255,255,255,0.1);
	margin-top: 8rem;
}
.gz_footer_bottom_left{
	text-align: left;
	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{
	position: relative;
}
.gz_footer_bottom_ico{
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_footer_bottom_ico:hover{
	border: 1px solid var(--OneColor);
	background: var(--OneColor);
}
.gz_footer_bottom_ico>svg{
	width: 1.6rem;
	height: 1.6rem;
	fill:#ffffff;
	margin-top: 0.6rem;
}
.gz_footer_bottom_code{
	width: 120px;
	height: 120px;
	background: #BF8889;
	position: absolute;
	top: -125px;
	left: calc(0px - 60px + 1.5rem);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 0;
}
.gz_footer_bottom_right:hover .gz_footer_bottom_code{
	opacity: 1;
}
.gz_footer_bottom_code>img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gz_yy_gs{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.gz_yy_gs_left{
	width: 50%;
	height: calc(73vw * 0.5 * 428 / 700);
	height: calc(var(--mainwidth) * 0.5 * 428 / 700);
}
.gz_yy_gs_left>img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.gz_yy_gs_right{
	width: 45%;
	height: calc(73vw * 0.5 * 428 / 700);
	height: calc(var(--mainwidth) * 0.5 * 428 / 700);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.gz_yy_gs_right_title{
	font-size: 2.5rem;
	font-family: opm;
}
.gz_yy_gs_right_con{
	height: calc(100% - 5rem);
	font-size: 1.25rem;
	color: rgba(0,0,0,0.8);
	overflow: auto;
	line-height: 170%;
}


/*联系我们*/

.gz_join_title{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--OneColor);
	position: relative;
	padding: 2.5rem 0;
	margin-top: 4rem;
}
.gz_join_title:after{
	position: absolute;
	content: '';
	width: 13rem;
	height: 3px;
	background: var(--OneColor);
	left: 0;
	top: -3px;
}
.gz_join_title_left{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.gz_title_right{
	text-align: right;
}
.gz_title_right>a{
	font-size: 1.5rem;
	color: #333333;
	margin-left: 3rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_title_right>a:hover{
	color: var(--OneColor);
}
.gz_title_right>a.gz_title_right_aon{
	color: var(--OneColor);
}

.gz_lx_join{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}

.gz_lx_join_con{
	width: 100%;
	height: auto;
	margin-top: 1rem;
}
.gz_lx_join_con_top_box{
	width: 100%;
	height: 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	cursor: pointer;
}
.gz_lx_join_con_top{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.gz_lx_join_con_top_title{
	font-size: 1.5rem;
	color: #333333;
	background-image: url("../images/join_ico.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 100%;
	padding-left: 2.5rem;
	font-family: opm;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_lx_join_con:hover .gz_lx_join_con_top_title{
	color:var(--OneColor);
	background-image: url("../images/join_ico2.svg");
}
.gz_lx_join_conon .gz_lx_join_con_top_title{
	color:var(--OneColor);
	background-image: url("../images/join_ico2.svg");
}
.gz_lx_join_con_top_btn{
	width: auto;
	height: 1.2rem;
}
.gz_lx_join_con_top_btn>svg{
	fill:#333333;
	width: 1.2rem;
	height: 1.2rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_lx_join_con:hover .gz_lx_join_con_top_btn>svg{
	fill:var(--OneColor);
}
.gz_lx_join_conon .gz_lx_join_con_top_btn>svg{
	transform: rotate(45deg);
	fill:var(--OneColor);
}

.gz_lx_join_con_con{
	background: #FFFFFF;
	height: 0;
	padding: 0;
	overflow: hidden;
	font-size: 1.125rem;
	font-family: opm;
	line-height: 180%;
	color: rgba(43,43,43,0.8);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_lx_join_conon .gz_lx_join_con_con{
	height: auto;
	padding: 2rem;
}

.gz_lx_join_page{
	width: 100%;
	height: auto;
	margin-top: 3rem;
	text-align: center;
}

.gz_lx_join_page>a{
	display: inline-block;
	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_lx_join_page>a:hover{
	background: var(--OneColor);
}
.gz_lx_join_page>a>svg{
	width: 1.6rem;
	height: 1.6rem;
	fill:#919191;
	margin-top: 0.7rem;
}
.gz_lx_join_page>a:hover>svg{
	fill: #ffffff;
}

.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: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 3rem;
	-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);
	background-image: linear-gradient(to bottom,#f5f5f5,#ffffff);
	border-top: 1px solid #FFFFFF;
}
.gz_lx_lx_left{
	width: calc(50% - 3rem);
	height: calc((73vw * 0.5 - 3rem) * 496 / 651);
	height: calc((var(--mainwidth) * 0.5 - 3rem) * 496 / 651);
}
.gz_lx_lx_left>img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.gz_lx_lx_right{
	width: calc(50% - 2rem);
	height: calc((73vw * 0.5 - 3rem) * 496 / 651);
	height: calc((var(--mainwidth) * 0.5 - 3rem) * 496 / 651);
	/*display: flex;
	flex-direction: column;
	justify-content: space-between;*/
}
.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: 3rem 3rem;
	padding-left: 3.5rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding-bottom: 3rem;
}
.gz_lx_lx_right_title_1{
	font-size: 2.125rem;
	height: 3rem;
	line-height: 3rem;
	font-family: opm;
}
.gz_lx_lx_right_title_2{
	font-size: 1.625rem;
	font-family: opm;
}

.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%;
	margin-top: 2rem;
}
.gz_lx_lx_right_item_title{
	width: 4.5rem;
}
.gz_lx_lx_right_item_con{
	width: 100%;
}

/*新闻详情*/
.gz_snew{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin:  auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.gz_snew_s{
	margin: 5rem auto;
	
}
.gz_snew_left{
	width: 75%;
	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: 4rem 3rem;
}
.gz_snew_left_title{
	width: 100%;
	height: auto;
	font-size: 2.5rem;
	font-family: opm;
	text-align: center;
}

.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: 3rem;
}
.gz_snew_left_des>span{
	margin-right: 4rem;
}
.gz_snew_left_con{
	padding-top: 3rem;
	font-size: 1.125rem;
	color: rgba(0,0,0,0.7);
	line-height: 170%;
	
}
.gz_snew_left_con img{
    max-width: 100%;
	
}

.gz_snew_left_page{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-top: 1px solid rgba(0,0,0,0.1);
	margin-top: 3rem;
	padding-top: 2rem;
}
.gz_snew_left_page>a{
	font-size: 1.25rem;
	width: 45%;
	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;
}
.gz_snew_left_page>a:hover{
	color: var(--OneColor);
}

.gz_snew_right{
	width: 24%;
	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;
	
}

.gz_snew_right_title{
	font-size: 1.625rem;
	font-family: opm;
}
.gz_snew_right_con{
	width: 100%;
	height: auto;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.gz_snew_right_con>a{
	display: block;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.gz_snew_right_con_left{
	width: 3rem;
	height: 2.9rem;
	line-height: 2.9rem;
	background: var(--OneColor);
	text-align: center;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-family: arial;
	font-weight: bold;
}
.gz_snew_right_con_right{
	width: calc(100% - 4rem);
	height: auto;
	font-size: 1.125rem;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_snew_right_con_right:hover{
	color: var(--OneColor);
}


/*关于我们*/
.gz_ab{
	width: 100%;
	height: auto;
	background-image: linear-gradient(to bottom,#f9f9f9,#ffffff);
}
.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: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	border-top: 1px solid var(--OneColor);
	position: relative;
	padding: 2.5rem 0;
	/*margin-top: 4rem;*/
}
.gz_ab_title:after{
	position: absolute;
	content: '';
	width: 13rem;
	height: 3px;
	background: var(--OneColor);
	left: 0;
	top: -3px;
}
.gz_ab_title_left{
	width: 25rem;
	height: auto;
}
.gz_ab_title_right{
	width: calc(100% - 25%);
	height: auto;
}
.gz_ab_title_right_top{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-top: 2rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding-bottom: 6rem;
}
.gz_ab_title_right_top>div{
	width: 45%;
	height: auto;
	font-size: 1.25rem;
	font-family: opm;
	line-height: 170%;
	text-align: left;
}
.gz_ab_title_right_item{
	width: 100%;
	height: auto;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 4rem 0;
	text-align: left;
}
.gz_ab_title_right_item_title{
	font-size: 2.5rem;
	color: #333333;
	font-family: opm;
}
.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: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.gz_ab_ys_menu_item{
	width: 25%;
	height: auto;
	cursor: default;
}
.gz_ab_ys_menu_item_ico{
	width: 6rem;
	height: 6rem;
	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_ab_ys_menu_itemon .gz_ab_ys_menu_item_ico{
	background-position: bottom center;
}
.gz_ab_ys_menu_item_title{
	font-size: 1.625rem;
	color: rgba(0,0,0,0.7);
	font-family: opm;
	text-align: center;
	margin-top: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_ab_ys_menu_itemon .gz_ab_ys_menu_item_title{
	color: var(--OneColor);
}

.gz_ab_ys{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 3rem;
	position: relative;
}
.gz_ab_ys .swiper-slide{
	padding-top: 11.5rem;
}
.gz_ab_ys_con{
	width: 100%;
	height: auto;
	background: #ffffff;
	position: relative;
	padding: 4rem 4rem;
	z-index: 0;
}

.gz_ab_ys_con_img{
	width: 23rem;
	height: 23rem;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	right: 4rem;
	top: -11.5rem;
}
.gz_ab_ys_con_img>img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.gz_ab_ys_con_text>p{
	font-size: 1.375rem;
	height: 4rem;
	line-height: 4rem;
	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: calc(50% - 3px);
	background: var(--OneColor);
}
.gz_ab_ys_img{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 5rem;
	margin-bottom: 5rem;
}
.gz_ab_ys_img>img{
	width: auto;
	height: 7.2rem;
}

.gz_ab_ys_btn{
	position: absolute;
	top: 8rem;
	z-index: 5;
	cursor: pointer;
}
.gz_ab_ys_btn>svg{
	width: 1.6rem;
	height: 1.6rem;
	fill:rgba(0,0,0,0.2);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_ab_ys_btn:hover>svg{
	fill:var(--OneColor);
}
.gz_ab_ys_btn_left{
	left: 0;
}
.gz_ab_ys_btn_right{
	left: 3rem;
}
.gz_ab_ys_pagination{
	position: absolute;
	top: 7.5rem;
	z-index: 5;
	left: 7rem;
	font-size: 1.125rem;
	font-family: db;
	height: 3rem;
}
.gz_ab_ys_pagination .swiper-pagination-current{
	font-size:1.875rem;
	color: var(--OneColor);
}

.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: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: auto;
	position: relative;
	padding-bottom: 11rem;
	
}
.gz_ab_lc_sw{
	width: 100%;
	height: auto;
	position: relative;
	z-index: 10;
}
.gz_ab_lc_sw:after{
	width: 100%;
	height: 3px;
	position: absolute;
	content: '';
	background: #cbcbcb;
	left: 0;
	top: calc(10.75rem - 1px);
}
.gz_ab_lc_sw .swiper-wrapper{
	position: relative;
	z-index: 5;
}
.gz_ab_lc_sw .swiper-slide{
	position: relative;
	overflow:visible;
	height: 20rem;
	z-index: 5;
	cursor: pointer;
}
.gz_ab_lc_sw_box_title{
	position: absolute;
	width: 100%;
	font-size: 1.125rem;
	line-height: 1.5rem;
	color: rgba(0,0,0,0.8);
	left: 10%;
	height: 9rem;
	top: 0rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.gz_ab_lc_swcon2 .gz_ab_lc_sw_box_title{
	top: 12.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.gz_ab_lc_sw_dian{
	width: 1.5rem;
	height: 1.5rem;
	margin: 0 auto;
	margin-top: 10rem;
	border: 0.4rem solid #FFFFFF;
	background: #cbcbcb;
	border-radius: 50%;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_ab_lc_sw .swiper-slide-active .gz_ab_lc_sw_dian{
	border: 0.4rem solid var(--OneColor);
	background: #FFFFFF;
}
.gz_ab_lc_sw_box_nian{
	position: absolute;
	width: 100%;
	height: 9rem;
	font-size: 3.125rem;
	color: rgba(0,0,0,0.7);
	font-family: db;
	font-style: oblique;
	text-align: center;
	top: 11.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_ab_lc_swcon2 .gz_ab_lc_sw_box_nian{
	top: 0rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.gz_ab_lc_sw .swiper-slide-active .gz_ab_lc_sw_box_nian{
	color: var(--OneColor);
}

.gz_ab_lc_sw_box .swiper-pagination-bullets{
	position: absolute;
	left: auto;
	right: 13.5vw;
	right: calc((100vw - var(--mainwidth)) / 2);
	bottom: 7rem;
	z-index: 50;
	background: #cbcbcb;
	width: 15rem;
	height: 12px;
	border-radius: 50px;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.gz_ab_lc_sw_box .swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	background: #cbcbcb;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_ab_lc_sw_box .swiper-pagination-bullet-active{
	width: 22px;
	height: 22px;
	background: var(--OneColor);
}
.gz_ab_lc_menu_box{
	position: absolute;
	width: 25%;
	height: auto;
	left: 15%;
	top: 4rem;
	background: #FFFFFF;
	z-index: 10;
	padding: 2rem;
	display: none;
}
.gz_ab_lc_menu{
	width: 100%;
}
.gz_ab_lc_menu .swiper-slide{
	
}
.gz_ab_lc_menu_img{
	width: 100%;
	height: calc((100vw * 0.25 - 4rem) * 242 / 459);
}
.gz_ab_lc_menu_img>img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gz_ab_lc_menu_con{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 2rem;
}
.gz_ab_lc_menu_con_left{
	font-size: 3.125rem;
	color: var(--OneColor);
	font-family: db;
	font-style: oblique;
}
.gz_ab_lc_menu_con_right{
	padding-left: 2rem;
	font-size: 1.125rem;
	color: rgba(0,0,0,0.8);
}


.gz_ab_new{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.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.625rem;
	font-family: opm;
	color: #000000;
	margin-top: 1.5rem;
	-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(73vw * 0.3066 * 299 / 431);
	height: calc(var(--mainwidth) * 0.3066 * 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: 73vw;
    width: var(--mainwidth);
	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_ab_new_menu_btn:hover{
	background: var(--OneColor);
}
.gz_ab_new_menu_btn_text{
	font-size: 1.125rem;
	color: #FFFFFF;
	width: 0rem;
	height: 3rem;
	line-height: 3rem;
	text-align: right;
	overflow: hidden;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_ab_new_menu_btn:hover .gz_ab_new_menu_btn_text{
	width: 5rem;
	padding-right: 0.5rem;
}
.gz_ab_new_menu_btn_svg{
	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;
}
.gz_ab_new_menu_btn:hover .gz_ab_new_menu_btn_svg{
	background: var(--OneColor);
}
.gz_ab_new_menu_btn_svg>svg{
	width: 1.6rem;
	height: 1.6rem;
	fill:#919191;
	margin-top: 0.7rem;
}
.gz_ab_new_menu_btn:hover svg{
	fill: #ffffff;
}


/*服务支持-百科*/
.gz_fw_title{
	width: 73vw;
    width: var(--mainwidth);
	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: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.gz_fw_item{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin-top: 2rem;
	margin-bottom: 3rem;
}
.gz_fw_item_left{
	width: 25%;
	height: calc(73vw * 0.25 * 245 / 350);
	height: calc(var(--mainwidth) * 0.25 * 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: 75%;
	height: calc(73vw * 0.25 * 245 / 350 + 3rem);
	height: calc(var(--mainwidth) * 0.25 * 245 / 350 + 3rem);
	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: 20%;
	height: 100%;
	border-right: 1px solid rgba(0,0,0,0.1);
	text-align: center;
	position: relative;
}
.gz_fw_item_right_left:after{
	position: absolute;
	width: 1px;
	height: 0%;
	content: '';
	right: -1px;
	top: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	background: var(--OneColor);
}
.gz_fw_item:hover .gz_fw_item_right_left:after{
	height: 100%;
}
.gz_fw_item_right_left_ri{
	font-size: 3.5rem;
	font-family: Arial;
	font-weight: bold;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_fw_item:hover .gz_fw_item_right_left_ri{
	color: var(--OneColor);
}
.gz_fw_item_right_left_nian{
	font-size: 1.375rem;
	font-family: Arial;
	color: #6d6d6d;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_fw_item:hover .gz_fw_item_right_left_nian{
	color: var(--OneColor);
}
.gz_fw_item_right_right{
	width: 80%;
	height: 100%;
	padding: 0 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.gz_fw_item_right_right_title{
	font-size: 1.625rem;
	font-family: opm;
	color: #333333;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_fw_item:hover .gz_fw_item_right_right_title{
	color: var(--OneColor);
}
.gz_fw_item_right_right_des{
	font-size: 1.125rem;
	color: #333333;
	margin-top: 1.5rem;
	line-height: 170%;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.gz_fw_item_right_right_tag{
	font-size: 1.125rem;
	color: #333333;
}
.gz_fw_item_right_right_tag>a{
	color: #333333;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_fw_item_right_right_tag>a:hover{
	color: var(--OneColor);
}


.gz_fw_page{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 4rem;
	/*margin-bottom: 6rem;*/
}
.gz_fw_page_line{
	width: calc(100% - 7.4rem);
	height: 2px;
	background: #eef1f4;
}
.gz_fw_page_btn{
	width: 3rem;
	height: 3rem;
	background: #eef1f4;
	border-radius: 50%;
	text-align: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	margin-left: 0.7rem;
}
.gz_fw_page_btn:hover{
	background: var(--OneColor);
}
.gz_fw_page_btn svg{
	width: 1.6rem;
	height: 1.6rem;
	fill:#919191;
	margin-top: 0.7rem;
}
.gz_fw_page_btn:hover svg{
	fill: #ffffff;
}

/*服务支持*/
.gz_xz_title{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	font-size: 3.75rem;
	font-family: opm;
	color: rgba(0,0,0,0.9);
	/*margin-top: 4rem;*/
	text-align: center;
}

.gz_xz_search{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 3rem;
}

.gz_xz_search_left{
	width: 81%;
	height: 4rem;
	background: #FFFFFF;
}
.gz_xz_search_left_input{
	width: 100%;
	height: 100%;
	background: none;
	padding: 0 2rem;
	font-size: 1.375rem;
	border: none;
}
.gz_xz_search_right{
	width: 18%;
	height: 4rem;
}
.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.375rem;
	text-align: center;
}
.gz_xz_search_right>a>span{
	display: inline-block;
	width: 8rem;
	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: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 3rem;
}
.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: 50%;
}
.gz_xz_top_2{
	width: 12%;
}
.gz_xz_top_3{
	width: 12%;
}
.gz_xz_top_4{
	width: 12%;
}
.gz_xz_top_5{
	width: 14%;
}
.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: 50%;
	font-family: opm;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	line-height: 2rem;
	padding-left: 2rem;
}
.gz_xz_item_1_img{
	width: 2rem;
	height: 2rem;
	overflow: hidden;
	margin-right: 1rem;
}
.gz_xz_item_1_img>img{
	width: 2rem;
	height: 2rem;
	display: block;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_xz_item:hover .gz_xz_item_1_img>img:first-child{
	margin-top: -100%;
}
.gz_xz_item_2{
	width: 12%;
}
.gz_xz_item_3{
	width: 12%;
}
.gz_xz_item_4{
	width: 12%;
}
.gz_xz_item_5{
	width: 14%;
}
.gz_xz_item_5>a{
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_xz_item:hover .gz_xz_item_5>a{
	color: #FFFFFF;
}
.gz_xz_item_5>a>svg{
	width: 1.5rem;
	height: 1.5rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	margin-bottom: 0.2rem;
	margin-right: 0.2rem;
}
.gz_xz_item:hover .gz_xz_item_5>a>svg{
	fill: #FFFFFF;
}

.gz_pro{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.gz_pro_item{
	width: 32%;
	height: auto;
	margin-right: 2%;
	margin-top: 2rem;
	padding: 1rem;
	position: relative;
	background: #FFFFFF;
	margin-top: 5rem;
}
.gz_pro_item:nth-child(3n){
	margin-right: 0%;
}
.gz_pro_item_type{
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: -2rem;
	text-align: center;
}
.gz_pro_item_type>span{
	display: inline-block;
	width: auto;
	height: 4rem;
	line-height: 4rem;
	font-size: 1.875rem;
	color: #FFFFFF;
	background: var(--OneColor);
	border-radius: 50px;
	margin: 0 auto;
	padding: 0 2rem;
}
.gz_pro_item_type>span a{
	color: #FFFFFF;
}
.gz_pro_item_img{
	width: 100%;
	height: auto;
	padding:1rem 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.gz_pro_item_img img{
	width: 100%;
	height: calc((73vw * 0.32 - 2rem) * 292 / 446);
	height: calc((var(--mainwidth) * 0.32 - 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{
	width: 49.5%;
	height: auto;
	font-size: 1rem;
	color: rgba(0,0,0,0.8);
	text-align: left;
	margin-top: 0.6rem;
	font-family: opm;
	position: relative;
	padding-left: 0.8rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_pro_item_con2>a{
	width: 50%;
	height: auto;
	margin-left: 25%;
}
.gz_pro_item_con>a:hover{
	color: var(--OneColor);
}
.gz_pro_item_con>a:before{
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	background: #b2b2b2;
	border-radius: 50%;
	left: 0px;
	top: 0.5rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_pro_item_con>a:hover:before{
	background: var(--OneColor);
}
.gz_pro_bottom{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 5rem auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.gz_pro_bottom>a{
	display: block;
	width: 49.5%;
	height: calc(73vw * 0.495 * 284 / 694);
	height: calc(var(--mainwidth) * 0.495 * 284 / 694);
	position: relative;
}
.gz_pro_bottom_img{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}
.gz_pro_bottom_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_pro_bottom>a:hover .gz_pro_bottom_img>img{
	transform: scale(1.03);
}
.gz_pro_bottom_text{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 5;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 2.5rem;
	font-family: opm;
	color: #FFFFFF;
}

/*产品详情*/
.gz_spro_banner{
	width: 73vw;
    width: var(--mainwidth);
	height: 79vh;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.gz_spro_banner_left{
	width: 45%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gz_spro_banner_left_title{
	font-size: 2.25rem;
	color: var(--OneColor);
	font-family: opb;
}
.gz_spro_banner_left_title2{
	font-size: 2.875rem;
	color: #000000;
	font-family: opm;
	margin-top: 1rem;
}
.gz_spro_banner_left_line{
	width: 3.5rem;
	height: 3px;
	background: var(--OneColor);
	margin: 3rem 0;
}

.gz_spro_banner_left_menu{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin-top: 4rem;
}
.gz_spro_banner_left_menu_item{
	width: auto;
	height: auto;
	margin-right: 2rem;
	cursor: pointer;
}
.gz_spro_banner_left_menu_item_img{
	width: 9rem;
	height: 9rem;
	border-radius: 50%;
	padding: 1rem;
	border: 2px solid #FFFFFF;
	background: #FFFFFF;
	overflow: hidden;
-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	-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);
	display: flex;
	align-items: center;
	justify-content: center;
}
.gz_spro_banner_left_menu_itemon .gz_spro_banner_left_menu_item_img{
	border: 2px solid var(--OneColor);
}
.gz_spro_banner_left_menu_item_img>img{
	max-width:100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
}
.gz_spro_banner_left_menu_item_title{
	font-size: 1.125rem;
	font-family: opm;
	text-align: center;
	margin-top: 1rem;
}
.gz_spro_banner_downs{
	width: 100%;
	height: auto;
	margin-top: 4rem;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.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: 1rem;
	cursor: pointer;
}

.gz_spro_banner_downs a:hover{
	 color: #fff;
    background: var(--OneColor);
}
.gz_spro_banner_right{
	width: 45%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sn_spro_brsw{
	width: 100%;
	height: calc(73vw * 0.45);
	height: calc(var(--mainwidth) * 0.45);
}
.sn_spro_brsw_back{
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
.sn_spro_brsw_img{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	border-radius:50%;
}
.sn_spro_brsw_img>img{
	max-width:80%;
	height: auto;
	object-fit: cover;
	object-position: center;
}
.sn_spro_nav_box{
	width: 100%;
	height: 10vh;
	background: #FFFFFF;
}
#model_view_box16{ background: #fff;}
.sn_spro_nav{
	width: 73vw;
    width: var(--mainwidth);
	height: 10vh;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content:flex-start;
}
.sn_spro_nav>span{
	display: inline-block;
	height: 10vh;
	line-height: 10vh;
	color: #9b9b9b;
	font-size: 1.125rem;
	font-family: opm;
	color: #9b9b9b;
	margin-right: 4rem;
	position: relative;
	cursor: default;
}

.sn_spro_nav>span.sn_spro_nav_on{
	color: var(--OneColor);
}
.sn_spro_nav>span:after{
	position: absolute;
	content: '';
	width: 100%;
	height: 3px;
	background: var(--OneColor);
	left: 0;
	bottom: 0;
	transform: scaleX(0);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.sn_spro_nav>span.sn_spro_nav_on:after{
	transform: scaleX(1);
}
.sn_spro_box{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	position: relative;
}
.sn_spro{
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	padding: 7rem 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: row;
	justify-content: center;
	align-items: center;
}
.sn_spro_title_cn{
	font-size: 2.5rem;
	font-family: opm;
}
.sn_spro_title_en{
	font-size: 2.875rem;
	font-family: dm;
	text-transform: uppercase;
	color: rgba(0,0,0,0.2);
	margin-left: 1rem;
}

.sn_spro_model1{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.sn_spro_model1_title{
	width: 100%;
	height: auto;
	position: relative;
	font-size: 9.75rem;
	font-family: gb;
	/*text-transform: uppercase;*/
	color: rgba(0,0,0,0.02);
	text-align: center;
}
.sn_spro_model1_title_back{
	width: 100%;
	height: 4rem;
	line-height: 4rem;
	font-size: 3.125rem;
	font-family: opm;
	color: rgba(0,0,0,1);
	position: absolute;
	left: 0;
	top: calc(50% - 2rem);
}
.sn_spro_model1_con{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.8);
	line-height: 190%;
}


.sn_spro_model2{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	padding-top: 2rem;
	text-align: center;
	    font-size: 1.25rem;
    font-family: opm;
    color: rgba(0,0,0,0.8);
    line-height: 190%;
}
.sn_spro_model2 img{
	max-width: 100%;
}
.sn_spro_model2 table{
	margin: auto;
}

.sn_spro_model3{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sn_spro_model3_item{
	width: 49%;
	height: auto;
	min-height: 8rem;
	border-left: 3px solid var(--OneColor);
	background: #FFFFFF;
	padding: 1rem 2rem;
	margin-top: 2%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.sn_spro_model3_item_title{
	display: block;
	font-size: 1.375rem;

	font-family: opm;
}
.sn_spro_model3_item_des{
	display: block;
	margin-top: 1rem;
	font-size: 1.25rem;
	color: #575757;
	font-family: opm;
}


.sn_spro_tj_box{
	width: 100%;
	height: auto;
	/*background: #FFFFFF;
	padding: 10vh 0;*/
}
.sn_spro_tj_box_title{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	font-size: 3.125rem;
	font-family: opm;
	margin-bottom: 3rem;
}

/*首页*/
.gz_banner{
	width: 100%;
	height: 89vh;
	background: #FFFFFF;
}
.gz_banner .swiper-slide{
	width: 100%;
	height: 100%;
}
.gz_banner .swiper-slide a{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	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: 50%;
	height: 100%;
	padding: 8% 0;
	padding-left: 13.5vw;
	padding-left: calc((100vw - var(--mainwidth)) / 2);
	position: relative;
}
.gz_banner_left_title{
	font-size: 3rem;
	font-family: db;
	color: var(--OneColor);
	position: relative;
	z-index: 0;
}
.gz_banner_left_title:before{
	position: absolute;
	content: attr(text);
	font-size: 3rem;
	width: 4.8rem;
	padding-left: 4.2rem;
	height: 9rem;
	line-height: 9rem;
	color: #FFFFFF;
	background: var(--OneColor);
	left: -4rem;
	top: calc(50% - 4.5rem);
	border-radius: 50%;
	z-index: 0;
	overflow: hidden;
}
.gz_banner_left_title2{
	font-size: 4.375rem;
	font-family: opm;
	position: relative;
	z-index: 5;
}
.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: 20%;
	line-height: 180%;
	margin-top: 3rem;
}

.gz_banner_right{
	width: 50%;
	display: flex;
	align-items: center;
	font-size: 0px;
	overflow: hidden;
	position: relative;
}
.gz_banner_right_back{
	display: none;
}
.gz_banner_right>img{
	height: calc(100vw * 0.5 * 667 / 957);
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.gz_banner_btn{
	position: absolute;
	width: 50%;
	height: auto;
	left: 13.5vw;
	left: calc((100vw - var(--mainwidth)) / 2);
	bottom: 25%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	z-index: 20;
}
.gz_banner_btn>div{
	width: 3.5rem;
	height: 3.5rem;
	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);
	border-radius: 50%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	cursor: pointer;
	margin-right: 1rem;
}
.gz_banner_btn>div:hover{
	background: var(--OneColor);
}
.gz_banner_btn>div>svg{
	width: 1.5rem;
	height: 1.5rem;
	margin: 0 auto;
	fill:#919191;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_banner_btn>div:hover>svg{
	fill:#ffffff;
}

.gz_banner_pagination{
	position: absolute;
	width: 50%;
	height: auto;
	left: 13.5vw;
	left: calc((100vw - var(--mainwidth)) / 2);
	bottom: 10%;
	z-index: 20;
	font-family: dm;
	font-size: 1.125rem;
}

.gz_banner_pagination .swiper-pagination-current{
	font-size:2.5rem;
	font-family: dm;
	color: var(--OneColor);
}

.gz_id_yy{
	width: 73vw;
    width: var(--mainwidth);
	height: calc(73vw * 600 / 1400);
	height: calc(var(--mainwidth) * 600 / 1400);
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.gz_id_yy_item{
	width: 16%;
	height: 100%;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_yy_itemon{
	width: 67%;
}
.gz_id_yy_item_img{
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	left: 0;
	top: 0;
	z-index: 0;
}
.gz_id_yy_item_img>img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gz_id_yy_item_con{
	width: calc(73vw * 0.16);
	width: calc(var(--mainwidth) * 0.16);
	height: 100%;
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 10;
	padding: 3rem 0;
}
.gz_id_yy_item_con div{
	text-align: center;
}
.gz_id_yy_item_con span{
	display: inline-block;
	font-size: 1.875rem;
	font-family: opm;
	color: #FFFFFF;
	text-align: center;
	background-repeat: no-repeat;
	background-size: auto 3.06rem;
	background-position: top center;
	padding-top: 4rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_yy_itemon .gz_id_yy_item_con span{
	background-position: top left;
}
.gz_id_yy_item_btn{
	position: absolute;
	width: 8rem;
	height: 8rem;
	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: 16rem;
	height: 16rem;
	background: var(--OneColor);
	right: -8rem;
	bottom: -8rem;
	border-radius: 50%;
	text-align: left;
}
.gz_id_yy_item_btn svg{
	width: 2rem;
	height: 2rem;
	fill:#ffffff;
	position: absolute;
	left: 3.5rem;
	top: 3.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: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	border-top: 1px solid var(--OneColor);
	position: relative;
	padding: 2.5rem 0;
/*	margin-top: 4rem;*/
}
.gz_id_pro_title:after{
	position: absolute;
	content: '';
	width: 13rem;
	height: 3px;
	background: var(--OneColor);
	left: 0;
	top: -3px;
}
.gz_id_pro_title_left{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.gz_id_pro_title_right{
	text-align: right;
}
.gz_id_pro_title_right>a{
	font-size: 1.5rem;
	color: #333333;
	margin-left: 3rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_pro_title_right>a:hover{
	color: var(--OneColor);
}
.gz_id_pro_title_right>a.gz_id_pro_title_right_aon{
	color: var(--OneColor);
}

.gz_id_pro{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.gz_id_pro_menu{
	width: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 2rem;
	margin-bottom: 3rem;
}
.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: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.gz_id_pro{
	width: 73vw;
    width: var(--mainwidth);
	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(73vw * 0.24 * 0.7);
	height: calc(var(--mainwidth) * 0.24 * 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(73vw * 0.24 * 0.7);
	height: calc(var(--mainwidth) * 0.24 * 0.7);
	margin-left: 15%;
	position: relative;
	z-index: 10;
	margin-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gz_id_prosw_img_img>img{
	max-width:100%;
	max-height: 90%;
	object-fit: cover;
	object-position: center;
}
.gz_id_prosw_con{
	width: 92%;
	height: auto;
	margin: 0 auto;
	background: #FFFFFF;
	margin-top: calc(73vw * 0.24 * 0.7 * 0.5);
	margin-top: calc(var(--mainwidth) * 0.24 * 0.7 * 0.5);
	padding: 0 2rem;
	padding-top: calc(73vw * 0.24 * 0.7 * 0.5);
	padding-top: calc(var(--mainwidth) * 0.24 * 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(73vw * 0.24 * 0.5);
	border-bottom-right-radius: calc(73vw * 0.24 * 0.5);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_pro .swiper-slide a:hover .gz_id_prosw_con{
	background:rgba(0,0,0,0.1);
}
.gz_id_pro .swiper-slide a:hover .gz_id_prosw_title{
	color:#000;
}
.gz_id_pro .swiper-slide a:hover .gz_id_prosw_des{
	color: var(--OneColor);
}
.gz_id_pro .swiper-slide a:hover .gz_id_prosw_btn>svg{
	fill: var(--OneColor);
}

.gz_id_prosw_title{
	font-size: 1.5rem;
	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: 73vw;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 2rem;
}
.gz_id_ys_menu_item{
	width: 16%;
	height: auto;
	text-align: center;
	position: relative;
	cursor: default;
}
.gz_id_ys_menu_item:nth-child(1){
	margin-top: 5rem;
}
.gz_id_ys_menu_item:nth-child(1):after{
	position: absolute;
	content: '';
	width:63%;
	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: 20%;
}
.gz_id_ys_menu_item:nth-child(2):after{
	position: absolute;
	content: '';
	width:63%;
	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: 30%;
}
.gz_id_ys_menu_item:nth-child(4):after{
	position: absolute;
	content: '';
	width:63%;
	height: 100%;
	background-image: url("../images/id_ys_line3.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	left: -63%;
	top: 20%;
}
.gz_id_ys_menu_item:nth-child(4){
	margin-top: 5rem;
}

.gz_id_ys_menu_item_ico{
	width: 5rem;
	height: 5rem;
	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.625rem;
	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_menu_itemon .gz_id_ys_menu_item_title{
	color:var(--OneColor);
}

.gz_id_ys{
	width: 100%;
	height: calc(100vw * 666 / 1920);
	background-image: url("../images/id_ys_back.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.gz_id_ys .swiper-slide{
	display: flex;
	align-items: center;
	justify-content: center;
}
.gz_id_ys_con{
	width:calc(var(--mainwidth) * 0.4785) ;
	height: calc(var(--mainwidth) * 0.4785 * 396 / 670);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1.5rem solid #e7e7e7;
    border-radius: 200px;
}
.gz_id_ys_con_ico{
	width: 8rem;
	height: 8rem;
	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: 4rem;
	height: 4rem;
	margin: 1rem auto;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
}
.gz_id_ys_con_con{
	width: 90%;
	height: auto;
	margin: 0 auto;
	font-size: 1.125rem;
	font-family: opm;
	text-align: center;
	line-height: 140%;
	margin-top: 2rem;
}


.gz_id_ys_btn{
	width: 3.5rem;
	height: 3.5rem;
	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);
	border-radius: 50%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	cursor: pointer;
	position: absolute;
	top: calc(50% - 1.5rem);
	z-index: 20;
}
.gz_id_ys_btn_left{
	left: calc(13.5vw - 2rem);
	left: calc((100vw - var(--mainwidth)) / 2 - 2rem);
}
.gz_id_ys_btn_right{
	right: calc(13.5vw - 2rem);
	right: calc((100vw - var(--mainwidth)) / 2 - 2rem);
}
.gz_id_ys_btn:hover{
	background: var(--OneColor);
}
.gz_id_ys_btn>svg{
	width: 1.5rem;
	height: 1.5rem;
	margin: 0 auto;
	fill:#919191;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_ys_btn:hover>svg{
	fill:#ffffff;
}

.gz_id_ab_box{
	width: 100%;
	height: calc(100vw * 810 / 1920);
	background-image: url("../images/id_ab_back.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 100%;
	position: relative;
	overflow: hidden;
}
.gz_id_ab_img{
	width: calc(100vw * 810 / 1920 * 0.64);
	height: calc(100vw * 810 / 1920 * 0.64);
	position: absolute;
	top: 18%;
	left: 13.5%;
}
.gz_id_ab_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
}

.gz_id_ab_con_box{
	position: absolute;
	width: 33%;
	height: calc(100vw * 810 / 1920 * 0.64);
	left: 47.5%;
	top: 18%;
	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: flex-start;
	align-items: center;
}

.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.7rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.gz_id_ab_con_menu_btn:hover{
	background: var(--OneColor);
}
.gz_id_ab_con_menu_btn_text{
	font-size: 1.125rem;
	color: #FFFFFF;
	width: 0rem;
	height: 3rem;
	line-height: 3rem;
	text-align: right;
	overflow: hidden;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_ab_con_menu_btn:hover .gz_id_ab_con_menu_btn_text{
	width: 5rem;
	padding-right: 0.5rem;
}
.gz_id_ab_con_menu_btn_svg{
	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;
}
.gz_id_ab_con_menu_btn:hover .gz_id_ab_con_menu_btn_svg{
	background: var(--OneColor);
}
.gz_id_ab_con_menu_btn_svg>svg{
	width: 1.6rem;
	height: 1.6rem;
	fill:#919191;
	margin-top: 0.7rem;
}
.gz_id_ab_con_menu_btn:hover svg{
	fill: #ffffff;
}

.gz_id_ab_con_pagination{
	position: relative;
	width: 100%;
	height: auto;
	z-index: 20;
	font-family: dm;
	font-size: 1.25rem;
	color: #adadad;
}

.gz_id_ab_con_pagination .swiper-pagination-current{
	font-size:2.25rem;
	font-family: dm;
	color: #000000;
}

.gz_id_ab_con_title{
	font-size: 2.25rem;
	font-family: opm;
	margin-top: 2rem;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.gz_id_ab_con a:hover .gz_id_ab_con_title{
	color: var(--OneColor);
}
.gz_id_ab_con_des{
	font-size: 1.375rem;
	color: rgba(0,0,0,0.8);
	line-height: 160%;
	margin-top: 2rem;
	 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: calc(100vw * 810 / 1920 * 0.64);
	height: calc(100vw * 810 / 1920 * 0.64);
	position: absolute;
	top: 18%;
	right: calc(0px - 100vw * 810 / 1920 * 0.64 * 0.55);
	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: 6.6rem;
	height: 2rem;
	line-height: 2rem;
	font-size: 1.375rem;
	color: rgba(0,0,0,0.3);
	top: -0.75rem;
	left: -6.6rem;
	-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);
	}
}