@charset "UTF-8";

.news-box {
    padding: 50px 0 100px;
}
.news-wrap {
    display: flex;
}
.news-wrap .news-type {
    width: 234px;
    background: #ffffff;
}
.year-filter-pc .news-type {
    background: none;
}
.year-filter-pc {
    margin-bottom: 30px;
}
.year-filter-pc .news-list {
    display: flex;
    justify-content: flex-end;
}
.year-filter-pc .year-sel {
    width: 200px
}
.year-filter-m {
    display: none;
    margin-bottom: 20px;
}
.year-filter-pc .select2-container, .year-filter-m .select2-container {
    width: 100% !important;
}
@media (max-width: 750px) {
    .news-wrap.year-filter-pc {
        display: none;
    }
    .year-filter-m {
        display: block;
    }

    .year-filter-m .select2-container--default .select2-selection--single {
        height: 36px;
    }
    .year-filter-m .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 36px;
    }
    .year-filter-m .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 6px;
    }
}
.news-wrap .news-type .news-type-item {
    display: block;
    position: relative;
    height: 68px;
    line-height: 68px;
    text-align: center;
    color: #333333;
    white-space: nowrap;
    border-bottom: 1px solid #F2F2F2;
}
.news-wrap .news-type .news-type-item:after {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: ' ';
    width: 0;
    height: 0;
    border: 10px solid transparent;
}
.news-wrap .news-type .news-type-item.active,
.news-wrap .news-type .news-type-item:hover {
    background: #0039C8;
    color: #ffffff;
}
.news-wrap .news-type .news-type-item.active:after,
.news-wrap .news-type .news-type-item:hover:after {
    border-left-color: #0039C8;
}

.news-wrap .news-list {
    margin-left: 30px;
    flex: 1;
    overflow: hidden;
}
.news-wrap .news-list .list li {
    display: block;
}
.news-wrap .news-list .list li a {
    margin-bottom: 20px;
}
.news-wrap .news-list .list li a {
    display: flex;
}

.news-wrap .news-list .list li .img-box {
    flex: 0 0 20%;
    margin-right: 20px;
}
.news-wrap .news-list .list li .img-box:before {
    padding-top: 67%;
}
.news-wrap .news-list .list li .text {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-wrap .news-list .list li .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-wrap .news-list .list li .title h3 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #333333;
}
.news-wrap .news-list .list li .title span {
    color: #999999;
    padding-left: 20px;
    white-space: nowrap;
}
.news-wrap .news-list .list li .desc {
    color: #333333;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news-wrap .news-list .list li a:hover h3 {
    color: #0039C8;
}

@media (max-width: 1024px) {
    .news-box {
        padding: 20px 0 50px
    }
    .news-wrap {
        display: block;
    }
    .news-wrap .news-type {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
    }
    .news-wrap .news-type .news-type-item {
        height: 36px;
        line-height: 36px;
        padding: 0 10px;
        display: inline-block;
        flex: 1;
    }
    .news-wrap .news-type .news-type-item:after {
        display: none;
    }
    .news-wrap .news-list {
        margin-left: 0;
    }
}

.news-wrap .news-list .empty {
    padding: 100px 0;
    text-align: center;
    color: #999;
}