* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b6b;
    --primary-dark: #e55656;
    --bg: #1a1a1a;
    --bg-light: #242424;
    --bg-card: #2a2a2a;
    --text: #e0e0e0;
    --text-light: #b0b0b0;
    --border: #333;
    --hover: #3a3a3a;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.v01576-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

    .v01576-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    gap: 16px;
    min-width: 0;
    box-sizing: border-box;
}
.v01576-logo,
.v01576-main-nav,
.v01576-header-right {
    min-width: 0;
}

@media (max-width: 767px) {
    .v01576-header {
        position: relative;
        box-shadow: 0 0.5333vw 0 0 var(--shadow);
    }
    
    .v01576-header-container {
        padding: 2.6667vw 4vw;
        min-height: 13.3333vw;
        flex-wrap: wrap;
        gap: 2.6667vw;
    }
    
    .v01576-logo {
        min-width: 100px;
        max-width: 150px;
        overflow: hidden;        white-space: nowrap;        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    
    .v01576-logo a {
        display: flex;
        align-items: center;
        min-width: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .v01576-logo-text {
        display: block;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 4.8vw;
        font-weight: 600;
        color: var(--text);
        text-decoration: none;
        width: 100%;
    }
    
    .v01576-nav-more {
        flex: 0 0 auto;
    }
    
    .v01576-main-nav {
        order: 3;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 1.3333vw;
        margin-top: 2.6667vw;
    }
    
    .v01576-nav-primary {
        display: flex;
        flex-wrap: wrap;
        gap: 1.3333vw;
        width: 100%;
    }
    
    .v01576-nav-item {
        padding: 1.8667vw 3.2vw;
        font-size: 3.4667vw;
        color: var(--text);
        text-decoration: none;
        border-radius: 1.0667vw;
        transition: all 0.3s;
        white-space: nowrap;
    }
    
    .v01576-nav-item:hover,
    .v01576-nav-item.active {
        background: var(--primary);
        color: #fff;
    }
    
    .v01576-nav-more {
        position: relative;
        z-index: 101;
    }
    
    .v01576-nav-more-btn {
        position: relative;
        z-index: 2;
        padding: 1.8667vw 3.2vw;
        font-size: 3.4667vw;
        background: transparent;
        border: 0.2667vw solid var(--border);
        pointer-events: auto;
        cursor: pointer;
        color: var(--text);
        border-radius: 1.0667vw;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 1.3333vw;
    }
    
    .v01576-nav-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 1.3333vw;
        background: var(--bg-card);
        border: 0.2667vw solid var(--border);
        border-radius: 2.1333vw;
        min-width: 26.6667vw;
        max-height: 60vh;
        overflow-y: auto;
        overflow-x: hidden;
        display: none;
        z-index: 1001;
        box-shadow: 0 2.6667vw 5.3333vw var(--shadow);
    }
    
    .v01576-nav-more.active .v01576-nav-dropdown {
        display: block;
    }
    
    .v01576-nav-dropdown-item {
        display: block;
        padding: 2.6667vw 4vw;
        font-size: 3.4667vw;
        color: var(--text);
        text-decoration: none;
        border-bottom: 0.1333vw solid var(--border);
    }
    
    .v01576-nav-dropdown-item:last-child {
        border-bottom: none;
    }
    
    .v01576-nav-dropdown-item:hover,
    .v01576-nav-dropdown-item.active {
        background: var(--hover);
        color: var(--primary);
    }
    
    .v01576-header-right {
        display: flex;
        align-items: center;
        gap: 2.6667vw;
        flex: 0 0 auto;
    }
    
    .v01576-search-box {
        display: flex;
        align-items: center;
        gap: 1.3333vw;
    }
    
    .v01576-search-input {
        width: 32vw;
        padding: 2.1333vw 3.2vw;
        font-size: 3.2vw;
        background: var(--bg-card);
        border: 0.2667vw solid var(--border);
        border-radius: 1.0667vw;
        color: var(--text);
        outline: none;
    }
    
    .v01576-search-btn {
        padding: 2.1333vw 4vw;
        font-size: 3.2vw;
        background: var(--primary);
        border: none;
        border-radius: 1.0667vw;
        color: #fff;
        cursor: pointer;
    }
    
    .v01576-lang-switcher {
        position: relative;
    }
    
    .v01576-lang-btn {
        padding: 2.1333vw 3.2vw;
        font-size: 3.2vw;
        background: var(--bg-card);
        border: 0.2667vw solid var(--border);
        border-radius: 1.0667vw;
        color: var(--text);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 1.3333vw;
    }
    
    .v01576-lang-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 1.3333vw;
        background: var(--bg-card);
        border: 0.2667vw solid var(--border);
        border-radius: 2.1333vw;
        min-width: 32vw;
        display: none;
        z-index: 1001;
        box-shadow: 0 2.6667vw 5.3333vw var(--shadow);
    }
    
    .v01576-lang-switcher.active .v01576-lang-dropdown {
        display: block;
    }
    
    .v01576-lang-option {
    display: flex;
    align-items: center;
        gap: 2.6667vw;
        padding: 2.6667vw 4vw;
        font-size: 3.4667vw;
        color: var(--text);
        text-decoration: none;
        border-bottom: 0.1333vw solid var(--border);
    }
    
    .v01576-lang-option:last-child {
        border-bottom: none;
    }
    
    .v01576-lang-option:hover,
    .v01576-lang-option.active {
        background: var(--hover);
        color: var(--primary);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .v01576-header {
    position: relative;
        box-shadow: 0 2px 0 0 var(--shadow);
    }
    
    .v01576-header-container {
        max-width: 100%;
        padding: 12px 20px;
        min-height: 60px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .v01576-logo {
        min-width: 100px;
        max-width: 130px;
        overflow: hidden;        white-space: nowrap;        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    
    .v01576-logo a {
        display: flex;
        align-items: center;
        min-width: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .v01576-logo-text {
        display: block;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 20px;
        font-weight: 600;
        color: var(--text);
        text-decoration: none;
        width: 100%;
    }
    
    .v01576-nav-more {
        flex: 0 0 auto;
    }
    
    .v01576-main-nav {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
}

.v01576-nav-primary {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        align-items: center;
}

.v01576-nav-item {
        padding: 8px 14px;
        font-size: 14px;
        color: var(--text);
    text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s;
        white-space: nowrap;
}

.v01576-nav-item:hover,
.v01576-nav-item.active {
        background: var(--primary);
        color: #fff;
    }
    
.v01576-nav-more {
    position: relative;
    flex: 0 0 auto;
    z-index: 101;
}

.v01576-nav-more-btn {
        position: relative;
        z-index: 2;
        padding: 8px 14px;
        font-size: 14px;
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text);
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
.v01576-nav-dropdown {
    position: absolute;
        top: 100%;
        left: 0;
        margin-top: 6px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        min-width: 180px;
        max-height: min(70vh, 520px);
        overflow-y: auto;
        overflow-x: hidden;
        display: none;
        z-index: 1001;
        box-shadow: 0 4px 12px var(--shadow);
}

.v01576-nav-more.active .v01576-nav-dropdown {
        display: block;
}

.v01576-nav-dropdown-item {
    display: block;
        padding: 12px 16px;
        font-size: 14px;
        color: var(--text);
    text-decoration: none;
        border-bottom: 1px solid var(--border);
    }
    
    .v01576-nav-dropdown-item:last-child {
        border-bottom: none;
    }
    
    .v01576-nav-dropdown-item:hover,
.v01576-nav-dropdown-item.active {
        background: var(--hover);
        color: var(--primary);
}

.v01576-header-right {
    display: flex;
    align-items: center;
        gap: 12px;
        flex: 0 0 auto;
}

.v01576-search-box {
    display: flex;
        align-items: center;
        gap: 6px;
}

.v01576-search-input {
        width: 200px;
        padding: 8px 12px;
        font-size: 14px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 6px;
        color: var(--text);
    outline: none;
}

.v01576-search-btn {
        padding: 8px 16px;
        font-size: 14px;
        background: var(--primary);
    border: none;
        border-radius: 6px;
        color: #fff;
    cursor: pointer;
    }
    
.v01576-lang-switcher {
    position: relative;
}

.v01576-lang-btn {
        padding: 8px 12px;
        font-size: 14px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 6px;
        color: var(--text);
        cursor: pointer;
    display: flex;
    align-items: center;
        gap: 6px;
}

.v01576-lang-dropdown {
    position: absolute;
        top: 100%;
    right: 0;
        margin-top: 6px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        min-width: 180px;
        display: none;
        z-index: 1001;
        box-shadow: 0 4px 12px var(--shadow);
    }
    
    .v01576-lang-switcher.active .v01576-lang-dropdown {
        display: block;
}

.v01576-lang-option {
    display: flex;
    align-items: center;
        gap: 12px;
        padding: 12px 16px;
        font-size: 14px;
        color: var(--text);
    text-decoration: none;
        border-bottom: 1px solid var(--border);
}

.v01576-lang-option:last-child {
    border-bottom: none;
}

    .v01576-lang-option:hover,
.v01576-lang-option.active {
        background: var(--hover);
        color: var(--primary);
    }
}

@media (min-width: 1025px) {
    .v01576-header {
        position: sticky;
        box-shadow: 0 2px 8px var(--shadow);
    }
    
    .v01576-header-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
        height: 65px;
        flex-wrap: nowrap;
        gap: 16px;
    }
    
    .v01576-logo {
        min-width: 120px;
        max-width: 150px;
        overflow: hidden;        white-space: nowrap;        flex-shrink: 0;
        margin-right: 24px;
        display: flex;
        align-items: center;
    }
    
    .v01576-logo a {
        display: flex;
        align-items: center;
        min-width: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .v01576-logo-text {
        display: block;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 22px;
        font-weight: 600;
        color: var(--text);
        text-decoration: none;
        width: 100%;
    }
    
    .v01576-main-nav {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        overflow: visible;
    }
    
    .v01576-nav-primary {
        display: flex;
        flex-wrap: nowrap;
        gap: 5px;
        align-items: center;
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
    }
    
    .v01576-nav-more {
        flex: 0 0 auto;
        position: relative;
        z-index: 101;
    }
    
    .v01576-nav-item {
        padding: 10px 16px;
        font-size: 15px;
        color: var(--text);
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s;
        white-space: nowrap;
    }
    
    .v01576-nav-item:hover,
    .v01576-nav-item.active {
        background: var(--primary);
        color: #fff;
    }
    
    .v01576-nav-more {
        position: relative;
        z-index: 101;
    }
    
    .v01576-nav-more-btn {
        position: relative;
        z-index: 2;
        padding: 10px 16px;
        font-size: 15px;
        background: transparent;
        border: 1px solid var(--border);
        pointer-events: auto;
        color: var(--text);
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .v01576-nav-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 6px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        min-width: 200px;
        max-height: min(70vh, 520px);
        overflow-y: auto;
        overflow-x: hidden;
        display: none;
        z-index: 1001;
        box-shadow: 0 4px 12px var(--shadow);
    }
    
    .v01576-nav-dropdown-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .v01576-nav-more.active .v01576-nav-dropdown {
        display: block;
    }
    
    .v01576-nav-dropdown-item {
        display: block;
        padding: 12px 16px;
        font-size: 15px;
        color: var(--text);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
    }
    
    .v01576-nav-dropdown-item:last-child {
        border-bottom: none;
    }
    
    .v01576-nav-dropdown-item:hover,
    .v01576-nav-dropdown-item.active {
        background: var(--hover);
        color: var(--primary);
    }
    
    .v01576-header-right {
        display: flex;
        align-items: center;
        gap: 16px;
        flex: 0 0 auto;
        margin-left: auto;
    }
    
    .v01576-search-box {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .v01576-search-input {
        width: 240px;
        padding: 10px 14px;
        font-size: 14px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 6px;
        color: var(--text);
        outline: none;
    }
    
    .v01576-search-btn {
        padding: 10px 20px;
        font-size: 14px;
        background: var(--primary);
        border: none;
        border-radius: 6px;
        color: #fff;
        cursor: pointer;
    }
    
    .v01576-lang-switcher {
        position: relative;
    }
    
    .v01576-lang-btn {
        padding: 10px 14px;
        font-size: 14px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 6px;
        color: var(--text);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .v01576-lang-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 6px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        min-width: 200px;
        display: none;
        z-index: 1001;
        box-shadow: 0 4px 12px var(--shadow);
    }
    
    .v01576-lang-switcher.active .v01576-lang-dropdown {
    display: block;
    }
    
    .v01576-lang-option {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        font-size: 15px;
        color: var(--text);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
    }
    
    .v01576-lang-option:last-child {
        border-bottom: none;
    }
    
    .v01576-lang-option:hover,
    .v01576-lang-option.active {
        background: var(--hover);
        color: var(--primary);
    }
}

.v01576-wrapper {
    width: 100%;
    min-height: calc(100vh - 200px);
}

.v01576-container {
    display: grid;
    width: 100%;
        gap: 20px;
}

@media (max-width: 767px) {
    .v01576-container {
        padding: 4vw;
        grid-template-columns: 1fr;
        gap: 5.3333vw;
}

.v01576-main-content {
        width: 100%;
}

.v01576-page-heading {
        font-size: 18px;
        margin-bottom: 4vw;
        text-align: center;
    }

.v01576-sidebar {
        display: none;
    }
    
    .v01576-section {
        margin-bottom: 5.3333vw;
        width: 100%;
        max-width: 100%;
    }
    
    .v01576-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4vw;
    }
    
    .v01576-section-title {
        font-size: 4.8vw;
        font-weight: 600;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 2.6667vw;
    }
    
    .v01576-more-link {
        font-size: 3.4667vw;
        color: var(--primary);
        text-decoration: none;
    }
    
    .v01576-video-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.6667vw;
    }
    
    .v01576-video-item {
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
    }
    
    .v01576-video-thumb {
        position: relative;
        width: 100%;
        padding-top: 140%;
        aspect-ratio: 10 / 14;
        background: var(--bg-card);
        border-radius: 2.1333vw;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .v01576-video-thumb img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .v01576-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .v01576-video-item:hover .v01576-video-overlay {
        opacity: 1;
    }
    
    .v01576-play-icon {
        font-size: 8vw;
        color: #fff;
    }
    
    .v01576-video-info {
        padding: 2.6667vw 0;
        min-height: 8.5333vw;
    }
    
    .v01576-video-title {
        font-size: 3.4667vw;
        color: var(--text);
        margin-bottom: 1.3333vw;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .v01576-video-meta {
        display: flex;
        gap: 2.6667vw;
        font-size: 2.9333vw;
        color: var(--text-light);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .v01576-container {
        max-width: 100%;
        padding: 20px;
        grid-template-columns: 2fr 1fr;
        gap: 20px;
    }
    
    .v01576-main-content {
        min-width: 0;
        width: 100%;
    }
    
    .v01576-sidebar {
        width: 100%;
        flex-shrink: 0;
    }
    
    .v01576-section {
        margin-bottom: 30px;
}

.v01576-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
        margin-bottom: 16px;
}

.v01576-page-heading {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    text-align: center;
}
.v01576-section-title {
        font-size: 20px;
    font-weight: 600;
        color: var(--text);
    display: flex;
    align-items: center;
        gap: 8px;
    }
    
    .v01576-more-link {
        font-size: 14px;
        color: var(--primary);
        text-decoration: none;
    }
    
    .v01576-video-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
    
    .v01576-video-item {
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
    }
    
    .v01576-video-thumb {
        position: relative;
        width: 100%;
        padding-top: 140%;
        aspect-ratio: 10 / 14;
        background: var(--bg-card);
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .v01576-video-thumb img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .v01576-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .v01576-video-item:hover .v01576-video-overlay {
        opacity: 1;
    }
    
    .v01576-play-icon {
        font-size: 48px;
        color: #fff;
    }
    
    .v01576-video-info {
        padding: 12px 0;
        min-height: 52px;
    }
    
    .v01576-video-title {
        font-size: 15px;
        color: var(--text);
        margin-bottom: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .v01576-video-meta {
        display: flex;
        gap: 12px;
        font-size: 13px;
        color: var(--text-light);
    }
}

@media (min-width: 1025px) {
    .v01576-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 24px;
        grid-template-columns: 2fr 1fr;
        gap: 24px;
    }
    
    .v01576-main-content {
        min-width: 0;
        width: 100%;
    }
    
    .v01576-sidebar {
        width: 100%;
        flex-shrink: 0;
    }
    
    .v01576-section {
        margin-bottom: 40px;
        width: 100%;
    }
    
    .v01576-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .v01576-section-title {
        font-size: 24px;
        font-weight: 600;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .v01576-more-link {
        font-size: 15px;
        color: var(--primary);
        text-decoration: none;
    }
    
    .v01576-video-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
    
    .v01576-video-item {
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
    }
    
    .v01576-video-thumb {
        position: relative;
        width: 100%;
        padding-top: 140%;
        aspect-ratio: 10 / 14;
        background: var(--bg-card);
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .v01576-video-thumb img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.v01576-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
        transition: opacity 0.3s;
}

.v01576-video-item:hover .v01576-video-overlay {
    opacity: 1;
}

.v01576-play-icon {
        font-size: 56px;
    color: #fff;
}

.v01576-video-info {
        padding: 12px 0;
        min-height: 52px;
}

.v01576-video-title {
        font-size: 16px;
        color: var(--text);
        margin-bottom: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.v01576-video-meta {
    display: flex;
        gap: 12px;
        font-size: 13px;
        color: var(--text-light);
    }
}

@media (max-width: 767px) {
    .v01576-novel-grid {
        display: flex;
        flex-direction: column;
        gap: 2.6667vw;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .v01576-novel-item {
        width: 100%;
        background: var(--bg-card, #2a2a2a);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid var(--border, #333);
    }
    
    .v01576-novel-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border-color: var(--primary, #ff6b6b);
    }
    
    .v01576-novel-link {
        display: flex;
        text-decoration: none;
        color: inherit;
        gap: 2.6667vw;
    }
    
    .v01576-novel-thumb {
        position: relative;
        flex-shrink: 0;
        width: 26.6667vw;
        height: 37.3333vw;
        background: var(--bg-card);
        border-radius: 2.1333vw;
        overflow: hidden;
    }
    
    .v01576-novel-thumb img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .v01576-novel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .v01576-novel-item:hover .v01576-novel-overlay {
        opacity: 1;
    }
    
    .v01576-read-icon {
        font-size: 6vw;
        color: #fff;
    }
    
    .v01576-novel-info {
        flex: 1;
        padding: 2.6667vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .v01576-novel-title {
        font-size: 3.4667vw;
        color: var(--text);
        margin-bottom: 1.3333vw;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .v01576-novel-author {
        font-size: 2.9333vw;
        color: var(--text-light);
        margin-bottom: 1.0667vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .v01576-novel-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1.3333vw 2.6667vw;
        font-size: 2.6667vw;
        color: var(--text-light);
        margin-top: 1.3333vw;
    }
    
    .v01576-meta-item {
        display: inline-flex;
        align-items: center;
    }
    
    .v01576-meta-category {
        color: var(--primary, #ff6b6b);
        font-weight: 500;
    }
    
    .v01576-meta-hits {
        color: var(--text, #e0e0e0);
        font-weight: 500;
    }
    
    @media (max-width: 480px) {
        .v01576-novel-link {
            flex-direction: column;
        }
        
        .v01576-novel-thumb {
            width: 100%;
            height: 53.3333vw;
        }
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .v01576-novel-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .v01576-novel-item {
        width: 100%;
        background: var(--bg-card, #2a2a2a);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid var(--border, #333);
    }
    
    .v01576-novel-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border-color: var(--primary, #ff6b6b);
    }
    
    .v01576-novel-thumb {
        position: relative;
        flex-shrink: 0;
        width: 160px;
        height: 224px;
        background: var(--bg-card);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .v01576-novel-thumb img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .v01576-novel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .v01576-novel-item:hover .v01576-novel-overlay {
        opacity: 1;
    }
    
    .v01576-novel-link {
        display: flex;
        text-decoration: none;
        color: inherit;
        gap: 16px;
    }
    
    .v01576-read-icon {
        font-size: 40px;
        color: #fff;
    }
    
    .v01576-novel-info {
        flex: 1;
        padding: 14px 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
    }
    
    .v01576-novel-title {
        font-size: 16px;
        color: var(--text);
        margin-bottom: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-weight: 600;
        line-height: 1.5;
    }
    
    .v01576-novel-author {
        font-size: 13px;
        color: var(--text-light);
        margin-bottom: 4px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .v01576-novel-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 14px;
        font-size: 13px;
        color: var(--text-light);
        margin-top: 10px;
        align-items: center;
    }
    
    .v01576-meta-item {
        display: inline-flex;
        align-items: center;
    }
    
    .v01576-meta-category {
        color: var(--primary, #ff6b6b);
        font-weight: 500;
    }
    
    .v01576-meta-hits {
        color: var(--text, #e0e0e0);
        font-weight: 500;
    }
}

@media (min-width: 1025px) {
    .v01576-novel-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .v01576-novel-item {
        width: 100%;
        background: var(--bg-card, #2a2a2a);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid var(--border, #333);
    }
    
    .v01576-novel-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border-color: var(--primary, #ff6b6b);
    }
    
    .v01576-novel-thumb {
        position: relative;
        flex-shrink: 0;
        width: 180px;
        height: 252px;
        background: var(--bg-card);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .v01576-novel-thumb img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .v01576-novel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .v01576-novel-item:hover .v01576-novel-overlay {
        opacity: 1;
    }
    
    .v01576-novel-link {
        display: flex;
        text-decoration: none;
        color: inherit;
        gap: 20px;
    }
    
    .v01576-read-icon {
        font-size: 48px;
        color: #fff;
    }
    
    .v01576-novel-info {
        flex: 1;
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
    }
    
    .v01576-novel-title {
        font-size: 18px;
        color: var(--text);
        margin-bottom: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-weight: 600;
        line-height: 1.5;
    }
    
    .v01576-novel-author {
        font-size: 13px;
        color: var(--text-light);
        margin-bottom: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .v01576-novel-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 14px;
        font-size: 13px;
        color: var(--text-light);
        margin-top: 10px;
        align-items: center;
    }
    
    .v01576-meta-item {
        display: inline-flex;
        align-items: center;
    }
    
    .v01576-meta-category {
        color: var(--primary, #ff6b6b);
        font-weight: 500;
    }
    
    .v01576-meta-hits {
        color: var(--text, #e0e0e0);
        font-weight: 500;
    }
}

/* 小说徽章样式 - 与视频徽章风格统一 */
.v01576-badge {
    position: absolute;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
    line-height: 1.2;
}

.v01576-badge.premium {
    background: #ffd700;
    color: #000;
    top: 5px;
    right: 5px;
}

.v01576-badge.completed {
    background: #4caf50;
    color: #fff;
    top: 5px;
    left: 5px;
}

.v01576-badge.serializing {
    background: #2196f3;
    color: #fff;
    top: 5px;
    left: 5px;
}

@media (max-width: 767px) {
    .v01576-badge {
        font-size: 2.4vw;
        padding: 1.0667vw 2.1333vw;
        border-radius: 0.8vw;
    }
}

/* 侧边栏 - 响应式布局 */
.v01576-sidebar {
    align-self: flex-start;
    height: auto;
}
.v01576-layout-1 .v01576-container .v01576-sidebar,
.v01576-layout-2 .v01576-container .v01576-sidebar,
.v01576-layout-4 .v01576-container .v01576-sidebar {
    align-self: stretch;
    background: var(--bg-card);
}
.v01576-sidebar > * {
    flex: 0 1 auto !important;
    margin-bottom: 1rem;
}
.v01576-sidebar > *:last-child {
    margin-bottom: 0;
}
.v01576-sidebar-block {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    opacity: 0.85;
}

.v01576-sidebar-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light, #b0b0b0);
    margin-bottom: 12px;
    text-align: center;
}

.v01576-rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.v01576-rank-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border, #333);
}

.v01576-rank-item:last-child {
    border-bottom: none;
}

.v01576-rank-link {
    flex: 1;
    text-decoration: none;
    color: var(--text-light, #b0b0b0);
    font-size: 14px;
    transition: color 0.2s;
}

.v01576-rank-link:hover {
    color: var(--text, #e0e0e0);
}

.v01576-rank-link.active {
    color: var(--primary, #ff6b6b);
    font-weight: 500;
}

.v01576-rank-number {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-light);
}

.v01576-rank-top {
    background: var(--primary);
    color: #fff;
}

.v01576-rank-link {
    flex: 1 1 auto;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v01576-rank-link:hover {
    color: var(--primary);
}

.v01576-rank-link.active {
    color: var(--primary);
    font-weight: 600;
}

.v01576-rank-views {
    flex: 0 0 auto;
    font-size: 12px;
    color: var(--text-light);
}

/* 侧边栏广告样式 - 与悬浮广告一致，无边框，按图片大小显示 */
.v01576-sidebar-ad {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    overflow: visible !important;
}

.v01576-sidebar-ad:last-child {
    margin-bottom: 0 !important;
}

.v01576-sidebar-ad img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    object-fit: contain !important;
    box-sizing: border-box !important;
}

.v01576-sidebar-ad a {
    display: block !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.v01576-sidebar-ad > div {
    width: auto !important;
    height: auto !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

    @media (max-width: 767px) {
    .v01576-sidebar {
        display: none;
    }
}

.v01576-about-site {
    max-width: 1400px;
    margin: 24px auto 0;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}
.v01576-about-site h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px 0;
}
.v01576-about-site .v01576-site-description-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 767px) {
    .v01576-about-site { margin-top: 5.3333vw; padding: 4vw; }
    .v01576-about-site h3 { font-size: 4.2667vw; }
    .v01576-about-site .v01576-site-description-text { font-size: 3.7333vw; }
}
.v01576-breadcrumb-footer {
    max-width: 1400px;
    margin: 12px auto 0;
    padding: 0 24px;
    font-size: 13px;
    color: var(--text-light);
}
.v01576-breadcrumb-footer a { color: var(--text-light); text-decoration: none; }
.v01576-breadcrumb-footer a:hover { color: var(--primary); }
.v01576-breadcrumb-footer [aria-hidden="true"] { margin: 0 4px; }
@media (max-width: 767px) { .v01576-breadcrumb-footer { padding: 0 4vw; font-size: 3.2vw; } }
.v01576-footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 20px 0;
        margin-top: 40px;
}

.v01576-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.v01576-footer p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

.v01576-footer a {
    color: var(--text-light);
    text-decoration: none;
}

.v01576-footer a:hover {
    color: var(--primary);
}

@media (max-width: 767px) {
.v01576-footer {
        padding: 5.3333vw 0;
        margin-top: 5.3333vw;
}

.v01576-footer-container {
        padding: 0 4vw;
}

.v01576-footer p {
        font-size: 3.2vw;
    }
}

.v01576-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    background: var(--bg-card, #2a2a2a);
    border-radius: 8px;
    border: 1px dashed var(--border, #333);
    margin: 20px 0;
}

.v01576-empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
    display: block;
}

.v01576-empty-text {
    font-size: 16px;
    color: var(--text-light, #b0b0b0);
    margin: 0;
    line-height: 1.6;
}

.v01576-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--text-light);
}

.v01576-video-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    color: #fff;
    padding: 0;
    font-size: 11px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 6px rgba(0, 0, 0, 0.5);
}

.v01576-video-badge i {
        font-size: 11px;
    opacity: 0.95;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
}

.v01576-views-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.v01576-views-badge i {
    font-size: 11px;
    opacity: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
    flex-shrink: 0;
}

.v01576-new-badge {
    background: var(--primary);
    color: #fff;
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 3px;
    top: 6px;
    right: 6px;
    text-shadow: none;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.4);
}

@media (max-width: 767px) {
    .v01576-video-badge {
        top: 2vw;
        right: 2vw;
        padding: 0;
        font-size: 2.4vw;
        gap: 1vw;
        line-height: 1;
        text-shadow: 0 0.2667vw 0.8vw rgba(0, 0, 0, 0.9), 0 0 1.3333vw rgba(0, 0, 0, 0.6);
    }
    
    .v01576-video-badge i {
        font-size: 2.1333vw;
        filter: drop-shadow(0 0.2667vw 0.5333vw rgba(0, 0, 0, 0.9));
    }
    
    .v01576-views-badge {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .v01576-views-badge i {
        display: none !important;
    }
    
    .v01576-new-badge {
        background: var(--primary);
        color: #fff;
        top: 2vw;
        right: 2vw;
        padding: 0.8vw 1.3333vw;
        font-size: 2vw;
        border-radius: 0.8vw;
        text-shadow: none;
        box-shadow: 0 0.5333vw 1.0667vw rgba(255, 107, 107, 0.4);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .v01576-views-badge {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .v01576-views-badge i {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .v01576-views-badge {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .v01576-views-badge i {
        display: none !important;
    }
}

.v01576-header-ads {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
    overflow: hidden;
    gap: 0;
}

.v01576-header-ads > div,
.v01576-header-ads > a,
.v01576-header-ad-item {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
    border: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.v01576-header-ad-item > a,
.v01576-header-ad-item > div {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

.v01576-header-ads img {
    width: auto !important;
    max-width: 100% !important;
    height: auto;
    display: block !important;
    margin: 0 auto;
    border: none;
    padding: 0;
    object-fit: contain;
}

.v01576-bottom-ads {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
    overflow: hidden;
    gap: 0;
}

.v01576-bottom-ads > div,
.v01576-bottom-ads > a,
.v01576-bottom-ad-item {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
    border: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    box-sizing: border-box;
}

.v01576-bottom-ad-item > a,
.v01576-bottom-ad-item > div {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* 底部横幅广告图片 - 复用顶部横幅广告的样式，确保所有图片使用相同的规则 */
.v01576-bottom-ads img,
.v01576-bottom-ad-item img,
.v01576-bottom-ad-item > a > img,
.v01576-bottom-ad-item > div > img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    border: none !important;
    padding: 0 !important;
    object-fit: contain !important;
}

@media (max-width: 767px) {
    .v01576-header-ads {
        padding: 2.6667vw 4vw;
        margin: 0;
        box-sizing: border-box;
        flex-direction: column !important;
    }
    
    .v01576-header-ad-item {
        display: block !important;
        width: 100% !important;
        margin-bottom: 2.6667vw;
    }
    
    .v01576-header-ad-item:last-child {
        margin-bottom: 0;
    }
    
    .v01576-header-ads img {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .v01576-bottom-ads {
        padding: 2.6667vw 4vw;
        margin: 0;
        box-sizing: border-box;
        flex-direction: column !important;
    }
    
    .v01576-bottom-ad-item {
        display: block !important;
        width: 100% !important;
        margin-bottom: 2.6667vw;
    }
    
    .v01576-bottom-ad-item:last-child {
        margin-bottom: 0;
    }
    
    .v01576-bottom-ads img {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .v01576-header-ads {
        padding: 12px 4vw;
        margin: 0;
        box-sizing: border-box;
        flex-direction: column !important;
    }
    
    .v01576-header-ad-item {
        display: block !important;
        width: 100% !important;
        margin-bottom: 12px;
    }
    
    .v01576-header-ad-item:last-child {
        margin-bottom: 0;
    }
    
    .v01576-header-ads img {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .v01576-bottom-ads {
        padding: 12px 4vw;
        margin: 0;
        box-sizing: border-box;
        flex-direction: column !important;
    }
    
    .v01576-bottom-ad-item {
        display: block !important;
        width: 100% !important;
        margin-bottom: 12px;
    }
    
    .v01576-bottom-ad-item:last-child {
        margin-bottom: 0;
    }
    
    .v01576-bottom-ads img {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
}

@media (min-width: 1025px) {
    .v01576-header-ads {
        padding: 16px 0;
        margin: 0;
        box-sizing: border-box;
        flex-direction: column !important;
        width: 100%;
    }
    
    .v01576-header-ads > div,
    .v01576-header-ads > a,
    .v01576-header-ad-item {
        display: block !important;
        width: 100% !important;
        max-width: 1400px;
        margin: 0 auto 16px auto;
        padding: 0 24px;
        box-sizing: border-box;
        flex-shrink: 0;
        text-align: center;
    }
    
    .v01576-header-ad-item:last-child {
        margin-bottom: 0;
    }
    
    .v01576-header-ad-item > a,
    .v01576-header-ad-item > div {
        display: inline-block !important;
        width: auto !important;
        max-width: 100% !important;
        text-align: center;
    }
    
    .v01576-header-ads img {
        width: auto !important;
        max-width: 90% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto;
        object-fit: contain;
    }
    
    .v01576-bottom-ads {
        padding: 16px 0;
        margin: 0;
        box-sizing: border-box;
        flex-direction: column !important;
        width: 100%;
    }
    
    .v01576-bottom-ads > div,
    .v01576-bottom-ads > a,
    .v01576-bottom-ad-item {
        display: block !important;
        width: 100% !important;
        max-width: 1400px;
        margin: 0 auto 16px auto;
        padding: 0 24px;
        box-sizing: border-box;
        flex-shrink: 0;
        text-align: center;
    }
    
    .v01576-bottom-ad-item:last-child {
        margin-bottom: 0;
    }
    
    .v01576-bottom-ad-item > a,
    .v01576-bottom-ad-item > div {
        display: inline-block !important;
        width: auto !important;
        max-width: 100% !important;
        text-align: center;
    }
    
    .v01576-bottom-ads img,
    .v01576-bottom-ad-item img,
    .v01576-bottom-ad-item > a > img,
    .v01576-bottom-ad-item > div > img,
    .v01576-bottom-ad-item a img,
    .v01576-bottom-ad-item div img {
        width: auto !important;
        max-width: 90% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        object-fit: contain !important;
    }
}

#missav-popup-ads {
    display: none;
}

#missav-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.v01576-popup-ad-item {
    margin-bottom: 15px;
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: auto;
    overflow: visible;
    position: relative;
    text-align: center;
    border: none;
    padding: 0;
    background: transparent;
}

.v01576-popup-ad-item img {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    visibility: visible !important;
    opacity: 1 !important;
    border: none;
    padding: 0;
}

.v01576-popup-ad-close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.2s;
}

.v01576-popup-ad-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 767px) {
    #missav-popup-overlay {
        padding: 4vw;
    }
    
    .v01576-popup-ad-item img {
        max-width: 92vw;
        max-height: 85vh;
    }
    
    .v01576-popup-ad-close {
        bottom: 2.6667vw;
        padding: 2.1333vw 4vw;
        font-size: 3.2vw;
    }
}

    @media (min-width: 768px) and (max-width: 1024px) {
    #missav-popup-overlay {
        padding: 20px;
    }
    
    .v01576-popup-ad-item img {
        max-width: 90vw;
        max-height: 80vh;
    }
}

#missav-floating-ads {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9998 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.v01576-floating-ads-left,
.v01576-floating-ads-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    pointer-events: auto !important;
    flex: 0 0 auto !important;
}

.v01576-floating-ads-left {
    align-items: flex-start !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.v01576-floating-ads-right {
    align-items: flex-end !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.v01576-floating-ad-item {
    position: relative !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    max-width: 300px !important;
    max-height: 400px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
}

/* 已关闭的广告必须隐藏 */
.v01576-floating-ad-item[data-closed="true"],
.v01576-floating-ad-item[style*="display: none"],
.v01576-floating-ad-item[style*="display:none"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.v01576-floating-ad-content {
    position: relative;
    z-index: 1;
}

.v01576-floating-ad-content a,
.v01576-floating-ad-content img {
    position: relative;
    z-index: 1;
}

.v01576-floating-ad-close {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
    width: 28px !important;
    height: 28px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 18px !important;
    line-height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    flex-shrink: 0 !important;
    transition: background 0.2s !important;
    pointer-events: auto !important;
    user-select: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.v01576-floating-ad-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.v01576-floating-ad-content {
    width: auto;
    max-width: 300px;
    max-height: 400px;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
}

.v01576-floating-ad-content img {
    max-width: 300px;
    max-height: 400px;
    width: auto;
    height: auto;
    display: block;
    border-radius: 0;
    object-fit: contain;
    box-sizing: border-box;
    border: none;
    padding: 0;
    margin: 0;
}

.v01576-floating-ad-content > div,
.v01576-floating-ad-content > a {
    display: block;
    width: auto;
    max-width: 300px;
    max-height: 400px;
    box-sizing: border-box;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
}

.v01576-floating-ad-content > div img,
.v01576-floating-ad-content > a img {
    max-width: 300px;
    max-height: 400px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    box-sizing: border-box;
    border: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    #missav-floating-ads {
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        justify-content: space-between !important;
        align-items: flex-end !important;
    }
    
    .v01576-floating-ads-left {
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-bottom: 13.3333vw !important;
    }
    
    .v01576-floating-ads-right {
        margin-right: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 13.3333vw !important;
    }
    
    .v01576-floating-ads-left,
    .v01576-floating-ads-right {
        gap: 2.6667vw !important;
        flex: 0 0 auto !important;
    }
    
    .v01576-floating-ad-item {
        width: auto;
        max-width: 42.6667vw;
        max-height: 56.8889vw;
        min-width: 0;
        padding: 0;
        border-radius: 0;
        box-sizing: border-box;
    }
    
    .v01576-floating-ad-close {
        top: 1.0667vw;
        right: 1.0667vw;
        width: 5.3333vw;
        height: 5.3333vw;
        font-size: 3.2vw;
        min-width: 5.3333vw;
        min-height: 5.3333vw;
    }
    
    .v01576-floating-ad-content {
        width: auto;
        max-width: 42.6667vw;
        max-height: 56.8889vw;
        box-sizing: border-box;
    }
    
    .v01576-floating-ad-content img {
        max-width: 42.6667vw;
        max-height: 56.8889vw;
        width: auto;
        height: auto;
        box-sizing: border-box;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #missav-floating-ads {
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        justify-content: space-between !important;
        align-items: flex-end !important;
    }
    
    .v01576-floating-ads-left {
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .v01576-floating-ads-right {
        margin-right: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .v01576-floating-ads-left,
    .v01576-floating-ads-right {
        gap: 12px !important;
    }
    
    .v01576-floating-ad-item {
        width: auto;
        max-width: 220px;
        max-height: 293px;
        min-width: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .v01576-floating-ad-close {
        top: 4px;
        right: 4px;
    }
    
    .v01576-floating-ad-content {
        width: auto;
        max-width: 220px;
        max-height: 293px;
        box-sizing: border-box;
    }
    
    .v01576-floating-ad-content img {
        max-width: 220px;
        max-height: 293px;
        width: auto;
        height: auto;
        box-sizing: border-box;
    }
}

@media (min-width: 1025px) {
    #missav-floating-ads {
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        justify-content: space-between !important;
        align-items: flex-end !important;
    }
    
    .v01576-floating-ads-left {
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .v01576-floating-ads-right {
        margin-right: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .v01576-floating-ads-left,
    .v01576-floating-ads-right {
        gap: 12px !important;
    }
    
    .v01576-floating-ad-item {
        width: auto;
        max-width: 300px;
        max-height: 400px;
        min-width: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .v01576-floating-ad-close {
        top: 4px;
        right: 4px;
    }
    
    .v01576-floating-ad-content {
        width: auto;
        max-width: 300px;
        max-height: 400px;
        box-sizing: border-box;
    }
    
    .v01576-floating-ad-content img {
        max-width: 300px;
        max-height: 400px;
        width: auto;
        height: auto;
        box-sizing: border-box;
    }
}
