﻿.route_news {min-height: 500px;}


.route_news {
	.news-list{
		
		.news_item{
			width: 32%;
			border-radius: 0.1rem; 
			margin-right: 2%; 
			overflow: hidden;
			&:hover{
				box-shadow: 0 6px 10px 0 #EDF5FF;
			}
			&:nth-of-type(3n){
				margin-right: 0;
			}
			.pic{
				width: 100%; 
				height: 2.76rem; 
				overflow: hidden;
				.imgWrap_bg{
					position:absolute;
					left:-7%;
					top:0;
					width:114%;
					height:114%;
					object-fit:cover;
					-webkit-filter:blur(13px);
					filter:blur(13px)
				}
				.imgWrap_img{
					display:block;
					width:100%;
					height:100%;
					position:relative
				}
			}
			.info{
				padding: 0.15rem 0.15rem;
				background: rgba(0,167,194,0.6);
				position: absolute;
				bottom: 0;
				width: 100%;
				left: 0;
				p{
					overflow: hidden;
					text-overflow: ellipsis;
					white-space: nowrap;
					color: #fff;
				}	
			}
		}
	}
}
