.wp247-cate-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wp247-cate-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.wp247-cate-item:hover,
.wp247-cate-item.active {
    background-color: #FFF7ED;
}

.wp247-cate-item:hover .wp247-cate-name,
.wp247-cate-item.active .wp247-cate-name {
    color: #fe9900;
}

.wp247-cate-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF3E0;
    border-radius: 12px;
    flex-shrink: 0;
}

.wp247-cate-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.wp247-cate-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}