<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* è”ç³»ä¿¡æ¯éƒ¨åˆ†æ&nbsp;·å¼ */
.contact-info-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.contact-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 16px;
}

/* è”ç³»è¡¨å•éƒ¨åˆ†æ&nbsp;·å¼ */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-wrapper h2 {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

/* åœ°å›¾éƒ¨åˆ†æ&nbsp;·å¼ */
.map-wrapper {
    height: 100%;
}

.map-container {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    margin-top: 15px;
    height: 100%;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ç§»åŠ¨ç«¯é€‚é… */
@media (max-width: 991px) {
    .contact-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-info-section,
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .map-container {
        min-height: 250px;
    }
} </pre></body></html>