/* header */
.header{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}
.head_line{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.8rem;
	transition: all 1s;
}
.header._hide .head_line{
	top: -1rem;
}
.head_bk_color{
	width: 100%;
	height: 0%;
	z-index: 1;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	/* background-color: #fff; */
	background-color: #61564f;
	transition: all .5s;
}
.header.dark .head_bk_color{
	height: 100%;
}
.head_ll{
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 0 0.6rem;
	position: relative;
	z-index: 1;
	border-bottom: 1px solid rgba(97,86,79, 0.2);
}
.h_menu{
	padding-left: 0.55rem;
}
.h_logo{
	position: absolute !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.h_logo img{
	width: 2.2rem;
}
.h_other{
	display: flex;
}
.ho_link{
	display: flex;
	align-items: center;
}
.ho_link_min{
	display: flex;
	align-items: center;
	/* margin-right: 0.3rem; */
}
.ho_link_min_num{
	font-size: 0.2rem !important;
	margin-left: 0.1rem;
}
.ho_link_min_t{
    width: 1.2rem;
    height: 0.4rem;
    border: 1px solid ;
	margin-right: 0;
	/* margin-left: 0.62rem; */
}
.ho_link_min_t div:nth-of-type(1){
	margin-left: 0.27rem;
	font-size: 0.16rem;
	position: absolute;
}
.ho_link_min_t div:nth-of-type(2){
	display: flex;
    position: absolute;
    top: 0.65rem;
    right: 0.6rem;
    width: 1.2rem;
    height: 1.2rem;
    background-color: #fff;
	opacity: 0;
	pointer-events: none;
}
.ho_link_min_t div:nth-of-type(2) img{
	width: 86%;
    margin-top: 7%;
    margin-left: 7%;
    display: flex;
    position: absolute;
}
.ho_link_min_t:hover div:nth-of-type(2){
	opacity: 1;
}


.head-testdrive-box {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2;
	display: none;
  }
  .head-testdrive-box._active {
	display: block;
  }
  .testdrive-box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 6.7rem;
	height: 5.5rem;
	background-image: url(../img/home/pc.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
  }
  .testdrive-box .close {
	position: absolute;
	right: 0.25rem;
	top: 0.25rem;
	width: 0.14rem;
	z-index: 1;
	cursor: pointer;
  }
  .testdrive-box .close img {
	width: 100%;
  }




.hlm_i{
	margin-right: 0.1rem;
}
.hlm_i img{
	width: 0.18rem;
}
.h_language{
	position: relative;
	cursor: pointer;
}
.hl_main{
	position: relative;
	display: flex;
	align-items: center;
	padding: 2px 0.1rem;
	background-color: rgba(255, 255, 255, 0.2);
	white-space: nowrap;
	border-radius: 5px;
	transition: all .5s;
}
.hl_main img{
	width: 0.15rem;
	margin-left: 0.1rem;
	transform: rotate(180deg);
	transition: all .5s;
}
.hl_down{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0.35rem;
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	width: 1.2rem;
	text-align: center;
	opacity: 0;
	pointer-events: none;
	border-radius: 5px;
}
.h_language.active .hl_down{
	opacity: 1;
	pointer-events: auto;
}
.h_language.active .hl_main img{
	transform: rotate(0deg);
}
.hl_down div{
	height: 0.4rem;
	line-height: 0.4rem;
	border-radius: 5px;
	background-color: transparent;
	transition: all .3s;
	cursor: pointer;
}
.hl_down div:hover{
	background-color: rgba(255, 255, 255, 0.5);
}

/* 头部按钮 */
.header_btn{
	width: 0.4rem;
	height: 0.12rem;
	position: fixed;
	top: 0.35rem;
	left: 0.6rem;
	cursor: pointer;
	z-index: 50;
	transition: 1s;
}
.header._hide .header_btn{
	top: -0.65rem;
}
.header_btn div{
	width: 0.4rem;
	height: 1px;
	background-color: #fff;
	transition: all .5s;
}
.header_btn div:nth-of-type(1){
	position: absolute;
	top: 0;
	left: 0;
}
.header_btn div:nth-of-type(2){
	position: absolute;
	bottom: 0%;
	left: 0;
}
/* .header_btn div:nth-of-type(3){
	position: absolute;
	bottom: 0;
	left: 0;
} */
.header.open{
	.header_btn div:nth-of-type(1){
		transform: translateY(0.05rem) rotate(45deg);
	}
	.header_btn div:nth-of-type(2){
		transform: translateY(-0.05rem) rotate(-45deg);
	}
}




/* 深浅图标更换 */
.icon_change{
	position: relative;
}
.icon_change img{
	transition: all .3s;
}
.icon_change img:nth-of-type(1){
	position: relative;
	opacity: 1;
}
.icon_change img:nth-of-type(2){
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
}
.header.dark .icon_change img:nth-of-type(1){
	opacity: 1;
}
.header.dark .icon_change img:nth-of-type(2){
	/* opacity: 1; */
}
.header.dark .hl_main{
	background-color: rgba(0, 0, 0, 0.3);
}
.header.dark .hl_down{
	background-color: rgba(0, 0, 0, 0.3);
}
.header.dark .header_btn div{
	/* background-color: #000; */
}
.header.dark.open .header_btn div{
	background-color: #fff;
}

/* 头部文字颜色 */
.h_menu div,
.ho_link_min,
.hl_main{
	color: #fff;
	font-size: 0.16rem;
	transition: all .5s;
}
.header.dark .h_menu div,
.header.dark .ho_link_min{
	/* color: #000; */
}
.header.dark .h_menu .h-btn {
	/* color: #000; */
	/* border: 1px solid #000; */
  }



/* 头部侧边 */
.head_side{
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	z-index: 40;
	pointer-events: none;
}
.header.open .head_side{
	pointer-events: auto;
}
.hs_bk{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0rem;
	transition: width 1s cubic-bezier(0.33, 1, 0.4, 1.1);
	-webkit-backdrop-filter: blur(35px);
	backdrop-filter: blur(35px);
	background-color: rgba(18, 18, 18, .8);
	pointer-events: none;
}
.head_side.op_one .hs_bk{
	width: 4rem;
}
.head_side.op_two .hs_bk{
	width: 8rem;
}
.hs_list{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	z-index: 1;
	width: 0;
}
.head_side.op_one .hs_list{
	width: 4rem;
}
.head_side.op_two .hs_list{
	width: 8rem;
}
.hs_one{
	width: 4rem;
	height: 100vh;
	flex-shrink: 0;
	opacity: 0;
	filter: blur(0.1rem);
	transform: translateX(-1rem);
	transform-origin: bottom left;
	transition-property: filter, opacity, transform;
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.head_side.op_one .hs_one{
	transform: translateX(0%);
	pointer-events: auto;
	opacity: 1;
	filter: blur(0rem);
}
.hs_two{
	width: 4rem;
	height: 100vh;
	pointer-events: none;
	flex-shrink: 0;
}
.hso_list{
	padding: 1.5rem 0.8rem;
	width: 100%;
	height: 100%;
	position: relative;
}

.hsol_min{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	cursor: pointer;
	opacity: 0.6;
}
.hlm_top .hsol_min:nth-last-of-type(1){
	margin-bottom: 0rem;
}
.hlm_bottom .hsol_min:nth-last-of-type(1){
	margin-bottom: 0rem;
}
.hlm_bottom{
	padding-top: 0.5rem;
	border-top: 1px solid rgba(255,255,255,0.4);
}
.hsol_min span{
	font-size: 0.22rem;
	color: #fff;
	font-weight: 300;
}
.hs_two .hsol_min.hover span {
	color: #BC9A83 !important;
}
.hs_two .hsol_min.hover{
	opacity: 1 !important;
	color: #BC9A83!important;
}

.hs_one.in .hsol_min{
	opacity: 0.4;
}
.hs_two.in .hsol_min{
	opacity: 0.5;
}

.hsol_min div{
	position: relative;
}
.hsol_min div img{
	transition: all .5s;
	width: 0.28rem;
}
.hsol_min div img:nth-of-type(2){
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.hs_one .hsol_min.hover{
	opacity: 1 !important;
}



.hsol_min.hover span{
	color: #fff;
}
.hsol_min.hover div img:nth-of-type(1){
	opacity: 1;
}
.hsol_min.hover div img:nth-of-type(2){
	opacity: 0;
}

.hs_all{
	opacity: 0;
	transition: all .6s;
}
.head_side.op_two .hs_two{
	opacity: 1;
	pointer-events: auto;

}
.list-right{
	width: 0.3rem;
}
.hso_list_min{
	position: absolute;
	top: 1.5rem;
	left: 0.8rem;
	width: calc(100% - 1.6rem);
	height: calc(100% - 2.5rem);
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	opacity: 0;
	filter: blur(0.2rem);
	transform-origin: bottom left;
	transition-property: filter, opacity, transform;
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hso_list_min.active{
	pointer-events: auto;
	opacity: 1;
	filter: blur(0rem);
}

/* 头部移动 */
@media(max-width: 768px){
	/* header */
	.h_other{
		display: none;
	}
	.head_ll{
		justify-content: flex-end;
	}
	.header_btn{
		top: 0.44rem;
    left: auto;
    /* right: 2.4rem; */
	right: 1.2rem;
    transition: all 1s;
	}
	.header._hide .header_btn{
		top: -0.55rem;
	}
	.header.open .header_btn{
		top: 0.6rem;
		right: 0.6rem;
	}
	.h_logo{
		left: 0.6rem;
		transform: translate(0%, -50%);
	}
	.h_menu div, .ho_link_min, .hl_main{
		font-size: 0.24rem;
	}
	.h_menu {
		display: flex;
		align-items: center;
	  }
	.head_line{
		height: 1rem;
	}
	.h_menu .h-btn {
		border: 1px solid #fff;
    font-size: 0.22rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0.55rem;
    margin-left: 0.2rem;
	text-align: center;
	line-height: 0.55rem;
	  }


	.hs_bk{
		height: 0%;
		width: 100vw !important;
		transition: height .7s cubic-bezier(0.65, 0, 0.35, 1);
	}
	.head_side.op_one .hs_bk{
		height: 100vh;
	}
	.hso_list{
		width: 100vw;
		padding: 2.5rem 0.8rem 0;
	}
	.hso_list_min{
		height: calc(100% - 3.5rem);
		top: 2.5rem;
	}
	.head_side.op_one .hs_list{
		width: 100vw;
	}
	.head_side.op_two .hs_list{
		width: 100vw;
	}
	.hs_one{
		width: 100vw;
		z-index: 5;
		opacity: 0;
		filter: blur(0.1rem);
		transform: translate(0,1rem);
	}
	.head_side.op_one .hs_one{
		transition-delay: 0.3s;
		transform: translate(0,0);
	}
	.hs_two{
		width: 100vw;
		z-index: 10;
	}
	.hso_list{
		transition: all 0.8s;
		opacity: 0;
	}
	.head_side.op_one .hso_list_1{
		transform: translateX(0rem);
		opacity: 1;
	}
	.head_side.op_one .hso_list_2{
		transform: translateX(0.8rem);
		opacity: 0;
	}
	.head_side.op_two .hso_list_1{
		transform: translateX(-0.8rem);
		opacity: 0;
	}
	.head_side.op_two .hso_list_2{
		transform: translateX(0rem);
		opacity: 1;
	}


	.hs_all{
		width: 100vw;
		position: absolute;
		height: 100vh;
		top: 0;
		left: 0;
	}
	.hs_tow_back{
		position: absolute;
		top: 0.4rem;
		width: 0.55rem;
		left: 0.8rem;
		transform: rotate(180deg);
		z-index: 1;
	}


	.hsol_min span{
		font-size: 0.38rem;
	}
	.hsol_min div img{
		width: 0.5rem;
	}
	.hsol_min{
		margin-bottom: 0.8rem;
	}

	.testdrive-box {
		background-image: url(../img/home/mo.png);
		background-size: 100% auto;
		background-repeat: no-repeat;
		width: 6.7rem;
        height: 10.7rem;
	  }

}







/* footer */
.footer{
	padding: 0.8rem 1.5rem 0.5rem;
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #62574f;
}
.footer_title{
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	display: block;
}
.footer_title img{
	width: 2.2rem;
	padding-bottom: 0.4rem;
}
.footer_center{
	display: flex;
	margin-top: 0.8rem;
	color: #fff;
	justify-content: space-between;
	align-items: flex-start;
}
.ftl_t1{
	font-size: 0.22rem;
	font-weight: 500;
}
.ftl_t2{
	display: flex;
	align-items: center;
	margin-top: 0.3rem;
}
.ftl_t2 .china_flag{
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 100%;
}
.ftl_t2 .language{
	font-size: 0.2rem;
	/* margin-left: 0.1rem; */
}
.ftl_t2 .change_lan{
	font-size: 0.2rem;
	margin-left: 0.3rem;
	text-decoration: underline;
	cursor: pointer;
}
.footer_jump_1{
	/* margin-top: 1.1rem; */
}
.footer_jump_1 .fj1_line{
	display: flex;
}
.footer_jump_1 .fj1_line:nth-of-type(2){
	margin-top: 0.2rem;
}
.footer_jump_1 .fj1_line a{
	font-size: 0.18rem;
	color: #fff;
}

.footer_jump_1_mb{
	display: flex;
}
.footer-nav{
	margin-right: 0.6rem;
}
.footer-nav div{
	margin-right: 0.6rem;
	margin-bottom: 0.2rem;
}
.footer-nav div a{
	color: #ffffff;
	font-size: 0.18rem;
	
}




.footer_right{

}
.fr_t1{
	font-size: 0.22rem;
	font-weight: 500;
}
.fr_t2{
	font-size: 0.18rem;
	margin-top: 0.12rem;
}
.fr_icon_list{
	display: flex;
	margin-top: 0.35rem;
}
.fr_i{
	width: 0.6rem;
	height: 0.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	margin-right: 0.27rem;
	overflow: hidden;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
}
.fr_i:nth-of-type(3){
	margin-right: 0;
}
.fr_i img{
	width: 0.3rem;
}
.fr_i_s img{
	width: 0.26rem;
}
.fr_i::after{
	content: '';
	display: block;
	background-color: rgba(70, 62, 56, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	opacity: 0;
	transition: all .3s;
}

.fr_i:hover::after{
	opacity: 1;
}
.wechat{
	position: absolute;
    width: 2.8rem;
    top: 21.5%;
    left: 72.4%;
	opacity: 0;
	pointer-events: none;
}
.wechat.active{
	opacity: 1;
	pointer-events: auto;
}
.wechat img.bk{
	width: 100%;
}
.chat_pop_t{
	position: absolute;
    width: calc(2.8rem - 0.5rem);
    top: 0.13rem;
    left: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.14rem;
    text-align: center;
}
.wechat01{
	width: 47.5%;
	position: relative;
	line-height: 0.3rem;
	color: rgba(225, 225, 225, 0.6);
}
.wechat02{
	width: 47.5%;
	position: relative;
	line-height: 0.3rem;
	color: rgba(225, 225, 225, 0.6);
}
.chat_pop_t img{
	width: 100%;
}



.footer_bottom{
	margin-top: 1rem
}
.fb_title{
	font-size: 0.22rem;
	color: #fff;
	font-weight: 500;
}
.fb_link_list{
	display: flex;
	margin-top: 0.3rem;
}
.fb_link_list a{
	color: #fff;
	font-size: 0.18rem;
	margin-right: 0.6rem;
	position: relative;
}
.fb_link_list a::after{
	content: '';
	display: block;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	height: 70%;
	top: 55%;
	transform: translateY(-50%);
	position: absolute;
	right: -0.3rem;
}
.fb_link_list a:nth-last-of-type(1)::after{
	display: none;
}
.fb_other{
	margin-top: 0.3rem;
	display: flex;
}
.fb_other a{
	font-size: 0.16rem;
	color: rgba(255, 255, 255, 0.3);
	margin-right: 0.3rem;
	position: relative;
}
.fb_other a:after{
	content: '';
	display: block;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	height: 70%;
	top: 55%;
	transform: translateY(-50%);
	position: absolute;
	right: -0.15rem;
}
.fb_other a:nth-last-of-type(1)::after{
	display: none;
}
.fb_ba{
	margin-top: 0.1rem;
	font-size: 0.15rem;
	color: rgba(255, 255, 255, 0.3);
}

.go_top{
	position: fixed;
	top: calc(100vh - 0.7rem);
	right: 0.2rem;
	width: 0.5rem;
	height: 0.5rem;
	background-color: #8d705a;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 30;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: all .3s;
}
.go_top img{
	width: 0.25rem;
}
.go_top.active{
	opacity: 0.7;
	pointer-events: auto;
}
.go_top.active:hover{
	opacity: 1;
}

@media (max-width: 768px){
	/* footer */
	.footer {
	    padding: 0.8rem 0.6rem 0.5rem;
	}
	.ftl_t1,
	.fr_t1,
	.fb_title{
		font-size: 0.3rem;
	}
	.ftl_t2 .language,
	.ftl_t2 .change_lan,
	.fr_t2,
	.footer_jump_1 .fj1_line a,
	.fb_link_list a{
		font-size: 0.24rem;
	}
	.ftl_t2 .china_flag{
		width: 0.8rem;
		height: 0.8rem;
	}
	.fr_i{
		width: 1rem;
		height: 1rem;
		margin-right: 0.25rem;
		border-radius: 7px;
	}
	.fr_i img{
		width: 0.5rem;
	}
	.fr_i_s img{
		width: 0.42rem;
	}

	.fr_t2{
		margin-top: 0.25rem;
	}
	.footer_left{
		width: 100%;
	}
	.footer_right {
		margin-top: 2rem;
	}
	.footer_jump_1{

	}
	.footer_jump_1 .fj1_line{
		justify-content: space-between;
	}
	.footer_jump_1 .fj1_line a{
		margin-right: 0;
		font-size: 0.3rem;
		font-weight: 500;
	}
	.fb_link_list,
	.fb_other{
		flex-wrap: wrap;
	}
	.fb_link_list{
		margin-top: 0;
	}
	.fb_other{
		margin-top: 0.55rem;
	}
	.fb_other a{
		font-size: 0.2rem;
		line-height: 0.38rem;
	}
	.fb_ba{
		font-size: 0.16rem;
	}
	.fb_link_list a {
	    margin-right: 0.8rem;
		margin-top: 0.25rem;
	}
	.fb_link_list a::after{
		right: -0.4rem;
	}
	#index_box > div.footer > div.footer_bottom > div.fb_link_list > a:nth-child(4)::after{
		display: none;
	}
	.footer_bottom{
		margin-top: 2rem;
		margin-bottom: 1rem;
	}
	.footer_center{
		margin-top: 1rem;
	}


	.wechat_box_win{
		position: fixed;
        width:100%;
        height: 100vh;
		top: 0;
		left: 0;
		background: rgba(70,62,56, 0.8);
		opacity: 0;
		pointer-events: none;
		transition: all 1s;
	}
	.wechat_box_win.active{
		opacity: 1;
		pointer-events: auto;
	}
	.wechat_box{
		position: absolute;
        width:5rem;
        /* height: 100vh; */
        top: 19%;
        left: 15%;
        z-index: 50000;
	}
	.wechat_box img.bk{
		width: 100%;
	}
	.chat_box_t{
		position: absolute;
		width: calc(5rem - 2rem);
        top: 0.5rem;
        left: 1rem;
        font-size: 0.32rem;
        color: rgba(225, 225, 225, 0.6);
		line-height: 0.8rem;
        text-align: center;
	}
	.chat_pic01{
		height: 48%;
	}
	.chat_pic02{
		height: 48%;
	}
	.chat_box_t img{
		width: 100%;
	}


	/* 侧边栏 */
	.go_top{
		top: calc(100vh - 1rem);
		width: 0.8rem;
		height: 0.8rem;
	}
	.go_top img{
		width: 0.35rem;
	}
}














/* cookie */
.cookie_box{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: rgba(0, 0, 0, .6);
	z-index: 1000;
	opacity: 0;
	transition: all .5s;
	pointer-events: none;
}
.cookie_main{
	position: absolute;
	bottom: -1rem;
	opacity: 0;
	left: 6%;
	width: 88.5%;
	background-color: rgba(0, 0, 0, .6);
	padding: 0.7rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: all 1s;
}
.cookie_box.active{
	opacity: 1;
	pointer-events: auto;
}
.cookie_box.active .cookie_main{
	bottom: 0.5rem;
	opacity: 1;
}
.cookie_close{
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 0.16rem;
	cursor: pointer;
	opacity: 0.6;
	transition: all .5s;
}
.cookie_close:hover{
	opacity: 1;
}
.cookie_close img{
	width: 0.25rem;
}
.cookie_close div{
	margin-left: 0.15rem;
	font-weight: 300;
}
.cookie_detail{
	color: #fff;
    font-size: 0.19rem;
    margin-top: 0.3rem;
    line-height: 0.3rem;
    opacity: 0.8;
    font-weight: 300;
}
.cookie_detail a{
	color: #fff;
    font-size: 0.19rem;
    margin-top: 0.3rem;
    line-height: 0.3rem;
    opacity: 0.8;
    font-weight: 300;
    text-decoration: none;
}
.coo_policy{
	display: block;
    color: rgba(225, 225, 225, 0.7);
    text-decoration: underline;
    margin-top: 0.5rem;
	font-size: 0.16rem;
}
.coo_policy a{
	color: #fff;
	opacity: 0.6;
}
.cookie_btn{
		display: flex;
		align-items: center;
		justify-content: flex-end;
		position: absolute;
		right: 8%;
		top: 52%;
}
.cookie_1 {
	width: 3.5rem;
	letter-spacing: 0px;
	color: #81492e;
	border: 1px solid rgb(129, 73, 46);
	background-color: transparent;
	height: 0.35rem;
    line-height: 0.35rem;
}
.cookie_1 div{
	left: 10%;
}
.cookie_1:hover div{
	left: 30%;
}
.cookie_1 .btn_arrow_r{
	right: 10%;
}
.cookie_1:hover .btn_arrow_l{
	left: 10%;
}
.cookie_2{
	background-color: rgb(129, 73, 46);
    width: 2rem;
    height: 0.6rem;
    line-height: 0.6rem;
    text-align: center;
    color: rgba(225, 225, 225, 0.6);
	font-size: 0.18rem;
}

	/* cookie */
@media (max-width: 768px){
	.cookie_main{
		width: 80%;
        height: 45%;
        left: 10%;
        padding: 0.8rem 0.5rem;
	}
	.cookie_box.active .cookie_main{
		bottom: 1.8rem;
	}
	.cookie_close img{
		width: 0.35rem;
	}
	.cookie_close div{
		font-size: 0.25rem;
	}
	.cookie_detail{
		font-size: 0.24rem;
		line-height: 0.4rem;
	}
	.cookie_btn{
		flex-direction: column;
		left: 2.2rem;
		top: auto;
		bottom: 10%;
		right: auto;
		width: 1.5rem;
		height: 0.6rem;
	}
	.cookie_btn .btn_style_n1{
		width: 100%;
		height: 0.85rem;
	}
	.cookie_btn .btn_style_n1:nth-of-type(2){
		margin-left: 0;
		margin-top: 0.2rem;
	}



}
