html{
	background-color: #000;
}
html{
	background-color: #000;
}
.loading-wraper {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: #000000;
	width: 100vw;
	height: 100vh;
	animation: bgToUp 2s forwards 3.5s;

  }

  .header_logo{
	visibility: hidden;
  }
  .loading_video {
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	opacity: 1;
	animation: bgToloading 1.5s forwards 3s;
  }
  .banner{
   
	transition: all 0.5s ease-in;
 
  }
  .loading_logo{
	width: 5.8rem;
	cursor: pointer;
	position: fixed;
	z-index: 10000;
	top: 85vh;
	left: 50%;
	transform: translateX(-50%);
	animation: bgToScale 1.5s forwards 3.5s;
	/* animation-timing-function:ease-in-out; */
	cursor: pointer;
  }
  .loading_logo_h5{
	width: 5.8rem;
	cursor: pointer;
	position: fixed;
	z-index: 10000;
	top: 85vh;
	left: 50%;
	transform: translateX(-50%);
	animation: bgH5ToScale 1.8s forwards 3.2s;
	animation-timing-function:ease-in-out;
	cursor: pointer;
  }
  .swiper-slide-active{
	opacity: 1;
  }
  @keyframes bgToloading{
	0%{
	  
	  opacity: 1;
	  background-color: #000000;
	}
	
	100%{
	  opacity: 0;
	  display: none;
 
	}
  }
  @keyframes bgToUp{
	0%{
	  
	  top:0
	}
	95%{
	  opacity: 0.7;
	  top: -92vh;
	  z-index: 10000;
	}
	100%{
	  z-index: 4;
	  top: -92vh;
	  opacity: 0;
	}
  }
  @keyframes bgToScale{
	0%{
	  
	  transform: scale(1);
	  transform: translateX(-50%);
	}
	95%{
	  width: 2rem;
	  top:0.32rem;
	  z-index: 10000;
	}
	100%{
	  z-index: 4;
	  width: 2rem;
	  top:0.32rem;
	  z-index: 10000;
	  /* display: none; */
	  transform: translateX(-50%);
	}
  }
  @keyframes bgH5ToScale{
	0%{
	  
	  transform: scale(1);
	  transform: translateX(-50%);
	}
	95%{
	  width: 3rem;
	  top:0.36rem;
	  z-index: 10000;
	}
	100%{
	  z-index: 4;
	  width: 3rem;
	  top:0.36rem;
	  z-index: 10000;
	  /* display: none; */
	  transform: translateX(-50%);
	}
  }
  .car-pagintion{
	position: absolute;
	bottom: -3rem !important;
  }
  .swiper-pagination-bullet{
	width: 40px;
	height: 2px;
	border-radius: 0;
	background-color: rgba(0, 0, 0, 0.1);
	opacity: 1;
	margin-right: 5px;
  }
  .swiper-pagination-bullet-active{
	width: 40px;
	height: 2px;
	border-radius: 0;
	background-color: #FE7600 !important;
  }
.header{
	width: 100%;
	height: 0.8rem;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0.5rem;
}
.header_mask{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	backdrop-filter: saturate(80%) blur(50px);
	-webkit-backdrop-filter: saturate(80%) blur(50px);
	z-index: 0;
	transition: all .5s;
	opacity: 0;
}
.header_mask.active{
	opacity: 1;
}
.header_left{
	position: relative;
	z-index: 1;
	padding-left: 0.5rem;
}
.header_left ul{
	display: flex;
}
.header_left ul li{
	width: 0.4rem;
	margin-left: 0.2rem;
	height: 0.5rem;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}
.header_left ul li::after {
    bottom: 0;
    left: 0;
    height: 1px;
    position: absolute;
    content: '';
    transition: transform .55s cubic-bezier(0.165,0.84,0.44,1);
    transform: scaleX(0);
    transform-origin: right;
    background-color: rgb(255, 118, 0);
    width: 100%;
}
.header_left ul li:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu{
	cursor: pointer;
	position: absolute;
	left: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 15;
	padding: 0.1rem;
}
.menu div{
	width: 0.3rem;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.8);
	transition: all .5s;
}
.menu div:nth-of-type(2){
	margin-top: 0.1rem;
}
.menu.active div:nth-of-type(1){
	transform: rotate(45deg);
}
.menu.active div:nth-of-type(2){
	transform: rotate(-45deg);
	margin-top: 0;
}

.header_logo{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 2rem;
}
.diqiu{
	width: 0.2rem;
	height: 0.2rem;
	position: relative;
	z-index: 1;
	cursor: pointer;
	transition: all .5s;
}
.diqiu:hover{
	transform: scale(1.06);
}

.head_pop{
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.head_pop_mask{
	position: absolute;
	width: 100vw;
	height: 100vh;

	background-color: rgba(0, 0, 0, 0.2);
}
.head_pop_close{
	position: absolute;
	top: 5vh;
	left: 9vw;
	width: 0.3rem;
	cursor: pointer;
}
.head_pop_menu{
	position: absolute;
	z-index: 2;
	width: calc(100vw - 1.2rem);
	margin-left: 0.6rem;
	top: 50%;
	transform: translateY(-50%);
	height: 82vh;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
}
.hpl_left{
	width: 30%;
	height: 100%;
	background-color: rgba(0, 0, 0, 1);
	padding: 1rem 0.8rem 0;
	transition: all .5s;
}
.hpl_left._borr{
	border-radius: 0 20px 20px 0;
}
.hpl_right{
	width: 70%;
	height: 100%;
	position: relative;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	transition: all 1s;
}
.hpl_right._no{
	-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.h_right_bk{
	width: 85%;
	height: 100%;
	position: absolute;
	z-index: 0;
	background-color: #fff;
	top: 0;
	left: 0;
	border-radius: 0 20px 20px 0px;
	transition: all .5s;
}
.h_right_bk._other{
	width: 85%;
}

.hr_min{
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .5s;
	pointer-events: none;
}
.hr_min_other .hrmo_min{
	width: calc(85%);
}
.hr_min_car_pd{
	padding: 1rem 0.4rem 0rem 0.8rem;
}
.hr_min.active{
	opacity: 1;
	pointer-events: auto;
}
.hr_min:nth-of-type(1){
	position: relative;
}
.hpll_car_map{
	font-size: 0.3rem;
	color: #fff;
	position: relative;
}
.hpll_car_map div{
	margin-top: 2vh;
	cursor: pointer;
	transition: color .3s;
}
.hpll_car_map div:nth-of-type(1){
	margin-top: 0;
}
.hpll_other_map{
	margin-top: 6vh;
	font-size: 0.22rem;
	color: #fff;
}
.hpll_other_map div{
	margin-top: 3vh;
	cursor: pointer;
	white-space: nowrap;
	transition: color .3s;
}
.hpll_other_map div:nth-of-type(1){
	margin-top: 0;
}
.hpll_car_map div,
.hpll_other_map div{
	transition: all .5s;
}
.hpll_car_map div:hover,
.hpll_other_map div:hover{
	color: rgb(255, 118, 0);
	transform: translateX(0.3rem);
}
.hpll_car_map div.active{
	color: rgb(255, 118, 0);
	transform: translateX(0.23rem);
}
.hpll_other_map div.active{
	color: rgb(255, 118, 0);
	transform: translateX(0.17rem);
}
.hpll_line{
	width: 100%;
	background-color: rgba(255, 255, 255, 0.18);
	height: 1px;
	margin-top: 6vh;
}
/* 列表动效 */
.hpll_td span{
	display: block;
	transform: translateX(0.5rem);
	opacity: 0;
	transition: opacity 0.8s, transform 1.2s;
}
.head_pop.active .hpll_td span{
	transform: translateX(0rem);
	opacity: 1;
}
.head_pop.active .hpll_td_2 span{
	transition-delay: 0.25s;
}
.head_pop.active .hpll_td_3 span{
	transition-delay: 0.5s;
}
.head_pop.active .hpll_td_4 span{
	transition-delay: 0.75s;
}
.head_pop.active .hpll_td_5 span{
	transition-delay: 0.9s;
}

/* 右侧车型 */
.hmc_car_tl{
	position: relative;
}
.hmc_car_t{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	pointer-events: none;
}
.hmc_car_t1{
	transform: translateY(0.7rem);
	opacity: 0;
}
.hmc_car_t2{
	transform: translateY(0.7rem);
	opacity: 0;
}
.hmc_car_t3{
	transform: translateY(0.7rem);
	opacity: 0;
}
.hmc_car_t.active .hmc_car_t1{
	transition: all 1s;
	transform: translateY(0rem);
	opacity: 1;
}
.hmc_car_t.active .hmc_car_t2{
	transform: translateY(0rem);
	opacity: 1;
	transition: all 1s;
	transition-delay: .2s;
}
.hmc_car_t.active .hmc_car_t3{
	transform: translateY(0rem);
	opacity: 1;
	transition: all 1s;
	transition-delay: .4s;
}

.hmc_car_t:nth-of-type(1){
	position: relative;
}
.hmc_car_t1{
	font-size: 0.4rem;
	font-family: 'Montserrat-Bold';
}
.hmc_car_t2{
	font-size: 0.2rem;
	margin-top: 0.05rem;
}
.hmc_car_t3{
	font-size: 0.24rem;
	margin-top: 0.18rem;
}
.hmc_car_num{
	position: absolute;
	right: 18%;
	width: 18%;
	top: 22%;
	overflow: hidden;
	z-index: 1;
}
.hmc_car_num img{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: translateY(100%);
	transition: all 1.3s;
}
.hmc_car_num img.active{
	opacity: 1;
	transform: translateY(0%);
}
.hmc_car_num img:nth-of-type(1){
	position: relative;
}
.hmc_car_img{
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-top: 5vh;
}
.hmc_car_img img{
	width: 85%;
	position: absolute;
	top: 0;
	right: 0;
	transform: translateX(-0%);
	opacity: 0;
	transition: transform 2s, opacity .5s;
}
.hmc_car_img img:nth-of-type(1){
	position: relative;
}
.hmc_car_img img.active{
	opacity: 1;
	transform: translateX(10%);
}

.hmc_btn_list{
	position: relative;
}
.hmc_btn_list .btn_black_1{
	position: absolute;
	top: 0.7rem;
	left: 0;
	opacity: 0;
}
.hmc_btn_list .btn_black_1.active{
	transition: all 1s;
	transition-delay: .2s;
	top: 0rem;
	opacity: 1;
}



/* 右侧其他 */
.hrmo_min{
	padding: 1rem 0.4rem 0rem 0.8rem;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: all .5s;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.hrmo_min.active{
	opacity: 1;
	pointer-events: auto;
}
.hrmo_min:nth-of-type(1){
	position: relative;
}

.hrmom_t{
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-top: 0.3rem;
}
.hrmom_t:nth-of-type(1){
	margin-top: 0;
}
.hrmom_t_n{
	font-size: 0.22rem;
	white-space: nowrap;
	position: relative;
}
.hrmom_t_n .htnt_line{
	width: 0%;
	height: 1px;
	background-color: rgb(255, 118, 0);
	margin-top: 0.05rem;
	transition: all .4s;
}
.hrmom_t_n::after{
	content: '';
	bottom: -0.04rem;
	width: 0%;
	background-color: rgb(255, 118, 0);
	position: absolute;
	left: 0;
	display: block;
	height: 2px;
	transition: all 1s;
}
.hrmom_t_i{
	width: 0.5rem;
	height: 0.3rem;
	position: relative;
	overflow: hidden;
	margin-left: 0.2rem;
	opacity: 0;
	transition: all .66s;
}
.hrmom_t_i img{
	width: 0.22rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all .4s;
}
.hrmom_t_i img:nth-of-type(1){
	left: 50%;
	opacity: 1;
}
.hrmom_t_i img:nth-of-type(2){
	left: -50%;
	opacity: 0;
}
.hrmom_t:hover .hrmom_t_i{
	opacity: 1;
}
.hrmom_t:hover .hrmom_t_i img:nth-of-type(1){
	left: 150%;
	opacity: 0;
}
.hrmom_t:hover .hrmom_t_i img:nth-of-type(2){
	left: 50%;
	opacity: 1;
}
.hrmom_t:hover .htnt_line{
	width: 100%;
}
.hrmom_t:hover .hrmom_t_n::after{
	width: 100%;
}


.hrmom_right{
	width: 40%;
	margin-top: 6vh;
	position: relative;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.08);
}
.hrmom_right img{
	display: block;
	clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.hrmo_min.active .hrmom_right img{
	transition: all 1s linear;
	transition-delay: .4s;
	clip-path: polygon(-180% 0, 100% 0, 100% 100%, -110% 100%);
}













.head_pop{
	opacity: 0;
	pointer-events: none;
	/* transition: all .66s; */
}
.head_pop.active{
	opacity: 1;
	pointer-events: auto;
}

/* global pop */
.head_global_pop{
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5000;
	background-color: #000;
	color: rgba(255, 255, 255, 0.6);
	padding: 2.5rem 0.6rem;
	opacity: 0;
	pointer-events: none;
	transition: all .7s;
}
.head_global_pop.active{
	opacity: 1;
	pointer-events: auto;
}
.head_global_pop_close{
	position: absolute;
	right: 0.8rem;
	top: 0.5rem;
	width: 0.25rem;
	opacity: 0.5;
	transition: all .5s;
	cursor: pointer;
}
.head_global_pop_close:hover{
	opacity: 1;
}
.hgp_title{
	font-size: 0.56rem;
	color: #fff;
	font-weight: bold;
}
.country_min_line{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.3);
	left: 0;
}
.country_min_line::after{
	content: '';
	width: 0%;
	height: 2px;
	left: 0;
	bottom: 0;
	display: block;
	background-color: rgb(254, 118, 0);
	transition: all .77s;
}
.country_min{
	margin-top: 0.3rem;
	display: flex;
	position: relative;
	width: 4rem;
	justify-content: space-between;
	align-items: center;
	height: 0.8rem;
	font-size: 0.2rem;
	cursor: pointer;
	transition: all .5s;
}
.country_min_icon_list{
	position: relative;
	width: 0.4rem;
	overflow: hidden;
	margin-right: -0.1rem;
	opacity: 0;
	transition: all .5s;
}
.country_min:hover .country_min_icon_list{
	opacity: 1;
}
.country_min_icon{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0.2rem;
	transition: all .77s;
}
.country_min_icon_1{
	position: relative;
	opacity: 1;
}
.country_min_icon_2{
	left: -50%;
	opacity: 0;
}
.country_min:hover{
	color: rgb(254, 118, 0);
}
.country_min:hover .country_min_icon_1{
	left: 150%;
	opacity: 0;
}
.country_min:hover .country_min_icon_2{
	left: 50%;
	opacity: 1;
}
.country_min:hover .country_min_line::after{
	width: 100%;
}



body{
	font-family: 'Montserrat-Regular';
}


.open_ping{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	transition: 3.5s;
	z-index: 2000;
}
.open_ping._close{
	height: 0;
}

/* banner */
.banner{
	width:100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.banner_sw_btn{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.3);
	cursor: pointer;
	z-index: 5;
	opacity: 0;
	transition: all .5s;
}
.banner_sw_btn:hover{
	background-color: rgba(0, 0, 0, 0.5);
}
.banner_sw_btn.active{
	opacity: 1;
}
.banner_sw_btn img{
	width: 0.25rem;
	z-index: 1;
	position: relative;
}
.banner_prev{
	left: 1.6rem;
}
.banner_prev img{
	transform: rotate(180deg);
}
.banner_next{
	right: 1.6rem;
}
.banner_sw{
	width: 100%;
}
.banner_mask{
	width: 100%;
	height: 100vh;
	pointer-events: none;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
}
.banner_img{
	width: 100%;
	height: 100vh;
	object-fit: cover;
	position: relative;
	z-index: 0;
	transform: scale(1.2);
	transition: all 2s;
	transition-delay: 0.3s;
}
.swiper-slide-active .banner_img{
	transform: scale(1);
}
.banner_video{
	width: 100%;
	height: 100vh;
	object-fit: cover;
	position: relative;
	z-index: 0;
	transform: scale(1.2);
	transition: all 2s;
	transition-delay: 0.3s;
}
.banner .swiper-slide-active .banner_video{
	transform: scale(1);
}
.banner_other{
	position: absolute;
	bottom: 0.6rem;
	left: 0.6rem;
	z-index: 4;
}
.bn_video .banner_other{
	top: 58%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.banner_t1{
	font-size: 0.36rem;
	color: rgb(255, 118, 0);
}
.banner_t1 strong{
	font-family: 'Montserrat-Bold';
}
.bn_video .banner_t2{
	font-family: 'Montserrat-Bold';
}
.banner_t2{
	font-size: 0.56rem;
	line-height: 0.6rem;
	margin-top: 0.1rem;
}
.banner_t2 img{
	width: 5rem;
}
.banner_t2_img img{
	width: 3.5rem;
}
.banner_t2 .no_warp{
	white-space: nowrap;
}
.banner_t2_3{
	font-size: 0.48rem;
	line-height: 0.52rem;
}
.banner_t3{
	font-size: 0.56rem;
	line-height: 0.5rem;
	margin-top: 0.1rem;
}
.banner_t4{
	font-size: 0.32rem;
	line-height: 0.32rem;
	margin-top: 0.16rem;
}
.banner_t2, .banner_t3, .banner_t4{
	color: #fff;
}
.banner_btn{
	width: 3.1rem;
	height: 0.6rem;
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 0 0.5rem 0 0.8rem;
	margin-top: 0.3rem;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.banner_btn .bt_mask{
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: saturate(80%) blur(50px);
	-webkit-backdrop-filter: saturate(80%) blur(50px);
	opacity: 0.3;
	transition: all .3s;
}
.banner_btn .bt_t{
	color: #fff;
}
.banner_btn:hover .bt_mask{
	opacity: .5;
}

.banner_page{
	position: absolute;
	bottom: 0.6rem;
	right: 0.6rem;
	z-index: 4;
	display: flex;
}
.banner_page_min{
	margin: 0 0.1rem;
	cursor: pointer;
}
.bpm_num{
	color: #fff;
	opacity: 0.3;
	font-size: 0.16rem;
	transition: all .3s;
}
.bpm_line{
	width: 0.73rem;
	height: 1px;
	background-color: #fff;
	opacity: 0.3;
	margin-top: 0.09rem;
	transition: all .3s;
}
.banner_page_min.active .bpm_num,
.banner_page_min.active .bpm_line{
	opacity: 1;
}








/* banner 文字浮出 */
.banner_t1 span, .banner_t2 span, .banner_t3 span, .banner_t4 span{
	display: block;
	transform: translateY(1rem);
	opacity: 0;
}
.banner_btn{
	transform: translateY(0.7rem);
	opacity: 0;
}
.banner .swiper-slide-active .banner_t1 span{
	transition: all 1s;
	transition-delay: .2s;
	transform: translateY(0rem);
	opacity: 1;
}
.banner .swiper-slide-active .banner_t2 span{
	transition: all 1s;
	transition-delay: .2s;
	transform: translateY(0rem);
	opacity: 1;
}
.banner .swiper-slide-active .banner_t3 span{
	transition: all 1s;
	transition-delay: .4s;
	transform: translateY(0rem);
	opacity: 1;
}
.banner .swiper-slide-active .banner_t4 span{
	transition: all 1s;
	transition-delay: .5s;
	transform: translateY(0rem);
	opacity: 1;
}
.banner .swiper-slide-active .banner_btn{
	transition: all 1s;
	transition-delay: .8s;
	transform: translateY(0rem);
	opacity: 1;
}
.banner .swiper-slide-active .banner_btn.time_3{
	transition-delay: .4s;
}

/* 鼠标跟随 */
.mouse_follow{
	width: 90px;
	height: 90px;
	position: fixed;
	pointer-events: none;
	opacity: 1;
	z-index: 20000;
	opacity: 0;
	transition: opacity .5s;
}
.mouse_follow div{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.mouse_follow img{
	width: 20px;
}
.mouse_follow._f img{
	width: 20px;
	transform: rotate(180deg);
}
/* 车型 */
.car_model{
	width: 100%;
	height: 100vh;
	padding: 0.2rem;
	background-color: #fff;
}
.car_model_min{
	width: 100%;
	height: 100%;
	background-color: rgba(243, 243, 241, 1);
	padding: 0.5rem 0 0.5rem 0.5rem;
	position: relative;
	overflow: hidden;
}
.car_model_title{
	font-size: 0.5rem;
	line-height: 0.5rem;
	font-weight: bold;
	position: absolute;
	top: 0.6rem;
	left: 0.5rem;
	font-family: 'Montserrat-Bold';
	font-size: 0.56rem;
	overflow: hidden;
}
.car_model_title span{
	display: block;
	transform: translateY(100%);
	transition: all 1s;
}
.car_model_title._into span{
	transform: translateY(0%);
}
.car_main{
	width: 100%;
	height: 100%;
}
.car_model_logo{
	position: absolute;
	top: 1rem;
	right: 2rem;
	width: 30vw;
	overflow: hidden;
}
.car_model_logo img{
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(100%);
	opacity: 0;
	transition: all 1.5s;
}
.car_model_logo img.active{
	transform: translateY(0%);
	opacity: 1;
}
.car_model_logo img:nth-of-type(1){
	position: relative;
}
.car_model_sw{
	position: relative;
	z-index: 4;
	width: 74%;
	top: 50%;
	transform: translateY(-50%);
	overflow: initial;
	/* cursor: none; */
}
.cm_car{
	width: 100%;
}
.cm_roll_l{
	position: absolute;
	width: 16%;
	bottom: 7%;
	left: 10.3%;
}
.cm_roll_r{
	position: absolute;
	width: 16%;
	bottom: 7%;
	left: 65%;
}
.s06 .cm_roll_l{
	left: 12%;
}
.s06 .cm_roll_r{
	left: 69%;
}

.car_message{
	position: absolute;
	bottom: 7vh;
	width: 100%;
}
.car_message_min{
	display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.car_message_min{
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 1rem);
}
.car_message_min:nth-of-type(1){
	position: relative;
}
.cmm_t1{
	font-size: 0.38rem;
	font-weight: bold;
}
.cmm_t2{
	font-size: 0.24rem;
}
.cmm_btn{
	width: 2.7rem;
	height: 0.6rem;
	display: flex;
	align-items: center;
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 0 0.5rem;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	margin-top:0.3rem;
 
}
.cmm_btn .bt_mask{
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	backdrop-filter: saturate(80%) blur(50px);
	-webkit-backdrop-filter: saturate(80%) blur(50px);
	opacity: 1;
	transition: all .5s;
	

}
.car_model .cmm_btn .bt_mask{
	border-radius:0.6rem;
}
.cmm_btn .bt_t{
	color: #fff;
	font-size: 0.16rem;
	position: relative;
	z-index: 2;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0.5rem;
	transition: all .7s;
	transition-delay: .15s;
	border-radius:0.6rem;
}
.cmm_btn .cmmbi{
	width: 0.2rem;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
}
.cmmbi_1{
	left: -0.5rem;
	opacity: 0;
	transition: left .9s, opacity .5s;
}
.cmmbi_2{
	right: 0.5rem;
	transition: right .9s, opacity .5s;
}
.cmm_btn:hover .bt_mask{
	background-color: #2b2b2b;
	opacity: 1;
}
.cmm_btn:hover .bt_t{
	left: 1.4rem;
}
.cmm_btn:hover .cmmbi_1{
	left: 0.5rem;
	opacity: 1;
}
.cmm_btn:hover .cmmbi_2{
	right: -0.5rem;
	opacity: 0;
}

.car_model_page{
	position: absolute;
	width: calc(100% - 1rem);

	bottom: 30px;
	margin:0 auto;
	display:flex;
	align-items:center;
	justify-content:center;
}
.car_model_page .swiper-pagination-progressbar{
	background-color: rgb(254, 118, 0);
	height: 2px;
	margin-top: -1px;
}
/* 车型动效 */
.car_model_sw{
	transform: translate(60%,-50%);
	transition: 1.2s;
}
.car_model_sw._into{
	transform: translate(0%,-50%);
}
.car_model_sw .swiper-slide{
	transition: opacity 1.2s;
	opacity: 1;
}
.car_model_sw .swiper-slide-active{
	opacity: 1;
}
.car_model_sw .swiper-slide-next{
	opacity: 0.5;
}
.car_model_sw .swiper-slide-prev{
	opacity: 0.5;
}

.cmm_t1{
	transform: translateY(0.1rem);
	opacity: 0;
}
.cmm_t2{
	transform: translateY(0.1rem);
	opacity: 0;
}
.cmm_btn{
	transform: translateY(0.1rem);
	opacity: 0;
	cursor: pointer;
}
.car_message_min{
	pointer-events: none;
}
.car_message_min.active{
	pointer-events: auto;
}
.car_message_min.active .cmm_t1{
	transition: all 1.5s;
	opacity: 1;
	transform: translateY(0rem);
}
.car_message_min.active .cmm_t2{
	transition: all 1.5s;
	transition-delay: .2s;
	opacity: 1;
	transform: translateY(0rem);
	display: none;
}
.car_message_min.active .cmm_btn{
	transition: all 1.5s;
	transition-delay: .2s;
	opacity: 1;
	transform: translateY(0rem);
}


.change_color{
	background-color: #000;
	transition: all .5s;
}
/* jump */
.go_soueast{
	padding: 1.5rem 0.7rem 1.5rem;
}
.line_icon{
	width: 0.45rem;
	-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	transition: all 1s;
}
.line_icon._into{
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.text_alone{
	font-size: 0.58rem;
	color: rgba(255, 255, 255, 0.3);
	width: 14rem;
	margin-top: 0.3rem;
	font-weight: bold;
	font-family: 'Montserrat-Bold';
}
.text_alone span{
	transition: all .1s;
}
.text_alone_2{
	color: #444;
	width: 6.8rem;
	margin-top: 0.3rem;
	cursor: pointer;
	transition: all .3s;
}
.text_alone_2:hover{
	opacity: 0.85;
}
.text_alone_2 div{
	overflow: hidden;
}
.text_alone_2 div span{
	display: block;
	transform: translateY(100%);
	transition: all 1s;
}
.text_alone_2._into div span{
	transform: translateY(0%);
}
.img_jump{
	margin-top: 0.8rem;
	display: flex;
	justify-content: space-between;
}
.ijm_1{
	width: 61.95%;
}
.ijm_2{
	width: 37.25%;
}
.ijm_i{
	overflow: hidden;
	position: relative;
}
.ijm_i .ijm_ii{
	transition: all 1.2s;
	transform: translateX(100%);
}
.ijm_it{
	position: absolute;
	width: 50%;
	left: 25%;
	top: 46%;
	transform: translateX(150%);
	opacity: 0;
	transition: all 1.2s;
}
.ijm_i._into .ijm_ii{
	transform: translateX(0%);
}
.ijm_i._into .ijm_it{
	transform: translateX(0%);
	opacity: 1;
}
.img_jump_min:hover .ijm_i .ijm_ii{
	transform: scale(1.06);
}
.img_jump_min:hover .ijm_it{
	transform: scale(1.1);
}
.ijm_t1{
	color: #fff;
	font-size: 0.32rem;
	margin-top: 0.3rem;
	opacity: 0;
	transform: translateY(0.7rem);
	transition: all 1s;
	font-family: 'Montserrat-Bold';
	font-weight: bold;
}
.ijm_t2{
	color: #fff;
	opacity: 0.5;
	font-size: 0.2rem;
	margin-top: 0.05rem;
	opacity: 0;
	transform: translateY(0.7rem);
	transition: all 1s;
	transition-delay: .2s;
}
.ijm_b{
	margin-top: 0.4rem;
	opacity: 0;
	transform: translateY(0.7rem);
	transition: all 1s;
	transition-delay: .4s;
}
.ij_more._into .ijm_t1,
.ij_more._into .ijm_b{
	transform: translateY(0rem);
	opacity: 1;
}
.ij_more._into .ijm_t2{
	transform: translateY(0rem);
	opacity: 0.7;
}

.img_jump_min:hover .bsi_1{
	left: 0.4rem;
	opacity: 0;
}
.img_jump_min:hover .bsi_2{
	left: 0.1rem;
	opacity: 1;
}

.text_alone{
	color: rgba(0, 0, 0, 0.2);
}

.car_model{
}




/* news */
.news{
	padding: 0rem 0.7rem 1.2rem;
}
.text_alone_2{
	width: 6.8rem;
}
.news_line{
	margin-top: 0.7rem;
	margin-bottom: 0.7rem;
	width: 100%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.08);
	display: none !important;
}
.news_list{
	display: flex;
	justify-content: space-between;
	margin-top: 0.5rem;
}
.news_min{
	width: 31%;
	position: relative;
}
.news_bk{
	position: relative;
	width: 100%;
	z-index: 2;
	cursor: pointer;
	transition: all 1s;
	overflow: hidden;
	/* -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); */
}
.news_bk img{
	width: 100%;
	transition: all 1s;
	object-fit: cover;
}
.news_bk img:hover{
	transform: scale(1.06);
}
/* .news_min:hover .news_bk{
	-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
} */
.nm_date{
	font-size: 0.2rem;
	opacity: 0.4;
	margin-top: 0.4rem;
}
.nm_detail{
	margin-top: 0.2rem;
	font-size: 0.24rem;
	line-height: 0.3rem;
	cursor: pointer;
}
.nm_detail:hover{
	text-decoration: underline;
}
.nm_btn{
	/* margin-top: 0.5rem; */
}
.nm_btn .btn_s1_t{
	color: #444;
}

.nm_date, .nm_detail{
	overflow: hidden;
}
.nm_date span{
	display: block;
	transform: translateY(100%);
	transition: all 1.3s cubic-bezier(0.1, 0.9, 0.2, 1);
}
.news_min_bkf{
	position: relative;
}
.nm_detail div{
	overflow: hidden;
}
.nm_detail span{
	height: 1.6rem;
	display: block;
	transform: translateY(100%);
	transition: transform 1.3s cubic-bezier(0.1, 0.9, 0.2, 1);
}
.news_list._into .nm_date span{
	transform: translateY(0%);
}
.news_list._into .nm_detail span{
	transform: translateY(0%);
	transition-delay: .3s;
}
.nm_btn {
	transform: translateY(100%);
	transition: all 1.3s cubic-bezier(0.1, 0.9, 0.2, 1);
	opacity: 0;
}
.news_list._into .nm_btn {
	transform: translateY(0%);
	opacity: 1;
	transition-delay: .5s;
}

.news_min:hover .bsi_1{
	left: 0.4rem;
	opacity: 0;
}
.news_min:hover .bsi_2{
	left: 0.1rem;
	opacity: 1;
}


/* 主题 */
.color_1{
	color: #444 !important;
}




/* 字体使用 */
.banner_t2,
.banner_t3{
	font-family: 'Montserrat-Bold';
}







/* 移动端 */
@media (max-width: 767px) {
	@keyframes bgToUp{
		0%{
		  
		  top:0
		}
		95%{
		  opacity: 0.7;
		  top: -94vh;
		  z-index: 10000;
		}
		100%{
		  z-index: 4;
		  top: -94vh;
		  opacity: 0;
		}
	  }
	  .car_model{
		.car_model_page{
			width:100%;
			bottom:-20vh;
		  }
		  .car_message{
			bottom:-16vh;
		  }
		  .car_message_min{
			width:100%;
		  }
		  .cmm_btn{
			width:3.7rem !important;
			height:0.8rem !important;
			.bt_t{
				font-size:0.22rem !important;
			}
		  }
	  }
	.bn_video .banner_other{
		top:auto;
		bottom:8vh;
	}
	/* head */
	.header{
		justify-content: flex-end;
		height: 1rem;
	}
	.header_left{
		display: none;
	}
	.header_logo{
		width: 3rem;
	}
	.menu div{
		width: 0.4rem;
	}
	.diqiu{
		width: 0.3rem;
		height: 0.3rem;
	}
	.head_global_pop_close{
		width: 0.45rem;
	}
	.hgp_title{
		font-size: 0.55rem;
	}
	.country_min{
		width: 100%;
		font-size: 0.24rem;
		height: 1.2rem;
		margin-top: 0.5rem;
	}
	.country_min_icon{
		width: 0.28rem;
	}
	/* 头部弹窗 */
	.header_mask{
		opacity: 1;
		z-index: 14;
	}
	.header_logo, .diqiu{
		z-index: 15;
	}
	.head_pop{
		background-color: #000;
	}
	.head_mb{
		padding: 1.8rem 0.5rem 0;
		height: 100vh;
		overflow-y: scroll;
	}
	.head_mb_car_list{
		font-size: 0.45rem;
		color: #fff;
	}
	.head_mb_car_list li,
	.hmomt_t{
		font-family: 'Montserrat-Bold';
	}
	.head_mb_car_list li{
		margin: 0.4rem 0;
		font-weight: bold;
	}
	.head_mb_other_list{
		margin-top: 0.4rem;
		color: #fff;
	}
	.hmom_tab{
		display: flex;
		justify-content: space-between;
		width: 100%;
		align-items: center;
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		height: 1.4rem;
		font-weight: bold;
	}
	.head_mb_other_min.active .hmom_tab{
		border-bottom: 0px solid rgba(255, 255, 255, 0.3);
	}
	.hmomt_line{
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.hmomt_line div{
		width: 0.3rem;
		height: 1px;
		background-color: #fff;
	}
	.hmomt_line div:nth-of-type(2){
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		width: 1px;
		height: 0.3rem;
		background-color: #fff;
	}
	.hmomt_t{
		font-size: 0.32rem;
	}
	.hmom_child_list{
		overflow: hidden;
		transition: all .7s;
		height: 0;
		padding: 0;
	}
	.hmom_child_list div{
		height: 1rem;
		line-height: 1rem;
		font-size: 0.3rem;
	}
	
	.head_mb_other_min.active .hmomt_line div:nth-of-type(2){
		opacity: 0;
	}
	.head_mb_other_min.active .hmomt_line div:nth-of-type(1){
		background-color: rgb(255, 118, 0);
	}
	.head_mb_other_min.active .hmomt_t{
		color: rgb(255, 118, 0);
	}
	
	.head_mb_other_min.active .hcl_3{
		height: 3.8rem;
		padding: 0.4rem 0 0.4rem;
	}
	.head_mb_other_min.active .hcl_4{
		height: 4.8rem;
		padding: 0.4rem 0;
	}
	
	
	
	
	/* banner */
	.banner_t1{
		font-size: 0.4rem;
	}
	.banner_t2{
		font-size: 0.54rem;
		line-height: 1.3;
	}
	.banner_other{
		bottom: 8vh;
	}
	.bn_video .banner_other{
		align-items: flex-start;
	}
	.banner_mb_page{
		position: absolute;
		bottom: 5vh;
		left: 50%;
		transform: translateX(-50%);
		z-index: 5;
	}
	.banner_mb_page .swiper-pagination-bullet{
		background-color: rgba(243, 243, 241, 1);
		margin: 0 0.16rem;
		width: 10px;
		height: 10px;
	}
	.banner_mb_page .swiper-pagination-bullet-active{
		background-color: transparent;
		border: 2px solid rgb(255, 118, 0);
	}
	.banner_t2 .no_warp{
		text-align: center;
	}
	.banner_sw_btn{
		display: none;
	}
	.banner_t2{
		font-size: 0.5rem;
	}
	.banner_btn{
		height: 0.9rem;
		width: 4.1rem;
		margin-top: 0.3rem;
		padding: 0 0.9rem 0 1.1rem;
	}
	.banner_btn .bt_t{
		font-size: 0.23rem;
	}
	.banner_btn img{
		width: 0.3rem;
	}
	/* .bn_video .banner_other{
		top: auto;
		bottom:5vh;
	} */
	
	
	
	/* 车型轮播 */
	.car_model{
		padding: 0;
	}
	.car_model_min{
		padding: 1.2rem 0 1rem;
		background-color: #fff;
	}
	.car_model_title, .car_mb_name{
		margin: 0 0.5rem;
		position: relative;
	}
	.car_model_title{
		position: relative;
		left: 0;
		top: 0;
		font-size: 0.54rem;
	}
	.car_main_mb{
		margin-top: 0.3rem;
		position: relative;
	}
	.cmn_min{
		position: absolute;
		top: 0;
		left: 0;
	}
	.cmn_min:nth-of-type(1){
		position: relative;
	}
	.cmn_t_1{
		font-size: 0.48rem;
	}
	.cmn_t_2{
		font-size: 0.3rem;
		margin-top: 0.1rem;
	}
	.car_mb_num{
		width: 100%;
		margin-top: 8vh;
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
	}
	.car_mb_num img{
		width: 58%;
		position: absolute;
		top: 0;
		/* right: 0; */
	}
	.car_mb_num img:nth-of-type(1){
		position: relative;
	}
	.car_mb_sw{
		width: 100%;
		margin-top: -4vh;
	}
	
	.car_mb_btn_list{
		position: relative;
		/* margin-left: 0.5rem; */
		margin-top: 8vh;
		display:flex;
		justify-content:center;
	}
	.car_mb_btn_list .btn_black_1{
		position: absolute;
		top: 0;
		left: 0;
		height: 0.9rem;
	    width: 3.6rem;
	    padding: 0 0.5rem;
		font-size: 0.2rem;
	}
	.car_mb_btn_list .bb1_t{
		font-size: 0.23rem;
	}
	.car_mb_btn_list .bb1_il img{
		width: 0.3rem;
	}
	.car_mb_btn_list .btn_black_1:nth-of-type(1){
		position: relative;
	}
	.car_model_sw_mb_page{
		position: relative;
		height: 1px;
		width: calc(100% - 1rem);
		margin-left: 0.5rem;
		margin-top: 5vh;
	}
	
	.cmn_t_1{
		opacity: 0;
		transform: translateY(0.7rem);
	}
	.cmn_t_2{
		opacity: 0;
		transform: translateY(0.7rem);
	}
	.cmn_min.active .cmn_t_1,
	.cmn_min.active .cmn_t_2{
		opacity: 1;
		transform: translateY(0rem);
	}
	.cmn_min.active .cmn_t_1{
		transition: all 1s;
	}
	.cmn_min.active .cmn_t_2{
		transition: all 1s;
		transition-delay: .2s;
	}
	.car_mb_btn_list .btn_black_1{
		opacity: 0;
		transform: translateY(0.7rem);
		height: 0.75rem;
		font-size: 0.2rem;
		width: 3rem;
	}
	.car_mb_btn_list .btn_black_1.active{
		transition: all 1s;
		opacity: 1;
		transform: translateY(0rem);
	}
	.car_mb_num img{
		opacity: 0;
		transform: translateY(100%);
		transition: all 1s;
	}
	.car_mb_num img.active{
		opacity: 1;
		transform: translateY(0%);
	}
	
	.go_soueast{
		padding: 1.5rem 0 1.2rem 0.7rem;
	}
	.text_alone{
		width: auto;
		font-size: 0.46rem;
	}
	.img_jump_mb{
		margin-top: 0.5rem;
		color: #fff;
	}
	.ijms_ft{
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 4rem;
	}
	
	.ijms_t1{
		font-size: 0.4rem;
		line-height: 0.56rem;
		margin-top: 0.3rem;
		opacity: 0;
		transform: translateY(0.7rem);
		transition: all 1s;
		font-family: 'Montserrat-Bold';
	}
	.ijms_t2{
		font-size: 0.28rem;
		margin-top: 0.1rem;
		opacity: 0;
		transform: translateY(0.7rem);
		transition: all 1s;
		transition-delay: 0.2s;
	}
	.ijms_b1{
		font-size: 0.28rem;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 2.4rem;
		margin-top: 0.3rem;
		opacity: 0;
		transform: translateY(0.7rem);
		transition: all 1s;
		transition-delay: 0.4s;
	}
	.ijms_b1 img{
		width: 0.28rem;
	}
	.ijms_t1._into{
		opacity: 1;
		transform: translateY(0%);
	}
	.ijms_t2._into{
		opacity: 1;
		transform: translateY(0%);
	}
	.ijms_b1._into{
		opacity: 1;
		transform: translateY(0%);
	}
	
	.swiper-pagination-progress .swiper-pagination-progressbar{
		background-color: rgb(255, 118, 0);
	}
	
	.news_list_mb_sw .swiper-slide{
		padding: 0.6rem 0;
	}
	.nlms_t1{
		font-size: 0.28rem;
		opacity: 0.4;
	}
	.nlms_t2{
		font-size: 0.34rem;
		margin-top: 0.3rem;
	}
	.nlms_b{
		margin-top: 0.8rem;
		color: #444;
	}
	.news_list_mb_page{
		position: relative;
		height: 1px !important;
	}

	/* button */
	.car_mb_btn_list .btn_ol_1{
		/* position: relative; */
		position: absolute;
		display: block;
	}
	.car_mb_btn_list .bol_1, .car_mb_btn_list .bol_2, .car_mb_btn_list .bt_t{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	.car_mb_btn_list .btn_ol_1 img{
		width: 0.2rem;
	}
	.car_mb_btn_list .bol_1{
		left: 0rem;
		opacity: 0;
		z-index: 2;
		transition: left .9s, opacity .5s;
	}
	.car_mb_btn_list .bol_2{
		right: 20%;
		z-index: 2;
		width: 0.2rem;
		transition: right .9s, opacity .5s;
	}
	.car_mb_btn_list .bt_t{
		left: 20%;
		font-size: 0.16rem;
		z-index: 2;
		transition: all .7s;
		transition-delay: .15s;
	}
	.car_mb_btn_list .bt_mask{
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 1;
		transition: all .3s;
	}
	.car_mb_btn_list .btn_ol_1:hover .bol_1{
		left: 20%;
		opacity: 1;
	}
	.car_mb_btn_list .btn_ol_1:hover .bol_2{
		right: 0%;
		opacity: 0;
	}
	.car_mb_btn_list .btn_ol_1:hover .bt_t{
		left: 50%;
	}

	.car_mb_btn_list .btn-stay{
		width: 2.7rem;
		height: 0.6rem;
		border-radius: 50px;
		overflow: hidden;
		margin-left: 0.5rem;
		margin-top: -1rem;
	  }
	  .car_mb_btn_list .btn-stay .bt_mask{
		background-color: #000;
	  }
	  .car_mb_btn_list .btn-stay .bt_t{
		color: #fff;
		font-weight: bold;
	  }
	  /* .bt_mask{
		position: static;
	  } */



	
	
}





/* footer */
footer{
	background-color: #000;
	padding: 1rem 0.7rem 0.4rem;
}
.footer_logo_top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer_logo{
	width: 30%;
}
.go_top{
	display: flex;
	color: #fff;
	align-items: center;
	font-size: 0.2rem;
	cursor: pointer;
}
.go_top img{
	width: 0.2rem;
	margin-left: 0.2rem;
}
.footer_jump{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_jump_l{
	display: flex;
	align-items: center;
}
.footer_jump_l div{
	height: 0.8rem;
	line-height: 0.8rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.16rem;
	margin-right: 0.4rem;
	position: relative;
	cursor: pointer;
	transition: all .5s;
}
.footer_jump_l div:hover{
	color: #fff;
}
.footer_jump_l div::after {
    bottom: 0;
    left: 0;
    height: 1px;
    position: absolute;
    content: '';
    transition: transform .55s cubic-bezier(0.165,0.84,0.44,1);
    transform: scaleX(0);
    transform-origin: right;
    background-color: rgb(255, 118, 0);
    width: 100%;
}
.footer_jump_l div:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.footer_jump_r{
	display: flex;
}
.footer_jump_r img{
	width: 0.25rem;
	margin-left: 0.4rem;
	transition: all .6s;
}
.footer_jump_r img:hover{
	transform: scale(1.3);
}
.footer_other{
	text-align: center;
	margin-top: 0.5rem;
	color: rgb(255, 255, 255);
	font-size: 0.16rem;
}

@media (max-width: 767px) {
	footer{
		padding: 0.8rem 0.7rem 0.5rem;
	}
	.footer_logo_top{
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		height: 5rem;
	}
	.footer_logo{
		width: 80%;
	}
	.go_top{
		position: absolute;
		top: 0;
		right: 0;
		font-size: 0.3rem;
	}
	.go_top img{
		width: 0.32rem;
		margin-left: 0.2rem;
	}
	.footer_jump{
		margin-top: 0;
	}
	.footer_jump_r{
		display: none;
	}
	.footer_jump_l{
		width: 100%;
		justify-content: space-between;
		align-items: center;
	}
	.footer_jump_l div{
		margin-right: 0;
		font-size: 0.22rem;
	}
	.fjl_line{
		width: 1px;
		height: 0.2rem !important;
		background-color: rgba(255, 255, 255, 0.4);
	}
	.footer_other{
		font-size: 0.18rem;
		color: rgb(255, 255, 255);
	}
	
	.footer_logo_top{
		flex-direction: column;
	}
	.footer_logo{
		margin-top: 1.2rem;
	}
	.footer_jump_mb{
		display: flex !important;
		margin-top: 1.3rem;
	}
	.footer_jump_mb img{
		width: 0.4rem;
		margin: 0 0.3rem;
	}
	
}