/* 自定义内容样式 - 应用案例和解决方案统一样式 */

/* ========== 通用容器样式 ========== */
.solutions-container {
    margin: 0 auto;
    padding: 20px;
    background-color: #f6f6f6;
    padding-bottom: 50px;
}

.solution-box {
    max-width: 1440px;
    /*! background: #fff; */
    border-radius: 8px;
    /*! box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    margin: 0 auto;
}

/* ========== 面包屑导航 ========== */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
    color: #007cba;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span:last-of-type {
    color: #e71d16;
    font-weight: 700;
}

.breadcrumb-item {
    color: #666;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #007cba;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* ========== 分类头部样式 ========== */


.category-banner {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.category-banner-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.category-info {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.category-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.category-description {
    font-size: 16px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.category-header-simple {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.category-header-simple h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

/* ========== 网格布局样式 ========== */
.solutions-grid,
.industry-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 25px;
    margin-bottom: 40px;
    justify-content: start;
}

.industry-box {
    gap: 30px;
    margin-top: 20px;
}

/* ========== 卡片样式 ========== */
.solution-card,
.item-box,
.industry-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card {
    border: 1px solid #e1e1e1;
}

.industry-item {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.solution-card:hover,
.item-box:hover,
.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.industry-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ========== 缩略图样式 ========== */
.solution-thumbnail,
.item-banner {
    height: 200px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
}

.solution-thumbnail img,
.item-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-thumbnail img,
.item-box:hover .item-banner img {
    transform: scale(1.05);
}

/* Banner容器样式 */
.item-banner-container {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.item-banner-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 124, 186, 0.8), rgba(0, 86, 128, 0.8));
}

.item-banner-container h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding: 0 20px;
    line-height: 1.4;
}

.item-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
}

/* ========== 内容样式 ========== */
.solution-content,
.item-content,
.item-content-container {
    padding: 20px;
}

.item-content-container {
    padding: 25px;
}

.solution-content h3,
.item-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
}

.solution-content h3 {
    margin-bottom: 10px;
}

.solution-content h3 a,
.item-content-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-content h3 a:hover,
.item-content-link:hover {
    color: #007cba;
}

.solution-description,
.item-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.solution-description {
    margin-bottom: 15px;
}

.item-banner .item-title {
    color: white;
}

.item-banner .item-description {
    color: rgba(255,255,255,0.9);
}

/* ========== 链接样式 ========== */
.item-content-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.item-content-link:last-child {
    border-bottom: none;
}

.item-content-link span {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.item-content-link i {
    font-size: 12px;
    opacity: 0.6;
    color: #999;
    transition: transform 0.3s ease, color 0.3s ease;
}

.item-content-link:hover i {
    transform: translateX(3px);
    color: #007cba;
}

.read-more {
    display: inline-block;
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.read-more:hover {
    color: #005a87;
}

/* ========== 元数据样式 ========== */
.solution-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    gap: 20px;
}

.solution-category {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    color: #666;
}

/* ========== 解决方案详情页样式 ========== */
.solution-item-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    padding: 60px;
}

.item-wrapper-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.ad-container {
    flex: 0 0 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.ad-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ad-container:hover img {
    transform: scale(1.05);
}

.solution-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-item-content h2 {
    font-size: 24px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
    line-height: 1.4;
}

.solution-item-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.intro.ql-editor {
    padding: 30px;
    background: #f8f9fa;
    margin-top: 30px;
    border-radius: 5px;
}

.intro.ql-editor p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.solution-detail {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.solution-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.solution-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.solution-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.solution-summary p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.solution-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.categories-label {
    color: #666;
    font-weight: 500;
}

.category-tag {
    background: #007cba;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.category-tag:hover {
    background: #005a87;
    color: #fff;
}

.solution-featured-image {
    margin-bottom: 30px;
    text-align: center;
}

.solution-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.solution-content {
    line-height: 1.8;
    color: #333;
}

.solution-content h2,
.solution-content h3,
.solution-content h4 {
    color: #333;
    margin-bottom: 15px;
}

.solution-content p {
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.solution-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
}

.solution-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* ========== 相关解决方案 ========== */
.related-solutions {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.related-solutions h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.related-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-solution-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.related-solution-card:hover {
    transform: translateY(-3px);
}

.related-thumbnail {
    height: 150px;
    overflow: hidden;
}

.related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 15px;
}

.related-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.related-content h3 a {
    color: #333;
    text-decoration: none;
}

.related-content h3 a:hover {
    color: #007cba;
}

.related-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ========== 空状态样式 ========== */
.no-content,
.no-categories,
.no-cases,
.no-solutions {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

.no-categories {
    grid-column: 1 / -1;
    padding: 40px 20px;
    color: #999;
}

/* ========== 分页样式 ========== */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #007cba;
    color: #fff;
    border-color: #007cba;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-weight: bold;
    font-weight: 500;
}

/* ========== 图标字体支持 ========== */
.web {
    font-family: 'iconfont', sans-serif;
}

.web-a-next:before {
    content: '→';
    font-weight: bold;
}

.series-cell.image-cell {
  padding: 0 !important;
}

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
    .solutions-container {
        padding: 10px;
    }
    
    
    
    /* 筛选器响应式 */
    .product-filter-section {
        padding: 15px 20px;
        margin: 20px 0 30px 0;
        gap: 15px;
    }
    
    .product-filter-section .filter-label {
        font-size: 14px;
        width: 100%;
    }
    
    .product-filter-section .filter-buttons {
        width: 100%;
    }
    
    .product-filter-section .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .solutions-grid,
    .industry-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .category-banner {
        height: 200px;
    }
    
    .category-info h1 {
        font-size: 24px;
    }
    
    .category-description {
        font-size: 14px;
    }
    
    /* 解决方案详情页移动端适配 */
    .item-wrapper-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .ad-container {
        flex: none;
        width: 100%;
        height: 200px;
    }
    
    .solution-item-content h2 {
        font-size: 20px;
    }
    
    .intro.ql-editor {
        padding: 20px;
    }
    
    .item-banner-container {
        height: 120px;
    }
    
    .item-banner-container h3 {
        font-size: 16px;
    }
    
    .item-content-container {
        padding: 15px;
    }
    
    /* 详情页移动端适配 */
    .solution-detail {
        padding: 20px;
    }
    
    .solution-title {
        font-size: 24px;
    }
    
    .related-solutions-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .solution-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========== 案例详情页面样式 ========== */
.single-case {
    padding: 40px 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-separator {
    margin: 0 8px;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

.case-header {
    margin-bottom: 40px;
}

.case-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
}

.case-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #666;
}

.case-category a {
    color: #007cba;
    text-decoration: none;
}

.case-category a:hover {
    text-decoration: underline;
}

.case-featured-image {
    margin-bottom: 30px;
    text-align: center;
}

.case-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.case-content {
    line-height: 1.8;
    font-size: 1.1em;
    color: #444;
    margin-bottom: 40px;
}

.case-content h2,
.case-content h3,
.case-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.case-content p {
    margin-bottom: 20px;
}

.case-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

@media (max-width: 480px) {
   
    /* 筛选器小屏幕优化 */
    .product-filter-section {
        padding: 12px 15px;
        margin: 15px 0 25px 0;
        gap: 12px;
    }
    
    .product-filter-section .filter-label {
        font-size: 13px;
    }
    
    .product-filter-section .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    
    .item-wrapper-container {
        padding: 15px;
    }
    
    .ad-container {
        height: 150px;
    }
    
    .solution-item-content h2 {
        font-size: 18px;
    }
    
    .intro.ql-editor {
        padding: 15px;
    }
    
    .intro.ql-editor p {
        font-size: 14px;
    }
    
    .item-banner-container {
        height: 140px;
    }
    
    .item-banner-container h3 {
        font-size: 16px;
    }
    
    .item-content-container {
        padding: 15px;
    }
    
    .item-content-link {
        padding: 10px 0;
    }
    
    .breadcrumb-item {
        font-size: 13px;
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    .case-title {
        font-size: 2em;
    }
    
    .case-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* 分层级产品分类页面样式 */
.main-category-title {
    font-size: 3em;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 15px;
}

.main-category-description {
    font-size: 1.2em;
    color: #666;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.8;
}

.main-category-detailed-description {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 5px solid #007cba;
}

.second-level-category-section {
    margin-bottom: 50px;
    padding: 30px;
    /*! background: #fff; */
    border-radius: 10px;
    /*! box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    border: 1px solid #e9ecef;
}

.second-category-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e5e5;
}

.second-category-title {
    font-size: 2.2em;
    color: #e71d16;
    margin-bottom: 10px;
    font-weight: 600;
}

.second-category-description {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

.product-table-section {
    margin: 25px 0;
}

.hierarchical-product-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hierarchical-product-table th {
    background: linear-gradient(135deg, #007cba 0%, #005a8b 100%);
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
    border: 1px solid #005a8b;
}

.hierarchical-product-table td {
    padding: 12px 10px;
    text-align: center;
    border: 1px solid #ddd;
    vertical-align: middle;
}

.hierarchical-product-table .series-cell {
    background-color: rgba(0, 124, 186, 0.1);
    font-weight: 600;
    color: #007cba;
    min-width: 120px;
}

.hierarchical-product-table .type-cell {
    background-color: rgba(231, 29, 22, 0.1);
    font-weight: 600;
    color: #e71d16;
    min-width: 100px;
}

.hierarchical-product-table .image-cell {
    width: 80px;
    padding: 8px;
}

.hierarchical-product-table .image-cell img {
    max-width: 60px;
    height: auto;
    border-radius: 4px;
}

.hierarchical-product-table .name-cell {
    text-align: left;
    min-width: 200px;
}

.hierarchical-product-table .name-cell a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hierarchical-product-table .name-cell a:hover {
    color: #e71d16;
    text-decoration: underline;
}

.hierarchical-product-table .description-cell {
    text-align: left;
    color: #666;
    line-height: 1.5;
    max-width: 300px;
}

.hierarchical-product-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.hierarchical-product-table tbody tr:hover {
    background-color: rgba(0, 124, 186, 0.05);
}

.second-category-detailed-description {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 8px;
}

.second-category-detailed-description h3 {
    color: #e71d16;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-subcategories {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1em;
}

/* 微矩形表格特定样式 */
.hierarchical-product-table.micro_rectangle-table th {
    background: linear-gradient(135deg, #007cba 0%, #005a8b 100%);
}

.hierarchical-product-table.micro_rectangle-table .series-cell {
    background-color: rgba(0, 124, 186, 0.15);
    border-left: 3px solid #007cba;
}

/* 圆形表格特定样式 */
.hierarchical-product-table.circular-table th {
    background: linear-gradient(135deg, #e71d16 0%, #c41e3a 100%);
}

.hierarchical-product-table.circular-table .series-cell {
    background-color: rgba(231, 29, 22, 0.15);
    border-left: 3px solid #e71d16;
}

/* 分层级响应式设计 */
@media (max-width: 1200px) {
    .hierarchical-product-table {
        font-size: 0.9em;
    }
    
    .hierarchical-product-table th,
    .hierarchical-product-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 768px) {
    .main-category-title {
        font-size: 2.2em;
    }
    
    .second-category-title {
        font-size: 1.8em;
    }
    
    .second-level-category-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .hierarchical-product-table {
        font-size: 0.8em;
    }
    
    .hierarchical-product-table th,
    .hierarchical-product-table td {
        padding: 8px 5px;
    }
    
    .hierarchical-product-table .description-cell {
        max-width: 150px;
        font-size: 0.85em;
    }
    
    /* 在移动端隐藏描述列以节省空间 */
    .hierarchical-product-table .description-header,
    .hierarchical-product-table .description-cell {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-category-title {
        font-size: 1.8em;
    }
    
    .second-category-title {
        font-size: 1.5em;
    }
    
    .hierarchical-product-table {
        font-size: 0.75em;
    }
    
    .hierarchical-product-table .image-cell {
        width: 60px;
    }
    
    .hierarchical-product-table .image-cell img {
        max-width: 40px;
    }
}

/* ========== 产品筛选器样式 ========== */
.product-filter-section {
    margin: 30px 0 40px 0;
    padding: 20px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-filter-section .filter-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.product-filter-section .filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-filter-section .filter-btn {
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    align-items: center;
    display: grid;
    justify-items: center;
}

.product-filter-section .filter-btn:hover {
    background: #e9ecef;
    border-color: #0066cc;
    color: #0066cc;
}

.product-filter-section .filter-btn.active {
    background: #0066cc;
    border-color: #0066cc;
    color: #fff;
    font-weight: 600;
}

.product-filter-section .filter-btn.active:hover {
    background: #0052a3;
    border-color: #0052a3;
}

/* ========== 产品表格样式 ========== */
.product-section {
    margin-bottom: 60px;
}

.product-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 0 15px 0;
    position: relative;
    border-bottom: 2px solid #e5e5e5;
}

.product-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 120px;
    height: 2px;
    background: #0066cc;
}

.product-table-container {
    overflow-x: auto;
    background: #fff;
}

.product-table {
    width: 100%;
    min-width: 1200px; /* 确保表格有最小宽度 */
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

/* 确保竖向表格容器不受横向表格样式影响 */
.vertical-table-container.product-table-container {
    min-width: auto;
}

.product-table thead {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: #fff;
}

.product-table th {
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #ddd;
    white-space: nowrap;
    position: relative;
}

.product-table th.series-header {
    min-width: 120px;
    /*! background: linear-gradient(135deg, #e71d16, #b91612); */
}

.product-table th.type-header {
    min-width: 80px;
}

.product-table tbody tr {
    transition: background-color 0.3s ease;
}

.product-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.product-table tbody tr:hover {
    background-color: #f0f8ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-table td {
    padding: 12px 10px;
    text-align: center;
    border: 1px solid #ddd;
    vertical-align: middle;
    white-space: nowrap;
}

/* 产品表格图片列样式 */
.product-table .image-header {
    width: 100px;
    text-align: center;
    /*! background-color: #f8f9fa; */
    font-weight: 600;
    /*! color: #333; */
}

.product-table .image-cell {
    width: 100px;
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    background-color: #fafafa;
}

.product-table .image-cell .product-series-image {
    /*! width: 80px; */
    /*! height: 60px; */
    margin: 0 auto;
    /*! border-radius: 4px; */
    overflow: hidden;
    /*! background: #f5f5f5; */
    display: flex;
    align-items: center;
    justify-content: center;
    /*! border: 1px solid #e0e0e0; */
}

.product-table .image-cell .product-series-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-table .image-cell .no-image {
    color: #999;
    font-size: 14px;
    font-style: italic;
}

.product-table tbody tr:hover .image-cell .product-series-image img {
    transform: scale(1.05);
}

.product-table tbody tr:hover .image-cell .product-series-image {
   
}

.product-table .series-cell {
    text-align: left;
    min-width: 120px;
}

.product-series-image {
    width: 160px;
    margin: 0 auto 8px;
    border-radius: 4px;
    overflow: hidden;
    /*! background: #f5f5f5; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
}

.product-series-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-table tbody tr:hover .product-series-image img {
    transform: scale(1.05);
}

.series-name {
    font-weight: 600;
    color: #333;
}

.series-name a {
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.series-name a:hover {
    color: #e71d16;
    text-decoration: underline;
}

.product-table .type-cell {
    font-weight: 600;
    color: #666;
}

/* 微矩形表格特定样式 */
.micro-rectangle-table .type-cell {
}

/* 圆形表格特定样式 */
.circular-table .type-cell {
   
}

/* 表格列宽度控制 */
.product-table .temp-header,
.product-table .temp-cell {
    min-width: 100px;
}

.product-table .vibration-header,
.product-table .vibration-cell,
.product-table .shock-header,
.product-table .shock-cell {
    min-width: 120px;
}

.product-table .current-header,
.product-table .current-cell,
.product-table .resistance-header,
.product-table .resistance-cell {
    min-width: 90px;
}

.product-table .insulation-header,
.product-table .insulation-cell,
.product-table .voltage-header,
.product-table .voltage-cell {
    min-width: 100px;
}

.product-table .life-header,
.product-table .life-cell {
    min-width: 90px;
}

.product-table .humidity-header,
.product-table .humidity-cell,
.product-table .salt-header,
.product-table .salt-cell,
.product-table .seal-header,
.product-table .seal-cell {
    min-width: 100px;
}

/* 无产品状态 */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .product-table-container {
        /*! margin: 0 -20px; */
        /*! padding: 0 20px; */
    }
    
    .product-table {
        min-width: 1000px;
    }
    
    .product-section-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .product-section {
        margin-bottom: 30px;
    }
    
    .product-section-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 15px 0;
    }
    
    .product-table-container {
        /*! margin: 0 -15px; */
        /*! padding: 0 15px; */
        border-radius: 0;
    }
    
    .product-table {
        min-width: 800px;
        font-size: 12px;
    }
    
    .product-table th,
    .product-table td {
        padding: 8px 6px;
    }
    
    .product-series-image {
        width: 60px;
        height: 45px;
        margin-bottom: 5px;
    }
    
    .series-name {
        font-size: 12px;
    }
    
    .product-table .series-cell {
        min-width: 100px;
    }
    
    .product-table .temp-header,
    .product-table .temp-cell,
    .product-table .current-header,
    .product-table .current-cell,
    .product-table .life-header,
    .product-table .life-cell {
        min-width: 70px;
    }
    
    .product-table .vibration-header,
    .product-table .vibration-cell,
    .product-table .shock-header,
    .product-table .shock-cell {
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .product-table {
        min-width: 600px;
        font-size: 11px;
    }
    
    .product-table th,
    .product-table td {
        padding: 6px 4px;
    }
    
    .product-series-image {
        width: 50px;
        height: 38px;
    }
    
    .series-name {
        font-size: 11px;
    }
    
    .product-section-title {
        font-size: 18px;
    }
}

/* ========== 现代化产品展示区域 ========== */
.product-display-section {
    margin: 30px 0;
}

/* Tab导航样式 */
.product-tabs-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.tab-navigation {
    display: flex;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tab-navigation::-webkit-scrollbar {
    display: none;
}

.tab-button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 18px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    min-width: 120px;
}

.tab-button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
    color: #fff;
    background: rgba(249, 37, 37, 0.92);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    /*! background: #fff; */
}

/* Tab内容容器 */
.tab-content-container {
    position: relative;
}

.tab-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 现代化产品网格 */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 0;
}

/* 产品卡片 */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 产品图片 */
.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 48px;
}

.product-image .no-image::before {
    content: '📷';
    font-size: 48px;
}

/* 产品信息 */
.product-info {
    padding: 20px;
}

.product-type {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.product-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #667eea;
}

.product-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 查看详情按钮 */
.view-details-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: #fff;
    text-decoration: none;
}

/* 无产品提示 */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-products p {
    font-size: 16px;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .tab-button {
        padding: 14px 16px;
        font-size: 14px;
        min-width: 100px;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .product-card {
        margin-bottom: 16px;
    }
    
    .product-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .tab-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        min-width: auto;
    }
}

/* ========== 竖向表格样式 (Vertical Table Layout) ========== */
.vertical-table-container {
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    background: unset;
}

.product-table.vertical-table {
    min-width: auto;
    width: auto;
    display: table;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    table-layout: auto;
    /*! padding: 0 15px; */
}

.product-table.vertical-table tbody tr {
    display: table-row;
}

/* 参数标签列（第一列）- 固定左侧并限制宽度 */
.product-table.vertical-table .param-label-cell {
    background: #efefef !important;
    color: #333;
    font-weight: 700;
    text-align: left;
    padding: 18px 20px;
    border: 1px solid #e5e5e5;
    border-left: none;
    white-space: normal;
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    vertical-align: middle;
    position: sticky;
    left: 0;
    z-index: 10;
    border-bottom: unset;
    word-wrap: break-word;
}

/* 数据单元格 */
.product-table.vertical-table td {
    padding: 15px 10px;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-left: none;
    vertical-align: middle;
    min-width: 140px;
    max-width: 180px;
    width: auto;
    white-space: normal;
    background: #fff;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    border-bottom: unset;
}

/* 第一个数据单元格需要左边框 */
.product-table.vertical-table tbody tr td:first-of-type + td {
    border-left: 1px solid #e5e5e5;
}

/* 合并单元格样式（图片 + 系列名称） */
.product-table.vertical-table .combined-cell {
    background-color: #fff;
    min-width: 160px;
    max-width: 180px;
    width: auto;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.product-table.vertical-table .combined-cell .product-series-image {
    width: 130px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0;
}


.product-table.vertical-table .combined-cell .product-series-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-table.vertical-table .combined-cell .product-series-image:hover img {
    transform: scale(1.05);
}

.product-table.vertical-table .combined-cell .no-image {
    color: #ccc;
    font-size: 14px;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 90px;
    background: #f8f9fa;
    border: 1px dashed #ddd;
    border-radius: 8px;
}

/* 系列名称样式（在合并单元格中） */
.product-table.vertical-table .combined-cell .series-name {
    text-align: center;
    width: 100%;
}

.product-table.vertical-table .combined-cell .series-name a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
}

.product-table.vertical-table .combined-cell .series-name a:hover {
    color: #004499;
    text-decoration: underline;
}

/* 保留旧的样式以兼容其他可能的使用 */
.product-table.vertical-table .series-cell:not(.combined-cell) {
    text-align: center;
    font-weight: 600;
    background-color: #fff;
    padding: 15px 20px;
}

/* 类型单元格 */
.product-table.vertical-table .type-cell {
    font-weight: 500;
    color: #666;
    background-color: #fff;
}

/* 行间隔色（斑马纹）- 更淡的颜色 */
.product-table.vertical-table tbody tr:nth-child(even) {
    background-color: transparent;
}

.product-table.vertical-table tbody tr:nth-child(even) td {
    background-color: #fafbfc;
}

.product-table.vertical-table tbody tr:nth-child(even) .param-label-cell {
    background-color: #efefef !important;
}

/* 悬停效果 - 针对整行 */
.product-table.vertical-table tbody tr:hover td {
    background-color: #f0f7ff;
}

.product-table.vertical-table tbody tr:hover .param-label-cell {
    background: #efefef !important;
}

/* 统一样式 - 移除微矩形和圆形的差异化颜色 */
.product-table.vertical-table.micro-rectangle-table .param-label-cell,
.product-table.vertical-table.circular-table .param-label-cell {
    background: #efefef !important;
    color: #333;
}

.product-table.vertical-table.micro-rectangle-table tbody tr:nth-child(even) .param-label-cell,
.product-table.vertical-table.circular-table tbody tr:nth-child(even) .param-label-cell {
    background-color: #efefef !important;
}

/* 表格第一行（图片行）特殊样式 */
.product-table.vertical-table tbody tr:first-child td {
    border-top: none;
}

.product-table.vertical-table tbody tr:first-child .param-label-cell {
    border-top: none;
}

/* 竖向表格响应式设计 */
@media (max-width: 1200px) {
    .product-table.vertical-table .param-label-cell {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        font-size: 13px;
        padding: 15px;
    }
    
    .product-table.vertical-table td {
        min-width: 140px;
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .product-table.vertical-table .combined-cell {
        padding: 15px 12px;
        min-width: 140px;
    }
    
    .product-table.vertical-table .combined-cell .product-series-image {
        width: 110px;
        height: 80px;
    }
    
    .product-table.vertical-table .combined-cell .series-name a {
        font-size: 14px;
    }
}
.related-solutions{
    display: none;
}
@media (max-width: 768px) {
    .product-table.vertical-table .param-label-cell {
        width: 120px;
        min-width: 120px;
        max-width: 140px;
        font-size: 12px;
        padding: 12px 6px;
    }
    
    .product-table.vertical-table td {
        min-width: 120px;
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .product-table.vertical-table .combined-cell {
        padding: 12px 10px;
        min-width: 120px;
        gap: 10px;
    }
    
    .product-table.vertical-table .combined-cell .product-series-image {
        width: 100px;
        height: 70px;
    }
    
    .product-table.vertical-table .combined-cell .series-name a {
        font-size: 13px;
    }
    .solution-item-wrapper{
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .vertical-table-container {
        /*! margin: 0 -15px; */
        border-radius: 0;
    }
    
    .product-table.vertical-table .param-label-cell {
        width: 120px;
        min-width: 90px;
        max-width: 120px;
        font-size: 11px;
        padding: 10px 12px;
    }
    
    .product-table.vertical-table td {
        min-width: 100px;
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .product-table.vertical-table .combined-cell {
        padding: 10px 8px;
        min-width: 100px;
        gap: 8px;
    }
    
    .product-table.vertical-table .combined-cell .product-series-image {
        width: 80px;
        height: 60px;
    }
    
    .product-table.vertical-table .combined-cell .series-name a {
        font-size: 12px;
    }
}