/* 顶部大图与标题 */
.contact-banner {
    position: relative;
    width: 100%;
    height: 28rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 2.5rem;
  }
  .contact-banner-bg {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: url('/eportal/fileDir/420/resource/cms/2025/05/img_pc_site/2025052614255029095.jpg') center center/cover no-repeat;
    filter: brightness(0.82) blur(0.5px);
    z-index: 1;
  }
  .contact-banner-title {
    position: relative;
    z-index: 2;
    font-size: 2.1rem;
    color: #fff;
    font-weight: bold;
    margin-left: 3.5rem;
    margin-bottom: 2.2rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.18);
  }

/* 联系信息容器 */
.contact-container {
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}

/* 联系文本样式 */
.contact-text {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.contact-text h3 {
    color: #333;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.contact-details {
    color: #666;
    font-size: 1.1rem;
    line-height: 2;
}

.contact-details p {
    margin: 0.5rem 0;
}

.contact-details strong {
    color: #333;
    font-weight: 600;
    margin-right: 0.5rem;
}

/* 社交媒体样式 */
.social-media {
    text-align: center;
    margin: 3rem 0;
}

.social-media h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
}

.social-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
}

.social-item span {
    color: #666;
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-banner .banner-caption {
        left: 5%;
        top: 30%;
        font-size: 1.8rem;
    }

    .contact-banner .banner-caption h2 {
        font-size: 1.8rem;
    }

    .contact-banner .banner-caption p {
        font-size: 1rem;
    }

    .contact-text {
        padding: 1.5rem;
    }

    .contact-text h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-details {
        font-size: 1rem;
        line-height: 1.8;
    }

    .social-icons {
        flex-direction: column;
        gap: 1.5rem;
    }
}