.nuoman-about-us{
    background-color: #fff;
    padding: 82px 0 80px 0;
    background-size: cover;
}
.nuoman-about-us .title-con{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.nuoman-about-us .about-con{
    display: flex;
    margin-top: 50px;
}
.about-con .left{
    width: calc(100% - 640px);
    padding-right: 30px;
}
.about-con .left .desc{
    color: var(--text-color-black);
    font-family: var(--desc-font-family);
    font-size: 16px;
    font-style: var(--font-style);
    font-weight: var(--desc-font-weight);
    line-height: 175%; /* 175% */
}
.about-con .left ul{
    display: flex;
    gap: 36px;
    margin-top: 24px;
}
.about-con .left ul li{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 120px;
}
.about-con .left ul li img{
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.about-con .left ul li .con{
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--desc-font-family);
    font-size: 14px;
    font-style: var(--font-style);
    font-weight: var(--desc-font-weight);
    line-height: var(--line-height);
}
.about-con .right{
    width: 640px;
}
.about-con .right img{
    width: 100%;
    aspect-ratio: 128/75;
    object-fit: cover;
}

@media screen and (max-width: 1500px) {
    .about-con .left,
    .about-con .right{
        width: 50%;
    }
}
@media screen and (max-width: 992px) {
    .nuoman-about-us .about-con{
        flex-direction: column;
    }
    .about-con .left,
    .about-con .right{
        width: 100%;
    }
    .about-con .left{
        padding-right: 0;
        padding-bottom: 30px;
    }
    .about-con .left ul{
        justify-content: center;
    }
}
@media screen and (max-width: 768px) {
    .about-con .left ul{
        gap: 10px;
    }
    .about-con .left ul li img{
        width: 50px;
        height: 50px;
    }
    .nuoman-about-us{
        padding: 40px 0;
    }
}