/* CSS Document */
.newsList .item {
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.newsInfoBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-column-gap: 20px;
	   -moz-column-gap: 20px;
	        column-gap: 20px;
	padding-bottom: 10px;
	font-size: 16px;
}
.newsInfoBox .dateBox {
	font-family: "Lato", sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 4px;
	   -moz-column-gap: 4px;
	        column-gap: 4px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
	padding: 5px 0;
}

.classBox {
	margin-bottom: 0;
}

.yearBox {
	margin: 0;
	padding: 0;
	max-width: 250px;
	margin-left: auto;
	margin-bottom: 30px;
	z-index: 3;
}
@media (max-width: 1023px) {
	.yearBox {
		max-width: 100%;
	}
}
.yearBox .classCurrent {
	background-color: #f18d00;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	letter-spacing: 1px;
	margin-top: 0;
	padding: 10px 20px;
	position: relative;
	border-radius: 5px;
}
.yearBox .classCurrent::before {
	content: "\f107";
	color: #fff;
	font-size: 15px;
	font-family: FontAwesome;
	line-height: 1;
	margin-top: -6px;
	position: absolute;
	right: 20px;
	top: 50%;
	z-index: 1;
}
@media (min-width: 1024px) {
	.yearBox .classCurrent {
		display: block;
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
	}
}
.yearBox .classLink {
	width: 100%;
	background-color: #fff;
	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;
}
.yearBox .classLink.open {
	display: block;
}
.yearBox .classLink > li:not(:first-child) {
	border-top: 1px solid #ccc;
}
.yearBox .classLink > li > a.current,
.yearBox .classLink > li span.current {
	color: #f18d00;
}
.yearBox .classLink > li ul {
	display: none;
}
.yearBox .classLink a {
	color: #2f2f2f;
	background-color: #fff;
	display: block;
	padding: 14px 15px;
	position: relative;
}
.yearBox .classLink a.current {
	color: #008ad8;
}
.yearBox .classLink .m2Item {
	padding: 8px 30px;
}
.yearBox .classLink .m3Item {
	padding: 8px 30px;
	color: #9e9e9e;
}

.newsList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 -20px;
}
.newsList .newsItem {
	width: 33.3333333333%;
	padding: 0 20px 37px;
}
@media (max-width: 1023px) {
	.newsList .newsItem {
		width: 50%;
	}
}
@media (max-width: 640px) {
	.newsList .newsItem {
		width: 100%;
	}
}
.newsList .item {
	position: relative;
	background-color: #fff;
}
@media (min-width: 1201px) {
	.newsList .item:hover {
		-webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
		        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
		-webkit-transform: translate3d(-5px, -5px, 0);
		        transform: translate3d(-5px, -5px, 0);
	}
}
.newsList .link {
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}
.newsList .Img img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.newsList .Txt {
	border: 1px solid #e7e7e7;
	padding: 25px 28px 28px;
}
.newsList .Txt .title {
	font-size: 20px;
	margin-bottom: 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.newsList .Txt .text {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 41px;
	height: 48px;
}
.newsList .Txt .newsInfoBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 20px;
	   -moz-column-gap: 20px;
	        column-gap: 20px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media (max-width: 1200px) {
	.newsList .Txt {
		padding: 20px 24px 24px;
	}
	.newsList .Txt .title {
		font-size: 18px;
	}
	.newsList .Txt .text {
		font-size: 14px;
	}
}
@media (max-width: 650px) {
	.newsList .Txt {
		padding: 16px 20px 20px;
	}
	.newsList .Txt .title {
		font-size: 16px;
	}
	.newsList .Txt .text {
		font-size: 13px;
	}
	.newsList .Txt .newsInfoBox {
		font-size: 14px;
	}
}

.innerArea {
	margin-top: 83px;
}
.innerArea .contentBox {
	margin-top: 40px;
}
.innerArea .newsInfoBox .classTitle {
	color: #fff;
	background-color: #f18d00;
	border-radius: 20px;
	padding: 5px 10px;
}

.shareBox {
	float: right;
}
.shareBox .btn-fb {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.shareBox .back {
	display: inline-block;
	vertical-align: middle;
	padding: 3px 5px;
	border-radius: 3px;
	font-size: 12px;
	color: #fff;
	background: rgb(174, 66, 51);
	/* Old browsers */
	/* FF3.6+ */
	/* Chrome,Safari4+ */
	/* Chrome10+,Safari5.1+ */
	/* Opera 11.10+ */
	/* IE10+ */
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(174, 66, 51)), to(rgb(196, 76, 76)));
	background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae4233", endColorstr="#c44c4c", GradientType=0);
	/* IE6-9 */
	cursor: pointer;
}
.shareBox .back:hover {
	background: #398cb1;
}
/*# sourceMappingURL=news.css.map */