  .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            height: 772px;    font-family: poppins-v2,sans-serif;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            visibility: hidden;
        }
        
        .slide.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* 第一张幻灯片样式 */
        .slide-1 {
            background-image: url('/css/slidebg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
        }
        
        .slide-1-content {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
            padding: 0 60px;
        }
        
        .text-section {
            flex: 0 0 60%;
            padding-right: 40px;
        }
        
        .text-section h2 {
            font-size: 5rem;
            font-weight: 800;
            letter-spacing: 2px;
            animation: fadeInLeft 1.5s ease-out 0.5s both;
            margin-bottom: 20px;
            line-height: 1.1;text-align: right;
    color: #000;
        }
        
        .text-section p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 500px;
            animation: fadeInLeft 1.5s ease-out 0.8s both;
        }
        
        .arrow-section {
            flex: 0 0 40%;
            display: flex;
            flex-direction: column;
            align-items: baseline;
            justify-content: center;
        }
        
        .arrow-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            padding: 30px;
            border-radius: 50%;
            transition: all 0.4s;
            animation: pulseArrow 2s infinite;
        }
        
       
        
        .arrow-icon {
            font-size: 8rem;
            margin-bottom: 20px;
        }
        
        .arrow-text {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            letter-spacing: 1px;
            text-align: center;
        }
        
        /* 第二张幻灯片样式 - 合并版本 */
        .slide-2 {
            background-color: #FFD700;
            color: #333;
        }
        
        .slide-2-content {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
            padding: 0 40px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease-out 0.8s, transform 1s ease-out 0.8s;
        }
        
        .slide-2.active .slide-2-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 左侧数字区域 */
        .numbers-container {
            flex: 0 0 30%;
            display: flex;
            flex-direction: column;
            justify-content: right;
            align-items: end;
            gap: 40px;
        }
        
        .circle-1, .circle-2 {
            width: 116px;
            height: 116px;
			margin-bottom:180px;
            border-radius: 50%;
            background-color: #f94d1e;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 6rem;
            font-weight: 800;
            color: #fff;
        }
        
        .circle-1 {
            animation: pulse 2s infinite alternate;
        }
        
        .circle-2 {
            animation: pulse 2s infinite alternate 0.3s;
			margin-top: 100px;
    background-color: #3d9be9;
        }
        
        /* 中间文字区域 */
        .text-content {
            flex: 0 0 40%;
            padding: 0 40px;
        }
        
        .text-content h3 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #000;
            line-height: 1.2;
        }
        
        .text-content p {
            font-size: 1rem;
            line-height: 1.6;
            color: #000;
            margin-bottom: 80px;
        }
        
        .step-indicator {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .step {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: #2c3e50;
        }
		.top100{ margin-top:100px;}
        
        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* 右侧图标区域 */
        .icons-container {
            flex: 0 0 30%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: baseline;
            gap: 40px;
        }
        
        .price-icon, .image-icon {
           
            display: flex;
            justify-content: center;
            align-items: center;
            
        }
        .zuo{ text-align:left;}
		.you{ text-align:right;}
        .price-icon {
            animation: float 3s ease-in-out infinite;
        }
        
        .image-icon {
            animation: float 3s ease-in-out infinite 0.5s;
            overflow: hidden;
            padding: 0;
        }
        
        .price-icon i {
            font-size: 3rem;
            color: #e74c3c;
        }
        
        .image-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 轮播导航按钮 */
        .carousel-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        .nav-dot.active {
            background-color: white;
            transform: scale(1.2);
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            border: none;
        }
        
        .carousel-btn:hover {
            background-color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        /* 动画效果 */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes pulse {
            from {
                transform: scale(1);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            }
            to {
                transform: scale(1.05);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        
        @keyframes pulseArrow {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .carousel-container {
                height: 500px;
            }
            
            .slide-1-content, .slide-2-content {
                padding: 0 40px;
            }
            
            .text-section h2 {
                font-size: 4rem;
            }
            
            .arrow-icon {
                font-size: 6rem;
            }
            
            .slide-2-content {
                flex-direction: column;
                padding: 30px;
                gap: 30px;
            }
            
            .numbers-container, .text-content, .icons-container {
                flex: 1;
                width: 100%;
                text-align: center;
            }
            
            .numbers-container {
                flex-direction: row;
                gap: 60px;
            }
            
            .circle-1, .circle-2 {
                width: 110px;
                height: 110px;
                font-size: 3rem;
            }
            
            .text-content h3 {
                font-size: 2rem;
            }
            
            .price-icon, .image-icon {
                width: 110px;
                height: 110px;
            }
            
            .price-icon i {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-container {
                height: 450px;
            }
            
            .slide-1-content {
                flex-direction: column;
                justify-content: center;
                padding: 0 30px;
            }
            
            .text-section {
                flex: 1;
                padding-right: 0;
                text-align: center;
                margin-bottom: 30px;
            }
            
            .text-section h2 {
                font-size: 3.5rem;
            }
            
            .text-section p {
                font-size: 1.2rem;
                max-width: 100%;
                margin: 0 auto;
            }
            
            .arrow-section {
                flex: 1;
            }
            
            .arrow-icon {
                font-size: 5rem;
            }
            
            .circle-1, .circle-2 {
                width: 90px;
                height: 90px;
                font-size: 2.5rem;
            }
            
            .text-content h3 {
                font-size: 1.8rem;
            }
            
            .text-content p {
                font-size: 1.1rem;
            }
            
            .price-icon, .image-icon {
                width: 90px;
                height: 90px;
            }
            
            .price-icon i {
                font-size: 2rem;
            }
            
            .step-indicator {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-container {
                height: 500px;
            }
            
            .text-section h2 {
                font-size: 2.8rem;
            }
            
            .text-section p {
                font-size: 1.1rem;
            }
            
            .arrow-icon {
                font-size: 4rem;
            }
            
            .arrow-text {
                font-size: 1.2rem;
            }
            
            .numbers-container {
                gap: 30px;
            }
            
            .circle-1, .circle-2 {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
            
            .text-content h3 {
                font-size: 1.5rem;
            }
            
            .text-content p {
                font-size: 1rem;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .price-icon, .image-icon {
                width: 70px;
                height: 70px;
            }
            
            .price-icon i {
                font-size: 1.5rem;
            }
        }
		
		  
        .auto-toggle {
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: #3498db;
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }
        
        .transition-info {
            text-align: center;
            margin-top: 15px;
            color: #3498db;
            font-weight: 500;
        }
        
        .slide-indicator {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            z-index: 5;
        }
        
        .process-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
            letter-spacing: 1px;
        }


 #fluentform_8{background-color: #f8cd02; padding: 50px;font-family: Poppins;}
.fluentform_8 .ff-btn-submit:not(.ff_btn_no_style){    background-color: #53444a!important; width: 100%;}
.ff-default .ff-el-input--label label{font-weight: 400!important;font-size: 14px;}
.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span:hover{color: #000!important;font-weight: 400;}
.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected label>span{    background-color: #e7bf0a!important;
    border-color: #e7bf0a!important;
    box-shadow: -1px 0 0 0 #e7bf0a!important;
    color: #000!important;
    font-size: 14px;
    font-weight: 400!important;}
    .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span{border:0px;}
    .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check{    margin: 0 5px 10px; display:inline-block;}
    .fluentform .ff-el-group{font-weight: 400;
    font-size: 16px;}               
	.fluentform .ff-el-form-control{font-weight: 400!important;    font-size: 12px!important; border:0px!important;}
	.fluentform .ff-el-input--label label{ color:#000;}
	
	
	/* CSS Document */

.spin {
  animation: spin 5s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pulse {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
     
.anniu{width: 100%;
    color: #fff;
    background-color: #53444a!important;}     