* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f5f5f5;
    color: #333;
    max-width: 430px; /* 模拟手机宽度 */
    margin: 0 auto;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 顶部状态栏 + 导航 */
header {
    background-color:#ededed;
    color:#565656;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}
.back-btn { font-size: 24px; cursor: pointer; }
.title {
    font-size: 18px;
    font-weight: bold;
    flex: 1;                    /* 关键 */
    text-align: center;
    padding: 0 10px;
        }
.icons { font-size: 22px; display: flex; gap: 15px; }

/* 大封面图 */
.banner {
    width: 100%;
    height: 220px;
    background: url('https://saratogafalcon.org/wp-content/uploads/2023/03/Bojack_Horseman-1024x576.png') center/cover no-repeat;
    position: relative;
}

/* 剧集列表 */
.episode-list {
    flex: 1;
    overflow-y: auto;
    background: white;
    padding: 10px 0;
}

.episode-item {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.episode-item:hover { background: #f8f8f8; }

.thumbnail {
    width: 100px;
    height: 60px;
    background: #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.episode-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}
.episode-duration {
    font-size: 14px;
    color: #666;
}

