
:root {
    --primary-color: #C41E3A;
    --primary-dark: #A01830;
    --text-primary: #222;
    --text-secondary: #666;
    --bg-light: #f5f5f5;
    --border-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'Microsoft YaHei',"微软雅黑",Arial, Helvetica, sans-serif,"宋体";
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #fff;
}

.ytxw {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2px;
}

.yt_banner1,.yt_banner2 {
    display: none;
}


.yt_ad1 {
    display: none;
}



.yt_ad2 {
    display: none;
}


.yt_nav {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.yt_nav .ytxw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.logo {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: none;
}

.lxwm {
    display: none;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}


.yt_nav .ytxw {
    position: relative;
}

.nav-list {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--primary-color);
    z-index: 99;
    padding: 15px 12px 10px;
    list-style: none;
    margin: 0;
}

.nav-list.active {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-list > li {
    flex: 0 0 auto;
}

.nav-list > li:has(.lxwm) {
    flex: 0 0 100%;
}

.nav-list > li > a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 16px;
    transition: background 0.3s;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    white-space: nowrap;
}

.nav-list > li > a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.nav-list > li > a.active {
    background: rgba(255, 255, 255, 0.3);
    color: #ffd700;
    font-weight: 600;
}


.nav-list > li > .lxwm {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 12px 0 0;
    margin: 0;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.nav-list.active > li > .lxwm {
    display: flex;
    width: 100%;
}

.lxwm div {
    white-space: nowrap;
}


.yt_tt {
    background: #fff;
    padding: 15px 0;
    border-bottom: 2px solid var(--primary-color);
}

.yt_tt .ytxw {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.yt_tt a {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1.5;
    text-align: center;
}


.yt_screen1 {
    background: #fff;
    padding: 15px 0;
}

.yt_screen1 .ytxw {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.yt_tj {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.yt_tj .yt_news ul {
    list-style: none;
}

.yt_tj .yt_news li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.yt_tj .yt_news li:last-child {
    border-bottom: none;
}

.yt_tj .yt_news li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 8px;
}

.yt_tj .yt_news li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.5;
    flex: 1;
    word-break: break-all;
}

.yt_tj .yt_news li a:hover {
    color: var(--primary-color);
}

.yt_scroll {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 100px 12px 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffd700;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.indicators {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}


.yt_screen2 {
    padding: 15px 0;
}

.yt_screen2 .ytxw {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.yt_news h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-left: 0;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    width: 100%;
}

.yt_news h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    width: 110px;
}

.yt_news h3 span {
    color: var(--primary-color);
    font-size: 17px;
    margin-left: 8px;
}

.yt_news h3 span a {
    color: var(--primary-color);
    text-decoration: none;
}

.yt_news h3 i.iconfont {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: normal;
}

.yt_news h3 a.more {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: normal;
    margin-left: auto !important;
    flex-shrink: 0;
    position: absolute;
    right: 0;
}

.yt_news h3 a.more:hover {
    color: var(--primary-color);
}


.yt_news ul {
    list-style: none;
}

.yt_news li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 5px;
}

.yt_news li:nth-child(n+6) {
    display: none;
}

.yt_news li:last-child {
    border-bottom: none;
}

.yt_news li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 8px;
}

.yt_news li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.5;
    flex: 1;
    word-break: break-all;
}

.yt_news li a:hover {
    color: var(--primary-color);
}


.yt_news {
    background: #fff;
    border-radius: 8px;
    padding: 12px 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}


.yt_twys {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.yt_twys .yt_tuwen {
    margin-bottom: 0;
}

.yt_twys .yt_tuwen:nth-child(n+6) {
    display: none;
}

.yt_tuwen {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
}

.yt_tuwen .img-box {
    flex-shrink: 0;
    width: 160px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
}

.yt_tuwen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.yt_tuwen .news-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.yt_tuwen h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}

.yt_tuwen h5 a {
    color: var(--text-primary);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt_tuwen .news-time {
    font-size: 13px;
    color: var(--text-secondary);
}

.yt_tuwen a {
    color: var(--text-primary);
    text-decoration: none;
}


.yt_txt {
    display: block;
    overflow: hidden;
    box-sizing: border-box;
}

.yt_txt li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.yt_txt li:last-child {
    border-bottom: none;
}


.yt_xwzb {
    grid-template-columns: 1fr;
}

.yt_screen3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}


.yt_screen5 .yt_news {
    padding: 12px 2px !important;
}

.yt_screen5 .yt_news ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.yt_screen5 .yt_news li {
    display: flex;
    gap: 12px;
    padding: 10px 2px;
    border-bottom: none;
    background: #fff;
    border-radius: 8px;
}

.yt_screen5 .yt_news li:nth-child(n+6) {
    display: none;
}

.yt_screen5 .news-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.yt_screen5 h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.yt_screen5 a {
    color: var(--text-primary);
    text-decoration: none;
}


.special-img {
    width: 100%;
    margin-top: 15px;
}

.special-img img {
    max-width: 100%;
    height: auto;
    display: block;
}


.yt_banner2 {
    margin: 15px 0;
}

.yt_banner2 img {
    width: 100%;
    height: auto;
}


footer {
    background: #333;
    padding: 25px 0;
    margin-top: 15px;
}

.yt_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.yt_links a:nth-child(3) {
    display: none;
}

.yt_links a {
    color: #999;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.yt_links a:hover {
    color: #fff;
}

.yt_bq {
    color: #666;
    font-size: 16px;
    line-height: 2;
    text-align: center;
}
.yt_bq a{
    color: #666;
    font-size: 16px;
	text-decoration: none;
}
.yt_bq p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.yt_bq p:last-child {
    margin-bottom: 0;
}

.yt_bq span {
    display: inline-block;
    margin-bottom: 5px;
    white-space: nowrap;
}

.yt_bq p span.license-info,
.yt_bq .license-info {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.yt_bq p:nth-child(3) span:not(:first-child) {
    display: none !important;
}

.yt_bq span:last-child {
    margin-bottom: 0;
}


.breadcrumb {
    background: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb .ytxw {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-primary);
}


.yt_lie {
    padding: 20px 0;
    background: #fff;
}

.yt_lie .ytxw {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.yt_lie .yt_lmxx {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.yt_lie .yt_bian {
    display: none;
}


.yt_wz1 {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 10px 0;
    margin-bottom: 10px;
}

.yt_wz1 a {
    color: var(--text-secondary);
    text-decoration: none;
}

.yt_wz1 a:hover {
    color: var(--primary-color);
}

.yt_wz1 span {
    color: var(--text-secondary);
    margin: 0 5px;
}


.list_wz {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 15px;
}

.list_wz .yt_lmmc {
    font-size: 20px;
    margin: 0;
    padding-bottom: 0;
    border-bottom: none;
    white-space: nowrap;
}

.list_wz .yt_wz {
    display: none;
}

.list_wz .yt_wz1 {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.list_wz .yt_wz1 a {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--primary-color);
}

.list_wz .yt_wz1 i {
    font-size: 18px;
    margin-right: 4px;
}

.yt_lmmc {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.yt_lmmc a {
    color: #333;
    text-decoration: none;
}

.news-list {
    padding: 0;
}

.news-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    padding: 10px 0;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.news-list li:not(:last-child) {
    border-bottom: 1px dashed #eee;
}

.news-list .cut-off {
    height: 1px;
    background: #ddd;
    margin: 15px 0;
    border-bottom: 1px dashed #ddd;
}

.news-list li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.6;
    transition: color 0.3s;
    flex: 1;
    word-break: break-all;
    position: relative;
    padding-left: 12px;
}

.news-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.news-list li a:hover {
    color: var(--primary-color);
}

.news-list li span {
    display: none;
    margin-left: 10px;
}


.yt_page {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 10px 0;
}

.yt_page a,
.yt_page span {
    display: none;
}

.yt_page a.a1 {
    display: inline-block;
    padding: 8px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
}

.yt_page a.a1:hover {
    background: var(--primary-dark);
}


.yt_bian {
    order: -1;
}

.yt_bian-block {
    padding: 0;
    margin-bottom: 20px;
}

.yt_bian-title,
.yt_bian-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.yt_bian-title::before,
.yt_bian-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.yt_bian-block h3 .more {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: normal;
    padding: 3px 8px;
    border-radius: 3px;
}

.yt_bian-block h3 .more:hover {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.08);
}


.article {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    box-sizing: border-box;
}

.yt_title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 15px;
}

.yt_meta {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    row-gap: 1px !important;
    column-gap: 5px !important;
    font-size: 16px;
    color: var(--text-secondary);
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.yt_meta span {
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
}

.yt_meta i.iconfont {
    font-size: 20px;
    margin-right: 1px;
}

.yt_meta #fontSizeControl,
.yt_meta .copyright-link {
    display: none;
}

.yt_nr {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-primary);
    box-sizing: border-box;
    width: 100%;
}

.yt_nr p {
    margin-bottom: 15px;
    text-indent: 2em;
}


.yt_nr p:has(> img) {
    text-indent: 0 !important;
}

.yt_nr img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.yt_nr h2,
.yt_nr h3,
.yt_nr h4 {
    margin: 20px 0 10px;
    font-weight: 600;
}

.yt_nr h2 {
    font-size: 20px;
}

.yt_nr h3 {
    font-size: 18px;
}

.yt_nr h4 {
    font-size: 16px;
}

.yt_nr ul,
.yt_nr ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.yt_nr li {
    margin-bottom: 5px;
}


.prev-next {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #eee;
}


.yt_screen4 {
    padding: 15px 0;
    margin-bottom: 15px;
}

.yt_screen4 h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-left: 0;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    width: 100%;
}

.yt_screen4 h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 110px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.yt_screen4 h3 span {
    color: var(--primary-color);
    font-size: 17px;
    margin-left: 8px;
}

.yt_screen4 h3 span a {
    color: var(--primary-color);
    text-decoration: none;
}

.yt_screen4 h3 i.iconfont {
    font-size: 24px;
    color: var(--primary-color);
}

.yt_screen4 .more {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: auto;
}

.yt_yidong {
    overflow: hidden;
    position: static;
}

.scroll-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    animation: none !important;
}

.photo-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #fff;
    padding: 10px 2px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.photo-item:nth-child(n+6) {
    display: none;
}

.photo-item img {
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.photo-item p {
    margin: 0;
    text-align: left;
    flex: 1;
}

.photo-item p a {
    font-size: 18px;
    color: var(--text-primary);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.yt_wz {display: none;}


.yt_share {
    display: none !important;
}


.yt_stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    margin-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.yt_stats span {
    font-size: 14px;
    color: #999;
    display: flex !important;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.yt_stats span span {
    display: inline-block !important;
    color: inherit !important;
    font-size: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}


#readTime, #wordCount {
    display: inline !important;
    color: inherit !important;
    font-size: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.yt_stats i.iconfont {
    font-size: 18px;
    color: #ccc;
    margin-right: 2px;
    vertical-align: middle;
    line-height: 1;
}


.yt_stats .copyright-link {
    display: none !important;
}


.yt_stats .night-mode-btn {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-size: 14px;
}

.yt_stats .night-mode-btn span {
    display: inline !important;
    color: inherit;
    font-size: inherit;
    margin-left: 4px;
}

.yt_stats .night-mode-btn i {
    font-size: 18px;
}

.yt_stats .night-mode-btn:hover {
    color: var(--primary-color);
}


.yt_actions {
    display: none !important;
}


.yt_sx {
    display: none !important;
}

.yt_prev, .yt_next {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.yt_prev:last-child, .yt_next:last-child {
    margin-bottom: 0;
}

.yt_prev span, .yt_next span {
    color: var(--text-secondary);
    font-size: 14px;
    flex-shrink: 0;
}

.yt_prev span i, .yt_next span i {
    font-size: 20px;
    margin-right: 2px;
    color: var(--primary-color);
}

.yt_prev a, .yt_next a {
    color: var(--text-primary) !important;
    text-decoration: none !important;
    font-size: 16px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
    min-width: 0 !important;
    display: inline-block !important;
    transition: color 0.3s;
}

.yt_prev a:hover, .yt_next a:hover {
    color: var(--primary-color);
}


body.night-mode {
    background: #1a1a2e;
    color: #e0e0e0;
}

body.night-mode .yt_lmxx,
body.night-mode .yt_nr,
body.night-mode .yt_sx,
body.night-mode .yt_news {
    background: #16213e;
}

body.night-mode .yt_tt,
body.night-mode .yt_screen1,
body.night-mode .yt_screen2,
body.night-mode .yt_lie {
    background: #16213e;
}

body.night-mode .yt_title {
    color: #fff;
}

body.night-mode .yt_meta span,
body.night-mode .yt_meta a {
    color: #aaa;
}

body.night-mode .yt_stats span {
    color: #aaa;
}

body.night-mode .yt_nr p {
    color: #d0d0d0;
}

body.night-mode .yt_nr h2,
body.night-mode .yt_nr h3 {
    color: #fff;
}

body.night-mode .yt_sx a {
    color: #ccc;
}

body.night-mode .yt_news h3 {
    color: #fff;
    border-bottom-color: #333;
}

body.night-mode .yt_news h3::after {
    background: #fff;
}

body.night-mode .yt_news h3 span {
    color: #fff;
}

body.night-mode .yt_news h3 span a {
    color: #fff;
}

body.night-mode .yt_news h3 i.iconfont {
    color: #fff;
}

body.night-mode .yt_news .more {
    color: #aaa;
}

body.night-mode .yt_txt a {
    color: #ccc;
}


body.night-mode .yt_screen4 {
    background: #16213e;
}

body.night-mode .yt_screen4 h3 {
    color: #fff;
    border-bottom-color: #333;
}

body.night-mode .yt_screen4 h3::after {
    background: #fff;
}

body.night-mode .yt_screen4 h3 span,
body.night-mode .yt_screen4 h3 span a {
    color: #fff;
}

body.night-mode .yt_screen4 h3 i.iconfont {
    color: #fff;
}

body.night-mode .yt_screen4 .more {
    color: #aaa;
}


body.night-mode .list-yt_news {
    background: #16213e;
}

body.night-mode .list-yt_news h3 {
    color: #fff;
    border-bottom-color: #333;
}

body.night-mode .list-yt_news h3::after {
    background: #fff;
}

body.night-mode .list-yt_news h3 span,
body.night-mode .list-yt_news h3 span a {
    color: #fff;
}

body.night-mode .list-yt_news h3 i.iconfont {
    color: #fff;
}

body.night-mode .list-yt_news .more {
    color: #aaa;
}

body.night-mode .list-yt_news li {
    border-bottom-color: #333;
}

body.night-mode .list-yt_news li a {
    color: #ccc;
}


body.night-mode .list_wz {
    border-bottom-color: #333;
}

body.night-mode .list_wz .yt_lmmc {
    color: #fff;
}

body.night-mode .list_wz .yt_lmmc a {
    color: #fff;
}

body.night-mode .yt_wz1 {
    color: #aaa;
}

body.night-mode .yt_wz1 a {
    color: #aaa;
}


body.night-mode .yt_ad1,
body.night-mode .yt_ad2 {
    background: #16213e;
}

body.night-mode .yt_top {
    background: #4a5568;
}

body.night-mode .night-mode-btn {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
}


.yt_top {
    position: fixed;
    right: 15px;
    bottom: 60px;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.yt_top.show {
    opacity: 1;
    visibility: visible;
}

.yt_top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
}

.yt_top i {
    font-size: 29px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.ytwap {
    display: none;
}


#yt_cont video {
    width: auto;
    max-width: 98%;
    height: auto;
    max-height: 350px;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.webstv {
    outline: none;
    object-fit: fill;
    display: block;
    clear: both;
    padding:0 0 20px 0;
}
