/* 标准推荐样式 - 排序大于0的网站 */

/* 推荐标签基础样式 */
.premium-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 10;
    background: linear-gradient(45deg, #8b5cf6, #a855f7, #c084fc);
    border-radius: 20px;
    padding: 4px 12px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 24px;
}

.premium-text {
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

/* 确保推荐标签能正确定位 */
.premium-site .url-body,
.strong-recommend .url-body {
    position: relative;
}

/* 标准推荐网站标题显示紫色 */
.premium-site .url-info strong {
    color: #8b5cf6 !important;
    font-weight: bold;
}

/* 强烈推荐网站标题显示红黄渐变 */
.strong-recommend .url-info strong {
    background: linear-gradient(45deg, #dc2626, #f59e0b, #fbbf24);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-gradient 3s ease infinite;
    font-weight: bold;
}

/* 标题渐变动画 */
@keyframes title-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
} 