@charset "UTF-8";
/*新闻列表*/
.news-list ul{
    margin: -1.5rem 0;
}
.news-list ul li{
    padding: 3rem 0;
    border-bottom: solid 1px #DDD;
}
.news-list ul li:last-child{
    border-bottom: none;
}
.news-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.news-item .thumb{
    width: calc(33.333% - 1.5rem);
}
.news-item .text{
    width: calc(66.666% - 1.5rem);
}
.news-item .text p{
    margin-top: 2rem;
}
.news-item .text p:first-child{
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--blue);
}
.news-item .text p:last-child{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-item .text p:last-child button{
    line-height: 30px;
    padding: 0rem 2rem;
    border: solid 1px var(--blue);
    border-radius: 3rem;
    color: var(--blue);
}
.news-item .text p:last-child span{
    font-size: 1.2rem;
    color: #b8bac4;
}
.news-item .text p:last-child button:hover{
    background: var(--blue);
    color: #FFF;
}
@media (max-width: 576px) {
    .news-item .thumb,
    .news-item .text{
        width: 100%;
    }
    .news-item .text p:last-child a{
        padding: 0.5rem 1.5rem;
    }
}
/*新闻标题*/
.news-title{
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
}
.news-title p:first-child{
    font-size: 2.4rem;
    font-weight: 500;
}
.news-title p:last-child{
    margin-top: 1rem;
}
@media (max-width: 576px) {
    .news-title{
        padding-bottom: 1rem;
    }
    .news-title p:first-child{
        font-size: 1.6rem;
    }
}
