/* ===== 内容页统一样式 ===== */

/* 页面容器 */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.content-info {
    padding-left: 0;
}

/* ===== 面包屑导航 - 使用nav-block统一样式 ===== */
/* 内容页的面包屑导航样式已统一使用list.htm中的.nav-block */

/* ===== 标题区块 ===== */
.title-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 10px 20px 20px;
}

.content-title {
    font-size: 21px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 10px 0px;
}

/* 文章统计信息 */
.article-stats {
    margin: 0;
}

.article-stats .list-inline {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.article-stats .list-inline > li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
    padding: 0;
}

.article-stats i {
    top: 0;
    font-size: 13px;
    color: #999;
    margin-right: 0;
}

.article-stats .count-number {
    font-weight: 600;
    color: #333;
}

/* ===== 主要内容区块 ===== */
.main-content-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 20px;
}

/* ===== 视频播放器区块（独立） ===== */
.video-player-section {
    position: relative;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    overflow: hidden;
    min-height: 600px;
}

/* 视频iframe */
.video-iframe {
    width: 100%;
    height: 600px;
    display: block;
    border: none;
}

/* 加载中提示 */
.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loading-content {
    text-align: center;
    color: #fff;
}

/* 加载动画 */
.loading-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #f56c12;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-text {
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* 封面图/视频区域 */
.content-media {
    text-align: center;
}

.content-media img {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-media .iframe {
    width: 100%;
    height: 600px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 在线视频页面：全宽视频不需要 padding-bottom */
#movie_online.content-media {
    padding-bottom: 0;
}

#movie_online .iframe {
    display: block;
    margin: 0;
}

/* 信息侧边栏 */

.content-info p {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 10px;
    color: #666;
}

.content-info .header {
    font-weight: 600;
    color: #333;
    margin-right: 8px;
}

.content-info a {
    color: #f56c12;
    text-decoration: none;
    transition: color 0.2s ease;
}

.content-info a:hover {
    color: #d65a0a;
}

/* 类别标签 - 现代简约风格 */
.content-info .genre {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6px 14px;
    border-radius: 20px;
    margin: 4px 6px 4px 0;
    font-size: 13px;
    color: #495057;
    border: 1px solid #e9ecef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    font-weight: 500;
}

.content-info .genre:hover {
    background: linear-gradient(135deg, #fff7f0 0%, #ffe8d9 100%);
    color: #f56c12;
    border-color: #ffd4b8;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(245, 108, 18, 0.15);
}

.content-info .genre a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
}

.content-info .genre a:hover {
    color: inherit;
    text-decoration: none;
}

/* 类别标签容器 */
.content-info p:has(.genre) {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    line-height: 2;
}


/* ===== 操作按钮区块 ===== */
.action-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 20px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    min-width: 120px;
    padding: 10px 24px;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.action-buttons .btn i {
    margin-right: 6px;
}

/* ===== 内容区块标题 ===== */
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 24px 0 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.section-title i {
    color: #f56c12;
    font-size: 18px;
}

.section-title .toggle-icon {
    margin-left: auto;
    font-size: 16px;
    color: #999;
    transition: transform 0.3s ease;
}

/* ===== BT种子下载区块 ===== */
.bt-download-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 20px;
}

.bt-download-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.bt-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.bt-label i {
    color: #5cb85c;
    font-size: 18px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    background: linear-gradient(135deg, #5cb85c 0%, #4cae4c 100%);
    border: none;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(92, 184, 92, 0.2);
    white-space: nowrap;
}

.btn-download:hover {
    background: linear-gradient(135deg, #4cae4c 0%, #449d44 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 184, 92, 0.35);
    color: #ffffff !important;
    text-decoration: none;
}

.btn-download:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(92, 184, 92, 0.3);
}

.btn-download i {
    font-size: 14px;
}

/* ===== 磁力投稿区块 ===== */
.magnet-submit-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 标题 - 可点击切换 */
.magnet-submit-section .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    background: #fff;
    line-height: 1.5;
}

.magnet-submit-section .section-title:hover {
    background: #fff7f0;
    color: #f56c12;
}

.magnet-submit-section .section-title span {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.magnet-submit-section .section-title span i {
    color: #f56c12;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 1px;
}

/* 切换图标 */
.magnet-submit-section .toggle-icon {
    font-size: 16px;
    color: #999;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.magnet-submit-section:not(.collapsed) .toggle-icon {
    transform: rotate(45deg);
    color: #f56c12;
}

/* 表单容器 */
.magnet-submit-form {
    position: relative;
    padding: 0 20px 20px 20px;
    max-height: 500px;
    opacity: 1;
    transition: all 0.3s ease;
}

/* 收起状态 */
.magnet-submit-section.collapsed .magnet-submit-form {
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
    overflow: hidden;
}

/* 输入框包装器 */
.magnet-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
}

/* 标签样式 */
.magnet-input-wrapper .input-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    min-width: 90px;
}

.magnet-input-wrapper .input-label i {
    color: #f56c12;
    font-size: 16px;
}

/* 输入框样式 */
.magnet-input-wrapper .magnet-input {
    flex: 1;
    min-width: 200px;
    height: 40px;
    padding: 8px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Courier New', Consolas, monospace;
}

.magnet-input-wrapper .magnet-input:focus {
    border-color: #f56c12;
    box-shadow: 0 0 0 3px rgba(245, 108, 18, 0.1);
    outline: none;
}

.magnet-input-wrapper .magnet-input::placeholder {
    color: #bbb;
    font-size: 13px;
}

/* 提交按钮 */
.magnet-input-wrapper .btn-submit {
    height: 40px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 6px;
    background: linear-gradient(135deg, #f56c12 0%, #ff8533 100%);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(245, 108, 18, 0.2);
}

.magnet-input-wrapper .btn-submit:hover {
    background: linear-gradient(135deg, #e55a00 0%, #f56c12 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 108, 18, 0.35);
    color: #fff;
}

.magnet-input-wrapper .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(245, 108, 18, 0.3);
}

.magnet-input-wrapper .btn-submit i {
    font-size: 13px;
}

/* 帮助文本 */
.magnet-submit-form .help-text {
    margin: 0;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4ff 100%);
    border-left: 3px solid #5bc0de;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.magnet-submit-form .help-text i {
    color: #5bc0de;
    margin-top: 2px;
    flex-shrink: 0;
}

.magnet-submit-section .close {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.magnet-submit-section .close:hover {
    opacity: 1;
}

/* ===== 表格样式 ===== */
.content-table-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 20px;
}

/* 磁力链接列表 - 现代化布局 */
.magnet-list-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.magnet-list-header .magnet-icon {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.magnet-list-header .magnet-icon i {
    color: #f56c12;
}

.magnet-list-header .magnet-size-label,
.magnet-list-header .magnet-date-label {
    width: 100px;
    text-align: center;
    white-space: nowrap;
}

/* 简化版头部（只有标题） */
.magnet-list-header-simple {
    justify-content: flex-start;
}

/* 磁力链接列表 */
.magnet-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 磁力链接项 */
.magnet-item {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    background: #fff;
}

.magnet-item:hover {
    border-color: #f56c12;
    box-shadow: 0 2px 8px rgba(245, 108, 18, 0.1);
    transform: translateX(4px);
}

.magnet-link {
    display: inline;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.magnet-link:hover {
    color: #f56c12;
    text-decoration: none;
}

.magnet-link:hover .magnet-text {
    color: #f56c12;
}

/* 复制按钮 */
.magnet-copy-btn {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #666;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    vertical-align: middle;
}

.magnet-copy-btn:hover {
    background: #f56c12;
    color: #fff;
    border-color: #f56c12;
}

.magnet-copy-btn:active {
    transform: scale(0.95);
}

.magnet-copy-btn.copied {
    background: #4caf50;
    color: #fff;
    border-color: #4caf50;
}

.magnet-info {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
}

.magnet-name {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.magnet-text {
    color: #333;
    font-size: 14px;
    word-break: break-all;
    line-height: 1.5;
}

.magnet-item:hover .magnet-text {
    color: #f56c12;
}

.magnet-tags {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.magnet-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.magnet-tag.tag-hd {
    background: #e3f2fd;
    color: #1976d2;
}

.magnet-tag.tag-subtitle {
    background: #fff3e0;
    color: #f57c00;
}

.magnet-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.magnet-size,
.magnet-date {
    width: 100px;
    text-align: center;
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

/* 简化版磁力项（无元数据） */
.magnet-item-simple .magnet-info {
    padding: 14px 16px;
}

.magnet-item-simple .magnet-name {
    width: 100%;
}

/* 响应式：平板 */
@media screen and (max-width: 768px) {
    .magnet-list-header .magnet-size-label,
    .magnet-list-header .magnet-date-label {
        display: none;
    }
    
    .magnet-meta {
        flex-direction: column;
        gap: 4px;
        align-items: flex-end;
    }
    
    .magnet-size,
    .magnet-date {
        width: auto;
        font-size: 12px;
    }
    
    .magnet-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .magnet-name {
        width: 100%;
    }
}

/* 响应式：手机 */
@media screen and (max-width: 480px) {
    .content-table-section {
        padding: 12px;
    }
    
    .magnet-list-header {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .magnet-info {
        padding: 10px 12px;
    }
    
    .magnet-text {
        font-size: 13px;
    }
    
    .magnet-meta {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }
    
    .magnet-tag {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .magnet-copy-btn {
        font-size: 11px;
        padding: 2px 8px;
        margin-left: 6px;
    }
}

.content-table-section table {
    margin-bottom: 0;
    border-radius: 6px;
    overflow: hidden;
}

.content-table-section table tr {
    transition: background-color 0.2s ease;
}

.content-table-section table tr:hover {
    background-color: #f9f9f9 !important;
}

.content-table-section .btn-mini-new {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    margin: 0 2px;
}

/* ===== 提示信息区块 ===== */
.tips-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 20px;
}

.tips-section p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* ===== 样品图像瀑布流 ===== */
.samples-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 20px;
}

#sample-waterfall {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: start;
    margin-top: 12px;
}

.sample-box {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sample-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sample-box .photo-frame {
    overflow: hidden;
    margin: 0;
    background: #f5f5f5;
}

.sample-box img {
    display: block;
    transition: transform 0.3s ease;
}

.sample-box:hover img {
    transform: scale(1.05);
}

/* ===== 演员信息区块 ===== */
#star-div {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 20px;
}

#avatar-waterfall {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 12px;
}

.avatar-box {
    display: block;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 8px;
}

.avatar-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.avatar-box .photo-frame {
    overflow: hidden;
    height: 120px;
    margin: 0 0 8px 0;
    border-radius: 4px;
    background: #f5f5f5;
}

.avatar-box span {
    display: block;
    font-size: 13px;
    color: #666;
    padding: 4px 0;
}

/* 演员标签悬浮框 */
.star-box {
    display: none;
    position: absolute;
    z-index: 1000;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    padding: 12px;
    pointer-events: none;
}

.star-box.star-box-up {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 评论区块 ===== */
.comments-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 20px;
}

/* ===== 同类影片区块 ===== */
.related-section {
    margin: 24px 0;
}

.related-section .list-grid-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 20px;
    margin-top: 16px;
}

/* ===== 响应式布局 ===== */
@media screen and (max-width: 992px) {
    .content-info {
        padding: 0 30px;
    }
}
@media screen and (max-width: 768px) {
    .content-container {
        padding: 0 12px;
    }
    
    .nav-block,
    .title-section,
    .main-content-section,
    .action-section,
    .bt-download-section,
    .magnet-submit-section,
    .content-table-section,
    .tips-section,
    .samples-section,
    #star-div,
    .related-section .list-grid-container {
        margin: 12px 0;
        padding: 16px;
        border-radius: 6px;
    }
    
    /* BT下载区块响应式 */
    .bt-label {
        font-size: 14px;
    }
    
    .bt-label i {
        font-size: 16px;
    }
    
    .btn-download {
        padding: 9px 20px;
        font-size: 13px;
    }
    
    /* 磁力投稿区块响应式 */
    .magnet-submit-section .section-title {
        font-size: 15px;
        padding: 16px;
    }
    
    .magnet-input-wrapper {
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .magnet-input-wrapper .input-label {
        font-size: 13px;
        min-width: 80px;
        
    }
    
    .magnet-input-wrapper .magnet-input {
        min-width: 180px;
        height: 38px;
        font-size: 13px;
    }
    
    .magnet-input-wrapper .btn-submit {
        height: 38px;
        padding: 0 18px;
        font-size: 13px;
    }
    
    .magnet-submit-form .help-text {
        font-size: 12px;
        padding: 9px 12px;
    }
    
    .video-player-section {
        margin: 12px 0;
        min-height: 250px;
        border-radius: 6px;
    }
    
    .video-iframe {
        height: 450px;
    }
    
    .content-title {
        font-size: 18px;
       
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .content-media .iframe {
        height: 300px;
    }
    
    .content-info {
        margin-top: 16px;
        padding: 0 20px;
    }
    
    /* 类别标签响应式 */
    .content-info .genre {
        padding: 5px 12px;
        font-size: 12px;
        border-radius: 16px;
    }
    
    .action-buttons {
        gap: 12px;
    }
    
    .action-buttons .btn {
        min-width: 90px;
        padding: 5px 12px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .article-stats .list-inline {
        gap: 8px;
    }
    
    .article-stats .list-inline > li {
        font-size: 11px;
    }
    
    #sample-waterfall,
    #avatar-waterfall {
        gap: 8px;
    }
    
    /* BT下载区块移动端优化 */
    .bt-download-section {
        padding: 14px 12px;
    }
    
    .bt-download-item {
        gap: 12px;
    }
    
    .bt-label {
        font-size: 14px;
    }
    
    .btn-download {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* 磁力投稿区块移动端优化 */
    .magnet-submit-section .section-title {
        font-size: 14px;
        padding: 16px;
    }
    
    .magnet-submit-section .section-title i {
        font-size: 16px;
    }
    
    .magnet-input-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .magnet-input-wrapper .input-label {
        min-width: auto;
        font-size: 13px;
        margin-top: 10px;
    }
    
    .magnet-input-wrapper .magnet-input {
        min-width: auto;
        width: 100%;
        height: 38px;
        font-size: 13px;
    }
    
    .magnet-input-wrapper .btn-submit {
        width: 100%;
        height: 40px;
        font-size: 14px;
        justify-content: center;
    }
    
    .magnet-submit-form .help-text {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .video-player-section {
        min-height: 200px;
    }
    
    .video-iframe {
        height: 250px;
    }
    
    .loading-spinner {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .loading-text {
        font-size: 14px;
    }
    
    .desc-img-box {
        max-width: 100%;
    }
    
    .description-images {
        gap: 8px;
    }
    
    /* 类别标签移动端优化 */
    .content-info .genre {
        padding: 4px 10px;
        font-size: 11px;
        border-radius: 14px;
        margin: 3px 4px 3px 0;
    }
}

/* ===== 内容描述区块 ===== */
.description-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 16px 0;
    padding: 20px;
    line-height: 1.8;
    color: #666;
}

.description-section p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.description-section .header {
    font-weight: 600;
    color: #333;
    margin-right: 8px;
}

/* 内容简介图片容器 */
.description-images {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

/* 内容简介图片框 */
.desc-img-box {
    display: block;
    max-width: 250px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
}

.desc-img-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.desc-img-frame {
    overflow: hidden;
    background: #f5f5f5;
    line-height: 0;
}

.desc-img-frame img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.desc-img-box:hover .desc-img-frame img {
    transform: scale(1.05);
}

.description-section img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ===== 通用卡片样式优化 ===== */
.movie {
    margin: 0;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-radius: 8px;
}

/* ===== 分隔线 ===== */
.clearfix {
    margin: 16px 0;
}



/* ===== 评论样式 ===== */
.comment-form-container {
    margin: 20px 0;
    background: #ffffff;
    border-radius: 5px;
}
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 10px;
    resize: vertical;
}
.comment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comment-tips {
    color: #888;
    font-size: 12px;
}
#comment-container {
    margin: 30px 0;
}
.comment-item {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #fff;
}
.comment-header {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}
.comment-author {
    font-weight: bold;
    color: #333;
}
.comment-time {
    color: #999;
    font-size: 12px;
}
.comment-content {
    line-height: 1.6;
    margin-bottom: 5px;
}
.comment-footer {
    text-align: right;
    font-size: 12px;
}
.reply-btn {
    color: #337ab7;
    cursor: pointer;
}
.comment-pagination {
    margin-top: 20px;
    text-align: center;
}
.page-btn {
    display: inline-block;
    padding: 3px 8px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #337ab7;
    text-decoration: none;
}
.page-btn.current {
    background: #337ab7;
    color: #fff;
    border-color: #337ab7;
}
.no-comment {
    padding: 20px;
    text-align: center;
    color: #999;
}
#reply-to {
    margin-bottom: 10px;
    padding: 5px 10px;
    background: #eee;
    border-radius: 3px;
}
#cancel-reply {
    color: #d9534f;
}

#mag-submit {
    display: block;
    padding: 0;
}

.nav-block {
    max-width: 100%;
    padding: 10px 20px;
}
.star-box-common li {
    width: auto;
}
.star-box img {
    margin: 0;
}