@charset "utf-8";
.current_category_wrap {
		margin: 0 0 30px;
		display: flex;
}
.current_category {
		background: #3DAE35;
		color: #fff;
		font-size: 14px;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 28px;
		border-radius: 60px;
		padding: 0 20px;
}
.news_detail_date {
		margin-bottom: 10px;
		font-size: 15px;
		letter-spacing: 0
}
.news_detail_title {
		font-size: 24px;
		font-weight: 700;
		line-height: 1.6;
		margin: 0 0 20px;
}
.share_flex_wrap {
		display: flex;
		justify-content: flex-end;
		margin: 0 0 18px
}
.share_flex {
		display: flex;
		align-items: center;
}
.share_btn {
		width: 120px;
		margin-left: 10px;
		font-size: 14px;
}
.share_btn a {
		color: #fff;
		display: flex;
		align-items: center;
		height: 28px;
		text-decoration: none;
		padding-left: 32px;
		border-radius: 6px;
		position: relative;
		transition: background 0.3s;
}
.share_btn a::before {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 7.5px);
		left: 9px;
		width: 15px;
		height: 15px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 15px;
}
.share_btn a span {
		transform: translateY(-1px)
}
.share_btn.share_x a {
		background: #000;
		border: 1px solid #000;
}
.share_btn.share_x a::before {
		background-image: url("../images/icon_x_wht.png")
}
.share_btn.share_fb a {
		background: #1A77F2;
		border: 1px solid #1A77F2;
}
.share_btn.share_fb a::before {
		background-image: url("../images/icon_fb_wht.png")
}
@media (hover: hover) {
		.share_btn.share_x a:hover {
				background: #fff;
				color: #000;
		}
		.share_btn.share_fb a:hover {
				background: #fff;
				color: #1A77F2;
		}
		.share_btn.share_x a:hover::before {
				background-image: url("../images/icon_x_blk.png")
		}
		.share_btn.share_fb a:hover::before {
				background-image: url("../images/icon_fb_blu.png")
		}
}
.news_detail_cont {
		padding: 40px 0;
		border-top: 1px solid #B4B4B4;
		border-bottom: 1px solid #B4B4B4;
		margin: 0 0 80px
}
.news_detail_cont p {
		font-size: 16px;
		line-height: 1.8;
		margin: 0 0 1em
}
.news_detail_cont a {
		color: #3DAE35;
		text-decoration: underline;
}
.news_detail_cont .linkBtn a {
		text-decoration: none;
}
@media (hover: hover) {
		.news_detail_cont a:hover {
				color: #3DAE35;
				text-decoration: none;
		}
}
.news_detail_cont .hrCenter {
		padding: 30px 0
}
.single_page_nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
}
.page_prev a, .page_next a {
		color: #3DAE35;
		text-decoration: none;
		position: relative;
		font-weight: 500;
}
.page_prev a {
		padding-left: 40px;
}
.page_next a {
		padding-right: 40px;
}
.page_prev a::before, .page_prev a::after, .page_next a::before, .page_next a::after {
		content: '';
		display: block;
		position: absolute;
}
.page_prev a::before, .page_next a::before {
		width: 30px;
		height: 30px;
		top: calc(50% - 15px);
		border-radius: 50%;
		background: #3DAE35;
		transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
		.page_prev a:hover::before, .page_next a:hover::before {
				transform: scale(1.2)
		}
}
.page_prev a::before {
		left: 0;
}
.page_next a::before {
		right: 0
}
.page_prev a::after, .page_next a::after {
		width: 8px;
		height: 8px;
		top: calc(50% - 5px);
}
.page_prev a::after {
		border-top: 2px solid #fff;
		border-left: 2px solid #fff;
		left: 12px;
		transform: rotate(-45deg);
}
.page_next a::after {
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		right: 12px;
		transform: rotate(45deg);
}
.blankNav {
		width: 80px;
		height: 30px;
}
@media(max-width: 767px) {
		.single_page_nav {
				display: block;
				position: relative;
		}
		.single_page_nav .page_prev {
				position: absolute;
				top: -60px;
				left: 0;
		}
		.single_page_nav .page_next {
				position: absolute;
				top: -60px;
				right: 0;
		}
		.single_page_nav .linkBtn {
				margin: 90px auto 0;
		}
}