
.jjfa ul li{background:#f9fafe;}
.more{ padding-bottom:25px;}
.w1200 {width: 1300px;}
       
	   
 :root {
            --primary-color: #2196F3;
            --indicator-height: 3px;
            --transition-duration: 0.6s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html, body {
          
            overflow-x: hidden;
          
        }

        .carousel-container {
            position: relative;
            width: 100vw;
            height: 1080px;
            max-height: 100vh;
            overflow: hidden;
            background: #000;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity var(--transition-duration) ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 40px 20px;
        }

        .slide.active {
            opacity: 1;
            position: relative;
            z-index: 2;
        }

        .slide-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
          
        }

        .slide-content {
           
            max-width: 1200px;
    width: 100%;
	margin-top:20px;
			
        }

        .slide-input {
            width: 100%;
            max-width: 800px;
            padding: 18px 30px;
            font-size: 1.2rem;
            border-radius: 30px;
            border: 2px solid rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.1);
            color: white;
            margin: 20px 0;
            transition: all 0.3s ease;
            outline: none;
			
        }

        .slide-input:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary-color);
        }

        .slide-text {
            font-size: 3.8rem;
            color: white;
            line-height: 1.3;
            margin: 20px 0;
            text-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }
		.slide-text1 {
            font-size: 3.8rem;
            color: white;
            line-height: 1.3;
            margin: 20px 0;
            text-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }
		.slide-text2 {
            font-size: 1.8rem;
            color: white;
            line-height: 1.3;
            margin: 10px 0;
            text-shadow: 0 4px 6px rgba(0,0,0,0.3);
			padding-top:50px;
        }
		.slide-text3 {
            font-size: 1.8rem;
            color: white;
            line-height: 1.3;
            margin: 1px 0;
            text-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }
		.slide-text4 {
            font-size: 1.9rem;
            color: white;
            line-height: 1.3;
            margin: 1px 0;
            text-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }
		.slide-text4 a {
		
		margin-top:100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 207px;
    height: 62px;
    background: linear-gradient(90deg, #33a8d6 0, #376cf3 100%);
    border-radius: 31px;
    color: #785541;
    font-size: 24px;
    margin-right: 20px;
    color: #fff;
    line-height: 62px;
    text-align: center;
    -webkit-transition: all .2s linear;
}

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            padding: 15px 25px;
            border: none;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s ease;
            z-index: 3;
            border-radius: 5px;
            backdrop-filter: blur(5px);
        }

        .nav-btn:hover {
            background: var(--primary-color);
        }

        .prev-btn {
            left: 20px;
            padding-right: 30px;
            border-radius: 30px 0px 0px 30px;
        }

        .next-btn {
            right: 20px;
            padding-left: 30px;
            border-radius: 0px 30px 30px 0px;
        }

        .indicator-container {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            align-items: center;
            z-index: 3;
        }

        .indicator-line {
            width: 40px;
            height: var(--indicator-height);
            background: rgba(255,255,255,0.4);
            border-radius: calc(var(--indicator-height)/2);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .indicator-line.active {
            width: 60px;
            height: calc(var(--indicator-height) + 2px);
            background: var(--primary-color);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .carousel-container {
                height: 100vh;
            }

            .slide-text {
                font-size: clamp(1.5rem, 6vw, 3rem);
            }

            .nav-btn {
                padding: 10px 15px;
                font-size: 18px;
            }

            .indicator-line {
                width: 25px;
            }

            .indicator-line.active {
                width: 35px;
            }
        }
