* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }

        :root {
            --primary-blue: #0056b3;
            --secondary-blue: #007BFF;
            --light-blue: #E6F2FF;
            --accent-orange: #FF6B35;
            --text-dark: #333;
            --text-light: #666;
            --white: #fff;
            --gray-bg: #f8fafc;
            --border-color: #eef2f7;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            padding-top: 90px; /* 给固定导航腾出空间 */
        }

        .container {
            width: 100%;
            max-width: 1216px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* ================== 联系我们页面样式 ================== */
        .contact-page {
            margin-top: 76px;
            padding: 40px 0 60px;
            background-color: var(--gray-bg);
        }

        /* 面包屑 */
        .breadcrumb {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 30px;
        }
        .breadcrumb a { color: var(--text-light); transition: color 0.3s; }
        .breadcrumb a:hover { color: var(--primary-blue); }
        .breadcrumb span { margin: 0 8px; }

        /* 页面标题 */
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .page-header h1 {
            font-size: 36px;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        .page-header p {
            color: var(--text-light);
            font-size: 16px;
        }

        /* 主体布局：左文右图 */
        .contact-main {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        /* 左侧联系信息与表单 */
        .contact-info-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 86, 179, 0.08);
            height: fit-content;
        }

        .contact-info-card h3 {
            font-size: 22px;
            color: var(--text-dark);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-blue);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .info-icon {
            width: 45px;
            height: 45px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary-blue);
            margin-right: 15px;
            flex-shrink: 0;
        }

        .info-text h4 {
            font-size: 16px;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .info-text p, .info-text a {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .info-text a:hover { color: var(--primary-blue); }

        /* 右侧地图 */
        .map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            height: 100%;
            min-height: 500px;
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* 留言表单 */
        .message-section {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 86, 179, 0.08);
        }
        .message-section h3 {
            font-size: 22px;
            margin-bottom: 30px;
            color: var(--text-dark);
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .form-group.full-width {
            grid-column: span 2;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
        }
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        .submit-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: var(--secondary-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .contact-main {
                grid-template-columns: 1fr;
            }
            .map-container {
                min-height: 400px;
            }
        }
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-group.full-width {
                grid-column: span 1;
            }
            .contact-info-card {
                padding: 30px 20px;
            }
        }