.container{
    padding-bottom: 30px;
    color: var(--main-text-color);
}
.line{

    background: #E6E6E6;
    margin-bottom: 50px;
}


.news-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}



.news-main .news-item{
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    padding: 24px;
    width: 340px;

    cursor: pointer;
    -moz-transition: all .15s ease-in;
    -webkit-transition: all .15s ease-in;
    -o-transition: all .15s ease-in;
    -ms-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.news-main .news-item .news-title{
    font-weight: 500;
    font-size: 22px;
}

.news-main .news-item .news-title a{
    color: var(--main-text-color);

    -moz-transition: all .15s ease-in;
    -webkit-transition: all .15s ease-in;
    -o-transition: all .15s ease-in;
    -ms-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.news-desc{

    align-self: center;
    margin-top:24px
}

.news-desc .news-tips{
    font-size: 16px;
    color: var(--main-text-color2);
    margin-top: 12px;

}
.news-img {
    width: 100%;
    overflow: hidden;
}
.news-img img{
    width: 100%;
/*    height: 280px;*/
    transition: transform 0.5s ease;
}

.news-desc .go-desc{
    width: 120px;
    height: 28px;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
    color: #1a1a1a;

    -moz-transition: all .15s ease-in;
    -webkit-transition: all .15s ease-in;
    -o-transition: all .15s ease-in;
    -ms-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.news-item:hover .news-img img{
    transform: scale(1.03);
}

.news-item:hover .news-title a{
    text-decoration:underline;
}

.news-item:hover .news-desc .go-desc{
    background: #1a1a1a;
    color: #fff;
}


