/* 推短剧页面样式 */

.header-simple .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-simple .page-title {
    margin-bottom: 0;
}

/* 数据统计卡片 */
.stats-card {
    display: flex;
    background: linear-gradient(135deg, #64B5F6 0%, #FFFFFF 100%);
    margin: 16px;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.stat-item {
    flex: 1;
    text-align: center;
    color: white;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 16px;
}

/* 分类标签 */
.category-tabs {
    display: flex;
    gap: 12px;
    padding: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.tab-item {
    flex-shrink: 0;
    padding: 8px 20px;
    border-radius: 20px;
    background: white;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.tab-item.active {
    background: linear-gradient(135deg, #4B7BFF, #3867D6);
    color: white;
    box-shadow: 0 4px 12px rgba(75, 123, 255, 0.3);
}

.tab-item:active {
    transform: scale(0.95);
}

/* 短剧列表 */
.shortplay-section {
    padding: 0 16px 20px;
}

.shortplay-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.shortplay-card:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.shortplay-cover {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: #FF4757;
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

.play-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 12px;
    font-size: 11px;
}

.shortplay-info {
    padding: 16px;
}

.shortplay-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shortplay-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    background: #f5f5f5;
    color: var(--text-secondary);
    border-radius: 12px;
    font-size: 12px;
}

.shortplay-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
}

.meta-item .label {
    color: var(--text-light);
}

.meta-item .price {
    color: #FF4757;
    font-weight: 600;
    font-size: 16px;
}

.shortplay-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 12px;
    color: var(--text-secondary);
}

.stat {
    display: flex;
    align-items: center;
}

.promote-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4B7BFF, #3867D6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.promote-btn:active {
    transform: scale(0.98);
    opacity: 0.9;
}

/* 响应式调整 */
@media (max-width: 375px) {
    .stats-card {
        padding: 16px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-divider {
        margin: 0 12px;
    }
}

