/* 产品列表页面样式 */
.product-container {
    padding: 20px;
}

/* 左侧导航样式 */
.product-category-menu {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-top: 20px;
    position: sticky;
    top: 20px;
    z-index: 100;
}

.product-category-menu h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.product-category-menu ul li {
    margin-bottom: 10px;
}

.product-category-menu ul li a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.product-category-menu ul li a:hover {
    background: #f8f9fa;
    color: #007bff;
}

/* 主包装容器 */
.main-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* 容器样式 */
.container {
    max-width: none;
    padding: 0;
    width: 100%;
    position: relative;
}

/* 内容盒子 */
.content-box {
    margin-left: 440px; /* 与首页保持一致 */
    margin-top: 140px;
    margin-right: 50px;
    position: relative;
}

/* 产品列表样式 */
.product-list {
    width: 100%;
    max-width: 1310px;
}

.product-item {
    display: flex;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.product-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-img {
    flex: 0 0 200px;
    margin-right: 20px;
}

.product-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.product-info {
    flex: 1;
    text-align: left;
}

.product-title {
    font-size: 18px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 500;
    text-align: left;
}

.product-title:hover {
    text-decoration: none;
    color: #333;
}

.product-specs {
    margin-bottom: 10px;
}

.product-specs span {
    display: inline-block;
    margin-right: 20px;
    color: #666;
    font-size: 14px;
}

.product-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 分页样式 */
.pagination-wrapper {
    margin-top: 30px;
    text-align: center;
    padding: 20px 0;
}

.custom-pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-item {
    padding: 8px 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-item:hover {
    background: #f5f5f5;
    color: #4a90e2;
}

.page-status {
    color: #666;
    margin-left: 15px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .product-category-menu {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    
    .product-info {
        padding-left: 0;
        margin-top: 10px;
    }
}

/* 重置所有可能影响的样式 */
.product-list,
.product-container,
.product-sidebar,
.product-content,
[class^="product-"],
[class*=" product-"] {
    background: transparent !important;
}

/* 确保产品列表样式不影响全局布局 */
.product-list {
    margin: 0;
    padding: 0;
}

/* 左侧导航样式 */
.sidebar {
    position: fixed;
    left: 50px;
    top: 140px;
    width: 200px;
    background: #fff;
    z-index: 100;
    padding-top: 20px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
}

/* 自定义滚动条样式 */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.nav-list li {
    border-bottom: 1px solid #eee;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 删除或注释掉所有 logo 相关样式 */
/* .logo {
    ...
} */ 