


:root {
    
    --theme-primary: #e67e22;
    --theme-secondary: #d35400;
    --theme-accent: #44bffa;
    
    
    --text-main: #333333;
    --text-sub: #666666;
    --text-light: #999999;
    
    
    --bg-body: #f5f5f5;
    --bg-card: #ffffff;
    --bg-header: #ffffff;
    
    
    --spacing-unit: 8px;
    --border-radius: 6px;
    --box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}


.itopbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.ilogo a img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.ilogo a:hover img {
    transform: scale(1.05);
}

.sitenav a {
    position: relative;
    font-weight: 500;
}

.sitenav a::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--theme-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.sitenav a.cur::after,
.sitenav a:hover::after {
    width: 80%;
}


.v-pic {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-pic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.v-pic:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.v-pic:hover::before {
    opacity: 1;
}

.v-playBtn {
    z-index: 2;
    backdrop-filter: blur(4px);
}


.tv-hd h2 {
    position: relative;
    padding-left: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.tv-hd h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 2px;
}

.tv-hd .imore a {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tv-hd .imore a:hover {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    border-color: transparent;
}


.v-rank li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    transition: background 0.2s ease;
}

.v-rank li:hover {
    background: rgba(255, 180, 0, 0.05);
    padding-left: 8px;
}

.v-rank li .i-rank_num {
    font-style: normal;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}


.detail_top {
    background: linear-gradient(135deg, #1a1c2c 0%, #4a192c 100%);
    position: relative;
    overflow: hidden;
}

.detail_top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,180,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

@media (min-width: 769px) {
    .poster_placeholder {
        width: 240px !important;
        height: 320px !important;
        float: left !important;
    }
    
    .poster_placeholder .v-pic {
        height: 320px !important;
        overflow: hidden;
    }
    
    .poster_placeholder .v-pic img {
        object-fit: cover;
        height: 100% !important;
    }
}

.poster_placeholder .v-pic {
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

.txt_intro_con .tit h1 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.play_source_tab a {
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
}

.play_source_tab a.cur {
    background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.25));
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}


.play_num_list a {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.play_num_list a:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.play_num_list a.cur {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 180, 0, 0.4);
}


.search-list .item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.search-list .item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.search-list .item .item_txt .intro_con .tit .s_tit strong {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.v_yellow_btn,
.btn.primary,
.ibtn {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border: none;
    box-shadow: 0 4px 12px rgba(255, 180, 0, 0.3);
    transition: all 0.3s ease;
}

.v_yellow_btn:hover,
.btn.primary:hover,
.ibtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 180, 0, 0.5);
    opacity: 1;
}


.v-page a {
    border-radius: 4px;
    transition: all 0.3s ease;
}

.v-page a.cur,
.v-page a.cur:hover {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    box-shadow: 0 2px 8px rgba(255, 180, 0, 0.4);
}


.qa-comment-wrap {
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    border: 1px solid #eaeaea;
}

.qa-item {
    transition: all 0.3s ease;
}

.qa-item:hover {
    background: rgba(255, 180, 0, 0.03);
}

.qa-icon {
    background: linear-gradient(135deg, #40CC92, #2fb67e);
    font-weight: 600;
}


@media (max-width: 768px) {
    .itopbar {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .tv-list li {
        padding: 0 0 10px 10px;
        width: 33.33%;
    }

    .v-pic:hover {
        transform: none;
    }

    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}


@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        height: auto;
        min-height: 100%;
    }

    .icon {
        overflow: visible;
        min-height: 100%;
    }

    .detail_top_con,
    .idetail .col-l,
    .idetail .col-r,
    .tv-bd,
    .qa-comment-wrap {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .site-nav-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .nav-inner-wrapper {
        margin: 0;
        padding: 0;
    }

    .site-nav-container .main-navigation {
        margin: 0;
        padding: 10px 0;
    }

    .site-nav-container .search-box {
        margin: 0;
        padding: 0;
    }

    .site-nav-container .search-trigger,
    .site-nav-container .search-close {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        direction: ltr !important;
    }

    .site-nav-container .search-box .search-submit-btn {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        direction: ltr !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: row !important;
    }

    .site-nav-container .search-box .search-submit-btn i {
        display: inline-block !important;
        margin-right: 4px !important;
        vertical-align: middle !important;
    }

    .detail_top_con {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .txt_intro_con {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }

    .txt_list {
        width: 100%;
        max-width: 100%;
    }

    .txt_list li {
        width: 100%;
        max-width: 100%;
        padding: 5px 0;
        word-wrap: break-word;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    .txt_list li em {
        display: inline-block;
        min-width: 50px;
        flex-shrink: 0;
    }

    .play_source {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .play_source_tab {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }

    .play_source_tab a {
        flex-shrink: 0;
    }

    .v_con_box {
        width: 100%;
        max-width: 100%;
    }

    .play_num_list {
        width: 100%;
        max-width: 100%;
        overflow: hidden !important;
    }
    
    .play_num_list li {
        width: auto !important;
        display: inline-block !important;
        float: none !important;
        margin: 2px !important;
        vertical-align: top !important;
    }
    
    .play_num_list li a {
        width: calc(33.33% - 5px) !important;
        display: inline-block !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        line-height: 1.5 !important;
        padding: 8px 6px !important;
        text-align: center !important;
        vertical-align: middle !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        direction: ltr !important;
        unicode-bidi: normal !important;
    }

    .v_path {
        width: 100%;
        max-width: 100%;
        padding: 8px 5px;
        font-size: 12px;
        word-wrap: break-word;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    .idetail {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .idetail .col-l,
    .idetail .col-r {
        width: 100%;
        max-width: 100%;
        padding: 0;
        overflow: visible;
    }

    .icon {
        overflow: visible;
    }

    .detail_top {
        overflow: visible;
    }

    .tv-list {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        margin-left: 0;
    }

    .tv-list li {
        width: 33.33%;
        max-width: 33.33%;
        padding: 5px;
        box-sizing: border-box;
    }

    .video-card-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .v-rank li {
        width: 100%;
        max-width: 100%;
        padding: 8px 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .qa-comment-wrap {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .question,
    .answer {
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    .search-box {
        width: 100%;
        max-width: 100%;
    }

    .search-box .ipt {
        width: calc(100% - 70px);
        max-width: 100%;
        display: inline-block;
    }

    .site-nav-container .search-trigger,
    .site-nav-container .search-close {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        direction: ltr !important;
    }

    .main-navigation {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
    }

    .main-navigation a {
        display: inline-block;
        flex-shrink: 0;
    }

    .tv-hd h2 {
        font-size: 16px;
    }

    .video-title-text {
        font-size: 13px;
    }

    .video-title-text a {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .interactive-rating-panel {
        width: 100%;
        max-width: 100%;
    }
}


@media (max-width: 480px) {
    .tv-list li {
        width: 33.33%;
        max-width: 33.33%;
        padding: 3px;
    }

    .tv-list {
        margin-left: 0;
    }

    .txt_list li {
        font-size: 13px;
        line-height: 1.6;
    }

    .site-nav-container .search-box .ipt {
        width: calc(100% - 60px);
        font-size: 13px;
        height: 38px;
        line-height: 38px;
    }

    .site-nav-container .search-box .search-submit-btn {
        padding: 8px 12px;
        font-size: 13px;
        height: 38px;
        line-height: 16px;
    }

    
    .txt_list li em {
        font-size: 12px;
    }
    
    .play_source_tab a {
        font-size: 13px;
        padding: 8px 10px;
    }
    
    .tv-hd h2 {
        font-size: 14px;
    }
    
    .video-title-text {
        font-size: 12px;
    }
}


@media (max-width: 768px) {
    img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }
    
    .v-pic img,
    .poster-image,
    .lazy-load-image {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--theme-secondary);
}


::selection {
    background: var(--theme-primary);
    color: #fff;
}

::-moz-selection {
    background: var(--theme-primary);
    color: #fff;
}


@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.thumb[lazyload] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}


.v-tips {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    border-radius: 0 0 4px 4px;
    font-weight: 500;
}


.em-score {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}


.ifoot {
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    color: #95a5a6;
    padding: 40px 0;
}

.ifoot .bnav a {
    color: #ecf0f1;
    transition: all 0.3s ease;
}

.ifoot .bnav a:hover {
    color: var(--theme-primary);
    letter-spacing: 0.5px;
}


.highlight-effect {
    animation: highlight 2s ease-in-out;
}

@keyframes highlight {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}


@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }
}


@media (max-width: 768px) {
    * {
        max-width: 100%;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .wrap {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    a, button, input, select, textarea {
        max-width: 100%;
    }
}


@media (max-width: 768px) {
    .detail_top {
        padding: 15px 0;
    }
    
    .detail_top_con {
        width: 100%;
        max-width: 100%;
    }
    
    .poster-section {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .poster-section .v-pic {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .poster-section img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .poster-actions {
        text-align: center;
        padding: 10px 0;
    }
    
    .poster-actions a {
        display: inline-block;
        margin: 0 5px;
    }
    
    .txt_intro_con {
        width: 100%;
        max-width: 100%;
        padding: 15px 10px;
    }
    
    .txt_intro_con .tit h1 {
        font-size: 18px;
        line-height: 1.4;
        word-wrap: break-word;
        word-break: break-all;
    }
    
    .txt_list {
        width: 100%;
        max-width: 100%;
    }
    
    .txt_list li {
        font-size: 13px;
        line-height: 1.8;
        padding: 8px 0;
        word-wrap: break-word;
        word-break: break-all;
        overflow-wrap: break-word;
    }
    
    .txt_list li em {
        font-size: 12px;
        min-width: 45px;
        display: inline-block;
        flex-shrink: 0;
    }
}


@media (max-width: 768px) {
    .play_source {
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
    }
    
    .play_source_tab {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 5px;
    }
    
    .play_source_tab::-webkit-scrollbar {
        display: none;
    }
    
    .play_source_tab a {
        flex-shrink: 0;
        padding: 8px 12px;
        font-size: 13px;
        margin-right: 5px;
    }
    
    .play_source_tab a:last-child {
        margin-right: 0;
    }
    
    .v_con_box {
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }
    
    .play_num_list {
        width: 100%;
        max-width: 100%;
        overflow: hidden !important;
        padding: 10px 0 !important;
    }
    
    .play_num_list li {
        width: auto !important;
        display: inline-block !important;
        float: none !important;
        margin: 2px !important;
        vertical-align: top !important;
    }
    
    .play_num_list li a {
        width: calc(33.33% - 5px) !important;
        padding: 6px 8px !important;
        font-size: 12px !important;
        display: inline-block !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        line-height: 1.4 !important;
        min-height: 32px !important;
        max-height: none !important;
        text-align: center !important;
        vertical-align: middle !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        direction: ltr !important;
        unicode-bidi: normal !important;
    }
}


@media (max-width: 768px) {
    .search-list {
        width: 100%;
        max-width: 100%;
    }
    
    .search-list .item {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .search-list .item .item_pic {
        width: 100%;
        max-width: 100%;
    }
    
    .search-list .item .item_pic img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .search-list .item .item_txt {
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }
    
    .search-list .item .item_txt .intro_con .tit {
        font-size: 16px;
        line-height: 1.4;
        word-wrap: break-word;
        word-break: break-all;
    }
}


@media (max-width: 768px) {
    .type-list {
        width: 100%;
        max-width: 100%;
    }
    
    .type-list li {
        width: 50%;
        max-width: 50%;
        padding: 8px 5px;
        box-sizing: border-box;
    }
    
    .type-list li .v-pic {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .type-list li .v-pic img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .type-list li .v-txt {
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}


@media (max-width: 375px) {
    .site-nav-container .search-box .ipt {
        width: calc(100% - 55px);
        font-size: 12px;
        height: 36px;
        line-height: 36px;
        padding: 0 10px;
    }

    .site-nav-container .search-box .search-submit-btn {
        padding: 6px 10px;
        font-size: 12px;
        height: 36px;
        line-height: 16px;
    }

    .site-nav-container .search-trigger,
    .site-nav-container .search-close {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        direction: ltr !important;
        gap: 2px !important;
    }
}
        max-width: 100%;
    }
    
    .type-list li .v-txt .v-tit {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}




@media (max-width: 768px) {
    .v-rank {
        width: 100%;
        max-width: 100%;
    }
    
    .v-rank li {
        width: 100%;
        max-width: 100%;
        padding: 10px 5px;
        font-size: 13px;
        line-height: 1.6;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .v-rank li .i-rank_num {
        font-size: 14px;
    }
    
    .v-rank li .v-tit {
        font-size: 12px;
        max-width: calc(100% - 40px);
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
