.overviewCont {
    display: flex;
}
.overviewInfo .n-project-title {
    text-align: left;
    margin-bottom: 0;
    color: #292929;
    font-size: 36px;
    font-weight: 700;
    line-height: 150%; /* 54px */
}
.overviewInfo ul{
    margin-bottom: 8px;
}

.overviewInfo p {
    margin-top: 24px;
    color: #6A6B6D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.overviewImg {
    max-width: unset;
    min-width: unset;
    width: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-right: 48px;
}

.overviewCont {
    display: flex;
    align-items: stretch;
}
.overviewImg img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.title-line {
    position: relative;
    padding-bottom: 24px;
}
.title-line::after {
    content: '';
    display: block;
    height: 2px;
    width: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #E60039;
}
.overviewImg-m{
    display: none;
}

@media screen and (max-width:1600px) {
    .overviewImg {
        width: 602px;
    }
    .overviewInfo p {
        margin-top: 16px;
        font-size: 14px;
    }
}

@media screen and (max-width:1440px) {
    .overviewImg {
        width: 602px;
        margin-right: 42px;
    }
    .overviewInfo p {
        margin-top: 20px;
    }
}
@media screen and (max-width:1280px) {
    .overviewInfo p {
        margin-top: 16px;
        font-size: 14px;
    }
    .overviewImg {
        width: 512px;
        margin-right: 36px;
    }
}
@media screen and (max-width:1068px) {
    .overviewCont {
        flex-wrap: wrap;
    }
    .overviewCont .n-project-title {
        text-align: center;
    }
    .title-line::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .overviewImg {
        width: 100%;
        height: 330px;
        margin-right: 0;
    }
}
@media screen and (max-width:768px) {
    .overviewInfo{
        width: 100%;
    }
    .overviewInfo p {
        margin-top: 24px;
        font-size: 16px;
    }
    .overviewImg{
        display: none;
    }
    .overviewImg-m {
        width: 100%;
        height: 160px;
        background-size: cover;
        background-repeat: no-repeat;
        flex-shrink: 0;
        margin: 24px 0;
        display: block;
        /* 移动端图片 */
    }
    .overviewImg-m img{
        width: 100%;
    }
}
