/*导航*/
.nav_box{
	width: 100%;
	height: 5.5rem;
	background: #FFFFFF;
	position: sticky;
	top: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	z-index: 1000;
}
.nav_box_index{
	height: 7rem;
	position: fixed;
	background: none;
}
.nav_box_index_on{
	height:5.5rem;
	position: fixed;
	background: #FFFFFF;
	-moz-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 15px 15px 0 rgba(0,0,0,0.02);
}

.nav{
    width: 1600px;
    width: var(--mainwidth);
	height: 100%;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav_logo{
	width: auto;
	height: 50%;
	position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.nav_logo>a{
	width: auto;
	height: 100%;
	margin: 0 auto;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


.nav_logo img{
	width: auto;
	height: 100%;
	margin: 0 auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_main{
	width: auto;
	height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
	align-items: center;
}
.nav_menu{
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.nav_menu_item{
    width: auto;
    height: 100%;
	position: relative;
}
.nav_menu_item>a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: auto;
	height: 100%;
	position: relative;
	padding: 0 2.5rem;
	font-size: 1.375rem;
	color: rgba(0,0,0,0.8);
	font-family: opm;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	overflow: hidden;
}
.nav_menu_item_on>a{
	color: var(--OneColor);
}
.nav_menu_item:hover>a{
	color: var(--OneColor);
}
.nav_menu_item>a span{
	position: relative;
	z-index: 5;
}

.nav_box_index .nav_menu_item>a{
	color: #FFFFFF;
}
.nav_box_index .nav_menu_item_on>a{
	color: var(--OneColor);
}
.nav_box_index .nav_menu_item:hover>a{
	color: var(--OneColor);
}

.nav_box_index_on .nav_menu_item>a{
	color: #000000;
}
.nav_box_index_on .nav_menu_item_on>a{
	color: var(--OneColor);
}
.nav_box_index_on .nav_menu_item:hover>a{
	color: var(--OneColor);
}

.nav_down{
	position: absolute;
	width: 10rem;
	height: 0;
	overflow: hidden;
	background: rgba(255,255,255,0.9);
	left: calc(50% - 5rem);
	top: 100%;
	padding: 0rem 0rem;
	text-align: center;
	-moz-box-shadow: 0px 5px 5px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 5px 5px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 5px 5px 0 rgba(0,0,0,0.08);
	opacity: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_menu_item:hover .nav_down{
	opacity: 1;
	height: auto;
	padding: 1rem 0rem;
}
.nav_down a{
	display: block;
	font-size: 1rem;
	color: #656160;
	margin: 0.4rem 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_down a:hover{
	color: var(--OneColor);
}


.nav_search{
    width: auto;
    height: 2.7rem;
    padding: 0.5rem 0;
    font-size: 0;
    margin-right: 1rem;
    position: relative;
	z-index: 10;
	margin-left: 2rem;
}
.nav_search_dbtn{
    position: absolute;
    width: 4rem;
    height: 100%;
    right: -1rem;
    top: 0;
    z-index: 10;
    cursor: pointer;
}
.nav_search_on .nav_search_dbtn{
    display: none;
}
.nav_search a{
    display: inline-block;
    width: auto;
    height: 100%;
    position: relative;
    z-index: 5;
}
.nav_search svg{
    width: auto;
    height: 100%;
    fill:#000000;
    cursor: pointer;
}
.nav_box_index .nav_search svg{
    fill:#ffffff;
}
.nav_box_index_on .nav_search svg{
    fill:#000000;
}
.nav_search_main{
    position: absolute;
    width: 0rem;
    height: 120%;
    background: #FFFFFF;
    right: -1rem;
	border: 1px solid rgba(0,0,0,0.1);
    top: -10%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_box_on  .nav_search_main{
    border: 1px solid rgba(0,0,0,0.1);
}
.nav_search_on .nav_search_main{
    width: 25rem;
    opacity: 1;
}
.nav_search_main input{
    width: calc(100% - 4rem);
    height: 2rem;
    padding: 0 1rem;
    font-size: 1.125rem;
    border: none;
}

.nav_tel{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	width: auto;
	height: auto;
	font-family: bjm;
	color: #000000;
	font-size: 1.375rem;
	margin-right: 2rem;
}
.nav_box_index .nav_tel{
	color: #FFFFFF;
}
.nav_box_index_on .nav_tel{
	color: #000000;
}
.nav_tel svg{
	width: auto;
	height: 1.75rem;
	fill:#000000;
	margin-right: 1rem;
}
.nav_box_index .nav_tel svg{
	fill: #FFFFFF;
}
.nav_box_index_on .nav_tel svg{
	fill: #000000;
}

.nav_lag{
	font-family: bjm;
	color: #000000;
	font-size: 1.375rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_box_index .nav_lag{
	color: #FFFFFF;
}
.nav_box_index_on .nav_lag{
	color: #000000;
}
.nav_lag:hover{
	color: var(--OneColor);
}
.nav_box_index .nav_lag:hover{
	color: var(--OneColor);
}
.nav_box_index_on .nav_lag:hover{
	color: var(--OneColor);
}

.menubtn{
	display: none;
}

/*nbanner*/
.nbanner{
	width: 100%;
	height: auto;
}
.nbanner_img{
	width: 100%;
	height: auto;
	font-size: 0;
}
.nbanner_img img{
	width: 100%;
	height: auto;
}
.nbanner_img video{
	width: 100%;
	height: auto;
}



/*footer*/
.footer_box{
    width: 100%;
    height: auto;
    background:#0f2138;
    position: relative;
    overflow: hidden;
}
.footer{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 5rem;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: flex-start;
}

.footer_left{
    width: auto;
    height: auto;
    text-align: center;
}
.footer_left_item{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 2rem;
}
.footer_left_item_ico{
	width: auto;
	height: 2rem;
	font-size: 0;
}
.footer_left_item_ico svg{
	width: auto;
	height: 100%;
	fill:#ffffff;
}

.footer_left_item_con{
	padding-left: 1rem;
	font-size: 1.375rem;
	font-family: bjm;
	color: rgba(255,255,255,0.8);
}
.footer_left_item_con2{
	padding-left: 1rem;
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(255,255,255,0.8);
}

.footer_code{
    width: 11rem;
    height: auto;
    font-size: 0;
}
.footer_code img{
    width: 100%;
    height: auto;
}
.footer_left_title{
    font-size: 1rem;
    font-family: opr;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

.footer_menu{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.footerm_item{
    width: 12rem;
    height: auto;
}
.footerm_item_title{
    font-size: 1.5rem;
    color: #FFFFFF;
    font-family: opm;
    display: block;
}
.footerm_item_line{
	width: 100%;
	height: 1px;
	font-size: 0;
	background: #27384c;
	margin-top: 2rem;
	position: relative;
}
.footerm_item_line:after{
	position: absolute;
	content: '';
	width: 2rem;
	height: 3px;
	background: var(--OneColor);
	left: 0;
	top: -1px;
}

.footermc{
	width: auto;
	height: auto;
	margin-top: 1.5rem;
}

.footerm_item_con{
    display: block;
    font-size: 1.125rem;
    font-family: opm;
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footerm_item_con:hover{
    color: rgba(255,255,255,1);
}


.footer_bottom{
    width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    text-align: left;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 5;
	font-size: 1.125rem;
    color: rgba(255,255,255,0.3);
	font-family: opm;
	line-height: 150%;
}
.footer_bottom a{
    color: rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_bottom a:hover{
    color: rgba(255,255,255,1);
}
.footer_top{
	position: absolute;
	width: 17rem;
	height: 17rem;
	background: var(--OneColor);
	right: 0;
	bottom: 0;
	z-index: 10;
    clip-path:polygon(100% 0%,100% 100%, 0% 100%);
}
.footer_top a{
	cursor: pointer;
}
.footer_top_btn{
	width: 6rem;
	height: auto;
	text-align: center;
	position: absolute;
	bottom: 2.5rem;
	right: 2.5rem;
}
.footer_top_btn_ico{
	width: auto;
	height: auto;
	font-size: 0;
}
.footer_top_btn_ico svg{
	width: auto;
	height: 1.5rem;
	fill:#ffffff;
}
.footer_top_btn_title{
	font-size: 1rem;
	color: #FFFFFF;
	margin-top: 0.6rem;
}



/*map*/
.map_box{
	width: 100%;
	height: 6rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #FFFFFF;
}
.map{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.map_left{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
    color: rgba(0,0,0,1);
    font-family: opm;
    font-size: 1.125rem;
}
.map_left a{
    font-size: 1.125rem;
    color: rgba(0,0,0,1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-family: opm;
}
.map_left a:hover{
    color: var(--OneColor);
}
.map_left span{
    font-size: 1.125rem;
    color: rgba(0,0,0,1);
    padding: 0 0.5rem;
    font-weight: bold;
	font-family: '宋体';
}
.map_right{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
.map_right_item{
    font-size: 1.25rem;
    color: #000000;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-family: opm;
	margin-left: 3.5rem;
}
.map_right_item:hover{
    color: var(--OneColor);
}
.map_right_item_on{
    color: var(--OneColor);
}

/*nbanner*/
.nbanner{
    width: 100%;
    aspect-ratio: 1920/600;
    position: relative;
}
.nbanner_img{
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 0;
    left: 0;
    top: 0;
}
.nbanner_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.nbanner_con{
    position: absolute;
    width: 38%;
    height: 100%;
    z-index: 5;
    left: 0;
    top: 0;
    background: var(--OneColor);
    clip-path:polygon(0% 0%,95% 0%, 100% 40%, 70% 100%, 0 100%);
    padding-left: 100px;
    padding-left: calc((100vw - var(--mainwidth)) / 2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 5rem;
}
.nbanner_con_title{
    font-size: 1.375rem;
    color: #FFFFFF;
    font-family: opb;
}
.nbanner_con_ltitle{
    font-size: 3.375rem;
    color: #FFFFFF;
    font-family: opm;
    margin-top: 1rem;
}


/*翻页*/

.npage{
    width: 100%;
    height: auto;
    padding: 3rem 0 2rem 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}
.npage_as{
    width: 3.5rem;
    height: 3.5rem;
	border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
	background: var(--OneColor);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0 1rem;
}
.npage_as svg{
    width: 2rem;
    height: 2rem;
    fill:#ffffff;
    margin: 0 auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.npage_as:hover svg{
    fill:#ffffff;
}

.npage_ac{
    display: inline-block;
    width:2.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    margin: 0 0.2rem;
    font-size: 1.375rem;
    font-family: opm;
    color: rgba(0,0,0,1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.npage_ac:hover{
    color:var(--OneColor);
}
.npage_acon{
    color:var(--OneColor);
}

/*产品中心*/
.pro_list{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.pro_item{
	width: 48.5%;
	height: auto;
	margin-top: 2rem;
	padding-bottom: 2rem;
}
.pro_item_img{
	width: 100%;
	aspect-ratio: 827/547;
	font-size: 0;
	overflow: hidden;
	background: #FFFFFF;
}
.pro_item_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	transform: perspective(100px) translateZ(0px);
}
.pro_item:hover .pro_item_img img{
	transform: perspective(100px) translateZ(1px);
}
.pro_item_title{
	font-size: 1.5rem;
	font-family: opm;
	text-align: center;
	margin-top: 1.5rem;
	color: #000000;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.pro_item:hover .pro_item_title{
	color: var(--OneColor);
}

/*产品详情*/
.spro_gs{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 6rem;
}
.spro_gsl{
	width: 55%;
	aspect-ratio: 827/547;
	font-size: 0;
	background: #FFFFFF;
}
.spro_gsl img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.spro_gsr{
	width: 41%;
	height: auto;
}
.spro_gsr_title{
	font-size: 3.125rem;
	font-family: bjm;
	line-height: 90%;
}
.spro_gsr_ltitle{
	font-size: 1.625rem;
	font-family: opm;
	line-height: 100%;
	margin-top: 1rem;
}
.spro_gsr_con{
	font-size: 1.125rem;
	font-family: opm;
	line-height: 180%;
	color: rgba(0,0,0,0.7);
	margin-top: 3rem;
}
.spro_item{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	padding-top: 6rem;
}
.spro_item_title{
	font-size: 3.125rem;
	font-family: opm;
}
.spro_cs{
	width: 100%;
	height: auto;
	margin-top: 2rem;
}
.spro_cs img{
	width: 100%;
	height: auto;
}

/*服务支持*/
.fw_lx_box{
	width: 100%;
	height: auto;
	padding-top: 6rem;
	background: #FFFFFF;
}
.fw_lx{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	position: relative;
}
.fw_lx_title{
	font-size: 3.125rem;
	font-family: opm;
	color: #000000;
}
.fw_lx_des{
	width: 40rem;
	height: auto;
	font-size: 1.375rem;
	font-family: opm;
	color: rgba(0,0,0,0.6);
	line-height: 170%;
	margin-top: 2.5rem;
}

.fw_lxc{
	margin-top: 11rem;
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	padding-bottom: 7rem;
}
.fw_lxcl{
	border-left: 5px solid var(--OneColor);
	padding-left: 1.5rem;
}
.fw_lxcl_1{
	font-size: 3.125rem;
	font-family: db;
	line-height: 90%;
	color: #000000;
}
.fw_lxcl_2{
	font-size: 2.375rem;
	font-family: bjm;
	color: #000000;
	line-height: 130%;
	margin-top: 2rem;
}
.fw_lxcr{
	width: 10rem;
	height: auto;
	font-size: 0;
	margin-left: 8rem;
}
.fw_lxcr img{
	width: 100%;
	height: auto;
}


.fw_lx_img{
	position: absolute;
	width: auto;
	height: 100%;
	font-size: 0;
	right: -4rem;
	bottom: 0;
}
.fw_lx_img img{
	width: auto;
	height: 100%;
}

.fw_ly{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	background: #FFFFFF;
	margin-top: 6rem;
-moz-box-shadow: 0px 0px 25px 0 rgba(0,0,0,0.03);
    -webkit-box-shadow: 0px 0px 25px 0 rgba(0,0,0,0.03);
    box-shadow: 0px 0px 25px 0 rgba(0,0,0,0.03);
	padding: 3rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}
.fw_lyl{
	width: 27rem;
	height: auto;
	font-size: 3.125rem;
	font-family: opm;
	color: #000000;
}
.fw_lyr{
	width: calc(100% - 33rem);
	height: auto;
}
.fw_lyr form{
	width: 100;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.lx_sh_ly_item{
    width: 49.5%;
    height: 5rem;
    background: #ecf0f5;
    border-radius: 10px;
    margin-top: 1%;
}
.lx_sh_ly_item input{
    width: 100%;
    height: 100%;
    background: none;
    padding: 0 1.5rem;
    font-size: 1.125rem;
    border: none;
}
.lx_sh_ly_item2{
    width: 100%;
    height: 11rem;
    background: #ecf0f5;
    border-radius: 10px;
    margin-top: 1%;
}
.lx_sh_ly_item2 textarea{
    width: 100%;
    height: 100%;
    background: none;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    border: none;
}
.lx_sh_ly_btn{
    width: 100%;
    height: auto;
    margin-top: 2%;
}
.lx_sh_ly_btn a{
    width: auto;
    height: 4rem;
    background: var(--OneColor);
    border-radius: 4rem;
    margin-top: 1%;
    font-size: 1.375rem;
    font-family: opm;
    color: #FFFFFF;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	cursor: pointer;
}
.lx_sh_ly_btn a:hover{
    -moz-box-shadow: 0px 5px 10px 0 rgba(22,67,135,0.3);
    -webkit-box-shadow: 0px 5px 10px 0 rgba(22,67,135,0.3);
    box-shadow: 0px 5px 10px 0 rgba(22,67,135,0.3);
    transform: translateY(-2px);
}


/*关于我们*/
.ab_jj_box{
	width: 100%;
	height: auto;
	position: relative;
	background: #FFFFFF;
	padding-top: 6rem;
}
.ab_jj_back{
	position: absolute;
	width: 42%;
	height: auto;
	font-size: 0;
	left: 0;
	bottom: 0;
	z-index: 0;
}
.ab_jj_back img{
	width: 100%;
	height: auto;
}
.ab_jj{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 5;
}
.ab_jjl{
	width: 43.5%;
	height: auto;
}
.ab_jjl_title{
	font-size: 3.125rem;
	font-family: opm;
}
.ab_jjl_des{
	font-size: 2.625rem;
	margin-top: 7rem;
}

.ab_jjr{
	width: 56.5%;
	height: auto;
}
.ab_jjr_con{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.7);
	line-height: 170%;
}



.ab_jjr_num{
    margin-top: 8rem;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.ab_jjr_num_item_top{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.ab_jjr_num_item_count{
    font-size: 3.125rem;
    font-family: bjm;
    color: var(--OneColor);
    line-height: 100%;
}
.ab_jjr_num_item_rgiht{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 0.5rem;
}
.ab_jjr_num_item_rgiht_uit{
    font-size: 3.125rem;
    font-family: bjm;
    color: var(--OneColor);
    line-height: 100%;
}
.ab_jjr_num_item_title{
    font-size: 1.125rem;
    color: rgba(0,0,0,1);
    margin-top: 0.5rem;
	font-family: opm;
}



.ab_zz{
    width: 1400px;
    width: var(--mainwidth);
	margin: 0 auto;
    height: auto;
    margin-top: 2rem;
    display: grid;
	grid-template-columns: calc(33.33% - 1.3333rem) calc(33.33% - 1.3333rem) calc(33.33% - 1.3333rem);
    grid-template-rows: calc(1400px * 0.3333 * 311 / 443) calc(1400px * 0.3333 * 311 / 443);
    grid-template-rows: calc(var(--mainwidth) * 0.3333 * 311 / 443) calc(var(--mainwidth) * 0.3333 * 311 / 443);
    grid-gap: 2rem 2rem;
}


.ab_zz_item{
    position: relative;
    overflow: hidden;
	padding: 2rem;
	background: #eceef2;
	overflow: hidden;
}
.ab_zz_item:nth-of-type(1){
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 3;
}
.ab_zz_item_img{
    width: 100%;
    height: 100%;
    font-size: 0;
    overflow: hidden;
	z-index: 0;
}
.ab_zz_item_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    transform: perspective(100px) translateZ(0px);
}

.ab_zz_item_back{
    width: 100%;
    height: 60%;
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 0;
	background-image: linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,0.7));
	opacity: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_zz_item:hover .ab_zz_item_back{
	opacity: 1;
}

.ab_zz_item_title{
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 1rem;
    font-size: 1.125rem;
    font-family: opm;
    color: #FFFFFF;
    text-align: center;
	opacity: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ab_zz_item:hover .ab_zz_item_title{
	opacity: 1;
}


/*联系我们*/
.lx_top{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	padding-top: 6rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.lx_topl{
	width: 40%;
	height: auto;
}
.lx_topl_title{
	font-size: 3.125rem;
	font-family: opm;
	color: #000000;
	padding-bottom: 3rem;
}
.lx_topli{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 1rem;
}
.lx_topli_ico{
	width: 4rem;
	height: 4rem;
	background: var(--OneColor);
	border-radius: 50%;
	font-size: 0;
}
.lx_topli_ico img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.lx_topli_title{
	font-size: 1.5rem;
	font-family: opm;
	color: rgba(0,0,0,0.7);
	padding-left: 1rem;
}
.lx_topli_title2{
	font-size: 1.5rem;
	font-family: bjm;
	color: rgba(0,0,0,0.7);
	padding-left: 1rem;
}

.lx_topr{
	width: 57%;
	height: auto;
	font-size: 0;
}
.lx_topr img{
	width: 100%;
	height: auto;
}

.lx_fgs{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding-top: 3rem;
}
.lx_fgsi{
	width: 32%;
	height: auto;
	margin-right: 2%;
	margin-top: 2%;
	background: #eceef2;
	padding: 2.5rem;
}
.lx_fgsi:nth-child(3n){
	margin-right: 0;
}

.lx_fgsi_title{
	font-size: 1.875rem;
	font-family: opm;
	color: #000000;
}
.lx_fgsi_con{
	font-size: 1.125rem;
	font-family: opm;
	color: #6f6f6f;
	line-height: 170%;
	padding-top: 2rem;
}

/*新闻中心*/
.new_top{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 5rem;
}
.new_top a{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	height: auto;
}
.new_topl{
	width: 66%;
	aspect-ratio: 923/430;
	font-size: 0;
	overflow: hidden;
}
.new_topl img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	transform: perspective(100px) translateZ(0px);
}
.new_top a:hover .new_topl img{
	transform: perspective(100px) translateZ(1px);
}
.new_topr{
	width: 34%;
	height: auto;
	background: #FFFFFF;
	overflow: hidden;
	position: relative;
	padding: 2.5rem;
}
.new_topr_data1{
	font-size: 3.75rem;
	font-family: 'Arial';
	color: #000000;
	width: 5rem;
	text-align: center;
}
.new_topr_data2{
	font-size: 1.125rem;
	font-family: 'Arial';
	color: #000000;
	width: 5rem;
	text-align: center;
}
.new_topr_title{
	font-size: 1.375rem;
	font-family: opm;
	color: #000000;
	margin-top: 2rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.new_top a:hover .new_topr_title{
	color: var(--OneColor);
}
.new_topr_des{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.65);
	margin-top: 2rem;
	line-height: 170%;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.new_topr_btn{
	position: absolute;
	left: 2.5rem;
	bottom: 2.5rem;
	width: 11rem;
	height: 3rem;
	border-radius: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--OneColor);
	font-size: 1.125rem;
	color: #FFFFFF;
	font-family: opm;
}

.new_list{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.new_item{
	width: 32%;
	height: auto;
	margin-top: 2%;
	margin-right: 2%;
}
.new_item:nth-child(3n){
	margin-right: 0;
}
.new_item a{
	width: 100%;
	height: auto;
	display: block;
	background: #FFFFFF;
	padding: 2.5rem;
}
.new_item_data{
	font-size: 1.125rem;
	font-family: bjm;
	color: rgba(0,0,0,0.8);
}
.new_item_title{
	font-size: 1.375rem;
	font-family: opm;
	color: #000000;
	margin-top: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.new_item:hover .new_item_title{
	color: var(--OneColor);
}

.new_item_btn{
	width: 9rem;
	height: 3rem;
	border-radius: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--OneColor);
	font-size: 1.125rem;
	color: #FFFFFF;
	font-family: opm;
	margin-top: 1.5rem;
}


/*新闻详情*/
.snew{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	padding-top: 5rem;
}
.snew_title{
	font-size: 2.875rem;
	font-family: opb;
	color: rgba(0,0,0,0.8);
	text-align: center;
}
.snew_tag{
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.5);
	text-align: center;
	margin-top: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.snew_con{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.8);
	font-family: opm;
	line-height: 170%;
	padding: 2.5rem 0;
}

.snew_page{
	width: 100%;
	height: 4rem;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.snew_page a{
	font-size: 1.125rem;
	color: #000000;
	font-family: opm;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.snew_page a:hover{
	color: var(--OneColor);
}

.snew_tj{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 4rem;
}
.snew_tj_title{
	font-size: 1.75rem;
	font-family: opm;
	color: #000000;
}
.snew_tj .new_list{
	margin-top: 0;
}


/*首页*/
.id_banner{
	width: 100%;
	height: 100vh;
}
.id_banner_sw{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
}
.id_banner_img{
	width: 100%;
	height: 100%;
	font-size: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
.id_banner_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.id_banner_con{
	width: 1400px;
    width: var(--mainwidth);
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 5;
}
.id_banner_con_t1{
	font-size: 3.625rem;
	color: #FFFFFF;
	font-family: opm;
}
.id_banner_con_t2{
	font-size: 2.625rem;
	color: #FFFFFF;
	font-family: bjm;
	text-transform: uppercase;
	line-height: 100%;
	margin-top: 1rem;
}

.id_banner_pagination{
	position: absolute;
	left: 0;
	bottom: 1rem;
    width: 100%;
    height: 2.8rem;
    z-index: 10;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 1rem;
}
.pro_item_yy .swiper-pagination-bullets{
    bottom: 0;
}
.id_banner_pagination .swiper-pagination-bullet { 
	display: inline-block; 
	width:0.7rem; 
	height:0.7rem;  
	background: #FFFFFF;
	border-radius: 50%;
    margin: 0 0.4rem;
	cursor: pointer;  
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_banner_pagination .swiper-pagination-bullet-active{ 
	background: var(--OneColor);
}

.id_ab_box{
	width: 100%;
	height: auto;
	position: relative;
	padding-bottom: 6rem;
}
.id_ab{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
	z-index: 5;

}
.id_abl{
	width: 38%;
	height: auto;
	padding-top: 7rem;
}
.id_abl_ltitle{
	font-size: 1.375rem;
	font-family: pjb;
	color: var(--OneColor);
}
.id_abl_title{
	font-size: 3.375rem;
	font-family: opm;
	color: #000000;
	margin-top: 2rem;
	line-height: 130%;
}
.id_abl_con{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.8);
	margin-top: 5rem;
	line-height: 170%;
}
.id_abl_btn_box{
	width: auto;
	height: auto;
	margin-top: 4rem;
}
.id_abl_btn{
	width: auto;
	height: auto;
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.id_abl_btn_ico{
	width: 4rem;
	height: 4rem;
	background: var(--OneColor);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 0;
	padding-right: 0.5rem;
}
.id_abl_btn_ico svg{
	width: auto;
	height: 50%;
	margin: 0 auto;
	fill:#ffffff;
}
.id_abl_btn_title{
	font-size: 1.125rem;
	color: rgba(0,0,0,0.8);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	padding-left: 1rem;
	font-family: opm;
}
.id_abl_btn:hover .id_abl_btn_title{
	color: var(--OneColor);
}

.id_abr{
	width: 62%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
}

.id_abr_img{
	width: 100%;
	height: auto;
	font-size: 0;
	transform: translateX(10rem);
}
.id_abr_img img{
	width: 100%;
	height: auto;
}
.id_abrc{
	margin-top: 2rem;
}
.id_abrc_item{
	width: 33rem;
	height: 7rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.id_abrc_iteml{
	width: 18rem;
	height: auto;
	font-size: 4.375rem;
	font-family: bjm;
	color: var(--OneColor);
	font-weight: bold;
}

.id_abrc_itemr{
	width: 15rem;
	height: auto;
	font-size: 2rem;
	color: #000000;
	font-family: opm;
}

.id_pro_box{
	width: 100%;
	height: auto;
	padding: 6rem 0;
	background-image: url("../images/id_pro_back.jpg");
	background-size: cover;
	background-position: center;
}
.id_pro{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
}

.id_proc{
	width: 100%;
	height: auto;
	position: relative;
}
.id_proc_sw{
	width: 100%;
	height: auto;
	position: relative;
	z-index: 0;
}
.id_proc_sw .swiper-slide{
	width: 100%;
	height: auto;
}
.id_pro_title{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
.id_pro_titler{
	padding-bottom: 1rem;
}
.id_proc_box{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 4rem;
}
.id_procl{
	width: 39%;
	height: auto;
}
.id_procl_title{
	font-size: 3.125rem;
	font-family: bjm;
	color: #000000;
}
.id_procl_ltitle{
	font-size: 1.625rem;
	font-family: opm;
	color: #000000;
}
.id_procl_con{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.8);
	line-height: 200%;
	margin-top: 2rem;
	padding-left: 2rem;
	position: relative;
}
.id_procl_con:before{
	position: absolute;
	content: '';
	font-size: 0;
	width: 1px;
	height: 100%;
	background: rgba(0,0,0,0.1);
	left: 1px;
	top: 0;
}
.id_procl_con:after{
	position: absolute;
	content: '';
	font-size: 0;
	width: 3px;
	height: 1rem;
	background: var(--OneColor);
	left: 0px;
	top: 1rem;
}


.id_procr{
	width: 50%;
	height: auto;
	font-size: 0;
	padding-right: 5rem;
}
.id_procr img{
	width: 100%;
	height: auto;
}

.id_proc_btn_box{
	position: absolute;
	width: 100%;
	height: auto;
	bottom: 0;
	right: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.id_proc_btnl{
	position: relative;
	width: 30px;
	height: 13px;
	font-size: 0;
	overflow: hidden;
	z-index: 5;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	margin-right: 1rem;
	cursor: pointer;
}
.id_proc_btnl:hover{
	width: 58px;
}
.id_proc_btnl img{
	position: absolute;
	width: 58px;
	height: 13px;
	left: 0;
	top: 0;
}

.id_proc_btnr{
	position: relative;
	width: 30px;
	height: 13px;
	font-size: 0;
	overflow: hidden;
	z-index: 5;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	margin-left: 1rem;
	cursor: pointer;
}
.id_proc_btnr:hover{
	width: 58px;
}
.id_proc_btnr img{
	position: absolute;
	width: 58px;
	height: 13px;
	right: 0;
	top: 0;
}


.id_pro_menu{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 3rem;
}
.id_pro_menui{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 32.5%;
	height: 4.5rem;
	background: #FFFFFF;
	text-align: center;
	font-size: 1.375rem;
	font-family: opm;
	color: #000000;
	-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);
}
.id_pro_menui_on{
	background: var(--OneColor);
	color: #FFFFFF;
}

.id_new{
	width: 1400px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	padding: 6rem 0;
}

.id_newt{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 2rem;
}
.id_newtl{
	width: 66%;
	aspect-ratio: 923/430;
	position: relative;
}
.id_newtl_img{
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	overflow: hidden;
}
.id_newtl_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	transform: perspective(100px) translateZ(0px);
}
.id_newtl:hover .id_newtl_img img{
	transform: perspective(100px) translateZ(2px);
}
.id_newtl_con{
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	bottom: 0;
	padding: 2.5rem;
	z-index: 5;
}
.id_newtl_con_data{
	font-size: 1.125rem;
	color: rgba(255,255,255,0.8);
	font-family: bjm;
}
.id_newtl_con_title{
	font-size: 1.375rem;
	color: rgba(255,255,255,1);
	font-family: opm;
	margin-top: 0.7rem;
}

.id_newtr{
	width: 32%;
	height: auto;
	background-image: url("../images/id_new_back.jpg");
	background-size: cover;
	background-position: center;
	padding: 2.5rem;
	position: relative;
}
.id_newtr_data{
	font-size: 1.125rem;
	color: rgba(255,255,255,1);
	font-family: bjm;
}
.id_newtr_title{
	font-size: 1.75rem;
	color: rgba(255,255,255,1);
	font-family: opm;
	line-height: 130%;
	margin-top: 1rem;
}
.id_newtr_des{
	font-size: 1.125rem;
	color: rgba(255,255,255,0.9);
	font-family: opm;
	line-height: 160%;
	margin-top: 1.5rem;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.id_newtr_btn{
	position: absolute;
	left: 2.5rem;
	bottom: 2.5rem;
	width: 11rem;
	height: 3rem;
	border-radius: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 1.125rem;
	color: #FFFFFF;
	border: 3px solid #FFFFFF;
	font-family: opm;
}


.id_newc{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.id_newc_item{
	width: 32%;
	height: auto;
	margin-top: 2%;
	margin-right: 2%;
}
.id_newc_item:nth-child(3n){
	margin-right: 0;
}
.id_newc_item a{
	width: 100%;
	height: auto;
	display: block;
	background: #eceef2;
	padding: 2.5rem;
}
.id_newc_item_data{
	font-size: 1.125rem;
	font-family: bjm;
	color: rgba(0,0,0,0.8);
}
.id_newc_item_title{
	font-size: 1.375rem;
	font-family: opm;
	color: #000000;
	margin-top: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_newc_item:hover .id_newc_item_title{
	color: var(--OneColor);
}

.id_newc_item_btn{
	width: 9rem;
	height: 3rem;
	border-radius: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--OneColor);
	font-size: 1.125rem;
	color: #FFFFFF;
	font-family: opm;
	margin-top: 1.5rem;
}

.id_hb_box{
	width: 100%;
	height: auto;
	padding: 3rem 0;
	background: #eceef2;
}
.id_hb{
	width: 1400px;
    width: var(--mainwidth);
	aspect-ratio: 1400/760;
	margin: 0 auto;
}
.id_hb_sw{
	width: 100%;
	height: 100%;
}
.id_hb_sw .swiper-slide{
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.id_hb_mid{
	width: 38%;
	aspect-ratio: 533/614;
	background-image: url("../images/id_hb_back.png");
	background-size: cover;
	background-position: center;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.id_hb_mid_ltitle{
	font-size: 1.375rem;
	font-family: pjb;
	color: var(--OneColor);
	text-align: center;
}
.id_hb_mid_title{
	font-size: 3.375rem;
	font-family: opm;
	color: #000000;
	text-align: center;
	line-height: 120%;
	margin-top: 2.5rem;
}
.id_hb_mid_btn{
	text-align: center;
	margin-top: 3.5rem;
}
.id_hb_mid_btn a{
	position: relative;
	width: auto;
	height: auto;
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.8);
	padding-bottom: 0.4rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_hb_mid_btn a:hover{
	color: var(--OneColor);
}
.id_hb_mid_btn a:after{
	position: absolute;
	content: '';
	font-size: 0;
	width: 100%;
	height: 3px;
	background: var(--OneColor);
	left: 0;
	bottom: 0;
}

.id_hb_left{
	width: 21.5%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 5rem;
}
.id_hb_right{
	width: 21.5%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}
.id_hb_item{
	aspect-ratio: 533/614;
	background-image: url("../images/id_hb_back.png");
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.id_hb_item img{
	width: 100%;
}
.id_hb_1{
	width: 68.3%;
	transform: translateX(22%);
}
.id_hb_2{
	width: 56.3%;
	transform: translateX(100%) translateY(6%);
}
.id_hb_3{
	width: 68.3%;
}
.id_hb_4{
	width: 68.3%;
	transform: translateX(-72%) translateY(6%);
}
.id_hb_5{
	width: 47.6%;
}
.id_hb_6{
	width: 100%;
	transform: translateX(-19%);
}


.id_hb_pagination{
	position: absolute;
	left: 0;
	bottom: 0rem;
    width: 100%;
    height: 2.8rem;
    z-index: 10;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 1rem;
}

.id_hb_pagination .swiper-pagination-bullet { 
	display: inline-block; 
	width:0.8rem; 
	height:0.8rem;  
	background: #a5a6a9;
	border-radius: 50%;
    margin: 0 0.4rem;
	cursor: pointer;  
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.id_hb_pagination .swiper-pagination-bullet-active{ 
	background: var(--OneColor);
}
