<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

#main{
    padding: 0px;
}
.main-wrap{
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}
.main-layout{
    display: flex;
    justify-content: space-between;
}
.main-right{
    width: calc(100% - 200px);
    height: auto;
    box-sizing: border-box;
    padding-right: 20px;
    background-color: #FFFFFF;
}
.crumbs &gt; div{
    justify-content: flex-end;
}
.list-tit{
    font-size: 24px;
    color: #ba0500;
    box-sizing: border-box;
    padding-left: 20px;
    font-weight: bold;
    margin-top: -20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.list-tit i{
    display: inline-block;
    width: calc(100% - 150px);
    height: 1px;
    background-color: rgba(229, 229, 229, .3);
}
.news-list{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding-left: 20px;
    margin-top: 15px;
}
.news-list li{
    width: 100%;
    height: 53px;
    border-bottom: 1px solid rgba(229, 229, 229, .3);
    box-sizing: border-box;
    position: relative;
    padding: 0 23px;
}
.news-list li:before{
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #333333;
    background-color: #FFFFFF;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.news-list li a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-list li a p{
    width: calc(100% - 100px);
    font-size: 16px;
    color: #333333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.news-list li:hover {
    background-color: #ba0500;
}
.news-list li:hover:before{
    border: 1px solid #FFFFFF;
    background-color: #ba0500;
}
.news-list li:hover a *{
    color: #FFFFFF;
}
.news-list li:hover a p{
    font-weight: bold;
}

@media screen and (max-width: 996px) {
    .main-layout{
        flex-direction: column;
    }
    .main-right{
        width: 100%;
        margin-top: 20px;
    }
    .main-wrap{
        padding: 0px;
    }
}
@media screen and (max-width: 768px) {
    .main-wrap{
        padding: 0px 10px;
    }
}</pre></body></html>