/* 地址 */
.address {
    width: 100%;
    height: 20rem;
    background: url("../../common/images/map_bg.png") no-repeat 100% 100%;
    background-size: cover;
    display: flex;
}

.add-left {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
}

.left-main {
    width: 31.25rem;
    background: rgba(255, 255, 255, 0.8);
    margin-left: 14.375rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    padding: 0.75rem;
    box-sizing: border-box;
}

.left-main-img {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 0.5rem;
}

.left-main-box {
    font-size: 0.875rem;
    margin-left: 0.625rem;
    line-height: 1.5625rem;
}

.left-main-box h5 {
    margin-bottom: 0.375rem;
}

.main-box-map {
    display: flex;
    align-items: center;
}

.main-box-map-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.main-box-map-item img {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.3125rem;
}

.main-box-map-line {
    margin: 0 0.625rem;
}

.add-right {
    width: 50%;
    height: 100%;
    position: relative;
}

.contact-us {
    width: 18.75rem;
    height: 20rem;
    position: absolute;
    bottom: -0.9375rem;
    right: 11.25rem;
    background: linear-gradient(
            to bottom,
            rgba(2, 39, 95, 1),
            rgba(2, 39, 95, 0.5)
    );
    border-radius: 0.5rem;
    padding: 1.25rem;
    color: #fff;
}

.contact-us-title {
    font-size: 1.125rem;
}

.contact-us-text {
    font-size: 0.75rem;
    line-height: 1.25rem;
    margin: 0.625rem 0;
}

.contact-us-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.contact-us-item img {
    width: 0.9375rem;
    height: 0.9375rem;
    margin-right: 0.3125rem;
}

/* 媒体查询 */
/* 屏幕 < 768px */
@media (max-width: 767.98px) {
    .address {
        height: 43.75rem;
        flex-direction: column;
    }

    .left-main {
        width: auto;
        margin-left: 0px;
        margin: 0 1.25rem;
        flex-direction: column;
    }

    .add-left {
        width: 100%;
        height: auto;
        justify-content: center;
        margin: 1.25rem 0;
    }

    .add-right {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .contact-us {
        inset: auto;
    }
}

.left-main,
.contact-us {
    opacity: 0;
    transform: translateY(0.625rem);
    transition: none;
}


