.header {
	width: 100%;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	position: relative;
	top: 0;
}

.header .header_flx {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	padding: 0 2.5%;
	margin: auto;
}

.header_active {
	position: fixed;
	left: 0;
	top: 0;
	background-color: #fff;
	z-index: 99;
}

.header_act {
	top: -100px;
}

.logo {
	width: 70px;
	display: block;
}

.logo img {
	width: 100%;
}

.logo .logo_w {
	display: none;
}

.navge {
	width: 32%;
	display: flex;
	justify-content: space-between;
	margin-left: 5%;
}

.header .navge>div {
	
}

.header .nav1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.header .nav1 a {
	color: var(--tcolor);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	display: block;
	line-height: 80px;
	position: relative;
}

.header .nav1 a:after{
    width: 0;
    content:'';
    height: 2px;
    background: var(--tcolor);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: 0.5s;
}

.header .navge >div:hover .nav1 a:after{
    width: 100%;
}

.header .nav2 {
	display: none;
    position: absolute;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    z-index: 100;
    border-top: 1px solid #E7E7E7;
}

.nav2_cen {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nav2_l{
    width: 48.88%;
}

.navge>div:nth-child(2) .nav2_l{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.navge>div:nth-child(2) .nav2_l .nav2_l_item{
   flex: 1;
}

.navge>div:nth-child(2) .nav2_l .nav2_l_item:not(:last-child){
    padding-right: 8%;
    position: relative;
}

.navge>div:nth-child(2) .nav2_l .nav2_l_item:not(:last-child):after{
    content: '';
    width: 1px;
    height: 100%;
    background: #d9d9d9;
    position: absolute;
    right: 11%;
    top: 0;
}

.nav2_r{
    width: 36.5%;
    overflow: hidden;
}

.nav2_r img{
    width: 100%;
    transition: 0.5s;
}

.nav2_r:hover img{
    transform: scale(1.05);
}

.nav2_l_t {
    line-height: 1;
    font-weight: 500;
    color: var(--tcolor);
    font-family: 'HarmonyOS_Medium';
    display: flex;
    align-items: center;
}

.nav2_l_t img{
    width:auto;
    max-width: 25px;
    margin-right: 5px;
}

.nav2_l_t:hover{
    color:var(--color);
}

.nav2_l_s {
    font-weight: 400;
    color: #B8B8B9;
    line-height: 1.6;
    margin-top: 6px;
}

.nav2_l_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.other .nav2_l_list a{width:auto;margin-right:0%;flex:0 0 40%;padding-right:4%;}
.nav2_l_list a{
    width: 48%;
    display: flex;
    margin-right: 4%;
    font-weight: 400;
    color: var(--tcolor);
    line-height: 1.8;
    margin-top: 7px;
    margin-bottom: 7px;
    position: relative;
    align-items: baseline;
}

.nav2_l_list a:after{
    content:'';
    width: 0%;
    height:1px;
    background: var(--color);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.6s;
}

.nav2_l_list a:nth-child(2n){
    margin-right: 0;
}

.nav2_l_list a.new-name{
    pointer-events: none;
}

.nav2_l_list a svg {
    height: auto;
    width: 14px;
    margin-left: 20px;
    fill: #B8B8B9;
    transform: translateY(3px);
}

.nav2_l_list a:hover{
    color: var(--color);
}

.nav2_l_list a:hover svg{
    color: var(--color);
}

.nav2_l_list a:hover:after{
    width: 90%;
}

.header .nav1 svg{
    display: none;
}

.header_other {
	width: 35%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-between;
	margin-left: auto;
}


.header .world {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--tcolor);
	line-height: 1;
	position: relative;
}

.world_top {
    width: 100%;
    display: flex;
    align-items: center;
}

.header .world ul {
    width: 100px;
    position: absolute;
    left: 0;
    top: 28px;
    z-index: 10;
    background: #fff;
    padding: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.5s;
}

.header .world:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.header .world ul a{
    display: block;
    line-height: 28px;
    padding: 0 5px;
}

.header .world ul a:hover{
    color: var(--color);
}

.header .world svg {
	height: auto;
	width: 18px;
	margin-right: 5px;
}

.header .header_tel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--tcolor);
	line-height: 1
}

.header .header_tel svg {
	height: auto;
	width: 18px;
	margin-right: 5px;
}

.header_but {
	width: auto;
	display: flex;
	align-items: center;
}

.header_but a {
     font-size: 14px;
    color: var(--tcolor);
    height: 36px;
    display: flex;
    width: fit-content;
    padding: 0 15px;
    border: 1px solid var(--tcolor);
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header_but a:hover {
	background-color: var(--color);
	color: #fff;
	border: 1px solid var(--color);
}

.header_but a:nth-child(1) {
	margin-right: 10px;
}

.phone_menu {
	display: none;
	width: 30px;
	position: relative;
	margin-left: 10px;
}

.phone_menu span {
	background: #fff;
	height: 2px;
	display: block;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	width: 100%;
}

.phone_menu span:first-child {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	position: absolute;
	-webkit-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	transform: translateY(-8px);
}

.phone_menu span:last-child {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	position: absolute;
	-webkit-transform: translateY(8px);
	-ms-transform: translateY(8px);
	transform: translateY(8px);
	top: 0;
}

.menu_act span:first-child {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: translateY(0px) rotate(45deg);
	-ms-transform: translateY(0px) rotate(45deg);
	transform: translateY(0px) rotate(45deg);
}

.menu_act span:last-child {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: translateY(0px) rotate(135deg);
	-ms-transform: translateY(0px) rotate(135deg);
	transform: translateY(0px) rotate(135deg);
}

.menu_act span:nth-child(2) {
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

#nyBan {
	width: 100%;
	overflow: hidden;
	position: relative;
	max-height: 520px;
}

.crumbs {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	height: 40px;
	background: linear-gradient(281deg, rgba(255, 255, 255, 0) 47%, rgba(0 0 0 / 10%) 100%);
	border-bottom: 1px solid rgba(107, 107, 107, 0.14);
	display: flex;
	align-items: center;
}

.crumbs .wrap {
	display: flex;
	align-items: center;
}

.crumbs .wrap .firstLi {
	padding-left: 30px;
	background: url(../img/Frame.png) no-repeat left 0px;
}

.crumbs .wrap .mianLi {
	color: #fff;
	position: relative;
	line-height: 20px;
}

.crumbs .wrap .mianLi:not(:first-child) {
	padding-left: 20px;
}

.crumbs .wrap .mianLi:not(:first-child)::before {
	content: '';
	width: 5px;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 7px;
	top: 50%;
	transform: translateY(-50%);
}


#nyBan .banImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#nyBan .nyBan_text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#nyBan .nyBan_text_t {
	color: #fff;
	line-height: 1;
	font-family: 'HarmonyOS_Medium';
}

.ban_text_s{
    color: #fff;
}

#nyBan .nyBan_text_b {
	color: #fff;
	margin-top: 15px;
	line-height: 1.6;
	font-family: 'HarmonyOS_Medium';
}


/*按钮样式*/
.s_but{
    position: relative;
    overflow: hidden;
}

.s_but:before {
    content: "";
    position: absolute;
    display: block;
    transition: all .6s;
    width: 100%;
    height: 0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    padding-top: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.s_but:hover:before {
    animation: style1 .75s;
    z-index: 1;
}
/*end*/







.footer {
	background-image: url(../img/fotBj.jpg);
	background-position: center;
	background-size: cover;
}

.footer .con1 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	border-bottom: 1px solid rgba(30, 43, 49, 5%);
}

.footer_r {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.footer_l img {
	width: auto;
	max-width: 95px;
}

.fot_fx_t {
	font-size: 14px;
	color: #4d5b74;
}

.footer_r ul {
	display: flex;
	align-items: center;
}

.footer_r ul li {
	width: auto;
	margin-left: 15px;
	position: relative;
}

.footer_r ul li a {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(30 43 49 / 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
}

.footer_r ul li img {
	width: auto;
	max-width: 100%;
}

.ewmimg {
    width: 90px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0 0 0 / 10%);
}

.ewmimg img {
	width: 100%;
}

.footer_r ul li:hover .ewmimg {
	bottom: 50px;
	opacity: 1;
	visibility: visible;
}

.footer_r ul li:hover a {
	transform: translateY(-5px);
}

.con2 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.con2_l {
	width: 54%;
}

.con2_r {
	width: 260px;
}

.con2_l>ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.con2_l>ul>li {
	width: auto;
}

.con2_l>ul>li>a {
	display: block;
	line-height: 1;
	color: #1e2b31;
}

.con2_l>ul>li ul {
	width: auto;
	margin-top: 20px;
}

.con2_l>ul>li ul li a {
	font-size: 14px;
	line-height: 1;
	color: #4d5b74;
	margin-top: 15px;
	display: block;
}

.con2_r_t {
	line-height: 1;
	font-size: 14px;
	color: #4d5b74;
}

.con2_r_l {
	color: #1e2b31;
    margin-top: 10px;
    display: block;
    line-height: 1.2;
}

.con2_r li:nth-child(2){
    margin-top: 30px;
}

.footer a:hover {
	color: inherit;
}

.footer_line {
	background: rgba(30, 43, 49, 5%);
	height: 1px;
}

.fot_bq {
	display: flex;
	flex-wrap: wrap;
}

.fot_bq_t {
	line-height: 1.8;
	font-size: 14px;
	color: #4d5b74;
}

.beianhao {
	margin-left: 10px;
	display: block;
}

.fot_bq_ri {
	margin-left: auto;
}

.fot_bq_ri a {
	line-height: 1.8;
	font-size: 14px;
	color: #4d5b74;
}


.fot_cn5 {
	width: 100%;
	overflow: hidden;
	height: 300px;
	display: flex;
	align-items: center;
	position: relative;
}

.fot_cn5 >img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.fot_cn5 .con {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.fot_cn5_lr {
	width: 50%;
}

.fot_cn5_ri {
	width: 35%;
	margin-left: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.fot_cn5_b {
	font-weight: bold;
	color: var(--color);
}

.fot_cn5_s {
	color: #000;
	margin-top: 15px;
}

.fot_cn5_ri a {
	font-size: 16px;
	color: #fff;
	height: 48px;
	display: flex;
	width: 40%;
	border: 1px solid rgba(255, 255, 255, 0.4);
	align-items: center;
	justify-content: center;
	transition: 0.5s;
	    text-align: center;
}

.fot_cn5_ri a:hover {
	background-color: #fff;
	color: var(--color);
	border: 1px solid #fff;
}

.fot_cn5_ri a:nth-child(1) {
	margin-right: 10px;
}


.page {
	width: 100%;
}

.laypage_main{
    width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.laypage_main .page_fir {
	font-weight: 400;
	font-size: 16px;
	color: #64728D;
}

.laypage_main .laypage_prev {
    font-weight: 400;
    font-size: 16px;
    color: #64728D;
    margin: 0 10px;
    background: transparent;
    width: auto;
    height: auto;
}

.laypage_main .laypage_next {
    font-weight: 400;
    font-size: 16px;
    color: #64728D;
    margin: 0 10px;
    background: transparent;
    width: auto;
    height: auto;
}

.laypage_main .page_lat {
	font-weight: 400;
	font-size: 16px;
	color: #64728D;
}

.laypage_main a {
	width: 40px;
    height: 40px ;
    line-height: 40px ;
    background: #EEF1F3 ;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: #64728D ;
    font-size: 16px;
}

.laypage_main .laypage_curr {
    background: var(--color);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    font-size: 16px;
    text-align: center;
}

.laypage_main a:hover {
	background: var(--color);
	color: #fff;
}

.page span {
	margin: 0 5px;
}

.laypage_main .page_fir:hover {
	text-decoration: underline;
	background: transparent;
	color: inherit;
}

.laypage_main .laypage_prev:hover {
	text-decoration: underline;
	background: transparent;
	color: inherit;
}

.laypage_main .laypage_next:hover {
	text-decoration: underline;
	background: transparent;
	color: inherit;
}

.laypage_main .page_lat:hover {
	text-decoration: underline;
	background: transparent;
	color: inherit;
}

/*滚动条*/
::-webkit-scrollbar{
    width: 5px;
}

::-webkit-scrollbar-track{
    background-color: #f5f5f5;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb{
    background-color: var(--color);
}


/*弹窗*/
.ysTan {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1000;
	display: none;
}

.yyTan {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1000;
	display: none;
}

.ysCen {
	width: 90%;
	max-width: 800px;
	background: #FFFFFF;
	border: 1px solid #E7E7E7;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 40px 70px;
}

.ys_Close {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	background: url(../img/close1.png) no-repeat center;
	transition: 0.8s;
}

.ys_Close:hover{
    transform: rotate(90deg);
}

.ys_t {
	font-weight: bold;
	color: var(--tcolor);
	text-align: center;
}

.ys_f {
	text-align: center;
	color: #B8B8B9;
	margin-top: 5px;
}

.layui-form-item .layui-input {
	height: 48px;
	padding: 10px 15px;
}

.dis_flex {
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.dis_flex .layui-form-item {
	width: 100%;
}

.tel_item .layui-input-block{
	width: 100%;
	display: flex;
}

.tel_item .layui-input-block .layui-input{
	width: calc(97% - 125px);
    padding-right: 100px;
    position: relative;
}

.layui-but {
    font-size: 12px;
    position: absolute;
    left: calc(81% - 140px);
    top: 13px;
    color: var(--color);
    cursor: pointer;
    width: 90px;
    line-height: 1.2;
}


.tel_item .layui-input-block .layui-yzm{
	width: 125px;
    padding: 0 10px;
    border-width: 1px;
    border-style: solid;
    background-color: #fff;
    color: rgba(0, 0, 0, .85);
    border-radius: 2px;
    border-color: #eee;
    margin-left: auto;
}

.form-check.p_input {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layui-form .form-check .layui-form-checkbox {
    width: 20px;
    height: 20px;
    line-height: 20px;
    padding: 0px;
    border: none;
    overflow: hidden;
    background-color: #d1d1d1;
    border-radius: 2px;
    margin-top: 0;
}

.layui-form .form-check .layui-form-checkbox i {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    font-size: 12px;
    color: var(--color);
    font-weight: bold;
    display: none;
}

.layui-form .form-check .layui-form-checkbox.layui-form-checked i{
    display: block;
}

.anTitle{
    width: auto;
    display: flex;
    flex-wrap: wrap;
}

.anTitle a{
    color: var(--color);
    
}

.submit {
	    width: auto;
    padding: 0 15px;
	height: 48px;
	background: var(--color);
	border: 1px solid var(--color);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: relative;
    overflow: hidden;
}

.submit:before{
    content: "";
    position: absolute;
    display: block;
    transition: all .6s;
    width: 100%;
    height: 0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    padding-top: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.submit:hover:before {
    animation: style1 .75s;
    z-index: 1;
}

.ys_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.ys_list li {
	width: 48.5%;
	background: #F7FAFB;
	border-radius: 15px;
	padding: 15px 20px;
}

.ys_list_t {
	line-height: 1;
	color: #818181;
	padding-left: 27px;
}

.ys_list_l {
	color: var(--tcolor);
	font-family: 'HarmonyOS_Medium';
	padding-left: 25px;
	background-image: url(../img/Vector.png);
	background-repeat: no-repeat;
	background-position: left 3px;
	background-size: 14px;
	margin-top: 5px;
	display: block;
}

.ysTan.show {
	display: block;
}

.yyTan.show {
    display: block;
}
/*end*/


/*侧边栏*/
.cbBox {
    width: auto;
    position: fixed;
    right: 10px;
    top: 55%;
    transform: translateY(-50%);
    z-index: 100;
}

/*.cbBox .cbBut {
    background: #fff;
    width: 30px;
    writing-mode: vertical-rl;
    line-height: 30px;
    padding: 12px 0;
    color: var(--tcolor);
    cursor: pointer;
}*/

.cbBox ul {
    background: #fff;
    padding: 5px 0;
    width: 70px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0 0 0 / 10%);
}

.cbBox ul li {
    width: 100%;
    position: relative;
}

.cbBox ul li:not(:last-child) {
    border-bottom: 1px solid #e9eff5;
}

.cbBox ul li > a {
    width: 100%;
    padding: 13px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cbBox ul li a svg{
    height: auto;
    width: 24px;
    fill: var(--color);
    position: relative;
    transition: 0.34s;
}

.cbBox ul li a span{
    line-height: 1;
    color: #7b7b7b;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.cbBox ul li a:hover svg{
    transform: translateY(-5px);
}

.side_con {
    position: absolute;
    right: 80px;
    top: 50%;
    background: var(--tcolor);
    padding: 15px;
    width: 180px;
    min-height: 71px;
    border-radius: 4px;
    display: none;
    transform: translateY(-50%);
}

.side_con .title{
    color: #fff;
}

.side_con .title1{
    margin-top: 10px;
}

.side_con .text a{
    color: #fff;
    margin-top: 5px;
    display: block;
}

.side_con::after {
content: "";
    position: absolute;
    top: 50%;
    right: -13px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    border: 7px solid transparent;
    border-left: 6px solid var(--tcolor);
}

.cbBox ul li:hover .side_con{
 display: block;   
}
/*end*/


@keyframes style1 {
    0% {
        background: rgba(0,0,0,.25);
        transform: translateX(-50%) translateY(-50%) scale(0)
    }

    to {
        background: 0 0;
        transform: translateX(-50%) translateY(-50%) scale(1)
    }
}


@media only screen and (max-width: 1680px) {
	.navge {
		width: 36%;
	}

	.header_other {
		width: 42%;
	}
}

@media only screen and (max-width: 1440px) {
	.header .header_tel {
		display: none;
	}

	.navge {
		width: 44%;
	}

	.header_other {
		width: 40%;
	}
	
	.navge>div:nth-child(2) .nav2_l .nav2_l_item .nav2_l_list a{
	        width: 30%;
	        margin-right: 5%;
	}
	
	.navge>div:nth-child(2) .nav2_l .nav2_l_list a:nth-child(3n) {
        margin-right: 0;
    }
	
	.navge>div:nth-child(2) .nav2_l .nav2_l_list a svg{
	        margin-left: 10px;
	}
}

@media only screen and (max-width: 1200px) {

	.navge {
		width: 42%;
	}

	.header_other {

	}

	.header_but a {
        width: auto;
        font-size: 12px;
        padding: 0 15px;
	}
	
	.navge>div:nth-child(2) .nav2_l .nav2_l_item .nav2_l_list a{
	    font-size: 14px;
	}
}




@media only screen and (max-width: 769px) {
    
	.header .header_flx {
		padding: 0 5%;
	}

	.header_other {
		width: 32%;
	}

	.logo {
		width: 60px!important;
	}

	.logo_w {
		display: none!important;
	}

	.logo .logo_c {
		display: block!important;
	}

	.header_but {
		display: none;
	}

	.header .world {
		color: #333!important;
	}

	.header .world svg {
		width: 15px;
		margin-right: 2px;
	}

	.header .log {
		color: #333;
		width: 115px;
	}

	.header .log a {
		color: #333;
		font-size: 12px;
	}

	.header .log svg {
		width: 15px;
		margin-right: 2px;
	}

	.header .navge {
		position: fixed;
		top: 56px;
		width: 100%;
		left: 0px;
		height: calc(100% - 56px);
		background: white;
		display: none;
		padding: 10px 20px 0;
		z-index: 100;
		margin: 0;
		border-top: 1px solid rgba(51 51 51 / 4%);
	}

	.phone_menu {
		display: block;
	}

	.header .nav1 {
		height: 50px;
		border-bottom: 1px solid rgba(51 51 51 / 4%);
	}
	
	.header .nav1 svg{
	   height: auto;
        width: 20px;
        fill: #B8B8B9;
        position: absolute;
        right: 0;
        transform: rotate(-90deg);
        transition: 0.6s;
        display: block;
	}

	.header .navge>div:nth-child(1) .nav1 {
		background: transparent;
	}

	.header .navge>div:nth-child(7) .nav1 {
		background: transparent;
	}

	.header .nav1.xuan_act svg{
		transform: rotate(0deg);
	}

	.header .header_flx {
		height: 66px;
	}

	.header .nav1 a {
		color: #333!important;
	}

	.header {
		top: 0;
		background: #fff;
	}

	.header .nav2 {
		position: relative;
		-webkit-box-shadow: none;
		box-shadow: none;
		width: 100%;
		background: transparent;
	}
	
	.nav2_l_list{
	    justify-content: space-between;
        margin-top: 15px;
	}
	
	.nav2_l_s{
	    display: none;
	}

	.header .nav2 a {
		width: 100%;
        margin: 5px 0;
        line-height: 24px;
	}
	
	.header .nav1 a:after{
	   display: none;
	}
	
	.nav2_r{
	    display: none;
	}
	
	.nav2_l{
	    width: 100%;
	}

	.footer {
		padding-top: 30px;
	}

	.crumbs {
		background: rgba(0 0 0 / 10%);
		display: none;
	}

	#nyBan {
		height: 240px;
	}

	.phone_menu span {
		background-color: #333;
	}

	.footer_l {
		width: 100%;
		text-align: center;
	}

	.footer_l img {
		max-width: 40%;
	}

	.footer_r {
		width: 100%;
		margin-top: 25px;
	}

	.footer_r ul li a {
		width: 30px;
		height: 30px;
	}

	.footer_r ul li a img {
		max-width: 15px;
	}

	.footer .con2 {
		display: none;
	}

	.footer_line {
		display: none;
	}

	.fot_bq {
		margin-top: 25px;
	}

	.fot_bq_t {
		width: 100%;
		text-align: center;
	}

	.beianhao {
		margin-left: 0;
	}

	.fot_bq_ri {
		width: 100%;
		text-align: center;
	}


	.fot_cn5_lr {
		width: 100%;
	}

	.fot_cn5_ri {
        width: 100%;
        margin-top: 25px;
        justify-content: space-between;
	}

	.fot_cn5_ri a {
		color: #fff;
		height: 40px;
		width: 155px;
	}
	
	.fot_cn5 >img{
	    width: auto;
	}

	.page_fir {
		display: none;
	}

	.page_lat {
		display: none;
	}

	.pageLi {
		width: 30px;
		height: 30px;
	}
	
	.ysCen {
		padding: 30px 20px;
        height: 500px;
        overflow: auto;
	}

	.layui-form-item .layui-input {
		height: 40px;
		font-size: 12px;
		padding: 10px 15px;
	}

	.ys_list li {
		width: 100%;
		border-radius: 10px;
		padding: 15px;
		margin-top: 15px;
	}
	
	.cbBox ul li a svg{
	   width: 20px;
	}
	
	.tel_item .layui-input-block .layui-input{
	    width: 100%;
	    padding-right: 15px;
	}
	
	.tel_item .layui-input-block{
	    flex-wrap: wrap;
	}
	
	.tel_item .layui-input-block .layui-yzm{
	    margin-top: 15px;
	            height: 40px;
	                width: calc(100% - 100px);
        font-size: 12px;
	}
	
	.layui-but{
        position: unset;
        margin-top: 12px;
        font-size: 14px;
	}
	
}
