/* 主播列表页面样式 */
.page-header {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.page-header h1 {
    color: #333;
    font-size: 32px;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-size: 16px;
}

/* 筛选区域 */
.filter-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-box {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #667eea;
}

.search-box button {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #5a6fd8;
}

/* 主播列表样式 */
.anchors-list {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.anchor-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.anchor-item:hover {
    background: #f8f9fa;
}

.anchor-item:last-child {
    border-bottom: none;
}

.anchor-avatar {
    position: relative;
    margin-right: 20px;
}

.anchor-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.live-status {
    position: absolute;
    top: -5px;
    right: -5px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
}

.live-status.online {
    background: #ff6b6b;
    color: white;
}

.live-status.offline {
    background: #95a5a6;
    color: white;
}

.anchor-info {
    flex: 1;
}

.anchor-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.specialty {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

.anchor-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.anchor-stats span {
    color: #888;
    font-size: 12px;
}

.anchor-stats i {
    margin-right: 5px;
}

.live-title {
    color: #667eea;
    font-size: 14px;
    font-weight: 500;
}

.anchor-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 120px;
}

.watch-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.watch-btn:hover:not(:disabled) {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.watch-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.follow-btn {
    background: transparent;
    color: #667eea;
    border: 1px solid #667eea;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.follow-btn:hover {
    background: #667eea;
    color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .anchor-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .anchor-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .anchor-stats {
        justify-content: center;
    }
    
    .anchor-actions {
        flex-direction: row;
        margin-top: 15px;
        min-width: auto;
    }
}