/* 微博风格模板 - CSS变量 */
:root {
    --weibo-primary: #FF6600;
    --weibo-primary-dark: #E55A00;
    --weibo-primary-light: #FF8533;
    --weibo-bg: #FFFFFF;
    --weibo-bg-light: #FAFAFA;
    --weibo-bg-dark: #F5F5F5;
    --weibo-text: #333333;
    --weibo-text-light: #666666;
    --weibo-text-lighter: #999999;
    --weibo-border: #E6E6E6;
    --weibo-shadow: rgba(0, 0, 0, 0.08);
    --weibo-shadow-hover: rgba(0, 0, 0, 0.12);
}

/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.weibo-body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: var(--weibo-bg-light);
    color: var(--weibo-text);
    line-height: 1.6;
}

.weibo-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 60px;
    gap: 20px;
}

/* 顶部导航栏 */
.weibo-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--weibo-bg);
    border-bottom: 1px solid var(--weibo-border);
    box-shadow: 0 2px 8px var(--weibo-shadow);
}

.weibo-topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.weibo-topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.weibo-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--weibo-primary);
    font-weight: 600;
    font-size: 20px;
}

.weibo-search {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

.weibo-search-input {
    width: 100%;
    padding: 8px 40px 8px 16px;
    border: 1px solid var(--weibo-border);
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.weibo-search-input:focus {
    border-color: var(--weibo-primary);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.1);
}

.weibo-search-btn {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: var(--weibo-text-lighter);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weibo-search-btn:hover {
    color: var(--weibo-primary);
}

.weibo-topbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.weibo-nav-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--weibo-text);
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.2s;
}

.weibo-nav-icon:hover {
    background: var(--weibo-bg-dark);
    color: var(--weibo-primary);
}

.weibo-nav-icon.is-active {
    color: var(--weibo-primary);
}

.weibo-nav-icon svg {
    width: 20px;
    height: 20px;
}

.weibo-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.weibo-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--weibo-text);
    transition: all 0.3s;
}

/* 左侧边栏 */
.weibo-sidebar {
    width: 200px;
    background: var(--weibo-bg);
    border-radius: 8px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.weibo-sidebar-header {
    margin-bottom: 16px;
}

.weibo-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--weibo-text);
}

.weibo-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weibo-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--weibo-text);
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s;
}

.weibo-sidebar-link:hover {
    background: var(--weibo-bg-dark);
    color: var(--weibo-primary);
}

.weibo-sidebar-link.is-active {
    background: var(--weibo-primary);
    color: white;
}

.weibo-sidebar-link svg {
    width: 18px;
    height: 18px;
}

/* 主要内容区 */
.weibo-main {
    flex: 1;
    min-width: 0;
}

/* 用户信息卡片 */
.weibo-profile-card {
    background: var(--weibo-bg);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.weibo-profile-carousel-wrapper {
    position: relative;
}

.weibo-profile-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.weibo-profile-slide.is-active {
    display: block;
    opacity: 1;
}

.weibo-profile-banner {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.weibo-profile-banner-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transition: transform 0.5s ease;
}

.weibo-profile-slide.is-active .weibo-profile-banner-bg {
    transform: scale(1);
}

.weibo-profile-slide:not(.is-active) .weibo-profile-banner-bg {
    transform: scale(1.05);
}

.weibo-profile-content {
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: background-color 0.5s ease;
}

.weibo-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--weibo-bg);
    margin-top: -60px;
    background: var(--weibo-bg);
    position: relative;
    z-index: 1;
}

.weibo-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weibo-profile-info {
    flex: 1;
}

.weibo-profile-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.weibo-profile-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--weibo-text);
}

.weibo-profile-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.weibo-profile-name a:hover {
    color: var(--weibo-primary);
}

.weibo-profile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--weibo-primary);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
}

.weibo-profile-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.weibo-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weibo-stat-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--weibo-text);
}

.weibo-stat-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.weibo-stat-value a:hover {
    color: var(--weibo-primary);
}

.weibo-stat-label {
    font-size: 12px;
    color: var(--weibo-text-lighter);
}

.weibo-profile-desc {
    color: var(--weibo-text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.weibo-profile-actions {
    margin-top: 16px;
}

/* 轮播指示器 */
.weibo-profile-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.weibo-profile-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.weibo-profile-indicator:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.2);
}

.weibo-profile-indicator.is-active {
    background: var(--weibo-primary);
    width: 24px;
    border-radius: 4px;
}

/* 移动端指示器调整 */
@media (max-width: 768px) {
    .weibo-profile-indicators {
        bottom: 15px;
    }

    .weibo-profile-indicator {
        width: 6px;
        height: 6px;
    }

    .weibo-profile-indicator.is-active {
        width: 20px;
    }
}

.weibo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.weibo-btn-primary {
    background: var(--weibo-primary);
    color: white;
}

.weibo-btn-primary:hover {
    background: var(--weibo-primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.weibo-btn svg {
    width: 18px;
    height: 18px;
}

/* 标签页 */
.weibo-tabs {
    background: var(--weibo-bg);
    border-radius: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--weibo-border);
}

.weibo-tabs-container {
    display: flex;
    gap: 0;
}

.weibo-tab {
    padding: 16px 24px;
    text-decoration: none;
    color: var(--weibo-text-light);
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.weibo-tab:hover {
    color: var(--weibo-primary);
}

.weibo-tab.is-active {
    color: var(--weibo-primary);
    border-bottom-color: var(--weibo-primary);
}

/* 视频网格 */
.weibo-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.weibo-video-card {
    background: var(--weibo-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.weibo-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px var(--weibo-shadow-hover);
}

.weibo-video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.weibo-video-cover {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: var(--weibo-bg-dark);
    overflow: hidden;
}

.weibo-video-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weibo-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.weibo-video-card:hover .weibo-video-play-icon {
    opacity: 1;
}

.weibo-video-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.weibo-video-info {
    padding: 12px;
}

.weibo-video-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--weibo-text);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.weibo-video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--weibo-text-lighter);
}

.weibo-video-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.weibo-video-stat svg {
    width: 12px;
    height: 12px;
}

/* 内容区 */
.weibo-content {
    background: var(--weibo-bg);
    border-radius: 8px;
    padding: 20px;
}

.weibo-section {
    margin-bottom: 40px;
}

.weibo-section:last-child {
    margin-bottom: 0;
}

.weibo-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.weibo-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--weibo-text);
}

.weibo-section-more {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--weibo-text-light);
    font-size: 14px;
    transition: color 0.2s;
}

.weibo-section-more:hover {
    color: var(--weibo-primary);
}

/* 右侧边栏 */
.weibo-rightbar {
    width: 280px;
}

.weibo-rightbar-card {
    background: var(--weibo-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.weibo-rightbar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--weibo-text);
    margin-bottom: 16px;
}

.weibo-rightbar-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.weibo-rightbar-item {
    padding: 10px 12px;
    text-decoration: none;
    color: var(--weibo-text-light);
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.2s;
}

.weibo-rightbar-item:hover {
    background: var(--weibo-bg-dark);
    color: var(--weibo-primary);
}

/* 列表页 */
.weibo-list-page {
    background: var(--weibo-bg);
    border-radius: 8px;
    padding: 20px;
}

.weibo-list-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--weibo-border);
}

.weibo-list-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--weibo-text);
    margin-bottom: 8px;
}

.weibo-list-count {
    font-size: 14px;
    color: var(--weibo-text-lighter);
}

.weibo-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--weibo-text-lighter);
}

/* 分页 */
.weibo-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--weibo-border);
}

.weibo-page-btn {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--weibo-text);
    font-size: 14px;
    border: 1px solid var(--weibo-border);
    border-radius: 4px;
    transition: all 0.2s;
}

.weibo-page-btn:hover {
    border-color: var(--weibo-primary);
    color: var(--weibo-primary);
}

.weibo-page-btn.is-active {
    background: var(--weibo-primary);
    color: white;
    border-color: var(--weibo-primary);
}

/* 详情页 */
.weibo-detail-page {
    background: var(--weibo-bg);
    border-radius: 8px;
    padding: 20px;
}

.weibo-detail-header {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.weibo-detail-poster {
    width: 200px;
    flex-shrink: 0;
}

.weibo-detail-poster img {
    width: 100%;
    border-radius: 8px;
}

.weibo-detail-info {
    flex: 1;
}

.weibo-detail-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--weibo-text);
    margin-bottom: 16px;
}

.weibo-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.weibo-tag {
    padding: 4px 12px;
    background: var(--weibo-bg-dark);
    color: var(--weibo-text-light);
    border-radius: 4px;
    font-size: 12px;
}

.weibo-detail-stats {
    display: flex;
    gap: 24px;
}

.weibo-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--weibo-text-light);
    font-size: 14px;
}

.weibo-detail-section {
    margin-bottom: 32px;
}

.weibo-detail-section .weibo-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.weibo-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--weibo-text);
    margin: 0;
}

.weibo-sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--weibo-bg-light);
    border: 1px solid var(--weibo-border);
    border-radius: 6px;
    color: var(--weibo-text);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.weibo-sort-btn:hover {
    background: var(--weibo-primary);
    border-color: var(--weibo-primary);
    color: white;
}

.weibo-sort-btn svg {
    transition: transform 0.2s;
}

.weibo-sort-btn[data-sort="desc"] svg {
    transform: rotate(180deg);
}

.weibo-episode-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.weibo-episode-group {
    background: var(--weibo-bg-light);
    border-radius: 8px;
    padding: 16px;
}

.weibo-episode-group-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--weibo-text);
    margin-bottom: 12px;
}

.weibo-episode-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.weibo-episode-item,
.weibo-episode-btn {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--weibo-text);
    background: var(--weibo-bg);
    border: 1px solid var(--weibo-border);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
}

.weibo-episode-item:hover,
.weibo-episode-btn:hover {
    border-color: var(--weibo-primary);
    color: var(--weibo-primary);
}

.weibo-episode-item.is-active,
.weibo-episode-btn.is-active {
    background: var(--weibo-primary);
    color: white;
    border-color: var(--weibo-primary);
}

.weibo-episode-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.weibo-episode-section {
    margin-top: 20px;
}

.weibo-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.weibo-info-item {
    display: flex;
    gap: 8px;
}

.weibo-info-label {
    color: var(--weibo-text-lighter);
    font-size: 14px;
}

.weibo-info-value {
    color: var(--weibo-text);
    font-size: 14px;
}

.weibo-detail-synopsis {
    color: var(--weibo-text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
    max-height: 120px;
    overflow-y: auto;
}

.weibo-detail-info .weibo-detail-synopsis {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--weibo-border);
}

/* 容器 */
.weibo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 播放器 */
.weibo-player-container {
    margin-bottom: 24px;
}

.weibo-player-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

/* 播放页 */
.weibo-play-page {
    background: var(--weibo-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.weibo-play-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--weibo-border);
}

.weibo-play-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--weibo-bg-light);
    border: 1px solid var(--weibo-border);
    border-radius: 6px;
    text-decoration: none;
    color: var(--weibo-text);
    font-size: 14px;
    transition: all 0.2s;
}

.weibo-play-back:hover {
    background: var(--weibo-primary);
    color: white;
    border-color: var(--weibo-primary);
}

.weibo-play-back svg {
    width: 20px;
    height: 20px;
}

.weibo-play-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--weibo-text);
    flex: 1;
}

.weibo-player-box {
    margin-bottom: 30px;
}

.weibo-player-box .weibo-player-wrapper {
    position: relative;
    overflow: hidden;
}

.weibo-player-box .weibo-player-wrapper .player-ad-layer {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99 !important;
    overflow: hidden !important;
}

/* 上一集下一集导航 */
.weibo-episode-nav {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--weibo-border);
}

.weibo-episode-nav-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--weibo-bg-light);
    border: 1px solid var(--weibo-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--weibo-text);
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

.weibo-episode-nav-btn:hover {
    background: var(--weibo-primary);
    color: white;
    border-color: var(--weibo-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.weibo-episode-nav-btn.weibo-episode-nav-disabled {
    background: var(--weibo-bg);
    color: var(--weibo-text-lighter);
    cursor: not-allowed;
    opacity: 0.6;
}

.weibo-episode-nav-btn.weibo-episode-nav-disabled:hover {
    background: var(--weibo-bg);
    color: var(--weibo-text-lighter);
    transform: none;
    box-shadow: none;
}

.weibo-episode-nav-prev {
    flex-direction: row;
}

.weibo-episode-nav-next {
    flex-direction: row-reverse;
}

.weibo-episode-nav-label {
    font-weight: 500;
    white-space: nowrap;
}

.weibo-episode-nav-name {
    color: var(--weibo-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.weibo-episode-nav-btn:hover .weibo-episode-nav-name {
    color: rgba(255, 255, 255, 0.9);
}

.weibo-episode-nav-btn svg {
    width: 18px;
    height: 18px;
}

/* 播放源列表 */
.weibo-play-sources {
    padding: 24px;
    background: var(--weibo-bg-light);
    border-radius: 12px;
    margin-top: 24px;
}

.weibo-play-sources .weibo-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.weibo-play-sources .weibo-section-title {
    margin: 0;
}

/* 移动端遮罩层 */
.weibo-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.weibo-mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .weibo-rightbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .weibo-layout {
        flex-direction: column;
        padding-top: 60px;
    }

    .weibo-sidebar {
        position: fixed;
        top: 60px;
        left: 0;
        width: 280px;
        height: calc(100vh - 60px);
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s;
        overflow-y: auto;
        margin-bottom: 0;
    }

    .weibo-sidebar.is-open {
        transform: translateX(0);
    }

    .weibo-topbar-left {
        gap: 12px;
    }

    .weibo-search {
        max-width: 200px;
    }

    .weibo-topbar-nav {
        display: none;
    }

    .weibo-menu-toggle {
        display: flex;
    }

    .weibo-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .weibo-detail-header {
        flex-direction: column;
    }

    .weibo-detail-poster {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .weibo-play-page {
        padding: 12px;
    }

    .weibo-play-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .weibo-play-title {
        font-size: 18px;
    }

    .weibo-episode-nav {
        flex-direction: column;
        gap: 12px;
    }

    .weibo-episode-nav-btn {
        width: 100%;
    }

    .weibo-play-sources {
        padding: 16px;
    }
}

