/* 会员等级徽章样式 */
.jiuling-member-badge {
    display: inline-block;
    padding: 2px 8px;
    margin-left: 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: jiulingMemberBadge 2s ease-in-out infinite;
}

/* 会员专属样式 */
.jiuling-member-exclusive {
    position: relative;
}

.jiuling-member-exclusive::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: url('../images/member-icon.png') no-repeat center center;
    background-size: contain;
    z-index: 1;
}

/* 会员等级动画效果 */
@keyframes jiulingMemberBadge {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 不同会员等级的特殊效果 */
.jiuling-member-level-1 {
    background: #999999 !important;
}

.jiuling-member-level-2 {
    background: #c0c0c0 !important;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.jiuling-member-level-3 {
    background: #ffd700 !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.jiuling-member-level-4 {
    background: #00bfff !important;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.jiuling-member-level-5 {
    background: #ff69b4 !important;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

/* 会员评论样式 */
.comment-author .jiuling-member-badge {
    margin-left: 4px;
    font-size: 10px;
    padding: 1px 6px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .jiuling-member-badge {
        font-size: 10px;
        padding: 1px 6px;
        margin-left: 4px;
    }
}
