.news-wrap {
    margin: 1.4rem auto 0.9rem auto;
    padding: 0 1.05rem;
}

.news-top {
    display: flex;
    justify-content: space-between;
}

.news-left {}

.news-left-item {
    display: flex;
    align-items: center;
    padding: 0.22rem;
    width: 6.2rem;
    margin-bottom: 0.2rem;
    box-shadow: 0rem 0.04rem 0.16rem 0rem rgba(0, 0, 0, 0.15);
}

.news-left-item:last-of-type {
    margin-bottom: 0;
}

.news-left-img {
    width: 2.4rem;
    height: 1.8rem;
    flex-shrink: 0;
}

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

.news-left-des {
    flex: 1;
    margin-left: 0.22rem;
}

.news-left-text {
    font-size: 0.2rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 0.28rem;
}

.news-left-item:hover .news-left-text{
    color: #E50014;
}

.news-left-p {
    font-size: 0.14rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    line-height: 0.28rem;
    margin: 0.2rem 0;
}

.news-left-time {
    font-size: 0.12rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    text-align: right;
}

.news-right {}

.news-right-item {
    width: 5.76rem;
    height: 1.4rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #EEEEEE 100%);
    margin-bottom: 0.24rem;
    display: flex;
    align-items: center;
    padding: 0 0.44rem;
}

.news-right-item:last-of-type {
    margin-bottom: 0;
}

.news-right-time {
    padding-right: 0.36rem;

    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news-right-time span {
    font-size: 0.36rem;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #666666;
    line-height: 0.54rem;
}

.news-right-time p {
    font-size: 0.12rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #999999;
}

.news-right-des {
    flex: 1;
    padding-left: 0.29rem;
    border-left: 0.01rem solid #CCCCCC;
}

.news-right-text {
    font-size: 0.16rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}

.news-right-p {
    font-size: 0.12rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    margin-top: 0.18rem;
}

.news-right-item:hover .news-right-time span {
    color: #E50014;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0.3rem;
}

.news-item {
    width: 5.69rem;
    height: 0.56rem;
    opacity: 1;
    border-bottom: 0.01rem solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0.18rem;
    position: relative;
}

.news-text {
    font-size: 0.16rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    flex: 1;
}

.news-time {
    font-size: 0.12rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    flex-shrink: 0;
    margin-left: 0.1rem;
}

.news-item::after {
    content: '';
    width: 0.06rem;
    height: 0.06rem;
    background: #E50014;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.news-item:hover .news-text {
    color: #E50014;
}


@media only screen and (max-width: 1024px) {
    .news-wrap{
        margin: 0.8rem 0;
        padding: 0 0.25rem;
    }
    .news-top{
            flex-direction: column;
    }
    .news-left-item{
        width: 100%;
    }
    .news-right-item{
        width: 100%;
    }
    .news-left-text{
        font-size: 0.28rem;
            -webkit-line-clamp: 1;
        
    }
    .news-left-p,
    .news-left-time{
        font-size: 0.24rem;
    }
    
    .news-right-item{
        margin: 0.3rem 0;
    }
    
    .news-right-text{
        font-size: 0.26rem;
    }
    .news-right-p{
        font-size: 0.24rem;
    }
    .news-item{
        width: 100%;
        height: auto;
        padding: 0.2rem;
    }
    .news-text,
    .news-time{
        font-size: .24rem;
    }
    
    
    
}


