/* 整体容器 */
.wipm-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

/* 左侧菜单栏 */
.wipm-sidebar {
    width: 250px;
    background: #f8f9fa;
    border-right: 1px solid #e0e0e0;
}

.wipm-menu-item {
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e8e8e8;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.wipm-menu-item:hover,
.wipm-menu-item.wipm-active {
    background: #007bff;
    color: #fff;
}

.wipm-menu-item-title {
    font-weight: 500;
}

.wipm-menu-arrow {
    font-size: 12px;
    color: #999;
}

.wipm-menu-item:hover .wipm-menu-arrow,
.wipm-menu-item.wipm-active .wipm-menu-arrow {
    color: #fff;
}

.wipm-menu-plus {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
}

.wipm-menu-item:hover .wipm-menu-plus,
.wipm-menu-item.wipm-active .wipm-menu-plus {
    color: #fff;
}

/* 右侧内容区域 */
.wipm-content {
    flex: 1;
    padding: 20px;
    background: #fff;
}

.wipm-category-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.wipm-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.wipm-product-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.wipm-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wipm-product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    overflow: hidden;
    background-color: #f1f3f5;
}

.wipm-product-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.wipm-product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

/* 分页样式 */
.wipm-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #e8e8e8;
}

.wipm-page-indicator {
    font-size: 14px;
    color: #666;
}

.wipm-page-dots {
    display: flex;
    gap: 8px;
}

.wipm-page-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.wipm-page-dot.active {
    background: #007bff;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .wipm-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .wipm-container {
        flex-direction: column;
    }
    
    .wipm-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .wipm-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .wipm-product-grid {
        grid-template-columns: 1fr;
    }
}