<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*列表通用 index、news*/

.news-list .pic:before {
    display: none;
}

.news-list.type4 .item .box {
    transition: all .2s;
    border: solid 1px #D9D9D9;
    background: #fff;
}

.news-list .item .box {
    transition: all .2s;
    top: 0;
}

.news-list.type4 .item .box:hover {
    top: -10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16)
}

.news-list .item .pic {
    position: relative;
    box-sizing: border-box;
}

.news-list.type4 .item .box:hover .pic img {
    opacity: 0.7;
}

.news-list.type4 .item .box .pic:before {
    content: '';
    background: rgba(0, 0, 0, 0.3);
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
}

.news-list.type4 .item .box:hover .pic:before {
    opacity: 1;
}

.news-list.type4 .item .date, .news-date {
    border-radius: 5px;
    color: #404040;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    background: rgb(221, 221, 221);
    background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
    background: linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dddddd', GradientType=1);
    border: 1px solid #404040;
}

.news-list.type4 .item:hover .date, .news-date {
    border-radius: 5px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    background: rgb(157, 32, 38);
    background: -moz-linear-gradient(bottom, rgba(200, 131, 134, 1) 0%, rgba(157, 32, 38, 1) 50%);
    background: -webkit-linear-gradient(bottom, rgba(200, 131, 134, 1) 0%, rgba(157, 32, 38, 1) 50%);
    background: linear-gradient(bottom, rgba(200, 131, 134, 1) 0%, rgba(157, 32, 38, 1) 50%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#e60a36', endColorstr='#f17d29', GradientType=1);
    border: none;
}

.news-list.type4 .item .date {
    display: flex;
    flex-wrap: wrap;
}

.news-list .item .name {
    color: #404040;
}

.news-list .item .description {
    color: #8C8C8C;
}

.news-list .btn.more {
    z-index: 5;
    overflow-x: hidden;
    color: #fff;
}

.news-list .btn.more:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    right: 0;
    background: #9D2026;
    z-index: -1;
    transition: all .3s ease;
}

.news-list.type4 .txt {
    padding: 0 10px 20px 10px;
}

.news-list .box:hover .btn.more:before {
    opacity: 0;
}

@media screen and (max-width: 1000px) {
    .news-list.type4 .item .box:hover {
        top: 0;
    }
}

/*!列表通用 index、news*/

/*瀑布流*/

.masonry-list .item:nth-child(n), .has-side .masonry-list .item:nth-child(n) {
    clear: none!important;
}

/*!瀑布流*/

/*------------ detail-main ------------*/

.news-header {
    display: flex;
    flex-wrap: wrap;
}

.news-date {
    box-sizing: border-box;
    font-size: 35px;
    line-height: 0.5;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    padding-top: 13px;
    border-radius: 3px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    margin: 0;
}

.news-date .day {
    display: block;
    width: 100%;
}

.news-date .month {
    order: 2;
}

.news-date .month:before {
    content: '.'
}

.news-date .month, .news-date .years {
    font-size: 12px;
    line-height: inherit;
    margin-top: 0;
    letter-spacing: 0;
    font-weight: 600;
}

.share_box {
    text-align: left;
    display: block;
    order: 2;
    width: 100%;
}

.news-title {
    font-size: 20px;
    font-weight: normal;
    margin: 10px 0;
    display: block;
    width: 100%;
    color: #9D2026;
}

/*------------ rwd ------------*/</pre></body></html>