/* 主内容区 */
       a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        input, select {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 8px 10px;
            font-size: 13px;
        }
        .news-hub-hero {
    background: linear-gradient(90deg, #eef5ff, #f8fbff);
    border-bottom: 1px solid var(--line);
    padding: 38px max(18px, calc((100vw - 1180px) / 2));
}
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

      /* 主内容区 */
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        /* 热门服务 */
        .service-section h2 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .service-section .desc {
            font-size: 13px;
            color: #666;
            margin-bottom: 20px;
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .service-card {
            background: #fff;
            padding: 20px;
            text-align: center;
            border: 1px solid #eee;
            border-radius: 4px;
            font-size: 15px;
        }

        /* 服务流程 */
        .process-section h2 {
            font-size: 20px;
            margin-bottom: 20px;
        }
        .process-steps {
           justify-content: space-between;
               align-items: center;
               margin-bottom: 30px;
               display: grid;
               grid-template-columns: repeat(5, 1fr);
               gap: 10px;
           
        }
        .step-item {
            text-align: center;
            font-size: 14px;
			width:100%;
			background-color:#fff;
			padding-bottom: 10px;
        }
        .step-number {
           width: 24px;
               height: 24px;
               background: #007bff;
               border: 1px solid #ddd;
               border-radius: 50%;
               display: inline-flex;
               align-items: center;
               justify-content: center;
               margin-bottom: 5px;
               color: #fff;
               font-weight: bold;
               display: block;
               margin: 10px auto;
        }

        /* 服务优势 */
        .advantage-section h2 {
            font-size: 20px;
            margin-bottom: 20px;
        }
        .advantage-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .advantage-item {
            background: #fff;
            padding: 12px;
            border: 1px solid #eee;
            border-radius: 4px;
            font-size: 13px;
        }

        /* 右侧咨询表单 */
        .form-card {
            background: #fff;
            padding: 20px;
            border-radius: 4px;
            border: 1px solid #eee;
        }
        .form-title {
            font-size: 15px;
            margin-bottom: 16px;
            color: #333;
        }
        .form-item {
            margin-bottom: 12px;
        }
        .form-item input,
        .form-item select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 13px;
        }
        .submit-btn {
            width: 100%;
            background-color: #007bff;
            color: #fff;
            padding: 10px;
            border-radius: 4px;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #0056b3;
        }
        .form-tip {
            font-size: 11px;
            color: #999;
            margin-top: 8px;
            text-align: center;
        }
 /* 响应式适配 */
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
            .form-card {
                order: -1;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                display: none;
                gap: 12px;
            }
            .nav-links.active {
                display: flex;
            }
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .banner-title {
                font-size: 22px;
            }
            .service-grid {
                grid-template-columns: 1fr;
            }
            .process-steps {
                flex-direction: column;
                gap: 15px;
            }
            .advantage-list {
                grid-template-columns: 1fr;
            }
            .bottom-form {
                flex-direction: column;
                align-items: stretch;
            }
            .bottom-form input,
            .bottom-form select,
            .bottom-form button {
                width: 100%;
            }
            .float-btns {
                display: none;
            }
            .header-tel {
                display: none;
            }
        }