.news-content{
    width: 1400px;
    margin: 20px auto;
}

.news-content .news-crumbs{
    color: #1d2129;
    font-family: "OPPOSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 50px;
}

.news-content .news-introduce{
    background-color: #2603E9;
    width: 100%;
    aspect-ratio: 45 / 5;
    border-bottom: 28px solid #1D2129;
    color: #fff;
    padding: 20px;
    font-size: 36px;
    margin-top: 50px;
}

.news-content .news-main{
    width: 100%;
    display: flex;
    gap: 64px;
    margin-top: 60px;
}

.news-content .news-list{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.news-content .news-WeChat{
    background-color: #2603E9;
    width: 400px;
    aspect-ratio: 20/9;
    height: fit-content;
    padding: 20px;
    display: flex;
}

.news-WeChat-info{
    flex: 1;
    color: #ffffff;
    text-align: center;
    font-family: "OPPOSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 15px 0;
}

.news-WeChat-icon{
    width: 24px;
    height: 24px;
    margin: 10px auto;
}

.news-WeChat-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-WeChat-qrCode{
    width: 140px;
    aspect-ratio: 1/1;
    background-color: #fff;
}

.news-WeChat-qrCode img{
    width: 100%;
    height: 100%;
}

.news-item{
    width: 100%;
    display: flex;
    gap: 24px;
    margin: 0px 0;
    padding-bottom: 50px;
    border-bottom: 1px solid  #E5E6EB;
    text-decoration: none;
}

.news-item-img{
    width: 320px;
    aspect-ratio: 8/5;
    /* background-color: #e4e4e4; */
}

.news-item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-info{
    flex: 1;
}

.news-item-title{
    align-self: stretch;
    color: #1d2129;
    font-family: "OPPOSans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.news-item-brief-introduction{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    color: #4e5969;
    text-overflow: ellipsis;
    font-family: "OPPOSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 24px 0;
}

.news-item-data{
    color: #4e5969;
    font-family: "OPPOSans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}


/* 768以下 */
@media (max-width: 768px) {
    .news-content{
        width: 100%;
    }

    .news-content .news-main{
        flex-direction: column;
    }

    .news-content .news-WeChat{
        width: 100%;
        align-items: center;
    }

    .news-item{
        width: calc(100% - 20px);
        margin: 0 auto;
        flex-direction: column;
    }

    .news-item-img{
        width: 100%;
    }

    .news-item-info{
        flex: initial;
        width: calc(100% - 20px);
    }

    .news-item-title{
        font-size: 4.5vw;
    }
}