.contact-us {
    width: 100%;
    /* height: 632px; */
    padding-top: 62px;
    margin-top: -62px;
}

.contact-us-content {
    margin: 0 auto;
    max-width: var(--container-max-width);
    padding: 88px ;
    display: flex;
    gap: 230px;
}

.contact-us-l {}

.contact-us-l>h5 {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 26px;
    color: #1D213D;
}

.contact-us-l>p {
    max-width: 370px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 14px;
    color: #54576A;
    line-height: 24px;
    margin-top: 40px;
}

.contact-us-l>ul {
    margin-top: 40px;

}

.contact-us-l>ul>li {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #313030;
    line-height: 42px;
}

.contact-us-r {
    margin-top: 100px;
}


.contact-us-r-top {
    display: flex;
    gap: 65px;
}

.contact-us-info>div {
    width: 460px;
    height: 50px;
    line-height: 50px;
    background: #FFFFFF;
    box-shadow: 0px 0px 2px 0px rgba(88, 88, 88, 0.52);
    border-radius: 5px;
    padding: 0 8px;
    margin-bottom: 40px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #1D213D;
}

.contact-us-info>div:last-child {
    margin-bottom: 0;
}

.contact-us-brief {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #54576A;
    line-height: 25px;
}

.contact-us-brief span {
    color: #5E6A80;
    font-size: 40px;
}

.contact-us-r>button {
    cursor:pointer;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #4283FE;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    border: none;
    color: #fff;
    margin-top: 66px;
}
@media screen and (max-width: 768px) {
    .contact-us-content{
        display: block;
        padding: 88px 0;
    }
    .contact-us-l{
        text-align: center;
    }
    .contact-us-r-top{
        display: block;
    }
    .contact-us-info>div{
        width: 90%;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .contact-us-brief{
        padding: 20px;
    }
    .contact-us-r>button{
        width: 90%;
        display: block;
        margin: 0 auto;
        margin-top: 66px;
    }
}