/* 前面原有的样式保留 */
.btns-row { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; margin: 25px 0; }
.external-btn-wrapper { margin: 0; padding-left: 15px; }
@media (max-width: 768px) { 
    .btns-row { 
        margin: 15px 0; 
        display: grid;                  
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        align-items: stretch;
        justify-items: stretch;
    }
    .external-btn-wrapper {
        grid-column: 1 / -1;
        order: 3;
        padding-left: 0;
        width: 100%;
    }
    .style-btn-fav {
        order: 1;
    }
    .style-btn-cal {
        order: 2;
        grid-column: auto;
    }
    .style-btn-fav, .style-btn-cal, .bili-pv-btn {
        height: 40px;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .btns-row.no-calendar .style-btn-fav {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 240px;
    }
}
.style-btn-blue { display: inline-flex; align-items: center; position: relative; background-color: #52cfd3; color: #ffffff !important; text-decoration: none; border-radius: 8px; padding: 8px 20px 8px 25px; font-size: 15px; font-weight: bold; letter-spacing: 1px; box-shadow: 0 4px 10px rgba(0, 161, 214, 0.3); transition: all 0.3s ease; overflow: visible; }
.style-btn-blue:hover { background-color: #52cfd3; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0, 161, 214, 0.5); }
.style-btn-cal { display: inline-flex; align-items: center; justify-content: center; background-color: rgba(255, 255, 255, 0.15); color: #fff !important; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 8px; padding: 8px 20px; font-size: 14px; font-weight: normal; transition: all 0.3s ease; height: 40px; box-sizing: border-box; cursor: pointer; }
.style-btn-cal:hover { background-color: #fff; color: #333 !important; transform: translateY(-2px); }
.btn-decor-icon { height: 40px; width: auto; position: absolute; left: -12px; bottom: 0; pointer-events: none; filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1)); }
.btn-text-content { margin-left: 5px; }
.bangumi-original-title { font-size: 14px; color: rgba(255, 255, 255, 0.8); margin-bottom: 5px; font-weight: normal; }
@media (max-width: 768px) { .bangumi-original-title { display: none; } }
@media (min-width: 992px) { .ydjianjie { display: none !important; } .detail-long-desc { display: none !important; } .section-title.intro-title { display: none !important; } }
.sc-list-container { position: relative; max-height: 210px; overflow: hidden; transition: max-height 0.3s ease; }
.sc-list-container.expanded { max-height: 2000px; }
.expand-btn { color: #52cfd3; cursor: pointer; font-size: 13px; margin-top: 8px; text-align: center; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; backdrop-filter: blur(5px); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-window { background: #fff; width: 90%; max-width: 600px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); overflow: hidden; display: flex; flex-direction: column; max-height: 80vh; animation: modalSlideIn 0.3s ease; }
@keyframes modalSlideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header { padding: 15px 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; background: #f8f9fa; }
.modal-title { font-size: 16px; font-weight: bold; color: #333; }
.modal-close { cursor: pointer; font-size: 24px; color: #999; line-height: 1; }
.modal-close:hover { color: #555; }
.modal-body { padding: 20px; overflow-y: auto; }
.cal-toolbar { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.cal-sort-toggle { display: inline-flex; gap: 4px; padding: 3px; background: #f1f2f3; border-radius: 8px; }
.cal-sort-btn { border: none; background: transparent; color: #666; padding: 6px 12px; border-radius: 6px; cursor: pointer; font-size: 13px; line-height: 1.2; transition: all 0.2s; }
.cal-sort-btn:hover { color: #52cfd3; }
.cal-sort-btn.active { background: #52cfd3; color: #fff; box-shadow: 0 2px 8px rgba(82, 207, 211, 0.25); }
.cal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
.cal-item { background: #f1f2f3; padding: 10px; border-radius: 8px; text-align: center; border: 1px solid transparent; transition: all 0.2s; }
.cal-item-ep { display: block; font-weight: bold; color: #555; font-size: 14px; margin-bottom: 4px; }
.cal-item-date { display: block; color: #888; font-size: 12px; }
.cal-item.aired { background: #e6f7ff; border-color: #91d5ff; }
.cal-item.aired .cal-item-ep { color: #0096fa; }
.cal-item.aired .cal-item-date { color: #0096fa; }
@media (max-width: 480px) { .cal-toolbar { justify-content: stretch; } .cal-sort-toggle { width: 100%; } .cal-sort-btn { flex: 1; } }
@media (prefers-color-scheme: dark) { .modal-window { background: #2a2a2a; } .modal-header { background: #333; border-bottom-color: #444; } .modal-title { color: #fff; } .cal-item { background: #383838; } .cal-item-ep { color: #ddd; } .cal-item.aired { background: #1a3a4b; border-color: #2a5a7b; } .cal-item.aired .cal-item-ep { color: #52cfd3; } .cal-item.aired .cal-item-date { color: #8adbd6; } }
@media (prefers-color-scheme: dark) { .cal-sort-toggle { background: #383838; } .cal-sort-btn { color: #ccc; } .cal-sort-btn:hover { color: #52cfd3; } .cal-sort-btn.active { color: #102023; } }
@media (prefers-color-scheme: dark) {
    .fav-section { background: #2f2f2f; border-color: #454545; }
    .fav-section-title, .fav-field label { color: #e7e7e7; }
    .fav-radio-label { background: #303030; border-color: #454545; }
    .fav-radio-label:hover { border-color: #52cfd3; }
    .fav-tip, .fav-note-count { color: #aaa; }
    .fav-input, .fav-select, .fav-note-wrap textarea { background: #2b2b2b; border-color: #4a4a4a; color: #eee; }
    .fav-mini-btn { background: #364245; color: #9fe6ea; }
    .fav-mini-btn:hover { background: #405155; }
}
.rec-section { max-width: 1200px; margin: 30px auto 40px; padding: 0 15px; box-sizing: border-box; }
.rec-header { border-left: 4px solid #52cfd3; padding-left: 12px; margin-bottom: 15px; font-size: 18px; font-weight: bold; color: #333; line-height: 1.2; }
.rec-list { display: flex; gap: 15px; }
.rec-item { display: block; text-decoration: none; position: relative; transition: transform 0.2s; }
.rec-item:hover { transform: translateY(-3px); }
.rec-img-box { width: 100%; aspect-ratio: 3 / 4; border-radius: 8px; overflow: hidden; position: relative; background: #f0f0f0; }
.rec-img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
.rec-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); color: #fff; font-size: 12px; padding: 20px 8px 6px; text-align: right; box-sizing: border-box; }
.rec-title { margin-top: 8px; font-size: 14px; color: #333; line-height: 1.4; height: 2.8em; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
@media (max-width: 768px) { .rec-list { overflow-x: auto; padding-bottom: 10px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; } .rec-list::-webkit-scrollbar { display: none; } .rec-item { flex: 0 0 130px; width: 130px; scroll-snap-align: start; } }
@media (min-width: 769px) { .rec-list { flex-wrap: wrap; } .rec-item { width: calc(16.666% - 12.5px); } }
@media (prefers-color-scheme: dark) { .rec-header { color: #eee; } .rec-title { color: #ccc; } .rec-img-box { background: #333; } }
.style-btn-fav { display: inline-flex; align-items: center; background-color: #ff85ad; color: #ffffff !important; text-decoration: none; border-radius: 8px; padding: 8px 20px; font-size: 15px; font-weight: bold; cursor: pointer; box-shadow: 0 4px 10px rgba(255, 133, 173, 0.3); transition: all 0.3s ease; border: none; }
.style-btn-fav:hover { background-color: #ff6699; transform: translateY(-3px); }
.fav-icon { width: 20px; height: 20px; margin-right: 6px; vertical-align: middle; }
.fav-form { display: flex; flex-direction: column; gap: 16px; }
.fav-section { border: 1px solid #eef1f5; border-radius: 12px; padding: 14px 16px; background: #fff; }
.fav-section-title { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 12px; }
.fav-options { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; margin: 0; }
.fav-radio-label { cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; min-height: 64px; padding: 10px 8px; border-radius: 10px; border: 1px solid #dfe6ee; background: #fff; transition: 0.2s; }
.fav-radio-label:hover { border-color: #52cfd3; }
.fav-radio-label input { display: none; }
.fav-radio-label input:checked + span { color: #52cfd3; font-weight: bold; }
.fav-radio-label input:checked ~ .radio-indicator { border-color: #52cfd3; background: #52cfd3; }
.radio-indicator { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #d9dfe7; box-sizing: border-box; }
.fav-radio-label.fav-disabled { opacity: .45; cursor: not-allowed; border-color: #ddd !important; background: #fafafa; }
.fav-radio-label.fav-disabled:hover { border-color: #ddd !important; }
.fav-radio-label.fav-disabled span { color: #999; }
.fav-tip { margin-top: 10px; color: #999; font-size: 12px; }
.fav-form-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.fav-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.fav-field-full { grid-column: 1 / -1; }
.fav-field label { font-size: 14px; color: #666; font-weight: 600; }
.fav-input, .fav-select, .fav-note-wrap textarea { width: 100%; box-sizing: border-box; border: 1px solid #dbe2eb; border-radius: 8px; background: #fff; color: #333; font-size: 14px; padding: 10px 12px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.fav-input:focus, .fav-select:focus, .fav-note-wrap textarea:focus { border-color: #52cfd3; box-shadow: 0 0 0 3px rgba(82, 207, 211, 0.12); }
.fav-category-row { display: flex; gap: 8px; align-items: stretch; }
.fav-category-row .fav-select { flex: 1; min-width: 0; }
.fav-mini-btn { border: none; background: #eef7ff; color: #1d8f96; border-radius: 8px; padding: 0 14px; font-size: 13px; cursor: pointer; white-space: nowrap; }
.fav-mini-btn:hover { background: #dff4f5; }
.fav-new-category { margin-top: 8px; }
.fav-note-wrap { position: relative; }
.fav-note-wrap textarea { min-height: 110px; resize: vertical; padding-bottom: 28px; }
.fav-note-count { position: absolute; right: 10px; bottom: 8px; color: #999; font-size: 12px; pointer-events: none; }
.fav-actions { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-top: 4px; }
.btn-remove-fav { background: transparent; border: 1px solid #ff4d4f; color: #ff4d4f; padding: 8px 15px; border-radius: 6px; cursor: pointer; font-size: 13px; min-width: 110px; }
.btn-save-fav { background: #52cfd3; color: white; border: none; padding: 10px 25px; border-radius: 6px; cursor: pointer; font-size: 14px; min-width: 120px; }
.btn-save-fav:hover { background: #42bec2; }
@media (max-width: 960px) { .fav-options { grid-template-columns: repeat(3, minmax(0, 1fr)); } .fav-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .fav-options { grid-template-columns: repeat(2, minmax(0, 1fr)); } .fav-form-grid { grid-template-columns: 1fr; } .fav-category-row { flex-direction: column; } .fav-actions { flex-direction: column-reverse; align-items: stretch; } .btn-remove-fav, .btn-save-fav { width: 100%; } }
.detail-tabs { display: flex; border-bottom: 2px solid #f1f2f3; margin-bottom: 20px; }
.detail-tab { padding: 10px 25px; font-size: 18px; color: #555; cursor: pointer; position: relative; transition: all 0.3s; }
.detail-tab.active { color: #52cfd3; font-weight: bold; }
.detail-tab.active::after { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 60%; height: 3px; background-color: #52cfd3; border-radius: 3px; }
.tab-content { display: none; animation: fadeIn 0.3s ease; }
.tab-content.active { display: block; padding: 15px; }
.tab-content.no-tabs.active { padding-top: 0; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- 短评列表样式 --- */
.review-header-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.review-header-title { font-size: 18px; font-weight: bold; }
.reviews-container{ max-width: 1200px; margin: 0 auto; padding: 20px 15px; box-sizing: border-box; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
.review-header-title span { font-size: 14px; font-weight: normal; color: #999; margin-left: 10px; cursor: pointer; }
.btn-write-review { border: 1px solid #52cfd3; color: #52cfd3; background: transparent; padding: 6px 15px; border-radius: 4px; cursor: pointer; font-size: 14px; transition: 0.2s; }
.btn-write-review:hover { background: #52cfd3; color: #fff; }

.review-list { border-top: 1px solid #eee; }
.review-pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; padding: 20px 0 6px; }
.review-pagination .page-link { display: inline-block; min-width: 34px; text-align: center; padding: 7px 12px; border: 1px solid #e5e5e5; border-radius: 18px; color: #555; font-size: 13px; text-decoration: none; transition: 0.2s; }
.review-pagination .page-link:hover { border-color: #52cfd3; color: #00838f; }
.review-pagination .page-link.active { background: #52cfd3; border-color: #52cfd3; color: #fff; }
.review-item { padding: 20px 0; border-bottom: 1px solid #eee; }
.review-user { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.review-user-info { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.review-username { font-size: 14px; color: #fb7299; font-weight: bold; }
.review-ip-province { font-size: 12px; color: #666; background: #f5f6f8; border: 1px solid #ececec; border-radius: 999px; padding: 1px 8px; }
.review-stars { color: #f5a623; font-size: 14px; }
.review-time { font-size: 12px; color: #999; }
.review-content { font-size: 14px; color: #333; line-height: 1.6; margin-bottom: 10px; word-break: break-all; }

/* 增加了点赞按钮交互 CSS */
.review-actions { display: flex; gap: 15px; color: #999; font-size: 14px; }
.action-btn { cursor: pointer; user-select: none; transition: 0.2s ease; display: inline-flex; align-items: center; gap: 4px;}
.action-btn:hover { color: #52cfd3; }
.action-btn.active { color: #52cfd3; font-weight: bold; }
.action-icon { width: 18px; height: 18px; vertical-align: middle; transition: transform 0.2s; }
.action-btn:hover .action-icon { transform: scale(1.1); }

/* 举报弹窗 */
.report-modal-body { padding: 20px; overflow-y: auto; }
.report-title-tip { margin: 0 0 16px 0; color: #333; font-size: 22px; font-weight: 700; }
.report-subtitle { margin: 0 0 14px 0; color: #333; font-size: 28px; font-weight: 700; line-height: 1.4; }
.report-reason-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin-bottom: 18px; }
.report-radio { display: inline-flex; align-items: center; gap: 8px; color: #333; font-size: 26px; cursor: pointer; }
.report-radio input { width: 20px; height: 20px; }
.report-help-text { margin: 10px 0 10px; color: #333; font-size: 22px; font-weight: 600; }
.report-text-wrap textarea { width: 100%; min-height: 180px; border: 1px solid #d5d5d5; border-radius: 6px; padding: 12px; box-sizing: border-box; resize: vertical; font-size: 24px; font-family: inherit; }
.report-text-wrap textarea:focus { border-color: #52cfd3; outline: none; }
.report-count { text-align: right; font-size: 20px; color: #999; margin-top: 6px; }
.report-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 16px; }
.btn-report-cancel { min-width: 120px; padding: 10px 18px; border: 1px solid #dcdfe6; background: #fff; color: #606266; border-radius: 4px; cursor: pointer; }
.btn-report-submit { min-width: 120px; padding: 10px 18px; border: none; background: #19a2d8; color: #fff; border-radius: 4px; cursor: pointer; }
.btn-report-submit:disabled { opacity: .75; cursor: not-allowed; }

.review-modal-top { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.review-modal-poster { width: 70px; height: auto; border-radius: 4px; }
.review-modal-info h3 { margin: 0 0 10px 0; font-size: 18px; color: #333; }
.review-modal-info p { margin: 0 0 5px 0; font-size: 14px; color: #666; }
.star-selector { font-size: 24px; color: #e5e9ef; cursor: pointer; display: inline-block; }
.star-selector span { transition: color 0.2s; padding-right: 5px; }
.star-selector span.active, .star-selector span.hover { color: #f5a623; }

.review-textarea-box { position: relative; margin-bottom: 20px; }
.review-textarea-box textarea { width: 100%; height: 120px; border: 1px solid #e5e9ef; border-radius: 4px; padding: 10px; resize: none; box-sizing: border-box; font-size: 14px; font-family: inherit; }
.review-textarea-box textarea:focus { border-color: #52cfd3; outline: none; }
.word-count { position: absolute; bottom: 10px; right: 10px; color: #999; font-size: 12px; }
.btn-submit-review { background: #52cfd3; color: #fff; border: none; width: 100px; padding: 10px 0; border-radius: 4px; cursor: pointer; font-size: 14px; display: block; margin: 0 auto; }
.btn-submit-review:hover { background: #3eb5b9; }
/* 侧边栏平台列表专用样式 */
.detail-side .side-card {
    margin-bottom: 20px; /* 卡片之间的间距 */
}

.platform-item {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.2s;
}
.platform-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-color: #dee2e6;
}
.side-platform-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-platform-item {
    display: flex;
    align-items: center;
    padding: 2px 0;
}

.side-platform-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    margin-right: 12px;
}

.side-platform-name {
    font-size: 14px;
    color: #333;
    flex: 1;
}

.side-platform-status {
    font-size: 12px;
    color: #999;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
}

@media (prefers-color-scheme: dark) {
    .side-platform-name { color: #eee; }
    .side-platform-status { background: #3d3d3d; color: #888; }
}
.custom-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10001; display: flex; align-items: center; justify-content: center; }
.custom-modal-overlay { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.modal-content { position: relative; background: #fff; width: 85%; max-width: 350px; padding: 25px; border-radius: 16px; text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.bili-link-list { display: flex; flex-direction: column; gap: 10px; max-height: 300px; overflow-y: auto; margin-bottom: 20px; }
.bili-item-btn { background: #f6f6f6; border: 1px solid #eee; padding: 12px; border-radius: 8px; color: #333; text-decoration: none; font-weight: 500; transition: all 0.2s; }
.bili-item-btn:hover { background: #fb7299; color: #fff; border-color: #fb7299; }
.btn-close-modal { width: 100%; padding: 10px; border: none; background: #eee; border-radius: 8px; color: #666; cursor: pointer; }
.modal-content h3{color: #000;}

/*B站PV样式*/
.bili-pv-btn { 
    display: inline-flex; 
    align-items: center; 
    background: #00aeec; 
    color: #ffffff !important; 
    padding: 0 18px 0 0; 
    border-radius: 12px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    text-decoration: none;
    height: 40px; 
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 161, 214, 0.2);
}
.bili-pv-btn:hover { 
    background: #0091c4; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(0, 161, 214, 0.4); 
}
.bili-pv-icon { height: 100%; width: auto; object-fit: contain; }
.bili-pv-text { font-size: 18px; font-weight: bold; margin-left: 5px; letter-spacing: 1px; }
/*B站PV样式*/

/* 头图查看器（增强版） */
.header-content .bangumi-poster { cursor: zoom-in; }
.poster-viewer {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(2px);
    padding: 16px;
    box-sizing: border-box;
}
.poster-viewer.active { display: flex; }
.poster-viewer-stage {
    width: min(980px, 96vw);
    height: min(78vh, 880px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}
.poster-viewer img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.12s ease;
    cursor: pointer;
}
.poster-viewer-toolbar {
    width: min(980px, 96vw);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    border-radius: 10px;
    padding: 8px;
}
.pv-btn {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    min-width: 42px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
}
.pv-btn:hover { background: rgba(255, 255, 255, 0.24); }
.pv-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    pointer-events: none;
}
.pv-download { font-weight: 600; }
@media (max-width: 768px) {
    .poster-viewer-toolbar {
        width: 100%;
        gap: 6px;
        padding: 6px;
        overflow-x: auto;
        justify-content: center;
    }
    .pv-btn { min-width: 38px; width: 38px; height: 38px; font-size: 13px; }
    .pv-icon { width: 18px; height: 18px; }
    .poster-viewer-stage { width: 100%; height: 74vh; }
}
