
 
        .jiayi-header {
            text-align: center;
            margin-bottom: 30px;
            max-width: 800px;
        }
        
        .jiayi-title {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .jiayi-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 25px;
        }
        
        .jiayi-slider-container {
            width: 80%;
             margin-top: 36px;
            height: 500px;
            position: relative;
            overflow: hidden;    margin: 0 auto;
           
        }
        
        .jiayi-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease, transform 1.2s ease;
            transform: scale(1.05);
        }
        
        .jiayi-slide.jiayi-active {
            opacity: 1;
            transform: scale(1);
            z-index: 10;
        }
        
        .jiayi-slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .jiayi-slide-content {
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 90%;
            max-width: 1200px;
            z-index: 20;
        
        }
        
        .jiayi-slide-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            color: #fff;
        }
        
        .jiayi-slide-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            line-height: 1.6;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
            color: #f8f8f8;
        }
        
        .jiayi-slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 30;
            display: flex;
            gap: 15px;
        }
        
        .jiayi-slider-btn {
            width: 12px;
            height: 11px;
            border-radius: 50%;
            background: rgba(255,255,255,0.6);
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }
        
        .jiayi-slider-btn.jiayi-active {
            background: #fff;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255,255,255,0.8);
        }
        
        .jiayi-slider-btn:hover {
            background: rgba(255,255,255,0.9);
            transform: scale(1.3);
        }
        
        .jiayi-autoplay-control {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 30;
            background: rgba(0,0,0,0.5);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .jiayi-autoplay-control:hover {
            background: rgba(0,0,0,0.7);
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .jiayi-slide-title {
                font-size: 2.2rem;
            }
            
            .jiayi-slide-subtitle {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 600px) {
            .jiayi-title {
                font-size: 2.2rem;
            }
            
            .jiayi-slide-title {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }
            
            .jiayi-slide-subtitle {
                font-size: 1rem;
            }
            
            .jiayi-slide-content {
                padding: 20px;
                width: 95%;
            }
            
            .jiayi-slider-controls {
                bottom: 15px;
            }
            
            .jiayi-slider-btn {
                width: 14px;
                height: 14px;
            }
        }
        
        .jiayi-footer {
            margin-top: 40px;
            text-align: center;
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }
        
        .jiayi-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            max-width: 800px;
        }
        
        .jiayi-feature {
            background: rgba(255,255,255,0.1);
            padding: 15px 20px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .jiayi-feature i {
            color: #fdbb2d;
            font-size: 1.2rem;
        }

	  .layout-module * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* 布局模块样式 */
        .layout-module {
            --primary-color: #2c3e50;
            --secondary-color: #7f8c8d;
            --background-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            --card-bg: white;
            --shadow-color: rgba(0, 0, 0, 0.1);
         
            color: #333;
          
            
        }
        
        .layout-module__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .layout-module__header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .layout-module__title {
            font-size: 2.5rem;
            color: var(--primary-color);
               margin-bottom: 12px;
    margin-top: 18px;
        }
        
        .layout-module__subtitle {
               font-size: 24px;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
        }
        
        .layout-module__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;    margin-top: 58px;
        }
        
        .layout-module__card {
            background: var(--card-bg);
          
            overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
          
        }
        
        .layout-module__card:hover {
            transform: translateY(-5px);
         
        }
        
        .layout-module__image-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
          
            min-height: 375px;
        }
        
        .layout-module__text-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 27px;
            min-height: 375px;
            text-align: center;    background-color: #efefef;
        }
        
        .layout-module__image-box {
            width: 48.2%;
            height: 375px;
          
            overflow: hidden;
          
            transition: transform 0.3s ease;
        }
			
			
			.w100 {
    width: 100%!important;
}
			
			
        
        .layout-module__image-box:hover {
            transform: scale(1.05);
        }
        
        .layout-module__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .layout-module__text-title {
            font-size: 1.8rem;
            color: #e9530d;
            margin-bottom: 20px;
        }
        
        .layout-module__text-content {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--secondary-color);
            max-width: 90%;    text-align: left;
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .layout-module__grid {
                grid-template-columns: 1fr;
            }
            
            .layout-module__image-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .layout-module__image-box {
                width: 80%;
            }
        }
        
        @media (max-width: 600px) {
            .layout-module__title {
                font-size: 2rem;
            }
            
            .layout-module__subtitle {
                font-size: 1rem;
            }
            
            .layout-module__image-box {
                width: 100%;
            }
            
            .layout-module__text-title {
                font-size: 1.5rem;
            }
            
            .layout-module__text-content {
                font-size: 1rem;
            }
        }
        
        .layout-module__footer {
            text-align: center;
            margin-top: 50px;
            color: var(--secondary-color);
            font-size: 0.9rem;
        }	 

		 /* 或者使用伪元素覆盖方案（二选一） */
.jiayi-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(94, 43, 177, 0.3), rgba(23, 1, 50, 0.3));
    z-index: 15;
    mix-blend-mode: overlay;
    opacity: 0.7;
}

.jiayi-slide.jiayi-active::before {
    opacity: 0.8;
}
			
		.layout-module__text-content p {
    color: #000000;
    font-size: 17px;
}
			
	      .jy-body {
            background: #efefef;
              margin-top: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
           margin: 0 auto;
    width: 80%;
        }
        
        .jy-container {
            max-width: 1200px;
            width: 100%;
            padding: 30px 20px;
        }
        
        .jy-section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
        }
        
        .jy-section-title h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;    margin-top: 1em;
        }
        
        .jy-section-title p {
               font-size: 24px;
    color: #000000;
        }
        
        .jy-product-carousel {
            position: relative;
          
            padding: 20px 0;
        }
        
        .jy-product-container {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            gap: 25px;
            padding: 15px 5px;
            scroll-snap-type: x mandatory;
        }
        
        .jy-product-container::-webkit-scrollbar {
            display: none;
        }
        
        .jy-product-card {
            position: relative;
            flex: 0 0 calc(33.333% - 20px);
            scroll-snap-align: start;
           
            border-radius: 15px;
            overflow: visible;
       
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            margin-bottom: 40px;
        }
        
        .jy-product-card:hover {
            transform: translateY(-5px);
            
        }
        
        .jy-product-image {
            width: 100%;
           
            object-fit: cover;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        
        .jy-product-info {
            padding: 20px 20px 10px 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .jy-product-title {
               font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    margin-top: 0em;
    letter-spacing: 0px;
        }
        
        .jy-product-subtitle {
            font-size: 16px;
            color: #7f8c8d;
            margin-bottom: 0px;
            line-height: 1.4;
        }
        
        .jy-product-price {
            margin-top: auto;
            font-size: 1.3rem;
            font-weight: 700;
            color: #e74c3c;
            margin-bottom: 20px;
        }
        .scheme_default a {
    color: #333333;
    font-size: 16px;    font-weight: 600;
}
        .jy-view-details {
               padding: 0px 20px 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 20;
    white-space: nowrap;
    text-align: left;
        }
        

.language-switcher span a {
   
    font-weight: 500!important;
}




			
		.icon-left-big {
    color: #ffffff;
    font-weight: bolder;
}
			
		.icon-right-big {
    color: #ffffff;
    font-weight: bolder;
}
				
     
        .jy-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #000000;
           
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .jy-arrow:hover {
            background: #3498db;
            color: white;
        }
        
        .jy-arrow-left {
            left: -85px;
        }
        
        .jy-arrow-right {
            right: -80px;
        }
        
        .jy-arrow i {
            font-size: 20px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .jy-product-card {
                flex: 0 0 calc(50% - 15px);
            }
            
            .jy-arrow-left {
                left: -15px;
            }
            
            .jy-arrow-right {
                right: -15px;
            }
        }
        
        @media (max-width: 576px) {
            .jy-product-card {
                flex: 0 0 100%;
            }
            
            .jy-arrow {
                width: 40px;
                height: 40px;
            }
            
            .jy-arrow-left {
                left: -10px;
            }
            
            .jy-arrow-right {
                right: -10px;
            }
            
            .jy-section-title h1 {
                font-size: 2rem;
            }
        }
        
        .jy-indicator {
            display: flex;
            justify-content: center;
            margin-top: 0px;
            gap: 8px;
        }
        
        .jy-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #bdc3c7;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .jy-dot.jy-active {
            background: #000000;
            transform: scale(1.2);
        }	
			
			   .jh-carousel-container {
               padding-top: 40px;
            width: 100%;
            background: white;
           
              margin: 0 auto;
            overflow: hidden;
           
            position: relative;
        }
        
        .jh-carousel-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .jh-carousel-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .jh-carousel-description {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* 轮播内容区域 */
        .jh-carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 500px;
        }
        
        .jh-carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            height: 100%;
        }
        
        .jh-carousel-slide {
            flex: 0 0 100%;
            display: flex;
            position: relative;
        }
        
        .jh-left-panel, .jh-right-panel {
            flex: 1;
         
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .jh-left-panel {
               background-image: url(/uploadfile/202509/0f35a9588cad929.jpg);
            text-align: center;
            transition: transform 0.7s ease-out;
        }
        
        .jh-right-panel {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            overflow: hidden;
            transition: transform 0.7s ease-out;
        }
        
        /* 中间装饰元素 - 固定位置 */
        .jh-center-decoration {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 20;
           
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 35px;
        }
        
        /* 文本样式 */
        .jh-text-content {
               max-width: 100%;
    padding: 20px 170px 20px 30px;
    text-align: left;
        }
        
        .jh-text-title {
            font-size: 2rem;
            color: #3498db;
            margin-bottom: 20px;    font-family: "阿里妈妈方圆体 VF Regular", sans-serif;
        }
        
        .jh-text-paragraph {
            font-size: 1rem;
            margin-bottom: 15px;
            color: #555;
        }
        
        /* 图片样式 */
        .jh-image-container {
            width: 100%;
            height: 100%;
          
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .jh-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        /* 指示器 */
        .jh-carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 30px;    margin-bottom: 6px;
        }
        
        .jh-indicator {
            width: 14px;
            height: 14px;
            background: #95a5a6;
            border-radius: 50%;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .jh-indicator.active {
            background: #333333;
            transform: scale(1.2);
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .jh-carousel-slide {
                flex-direction: column;
            }
            
            .jh-center-decoration {
                top: auto;
                bottom: -40px;
                transform: translateX(-50%);
            }
            
            .jh-carousel-title {
                font-size: 2rem;
            }
            
            .jh-text-title {
                font-size: 1.6rem;
            }
            
            .jh-carousel-wrapper {
                height: auto;
                min-height: 700px;
            }
        }
        
        /* 动画效果 */
        .jh-animate-left {
            animation: slideInLeft 0.7s ease-out;
        }
        
        .jh-animate-right {
            animation: slideInRight 0.7s ease-out;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* 装饰元素 */
        .jh-decoration {
            position: absolute;
            border-radius: 50%;
            background: rgba(52, 152, 219, 0.1);
            z-index: -1;
        }
        
        .jh-decoration-1 {
            width: 150px;
            height: 150px;
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }
        
        .jh-decoration-2 {
            width: 100px;
            height: 100px;
            bottom: 10%;
            right: 5%;
            animation: float 10s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }
        
        /* 自动播放控制 */
        .jh-autoplay-control {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;    display: none;
        }
        
        .jh-autoplay-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .jh-autoplay-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
			
		.jggh	{    width: 80%;
    
   
    margin: 0 auto; }
			
			.tdx {
    text-transform: uppercase;
}
			
