/*导航*/
.zh_nav_box{
	width: 100%;
	height: 9vh;
	position: sticky;
    background: #0e2656;
	top: 0;
	z-index: 1000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


.zh_nav{
	width: 90%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.zh_nav_logo{
	width: auto;
	height: 100%;
	position: relative;
}
.zh_nav_logo>a{
	width: auto;
	height: 100%;
	margin: 0 auto;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
}

.zh_nav_logo img{
	width: auto;
	height: 60%;
	margin: 0 auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_nav_main{
	width: auto;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	position: static;
}

.zh_nav_meun{
	width: auto;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	position: static;
}
.zh_nav_meun_tiem{
	width: auto;
	height: 100%;
    margin: 0 1.2rem;
	position: relative;
}

.zh_nav_meun_tiem>a{
    width: auto;
	height: 100%;
	position: relative;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	display: flex;
	flex-direction: column;
	justify-content: center;
    font-size: 1.25rem;
    font-family: opm;
    color: #FFFFFF;
}
.zh_nav_meun_tiem:hover>a{
    color: var(--OneColor);
}
.zh_nav_meun_tiemon>a{
    color: var(--OneColor);
}

.yy_nav_down{
	position: absolute;
	width: calc(100% + 8rem);
	height: 0;
	overflow: hidden;
	background: #FFFFFF;
	top: 100%;
	left: -4rem;
	opacity: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    padding: 0 1rem;
}
.zh_nav_meun_tiem:hover .yy_nav_down{
	height: auto;
	opacity: 1;
}
.yy_nav_down_item{
    width: 100%;
    height: auto;
    padding: 0.8rem 0;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.yy_nav_down_item:last-child{
    border-bottom: 1px solid rgba(0,0,0,0);
}
.yy_nav_down_item>a{
	font-size: 1.062rem;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	
}
.yy_nav_down_item:hover>a{
	color:var(--OneColor);
}



.zh_nav_down{
	position: absolute;
	width: calc(100% + 6rem);
	height: 0;
	overflow: hidden;
	background: #FFFFFF;
	top: 100%;
	left: -3rem;
	opacity: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    padding: 0 1rem;
}
.zh_nav_meun_tiem:hover .zh_nav_down{
	height: auto;
	opacity: 1;
}
.zh_nav_down_item{
    width: 100%;
    height: auto;
    padding: 0.8rem 0;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.zh_nav_down_item:last-child{
    border-bottom: 1px solid rgba(0,0,0,0);
}
.zh_nav_down_item>a{
	font-size: 1.062rem;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	
}
.zh_nav_down_item:hover>a{
	color:var(--OneColor);
}


.zh_nav_search{
    width: 1.7rem;
    height: 100%;
    position: relative;
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zh_nav_search_ico{
    width: 1.7rem;
    height: 1.7rem;
}
.zh_nav_search_ico svg{
    fill:#ffffff;
    width: 100%;
    height: 100%;
}
.zh_nav_search_main{
    position: absolute;
    width: 20rem;
    overflow: hidden;
    background: #FFFFFF;
    top: 100%;
    left: -16rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    opacity: 0;
    height: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_nav_search:hover .zh_nav_search_main{
    height: 3rem;
    opacity: 1;
}
.zh_nav_search_main_input{
    width: 16rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zh_nav_search_main_input input{
    width: 100%;
    height: 2rem;
    border: none;
}
.zh_nav_search_main_btn{
    width: 3rem;
    height: 1.7rem;
    text-align: right;
}
.zh_nav_search_main_btn svg{
    width: 1.7rem;
    height: 1.7rem;
    fill:rgba(0,0,0,0.7);
}

.zh_nav_lang{
    width: auto;
    height: auto;
    margin-left: 1.5rem;
}
.zh_nav_lang a{
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to right,#485dff,#787bff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    font-size: 1.125rem;
    font-family: opm;
}

.zh_nav_index{
    position: fixed;
    top: calc(100vw * 670 / 1920 - 1rem);
    right: 4rem;
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 8px;
    background: linear-gradient(45deg,#485dff,#787bff);
    z-index: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zh_nav_index svg{
    width: 60%;
    height: 60%;
    margin: 0 auto;
    fill:#ffffff;
}

/*nbanner*/
.zh_nbanner{
    width: 100%;
    height: calc(100vw * 670 / 1920);
    position: relative;
}
.zh_ab_nbanner{
    width: 100%;
    height: calc(100vw * 615 / 1920);
    position: relative;
}
.zh_nbanner_img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    overflow: hidden;
    z-index: 0;
}
.zh_nbanner_img>img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}



/*footer*/
.zh_footer_box{
    width: 100%;
    height: auto;
    background:linear-gradient(30deg,#3663f4 60%,#6e7efd);
    position: relative;
}
.zh_footer{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.zh_footer_top{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    padding-top: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.zh_footer_top_logo{
    width: 40%;
    height: auto;
}
.zh_footer_top_logo img{
    height: 4rem;
}

.zh_footer_top_menu{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.zh_footer_top_menu a{
    display: block;
    font-size: 1.375rem;
    color: #FFFFFF;
    font-family: opm;
    margin-left: 3rem;
}


.zh_footer_bottom{
    width: 100%;
	height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    padding-bottom: 3.5rem;
}
.zh_footer_bottom_left{
    width: 50%;
    height: auto;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.2);
}
.zh_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;
}
.zh_footer_bottom_left a:hover{
    color:  rgba(255,255,255,1);
}
.zh_footer_bottom_right{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.zh_footer_bottom_right_ico{
    width: 4rem;
    height: 4rem;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0.8rem;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_footer_bottom_right_ico:hover{
    background: rgba(255,255,255,1.00);
}
.zh_footer_bottom_right_ico svg{
    width: 50%;
    height: 50%;
    fill:#ffffff;
    margin: 0 auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_footer_bottom_right_ico:hover svg{
    fill:var(--OneColor);
}
.zh_footer_bottom_right_code{
    position: absolute;
    width: 80px;
    height: 0px;
    font-size: 0;
    left: calc(50% - 40px);
    top: 0px;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_footer_bottom_right_ico:hover .zh_footer_bottom_right_code{
    height: 80px;
    top: -85px;
    opacity: 1;
}
.zh_footer_bottom_right_code img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/*通知公告*/
.zh_gg_menu_box{
    width: 100%;
    height: calc(100vw * 500 / 1920);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zh_gg_menu_img{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}
.zh_gg_menu_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.zh_gg_menu{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 6rem;
}
.zh_gg_menu_item{
    width: 17rem;
    height: 7rem;
    margin: 0 0.5rem;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(45deg,#ffffff,#e4ebff);
    border-radius: 10px;
    -moz-box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
    -webkit-box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
    box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
}
.zh_gg_menu_item_back{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: linear-gradient(45deg,#3663f4,#7180fe);
    opacity: 0;
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_gg_menu_item:hover .zh_gg_menu_item_back{
    opacity: 1;
}
.zh_gg_menu_itemon .zh_gg_menu_item_back{
    opacity: 1;
}
.zh_gg_menu_item_cn{
    font-size: 1.5rem;
    color: #000000;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    z-index: 5;
}
.zh_gg_menu_item:hover .zh_gg_menu_item_cn{
    color: #FFFFFF;
}
.zh_gg_menu_itemon .zh_gg_menu_item_cn{
    color: #FFFFFF;
}
.zh_gg_menu_item_en{
    font-size: 0.875rem;
    color: rgba(81,86,106,0.4);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    z-index: 5;
}
.zh_gg_menu_item:hover .zh_gg_menu_item_en{
    color: rgba(255,255,255,0.4);
}
.zh_gg_menu_itemon .zh_gg_menu_item_en{
    color: rgba(255,255,255,0.4);
}

.zh_gg{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    background: #FFFFFF;
    margin-top: -8rem;
    position: relative;
    z-index: 5;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 7rem;
}
.zh_gg_title{
    width: 100%;
    height: auto;
    text-align: center;
}
.zh_gg_title span{
    font-size: 4.812rem;
    font-family: opb;
    color: #0f2b5e;
    position: relative;
    padding: 0 3rem;
    padding-bottom: 1rem;
}
.zh_gg_title span:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 100%;
    height: 4px;
    background: #0f2b5e;
    left: 0;
    bottom: 0;
}
.zh_gg_ltitle{
    text-align: center;
    font-size: 1.25rem;
    color: #0f2b5e;
    margin-top: 2.3rem;
    font-family: opm;
}
.zh_gg_ctitle{
    text-align: center;
    font-size: 2.312rem;
    color: var(--OneColor);
    margin-top: 5rem;
    font-family: opm;
}
.zh_gg_con{
    font-size: 1.375rem;
    color: #000000;
    margin-top: 2rem;
    font-family: opm;
    line-height: 170%;
}
.zh_gg_time{
    font-size: 1.375rem;
    color: #000000;
    margin-top: 2rem;
    font-family: opm;
    line-height: 170%;
    text-align: right;
}

/*新闻直击*/
.zh_new_box{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 5rem;
}
.zh_new_title{
    text-align: center;
    font-size: 2.875rem;
    color: #000000;
    font-family: opm;
    letter-spacing: 0.5rem;
}
.zh_new_line{
    font-size: 0;
    width: 4rem;
    height: 3px;
    background: var(--OneColor);
    margin: 1rem auto;
}
.zh_new_ltitle{
    text-align: center;
    font-size: 1rem;
    color: rgba(81,86,106,0.4);
    font-family: opm;
    padding-top: 0.5rem;
}
.zh_new_sw_box{
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 2rem;
}
.zh_new_sw{
    width: 100%;
    height: auto;
}
.zh_new_sw_img{
    width: 100%;
    height: calc((1400px * 0.3333 - 20px) * 265 / 431);
    height: calc((var(--mainwidth) * 0.3333 - 20px) * 265 / 431);
    font-size: 0;
    overflow: hidden;
}
.zh_new_sw_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_new_sw a:hover .zh_new_sw_img img{
    transform: scale(1.05);
}
.zh_new_sw_con{
    width: 100%;
    height: 14rem;
    overflow: hidden;
    padding: 2rem;
    background: #FFFFFF;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 0 0 8px 8px;
}
.zh_new_sw a:hover .zh_new_sw_con{
    background: var(--OneColor);
}
.zh_new_sw_con_title{
    font-size: 1.625rem;
    color: #000000;
    font-family: opm;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_new_sw a:hover .zh_new_sw_con_title{
    color: #FFFFFF;
}
.zh_new_sw_con_des{
    font-size: 1.125rem;
    color: #000000;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 160%;
    margin-top: 1rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_new_sw a:hover .zh_new_sw_con_des{
    color: #FFFFFF;
}

.zh_new_sw_btn{
    position: absolute;
    width: 4rem;
    height: 4rem;
    background: var(--OneColor);
    border-radius: 50%;
    top: calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_new_sw_btn:hover{
    background: #FFFFFF;
}
.zh_new_sw_btn svg{
    width: 50%;
    height: 50%;
    margin: 0 auto;
    fill:#ffffff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_new_sw_btn:hover svg{
    fill: var(--OneColor);
}
.zh_new_sw_btn_left{
    left: -6rem;
}
.zh_new_sw_btn_right{
    right: -6rem;
}

/*重要嘉宾*/
.zh_jb_box{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 5rem;
    padding-bottom: 7rem;
}
.zh_jb{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: -2.5rem;
}
.zh_jb_item{
    width: 21.25%;
    height: auto;
    background: linear-gradient(45deg,#485dff,#787bff);
    border-radius: 8px;
    margin-right: 5%;
    margin-top: 5%;
    position: relative;
    padding:3rem 2.5rem;
}
.zh_jb_item:nth-of-type(4n){
    margin-right: 0;
}
.zh_jb_item_back{
    position: absolute;
    width: 80%;
    height: auto;
    left: 10%;
    top: 5rem;
    z-index: 0;
    opacity: 0.1;
}
.zh_jb_item_back img{
    width: 100%;
    height: auto;
}
.zh_jb_item_img_box{
    width: 100%;
    height: 13rem;
}
.zh_jb_item_img{
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    background: #FFFFFF;
    position: relative;
    z-index: 5;
    border: 4px solid #FFFFFF;
}
.zh_jb_item_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    
}
.zh_jb_item_title{
    font-size: 1.625rem;
    color: #FFFFFF;
    font-family: opm;
    text-align: center;
    margin-top: 1rem;
}
.zh_jb_item_ltitle{
    font-size: 1rem;
    color: #FFFFFF;
    text-align: center;
    margin-top: 0.7rem;
}

/*中拉论坛*/
.zh_lt_box{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 5rem;
    padding-bottom: 7rem;
}
.zh_lt{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 4rem;
    margin-top: 4rem;
    position: relative;
}
.zh_lt_left{
    width: 46.5%;
    height: calc(1400px * 0.465 * 389 / 652);
    height: calc(var(--mainwidth) * 0.465 * 389 / 652);
    position: relative;
    z-index: 5;
}
.zh_lt_left img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.zh_lt_right{
    position: absolute;
    width: 75%;
    height: calc(100% - 4rem);
    background: #FFFFFF;
    right: 0;
    bottom: 0;
    z-index: 0;
    padding-left: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 5rem;
}
.zh_lt_right_title{
    font-size: 1.875rem;
    font-family: opm;
    color: #000000;
}
.zh_lt_right_con{
    margin-top: 1rem;
}
.zh_lt_right_con a{
    display: block;
    font-size: 1.375rem;
    color: #000000;
    font-family: opm;
    margin: 1.5rem 0;
    position: relative;
    padding-left: 1.2rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_lt_right_con a:hover{
    color: var(--OneColor);
}
.zh_lt_right_con a:after{
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: var(--OneColor);
    border-radius: 50%;
    left: 0;
    top: calc(50% - 3px);
    font-size: 0;
}

/*参展企业详情*/
.zh_bread{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.125rem;
    color: rgba(0,0,0,0.8);
    font-family: opm;
}
.zh_bread a{
    color: rgba(0,0,0,0.8);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_bread a:hover{
    color: var(--OneColor);
}
.zh_bread span{
    padding: 0 0.2rem;
}

.zh_sqy{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 6rem;
}
.zh_sqy_left{
    width: 25%;
    height: auto;
    background-image: url("../images/sqy_left.jpg");
    background-size: cover;
    background-position: center;
}
.zh_sqy_left_logo{
    width: calc(1400px * 0.25 * 0.6);
    width: calc(var(--mainwidth) * 0.25 * 0.6);
    height: calc(1400px * 0.25 * 0.6);
    height: calc(var(--mainwidth) * 0.25 * 0.6);
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 50%;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.zh_sqy_left_logo img{
    width: 85%;
    height: auto;
    margin: 0 auto;
}
.zh_sqy_right{
    width: 75%;
    height: auto;
    background: #FFFFFF;
    padding: 2.5rem 3.5rem;
}
.zh_sqy_right_title{
    font-size: 1.875rem;
    color: #000000;
    font-family: opm;
}
.zh_sqy_right_line{
    font-size: 0;
    width: 3rem;
    height: 2px;
    background: var(--OneColor);
    margin-top: 1.5rem;
}
.zh_sqy_right_con{
    font-size: 1.125rem;
    color: rgba(0,0,0,0.8);
    font-family: opm;
    line-height: 160%;
    margin-top: 3rem;
}



/*同期展览*/
.zh_zl_box{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 5rem;
}
.zh_zl{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2rem;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
}
.zh_zl_left{
    width: 50%;
    height: auto;
    font-size: 0;
}
.zh_zl_left img{
    width: 100%;
    height: auto;
}
.zh_zl_right{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
}
.zh_zl_right_top{
    font-size: 1.375rem;
    color: #000000;
    line-height: 150%;
}
.zh_zl_right_bottom{
    margin-top: 4rem;
}
.zh_zl_right_title{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.zh_zl_right_title_ico{
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: linear-gradient(45deg,#485dff,#787bff);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zh_zl_right_title_ico img{
    width: 65%;
    height: 65%;
    margin: 0 auto;
}
.zh_zl_right_title_text{
    font-size: 1.375rem;
    font-family: opm;
    color: var(--OneColor);
    padding-left: 0.6rem;
}
.zh_zl_right_con{
    font-size: 1.375rem;
    color: #000000;
    line-height: 180%;
    margin-top: 1.5rem;
}

.zh_zl_sw_box{
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 2rem;
}

.zh_zl_sw_img{
    width: 100%;
    height: calc((1400px * 0.3333 - 8px) * 305 / 448);
    height: calc((var(--mainwidth) * 0.3333 - 8px) * 305 / 448);
    font-size: 0;
    overflow: hidden;
}
.zh_zl_sw_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_zl_sw a:hover .zh_zl_sw_img img{
    transform: scale(1.05);
}

.zh_zl_sw_btn{
    position: absolute;
    width: 4rem;
    height: 4rem;
    background: var(--OneColor);
    border-radius: 50%;
    top: calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_zl_sw_btn:hover{
    background: #FFFFFF;
}
.zh_zl_sw_btn svg{
    width: 50%;
    height: 50%;
    margin: 0 auto;
    fill:#ffffff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_zl_sw_btn:hover svg{
    fill: var(--OneColor);
}
.zh_zl_sw_btn_left{
    left: -6rem;
}
.zh_zl_sw_btn_right{
    right: -6rem;
}

.zh_zl_pagination{ 
	position: relative;
	width: 100%;
	height: auto;
	z-index: 10;
	text-align: center;
	bottom: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s; 
    margin-top: 2rem;
}

.zh_zl_pagination .swiper-pagination-bullet { 
	display: inline-block; 
	width:0.8rem; 
	height:0.8rem; 
	background: rgba(0,0,0,0.1);
	border-radius:50px;
	margin:0 0.5rem; 
	cursor: pointer;  
	-webkit-transition: all 0.4s ease-in-out;
}
.zh_zl_pagination .swiper-pagination-bullet-active{ 
	background: var(--OneColor);
}

.zh_new_ntitle{
    text-align: center;
    font-size: 1.625rem;
    color: #000000;
    font-family: opm;
    margin-top: 2rem;
}

.zh_zl_qy_sw{
    width: 100%;
    height: auto;
    
}
.zh_zl_qy_sw .swiper-slide{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: #FFFFFF;
    padding: 1rem;
    border-radius: 10px;
}
.zh_zl_qy_sw_img{
    width: 20%;
    height: calc(1400px * 0.2 * 130 / 320);
    height: calc(var(--mainwidth) * 0.2 * 130 / 320);
    font-size: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zh_zl_qy_sw_img div{
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    margin: 0 auto;
    text-align: center;
}
.zh_zl_qy_sw_img img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}


.zh_zl_qy_pagination{ 
	position: relative;
	width: 100%;
	height: auto;
	z-index: 10;
	text-align: center;
	bottom: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s; 
    margin-top: 2rem;
}

.zh_zl_qy_pagination .swiper-pagination-bullet { 
	display: inline-block; 
	width:0.8rem; 
	height:0.8rem; 
	background: rgba(0,0,0,0.1);
	border-radius:50px;
	margin:0 0.5rem; 
	cursor: pointer;  
	-webkit-transition: all 0.4s ease-in-out;
}
.zh_zl_qy_pagination .swiper-pagination-bullet-active{ 
	background: var(--OneColor);
}

/*视频影像*/
.zh_sp_box{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 5rem;
}
.zh_sp{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 2rem;
    position: relative;
}
.zh_sp2{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 2rem;
    position: relative;
}
.zh_sp_video{
    width: 70%;
    height: calc(1400px * 0.7 * 555 / 987);
    height: calc(var(--mainwidth) * 0.7 * 555 / 987);
    font-size: 0;
    position: relative;
    z-index: 0;
    cursor: pointer;
}
.zh_sp_video>a>img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.zh_sp_video_btn{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_sp_video:hover .zh_sp_video_btn{
    background: rgba(0,0,0,0);
}
.zh_sp_video_on .zh_sp_video_btn{
    opacity: 0;
}
.zh_sp_video_btn span{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    background: #FFFFFF;
    border-radius: 50%;
    margin: 0 auto;
}
.zh_sp_video_btn span svg{
    width: 60%;
    height: 60%;
    fill:var(--OneColor);
    margin: 0 auto;
}

.zh_sp_right{
    width: 30%;
    height: 100%;
    background: #f5f8fc;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 5rem;
}
.zh_sp2_right{
    width: 30%;
    height: 100%;
    background: #f5f8fc;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 5rem;
}
.zh_sp_right_en{
    width: 65%;
    height: auto;
    margin: 0 auto;
    font-size: 5rem;
    color: rgba(0,0,0,0.1);
    font-family: "Arial";
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.6rem;
}
.zh_sp_right_cn{
    width: 65%;
    height: auto;
    margin: 0 auto;
    font-size: 2rem;
    color: #000000;
    font-family: opm;
    margin-top: 2rem;
}

.zh_sp_sxc{
    width: 100%;
    height: auto;
    margin-top: 6rem;
    position: relative;
}
.zh_sp_sxc_img{
    position: absolute;
    width: 16rem;
    height: calc(16rem * 357 / 264);
    font-size: 0;
    right: 3rem;
    top: -3rem;
    z-index: 5;
    -moz-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
}
.zh_sp_sxc_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.zh_sp_sxc_con{
    width: 100%;
    height: calc(16rem * 357 / 264);;
    position: relative;
    z-index: 0;
    background: #eef7ff;
    border-radius: 10px;
    padding: 4rem;
}
.zh_sp_sxc_con_title{
    font-size: 1.625rem;
    color: #000000;
    font-family: opm;
}
.zh_sp_sxc_con_con{
    font-size: 1.125rem;
    color: rgba(0,0,0,0.7);
    font-family: opm;
    padding-right: 25rem;
    line-height: 160%;
    margin-top: 1.5rem;
}


.zh_sp_sw_box{
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 2rem;
}

.zh_sp_sw_img{
    width: 100%;
    height: calc((1400px * 0.3333 - 20px) * 249 / 444);
    height: calc((var(--mainwidth) * 0.3333 - 20px) * 249 / 444);
    font-size: 0;
    overflow: hidden;
}
.zh_sp_sw_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_sp_sw a:hover .zh_sp_sw_img img{
    transform: scale(1.05);
}


.zh_sp_sw_img_btn{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.zh_sp_sw_img_btn span{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    background: #FFFFFF;
    border-radius: 50%;
    margin: 0 auto;
}
.zh_sp_sw_img_btn span svg{
    width: 60%;
    height: 60%;
    fill:var(--OneColor);
    margin: 0 auto;
}

.zh_sp_sw_btn{
    position: absolute;
    width: 4rem;
    height: 4rem;
    background: var(--OneColor);
    border-radius: 50%;
    top: calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_sp_sw_btn:hover{
    background: #FFFFFF;
}
.zh_sp_sw_btn svg{
    width: 50%;
    height: 50%;
    margin: 0 auto;
    fill:#ffffff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_sp_sw_btn:hover svg{
    fill: var(--OneColor);
}
.zh_sp_sw_btn_left{
    left: -6rem;
}
.zh_sp_sw_btn_right{
    right: -6rem;
}




.zh_sp_sw_btns{
    position: absolute;
    width: 3rem;
    height: 3rem;
    background: var(--OneColor);
    border-radius: 50%;
    top:4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_sp_sw_btns:hover{
    background: #FFFFFF;
}
.zh_sp_sw_btns svg{
    width: 50%;
    height: 50%;
    margin: 0 auto;
    fill:#ffffff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_sp_sw_btns:hover svg{
    fill: var(--OneColor);
}
.zh_sp_sw_btn_lefts{
    right: 4rem;
}
.zh_sp_sw_btn_rights{
    right: 0;
}



.zh_sp_sj{
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: 16.41% 16.41% 16.41% 16.41% 16.41% 16.41%;
    grid-template-rows: calc(100vw * 0.1641 * 209 / 316) calc(100vw * 0.1641 * 209 / 316) calc(100vw * 0.1641 * 209 / 316);
    grid-gap: 0.3vw 0.3vw;
    margin: 7rem 0;
}

.zh_sp_sj_item{
	width:100%;
	height: 100%;
	font-size: 0px;
	overflow: hidden;
	position: relative;
}
.zh_sp_sj_item 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;
}
.zh_sp_sj_item:hover .zh_sp_sj_item img{
	transform: scale(1.03);
}

.zh_sp_sj_item:nth-of-type(9){
	grid-column-start: 3;
	grid-column-end: 5;
	grid-row-start: 2;
	grid-row-end: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*媒体支持*/
.zh_mt_box{
    width: 1400px;
    width: var(--mainwidth);
    height: auto;
    margin: 0 auto;
    padding-top: 5rem;
}
.zh_mt{
    width: 100%;
    height: auto;
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: #FFFFFF;
    padding: 1rem;
    border-radius: 10px;
}

.zh_mt_img{
    width: 20%;
    height: calc(1400px * 0.2 * 130 / 320);
    height: calc(var(--mainwidth) * 0.2 * 130 / 320);
    font-size: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zh_mt_img div{
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    margin: 0 auto;
    text-align: center;
}
.zh_mt_img img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.zh_mt_img_s{
    width: 25%;
    height: calc(1400px * 0.25 * 130 / 320);
    height: calc(var(--mainwidth) * 0.25 * 130 / 320);
    font-size: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zh_mt_img_s div{
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    margin: 0 auto;
    text-align: center;
}
.zh_mt_img_s img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.zh_mt_bd{
    width: 100%;
    height: auto;
    margin-top: 2rem;
    background: #FFFFFF;
    padding: 3rem;
    margin-bottom: 6rem;
}
.zh_mt_bd_sw{
    width: 100%;
    height: auto;
}
.zh_mt_bd_logo{
    width: 100%;
    height: auto;
    text-align: center;
}
.zh_mt_bd_logo img{
    width: auto;
    height: 6.5rem;
}

.zh_mt_bd_item{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 3rem 0;
}
.zh_mt_bd_item_left{
    width: 5rem;
    height: 5rem;
    background: #041e6d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.25rem;
    color: #FFFFFF;
    font-family: opm;
}
.zh_mt_bd_item_right{
    width: calc(100% - 5.3rem);
    height: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.1rem 0;
    padding-left: 2rem;
}
.zh_mt_bd_item_right_title{
    font-size: 1.875rem;
    color: #000000;
    font-family: opm;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_mt_bd_item:hover .zh_mt_bd_item_right_title{
    color: var(--OneColor);
}
.zh_mt_bd_item_right_ltitle{
    font-size: 1.25rem;
    color: rgba(0,0,0,0.8);
    font-family: opm;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_mt_bd_item:hover .zh_mt_bd_item_right_ltitle{
    color: rgba(0,0,0,1);
}

.zh_mt_bd_page{
	width: 100%;
	text-align: center;
	padding: 1rem 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.zh_mt_bd_page_btn{
	width: 4rem;
	height: 4rem;
	text-align: center;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 50%;
    font-size: 1.25rem;
    font-family: "Arial";
	background: #FFFFFF;
	margin: 0 0.75rem;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}
.zh_mt_bd_page_btn svg{
	width: 2rem;
	height: 2rem;
	fill:rgba(0,0,0,0.1);
	margin: 0 auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_mt_bd_page_btn:hover{
	background: #041e6d;
	color: #FFFFFF;
}
.zh_mt_bd_page_btn:hover svg{
	fill: #FFFFFF;
}

/*翻页*/
.zh_new_page{
	width: 100%;
	text-align: center;
	padding: 3rem 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.zh_new_page a{
	width: 2.8rem;
	height: 2.8rem;
	text-align: center;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 50%;
    font-size: 1.25rem;
    font-family: "Arial";
	background: #FFFFFF;
	margin: 0 0.3rem;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_new_page svg{
	width: 1.3rem;
	height: 1.3rem;
	fill:#000000;
	margin: 0 auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_new_page a:hover{
	background: var(--OneColor);
	color: #FFFFFF;
}
.zh_new_page a:hover svg{
	fill: #FFFFFF;
}
.zh_new_page a.zh_new_page_aon{
	background: var(--OneColor);
	color: #FFFFFF;
}

/*论坛日程*/
.zh_rc_box{
    width: 1400px;
    width: var(--mainwidth);
    height: auto;
    margin: 0 auto;
    padding-top: 5rem;
}
.zh_rc{
    width: 100%;
    height: auto;
    margin-top: 2rem;
    position: relative;
}
.zh_rc:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 2px;
    height: 100%;
    background-image: url("../images/rc_line.png");
    background-repeat: repeat-y;
    left: calc(1.15rem - 1px);
    top: 0;
}

.zh_rc_item{
    margin-bottom: 3.5rem;
}
.zh_rc_item_data{
    font-size: 1.375rem;
    color: #000000;
    font-family: opm;
    padding-left: 3.8rem;
}
.zh_rc_iteml{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2rem;
}
.zh_rc_iteml_ico{
    width: 2.3rem;
    height: 2.3rem;
    border: 2px solid #4d79f4;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0;
    margin-top: 0.35rem;
}
.zh_rc_iteml_ico span{
    display: block;
    width: 1rem;
    height: 1rem;
    margin: 0 auto;
    background: #4d79f4;
    border-radius: 50%;
}
.zh_rc_iteml_time{
    width: 12rem;
    height: 3rem;
    background: linear-gradient(to right,#3663f4,#6f7ffe);
    border-radius: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.375rem;
    color: #FFFFFF;
    font-family: opm;
    margin-left: 1.5rem;
}
.zh_rc_iteml_con{
    width: calc(100% - 15.8rem);
    height: auto;
    padding-left: 2rem;
}
.zh_rc_iteml_con_title{
    font-size: 1.375rem;
    color: #000000;
    font-family: opm;
    margin-top: 0.5rem;
}
.zh_rc_iteml_con_des{
    font-size: 1.125rem;
    color: #000000;
    margin-top: 0.7rem;
    line-height: 170%;
}


/*共同计划*/
.zh_jh_box{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 5rem;
    padding-bottom: 7rem;
}
.zh_jh{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-bottom: 4rem;
    margin-top: 4rem;
    position: relative;
}
.zh_jh_left{
    width: 46.5%;
    height: calc(1400px * 0.465 * 389 / 652);
    height: calc(var(--mainwidth) * 0.465 * 389 / 652);
    position: relative;
    z-index: 5;
}
.zh_jh_left img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.zh_jh_right{
    position: absolute;
    width: 75%;
    height: calc(100% - 4rem);
    background: #FFFFFF;
    left: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 4rem;
    padding-right: 30%;
}
.zh_jh_right_title{
    font-size: 1.875rem;
    font-family: opm;
    color: #000000;
}
.zh_jh_right_title a{
    color: #000000;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_jh_right_title a:hover{
    color: var(--OneColor);
}
.zh_jh_right_con{
    margin-top: 1rem;
}
.zh_jh_right_con a{
    display: block;
    font-size: 1.375rem;
    color: #000000;
    font-family: opm;
    margin: 1.5rem 0;
    position: relative;
    padding-left: 1.2rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_jh_right_con a:hover{
    color: var(--OneColor);
}
.zh_jh_right_con a:after{
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: var(--OneColor);
    border-radius: 50%;
    left: 0;
    top: calc(50% - 3px);
    font-size: 0;
}

/*成果发布*/
.zh_cg_box{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 5rem;
    padding-bottom: 7rem;
}
.zh_cg{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
}
.zh_cg_item{
    width: 19.75%;
    height: auto;
    margin-right: 7%;
    margin-top: 3rem;
}
.zh_cg_item:nth-of-type(4n){
    margin-right: 0;
}
.zh_cg_item_img{
    width: 100%;
    height: calc(1400px * 0.1975 * 357 / 264);
    height: calc(var(--mainwidth) * 0.1975 * 357 / 264);
    font-size: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_cg_item:hover .zh_cg_item_img{
    transform: scale(1.03);
}
.zh_cg_item_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.zh_cg_item_title{
    font-size: 1.25rem;
    color: #000000;
    font-family: opm;
    text-align: center;
    line-height: 150%;
    padding: 0 1rem;
    margin-top: 2.5rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_cg_item:hover .zh_cg_item_title{
    color: var(--OneColor);
}

/*关于协会*/
.zh_ab_jj_box{
    width: 100%;
    height: auto;
    padding: 5rem 0;
    background: #FFFFFF;
}
.zh_ab_jj{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2rem;
}
.zh_ab_jj_left{
    width: 45%;
    height: auto;
}
.zh_ab_jj_left_title{
    font-size: 1.75rem;
    font-family: opm;
    color: #000000;
}
.zh_ab_jj_left_con{
    font-size: 1.125rem;
    font-family: opm;
    color: rgba(46,46,46,0.7);
    line-height: 180%;
    margin-top: 2rem;
}
.zh_ab_jj_right{
    width: 49%;
    height: calc(1400px * 0.49 * 414 / 691);
    height: calc(var(--mainwidth) * 0.49 * 414 / 691);
    font-size: 0;
}
.zh_ab_jj_right img{
    width:100%;
	height: 100%;
}
.zh_ab_count_title{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.zh_ab_count_title_left{
    width: 50%;
    height: auto;
    font-size: 1.75rem;
    font-family: opm;
    color: #000000;
}
.zh_ab_count_title_right{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.zh_ab_count_btn{
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--OneColor);
    border: 2px solid var(--OneColor);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    margin-left: 1rem;
}
.zh_ab_count_btn:hover{
    background: #FFFFFF;
}
.zh_ab_count_btn svg{
    width: 50%;
    height: 50%;
    margin: 0 auto;
    fill:#ffffff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_ab_count_btn:hover svg{
    fill: var(--OneColor);
}

.zh_ab_count{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    margin-top: 2rem;
}
.zh_ab_count_sw{
    width: 100%;
    height: auto;
}
.zh_ab_count_sw .swiper-slide{
    width: auto;
    height: auto;
    padding: 0 4rem;
}
.zh_ab_count_sw_count{
    width: auto;
    display: inline-block;
    position: relative;
    padding-right: 1.8rem;
}
.zh_ab_count_sw_count_count{
    position: relative;
    font-size: 5rem;
    font-family: db;
    color: var(--OneColor);
}
.zh_ab_count_sw_count_unit{
    position: absolute;
    font-size: 2.437rem;
    font-family: opm;
    color: var(--OneColor);
    top: 0.5rem;
    right: 0;
}

.zh_ab_count_sw_title{
    display: block;
    font-size: 1.312rem;
    color: #000000;
}

.zh_ab_zz_box{
    width: 100%;
    height: auto;
    padding: 5rem 0;
    /*background-image: url("../images/ab_zz_back.jpg");*/
    background-size: cover;
    background-position: center;
}
.zh_ab_zz_title{
    text-align: center;
    margin-top: 2rem;
}
.zh_ab_zz_title span{
    display: inline-block;
    width: auto;
    height: 4rem;
    line-height: 4rem;
    background: linear-gradient(to right,#3663f4,#7180fe);
    font-size: 1.875rem;
    color: #FFFFFF;
    font-family: opm;
    padding: 0 4rem;
    border-radius: 10px;
}

.zh_ab_zz_wyh{
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.zh_ab_zz_wyh_left{
    width: 18rem;
    font-size: 1.75rem;
    font-family: opm;
    color: var(--OneColor);
}
.zh_ab_zz_wyh_right{
    width:25rem;
    font-size: 1.25rem;
    font-family: opm;
    color: rgba(0,0,0,0.8);
    line-height: 170%;
}
.zh_ab_zz_dw{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 2.5rem;
}
.zh_ab_zz_dw_item{
    width: 20rem;
    height: 8rem;
    background: #FFFFFF;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0 1rem;
    -moz-box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
    -webkit-box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
    box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
}
.zh_ab_zz_dw_item img{
    width: auto;
    height: 3.125rem;
}

.zh_ab_yt_box{
    width: 100%;
    height: auto;
    padding: 5rem 0;
    background: #FFFFFF;
}
.zh_ab_yt_top_1{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 5;
    padding-left: 2rem;
}
.zh_ab_yt_top_1 img{
    width: 11rem;
    height: 11rem;
}
.zh_ab_yt_top_2{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    position: relative;
    z-index: 0;
    margin-top: -5.5rem;
    background:linear-gradient(to right,#3663f4,#7180fe);
    padding: 3rem 2rem;
    border-radius: 8px;
    padding-left: 15rem;
    font-size: 1.375rem;
    color: #FFFFFF;
    font-family: opm;
    line-height: 170%;
}

.zh_ab_yt_menu{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 3rem;
}
.zh_ab_yt_menu:after{
    position: absolute;
    content: '';
    z-index: 0;
    width: 75%;
    height: 1.2rem;
    font-size: 0;
    background: #f5f8fc;
    left: 12.5%;
    top: calc(50% - 0.6rem);
}
.zh_ab_yt_menu_item{
    width: 23.5%;
    height: auto;
    padding: 1rem;
    position: relative;
    z-index: 5;
}
.zh_ab_yt_menu_item span{
    width: 9rem;
    height: 9rem;
    margin: 0 auto;
    background: linear-gradient(to right,#3663f4,#7180fe);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.937rem;
    font-family: opm;
    color: #FFFFFF;
    padding: 2rem;
    position: relative;
    z-index: 5;
}
.zh_ab_yt_menu_item span:after{
    position: absolute;
    content: '';
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    border: 2px dashed var(--OneColor);
    left: calc(-0.5rem - 2px);
    top: calc(-0.5rem - 2px);
    z-index: -1;
}

.zh_ab_yt{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 3rem;
}
.zh_ab_yt_item{
    width: 23.5%;
    height: auto;
    position: relative;
    z-index: 5;
    background: #f5f8fc;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}
.zh_ab_yt_item:after{
    content: '';
	width: 0px;
	height: 0px;
    position: absolute;
    pointer-events: none;
    top: -34px;
    left: calc(50% - 18px);
    border-color: transparent transparent #f5f8fc transparent;
    border-width: 18px;
    border-style: solid;
}
.zh_ab_yt_item span{
    display: block;
    text-align: center;
    font-size: 1.125rem;
    color: #000000;
    font-family: opm;
    padding: 0.2rem 0;
}

.zh_ab_jb_box{
    width: 100%;
    height: auto;
    padding: 5rem 0;
  /*  background: #f5f8fc;*/
}
.zh_ab_jb{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.zh_ab_jb_left{
    width: 36%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zh_ab_jb_left_des{
    font-size: 1.375rem;
    color: #000000;
    font-family: opm;
    line-height: 170%;
}
.zh_ab_jb_left_menu{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 3rem;
}
.zh_ab_jb_left_menu span{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 5rem;
    background: #FFFFFF;
    margin-top: 1.5rem;
    text-align: center;
    border-radius: 8px;
    font-size: 1.937rem;
    color: rgba(0,0,0,0.6);
    font-family: opm;
    cursor: default;
    -moz-box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
    -webkit-box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
    box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_ab_jb_left_menu span.zh_ab_jb_left_menu_son{
    background: linear-gradient(to right,#3663f4,#7180fe);
    color: #FFFFFF;
}
.zh_ab_jb_right{
    width: 50%;
    height: auto;
}

.zh_ab_jb_sw{
    width: 95%;
    height: auto;
    margin: 0 auto;
}
.zh_ab_jb_sw .swiper-slide{
    width: 100%;
    height: auto;
    font-size: 0;
}
.zh_ab_jb_sw .swiper-slide img{
    width: 100%;
    height: auto;
}

.zh_ab_jh_box{
    width: 100%;
    height: auto;
    padding: 5rem 0;
    background: #FFFFFF;
}
.zh_ab_jh{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}
.zh_ab_jh_top{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.zh_ab_jh_top_ico img{
    width: 5rem;
    height: 5rem;
}


.zh_ab_jh_pagination{
	width: 100%;
	height: auto;
	text-align: right;
	position: relative;
}

.zh_ab_jh_pagination .swiper-pagination-bullet { 
	display: inline-block; 
	width:0.7rem; 
	height:0.7rem;  
	background: rgba(0,0,0,0.1);
	border-radius: 50%;
    margin-left: 1rem;
	cursor: pointer;  
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_ab_jh_pagination .swiper-pagination-bullet-active{ 
	background: var(--OneColor);
}


.zh_ab_jh_sw{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    margin-top: 2rem;
}
.zh_ab_jh_sw .swiper-slide{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.zh_ab_jh_sw_left{
    width: 39%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.zh_ab_jh_sw_left_con{
    font-size: 1.375rem;
    font-family: opm;
    color: #000000;
    line-height: 170%;
}
.zh_ab_jh_sw_left_btn{
    width: 80%;
    height: auto;
}
.zh_ab_jh_sw_left_btn a{
    width: 100%;
    height: 5.5rem;
    background: linear-gradient(to right,#3663f4,#7180fe);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 1.5rem;
    border-radius: 10px;
}
.zh_ab_jh_sw_left_btn_ico svg{
    width: 2rem;
    height: 2rem;
    fill:#ffffff;
}
.zh_ab_jh_sw_left_btn_text{
    font-size: 1.25rem;
    color: #FFFFFF;
    font-family: opm;
    padding-left: 0.6rem;
}


.zh_ab_jh_sw_right{
    width: 54%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0;
}
.zh_ab_jh_sw_right img{
    width: 100%;
    height: auto;
}

.zh_ab_jh_dy{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    margin-top: 4rem;
    padding-bottom: 3rem;
}
.zh_ab_jh_dy_title{
    font-size: 1.875rem;
    color: #000000;
    font-family: opm;
}

.zh_ab_jh_dy_l{
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 2rem;
}
.zh_ab_jh_dy_sw{
    width: 100%;
    height: 10rem;
    -moz-box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
    -webkit-box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
    box-shadow: 0px 0px 25px 0 rgba(54,98,255,0.1);
    border-radius: 10px;
    
}
.zh_ab_jh_dy_sw .swiper-slide{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zh_ab_jh_dy_sw .swiper-slide div{
    width: 80%;
    height: 6rem;
    margin: 0 auto;
    text-align: center;
}
.zh_ab_jh_dy_sw .swiper-slide div img{
    width: auto;
    height: 100%;
    margin: 0 auto;
}

.zh_ab_jh_dy_btn{
    position: absolute;
    width: 4rem;
    height: 4rem;
    background: var(--OneColor);
    border-radius: 50%;
    top: calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_ab_jh_dy_btn:hover{
    background: #FFFFFF;
}
.zh_ab_jh_dy_btn svg{
    width: 50%;
    height: 50%;
    margin: 0 auto;
    fill:#ffffff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_ab_jh_dy_btn:hover svg{
    fill: var(--OneColor);
}
.zh_ab_jh_dy_btn_left{
    left: -6rem;
}
.zh_ab_jh_dy_btn_right{
    right: -6rem;
}

.zh_ab_jh_dy_pagination{ 
	position: absolute;
	width: 100%;
	height: auto;
	z-index: 10;
	text-align: center;
	bottom: -3rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s; 
}

.zh_ab_jh_dy_pagination .swiper-pagination-bullet { 
	display: inline-block; 
	width:0.8rem; 
	height:0.8rem; 
	background: rgba(0,0,0,0.1);
	border-radius:50px;
	margin:0 0.5rem; 
	cursor: pointer;  
	-webkit-transition: all 0.4s ease-in-out;
}
.zh_ab_jh_dy_pagination .swiper-pagination-bullet-active{ 
	background: var(--OneColor);
}

/*首页*/
.zh_id_banner{
    width: 100%;
    height: 91vh;
    position: relative;
}
.zh_id_banner_sw{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}
.zh_id_banner_sw .swiper-slide{
    width: 100%;
    height: 100%;
    font-size: 0;
}
.zh_id_banner_sw .swiper-slide img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.zh_id_banner_menu{
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 5;
}
.zh_id_banner_menu span{
    font-size: 0;
    display: block;
    width: 4rem;
    height: 2px;
    background: #7a8aad;
    margin: 0 0.4rem;
    position: relative;
}
.zh_id_banner_menu span.zh_id_banner_menu_son{
    background: #FFFFFF;
}
.zh_id_banner_menu span:after{
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    background: var(--OneColor);
}
.zh_id_banner_menu span.zh_id_banner_menu_son:after{
    animation: zhidbmamit 3s linear forwards;
}
@keyframes zhidbmamit
{
    to {
        width: 100%;
    }
}

.zh_id_ab_box{
    width: 100%;
    height: auto;
    padding: 5rem 0;
    background-image: url("../images/id_ab_back.jpg");
    background-size: cover;
    background-position: center;
}
.zh_id_ab_title{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.zh_id_ab_title_cn{
    font-size: 3.125rem;
    color: #000000;
    font-family: opm;
}
.zh_id_ab_title_line{
    font-size: 0;
    width: 1px;
    height: 3rem;
    background: rgba(0,0,0,0.1);
    margin:  0 2rem;
}
.zh_id_ab_title_en{
    font-size: 1.5rem;
    color: rgba(81,86,106,0.4);
    text-transform: uppercase;
    font-family: opm;
    letter-spacing: 0.2rem;
    line-height: 110%;
}

.zh_id_ab{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2rem;
}
.zh_id_ab_left{
    width: 45%;
    height: auto;
}
.zh_id_ab_left_title{
    font-size: 1.75rem;
    font-family: opm;
    color: #000000;
}
.zh_id_ab_left_con{
    font-size: 1.125rem;
    font-family: opm;
    color: rgba(46,46,46,0.7);
    line-height: 160%;
    margin-top: 2rem;
}
.zh_id_ab_right{
    width: 49%;
    height: auto;
    font-size: 0;
}
.zh_id_ab_right img{
    width: 100%;
    height: auto;
}


.zh_id_ab_count_title{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}
.zh_id_ab_count_title_left{
    width: 50%;
    height: auto;
    font-size: 1.75rem;
    font-family: opm;
    color: #000000;
}
.zh_id_ab_count_title_right{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.zh_id_ab_count_btn{
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--OneColor);
    border: 2px solid var(--OneColor);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    margin-left: 1rem;
}
.zh_id_ab_count_btn:hover{
    background: #FFFFFF;
}
.zh_id_ab_count_btn svg{
    width: 50%;
    height: 50%;
    margin: 0 auto;
    fill:#ffffff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_id_ab_count_btn:hover svg{
    fill: var(--OneColor);
}

.zh_id_ab_count{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    margin-top: 2rem;
}
.zh_id_ab_count_sw{
    width: 100%;
    height: auto;
}
.zh_id_ab_count_sw .swiper-slide{
    width: auto;
    height: auto;
    padding: 0 4rem;
}
.zh_id_ab_count_sw_count{
    width: auto;
    display: inline-block;
    position: relative;
    padding-right: 1.8rem;
}
.zh_id_ab_count_sw_count_count{
    position: relative;
    font-size: 5rem;
    font-family: db;
    color: #2c2c2c;
}
.zh_id_ab_count_sw_count_unit{
    position: absolute;
    font-size: 2.437rem;
    font-family: opm;
    color: #2c2c2c;
    top: 0.5rem;
    right: 0;
}

.zh_id_ab_count_sw_title{
    display: block;
    font-size: 1.312rem;
    color: #000000;
}

.zh_id_gg_box{
    width: 100%;
    height: auto;
    background: #f5f8fc;
    position: relative;
    padding-top: 14rem;
}
.zh_id_gg_back{
    position: absolute;
    width: 45%;
    height: 65%;
    background: linear-gradient(45deg,#3663f4,#7180fe);
    left: 0;
    top: 7rem;
    z-index: 0;
    text-align: center;
    font-size: 12rem;
    text-transform: uppercase;
    font-family: db;
    color: rgba(0,0,0,0.06);
}
.zh_id_gg{
    width: 100%;
    height: auto;
    padding-left: 260px;
	padding-left: calc((100vw - var(--mainwidth)) / 2);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.zh_id_gg_left{
    width: 20%;
    height: auto;
}
.zh_id_gg_left_title_cn{
    font-size: 3.125rem;
    color: #FFFFFF;
    font-family: opm;
}
.zh_id_gg_left_title_en{
    font-size: 1.5rem;
    color: rgba(255,255,255,0.4);
    font-family: opm;
    text-transform: uppercase;
    margin-top: 0.5rem;
}
.zh_id_gg_left_title_line{
    font-size: 0;
    width: 3rem;
    height: 1px;
    background: #FFFFFF;
    margin-top: 2.5rem;
}

.zh_id_gg_left_btnbox{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 30%;
}
.zh_id_gg_btn{
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    background: none;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    margin-right: 1rem;
}
.zh_id_gg_btn:hover{
    background: #FFFFFF;
}
.zh_id_gg_btn svg{
    width: 50%;
    height: 50%;
    margin: 0 auto;
    fill:rgba(255,255,255,0.4);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_id_gg_btn:hover svg{
    fill: var(--OneColor);
}


.zh_id_gg_right{
    width: 80%;
    height: auto;
}
.zh_id_gg_sw{
    width: 100%;
    height: auto;
}
.zh_id_gg_sw_img{
    width: 100%;
    height: calc(1660px * 0.8 * 0.31 * 313 / 424);
    height: calc(((var(--mainwidth) + ((100vw - var(--mainwidth)) / 2))) * 0.8 * 0.31 * 313 / 424);
    font-size: 0;
    overflow: hidden;
}
.zh_id_gg_sw_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_id_gg_sw a:hover .zh_id_gg_sw_img img{
    transform: scale(1.03);
}

.zh_id_gg_sw_con{
    width: 100%;
    height: auto;
    background: #FFFFFF;
    padding-top: 2rem;
}
.zh_id_gg_sw_con_title{
    font-size: 1.5rem;
    color: #000000;
    font-family: opm;
    height:4rem;
    overflow: hidden;
    padding: 0 2.5rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_id_gg_sw a:hover .zh_id_gg_sw_con_title{
    color: var(--OneColor);
}

.zh_id_gg_sw_con_titles{
    font-size: 1.2rem;
    color: #000000;
    font-family: opm;
    height:4rem;
    overflow: hidden;
    padding: 0 2.5rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


.zh_id_gg_sw_con_line{
    font-size: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin-top: 1rem;
}
.zh_id_gg_sw_con_bottom{
    width: 100%;
    height: auto;
    padding: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.zh_id_gg_sw_con_time{
    font-size: 1rem;
    color: #000000;
}
.zh_id_gg_sw_con_btn{
    font-size: 1rem;
    color: #000000;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_id_gg_sw a:hover .zh_id_gg_sw_con_btn{
    color: var(--OneColor);
}

.zh_id_hg_box{
    width: 100%;
    height: auto;
    padding: 6rem 0;
    background: #f5f8fc;
    overflow: hidden;
}
.zh_id_hg_title{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 20%;
}
.zh_id_hg_title_left{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.zh_id_hg_title_right{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.zh_id_hg_title_right_ico{
    font-size: 0;
}
.zh_id_hg_title_right_ico img{
    width: 4rem;
    height: auto;
}
.zh_id_hg_pagination{
	font-size: 1.375rem;
	font-family: opb;
    color: #787878;
    width: 6rem;
    text-align: right;
}
.zh_id_hg_pagination .swiper-pagination-current{
	color: var(--OneColor);
}

.zh_id_hg{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    position: relative;
    padding: 3rem 0;
}
.zh_id_hg_bback{
    position: absolute;
    width: 50%;
    height: 100%;
    background: #FFFFFF;
    left: -50px;
    top: 0;
    z-index: 0;
}
.zh_id_hg_sw{
    width: 80%;
	height: auto;
    margin: 0;
    overflow: visible;
    margin-top: 3rem;
}
.zh_id_hg_sw .swiper-slide{
    position: relative;
    width: 100%;
    height: auto;
}

.zh_id_hg_sw_img{
    width: 100%;
    height: calc(1400px * 0.8 * 409 / 1176);
    height: calc(var(--mainwidth) * 0.8 * 409 / 1176);
    font-size: 0;
    overflow: hidden;
    position: relative;
}
.zh_id_hg_sw_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    z-index: 0;
}
.zh_id_hg_sw_img_back{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_id_hg_sw .swiper-slide-active .zh_id_hg_sw_img_back{
    background: rgba(0,0,0,0);
}
.zh_id_hg_sw .swiper-slide-active a:hover .zh_id_hg_sw_img img{
    transform: scale(1.03);
}
.zh_id_hg_sw_title{
    font-size: 1.875rem;
    color: rgba(0,0,0,0.4);
    margin-top: 2rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_id_hg_sw .swiper-slide-active .zh_id_hg_sw_title{
    color: #000000;
}
.zh_id_hg_sw .swiper-slide-active a:hover .zh_id_hg_sw_title{
    color: var(--OneColor);
}
.zh_id_hg_sw_des{
    font-size: 1.312rem;
    color: rgba(0,0,0,0.4);
    margin-top: 1rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_id_hg_sw .swiper-slide-active .zh_id_hg_sw_des{
    color: rgba(0,0,0,0.8);
}
.zh_id_hg_sw .swiper-slide-active a:hover .zh_id_hg_sw_des{
    color: rgba(0,0,0,1);
}
.zh_id_hg_sw_time{
    font-size: 1rem;
    color: rgba(0,0,0,0.4);
    font-family: "Arial";
    margin-top: 1rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.zh_id_hg_sw .swiper-slide-active .zh_id_hg_sw_time{
    color: rgba(0,0,0,0.6);
}
.zh_id_hg_sw .swiper-slide-active a:hover .zh_id_hg_sw_time{
    color: rgba(0,0,0,1);
}




/*首页动画*/

/*nbanner*/

.sh_banner{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 500;
    background: #FFFFFF;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.sh_banneroff{
    opacity: 0;
    z-index: -1;
}
.sh_banner_sw{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.sh_banner_sw .swiper-slide{
    width: 100%;
    height: 100%;
    position: relative;
}
.sh_banner_img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    overflow: hidden;
    z-index: 0;
}
.sh_banner_video{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    position: relative;
    z-index: 0;
}

.sh_banner_img_back{
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-image: url("../images/banner_back.png");
    background-repeat: repeat;
    left: 0;
    top: 0;
}


.sh_banner_con{
    position: relative;
    z-index: 5;
    width: 90%;
	height: 100%;
	margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10rem;
}
.sh_banner_con_title{
    font-size: 4.125rem;
    color: #FFFFFF;
    transform: translateY(4rem);
    opacity: 0;
    transition: all 0.5s;
}
.sh_banner_sw .swiper-slide-active .sh_banner_con_title{
    transform: translateY(0);
    opacity: 1;
}
.sh_banner_con_title2{
    font-size: 4.125rem;
    color: #FFFFFF;
    transform: translateY(4rem);
    opacity: 0;
    transition: all 0.5s 0.2s;
}
.sh_banner_sw .swiper-slide-active .sh_banner_con_title2{
    transform: translateY(0);
    opacity: 1;
}


.sh_banner_btn{
    position: absolute;
    bottom: 3rem;
    z-index: 20;
    cursor: pointer;
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.sh_banner_btn:hover{
    background: var(--OneColor);
    border: 1px solid var(--OneColor);
}
.sh_banner_btn svg{
    width: 1.2rem;
    height: 1.2rem;
    fill:#ffffff;
    margin: 0 auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.sh_banner_btn_right{
    left: calc(5% + 4.5rem);
}
.sh_banner_btn_left{
    left: 5%;
}

.sh_banner_exit{
    position: absolute;
    bottom: 4rem;
    right: 5%;
    z-index: 20;
    cursor: pointer;
    width: 7rem;
    height: 3.1rem;
    border: 1px solid #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    font-size: 1.25rem;
    color: #FFFFFF;
}
.sh_banner_exit:hover{
    border: 1px solid var(--OneColor);
    background: var(--OneColor);
}


.sh_banner_rand{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.sh_banner_randoff{
    opacity: 0;
}
.sh_banner_rand1{
    width: 66vh;
    height: 66vh;
    background-image: url("../images/banner_rand_line.svg");
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sh_banner_rand2{
    width: 93%;
    height: 93%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.sh_banner_rand2_svg{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
}
.sh_banner_rand2_svg2{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    transform: rotate(90deg);
}
.sh_banner_rand2_svg2_s{
}

.sh_banner_rand2_svg3{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
}

.sh_banner_rand2_logo{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 20;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sh_banner_rand2_logo svg{
    height: 30%;
    width: auto;
    margin: 0 auto;
    fill:#ffffff;
}

.sh_banner_zz{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.sh_banner_zzon{
    z-index: 5100;
    opacity: 1;
}
.sh_banner_zz img{
    width: 100%;
    height: 100%;
	object-fit: cover;
	object-position: center;
    transform: scale(8);
}

.sh_banner_logeh{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: -1;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.sh_banner_logehon{
    z-index: 1500;
    opacity: 1;
}
.sh_banner_logeh img{
    width: 100%;
    height: 100%;
	object-fit: cover;
	object-position: center;
    transform: scale(1.3);
}

.zh_id_main{
    width: 100%;
    height: auto;
    font-size: 0;
    position: relative;
}
.module0275s{
	width:73vw;
	width:var(--mainwidth);
	height:auto;
	margin:0 auto;
	    margin-top: 2rem;
}
.module0275s_box{
	width:100%;
	height:auto;
	margin-top: 2rem;
}
.module0275s_box:nth-child(1){
	margin-top:0
}
.module0275s_box a{
	display:flex;
	justify-content:space-between;
	position:relative;
	    height: calc((1400px * 0.3333 - 20px) * 265 / 431);
    height: calc((var(--mainwidth) * 0.3333 - 20px) * 265 / 431);
	background: #fff;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	transition:all .5s
}
.module0275s_box a:hover{ background: var(--OneColor);}
.module0275s_box a:hover .module0275s_box_img img{
	-moz-transform:scale(1.05,1.05);
	-webkit-transform:scale(1.05,1.05);
	-o-transform:scale(1.05,1.05);
	-ms-transform:scale(1.05,1.05);
	transform:scale(1.05,1.05)
}
.module0275s_box a:hover .module0275s_box_title{
	color:#fff;
}.module0275s_box a:hover .module0275s_box_con{
	color:#fff;
}

.module0275s_box_img{
	 width: calc((1400px - 60px) / 3);
    width: calc((var(--mainwidth) - 60px) / 3);
	height:100%;
	font-size:0;
	overflow:hidden
}
.module0275s_box_img img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	transition:all .5s
}
.module0275s_box_right{
	width: calc(1400px * 0.66);
	width: calc(var(--mainwidth) * 0.66);

	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	padding: 20px;
}

.module0275s_box_title{
	position:relative;
	width:100%;
	font-size:1.625rem;
	font-family: opm;
	color:var(--FontOneColor);
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	transition:all .5s
}

.module0275s_box_con{
	width:100%;
	font-size:1.125rem;
	margin-top:2rem;
	color:var(--FontOneColor);
	
	line-height:160%;
	height:auto;
	    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
	overflow: hidden;
}

