<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 全局样式 */
body {
    font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* 排版样式优化 */
h1, .h1 { font-size: 1.8rem; font-weight: 600; }
h2, .h2 { font-size: 1.5rem; font-weight: 600; }
h3, .h3 { font-size: 1.3rem; font-weight: 600; }
h4, .h4 { font-size: 1.1rem; font-weight: 600; }
h5, .h5 { font-size: 1rem; font-weight: 600; }
h6, .h6 { font-size: 0.9rem; font-weight: 600; }

p { margin-bottom: 1rem; }
small, .small { font-size: 85%; }

/* 导航条样式 */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.6rem 1rem;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

/* 平台卡片样式 */
.platform-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.platform-img {
    height: 140px;
    object-fit: cover;
    width: 100%;
}

.platform-card .card-body {
    padding: 1rem;
}

.platform-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* 直播卡片样式 */
.streamer-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    margin-bottom: 1.5rem;
}

.streamer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.streamer-img {
    height: 160px;
    object-fit: cover;
    width: 100%;
}

.streamer-card .card-body {
    padding: 0.8rem;
}

.streamer-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.card-img-container {
    position: relative;
    overflow: hidden;
}

.online-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

/* 直播页面样式 */
.streamer-info-card {
    border-left: 3px solid #dc3545;
    border-radius: 6px;
}

.streamer-offline {
    opacity: 0.7;
}

.streamer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dc3545;
}

/* 徽章样式 */
.badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25em 0.6em;
    border-radius: 4px;
}

.bg-success {
    background-color: #10b981 !important;
}

.bg-danger {
    background-color: #ef4444 !important;
}

.bg-info {
    background-color: #0ea5e9 !important;
}

.bg-warning {
    background-color: #f59e0b !important;
}

/* 播放器容器样式 */
.player-wrapper {
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.player-container {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

/* 按钮样式 */
.btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 500;
}

.btn-sm {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.btn-outline-primary {
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-outline-primary:hover {
    background-color: #3b82f6;
    color: #fff;
}

.btn-outline-secondary {
    color: #6b7280;
    border-color: #6b7280;
}

.btn-outline-secondary:hover {
    background-color: #6b7280;
    color: #fff;
}

/* 卡片样式优化 */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.25rem;
}

.card-header {
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    font-weight: 600;
}

.card-body {
    padding: 1rem;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 加载效果 */
.loader {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 调试信息区 */
.debug-info {
    margin-top: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 10px;
    font-family: monospace;
    font-size: 11px;
    max-height: 150px;
    overflow-y: auto;
    word-wrap: break-word;
    border: 1px solid #eaeaea;
}

/* 列表样式 */
.list-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.list-group-item {
    padding: 0.75rem 1rem;
    border-left: none;
    border-right: none;
    font-size: 0.9rem;
}

.list-group-item:first-child {
    border-top: none;
}

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

/* 响应式调整 */
@media (max-width: 768px) {
    .streamer-img, .platform-img {
        height: 120px;
    }
    
    .jumbotron h1 {
        font-size: 1.5rem;
    }
    
    .card-header {
        padding: 0.6rem 0.8rem;
    }
    
    .card-body {
        padding: 0.8rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    h1, .h1 { font-size: 1.5rem; }
    h2, .h2 { font-size: 1.3rem; }
    h3, .h3 { font-size: 1.1rem; }
}

/* 垂直视频样式 */
.vertical-video {
    max-width: 60% !important;
    margin: 0 auto !important;
}

.video-ratio-info {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    z-index: 100;
} </pre></body></html>