@charset "UTF-8";
/*新闻列表*/
.news-list ul{
}
.news-list ul li{
    position: relative;
    margin: 30px 0;
    border: 1px solid #EDEDED;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1); /* 右下角阴影 */
}
.news-item{
    display: grid;
    grid-template-columns: 30% 70%;
}
.news-item .thumb{
    height: 220px;
}
.news-item .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-item .text{
    display: grid;
    align-items: center;
    justify-content: left;
    padding:0 60px;
}
.news-item .text p{
    padding: 5px 0;
}
.news-item .text p:nth-child(1){
    font-size: 16px;
    font-weight: bold;
}
.news-item .text p:nth-child(1):hover{
    color: var(--blue);
}
.news-item .text p:nth-child(2){
    font-size: 12px;
    color: #CCC;
}
.news-item .text p:nth-child(3){
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 控制显示的行数 */
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 576px) {
    .news-list ul li{
        margin: 10px 0;
        padding: 10px;
    }
    .news-item .thumb{
        width: 40%;
    }
    .news-item .text{
        width: 60%;
        padding: 0 10px;
    }
    .news-item .text p{
        margin-top: 5px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .news-item .text p:first-child{
        font-size: 16px;
    }
    .news-item .text p:first-child{
        font-size: 12px;
        font-weight: bold;
    }
}
/*新闻标题*/
.news-title{
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
}
.news-title p:first-child{
    font-size: 20px;
    font-weight: bold;
}
.news-title p:last-child{
    margin-top: 15px;
}
@media (max-width: 576px) {
    .news-title{
        padding-bottom: 10px;
    }
    .news-title p:first-child{
        font-size: 1.6rem;
    }
}
.news-title p span{
    padding: 0 10px;
}



