/* CSS Document */
.newsList .Txt .title, .newsList .Txt .classTitle, .newsList .Img img, .newsList .item {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.newsInfoBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 20px 0;
	margin-top: 30px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
	padding: 5px 0;
}
.newsInfoBox .dateBox .date {
	line-height: 1;
	font-size: 16px;
	font-family: "Poppins", sans-serif, sans-serif;
}
.newsInfoBox .classTitle {
	color: #fff;
	background-color: #2a2929;
	display: inline-block;
	border-radius: 40px;
	padding: 5px 15px;
}

.newsList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 -15px;
}
.newsList .newsItem {
	width: 33.3333333333%;
	padding: 0 15px;
	margin-bottom: 30px;
	min-height: 420px;
}
@media (max-width: 1300px) {
	.newsList .newsItem {
		min-height: 420px;
	}
}
@media (max-width: 1180px) {
	.newsList .newsItem {
		min-height: 380px;
	}
}
@media (max-width: 1024px) {
	.newsList .newsItem {
		width: 50%;
	}
}
@media (max-width: 640px) {
	.newsList .newsItem {
		width: 100%;
		min-height: 320px;
	}
}
.newsList .item {
	padding: 20px;
	position: relative;
	border: 1px solid #dcdcdc;
	border-radius: 10px;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        /*justify-content: space-between;*/
}
@media (min-width: 1201px) {
	.newsList .item:hover {
		border-color: #004d7b;
	}
	.newsList .item:hover .classTitle {
		background-color: #004d7b;
	}
	.newsList .item:hover .title {
		color: #004d7b;
	}
	.newsList .item:hover .Img img {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
}
.newsList .dateBox {
	position: absolute;
	z-index: 2;
	bottom: 25px;
	right: 30px;
	background: -webkit-gradient(linear, left top, right top, from(#004d7b), to(#008edd));
	background: linear-gradient(90deg, #004d7b, #008edd);
	width: 90px;
	height: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border-radius: 50%;
	aspect-ratio: 1/1;
	text-align: center;
	padding: 10px;
	color: #fff;
	font-weight: 500;
}
.newsList .dateBox .top {
	line-height: 38px;
	font-size: 40px;
}
.newsList .dateBox .bottom {
	font-size: 14px;
}
@media (max-width: 1400px) {
	.newsList .dateBox {
		width: 70px;
		height: 70px;
	}
	.newsList .dateBox .top {
		font-size: 30px;
		line-height: 28px;
	}
	.newsList .dateBox .bottom {
		font-size: 12px;
	}
}
.newsList .Img {
	width: 100%;
	border-radius: 10px;
	overflow: clip;
}
.newsList .Img img {
	width: 100%;
	height: 300px;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	       object-fit: cover;
}
.newsList .Txt {
	padding-top: 15px;
	padding-bottom: 15px;
	overflow: hidden;
	color: #656565;
}
.newsList .Txt .classTitle {
	color: #fff;
	background-color: #2a2929;
	display: inline-block;
	border-radius: 40px;
	padding: 5px 15px;
}
.newsList .Txt .title {
	padding-top: 10px;
	display: block;
	font-weight: 500;
	font-size: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
@media (max-width: 1180px) {
	.newsList .Txt .title {
		font-size: 16px;
	}
	.newsList .Txt {
	padding-top: 10px;
	padding-bottom: 10px;
	}
}
.newsList .Txt .text {
	padding-top: 5px;
	/*height: 60px;*/
	font-size: 15px;
}
@media (max-width: 1180px) {
	.newsList .Txt .text {
		font-size: 14px;
	}
}

.innerArea .albumBox {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.innerArea .albumNav {
	position: relative;
	padding: 0 60px;
}
.innerArea .arrowBox {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.mainArea{
            padding-top: 50px;
            padding-bottom: 50px;
        }

         @media (max-width:640px){
             .mainArea{
            padding-top: 10px;
            padding-bottom: 10px;
            }
        }