
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #2d3748;
            line-height: 1.8;
            padding: 30px 0;
        }
        /* 页面容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 页面头部 */
        .page-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 25px;
            border-bottom: 2px solid #0f4c81;
        }
        .main-title {
            font-size: 36px;
            font-weight: 700;
            color: #0f4c81;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }
        .sub-title {
            font-size: 18px;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
        }
        /* 联系信息卡片 */
        .contact-card {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        .contact-item {
            background-color: #ffffff;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-top: 4px solid #0f4c81;
            transition: all 0.3s ease;
        }
        .contact-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .contact-icon {
            font-size: 40px;
            color: #0f4c81;
            margin-bottom: 20px;
            display: block;
        }
        .contact-title {
            font-size: 22px;
            color: #0f4c81;
            margin-bottom: 15px;
            font-weight: 600;
        }
        .contact-detail {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.8;
        }
        .contact-link {
            color: #0f4c81;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .contact-link:hover {
            color: #156bb3;
            text-decoration: underline;
        }
        /* 营业时间样式 */
        .hours-list {
            list-style: none;
            padding-left: 0;
        }
        .hours-list li {
            margin-bottom: 8px;
            font-size: 16px;
            color: #4a5568;
        }
        /* 联系表单（可选） */
        .contact-form-section {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 50px;
        }
        .form-title {
            font-size: 24px;
            color: #0f4c81;
            margin-bottom: 30px;
            font-weight: 600;
            border-left: 4px solid #0f4c81;
            padding-left: 15px;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            font-size: 16px;
            color: #4a5568;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            color: #2d3748;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #0f4c81;
            box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
        }
        .form-textarea {
            min-height: 180px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #0f4c81;
            color: #ffffff;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background-color: #156bb3;
            transform: translateY(-2px);
        }
        .submit-btn:disabled {
            background-color: #94a3b8;
            cursor: not-allowed;
            transform: none;
        }
        /* 提交状态提示 */
        .status-message {
            margin-top: 15px;
            padding: 10px;
            border-radius: 8px;
            font-size: 16px;
            text-align: center;
            display: none;
        }
        .success {
            background-color: #dcfce7;
            color: #166534;
            display: block;
        }
        .error {
            background-color: #fee2e2;
            color: #991b1b;
            display: block;
        }
        /* 页脚 */
        .page-footer {
            text-align: center;
            padding: 20px;
            color: #4a5568;
            font-size: 14px;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .main-title {
                font-size: 28px;
            }
            .contact-card {
                grid-template-columns: 1fr;
            }
            .contact-item {
                padding: 30px 20px;
            }
            .contact-form-section {
                padding: 30px 20px;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .main-title {
                font-size: 24px;
            }
            .submit-btn {
                width: 100%;
            }
        }
    