/* 联系我们页面特定样式 */

/* 页面布局调整 */
body {
    background-color: #F9F9F9;
}

/* Banner区域 */
.contact-banner-section {
    position: absolute;
    left: 0;
    top: 304px;
    width: 100%;
    height: 895px;
    overflow: hidden;
    background-color: #F9F9F9;
}

/* Banner标题 */
.contact-banner-title {
    position: absolute;
    left: 8.59%;
    /* 165px / 1920px */
    top: 0;
    z-index: 3;
}

.contact-banner-title h1 {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 300;
    font-size: 96px;
    line-height: 1.3;
    color: #BEA66E;
    white-space: nowrap;
    margin: 0;
}



/* Banner图片 */
.contact-banner-image {
    position: absolute;
    left: 0;
    top: 175px;
    width: 87.5%;
    /* 1680px / 1920px */
    height: 720px;
    z-index: 1;
    overflow: hidden;
}

.contact-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* Pattern装饰 */
.contact-banner-pattern {
    position: absolute;
    left: 41.35%;
    /* 794px / 1920px */
    top: 45px;
    width: 82.08%;
    /* 1576px / 1920px */
    height: 416px;
    background-image: url('../assets/pattent-spaced.svg');
    background-repeat: repeat;
    background-size: 40px 42px;
    background-position: 0 0;
    pointer-events: none;
    z-index: 3;
    opacity: .5;
}

/* Contact信息区域 */
.contact-info-section {
    position: absolute;
    left: 0;
    top: 976px;
    /* 根据Figma设计 */
    width: 100%;
    height: 878px;
    /* 根据Figma设计的高度 */
    background-color: #F9F9F9;
}

/* 左侧信息容器 */
.contact-info-left {
    position: absolute;
    left: 15.625%;
    /* 300px / 1920px */
    top: 323px;
    width: 31.875%;
    /* 612px / 1920px */
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* 信息项 */
.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 标签 */
.contact-info-label {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(17, 17, 17, 0.4);
    margin: 0;
}

/* 值 */
.contact-info-value {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #111111;
    margin: 0;
}

/* Google Map按钮 */
.contact-map-btn {
    margin-top: 8px;
    width: 192px;
    padding: 16px 24px;
    background-color: #BEA66E;
    border-radius: 4px;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 700;
    font-size: 18.055px;
    line-height: 1.5;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    position: relative;
}

.contact-map-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../assets/mapIcon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-map-btn:hover {
    background-color: #D39B39;
}

/* 右侧图片 */
.contact-info-right {
    z-index: 3;
    position: absolute;
    right: 8.59%;
    /* 165px / 1920px */
    top: 0;
    width: 22.66%;
    /* 435px / 1920px */
    height: 590px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* 页脚位置调整 */
.contact-footer {
    top: 1854px;
    /* 976 + 878 = 1854px (根据Figma设计) */
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .contact-banner-title h1 {
        font-size: 80px;
    }

    .contact-info-left {
        width: 40%;
    }

    .contact-info-right {
        width: 30%;
    }
}

@media (max-width: 1024px) {
    .contact-banner-title h1 {
        font-size: 64px;
    }

    .contact-info-left {
        left: 10%;
        width: 50%;
    }

    .contact-info-right {
        width: 35%;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .contact-banner-section {
        position: relative;
        top: 76px;
        height: 351px;
    }

    .contact-info-section {
        height: 535px;
        top: 40px;
        position: relative;
        left: 0;
    }

    .contact-banner-title {
        left: 24px;
        top: 48px;
    }

    .contact-banner-image {
        height: 200px;
        width: 366px;
        top: 115px;
    }

    .contact-banner-title h1 {
        font-size: 32px;
    }

    .contact-banner-bg {
        top: 100px;
        height: 500px;
        width: 100%;
    }

    .contact-banner-pattern {
        right: 0;
        top: 32px;
        width: 151px;
        background-size: 19px 20px;
        height: 200px;
        left: initial;
    }



    .contact-info-left {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        margin-bottom: 40px;
        padding: 32px 0 24px 24px;
    }

    .contact-info-right {

        display: none;
    }

    .contact-footer {
        top: auto;
        position: relative;
        margin-top: 40px;
    }

    .contact-info-label {
        font-size: 14px;
    }

    .contact-info-value {
        font-size: 16px;
    }

    .contact-map-btn {
        font-size: 16px;
        height: 62px;
        width: 188px;
        line-height: 1.8;
    }
}