/* 认证用户展示小工具样式 - Arco Design风格 */
.auth-users-container {
    padding: 16px;
}

/* 创作者计划区域样式 */
.creator-plan-section {
    background: linear-gradient(to right, #ff8a00, #e52e71);
    color: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(255, 138, 0, 0.2);
}

.creator-plan-header h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.creator-plan-header h3 i {
    margin-right: 8px;
}

.creator-plan-header p {
    margin: 0 0 16px 0;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
}

.creator-plan-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.stat-item {
    text-align: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.creator-plan-cta {
    text-align: center;
}

.join-creator-btn {
    display: inline-block;
    background: #ffffff;
    color: #ff8a00;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.join-creator-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.auth-user-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.auth-user-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.avatar-container {
    position: relative;
    margin-right: 12px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.user-level {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
    font-weight: 500;
}

.user-meta {
    flex: 1;
}

.user-name {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.user-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.user-name a:hover {
    color: #667eea;
}

.user-stats {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #666;
}

.user-stats i {
    margin-right: 4px;
    color: #999;
}

.follow-btn-container {
    display: flex;
    justify-content: flex-end;
}

.follow-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.follow-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.recent-post {
    margin-top: 16px;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.post-thumbnail-wrapper {
    display: block;
    margin-bottom: 8px;
    border-radius: 6px;
    overflow: hidden;
}

.post-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-thumbnail-wrapper:hover .post-thumbnail {
    transform: scale(1.05);
}

.post-thumbnail-placeholder {
    width: 100%;
    height: 120px;
    background: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.post-title {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-title a:hover {
    color: #667eea;
}

.no-auth-users {
    text-align: center;
    padding: 40px 0;
    color: #999;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .auth-users-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 12px;
    }
    
    .auth-user-card {
        padding: 16px;
    }
    
    .user-avatar {
        width: 50px;
        height: 50px;
    }
    
    .user-name {
        font-size: 14px;
    }
    
    .user-stats {
        font-size: 12px;
        gap: 12px;
    }
    
    .post-thumbnail {
        height: 100px;
    }
    
    .post-thumbnail-placeholder {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .auth-users-grid {
        grid-template-columns: 1fr;
    }
    
    /* 创作者计划区域响应式 */
    .creator-plan-section {
        padding: 16px;
    }
    
    .creator-plan-header h3 {
        font-size: 16px;
    }
    
    .creator-plan-header p {
        font-size: 12px;
    }
    
    .creator-plan-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .join-creator-btn {
        padding: 7px 20px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    /* 创作者计划区域响应式 - 在中等屏幕上保持三列布局 */
    .creator-plan-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }
}