.page-box {
    display: inline-block;
    width: 100%;
    margin: 40px 0px 50px;
    /* padding: 20px; */
    background-color: #fff;
}
.kcheading {
    display: flex;
    justify-content: space-between;
}
.kcheading .ux-h1 {
    max-width: calc(100% - 50px);
}
.btn_shear42 {
    display: inline-block;
    width: 42px;
    height: 42px;
    background: url(/pages/header/images/btn_share_42x42.png) no-repeat;
    font-size: 0;
    vertical-align: top;
}


.board-detail {
    margin: 25px 0 20px;
}
@media (min-width: 1060px) {
    .board-detail {
        margin-top: 32px;
    }
}
.board-detail__head {
    border-top: 2px solid #192547;
    padding: 20px 0;
    border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 1060px) {
    .board-detail__head {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px 0;
    }
}
.board-detail__title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: normal;
    color: #000;
    line-height: 1.5;
    margin-top: 0;
}
@media (min-width:1060px) {
    .board-detail__title {
        max-width: 50%;
    }
}
.board-detail__category {
    font-size: 15px;
    font-weight: normal;
    color: #192547;
    line-height: 1.5;
}
.board-detail__date {
    font-size: 15px;
    font-weight: normal;
    color: #252525;
    line-height: 1.5;
}
.board-detail__date:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1.2rem;
    vertical-align: middle;
    margin: 0 10px 0 10px;
    background: #d9d9d9;
}
@media (min-width: 1060px) {
    .board-detail__date:before {
        height: 15px;
        margin: 0 15px 0 15px;
    }
}
.board-detail__content {
    padding: 30px 0;
    margin-bottom: 30px;
    /* border-top: 1px solid #d9d9d9; */
    border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 1060px) {
    .board-detail__content {
        padding: 45px 0;
        margin-bottom: 45px;
    }
}











.btns_view_bottom {
    margin: 40px 0;
}
.btns_view_bottom .btns_recommend {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}
.btns_view_bottom .btns_recommend .link_cmt {
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid #00000014;
    display: flex;
    align-items: center;
}
.btns_view_bottom .btns_recommend .link_cmt .ico_recommend, .btns_view_bottom .btns_recommend .link_cmt .ico_unrecommend {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    background-color: #000;
    mask: url(/pages/header/images/icon--good.svg) 0 0 no-repeat;
    -webkit-mask: url(/pages/header/images/icon--good.svg) 0 0 no-repeat;
    opacity: .24;
    line-height: 0;
    vertical-align: top;
}
.ico_unrecommend {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}
/* .article_btns_view_bottom {
    margin: -8px 0 40px;
    text-align: center;
}
.article_btns_view_bottom .link_cmt {
    margin-top: 20px;
    padding: 0 20px;
    height: 48px;
    line-height: 46px;
    border-radius: 24px;
}
.article_btns_view_bottom .link_cmt .ico_recommend, .article_btns_view_bottom .link_cmt .ico_unrecommend {
    display: inline-block;
    position: relative;
    margin: 11px 4px 0 0;
    width: 24px;
    height: 24px;
    background-color: #000;
    mask: url(/pages/header/images/icon--good.svg) 0 0 no-repeat;
    -webkit-mask: url(/pages/header/images/icon--good.svg) 0 0 no-repeat;
    opacity: .24;
    line-height: 0;
    text-indent: -9999px;
    vertical-align: top;
} */













[__news-list] .news_box {
    margin-top: 50px;
}
[__news-list] .news_list {
    margin-top: 20px;
    display: grid;
    gap: 30px 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width:1060px) {
    [__news-list] .news_list {
        display: grid;
        gap: 30px 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* new */
[_new-news-items].new_news_item {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    
    border: 1px solid #ddd;

    min-height: 150px;
    position: relative;
}
[_new-news-items].new_news_item:hover {
    box-shadow: 0 0 10px #0000001a;
}
[_new-news-items] .new_news_link {
    display: inline-block;
    padding: 20px;
    width: 100%;
    height: 100%;
    position: relative;
    background: #000000;
}
[_new-news-items] .new_news_img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;

    opacity: .3;
    transition: all 0.3s;
}
[_new-news-items].new_news_item:hover .new_news_img {
    background-size: auto 110% !important;
}
[_new-news-items] .new_news_info {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
[_new-news-items] .new_news_info * {
    color: #fff;
    /* text-shadow: 3px 4px 5px #fff; */
}
[_new-news-items] ._info_tag {
    width: 100%;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
}
[_new-news-items] ._info_tag span {
    width: fit-content;
    padding: 0 5px;
    background-color: rgb(255 255 255 / 1);
    color: #666;
    font-size: 10px;
    border-radius: 3px;
    margin-right: 5px;
}
[_new-news-items] ._info_txt_group {

}
[_new-news-items] ._info_txt {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 700;
    width: 100%;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
}
[_new-news-items] ._info_desc {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 400;

    width: 100%;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
}
[_new-news-items] ._info_desc img {
    display: none;
}
[_new-news-items] .hr {
    width: 100%;
    height: 1px;
    border-color: #e6e6e6;
}
[_new-news-items] ._info_info {
    text-decoration: none;
    margin-top: 5px;
    display: flex;
    align-items: center;
    font-size: 10px;
    gap: 10px;
}
[_new-news-items] ._info_info_innr {
    display: flex;
    align-items: center;
    gap: 3px;
}
/* // new */
[__news-list] .news_item {
    width: 100%;
    
}
[__news-list] .news_link {
    display: flex;
    flex-direction: column;

    height: auto !important;
    border-radius: 10px;
    box-shadow: 0 0 10px #0000001a;
    overflow: hidden;

    width: 100%;
}
[__news-list] .news_link .new_img {
    position: relative;
    height: 130px;
    overflow: hidden;
    background: var(--color-back);
}
@media (max-width:1060px) {
    [__news-list] .news_link .new_img {
        position: relative;
        height: 130px;
        overflow: hidden;
        background: var(--color-back);
    }
}
[__news-list] .news_link .new_img img {
    width: 100%;
    height: 100%;
    vertical-align: top;
    transition: all .4s;
    object-fit: cover;
}
[__news-list] .news_link .new_info {
    min-height: 80px;
    padding: 10px 10px;
    font-size: 13px;
    line-height: 1.56;
}
[__news-list] .news_link .new_info__txt {
    width: 100%;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
}