/* 联系我们页面样式 */
.page-banner {
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.22) 0 18%, rgba(255, 255, 255, 0) 45%),
        radial-gradient(circle at 82% 18%, rgba(127, 255, 214, 0.2) 0 14%, rgba(127, 255, 214, 0) 44%),
        linear-gradient(120deg, #0a4f8f 0%, #0a63a8 46%, #148b9a 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(130deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 38%, rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 48px);
    opacity: 0.42;
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 35% 100%, rgba(255, 255, 255, 0.2) 0 28%, rgba(255, 255, 255, 0) 58%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.26) 100%);
}

.page-title {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-shadow: 0 8px 24px rgba(2, 24, 58, 0.3);
    padding: 10px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(2px);
}

.contact-content {
    padding: 60px 0;
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 22px;
    border: 1px solid rgba(120, 156, 204, 0.16);
    box-shadow: 0 18px 42px rgba(11, 58, 120, 0.1);
}

.contact-info h2 {
    color: #0066cc;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border: 1px solid rgba(120, 156, 204, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(9, 53, 112, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dceeff, #f2f8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-details p {
    color: #555;
    line-height: 1.6;
}

.contact-details a {
    color: #0066cc;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.qr-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.qr-section h3 {
    color: #333;
    margin-bottom: 20px;
}

.qr-codes-horizontal {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.qr-item-horizontal {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.qr-item-horizontal img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    border: 1px solid rgba(120, 156, 204, 0.16);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(10, 58, 118, 0.1);
}

.qr-item-horizontal p {
    font-size: 0.9rem;
    color: #666;
}

.map-container {
    background: white;
    padding: 40px;
    border-radius: 22px;
    border: 1px solid rgba(120, 156, 204, 0.16);
    box-shadow: 0 18px 42px rgba(11, 58, 120, 0.1);
    height: 100%;
}

.map-container h2 {
    color: #0066cc;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(120, 156, 204, 0.16);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-static-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-address {
    margin-top: 20px;
    padding: 18px;
    background: linear-gradient(180deg, #f8fbff, #f1f7ff);
    border-radius: 14px;
    border-left: 4px solid #0066cc;
    box-shadow: inset 0 0 0 1px rgba(120, 156, 204, 0.1);
}

.map-address p {
    margin: 5px 0;
    color: #555;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-wrapper {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .map-container {
        padding: 25px;
    }

    .page-title {
        font-size: 2rem;
    }

    .qr-codes-horizontal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .map-wrapper {
        height: 240px;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
    }

    .contact-icon {
        align-self: center;
    }
}
