@media screen and (max-width: 800px) {

    .newsBg {
        background-color: #f6f6f6;
        padding: 40px 15px;
    }
    
    .newsTip {
        max-width: 1100px;
        margin: 0 auto;
        font-size: 16px;
        margin: 20px 0;
        color: #333;
    }
    
    .newsItem {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        background-color: #ffffff;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
        margin-bottom: 20px;
        position: relative;
        border-radius: 12px;
        border: 1px solid #EEEEEE;
        cursor: pointer;
    }
    .newsItem:last-child{
        margin-bottom: 0;
    }
    
    .newsItem:hover {
        box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.04);
    }
    
    .newsItem:hover .newsTitle {
        color: #007aff;
    }
    
    .newsLeft {
        width: 50%;
    }
    
    .newsTitle {
        font-size: 14px;
        color: #333;
        font-weight: 700;
        overflow: hidden;
        white-space: wrap;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    
    .newsDesc {
        font-size: 14px;
        color: #333;
        line-height: 30px;
        text-align: justify;
        margin-top: 15px;
        margin-bottom: 15px;
        display: -webkit-box;
        display: none;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        height: 62px;
    }
    
    .newsTag {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .tagItem {
        padding: 4px 8px;
        margin-right: 5px;
        margin-top: 5px;
        background: #F5F6F9;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 400;
        color: #333333;
    }
    
    .tagItemDate {
        margin-right: 5px;
        margin-top: 5px;
        font-size: 12px;
        font-weight: 400;
        color: #333333;
        line-height: 28px;
    }
    
    .newsImg {
        width: 130px;
        height: 80px;
    }
    
    .newsImg img {
        width: 100%;
        height: 100%;
    }
    
    .newsDescPhone {
        font-size: 12px;
    }
}