@charset 'utf-8';
dl,
dd,
ul {
    margin-bottom: 0;
}

section.container {
    overflow: hidden;
}
.aboutUs-banner {
    min-height: 500px;
    padding-top: 82px;
    background: url(../images/aboutUs/banner/banner-bj.webp) no-repeat center;
    background-size: cover;
}
.contact {
    background-color: #F8F6F6;
    border-bottom: 1px solid #DDE2E9;
}

.contact .container {
    border-radius: 12px;
    overflow: hidden;
}

.contact-info {
    padding: 60px 30px;
    background-color: #fff;
}

.contact-img {
    background: url(../images/aboutUs/contact/contact-img.webp) no-repeat center;
    background-size: 100% 100%;
}

.contact-info li {
    padding: 20px;
    background-color: #F6F6FB;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
}

.contact-info li+li {
    margin-top: 20px;
}

.contact-info img {
    width: 26px;
    margin-right: 20px;
}

@media screen and (max-width: 768px) {
    .contact-info {
        margin: 15px;
    }
}

.work {
    background: url(../images/aboutUs/work/work-bj.webp) no-repeat center;
    background-size: cover;
}

.work ul li {
    display: flex;
    align-items: center;
    padding: 36px 0;
}

.work ul li:first-of-type {
    padding-top: 0;
}

.work ul li:last-of-type {
    padding-bottom: 0;
}

.work ul li+li {
    border-top: 1px solid #667272;
}

.work ul img {
    width: 88px;
}

@media screen and (max-width: 768px) {
    .work ul img {
        width: 50px;
    }

    .work ul li {
        padding: 20px 0;
    }

    .work .f-16 {
        font-size: 14px;
    }

    .lh-36 {
        line-height: 30px;
    }
}

.culture {
    background: url(../images/aboutUs/culture/culture-bj.webp) no-repeat center;
    background-size: cover;
}

.culture ul {
    display: grid;
    gap: 56px;
    grid-template-columns: repeat(2, 1fr);
}

.culture ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 12px;
    position: relative;
}
.culture img{
    max-width: 45px;
    max-height: 45px;
}
.culture ul li::after{
    content: "";
    position: absolute;
    right: 30px;
    top: 30px;
    width: 40px;
    height: 54px;
    background: fixed url(../images/aboutUs/culture/culture-icon.webp) no-repeat center;
    background-size: cover;
}
@media screen and (max-width: 768px){
    .culture ul{
        gap: 30px;
    }
    .culture ul li{
        padding: 15px;
    }
    .culture ul li::after{
        width: 20px;
        height: 30px;
    }
}