/* 产品Banner样式 */
.product-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-container {
    position: relative;
    height: 500px;
}

.banner-slider {
    width: 100%;
    height: 100%;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.slide-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: white;
    z-index: 2;
}

.banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.banner-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.banner-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0d6efd;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease;
}

.banner-button:hover {
    background-color: #0b5ed7;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* 面包屑导航 */
.breadcrumb-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #0d6efd;
}

.breadcrumb-item i {
    margin-right: 5px;
}

.breadcrumb-item.active span {
    color: #666;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #999;
}

/* Swiper组件样式 */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0d6efd;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(13, 110, 253, 0.8);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .banner-container {
        height: 400px;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .banner-container {
        height: 350px;
    }
    
    .slide-caption {
        left: 5%;
        max-width: 90%;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .banner-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .banner-container {
        height: 300px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .breadcrumb-nav {
        padding: 8px 15px;
        bottom: 10px;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
}



/* -----------------002---- */

/* 产品页面样式 */
.product-page {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 页面标题 */
.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.breadcrumb a:hover {
    color: #0d6efd;
}

.breadcrumb a i {
    margin-right: 5px;
}

.breadcrumb span {
    margin-left: 10px;
    color: #999;
}

.breadcrumb span::before {
    content: '/';
    margin-right: 10px;
    color: #999;
}

/* 产品内容布局 */
.product-content {
    display: flex;
    gap: 30px;
}

/* 左侧边栏 */
.product-sidebar {
    flex: 0 0 250px;
}

.category-menu {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.menu-title {
    font-size: 1.1rem;
    padding: 15px 20px;
    margin: 0;
    background-color: #0d6efd;
    color: white;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    border-bottom: 1px solid #eee;
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.category-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.has-submenu.active .category-link i {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.has-submenu.active .submenu {
    max-height: 1000px;
}

.submenu li {
    border-top: 1px solid #eee;
}

.submenu a {
    display: block;
    padding: 10px 20px 10px 30px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.submenu a:hover {
    background-color: #e9ecef;
    color: #0d6efd;
}

/* 产品筛选 */
.product-filter {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.filter-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #555;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.filter-option input {
    margin-right: 8px;
}

/* 右侧产品列表 */
.product-list {
    flex: 1;
}

/* 产品排序 */
.product-sort {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sort-result {
    font-size: 0.9rem;
    color: #666;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label {
    font-size: 0.9rem;
    color: #666;
}

.sort-options select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
}

/* 产品网格 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.product-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0d6efd;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.product-badge.hot {
    background: #dc3545;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size:14px;
    margin-bottom: 10px;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #0d6efd;
}

.product-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #0d6efd;
    color: white;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

/* 分页 */
.product-pagination {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #f8f9fa;
}

.page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.page-item.disabled .page-link {
    color: #999;

}

/* 响应式设计 */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-content {
        flex-direction: column;
    }
    
    .product-sidebar {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-page {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-sort {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .product-page {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .page-item {
        margin: 5px;
    }
}

/* --------------product details----- */


.product-details .product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}


/* Banner样式 */
.company-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/static-en/images/bg22_886.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .company-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .company-banner .lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
  }
  
  .banner-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  /* 响应式调整 */
  @media (max-width: 992px) {
    .company-banner {
      padding: 80px 0;
    }
    
    .company-banner h1 {
      font-size: 2.4rem;
    }
  }
  
  @media (max-width: 768px) {
    .company-banner {
      padding: 60px 0;
    }
    
    .company-banner h1 {
      font-size: 2rem;
    }
    
    .company-banner .lead {
      font-size: 1.1rem;
    }
    
    .banner-btns .btn {
      padding: 0.5rem 1rem;
      font-size: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .company-banner {
      padding: 50px 20px;
    }
    
    .company-banner h1 {
      font-size: 1.8rem;
    }
    
    .banner-btns {
      flex-direction: column;
      width: 100%;
    }
    
    .banner-btns .btn {
      width: 100%;
      margin: 5px 0 !important;
    }
  }



  /* ----------------006------ */


  /* 面包屑导航样式 */
.breadcrumb-nav {
    padding: 15px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    display: inline-block;
    padding: 0 10px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.breadcrumb-item a i {
    margin-right: 5px;
    font-size: 0.9em;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 8px;
    }
    
    .breadcrumb-item a i {
        display: none;
    }
}

@media (max-width: 576px) {
    .breadcrumb-nav {
        padding: 10px 0;
    }
    
    .breadcrumb {
        font-size: 0.75rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 5px;
    }
    
    /* 长面包屑文本截断 */
    .breadcrumb-item {
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .breadcrumb-item.active {
        max-width: 150px;
    }
}


/* ---------------产品详情------ */



        .p_container{
            width:100%;
        }
        /* 产品详情布局 */
        .product-detail-container {
            display: flex;
            gap: 30px;
            padding: 30px 0;
        }
        
        /* 产品图片区域 */
        .product-gallery {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .main-image-container {
            position: relative;
            height: 500px;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
            background-color: #fff;
        }
        
        .main-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
        }
        
        .zoom-icon {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .thumbnail-container {
            display: flex;
            gap: 10px;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            overflow: hidden;
        }
        
        .thumbnail.active {
            border-color: #0d6efd;
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 产品信息区域 */
        .product-info {
            flex: 1;
        }
        
        .product-header {
            margin-bottom: 20px;
        }
        
        .product-title {
            color: #333;
            margin-bottom: 10px;
        }
        
        .product-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 15px;
        }
        
        .product-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #555;
        }
        
        .meta-item i {
            margin-right: 8px;
            color: #0d6efd;
        }
        
        .product-price {
            font-size: 1.5rem;
            color: #d9534f;
            font-weight: bold;
            margin: 20px 0;
        }
        
        .product-description {
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .product-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: #0d6efd;
            color: white;
            border: 1px solid #0d6efd;
        }
        
        .btn-primary:hover {
            background-color: #0b5ed7;
            border-color: #0b5ed7;
        }
        
        .btn-outline {
            background-color: transparent;
            color: #0d6efd;
            border: 1px solid #0d6efd;
        }
        
        .btn-outline:hover {
            background-color: #f8f9fa;
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        /* 产品标签 */
        .product-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .tag {
            display: inline-block;
            padding: 4px 10px;
            background-color: #f1f1f1;
            color: #555;
            font-size: 0.8rem;
            border-radius: 20px;
        }
        
        /* 产品详情标签页 */
        .product-tabs {
            margin-top: 40px;
        }
        
        .tab-header {
            display: flex;
            border-bottom: 1px solid #ddd;
        }
        
        .tab-btn {
            padding: 12px 20px;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            font-size: 1rem;
            font-weight: 500;
            color: #555;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .tab-btn.active {
            color: #0d6efd;
            border-bottom-color: #0d6efd;
        }
        
        .tab-content {
            padding: 20px 0;
        }
        .tab-content img{
            width:80%;
        }
        
        .tab-pane {
            display: none;
        }
        
        .tab-pane.active {
            display: block;
        }
        
        /* 规格参数 */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        
        .spec-table th, .spec-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .spec-table th {
            background-color: #f8f9fa;
            font-weight: 500;
            color: #555;
            width: 30%;
        }
        
        /* 分享区域 */
        .share-section {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .share-title {
            font-size: 1rem;
            margin-bottom: 15px;
            color: #555;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .facebook {
            background-color: #3b5998;
        }
        
        .linkedin {
            background-color: #0077b5;
        }
        
        .twitter {
            background-color: #1da1f2;
        }
        
        .wechat {
            background-color: #07c160;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .product-detail-container {
                flex-direction: column;
            }
            
            .main-image-container {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .product-title {
                font-size: 1.5rem;
            }
            
            .product-actions {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
            
            .main-image-container {
                height: 350px;
            }
        }
        
        @media (max-width: 576px) {
            .main-image-container {
                height: 300px;
            }
            
            .thumbnail {
                width: 60px;
                height: 60px;
            }
        }

        