@charset 'UTF-8';

.news-detail .title-wrapper {
    margin-bottom: 20px;
}

.news-detail .title-wrapper .news-title {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 8px;
}

.news-detail .title-wrapper .date {
    color: #797979;
    letter-spacing: 0;
}

.news-detail .image-block .intro {
    text-align: center;
    font-size: 14px;
    color: #5B5B5B;
}

.hot-news-list-wrapper .header {
    position: relative;
    padding-bottom: 36px;
}

.hot-news-list-wrapper .header:before {
    position: absolute;
    content: "";
    width: 7px;
    height: 30px;
    background-color: #FFC107;
    top: 2px;
    left: 0;
}

.hot-news-list-wrapper .header .text {
    font-size: 24px;
    font-weight: bold;
    padding-left: 20px;
}

.hot-news-list-wrapper .list .item {
    display: block;
    margin-bottom: 24px;
    text-decoration: none;
}
.hot-news-list-wrapper .list .item:hover .name{
    color : #DD7C07;
}

.hot-news-list-wrapper .list .item .news-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 12px;
}

.hot-news-list-wrapper .list .item .news-img:before {
    content: "";
    display: block;
    padding-bottom: 75%;
}

.hot-news-list-wrapper .list .item .name {
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    font-size: 18px;
}

.hot-news-list-wrapper .list .item .date {
    font-size: 14px;
    color: #797979;
    margin-bottom: 8px;
}

.hot-news-list-wrapper .list .item .detail {
    line-height: 2;
    color: #484848;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
}
.hot-news-list-wrapper .list .item {
    border-bottom: 1px dashed var(--primary-color);
}

.hot-news-list-wrapper .list .item.with-img .detail {
    -webkit-line-clamp: 3;
}