/* btn */
.btn_style_01{
	font-weight: 300;
	font-size: 0.18rem;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.btn_style_01:nth-of-type(2){
	margin-left: 0.2rem;
}
.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;
}

.nav_box{
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0rem 0 0.2rem;
	border-bottom: 1px solid rgba(17,17,17,.1);
}
.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;
}
.nav_list a{
	font-size: 0.2rem;
	margin-right: 1rem;
	color: #111;
	font-weight: 300;
	position: relative;
	padding: 0 0.3rem;
	line-height: 0.2rem;
}
.nav_list a::after{
	content: '';
	position: absolute;
	bottom: -0.2rem;
	width: 0%;
	height: 2px;
	display: block;
	background-color: #00d4d4;
	transition: width .5s; 
	left: 50%;
	transform: translateX(-50%);
}
.nav_list a.active::after{
	width: 100%;
}

.nav_list a:nth-last-child(1){
	/* margin-right: 0rem; */
    display: none;
}
.nav_list a:nth-last-child(2){
	margin-right: 0rem;
}
.nav_list a.active, .nav_list a:hover{
	color: #000;
	font-weight: 500;
}
.search_box{
	width: 100%;
	display: flex;
	margin-bottom: 0.5rem;
	justify-content: space-between;
	align-items: 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_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;
}


/* news */
.news_list{
	position: relative;
}

.news_other{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.news_min{
	background-color: #f6f7fa;
	width: 32.6%;
	margin-bottom: 1vw;
	position: relative;
	cursor: pointer;
    border: 1px solid #f1f1f1;
}
.news_min:nth-child(3n-1){
	margin: 0 1.1% 2vw;
}
.n_m_img{
	width: 100%;
	height: 18.8vw;
	overflow: hidden;
}
.n_m_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.n_m_img video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* 下拉框 */
.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{
	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 .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;
}






















/* loading */
.detail_loading{
	height: 10vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loading_icon {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #22cad3;
  border-radius: 50%;
  width: 0.4rem;
  height: 0.4rem;
  animation: spin 2s linear infinite;
  opacity: 0;
}
.loading_icon.active{
	opacity: 1;
}
.full_load{
	display: flex;
	align-items: center;
	color: rgba(17,17,17,.1);
	font-size: 0.18rem;
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.full_load span{
	display: block;
	width: 1.5rem;
	height: 1px;
	background-color: rgba(17,17,17,.1);
	margin: 0 0.25rem;
}
.full_load.active{
	opacity: 1;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



@media (max-width: 768px){
	.news_body{
		padding: 10vh 7vw 0;
	}
	.nav_box{
		padding-top: 5vh;
		flex-direction: column;
		position: sticky;
		top: 0;
		background-color: #fff;
		z-index: 100;
		align-items: self-start;
	}
	.nav_text{
		font-size: 0.6rem;
	}
	.nav_list{
		display: flex;
		justify-content: space-between;
		width: 100%;
		padding: 0.5rem 0 0.25rem;
	}
	.nav_list a{
		margin-right: 0;
		font-size: 0.35rem;
		line-height: 0.35rem;
	}
	.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;
    }



	
	.nav_text ._CN{
		left: 0.2;
	}
	.nav_list a::after{
		bottom: -0.45rem;
	}
	
	.news_min:nth-child(3n-1){
		margin: 0 1.1% 2vh;
	}
	
	
	
	/* 跳转车型页 */
	.go_btn{
		display: none;
	}
	.go_car_page{
		display: flex !important;
		justify-content: center;
		align-items: center;
		padding: 0 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;
	}



}
