  .wz-list {
            list-style: none;
            padding: 0;
        }
        .wz-item {
            display: flex;
            align-items: center; 
            justify-content: space-between; 
            margin-bottom: 10px;
            padding: 10px;
            border-bottom: 1px dashed #ddd;
        }
        .wz-item:last-child {
            border-bottom: none;
        }
        .wz-logo {
            width: 50px;
            height: 50px;
            background-color: #FFF;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
        }
        .wz-logo img {
            width: 48px;
            height: 48px;
        }
        .wz-info {
            flex: 1;
            max-width: calc(100% - 80px);
            display: flex;
            flex-direction: column;
        }
        .wz-title {
            display: flex;
            align-items: center; 
            flex-wrap: wrap; 
        }
        .wz-title h2 {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin: 0 10px;
            white-space: nowrap; 
        }
        .wz-title span {
            font-size: 12px;
            color: #666;
            margin-left: 5px; 
            white-space: nowrap; 
        }
        .wz-description {
            color: #4b587c;
            margin: 5px 10px 0; 
            font-size: 13px;
            display: block; 
            max-height: 40px; 
            overflow: hidden; 
            text-overflow: ellipsis; 
            line-height: 1.6em; 
        }
        .like-button {
            width: 48px;
            height: 48px;
            position: relative;
            border: 1px solid #d9e1ec!important;
            transition: all .3s ease;
            background: #fff;
            box-sizing: border-box;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin-left: auto; 
        }
        .like-button:after {
            opacity: 0;
            transition: all .3s ease;
            content: "";
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: 1;
            border-radius: 4px;
            box-shadow: inset 0 0 0 1px #feb6b0, inset 0 0 0 2px #fff, inset 0 0 0 3px #feb6b0;
            background: #fff;
        }
        .like-icon {
            width: 24px;
            height: 24px;
            color: #4b587c;
            display: flex;
            justify-content: center; 
            align-items: center;  
        }
        .like-count {
            font-size: 12px;
            color: #4b587c;
            margin-top: -10px;
            display: flex; 
            justify-content: center; 
            align-items: center;
        }
        .wz-link {
            display: flex; 
            align-items: flex-start;
            text-decoration: none;
            color: inherit;
            width: 100%;
        }
.vip-container {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.vip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.vip-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    
    &::after {
        content: '';
        position: absolute;
        left: -20px;
        top: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, #3f87f5, #1a73e8);
        border-radius: 2px;
    }
}
.vip-btn {
    background: linear-gradient(135deg, #ff8a00, #ff0058, #e52e71);
    color: white;
    padding: 14px 32px;
    border-radius: 16px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 16px rgba(255,138,0,0.3);
    position: relative;
    overflow: hidden;
    
    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(255,138,0,0.4);
    }
    
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }
    
    &:hover::after {
        transform: translateX(100%);
    }
}
.vip-grid {
    display: flex;
    flex-wrap: wrap;
}

.vip-item {
    width: calc(8% - 18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;

    &:hover {
        background: rgba(63,135,245,0.05);
        transform: translateY(-4px);
    }
    
    &.vip-featured {
        &:hover {
            background: rgba(255,215,0,0.05);
        }
        
        .vip-name {
            color: #ff9900;
            
            &:hover {
                color: #ff6600;
            }
        }
    }
}

.vip-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
    object-fit: contain;
}

.vip-name {
    text-align: center;
    transition: all 0.3s;
    .vip-item:hover & {
        color: #1a73e8;
    }
}
.vip-badge {
    position: absolute;
    transform: translate(10px, 30px); 
    width: 20px;
    height: 20px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg"><path d="M512 998.4c-267.776 0-486.4-218.624-486.4-486.4S244.224 25.6 512 25.6s486.4 218.112 486.4 486.4-218.624 486.4-486.4 486.4z" fill="%23FFF"/><path d="M512 95.232c-229.888 0-416.768 186.88-416.768 416.768s186.88 416.768 416.768 416.768 416.768-186.88 416.768-416.768-186.88-416.768-416.768-416.768z" fill="%23E6162D"/><path d="M407.552 757.248c-5.12 0-10.24-1.024-14.848-3.584-12.288-5.632-19.968-17.92-19.968-31.232V373.248H303.616c-19.456 0-34.304-15.36-34.304-34.304s15.36-34.304 34.304-34.304h104.448c18.944 0 34.304 15.36 34.304 34.304v310.784l251.392-206.336h-8.192c-19.456 0-34.304-15.36-34.304-34.304s15.36-34.304 34.304-34.304h105.472c14.336 0 27.648 9.216 32.768 23.04s0.512 29.696-10.752 38.4l-383.488 314.88c-6.144 3.072-13.824 6.144-22.016 6.144z" fill="%23FFF"/></svg>');
  background-size: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
@media (max-width: 768px) {
    .vip-container {
        padding: 20px;
    }
    
    .vip-header {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 10px;
    }
    
    .vip-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .vip-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .vip-item {
        width: calc(20% - 10px);
    }
    
    .vip-badge {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
}