    /* 全局主容器 - 固定1400px宽度 */
        .main-content {
            /* width: 1400px; */
            margin: 0 auto;
            padding: 0;
            position: relative;
            padding: 50px 0;
        }

        /* ========== 第一部分：线性流程板块 ========== */
        .process-subtitle {
            color: #2c5c97;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 12px;
            text-align: center;
        }

        .process-title {
            font-size: 56px;
            font-weight: 700;
            color: #222222;
            margin-bottom: 40px;
            text-align: center;
        }

        /* 流程容器：仅做垂直排列，不干扰居中 */
        .process-flow {
            display: flex;
            flex-direction: column;
            gap: 0;
            /* margin-bottom: 80px; */
            width: 100%;
            overflow: auto;
        }

        /* 核心：让左侧长条的中线对准1400px容器中线 */
        .process-step {
            display: flex;
            align-items: center;
            width: 100%;
            position: relative;
            justify-content: flex-start;
            flex-wrap: nowrap;
            margin-bottom: 50px;
            /* 关键：把左侧长条的中点(190px)对准容器50%中线 */
            padding-left: calc(50% - 240px);
        }

        /* 左侧固定等宽 + 文字居中 + 交互特效 */
        .step-main {
            padding: 14px 24px;
            border-radius: 6px;
            font-size: 20px;
            font-weight: 500;
            color: #fff;
            width: 450px;
            text-align: center;
            white-space: nowrap;
            flex-shrink: 0;
            /* 基础阴影 */
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            /* hover 过渡 */
            cursor: pointer;
        }

        /* 左侧块hover特效：渐变+缩放+阴影增强 */
        .step-main.blue {
            background: linear-gradient(135deg, #2c5c97 0%, #3a71b8 100%);
        }
        .step-main.blue:hover {
            background: linear-gradient(135deg, #3a71b8 0%, #4a85d9 100%);
            transform: scale(1.02);
            box-shadow: 0 6px 12px rgba(44, 92, 151, 0.3);
        }

        .step-main.gray {
            background: linear-gradient(135deg, #b8babc 0%, #c9cbcd 100%);
        }
        .step-main.gray:hover {
            background: linear-gradient(135deg, #c9cbcd 0%, #d9dbdc 100%);
            transform: scale(1.02);
            box-shadow: 0 6px 12px rgba(184, 186, 188, 0.3);
        }

        .dashed-line {
            /* width: 20px; */
            height: 10px;
            /* background-color: #a0c4e8; */
            /* background-image: linear-gradient(to right, #a0c4e8 50%, transparent 50%); */
            /* background-size: 8px 2px; */
            margin: 0 8px;
            /* flex-shrink: 0; */
        }

        /* 右侧不换行 + 交互特效 */
        .step-side-group {
            display: flex;
            gap: 6px;
            flex-shrink: 0;
            flex-wrap: nowrap;
        }

        .step-side {
            padding: 12px 16px;
            border-radius: 6px;
            font-size: 17px;
            font-weight: 500;
            color: #fff;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
            white-space: nowrap;
            flex-shrink: 0;
            cursor: pointer;
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        }

        /* 右侧标签hover特效 */
        .step-side.gray {
            background: linear-gradient(135deg, #b8babc 0%, #c9cbcd 100%);
        }
        .step-side.gray:hover {
            background: linear-gradient(135deg, #c9cbcd 0%, #d9dbdc 100%);
            transform: scale(1.03);
            box-shadow: 0 5px 10px rgba(184, 186, 188, 0.3);
        }

        .step-side.blue {
            background: linear-gradient(135deg, #2c5c97 0%, #3a71b8 100%);
        }
        .step-side.blue:hover {
            background: linear-gradient(135deg, #3a71b8 0%, #4a85d9 100%);
            transform: scale(1.03);
            box-shadow: 0 5px 10px rgba(44, 92, 151, 0.3);
        }

        /* 箭头：精准对准左侧长条中心 + hover变色动画 */
        .step-divider {
            /* width: 2px; */
            height: 24px;
            /* background-color: #a0c4e8; */
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -24px;
            z-index: 999;
        }

    

   
 

        /* 箭头跳动动画 */
        @keyframes arrowBounce {
            from { transform: translateX(-50%) translateY(0); }
            to { transform: translateX(-50%) translateY(-3px); }
        }

        /* ========== 第二部分：圆形流程板块 ========== */
        .circular-flow-title {
            font-size: 24px;
            font-weight: 600;
            color: #222;
            text-align: center;
            margin-bottom: 30px;
        }

        .circular-flow-container {
            width: 100%;
            margin: 0 auto;
            padding: 20px 0;
            text-align: center;
        }

        /* 核心修改：添加gap给圆圈加间隙 */
        .circular-flow {
            display: flex;
            align-items: center;
            gap: 15px; /* 圆圈之间的间隙，可根据需要调整 */
            justify-content: center;
            width: 100%;
        }

        /* 调整圆圈尺寸 + 交互特效 */
        .circle-step {
            width: calc((1400px - (15px * 7)) / 8); /* 总宽度 - 7个间隙 = 8个圆圈的总宽度，再均分 */
            height: calc((1400px - (15px * 7)) / 8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 18px;
            font-weight: 500;
            color: #ffffff;
            white-space: normal;
            padding: 20px;
            flex-shrink: 0;
            cursor: pointer;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            /* 初始状态 */
            transform: rotate(0deg);
        }

        /* 圆形块hover特效：旋转+发光+缩放 */
        .circle-step.blue {
            background: linear-gradient(135deg, #2c5c97 0%, #3a71b8 100%);
        }
        .circle-step.blue:hover {
            background: linear-gradient(135deg, #3a71b8 0%, #4a85d9 100%);
            transform: rotate(5deg) scale(1.05);
            box-shadow: 0 0 20px rgba(74, 133, 217, 0.5), 0 8px 16px rgba(0,0,0,0.2);
        }

        .circle-step.gray {
            background: linear-gradient(135deg, #b8babc 0%, #c9cbcd 100%);
        }
        .circle-step.gray:hover {
            background: linear-gradient(135deg, #c9cbcd 0%, #d9dbdc 100%);
            transform: rotate(-5deg) scale(1.05);
            box-shadow: 0 0 20px rgba(201, 203, 205, 0.5), 0 8px 16px rgba(0,0,0,0.2);
        }
.circular-flow-container2{display:none;}
        /* ========== 响应式适配 ========== */
        @media (max-width: 1400px) {
            .main-content {
                width: 100%;
                padding: 20px;
            }
            
            .process-step {
                padding-left: calc(50% - 140px);
            }
            .step-main {
                width: 280px;
                font-size: 18px;
            }
            .step-divider {
                left: 50%;
            }
            .step-side {
                font-size: 15px;
                padding: 10px 14px;
            }

            /* 小屏幕圆形适配间隙 */
            .circular-flow {
                gap: 10px;
            }
            .circle-step {
                width: 120px;
                height: 120px;
                font-size: 14px;
                padding: 15px;
            }
        }

        @media (max-width: 768px) {
			.circular-flow-container{display:none;}
			.circular-flow-container2{display:block;}
            .process-title {
                font-size: 28px;
            }
            .process-step {
                padding-left: calc(50% - 110px);
            }
            .step-main {
                width: 220px;
                font-size: 16px;
            }
            
            /* 手机端圆形适配间隙 */
            .circular-flow {
                gap: 8px;
                flex-wrap: wrap;
            }
            .circle-step {
                width: 100px;
                height: 100px;
                font-size: 12px;
                padding: 10px;
                /* 手机端弱化旋转效果 */
                transform: rotate(0deg) scale(1);
            }
            .circle-step:hover {
                transform: rotate(0deg) scale(1.03);
            }
        }
		
		
		
		
		
		
		
		
		
	/* ////////////////////////////	 */
		 /* 询价表单板块容器 */
        .quote-form-section {
            /* max-width: 1200px; */
            border-top: 1px solid #ddd;
            margin: 0 auto;
            padding: 50px 0;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        /* 表单内容容器（左右布局） */
        .quote-form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        /* 左侧文字区域 */
        .quote-form-text {
            padding-right: 20px;
        }

        .quote-tag {
            font-size: 16px;
            color: #2385bb; /* 统一蓝色主色调 */
            font-weight: 500;
            margin-bottom: 16px;
            display: inline-block;
        }

        .quote-title {
            font-size: 50px;
            font-weight: 700;
            color: #222;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .quote-desc {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
        }

        /* 右侧表单区域 */
        .quote-form {
            width: 100%;
        }

        /* 表单行布局（两列） */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        /* 表单控件样式 */
        .form-group {
            width: 100%;
        }

        .form-input {
            width: 100%;
            padding: 16px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 16px;
            color: #333;
            transition: all 0.3s ease;
            background-color: #fafafa;
        }

        /* 聚焦样式 */
        .form-input:focus {
            outline: none;
            border-color: #2385bb;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(35, 133, 187, 0.1);
        }

        /* 占位符样式 */
        .form-input::placeholder {
            color: #999;
            font-size: 14px;
        }

        /* 文本域样式 */
        .form-textarea {
            width: 100%;
            padding: 16px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 16px;
            color: #333;
            transition: all 0.3s ease;
            background-color: #fafafa;
            min-height: 120px;
            resize: vertical; /* 仅允许垂直调整大小 */
        }

        .form-textarea:focus {
            outline: none;
            border-color: #2385bb;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(35, 133, 187, 0.1);
        }

        .form-textarea::placeholder {
            color: #999;
            font-size: 14px;
        }

        /* 提交按钮 */
        .submit-btn {
            width: 100%;
            padding: 18px 0;
            background-color: #2385bb;
            color: #ffffff;
            border: none;
            border-radius: 6px;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* 按钮悬停效果 */
        .submit-btn:hover {
            background-color: #1e74a8;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(35, 133, 187, 0.2);
        }

        /* 按钮图标 */
        .submit-icon {
            font-size: 20px;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .quote-form-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .quote-title {
                font-size: 2.8rem;
            }

            .quote-form-text {
                padding-right: 0;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .quote-title {
                font-size: 2.2rem;
            }

            .quote-form-section {
                padding: 30px 16px;
            }
        }

        @media (max-width: 480px) {
            .quote-title {
                font-size: 1.8rem;
            }

            .form-input, .form-textarea {
                padding: 14px 16px;
            }

            .submit-btn {
                padding: 16px 0;
                font-size: 1rem;
            }
        }	
		
		
		
		
		
		
		
		
		
		
		
		
		