/*
 * iweb52-style28
 *
 * Copyright 2017, TANK
 * 
 * 
 * 2017 / 04 / 06
 */


/* + newsList
*----------------------------------------------------------------------------*/
#newsList ul li {
	overflow: hidden;
	padding: 20px 25px;
	border-bottom: 1px #ccc solid;
}

#newsList ul li > div {
	float: left;
	width: 30%;
}

#newsList ul li .info {
	float: right;
	width: 65%;
}

#newsList ul li .info h4 a ,
#newsList ul li .info article {
	overflow: hidden;
	height: 27px;
	font-size: 18px;
	color: #333;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
}

#newsList ul li .info article {
	margin-top: 20px;
	height: 72px;
	line-height: 180%;
	font-size: 14px;
	color: #777;
	-webkit-line-clamp: 3;
}


/************ = 適應性 = ************/
/* +width:450 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 450px) {
	#newsList ul li > div ,
	#newsList ul li .info {
		float: none;
		width: 100%;
	}
	#newsList ul li .info {
		margin-top: 15px;
	}
}