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