/* 基础重置 - 避免与外部样式冲突 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }
        /* 容器控制 - 预留头部/底部空间 */
        .contact-container {
            width: 100%;
            max-width: 100%;
            margin: 78px auto;
            overflow: hidden;
        }
        @media (max-width: 768px) {
  .banner {
    height: 220px; /* 美观高度，不矮 */
  }
  .banner img {
    object-position: left top !important; /* 强制显示图片左边 */
  }
}
        /* 面包屑导航 */
        .breadcrumb {
            padding: 15px 20px;
            background-color: #fff;
            font-size: 14px;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #0066cc;
        }
        .breadcrumb span {
            color: #999;
            margin: 0 8px;
        }
        /* Banner图 - 固定高度+居中裁剪 */
        .banner {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        /* 核心内容区 - 左右布局 + 等高设置 */
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px 20px;
            gap: 30px;
            max-width: 1600px;
            margin: 0 auto;
            align-items: stretch; /* 关键：让子元素高度一致 */
        }
        /* 左侧联系方式 - 统一高度容器 */
        .contact-info {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            padding: 25px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }
        .contact-info h2 {
            font-size: 22px;
            margin-bottom: 50px;
            color: #222;
            border-bottom: 2px solid #0066cc;
            padding-bottom: 10px;
        }
        .info-list {
            flex: 1; /* 填充剩余空间，保证高度一致 */
        }
        .info-item {
            margin-bottom: 50px;
            display: flex;
            align-items: flex-start;
        }
        /* 图标样式 - 确保显示且美观 */
        .info-item .icon {
            width: 40px;
            height: 40px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background-color: #0066cc;
            border-radius: 50%; /* 圆形图标更美观 */
            font-size: 18px;
            flex-shrink: 0;
        }
        .info-item .text h3 {
            font-size: 16px;
            margin-bottom: 5px;
            color: #333;
        }
        .info-item .text p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        /* 新增：链接样式（保持原有视觉） */
        .info-item .text a {
            color: #0066cc;
            text-decoration: none;
        }
        .info-item .text a:hover {
            text-decoration: underline;
        }
        .info-item .text .tip {
            font-size: 12px;
            color: #999;
            margin-top: 3px;
        }
        /* 右侧表单 - 统一高度 + 压缩间距 */
        .contact-form {
            flex: 1.5;
            min-width: 300px;
            background-color: #fff;
            padding: 25px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }
        .contact-form h2 {
            font-size: 22px;
            margin-bottom: 20px;
            color: #222;
            text-align: center;
            border-bottom: 2px solid #0066cc;
            padding-bottom: 10px;
        }
        .form-wrap {
            flex: 1; /* 填充剩余空间，保证高度一致 */
        }
        .form-group {
            margin-bottom: 15px; /* 压缩间距，减少高度 */
        }
        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-size: 14px;
            color: #333;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 12px; /* 压缩内边距 */
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            color: #333;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0066cc;
            box-shadow: 0 0 0 2px rgba(0,102,204,0.1);
        }
        .form-group textarea {
            height: 120px; /* 缩短文本框高度 */
            resize: vertical;
        }
        /* 验证码容器样式 */
        .verify-code-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .verify-code-group input {
            flex: 1;
        }
        /* 验证码显示框样式 */
        .verify-code-display {
            width: 30%;
            height: 42px;
            background-color: #f0f0f0;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0066cc;
            cursor: pointer;
            user-select: none;
        }
        .verify-code-display:hover {
            background-color: #e8e8e8;
        }
        .submit-btn {
            width: 100%;
            padding: 10px; /* 压缩按钮内边距 */
            background-color: #0066cc;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 5px;
        }
        .submit-btn:hover {
            background-color: #0052a3;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
                padding: 20px 15px;
            }
            .banner {
                height: 180px;
            }
            .contact-info, .contact-form {
                padding: 20px;
            }
            .verify-code-group {
                flex-direction: column;
            }
            .verify-code-display {
                width: 100%;
            }
        }