

/* 面包屑和搜索容器 */
.breadcrumb-search-container {
    background-color: white;
    padding: 15px 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.breadcrumb-search-container .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.breadcrumb-wrapper {
    flex: 1;
    min-width: 200px;
}

.search-wrapper {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #0052a3;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

/* 产品搜索框 */
.product-search {
    display: flex;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #3498db;
}

.search-button {
    padding: 8px 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #0052a3;
}

/* 产品列表容器 */
.product-list-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
	background-color:#f8f9fa;
	border-radius:5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .breadcrumb-search-container .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-wrapper {
        max-width: 100%;
    }
}


/* 产品网格布局 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
	
	
}

/* 产品卡片样式 */
.product-card {
    border: 1px solid #eee;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    opacity: 1;
}
.product-image {
    position: relative;
    padding-top: 100%; /* 4:3 宽高比 */
    overflow: hidden;
}
.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-details {
    padding: 15px;
}
.product-title {
    font-size: 18px;
    margin: 0 0 10px;
    color: #333;
}
.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}
.product-price {
    margin: 15px 0;
    font-weight: bold;
}
.current-price {
    font-size: 20px;
    color: #d82e2e;
}
.old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
}
.product-actions {
    display: flex;
    gap: 10px;
}
.btn-view, .btn-quote {
    flex: 1;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-view {
    background:#3498db;
    color: white;
    border: none;
	text-decoration: none;
	
}

.btn-view:hover {
    background: #0052a3;
}
.btn-quote {
    background:#2ecc71;
    border: 1px solid #2ecc71;
    color: white;
	text-decoration: none;
}

.btn-quote:hover {
    background:#27ae60;
}


/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 30px 0;
	 border-radius: 4px;
}

.pagination > li {
    display: inline; }
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #337ab7;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px; }
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd; }
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default; }



/* 响应式设计 */
@media (max-width: 1200px) {
    .product-list-container {
        width: 90%;
    }
    .product-filters .container {
        flex-direction: column;
        align-items: stretch;
    }
    .search-group {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-list-container {
        width: 95%;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-actions {
        flex-direction: column;
    }
    .btn-view, .btn-quote {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
   
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 产品频道新样式 */
.channel-row{ background-color:#FFF;}
.channel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;   
	margin-bottom:20px;		
    flex-wrap: wrap;
	background-color:#FFF;
}

.channel-title {
    font-size: 24px;
    color: #003366;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.channel-subcategories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.channel-subcategories a {
    color: #666;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.channel-subcategories a.active,
.channel-subcategories a:hover {
    background: #003366;
    color: white;
}

.channel-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-item {
    border: 1px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-item h3 {
    padding: 15px;
    font-size: 16px;
    color: #333;
    text-align: center;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .channel-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .channel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .channel-subcategories {
        width: 100%;
        justify-content: flex-start;
    }
    
    .channel-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .channel-products {
        grid-template-columns: 1fr;
    }
}

/* 产品频道新样式 */
.channel-row{ background-color:#FFF; margin-bottom:20px; border-radius:10px;}
.product-channel-container{ width:100%; margin-top:20px;}
.channel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    background: linear-gradient(to right, #003366, #0052a3);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
    color: white;
}

.channel-title {
    font-size: 24px;
    color: white;
    margin: 0;
    flex: 1;
    min-width: 200px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.channel-title a{color: white; text-decoration:none;}

.channel-subcategories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.channel-subcategories a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.channel-subcategories a.active,
.channel-subcategories a:hover {
    background: white;
    color: #003366;
    border-color: white;
}

.channel-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-item {
    border: 1px solid #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.product-item a{ text-decoration:none;}

.product-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-item h3 {
    padding: 15px;
    font-size: 16px;
    color: #333;
    text-align: center;
    margin: 0;
    background-color: #CCC;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .channel-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .channel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .channel-subcategories {
        width: 100%;
        justify-content: flex-start;
    }
    
    .channel-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .channel-products {
        grid-template-columns: 1fr;
    }
}

/* 国际化样式 */
[lang="es"] .product-title,
[lang="fr"] .product-title,
[lang="de"] .product-title {
    font-size: 15px;
}
[lang="es"] .product-specs span,
[lang="fr"] .product-specs span,
[lang="de"] .product-specs span {
    font-size: 14px;
}
