<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.news-list {
    max-width: 1280px;
    margin: 0 auto;
}

.news-list .item {
    width: 25%;
    padding: 0 10px;
}

.news-list .item:nth-child(4n+1) {
    clear: left;
}

.news-list .box {
    max-width: 260px;
    margin: 0 auto 30px;
    text-align: center;
    position: relative;
}
.news-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;   
}
.news-list .pic {
    position: relative;
    overflow: hidden;
    max-width: 250px;
    margin: 0 auto 10px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 3px  transparent;
    padding: 4px;
    background: #fbfbfb;
}
.news-list .pic:after{
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background-image: linear-gradient(to right, #00C9FF 0%, #0e214d 56%, #00C9FF 100%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: auto;
    transform: rotate(180deg);
    z-index: 1;
    transition: all .4s ease-in-out;
}
.news-list .box:hover .pic:after{
    opacity: 1;
    transform: rotate(0);
    width: 100%;
}

.news-list .box img {
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-radius: 0px;
    display: block;
    z-index: 2;
    border-radius: 50%;
}



.news-list .name {
    color: #666666;
    font-size: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 43px;
    margin-top: 15px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-list a:hover .name {
    color: #333233;
}

.news-list .date,
.news-header .date {
    display: block;
    border-width: 1px 0;
    width: 104px;
    margin: 5px auto 15px;
    color: #999999;
    background: #f0f0f0;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1.5px;
    width: 120px;
    border-radius: 3px;
    font-family: 'Poppins', serif;
}



.news-list .box:hover .date {
    background: #333333;
    color: #fff;
}
.news-list .date {
    background: #f0f0f0;
    z-index: 20;
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    width: 120px;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    transition: all .3s ease-in-out;
}

.news-header .date{
    background: #333333;
    color: #fff;
}
.news-header {
    text-align: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;
}

.news-header .title {
    max-width: 1045px;
    margin: 10px auto 10px;
    color: #3c3d3d;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    display: inline-block;
}

.news-detail {
    border-bottom: 1px dashed #ccc;
    padding: 25px 0;
}

.news-detail .editor {
    max-width: 1045px;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {
    .news-list {
        max-width: 700px;
    }
    .news-list .item {
        width: 50%;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 767px) {
    .news-detail {
        padding: 25px 0;
    }
}

@media screen and (max-width: 440px) {
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}
</pre></body></html>