@charset 'UTF-8';

.category-row {
    margin-bottom: 1rem;
}

.category-row>div {
    padding: 0;
}

.category-row .category-link {
    background-color: #fff;
    border: none;
    border: 1px #E0E0E0 solid;
    margin: 0 0.5rem;
    border-radius: 50px;
    position: relative;
    font-weight: 400;
    letter-spacing: 2px;
}

.category-row .category-link:hover {
    background: #0066B5;
    transition: all 0.3s ease-in;
}

.category-row .category-link a,
.category-row .category-link:hover a {
    color: #575757;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 10px;
    display: block;
    min-width: 110px;
}

.category-row .category-link:hover a {
    color: #fff;
}

.category-row .category-link.active a {
    color: #fff;
}

.category-row .category-link.active {
    background-color: #0066B5;
    position: relative;
    border-radius: 50px;
    margin: 0 0.5rem;
}


img {
    max-width: 100%;
}


.news-list-wrapper {
    /* overflow: hidden; */
    /* position: relative; */
    background-color: #fff;
}

.news-list-wrapper .wrapper {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 105px;
}

.news-list-wrapper .header {
    flex: 0 0 260px;
}

@media (max-width:1399px) {
    .news-list-wrapper .wrapper {
        padding-top: 65px;
        padding-bottom: 55px;
    }
}

@media (max-width: 991px) {
    .news-list-wrapper .wrapper {
        flex-direction: column;
    }

    .news-list-wrapper .header {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 1rem;
    }
}

.news-list-wrapper .news-list {
    width: 100%;
}

.news-list-wrapper .news-list .item {
    position: relative;
    margin: 0 auto;
    padding: 10px 0;
    transition: 0.2s all linear;
    border-bottom: 1px #E5E5E5 solid;
}

.news-list-wrapper .news-list .item:hover {
    background-color: #f3faff;
}

.news-list-wrapper .news-list .item:last-child {
    border: none;
    margin: 0;
}

.news-list-wrapper .news-list .item .info .date {
    color: #0066B5;
    transition: 0.2s all linear;
    margin-right: 1rem;
}


.news-list-wrapper .news-list .item .info .tag {
    border-color: #E79600;
    border-width: 1px;
    border-style: solid;
    color: #E79600;
    background-color: #fff;
    padding: 1px 5px;
    font-size: 15px;
    border-radius: 5px;
    margin-right: 1rem;
    min-width: 90px;
    text-align: center;
}

.news-list-wrapper .news-list .item .info .tag.anniv {
    border-color: #D43807;
    border-width: 1px;
    border-style: solid;
    color: #D43807;
}

.news-list-wrapper .news-list .item .info .tag.system{
    border-color: #338DD3;
    border-width: 1px;
    border-style: solid;
    color: #338DD3;
}

.news-list-wrapper .news-list .item .title {
    margin: 10px 0;
    display: flex;
    align-items: center;
}


.news-list-wrapper .news-list .item .title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    color: #6F6F6F;
    text-decoration: none;
    transition: 0.2s all linear;
    letter-spacing: 2px;
}

.news-list-wrapper .news-list .item:hover .title a {
    color: #0066B5;
}

.news-detail-wrapper {
    background-color: #fff;
}

.news-detail-wrapper .news-detail .page-title {
    width: 100%;
    position: relative;
    margin: 0 auto;
    margin-bottom: 2rem;
    padding: 10px 0;
    transition: 0.2s all linear;
    border-bottom: 1px #E5E5E5 solid;
}


.news-detail-wrapper .news-detail .info .date {
    color: #0066B5;
    transition: 0.2s all linear;
    margin-right: 1rem;
}


.news-detail-wrapper .news-detail .info .tag {
    border-color: #E79600;
    border-width: 1px;
    border-style: solid;
    color: #E79600;
    background-color: #fff;
    padding: 1px 5px;
    font-size: 15px;
    border-radius: 5px;
    margin-right: 1rem;
    min-width: 90px;
    text-align: center;
}

.news-detail-wrapper .news-detail .info .tag.anniv {
    border-color: #D43807;
    border-width: 1px;
    border-style: solid;
    color: #D43807;
}

.news-detail-wrapper .news-detail .info .tag.system {
    border-color: #338DD3;
    border-width: 1px;
    border-style: solid;
    color: #338DD3;
}

.news-detail-wrapper .news-detail .title {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    font-size: 20px;
    letter-spacing: 1px;
    color: #636363;
    border-bottom: burlywood;
}