/* ========== 短剧库样式 - h5.bt88.app 风格 ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background: #f5f5f7;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; border: 0; }
button { cursor: pointer; border: 0; background: none; font-family: inherit; }

.dj-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Header ========== */
.dj-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}
.dj-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.dj-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    flex-shrink: 0;
}
.dj-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}
.dj-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}
.dj-nav a {
    font-size: 14px;
    color: #555;
    transition: color 0.2s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}
.dj-nav a:hover, .dj-nav a.active {
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
}
.dj-header-search {
    flex-shrink: 0;
}
.dj-search-form {
    display: flex;
    align-items: center;
    background: #f5f5f7;
    border-radius: 20px;
    padding: 0 12px;
    height: 36px;
    width: 100%;
}
.dj-search-form input {
    flex: 1;
    border: 0;
    background: none;
    outline: none;
    font-size: 13px;
    color: #333;
    height: 100%;
}
.dj-search-form input::placeholder {
    color: #aaa;
}
.dj-search-form button {
    color: #999;
    padding: 0 4px;
    font-size: 13px;
}
.dj-search-form button:hover {
    color: #ff6b6b;
}

/* ========== 分类导航 ========== */
.dj-cate-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    overflow-x: auto;
}
.dj-cate-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 0;
}
.dj-cate-label {
    font-size: 13px;
    color: #888;
    margin-right: 12px;
    white-space: nowrap;
}
.dj-cate-link {
    display: inline-block;
    padding: 4px 10px;
    font-size: 13px;
    color: #555;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.2s;
    margin-right: 4px;
}
.dj-cate-link:hover {
    color: #ff6b6b;
    background: #fff0f0;
}
.dj-cate-link.active {
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    font-weight: 500;
}

/* ========== Section ========== */
.dj-section {
    padding: 24px 0;
}
.dj-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dj-section-title i {
    color: #ff6b6b;
}

/* ========== 推荐区 ========== */
.dj-recommend {
    background: #fff;
    border-radius: 12px;
    margin: 20px 0;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.dj-recommend-grid,
.dj-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    align-items: stretch;
}
.dj-recommend-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f8fa;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.dj-recommend-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    border-radius: 10px;
}
.dj-recommend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.dj-recommend-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dj-item-year-big {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    z-index: 2;
}
.dj-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: #999;
    margin-top: 6px;
}
.dj-list-meta i {
    margin-right: 2px;
}
.dj-meta-cate {
    color: #ff6b6b;
}
.dj-meta-actor {
    color: #888;
}
.dj-recommend-rank {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.dj-recommend-rank.rank-1 { background: #ff6b6b; }
.dj-recommend-rank.rank-2 { background: #ffa726; }
.dj-recommend-rank.rank-3 { background: #ffd54f; color: #333; }
.dj-recommend-info {
    padding: 10px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}
.dj-recommend-info h3 {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
}
.dj-title-row {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
}
.dj-title-text {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.dj-recommend-info p {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.dj-meta-left {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}
.dj-meta-left i {
    color: #ff6b6b;
    margin-right: 2px;
}
.dj-meta-right i {
    color: #aaa;
    margin-right: 2px;
}
.dj-meta-right {
    white-space: nowrap;
    flex-shrink: 0;
}
.dj-recommend-cate-inline {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    padding: 1px 5px;
    border-radius: 3px;
    flex-shrink: 0;
    white-space: nowrap;
}
.dj-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 2;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

/* ========== 列表区 ========== */
.dj-list-section {
    padding-top: 8px;
}
.dj-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dj-list-item {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.dj-list-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
.dj-item-pic {
    position: relative;
    width: 140px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}
.dj-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dj-item-year {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 3px;
}
.dj-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}
.dj-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dj-list-item:hover .dj-item-title {
    color: #ff6b6b;
}
.dj-item-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}
.dj-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
}
.dj-item-meta i {
    margin-right: 3px;
}
.dj-item-cate {
    color: #ff6b6b;
}

/* ========== 分页 ========== */
.dj-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 20px 0;
}
.dj-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    background: #fff;
    border: 1px solid #ddd;
    transition: all 0.2s;
}
.dj-page-btn:hover {
    color: #ff6b6b;
    border-color: #ff6b6b;
    background: #fff5f5;
}
.dj-page-info {
    font-size: 14px;
    color: #999;
}

/* ========== 详情页 ========== */
.dj-detail-section {
    padding: 24px 0;
}
.dj-player {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
/* iframe 嵌入播放器：固定 16:9 */
.dj-iframe-player .dj-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.dj-iframe-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
/* video 直接播放：自适应原始比例，不变形 */
.dj-video-player {
    background: #000;
}
.dj-video-player .dj-video-wrapper {
    position: static;
    aspect-ratio: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    min-height: 360px;
    padding: 12px;
}
.dj-video-player video {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    display: block;
    background: #000;
    object-fit: contain;
    border-radius: 4px;
}
.dj-no-source {
    color: #999;
    text-align: center;
    padding: 80px 20px;
}
.dj-no-source-card {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 16px;
}
.dj-info-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.dj-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dj-card-title i {
    color: #ff6b6b;
}
.dj-card-sub {
    font-size: 12px;
    font-weight: normal;
    color: #999;
}
.dj-source-tabs {
    padding: 0;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dj-source-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e5e5e5;
}
.dj-source-tabs a.active,
.dj-source-tabs a:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-color: transparent;
}
.dj-source-tabs a span {
    font-size: 10px;
    opacity: 0.7;
}
.dj-episode-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dj-episode-item {
    display: inline-block;
    padding: 5px 14px;
    font-size: 13px;
    color: #555;
    background: #f5f5f7;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.dj-episode-item:hover {
    color: #ff6b6b;
    border-color: #ff6b6b;
}
.dj-episode-item.active {
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-color: transparent;
}
.dj-detail-info {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.dj-detail-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
}
.dj-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}
.dj-meta-item {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dj-meta-item i {
    color: #ff6b6b;
}
.dj-meta-item a {
    color: #ff6b6b;
}
.dj-detail-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.dj-detail-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ========== 评论区 ========== */
.dj-comment-section {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.dj-comment-count {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}
.dj-comment-input {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fafafa;
    border-radius: 10px;
    margin-bottom: 24px;
}
.dj-ci-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF2D50, #FF6A00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}
.dj-ci-body {
    flex: 1;
    min-width: 0;
}
.dj-ci-body textarea {
    width: 100%;
    min-height: 72px;
    padding: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    resize: vertical;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}
.dj-ci-body textarea:focus {
    border-color: #ff6b6b;
}
.dj-ci-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.dj-ci-tip {
    font-size: 12px;
    color: #999;
}
.dj-ci-tip i {
    color: #ff6b6b;
    margin-right: 4px;
}
.dj-ci-submit {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF2D50, #FF6A00);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
.dj-ci-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 45, 80, 0.3);
}
.dj-ci-submit i {
    margin-right: 4px;
}
.dj-comment-list {
    display: flex;
    flex-direction: column;
}
.dj-comment-item {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
}
.dj-comment-item > .dj-c-avatar {
    flex-shrink: 0;
}
.dj-comment-item > .dj-c-body {
    flex: 1;
    min-width: 0;
}
.dj-comment-item > .dj-comment-replies {
    width: 100%;
    margin-left: 52px;
    padding-left: 16px;
    border-left: 2px solid #f0f0f0;
    margin-top: 8px;
    margin-bottom: 4px;
}
.dj-comment-item:last-child {
    border-bottom: none;
}
.dj-c-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}
.dj-c-body {
    flex: 1;
    min-width: 0;
}
.dj-c-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.dj-c-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.dj-c-badge {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    background: linear-gradient(135deg, #FF2D50, #FF6A00);
    color: #fff;
}
.dj-c-time {
    font-size: 12px;
    color: #999;
}
.dj-c-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    word-break: break-all;
}
.dj-c-actions {
    display: flex;
    gap: 16px;
}
.dj-c-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border: none;
    background: transparent;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    border-radius: 14px;
    transition: all 0.15s;
}
.dj-c-btn:hover {
    background: #f5f5f5;
    color: #ff6b6b;
}
.dj-c-btn.liked {
    color: #ff6b6b;
}
.dj-c-btn.liked i {
    font-weight: 900;
}

/* ========== 回复区 ========== */
.dj-comment-replies {
    padding-left: 16px;
    border-left: 2px solid #f0f0f0;
}
.dj-reply-box {
    margin-top: 12px;
    margin-bottom: 12px;
    width: 100%;
}
.dj-reply-inner {
    padding: 16px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #eee;
}
.dj-reply-inner textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}
.dj-reply-inner textarea:focus {
    border-color: #ff6b6b;
}
.dj-reply-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
}
.dj-reply-cancel,
.dj-reply-send {
    padding: 7px 18px;
    border-radius: 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
}
.dj-reply-cancel {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
}
.dj-reply-cancel:hover {
    background: #f5f5f5;
}
.dj-reply-send {
    background: linear-gradient(135deg, #FF2D50, #FF6A00);
    color: #fff;
}
.dj-reply-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 45, 80, 0.3);
}
.dj-reply-send i {
    margin-right: 4px;
}
.dj-reply-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px dashed #f0f0f0;
}
.dj-reply-item > .dj-reply-avatar {
    flex-shrink: 0;
}
.dj-reply-item > .dj-reply-body {
    flex: 1;
    min-width: 0;
}
.dj-reply-item > .dj-reply-children {
    width: 100%;
}
.dj-reply-item:last-child {
    border-bottom: none;
}
.dj-reply-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF2D50, #FF6A00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}
.dj-reply-body {
    flex: 1;
    min-width: 0;
}
.dj-reply-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.dj-reply-name {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}
.dj-reply-time {
    font-size: 11px;
    color: #aaa;
}
.dj-reply-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 6px;
    word-break: break-all;
}
.dj-reply-actions-bar {
    display: flex;
    gap: 12px;
}
.dj-reply-actions-bar .dj-c-btn {
    padding: 2px 8px;
    font-size: 12px;
}

/* 用户评论容器 */
.dj-user-comments {
    border-bottom: 2px solid #FF2D50;
    margin-bottom: 8px;
}
.dj-user-comments > .dj-comment-item {
    background: linear-gradient(135deg, rgba(255,45,80,0.03), rgba(255,106,0,0.03));
    border-radius: 10px;
    padding: 12px;
    margin: 8px 0;
}

/* 嵌套回复子容器（无限层级） */
.dj-reply-children {
    margin-left: 42px;
    padding-left: 12px;
    border-left: 2px solid #f0e0e0;
    margin-top: 6px;
}
.dj-reply-item > .dj-reply-children {
    margin-left: 36px;
    padding-left: 10px;
    border-left: 2px solid #f5d0d0;
}
.dj-reply-item > .dj-reply-children .dj-reply-item > .dj-reply-children {
    margin-left: 30px;
    padding-left: 8px;
    border-left: 2px solid #fae0e0;
}
.dj-reply-item {
    padding: 6px 0;
}

/* ========== Footer ========== */
.dj-footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px 0;
    margin-top: 40px;
}
.dj-footer p {
    text-align: center;
    font-size: 13px;
    color: #999;
}

/* ========== 自动加载 ========== */
.dj-scroll-loader {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #999;
}
.dj-scroll-loader i {
    color: #ff6b6b;
    margin-right: 6px;
}
.dj-end-marker {
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
    color: #bbb;
    letter-spacing: 2px;
}

/* ========== 响应式 ========== */
@media (max-width: 992px) {
    .dj-item-pic {
        width: 120px;
        height: 75px;
    }
}
@media (max-width: 768px) {
    .dj-header-inner {
        padding: 0 12px;
        gap: 12px;
        height: 50px;
    }
    .dj-logo {
        font-size: 16px;
    }
    .dj-logo-text {
        display: none;
    }
    .dj-nav {
        display: none;
    }
    .dj-header-search {
        flex: 1;
        min-width: 0;
    }
    .dj-search-form input {
        font-size: 12px;
        padding: 6px 10px;
    }
    .dj-container {
        padding: 0 12px;
    }
    .dj-cate-inner {
        padding: 0 12px;
    }
    .dj-list-item {
        gap: 10px;
        padding: 10px;
    }
    .dj-item-pic {
        width: 100px;
        height: 65px;
    }
    .dj-item-title {
        font-size: 14px;
    }
    .dj-item-desc {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }
    .dj-item-meta {
        font-size: 11px;
        gap: 8px;
    }
    .dj-recommend-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .dj-detail-title {
        font-size: 18px;
    }
    .dj-episode-list {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
}
@media (max-width: 480px) {
    .dj-nav {
        gap: 8px;
    }
    .dj-nav a {
        font-size: 12px;
    }
    .dj-item-pic {
        width: 85px;
        height: 55px;
    }
    .dj-list-item {
        padding: 8px;
    }
}
