/* 来源：templates/classic/channel/view.ftl 内联样式块（第15-1292行）
 * 抽离为独立CSS文件，重复的 .video-message 相关定义已清理，仅保留第一份
 */

/* 评论区整体样式优化 */
.chats {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 24px;
}

.chat_header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.chat_header h4 {
    color: #2d3748;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat_header h4:before {
    content: '💬';
    font-size: 16px;
}

/* 评论列表样式 */
#chat_container {
    padding: 0;
    margin: 0;
    list-style: none;
}

#chat_container li {
    padding: 20px 24px;
    border-bottom: 1px solid #e0e7eb;
    position: relative;
}

#chat_container li:last-child {
    border-bottom: none;
}

/* 评论头像优化 - 增大尺寸 */
#chat_container .avt {
    float: left;
    margin-right: 16px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: transform 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#chat_container .avt:hover {
    transform: scale(1.05);
    border-color: #4299e1;
}

#chat_container .avt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

#chat_container .avt img:hover {
    opacity: 0.9;
}

/* 评论内容区域 */
.chat_body {
    margin-left: 25px; /* 48px头像 + 16px间距 */
    min-height: 48px;
}

.chat_body h5 {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.chat_name {
    color: #2d3748;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.chat_name:hover {
    color: #4299e1;
    text-decoration: none;
}

.chat_body span {
    color: #718096;
    font-size: 13px;
    margin-left: 8px;
}

/* 评论内容文本 */
.chat_pct {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
    word-wrap: break-word;
    word-break: break-word;
}

/* 回复按钮 */
.reply_this {
    float: right;
}

.reply_this a {
    color: #718096;
    font-size: 14px;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.reply_this a:hover {
    color: #4299e1;
    background-color: #f0f9ff;
    text-decoration: none;
}

/* 引用回复样式 */
.quote {
    background: #f7fafc;
    border-left: 3px solid #4299e1;
    padding: 8px 12px;
    margin: 8px 0;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    color: #718096;
}

.quote a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

/* 用户徽章 */
.chat_body img[style*="width: 34px"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0 4px 0 8px !important;
    border-radius: 3px;
    vertical-align: middle;
}

/* 评论发布区域 */
.chat_post {
    background: #f8fafc;
    padding: 20px 24px;
    border-top: 1px solid #e2e8f0;
}

.cbox-title {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
}

#chat_text {
    width: 100%;
    min-height: 80px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#chat_text:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.cbox-ats {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#btn-chat {
    background: #4299e1;
    border-color: #4299e1;
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

#btn-chat:hover {
    background: #3182ce;
    border-color: #3182ce;
    transform: translateY(-1px);
}

/* 现代化评论区样式 */
.modern-comment-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin: 24px 0;
    overflow: hidden;
}

.comment-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.comment-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-count {
    background: #4299e1;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.comment-list-container {
    min-height: 100px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list li {
    padding: 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    gap: 16px;
}

.comment-list li:last-child {
    border-bottom: none;
}

/* 评论头像样式优化 - 更大更显眼 */
.comment-list .avt {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comment-list .avt:hover {
    border-color: #4299e1;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(66, 153, 225, 0.2);
}

.comment-list .avt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 评论内容区域 */
.comment-list .chat_body {
    flex: 1;
    min-width: 0;
}

/* 评论头部信息 */
.comment-list .chat_body h5 {
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.comment-list .chat_body h5 .fl {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.comment-list .chat_name {
    font-weight: 600;
    font-size: 15px;
    color: #2d3748;
    text-decoration: none;
}

.comment-list .chat_name:hover {
    color: #4299e1;
    text-decoration: none;
}

/* 时间戳样式 */
.comment-list .chat_body h5 span {
    color: #718096;
    font-size: 13px;
    font-weight: 400;
}

/* 回复按钮 */
.comment-list .reply_this {
    flex-shrink: 0;
}

.comment-list .reply_this a {
    color: #718096;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.comment-list .reply_this a:hover {
    background: #e2e8f0;
    color: #4299e1;
    text-decoration: none;
}

/* 评论内容区域 */
.comment-list .chat_p {
    margin-top: 8px;
}

.comment-list .chat_pct {
    color: #2d3748;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
}

/* 引用样式 */
.comment-list .quote {
    background: #f7fafc;
    border-left: 3px solid #4299e1;
    padding: 8px 12px;
    margin: 8px 0;
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    color: #718096;
}

.comment-list .quote a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

/* 用户徽章样式优化 */
.comment-list .chat_body img[style*="width: 34px"],
.comment-list .chat_body img[src*="badge"],
.comment-list .user-badge {
    width: 32px !important;
    height: 32px !important;
    margin: 0 8px 0 0 !important;
    border-radius: 6px;
    vertical-align: middle;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: inline-block !important;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

/* 清除浮动样式适配 */
.comment-list .fl {
    float: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.comment-list .fr {
    float: none !important;
    margin-left: auto;
}

.comment-list .clear {
    display: none;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .comment-list li {
        padding: 16px;
        gap: 12px;
    }
    
    .comment-list .avt {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .comment-list .chat_name {
        font-size: 14px;
    }
    
    .comment-list .chat_body h5 {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .comment-list .reply_this {
        align-self: flex-end;
    }
    
    .comment-list .chat_body img[style*="width: 34px"],
    .comment-list .chat_body img[src*="badge"],
    .comment-list .user-badge {
        width: 28px !important;
        height: 28px !important;
    }
}

.comment-pagination {
    padding: 20px;
    text-align: center;
    background: #fafbfc;
    border-top: 1px solid #e2e8f0;
}

/* 评论发布区 */
.comment-form-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 24px;
}

.comment-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.comment-form-header h4 {
    margin: 0;
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
}

.reply-indicator {
    background: #e2e8f0;
    color: #4a5568;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: none;
    align-items: center;
    gap: 6px;
}

.reply-indicator.show {
    display: flex;
}

.cancel-reply {
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}

.cancel-reply:hover {
    background: #cbd5e0;
    color: #2d3748;
}

.comment-input-container {
    position: relative;
    margin-bottom: 16px;
}

.comment-textarea {
    width: 100%;
    min-height: 80px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
}

.comment-textarea:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.comment-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.emoji-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #718096;
    font-size: 13px;
}

.emoji-trigger:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    color: #4a5568;
}

.emoji-trigger.active {
    background: #4299e1;
    border-color: #4299e1;
    color: white;
}

/* 表情选择面板 */
.emoji-panel {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 320px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 100000;
    margin-bottom: 8px;
    display: none;
}

.emoji-panel.show {
    display: block;
}

.emoji-panel-content {
    padding: 16px;
    max-height: 240px;
    overflow-y: auto;
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

.emoji-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.2s ease;
}

.emoji-item:hover {
    background: #f7fafc;
}

.comment-submit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.char-count {
    font-size: 12px;
    color: #a0aec0;
}

.char-count.warning {
    color: #f56565;
}

.submit-hint {
    font-size: 12px;
    color: #a0aec0;
    font-style: italic;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .submit-hint {
        display: none;
    }
}

.submit-btn {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.submit-btn:disabled {
    background: #e2e8f0;
    color: #a0aec0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 提交中状态 */
.submit-btn.submitting {
    background: #cbd5e0 !important;
    color: #718096 !important;
    cursor: wait !important;
    transform: none !important;
    box-shadow: none !important;
    position: relative;
}

.submit-btn.submitting:hover {
    background: #cbd5e0 !important;
    transform: none !important;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .modern-comment-wrapper {
        margin: 16px 0;
        border-radius: 8px;
    }
    
    .comment-header {
        padding: 16px;
    }
    
    .comment-form-section {
        padding: 16px;
    }
    
    .comment-form-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .comment-submit {
        justify-content: space-between;
    }
    
    .emoji-panel {
        width: 280px;
    }
}

/* 分页样式 */
#pager {
    padding: 20px;
    background: #fafafa;
    border-top: 1px solid #e2e8f0;
}

/* 作者信息卡片头像优化 */
.author-avatar-large {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid #e2e8f0 !important;
    transition: transform 0.2s ease, border-color 0.2s ease !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.author-avatar-large:hover {
    transform: scale(1.05) !important;
    border-color: #4299e1 !important;
}

.user-avatar {
    text-align: center;
    margin-bottom: 16px;
}

/* 视频消息提示样式 */
.video-message {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 350px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.video-message.show {
    opacity: 1;
    transform: translateX(0);
}

.video-message.error {
    background: #fed7d7;
    color: #9b2c2c;
    border-left: 4px solid #e53e3e;
}

.video-message.success {
    background: #c6f6d5;
    color: #276749;
    border-left: 4px solid #38a169;
}

.video-message.info {
    background: #bee3f8;
    color: #2c5282;
    border-left: 4px solid #3182ce;
}

.video-message.warning {
    background: #fef5e7;
    color: #b7791f;
    border-left: 4px solid #d69e2e;
}

.video-message .close-btn {
    float: right;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.video-message .close-btn:hover {
    opacity: 1;
}

.video-message-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .video-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        font-size: 13px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    #chat_container li {
        padding: 16px 20px;
    }
    
    #chat_container .avt {
        width: 60px;
        height: 60px;
        margin-right: 12px;
    }
    
    .chat_body {
        margin-left: 2px; /* 60px头像 + 12px间距 */
    }
    
    .chat_post {
        padding: 16px 20px;
    }
    
    .author-avatar-large {
        width: 64px !important;
        height: 64px !important;
    }
}

/* ===== 相关推荐样式优化 ===== */

/* 推荐区域容器 */
.modern-recommendations {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 24px;
}

.modern-recommendations .panel-heading {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 20px;
    position: relative;
}

.modern-recommendations .panel-heading h4 {
    margin: 0;
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-recommendations .panel-body {
    padding: 0;
    position: relative;
}

/* PC端可滚动推荐容器 */
.recommendations-scroll-container {
    /* 设置高度限制，大约显示6个推荐项，剩余通过滚动查看 */
    max-height: 1300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px;
    background: #ffffff;
}

.recommendations-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.recommendations-scroll-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.recommendations-scroll-container::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.recommendations-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* 推荐容器 - PC端单列，移动端滑动 */
.recommendations-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 移动端滑动效果 */
@media (max-width: 991px) {
    .recommendations-container {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        /* 移除所有可能导致卡顿的属性 */
        scroll-snap-type: none;
        -webkit-scroll-snap-type: none;
        /* 额外优化滚动性能 */
        will-change: scroll-position;
        transform: translateZ(0); /* 强制GPU加速 */
        backface-visibility: hidden;
        perspective: 1000px;
    }
    
    .recommendations-container::-webkit-scrollbar {
        height: 4px;
    }
    
    .recommendations-container::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 2px;
    }
    
    .recommendations-container::-webkit-scrollbar-thumb {
        background: #cbd5e0;
        border-radius: 2px;
    }
    
    .recommendations-container::-webkit-scrollbar-thumb:hover {
        background: #a0aec0;
    }
    
    /* 确保卡片不会有任何吸附效果 */
    .recommendation-card {
        scroll-snap-align: none;
        -webkit-scroll-snap-align: none;
        /* 优化卡片渲染性能 */
        transform: translateZ(0);
        will-change: transform;
    }
}

/* 推荐卡片 */
.recommendation-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

/* PC端卡片样式 */
@media (min-width: 992px) {
    .recommendation-card {
        width: 100%;
        margin-bottom: 0;
    }
    
    .recommendation-card:hover {
        border-color: #4299e1;
        box-shadow: 0 4px 12px rgba(66, 153, 225, 0.15);
        transform: translateY(-2px);
    }
}

/* 移动端卡片样式 - 保持固定宽度以支持滑动 */
@media (max-width: 991px) {
    .recommendation-card {
        flex: 0 0 240px; /* 固定宽度，不压缩 */
        max-width: 240px;
        margin-right: 0;
    }
}

/* 图片容器 */
.recommendation-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f7fafc;
}

/* PC端图片样式 - 更大更突出（单列布局） */
@media (min-width: 992px) {
    .recommendation-image-wrapper {
        height: 175px; /* PC端增大图片高度 */
    }
}

/* 移动端图片样式 - 放大至少一倍 */
@media (max-width: 991px) {
    .recommendation-image-wrapper {
        height: 140px; /* 移动端图片高度 */
    }
}

/* 超小屏幕优化 */
@media (max-width: 576px) {
    .recommendation-card {
        flex: 0 0 230px;
        max-width: 230px;
    }
    
    .recommendation-image-wrapper {
        height: 150px;
    }
}

.recommendation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.recommendation-card:hover .recommendation-image {
    transform: scale(1.05);
}

/* 占位图样式 */
.recommendation-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    color: #a0aec0;
}

.recommendation-placeholder-image .placeholder-icon {
    font-size: 32px;
    opacity: 0.6;
}

/* 图片悬浮效果 */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recommendation-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
}

.play-icon {
    font-size: 36px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 内容区域 */
.recommendation-content {
    padding: 12px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 标题样式 */
.recommendation-title {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    height: 2.8em; /* 限制为2行 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recommendation-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
}

.recommendation-title a:hover {
    color: #4299e1;
    text-decoration: none;
}

/* 元数据样式 */
.recommendation-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #718096;
    margin-top: auto;
}

.recommendation-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.recommendation-meta .fa {
    font-size: 11px;
    opacity: 0.8;
}

.recommendation-meta .count {
    font-weight: 500;
}

/* 懒加载图片样式 */
.recommendation-image[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recommendation-image.loaded {
    opacity: 1;
}

/* 移动端专属优化 */
@media (max-width: 767px) {
    .modern-recommendations .panel-body {
        padding: 6px;
    }
    
    .recommendation-content {
        padding: 10px 14px 14px;
    }
    
    .recommendation-title {
        font-size: 13px;
    }
    
    .play-icon {
        font-size: 28px;
    }
    
    .recommendation-placeholder-image .placeholder-icon {
        font-size: 28px;
    }
}
