@charset "UTF-8";

.news-list-wrapper .news-list {
    flex: 1;
    padding-right: 8px;
}

@media (max-width: 991px) {
    .news-list-wrapper .news-list {
        width: 100%;
    }
}

.news-list-wrapper .news-list .item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 18px 10px;
    border-bottom: dashed 1px #8EB7C4;
}

.news-list-wrapper .news-list .item:hover {
    background-color: #eef6f8;
    transition: all 0.3s ease-in-out;
}

.news-list-wrapper .news-list .item:first-child {
    border-top: dashed 1px #8EB7C4;
}

.news-list-wrapper .news-list .item i {
    color: #548691;
}

.news-list-wrapper .news-list .item .date {
    color: #8A8A8A;
    padding-left: 4px;
    padding-right: 14px;
}

.news-list-wrapper .news-list .item .text {
    flex: 1;
    padding-right: 8px;
}

.news-list-wrapper .news-list .item .text a {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-height: 30px;
    overflow: hidden;
}

.news-list-wrapper .news-list .item .arrow {
    width: 30px;
    height: 15px;
    background-position: center;
    background-image: url('/assets/template/c01737d8d1d5c922acd9e8fadb78c841/img/arrow.svg');
    background-repeat: no-repeat;
    position: relative;
    left: -10px;
}

.news-list-wrapper .news-list .item:hover .arrow {
    left: 0;
    transition: all 0.3s ease-in-out;
}