.news-list{
    width: 100%;
}
.news-item{
    width: 100%;
    height: 100px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: rgba(0,0,0,0.05);
    transform: translateX(0);
    transition: all 0.3s;
    margin-bottom: 10px;
}
.news-date{
    width: 100px;
    height: auto;
    flex: none;
}
.news-date p{
    display: flex;
    justify-content: center;
    color: rgba(36, 73, 185, 0.8);
}
.news-date p:first-child{
    font-size: 32px;
}
.news-date p:last-child{
    font-size: 18px;
}
.news-content{
    width: 100%;
    height: 100%;
}
.news-title{
    /*font-family: "新宋体";*/
    font-size: 20px;
    margin-bottom: 8px;
    /*font-weight: bold;*/
}
.news-profile{
    height: 40px;
    font-size: 15px;
    color: rgba(0,0,0,0.8);
}
.news-item:hover{
    background-color: rgba(36, 73, 185, 0.7);
    border-radius: 40px 0 40px 0;
    transform: translateX(30px);
}
.news-item:hover .news-title,
.news-item:hover .news-profile,
.news-item:hover .news-date p{
    color: #ffffff;
}
.news-item:hover .news-profile{
    color: rgba(255,255,255,0.9);
}

@media (max-width: 800px) {
    .news-item{
        padding: 10px 20px;
        flex-direction: column-reverse;
        align-items: flex-start;
        border-radius: 40px 0 40px 0;
    }
    .news-date{
        width: 80px !important;
        height: 16px;
        display: flex;
        flex-direction: row-reverse;
    }
    .news-date p{
        font-size: 14px !important;
    }
    .news-date p:first-child:before{
        content: "-";
        display: inline-block;
        width: 6px;
        height: 20px;
        font-size: 14px;
    }
    .news-title{
        font-size: 15px;
    }
    .news-profile{
        height: 36px;
        font-size: 13px;
    }
    .news-item:hover{
        transform: none;
    }
}