.contact-section {
    position: relative;
    height: 100rem;
    width: 100%;
}

.map{
    background: #f4f8fc;
    width: 100%;
    height: 100%;
}

.map-img{ 
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: block;
}

.map-pointer-wrap {
    position: absolute;
    width: 16rem;
    height: 5rem;
    left: calc(50% - 48rem);
    bottom: 50%;
    z-index: 2;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    color: #444;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.map-pointer-wrap::after {
    content: '';
    position: absolute;
    bottom: -12rem;
    left: 50%;
    transform: translateX(-50%);
    width: 9.4rem;
    height: 9.4rem;
    background: url('../images/CONTACT_15.png') no-repeat center / contain;
    background-size: 100% 100%;
    z-index: 1;
}

.contact-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 80rem;
    background: #fff url(../images/bg_03.png) no-repeat right bottom;
    border-radius: 1.2rem;
    padding: 8rem;
    box-sizing: border-box;
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.contact-card .card-title {
    font-size: 2.8rem;
    color: #0e387a;
    font-weight: bold;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.contact-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #004693, #60ce94);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-list .info-item {
    display: flex;
    align-items: center;
    padding: 2.2rem 0;
    border-bottom: 1px solid #ddd;
}

.contact-info-list .info-item:last-child {
    border-bottom: none;
}

.contact-info-list .info-item .icon-wrap {
    width: 3.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.8rem;
    flex-shrink: 0;
}

.contact-info-list .info-item .icon-wrap img{
    width: 100%;
}

.contact-info-list .info-item .text-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-info-list .info-item .text-wrap .label {
    font-size: 2rem;
    color: #777;
}

.contact-info-list .info-item .text-wrap .value {
    font-size: 2rem;
    color: #157f47;
    font-weight: bold;
}

@media (max-width: 767px) {
    .contact-section {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .map {
        width: 100%;
        height: 40vh;
        min-height: 28rem;
        order: 1;
    }
    .map-pointer-wrap {
        bottom:auto;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 4rem);
        max-width: 32rem;
    }
    .map-pointer-wrap::after {
        display: none;
    }

    .map-pointer-wrap img {
        width: 2rem;
    }

    .contact-card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0 0 1.2rem 1.2rem;
        padding: 3rem 2rem;
        order: 3;
        box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.05);
        background-size: auto 10rem;  /* 缩小背景装饰 */
        background-position: right bottom;
    }

    .contact-card .card-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .contact-card .card-title::after {
        height: 3px;
    }

    /* 信息列表项调整 */
    .contact-info-list .info-item {
        padding: 1.8rem 0;
    }

    .contact-info-list .info-item .icon-wrap {
        width: 3rem;
        margin-right: 1.2rem;
    }

    .contact-info-list .info-item .text-wrap .label {
        font-size: 1.4rem;
    }

    .contact-info-list .info-item .text-wrap .value {
        font-size: 1.5rem;
        word-break: break-all;
    }

    /* 通用容器 */
    .container {
        width: 92%;
        padding: 0;
    }
}