.container .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.container .content .left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
}


.news-us {
    display: flex;
    flex-direction: column;
    margin-bottom: 2vw;
}
.news-us .news-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 4%;
    padding-bottom: 1%;
}
.news-us .news-line img{
    width: 20px;
    height: 41px;
    margin-right: 20px;
}

.news-us .news-line .news-title {
    font-size: 26px;
    font-weight: bold;
    color: black;
    margin-bottom: 5px;
}

.news-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.news-detail{
    display: flex;
    flex-direction: column;
    width: 50%;
    line-height: 36px;
    justify-content: space-between;
}
.news-body .about-item {
    width: 40%;
    /* height: auto; */
    max-height: 220px;
    min-height: 100px;
    object-fit: contain;
}
.news-body .news-school {
    display: flex;
    flex-direction: column;
}

.news-body .news-detail .bg-title {
    background: #94602D linear-gradient(141deg, #94602D 0%, #D8C292 100%);
    border-radius: 6px 6px 6px 6px;
    padding: 20px 30px;
    color: white;
    margin-bottom: 5%;
    margin-top: 50px;
}
.news-detail span {
    /*color: #01437D;*/
    /*font-weight: bold;*/
}
.news-school .news-detail {
    width: 100%;
    display: flex;
    flex-direction: column;

}
.news-school .news-detail .item {
    margin-bottom: 20px;
}
.news-school .about-2-item {
    width: 100%;
    margin-top: 3%;
    margin-bottom: 3%;
}
.box-shadow {
    box-shadow: 0 0 13px 2px #dbdbdb;
}

.box-shadow:hover {
    box-shadow: 0 0 13px 2px #999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@media (max-width: 1200px) {
    .news-body .news-detail .bg-title {
        width: 200%;
        margin-top: 15%
    }
}

@media (max-width: 1000px) {

}

@media (max-width: 700px) {

    .news-body {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .news-detail {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
    }
    .news-body .news-detail .bg-title {
        width: 100%;
        margin-top: 10px;
        padding: 10px 15px;
    }

    .news-body .about-item {
        width: 100%;
    }
    .news-us .news-item .case-desc .name {
        font-size: 17px;
    }
    .news-us .news-item .case-desc .work {
        font-size: 13px;
    }
    .news-us .news-line .news-title {
        font-size: 18px;
    }
}

