/*
 * iweb52-style16
 *
 * Copyright 2016, TANK
 * 
 * 
 * 2016 / 11 / 01
 */


/* + newsList
*----------------------------------------------------------------------------*/
#newsList .list {
	overflow: hidden;
	margin: 15px 0;
	background: #ffffff3b;
	border: 1px #ffffff3b solid;
}

#newsList .list .newPhoto ,
#newsList .list .info {
	float: left;
	width: 25%;
}

#newsList .list .info {
	margin-left: 5%;
	padding: 30px 0;
	padding-right: 5%;
	width: 65%;
}

#newsList .list .info .time {
	overflow: hidden;
}

#newsList .list .info .time p {
	float: left;
	width: 8%;
}

#newsList .list .info .time p:first-child {
	padding: 5px 0;
	font-size: 40px;
	background: #b1fe02;
	font-family: 'Montaga', serif;
	line-height: 40px;
	color: #000103;
	text-align: center;
}

#newsList .list .info .time p b {
	font-weight: normal;
	font-size: 14px;
	margin-top: -5px;
    display: block;
    line-height: 25px;
    text-align: center;
}

#newsList .list .info .time p:last-child {
	position: relative;
	padding-bottom: 5px;
	margin-left: 2%;
	width: 90%;
	border-bottom: 1px #fff solid;
	font-size: 16px;
	color: #ffffff;
}

#newsList .list .info .time p:last-child b {
	margin: 0;
	text-align: left;
	font-size: 18px;
}

#newsList .list .info .time p:last-child b:after {
	position: absolute;
	content: "";
	width: 100px;
	height: 5px;
	background: #b1fe02;
	display: inline-block;
	bottom: -6px;
	left: 0;
}

#newsList .list .info h4 ,
#newsList .list .info article {
	overflow: hidden;
	margin: 15px 0;
	height: 26px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

#newsList .list .info h4 a {
	font-size: 25px;
	color: #ffffff;
}

#newsList .list .info article {
	margin: 0 0 10px;
	width: 60%;
	height: 54px;
	-webkit-line-clamp: 2;
	color: #ffffff;
}

#newsList .list .info a.more {
	display: block;
	text-align: right;
	color: #b1fe02;
}


/************ = 適應性 = ************/
/* +width:1280 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 1280px) {
	#newsList .list .newPhoto {
		width: 30%;
	}
	#newsList .list .info {
		width: 60%;
	}
}


/* +width:768 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	#newsList .list .newPhoto {
		width: 40%;
	}
	#newsList .list .info {
		width: 50%;
	}
	#newsList .list .info .time p {
		width: 13%;
	}
	#newsList .list .info .time p:last-child {
		width: 85%;
	}
	#newsList .list .info article {
		width: 100%;
	}
}


/* +width:640 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {
	#newsList .list .newPhoto {
		display: none;
	}
	#newsList .list .info {
		margin-left: 5%;
		margin-right: 5%;
		padding-right: 0;
		width: 90%;
	}
}


/* +width:450 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 450px) {
	#newsList .list .info .time p {
		width: 20%;
	}
	#newsList .list .info .time p:last-child {
		width: 78%;
	}
}