/* CSS Document */

.unique-carousel-container-xyz987 {
            position: relative;
            margin: 0 auto;
            overflow: hidden;
			padding:10px;
			background-color:#fff;
			
        }

        .unique-carousel-track-xyz987 {
            display: flex;
            transition: transform 0.5s ease;
        }

        .unique-carousel-slide-xyz987 {
            min-width: calc(25% - 15px);
            box-sizing: border-box;
            margin: 0 5px;
			
        }

        .unique-carousel-slide-xyz987 img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }

        .unique-slide-caption-xyz987 {
            text-align: center;
            margin-top: 8px;
            font-size: 14px;
            color: #333;
        }

        .unique-carousel-arrow-xyz987 {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: #ff3333;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 1;
            transition: background-color 0.3s;
        }

        .unique-carousel-arrow-xyz987:hover {
            background-color: #cc0000;
        }

        .unique-arrow-left-xyz987 {
            left: 10px;
        }

        .unique-arrow-right-xyz987 {
            right: 10px;
        }

        @media (max-width: 768px) {
            .unique-carousel-slide-xyz987 {
                min-width: calc(50% - 10px);
            }
            .unique-carousel-arrow-xyz987 {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
            .unique-arrow-left-xyz987 {
                left: 5px;
            }
            .unique-arrow-right-xyz987 {
                right: 5px;
            }
        }

        @media (max-width: 480px) {
            .unique-carousel-slide-xyz987 {
                min-width: calc(100% - 10px);
            }
        }

        button {
            appearance: none;
            -webkit-appearance: none;
        }
		   /* 核心容器样式 - 响应式高度+宽度 */
        .cable-industry-switch-container {
            width: 100%;
            min-height: 300px;
            height: 100vh; /* 移动端占满视口高度 */
            max-height: 600px; /* PC端最大高度限制 */
            display: flex;
            position: relative;
            overflow: hidden;
        }

        /* 图片文字展示区域 */
        .cable-industry-content-wrapper {
            flex: 1;
            position: relative;
            height: 100%;
        }

        /* 每张内容卡片样式 */
        .cable-industry-content-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 20px; /* 基础内边距，响应式调整 */
            color: #fff;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.8s ease, transform 0.8s ease;
            transform: translateX(50px);
            pointer-events: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* 激活的内容卡片样式 */
        .cable-industry-content-card.active-card {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }

        /* 文字样式 - 响应式字号 */
        .cable-industry-content-card h2 {
            font-size: clamp(1.5rem, 3vw, 2rem); /* 自适应字号 */
            margin-bottom: 15px;
            
        }

        .cable-industry-content-card p {
            font-size: clamp(0.875rem, 1.5vw, 1rem); /* 自适应字号 */
            line-height: 1.6;
            max-width: 100%; /* 移动端取消宽度限制 */
            margin-bottom: 10px;
        }

        /* 查看详情按钮 */
        .cable-industry-detail-link {
            display: inline-block;
            margin-top: 20px;
            padding: 8px 20px;
            border: 1px solid #fff;
            border-radius: 25px;
            color: #fff;
            text-decoration: none;
            font-size: clamp(0.75rem, 1.2vw, 0.875rem);
            transition: background-color 0.3s ease;
            align-self: flex-start; /* 按钮左对齐 */
        }

        .cable-industry-detail-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }


        .cable-industry-switch-group {
            position: absolute;
            right: 15px; /* 移动端缩小边距 */
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 8px; /* 移动端缩小间距 */
            z-index: 1;
        }

        /* 切换按钮样式 - 响应式尺寸 */
        .cable-industry-switch-btn {
            width: clamp(80px, 15vw, 170px); /* 自适应宽度 */
            height: clamp(60px, 12vw,120px); /* 自适应高度 */
            background-color: rgba(0, 50, 100, 0.8);
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background-color 0.3s ease;
            border-radius: 4px; /* 增加圆角更美观 */
        }

        /* 激活的按钮样式 */
        .cable-industry-switch-btn.active-btn {
            background-color: #0066cc;
        }

        .cable-industry-switch-btn:hover {
            background-color: rgba(0, 80, 150, 0.9);
        }

        /* 图标样式（简化版）- 响应式尺寸 */
        .cable-industry-btn-icon {
            width: clamp(18px, 3vw, 24px); /* 自适应图标大小 */
            height: clamp(18px, 3vw, 24px);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        /* 三个按钮的图标 */
        .cable-icon-production {
       
		 background: url(../image/mf_adv_ico01.png) no-repeat center / cover;
        }

        .cable-icon-detection {
         background: url(../image/mf_adv_ico02.png) no-repeat center / cover;
        }

        .cable-icon-material {
           background: url(../image/mf_adv_ico03.png) no-repeat center / cover;
        }

        /* PC端适配（屏幕宽度>768px） */
        @media (min-width: 768px) {
            .cable-industry-content-card {
                padding-left: 100px; 
            }
            
            .cable-industry-content-card p {
                max-width: 600px;
            }
            
            .cable-industry-switch-group {
                right:85px; 
                gap: 10px; 
            }
        }
        @media (min-width: 1200px) {
            .cable-industry-switch-container {
                height: 700px; 
				border-radius:10px;
            }
        }