@charset 'utf-8'; .productdetail {
    padding: 46px 0;
}
    /* 详情页容器 */
        .product-detail-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 58% 40%;
            gap: 4%;
            align-items: flex-start;
        }

        /* 左侧轮播区域 */
        .swiper-container {
            width: 100%;
            display: grid;
            grid-template-columns: 18% 80%;
            gap: 2%;
        }

        /* 缩略图轮播 */
        .swiper-thumbs {
           height: 865px!important;
        }

       .swiper-container-thumbs .swiper-slide {
            width: 100%;
            height: auto!important;
            
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .swiper-thumb-slide-active {
            opacity: 1;
            border: 2px solid #34b768;
        }

        .swiper-thumb-slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 主图轮播 */
        .swiper-main {
            height: auto;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

        .swiper-main-slide img {
            width: 100%;
            height: auto;
            display: block;
        }
.swiper-slide  img{width:100%}
        /* 右侧产品信息 */
        .product-info {
            padding: 10px 0;
        }

        .product-title {
            font-size: 24px;
            font-weight: 700;
            color: #222222;
            line-height: 1.4;
            margin-bottom: 24px;
        }

        /* 产品属性 */
        .product-attributes {
            margin-bottom: 32px;
        }

        .attribute-item {
            display: flex;
            margin-bottom: 12px;
            font-size: 15px;
            line-height: 1.5;
        }

        .attribute-label {
            width: 140px;
            color: #555555;
            font-weight: 500;
        }

        .attribute-value {
            color: #333333;
        }

        /* 产品简介 */
        .product-brief {
            font-size: 15px;
            color: #555555;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        /* 按钮组 */
        .product-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .customize-btn {
            padding: 12px 32px;
            background-color: #000000;
            color: #ffffff;
            border: none;
            border-radius: 2px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .customize-btn:hover {
            background-color: #333333;
        }

        .contact-btn {
            padding: 12px 32px;
            background-color: #34b768;
            color: #ffffff;
            border: none;
            border-radius: 2px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact-btn:hover {
            background-color: #2da358;
        }

        /* 展开收缩面板 - 核心优化部分 */
        .accordion-panel {
            border-top: 1px solid #eeeeee;
            margin-bottom: 8px;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: #222222;
            transition: color 0.3s ease;
        }

        .accordion-header:hover {
            color: #34b768;
        }

        .accordion-icon {
            font-size: 20px;
            color: #555555;
            /* 优化：延长图标旋转动画时长，添加缓动曲线 */
            transition: transform 0.6s ease-in-out, color 0.6s ease-in-out;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            /* 核心优化：动画时长从0.3s改为0.6s，使用ease-in-out缓动更自然 */
            transition: max-height 0.6s ease-in-out, padding 0.6s ease-in-out;
            padding: 0 0;
            font-size: 15px;
            color: #555555;
            line-height: 1.7;
        }

        .accordion-panel.active .accordion-content {
            max-height: 500px;
            padding: 5px;
        }

        .accordion-panel.active .accordion-icon {
            transform: rotate(45deg);
            color: #34b768;
        }

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

            .swiper-container {
                grid-template-columns: 1fr;
            }

            .swiper-thumbs {
                display: none; /* 平板端隐藏缩略图，使用默认轮播切换 */
            }

            .product-title {
                font-size: 22px;
            }

            .product-buttons {
                gap: 12px;
            }

            .customize-btn, .contact-btn {
                padding: 10px 24px;
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .product-title {
                font-size: 20px;
            }

            .attribute-item {
                flex-direction: column;
                margin-bottom: 16px;
            }

            .attribute-label {
                width: 100%;
                margin-bottom: 4px;
            }

            .product-buttons {
                flex-direction: column;
            }

            .customize-btn, .contact-btn {
                width: 100%;
            }
        }
		
		
		
		
		
		
		
		
/* 		/////////////////////////////////////////// */
		
		
		
		
		
		
		
		
	
        /* 尺寸详情容器 */
        .size-detail-container {
            /* max-width: 1400px; */
            margin: 0 auto;
            margin-bottom: 50px;
        }

        /* 标题样式 */
        .size-title {
            font-size: 40px;
            font-weight: 700;
            color: #222222;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        /* 简介文本 */
        .size-brief {
            font-size: 16px;
            color: #555555;
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 100%;
        }

        /* 尺寸表格容器（处理响应式滚动） */
        .size-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; /* 移动端顺滑滚动 */
        }

        /* 尺寸表格样式 */
        .size-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
            color: #333333;
        }

        /* 表格表头 */
        .size-table thead tr {
            background-color: #f8f8f8;
        }

        .size-table th {
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            color: #222222;
            border: none;
        }

        /* 表格内容行 */
        .size-table tbody tr {
            border-bottom: 1px solid #f0f0f0;
        }

        /* 隔行变色（匹配参考图视觉） */
        .size-table tbody tr:nth-child(even) {
            background-color: #f8f8f8;
        }

        .size-table td {
            padding: 12px 16px;
            text-align: left;
            border: none;
        }

        /* 尺寸值样式 */
        .size-value {
            color: #555555;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .size-title {
                font-size: 28px;
            }
            .size-brief {
                font-size: 15px;
            }
            .size-table {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .size-title {
                font-size: 24px;
            }
            .size-brief {
                font-size: 14px;
            }
            .size-table th,
            .size-table td {
                padding: 10px 12px;
            }
        }	
		
		
		
/* /////////////////////////////////////////	 */	
		
		
   /* FAQ容器 */
        .faq-container {
            /* max-width: 1200px; */
            margin: 0 auto;
            margin-bottom: 50px;
        }

        /* FAQ标题 */
        .faq-title {
            font-size: 40px;
            font-weight: 700;
            color: #222222;
            line-height: 1.2;
            margin-bottom: 40px;
        }

        /* FAQ面板列表 */
        .faq-panel-list {
            border-top: 1px solid #eeeeee;
        }

        /* 单个FAQ面板 */
        .faq-panel {
            border-bottom: 1px solid #eeeeee;
            padding: 20px 0;
        }

        /* FAQ面板头部（序号+问题+展开按钮） */
        .faq-panel-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            cursor: pointer;
        }

        /* 序号样式 */
        .faq-number {
            font-size: 18px;
            font-weight: 700;
            color: #34b768;
            margin-right: 16px;
            line-height: 1.4;
        }

        /* 问题文本 */
        .faq-question {
            flex: 1;
            font-size: 18px;
            font-weight: 600;
            color: #222222;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .faq-panel-header:hover .faq-question {
            color: #34b768;
        }

        /* 展开/收起按钮 */
        .faq-toggle {
            font-size: 24px;
            color: #555555;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease, transform 0.6s ease-in-out;
        }

        .faq-panel.active .faq-toggle {
            color: #34b768;
            transform: rotate(45deg);
        }

        /* FAQ回答内容 */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s ease-in-out, padding 0.6s ease-in-out;
            padding: 0 0 0 48px; /* 缩进匹配序号宽度 */
            margin-top: 0;
            font-size: 16px;
            color: #555555;
            line-height: 1.7;
        }

        .faq-panel.active .faq-answer {
            max-height: 500px;
            padding: 12px 0 8px 48px;
            margin-top: 4px;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .faq-title {
                font-size: 32px;
            }
            .faq-number {
                font-size: 16px;
            }
            .faq-question {
                font-size: 16px;
            }
            .faq-answer {
                font-size: 15px;
            }
        }

        @media (max-width: 576px) {
            .faq-title {
                font-size: 22px;
                margin-bottom: 32px;
            }
            .faq-panel {
                padding: 16px 0;
            }
            .faq-number {
                font-size: 15px;
                margin-right: 12px;
            }
            .faq-question {
                font-size: 15px;
            }
            .faq-answer {
                padding-left: 36px;
                font-size: 14px;
            }
            .faq-panel.active .faq-answer {
                padding-left: 36px;
            }
        }





/* ///////////////////////////// */		
   /* 案例展示容器 */
        .case-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* 板块标题 */
        .case-title {
            font-size: 40px;
            font-weight: 700;
            color: #222222;
            margin-bottom: 32px;
            line-height: 1.2;
        }

        /* 案例网格布局 */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4列布局，匹配参考图 */
            gap: 20px;
        }

        /* 单个案例卡片 */
        .case-card {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .case-card:hover {
            transform: translateY(-5px); /* 悬浮轻微上浮，增强交互 */
        }

        /* 案例图片 */
        .case-img {
            width: 100%;
            height: auto;
            display: block;
            margin-bottom: 12px;
            border-radius: 2px;
        }

        /* 案例名称 */
        .case-name {
            font-size: 14px;
            font-weight: 500;
            color: #333333;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        /* Get a Quote按钮 */
        .case-quote-btn {
            font-size: 13px;
            color: #34b768;
            text-decoration: none;
            font-weight: 500;
            transition: text-decoration 0.3s ease;
        }

        .case-quote-btn:hover {
            text-decoration: underline;
        }

        /* 响应式适配 */
        @media (max-width: 1200px) {
            .case-grid {
                grid-template-columns: repeat(3, 1fr); /* 大屏平板显示3列 */
            }
        }

        @media (max-width: 992px) {
            .case-title {
                font-size: 24px;
            }
            .case-grid {
                grid-template-columns: repeat(2, 1fr); /* 平板显示2列 */
                gap: 16px;
            }
            .case-name {
                font-size: 13px;
            }
            .case-quote-btn {
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .case-title {
                font-size: 20px;
                margin-bottom: 24px;
            }
            .case-grid {
                grid-template-columns: 1fr; /* 手机显示1列 */
                gap: 24px;
            }
            .case-img {
                margin-bottom: 10px;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		