.about-us {
    width: 100%;
    padding: 0 76px;
    padding-top: 62px;
    margin-top: -62px;
}

.about-us-container {
    width: 100%;
    border: 2px solid #fff;
    position: relative;
    top: -100px;
    padding: 0 76px;
    padding-top: 47px;
    display: flex;
    justify-content: center;
}

.about-us-content {
    width: 1201px;
    height: 645px;
    background: #FFFFFF;
    box-shadow: 0px 9px 24px 0px rgba(144, 144, 144, 0.18);
    border-radius: 10px;
    padding: 79px 110px 110px 89px;
}

.about-us-content h5 {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 48px;
    color: #253057;

}

.about-us-content h6 {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 26px;
    color: rgba(0, 0, 0, 0.2);
}

.about-us-divider-land {
    width: 35px;
    height: 4px;
    background: #000000;
    margin: 0 auto;
    margin-top: 12px;
    margin-bottom: 40px;
}

.about-us-desc {
    display: flex;
    gap: 80px;
}

.about-us-desc img {
    max-width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 15px;
    flex: 1;
}

.about-us-desc p {
    flex: 2;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 44px;
}
@media screen and (max-width: 768px) {

    .about-us{
        padding: 0;
        margin-top: 120px;
    }
    .about-us-container{
        padding: 10px;
        display: block;
    }
    .about-us-content{
        width: 100%;
        height: auto;
        padding: 0;
    }
    .about-us-desc{
        display: block;
    }
    .about-us-desc p{
        padding: 20px;
    }
    .about-us-desc img {
        margin: 0 auto;
    }
}