@charset "utf-8";
/* CSS Document */

/*.container {
	height: 50%
}*/
.container .content {
	height: calc(100% - 100px);
}
.container h1 {
	background-image: url(../images/title_news.png);
}
ul.newsWrapper {
	width: 100%;
	font-size: 0;
}
ul.newsWrapper li.newsItem {
	width: 50%;
	display: inline-block;
	box-sizing: border-box;
	padding: 10px;
	margin: 5px auto;
}
li.newsItem a {
	display: block;
	width: 100%;
	height: auto;
	color: #ccc;
	text-decoration: none;
	overflow: hidden;
}
li.newsItem a.itemImg {
}
li.newsItem a.itemImg img {
	width: 100%;
	height: auto;
	-webkit-transition: -webkit-transform 0.2s linear;
    -moz-transition: -moz-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.2s linear;
}
li.newsItem a.itemImg img:hover {
	-webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
li.newsItem a.itemTitle {
	padding-top: 3px;
}
li.newsItem a.itemTitle p {
	font-size: 1.08rem;
	margin-bottom: 0;
}
li.newsItem a.itemTitle .second-title {
	font-size: 1.25rem;
	font-weight: 300;
	height: 42px;
	overflow: hidden;
	color: #fff;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}
li.newsItem a.itemTitle .second-title:hover {
	color: #cc8a55;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

/* 分頁選擇 */
.pageList {
	font-size: 1.08rem;
	font-weight: 300;
	line-height: 1.8;
	padding-left: 70px;
	text-align: right;
	margin: 0 15px;
}
.pageList a {
	display: inline-block;
	color: #555;
	text-decoration: none;
	padding: 0 5px;
}
.pageList a:hover {
	color: #aaa;
}
@media screen and (max-height: 800px) {
/*.container {
	height: 60%;
}
.container .content {
    height: 75%;
}*/
}
@media screen and (max-width: 768px) {
.pageList {
	margin: 0;
}
}
@media screen and (max-width: 414px) {
ul.newsWrapper li.newsItem {
	width: 100%;
	border-bottom: 1px dotted #333;
}
ul.newsWrapper li.newsItem:last-child {
	border-bottom: none;
}
}