/* btn */
.btn_style_01{
	display: flex;
	align-items: center;
	cursor: pointer;
}
.btn_style_01 .btn_icon{
	width: 0.4rem;
	position: relative;
	margin-left: 0.2rem;
	overflow: hidden;
}
.btn_style_01 .btn_icon img{
	width: 0.18rem;
	transition: all .3s;
	opacity: 1;
}
.btn_style_01 .btn_icon img:nth-of-type(2){
	position: absolute;
	top: 0;
	left: -1rem;
	transition: all .5s;
}
.btn_style_01:hover .btn_icon img:nth-of-type(1){
	margin-left: 0.2rem;
	opacity: 0;
}
.btn_style_01:hover .btn_icon img:nth-of-type(2){
	left: 0rem;
}

/* 页面 */
.news_body{
	padding: 15vh 7vw 0;
}

/* 头 */
.public_header{
	display: flex;
	justify-content: space-between;
}
.nav_text{
	position: relative;
}
.nav_text ._EN{
	font-size: 0.8rem;
	line-height: 0.8rem;
	font-weight: 300;
	color: #f4f4f4;
}
.nav_text ._CN{
	font-size: 0.5rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	color: #111;
}
.search_box{
	display: flex;
	justify-content: flex-end;
}
.search_min{
	display: flex;
	align-items: center;
	border-bottom: 1px solid #000;
	position: relative;
	cursor: pointer;
	margin-top: 0.15rem;
}
.search_input{
	width: 3rem;
	height: 0.6rem;
	border: none;
	font-size: 0.18rem;
}
.search_car_name{
	line-height: 0.6rem;
	cursor: pointer;
}
.search_min input::-webkit-input-placeholder {
  color: rgba(0,0,0,.2);
}
.search_img{
	width: 0.25rem;
	opacity: .7;
	cursor: pointer;
	transition: all .3s;
}
.search_img:hover{
	opacity: 1;
}
/* 下拉框 */
.search_ul{
	position: absolute;
	top: 0.9rem;
	width: 100%;
	background-color: #fff;
	height: 3rem;
	max-height: 3rem;
	z-index: 100;
	overflow-x: hidden;
	overflow-y: scroll;
	transition: all .3s;
}
.search_ul._hide{
	height: 0 !important;
}
.search_li{
	position: relative;
	height: 0.6rem;
	line-height: 0.6rem;
	font-size: 0.18rem;
	padding: 0 0.3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.search_li:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.search_li .search_li_choose{
	width: 0.25rem;
	opacity: 0;
	transition: opacity .4s;
}
.search_li.active .search_li_choose{
	opacity: 1;
}
.search_li:hover{
	background-color: rgba(0,0,0,.15);
	cursor: pointer;
}
.search_tip{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.5rem;
    color: rgba(0,0,0,0.2);
    pointer-events: none;
    font-size: 0.16rem;
}



/* detail */
.news_list{
	position: relative;
	margin-top: 0.5rem;
	min-height: 50vh;
}

.news_other{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.news_min{
	background-color: #f6f7fa;
	width: 32.6%;
	margin-bottom: 1vw;
	position: relative;
}
.news_min:nth-child(3n-1){
	margin: 0 1.1% 1vw;
}
.img_mark{
	width: 100%;
	height: 18.8vw;
	overflow: hidden;
	position: relative;
}
.newsI{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.newsV{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.marks{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all .5s;
	pointer-events: none;
	cursor: pointer;
}
.marks img{
	width: 0.54rem;
	opacity: 0.5;
	cursor: pointer;
}
.img_mark:hover .marks{
	opacity: 1;
	pointer-events: auto;
}
.min_menu{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.2rem
}
.mm_name{
	font-size: 0.2rem;
}
.pop_code{
	position: absolute;
	bottom: 0.4rem;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s;
}
.mm_btn{
	display: flex;
	align-items: center;
}
.mmb_code{
	position: relative;
}
.mmb_code:hover .pop_code{
	opacity: 1;
}
.code_icon, .down_icon{
	width: 0.28rem;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity .4s;
}
.code_icon:hover, .down_icon:hover{
	opacity: 1;
}
.mmb_line{
	width: 2px;
	height: 0.2rem;
	background-color: #e5e5e5;
	margin: 0 0.15rem;
}

/* 下载说明 */
.down_remarks{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2vh 7vw;
	border-top: 1px solid rgba(17,17,17,.1);
	margin-top: 0.8rem;
}
.dr_right{
	display: flex;
	align-items: center;
	text-align: right;
}
.drr_r img{
	width: 1rem;
	margin-left: 0.2rem;
}
.drr_l div:nth-of-type(1){
	font-size: 0.23rem;
	font-weight: bold;
}
.drr_l div:nth-of-type(2){
	margin-top: 0.05rem;
}
.dr_left div:nth-of-type(1){
	font-size: 0.18rem;
}
.dr_left div:nth-of-type(2){
	margin-top: 0.05rem;
	color: rgba(17,17,17,.4);
}




@media (max-width: 767px){
	.news_body{
		padding: 15vh 7vw 0vh;
	}
	.down_remarks{
		display: none;
	}
	
	.public_header{
		flex-direction: column;
		align-items: inherit;
	}
	.search_min{
		width: 100%;
		border-bottom: 1px solid rgba(0,0,0,.4);
	}
	.search_input{
		flex: 1;
		padding: 0 0 0 0rem;
	}
	.search_input{
		height: 1rem;
		font-size: 0.28rem;
	}
	.search_car_name{
		line-height: 1rem;
		font-size: 0.3rem;
	}
	.search_img{
		width: 0.4rem;
	}
	.search_ul{
		top: 1.1rem;
		height: 4rem;
		max-height: 4rem;
		box-shadow: 0 0 0.1rem 0 rgb(0 0 0 / 10%);
	}
	.search_li{
		height: 0.8rem;
		line-height: 0.8rem;
		font-size: 0.28rem;
	}
    .search_tip{
        right: 0.8rem;
        font-size: 0.26rem;
    }
	
	/* 跳转车型页 */
	.go_btn{
		display: none !important;
	}
	.go_car_page{
		display: flex !important;
		justify-content: center;
		align-items: center;
		padding: 5vw 7vw 0;
		margin-bottom: 5vh;
	}
	.go_car_page div{
		width: 100%;
		height: 0.75rem;
		line-height: 0.75rem;
		text-align: center;
		color: #000;
		border: 1px solid #6e7174;
		font-weight: 300;
	}
}