.contact-us {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.contact-list {
    display: flex;
    column-gap: 60px;
    margin-top: 40px;
}
.contact-box {
    display: flex;
    flex-direction: column;
    color: #FFF;
    font-size: 12px;
    letter-spacing: 1px;
}
.contact-name {
    margin-bottom: 20px;
    font-size: 20px;
}
.contact-info {
    display: flex;
    align-items: center;
}
.contact-info .icon {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-right: 20px;
}
.contact-info .icon.whatsapp {
    background-image: url("../images/whatsapp.svg");
}
.contact-info .icon.email {
    background-image: url("../images/email.svg");
}
.contact-us-item .icon.email {
    background-image: url("../images/email-b.svg");
}
.contact-us-item .icon.whatsapp {
    background-image: url("../images/whatsapp-b.svg");
}
.contact-us-item .icon.tel {
    background-image: url("../images/tel-b.svg");
}
.contact-us-title {
    font-size: 30px;
    margin-top: 50px;
    letter-spacing: 1px;
}
.contact-us-subtitle {
    font-size: 14px;
    margin-top: 20px;
}
.contact-us-list {
    display: flex;
    column-gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.contact-us-item {
    background-color: #f2f2f2;
    padding: 15px;
    border-radius: 10px;
    color: #000;
    font-size: 12px;
    min-width: 240px;
}
.contact-us-item .contact-name {
    margin-bottom: 15px;
}
.address {
    font-size: 14px;
    margin-bottom: 20px;
}
.google-map {
    margin-bottom: 30px;
}
.google-map iframe{
    width: 100%;
    height: 600px;
}
/* 移动端 */
@media screen and (max-width: 600px) {
    .contact-us {
        flex-direction: column;
        margin-top: 30px;
    }
    .contact-list {
        flex-direction: column;
        margin-bottom: 50px;
        row-gap: 40px;
    }
    .content-inner {
        width: 100%;
        overflow: auto;
    }
    .contact-us-title {
        margin-top: 30px;
        font-size: 20px;
    }
    .contact-us-list {
        flex-direction: column;
        row-gap: 20px;
    }
    .contact-us-item {
        width: 100%;
    }
    .google-map {
        margin-bottom: 0;
    }
    .google-map iframe {
        height: 300px;
    }
}
