/**
██   ██ ██    ██ ██████  ██  ██████ ███    ███ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ████  ████ ██      
███████ ██    ██ ██   ██ ██ ██      ██ ████ ██ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ██  ██  ██      ██ 
██   ██  ██████  ██████  ██  ██████ ██      ██ ███████ 
            ===========================================
 * @Sign
================================
        Keep calm and get rich.
                    Is the best huudi.
 */

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body, html {
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #e0e0e0;
    background-color: #85929e;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, li {
    list-style: none;
}

button, input {
    outline: none;
    border: none;
    background: none;
    font-family: inherit;
}

/* 顶部导航 */
.zkzjd-header {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.zkzjd-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.zkzjd-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo区域 */
.zkzjd-logo-area {
    display: flex;
    align-items: center;
}

.zkzjd-logo {
    display: block;
    height: 40px;
}

.zkzjd-logo img {
    height: 100%;
    max-width: 140px;
    object-fit: contain;
}

/* 网站名称样式 */
.zkzjd-site-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(100, 181, 246, 0.7);
    background: linear-gradient(135deg, #64b5f6, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding: 4px 0;
    letter-spacing: 1px;
}

.zkzjd-site-name:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: zkzjd-metal-shine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes zkzjd-metal-shine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* 主导航菜单 */
.zkzjd-main-nav {
    flex: 1;
    padding: 0 20px;
}

.zkzjd-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zkzjd-nav-item {
    position: relative;
    margin: 0 5px;
}

.zkzjd-nav-item a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #b0b0b0;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.zkzjd-nav-item a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(133, 146, 158, 0.8);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.zkzjd-nav-item a:hover {
    color: #ffffff;
}

.zkzjd-nav-item a:hover:before {
    transform: translateY(0);
}

.zkzjd-nav-item.zkzjd-active a {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(230, 230, 240, 0.8) 0%, rgba(133, 146, 158, 0.8) 100%);
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1);
}

.zkzjd-nav-item.zkzjd-active a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

.zkzjd-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    color: #64b5f6;
}

.zkzjd-nav-text {
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* 搜索区域 */
.zkzjd-search-area {
    position: relative;
    width: 280px;
    margin-left: auto;
}

.zkzjd-search-form {
    width: 100%;
}

.zkzjd-search-input-wrap {
    position: relative;
    width: 100%;
    height: 36px;
    background: rgba(133, 146, 158, 0.8);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.zkzjd-search-input-wrap:hover,
.zkzjd-search-input-wrap:focus-within {
    background: rgba(133, 146, 158, 0.8);
    box-shadow: 0 0 10px rgba(100, 181, 246, 0.2);
    border-color: rgba(100, 181, 246, 0.3);
}

.zkzjd-search-input {
    width: calc(100% - 40px);
    height: 100%;
    padding: 0 15px;
    color: #ffffff;
    font-size: 14px;
    background: transparent;
}

.zkzjd-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.zkzjd-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64b5f6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.zkzjd-search-btn:hover {
    color: #90caf9;
}

/* 移动端菜单按钮 */
.zkzjd-mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.zkzjd-menu-line {
    width: 100%;
    height: 2px;
    background-color: #85929e;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* 移动端导航菜单 */
.zkzjd-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(133, 146, 158, 0.8);
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.zkzjd-mobile-nav.zkzjd-active {
    visibility: visible;
    opacity: 1;
}

.zkzjd-mobile-nav-container {
    padding: 80px 20px 20px;
    height: 100%;
    overflow-y: auto;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.zkzjd-mobile-nav.zkzjd-active .zkzjd-mobile-nav-container {
    transform: translateY(0);
}

.zkzjd-mobile-search {
    margin-bottom: 20px;
}

.zkzjd-mobile-nav-list {
    display: flex;
    flex-direction: column;
}

.zkzjd-mobile-nav-item {
    margin-bottom: 5px;
}

.zkzjd-mobile-nav-item a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #b0b0b0;
    font-weight: 500;
    font-size: 16px;
    border-radius: 4px;
    background: rgba(133, 146, 158, 0.8);
    transition: all 0.3s ease;
}

.zkzjd-mobile-nav-item a:active {
    background: rgba(133, 146, 158, 0.8);
}

.zkzjd-mobile-nav-item.zkzjd-active a {
    color: #ffffff;
    background: rgba(133, 146, 158, 0.8);
    border-left: 3px solid #64b5f6;
}

/* 质感增强 */
.zkzjd-header:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 4px 4px;
    pointer-events: none;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .zkzjd-main-nav {
        display: none;
    }
    
    .zkzjd-mobile-menu-btn {
        display: flex;
        z-index: 102; /* 确保按钮在菜单之上 */
    }
    
    .zkzjd-header-container {
        height: 60px;
    }
    
    .zkzjd-search-area {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .zkzjd-search-area {
        display: none;
    }
    
    .zkzjd-mobile-nav {
        display: block;
        visibility: hidden;
    }
}

/* 动画效果 */
.zkzjd-mobile-menu-btn.zkzjd-active .zkzjd-menu-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #85929e; /* 激活时改变颜色 */
}

.zkzjd-mobile-menu-btn.zkzjd-active .zkzjd-menu-line:nth-child(2) {
    opacity: 0;
}

.zkzjd-mobile-menu-btn.zkzjd-active .zkzjd-menu-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #85929e; /* 激活时改变颜色 */
}

/* 页面其他部分样式 */
.zkzjd-video-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
    position: relative;
}

.zkzjd-video-section-header {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.zkzjd-video-section-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-section-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.zkzjd-section-icon {
    margin-right: 8px;
    color: #64b5f6;
}

.zkzjd-section-title h2 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.zkzjd-filter-container {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.zkzjd-category-filter,
.zkzjd-sort-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

.zkzjd-filter-title {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.zkzjd-filter-title svg {
    margin-right: 5px;
    color: #64b5f6;
}

.zkzjd-filter-options {
    display: flex;
    flex-wrap: wrap;
}

.zkzjd-filter-item {
    padding: 4px 12px;
    margin: 0 5px 5px 0;
    border-radius: 3px;
    font-size: 13px;
    color: #b0b0b0;
    background: rgba(133, 146, 158, 0.8);
    transition: all 0.3s ease;
}

.zkzjd-filter-item:hover {
    background: rgba(133, 146, 158, 0.8);
    color: #ffffff;
}

.zkzjd-filter-item.active {
    position: relative;
    overflow: hidden;
}

.zkzjd-filter-item.active:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
    background-size: 5px 5px;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.zkzjd-mobile-filter-toggle {
    display: none;
    align-items: center;
    padding: 5px 10px;
    border-radius: 3px;
    background: rgba(133, 146, 158, 0.8);
    color: #b0b0b0;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.zkzjd-mobile-filter-toggle svg {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .zkzjd-mobile-filter-toggle {
        display: flex;
    }
    
    .zkzjd-filter-container {
        display: none;
    }
    
    .zkzjd-filter-container.zkzjd-active {
        display: block;
    }
}

/* 视频列表 */
.zkzjd-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* 视频卡片 */
.zkzjd-video-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.zkzjd-video-card-inner {
    position: relative;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.zkzjd-video-card:hover {
    transform: translateY(-5px);
}

.zkzjd-video-card:hover .zkzjd-video-card-inner {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(100, 181, 246, 0.2);
}

.zkzjd-video-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* 视频缩略图 */
.zkzjd-video-thumb {
    position: relative;
    width: 100%;
    padding-top: 150%; /* 2:3 比例 */
    overflow: hidden;
    flex-shrink: 0;
}

.zkzjd-video-thumb-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 封面背景图 */
.zkzjd-video-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.5s ease;
    opacity: 0; /* 初始隐藏，加载完成后显示 */
}

.zkzjd-video-img.zkzjd-loaded {
    opacity: 1; /* 加载完成后显示 */
}

/* 封面加载前的占位效果 */
.zkzjd-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 50%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: zkzjd-placeholder-shine 1.5s ease infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.zkzjd-loaded .zkzjd-image-placeholder {
    opacity: 0;
}

@keyframes zkzjd-placeholder-shine {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.zkzjd-video-card:hover .zkzjd-video-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* 边框效果 */
.zkzjd-metal-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 4px 4px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.zkzjd-video-card:hover .zkzjd-metal-frame {
    opacity: 0.9;
    box-shadow: inset 0 0 15px rgba(100, 181, 246, 0.2);
}

/* 悬停时的光泽效果 */
.zkzjd-metal-shine {
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.8s ease;
    opacity: 0;
    pointer-events: none;
}

.zkzjd-video-card:hover .zkzjd-metal-shine {
    top: -50%;
    opacity: 1;
}

/* 视频标签 */
.zkzjd-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    background: rgba(133, 146, 158, 0.8);
    color: #ffffff;
    font-size: 12px;
    border-radius: 3px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 评分标签 */
.zkzjd-video-score {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    background: rgba(133, 146, 158, 0.8);
    color: #ffffff;
    font-size: 12px;
    border-radius: 3px;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.zkzjd-video-score svg {
    margin-right: 3px;
}

/* 播放按钮 */
.zkzjd-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(133, 146, 158, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.zkzjd-video-card:hover .zkzjd-video-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* 视频信息区域 */
.zkzjd-video-info {
    padding: 12px;
    position: relative;
    background: linear-gradient(135deg, rgba(230, 230, 240, 0.8) 0%, rgba(133, 146, 158, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.zkzjd-video-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #ffffff;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.zkzjd-video-card:hover .zkzjd-video-title {
    color: #64b5f6;
}

.zkzjd-video-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 12px;
    color: #999999;
    margin-top: auto;
}

.zkzjd-meta-item {
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 5px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zkzjd-meta-icon {
    margin-right: 4px;
    color: #64b5f6;
    flex-shrink: 0;
}

.zkzjd-meta-type {
    padding: 2px 6px;
    background: rgba(133, 146, 158, 0.8);
    border-radius: 3px;
    color: #64b5f6;
    font-size: 11px;
    margin-right: 0;
}

/* 响应式视频网格 */
@media (max-width: 1200px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .zkzjd-video-title {
        font-size: 13px;
        height: 36px;
        -webkit-line-clamp: 2;
        margin-bottom: 4px;
    }
    
    .zkzjd-video-info {
        padding: 8px;
    }
    
    .zkzjd-meta-item {
        margin-right: 8px;
        margin-bottom: 3px;
    }
    
    .zkzjd-pagination {
        flex-direction: column;
    }
    
    .zkzjd-pagination-info {
        margin-bottom: 10px;
    }
    
    .zkzjd-metal-decor {
        display: none;
    }
}

@media (max-width: 480px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .zkzjd-video-badge {
        font-size: 10px;
        padding: 2px 6px;
        top: 5px;
        right: 5px;
    }
    
    .zkzjd-video-score {
        font-size: 10px;
        padding: 2px 6px;
        top: 5px;
        left: 5px;
    }
    
    .zkzjd-video-play-icon {
        width: 40px;
        height: 40px;
    }
    
    .zkzjd-video-title {
        font-size: 12px;
        height: 34px;
        margin-bottom: 3px;
    }
    
    .zkzjd-video-info {
        padding: 6px;
    }
    
    .zkzjd-meta-item {
        font-size: 10px;
    }
    
    .zkzjd-meta-type {
        padding: 1px 4px;
        font-size: 10px;
    }
    
    .zkzjd-meta-icon {
        width: 10px;
        height: 10px;
    }
}

/* 装饰元素 */
.zkzjd-metal-line {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #64b5f6, transparent);
}

.zkzjd-metal-decor {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.zkzjd-metal-decor-1 {
    top: 5%;
    right: 2%;
    width: 150px;
    height: 150px;
    background-image: 
        linear-gradient(45deg, rgba(100, 181, 246, 0.05) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(100, 181, 246, 0.05) 25%, transparent 25%);
    background-size: 8px 8px;
    border-radius: 50%;
    opacity: 0.5;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: inset 0 0 15px rgba(100, 181, 246, 0.1);
}

.zkzjd-metal-decor-2 {
    bottom: 10%;
    left: 3%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(100, 181, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(45deg);
    border: 1px solid rgba(100, 181, 246, 0.05);
}

/* 增强视频卡片的质感 */
.zkzjd-video-card:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-video-card:hover:before {
    opacity: 1;
}

/* 修改分页样式增强感 */
.zkzjd-pagination {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zkzjd-pagination:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-pagination:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 4px 4px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.zkzjd-pagination-info {
    color: #999;
    font-size: 13px;
}

.zkzjd-pagination-links {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.zkzjd-page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    margin: 0 3px;
    border-radius: 4px;
    font-size: 14px;
    color: #b0b0b0;
    background: rgba(133, 146, 158, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.zkzjd-page-item:hover {
    background: rgba(133, 146, 158, 0.8);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.15);
}

.zkzjd-page-current {
    background: rgba(133, 146, 158, 0.8);
    color: #64b5f6;
    border-color: rgba(100, 181, 246, 0.3);
    font-weight: 500;
}

.zkzjd-pagination-goto {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 13px;
}

.zkzjd-page-input {
    width: 50px;
    height: 36px;
    background: rgba(133, 146, 158, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #ffffff;
    text-align: center;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.zkzjd-page-input:focus {
    border-color: rgba(100, 181, 246, 0.3);
    background: rgba(133, 146, 158, 0.8);
}

.zkzjd-page-btn {
    min-width: 40px;
    height: 36px;
    padding: 0 12px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(33, 150, 243, 0.3);
}

.zkzjd-page-btn:hover {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.4);
}

/* 响应式视频网格 */
@media (max-width: 1200px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .zkzjd-video-title {
        font-size: 13px;
        height: 36px;
        -webkit-line-clamp: 2;
        margin-bottom: 4px;
    }
    
    .zkzjd-video-info {
        padding: 8px;
    }
    
    .zkzjd-meta-item {
        margin-right: 8px;
        margin-bottom: 3px;
    }
    
    .zkzjd-pagination {
        flex-direction: column;
    }
    
    .zkzjd-pagination-info {
        margin-bottom: 10px;
    }
    
    .zkzjd-metal-decor {
        display: none;
    }
}

@media (max-width: 480px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .zkzjd-video-badge {
        font-size: 10px;
        padding: 2px 6px;
        top: 5px;
        right: 5px;
    }
    
    .zkzjd-video-score {
        font-size: 10px;
        padding: 2px 6px;
        top: 5px;
        left: 5px;
    }
    
    .zkzjd-video-play-icon {
        width: 40px;
        height: 40px;
    }
    
    .zkzjd-video-title {
        font-size: 12px;
        height: 34px;
        margin-bottom: 3px;
    }
    
    .zkzjd-video-info {
        padding: 6px;
    }
    
    .zkzjd-meta-item {
        font-size: 10px;
    }
    
    .zkzjd-meta-type {
        padding: 1px 4px;
        font-size: 10px;
    }
    
    .zkzjd-meta-icon {
        width: 10px;
        height: 10px;
    }
}

/* 装饰元素 */
.zkzjd-metal-line {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #64b5f6, transparent);
}

.zkzjd-metal-decor {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.zkzjd-metal-decor-1 {
    top: 5%;
    right: 2%;
    width: 150px;
    height: 150px;
    background-image: 
        linear-gradient(45deg, rgba(100, 181, 246, 0.05) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(100, 181, 246, 0.05) 25%, transparent 25%);
    background-size: 8px 8px;
    border-radius: 50%;
    opacity: 0.5;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: inset 0 0 15px rgba(100, 181, 246, 0.1);
}

.zkzjd-metal-decor-2 {
    bottom: 10%;
    left: 3%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(100, 181, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(45deg);
    border: 1px solid rgba(100, 181, 246, 0.05);
}

/* 增强视频卡片的质感 */
.zkzjd-video-card:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-video-card:hover:before {
    opacity: 1;
}

/* 修改分页样式增强感 */
.zkzjd-pagination {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zkzjd-pagination:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-pagination:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 4px 4px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.zkzjd-pagination-info {
    color: #999;
    font-size: 13px;
}

.zkzjd-pagination-links {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.zkzjd-page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    margin: 0 3px;
    border-radius: 4px;
    font-size: 14px;
    color: #b0b0b0;
    background: rgba(133, 146, 158, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.zkzjd-page-item:hover {
    background: rgba(133, 146, 158, 0.8);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.15);
}

.zkzjd-page-current {
    background: rgba(133, 146, 158, 0.8);
    color: #64b5f6;
    border-color: rgba(100, 181, 246, 0.3);
    font-weight: 500;
}

.zkzjd-pagination-goto {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 13px;
}

.zkzjd-page-input {
    width: 50px;
    height: 36px;
    background: rgba(133, 146, 158, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #ffffff;
    text-align: center;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.zkzjd-page-input:focus {
    border-color: rgba(100, 181, 246, 0.3);
    background: rgba(133, 146, 158, 0.8);
}

.zkzjd-page-btn {
    min-width: 40px;
    height: 36px;
    padding: 0 12px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(33, 150, 243, 0.3);
}

.zkzjd-page-btn:hover {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.4);
}

/* 响应式视频网格 */
@media (max-width: 1200px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .zkzjd-video-title {
        font-size: 13px;
        height: 36px;
        -webkit-line-clamp: 2;
        margin-bottom: 4px;
    }
    
    .zkzjd-video-info {
        padding: 8px;
    }
    
    .zkzjd-meta-item {
        margin-right: 8px;
        margin-bottom: 3px;
    }
    
    .zkzjd-pagination {
        flex-direction: column;
    }
    
    .zkzjd-pagination-info {
        margin-bottom: 10px;
    }
    
    .zkzjd-metal-decor {
        display: none;
    }
}

@media (max-width: 480px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .zkzjd-video-badge {
        font-size: 10px;
        padding: 2px 6px;
        top: 5px;
        right: 5px;
    }
    
    .zkzjd-video-score {
        font-size: 10px;
        padding: 2px 6px;
        top: 5px;
        left: 5px;
    }
    
    .zkzjd-video-play-icon {
        width: 40px;
        height: 40px;
    }
    
    .zkzjd-video-title {
        font-size: 12px;
        height: 34px;
        margin-bottom: 3px;
    }
    
    .zkzjd-video-info {
        padding: 6px;
    }
    
    .zkzjd-meta-item {
        font-size: 10px;
    }
    
    .zkzjd-meta-type {
        padding: 1px 4px;
        font-size: 10px;
    }
    
    .zkzjd-meta-icon {
        width: 10px;
        height: 10px;
    }
}

/* 装饰元素 */
.zkzjd-metal-line {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #64b5f6, transparent);
}

.zkzjd-metal-decor {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.zkzjd-metal-decor-1 {
    top: 5%;
    right: 2%;
    width: 150px;
    height: 150px;
    background-image: 
        linear-gradient(45deg, rgba(100, 181, 246, 0.05) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(100, 181, 246, 0.05) 25%, transparent 25%);
    background-size: 8px 8px;
    border-radius: 50%;
    opacity: 0.5;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: inset 0 0 15px rgba(100, 181, 246, 0.1);
}

.zkzjd-metal-decor-2 {
    bottom: 10%;
    left: 3%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(100, 181, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(45deg);
    border: 1px solid rgba(100, 181, 246, 0.05);
}

/* 增强视频卡片的质感 */
.zkzjd-video-card:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-video-card:hover:before {
    opacity: 1;
}

/* 修改分页样式增强感 */
.zkzjd-pagination {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zkzjd-pagination:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-pagination:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 4px 4px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.zkzjd-pagination-info {
    color: #999;
    font-size: 13px;
}

.zkzjd-pagination-links {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.zkzjd-page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    margin: 0 3px;
    border-radius: 4px;
    font-size: 14px;
    color: #b0b0b0;
    background: rgba(133, 146, 158, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.zkzjd-page-item:hover {
    background: rgba(133, 146, 158, 0.8);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.15);
}

.zkzjd-page-current {
    background: rgba(133, 146, 158, 0.8);
    color: #64b5f6;
    border-color: rgba(100, 181, 246, 0.3);
    font-weight: 500;
}

.zkzjd-pagination-goto {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 13px;
}

.zkzjd-page-input {
    width: 50px;
    height: 36px;
    background: rgba(133, 146, 158, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #ffffff;
    text-align: center;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.zkzjd-page-input:focus {
    border-color: rgba(100, 181, 246, 0.3);
    background: rgba(133, 146, 158, 0.8);
}

.zkzjd-page-btn {
    min-width: 40px;
    height: 36px;
    padding: 0 12px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(33, 150, 243, 0.3);
}

.zkzjd-page-btn:hover {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.4);
}

/* 响应式视频网格 */
@media (max-width: 1200px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .zkzjd-video-title {
        font-size: 13px;
        height: 36px;
        -webkit-line-clamp: 2;
        margin-bottom: 4px;
    }
    
    .zkzjd-video-info {
        padding: 8px;
    }
    
    .zkzjd-meta-item {
        margin-right: 8px;
        margin-bottom: 3px;
    }
    
    .zkzjd-pagination {
        flex-direction: column;
    }
    
    .zkzjd-pagination-info {
        margin-bottom: 10px;
    }
    
    .zkzjd-metal-decor {
        display: none;
    }
}

@media (max-width: 480px) {
    .zkzjd-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .zkzjd-video-badge {
        font-size: 10px;
        padding: 2px 6px;
        top: 5px;
        right: 5px;
    }
    
    .zkzjd-video-score {
        font-size: 10px;
        padding: 2px 6px;
        top: 5px;
        left: 5px;
    }
    
    .zkzjd-video-play-icon {
        width: 40px;
        height: 40px;
    }
    
    .zkzjd-video-title {
        font-size: 12px;
        height: 34px;
        margin-bottom: 3px;
    }
    
    .zkzjd-video-info {
        padding: 6px;
    }
    
    .zkzjd-meta-item {
        font-size: 10px;
    }
    
    .zkzjd-meta-type {
        padding: 1px 4px;
        font-size: 10px;
    }
    
    .zkzjd-meta-icon {
        width: 10px;
        height: 10px;
    }
}

/* 装饰元素 */
.zkzjd-metal-line {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #64b5f6, transparent);
}

.zkzjd-metal-decor {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.zkzjd-metal-decor-1 {
    top: 5%;
    right: 2%;
    width: 150px;
    height: 150px;
    background-image: 
        linear-gradient(45deg, rgba(100, 181, 246, 0.05) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(100, 181, 246, 0.05) 25%, transparent 25%);
    background-size: 8px 8px;
    border-radius: 50%;
    opacity: 0.5;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: inset 0 0 15px rgba(100, 181, 246, 0.1);
}

.zkzjd-metal-decor-2 {
    bottom: 10%;
    left: 3%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(100, 181, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(45deg);
    border: 1px solid rgba(100, 181, 246, 0.05);
}

/* 增强视频卡片的质感 */
.zkzjd-video-card:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-video-card:hover:before {
    opacity: 1;
}

/* 修改分页样式增强感 */
.zkzjd-pagination {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zkzjd-pagination:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-pagination:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 4px 4px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.zkzjd-pagination-links {
    position: relative;
    z-index: 1;
}

/* 友情链接 -  */
.zkzjd-friend-links-section {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    padding: 30px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.zkzjd-friend-links-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.zkzjd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.zkzjd-links-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.zkzjd-links-header .zkzjd-section-title {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 0;
}

.zkzjd-links-header .zkzjd-section-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.zkzjd-metal-rivets {
    display: flex;
    align-items: center;
}

.zkzjd-metal-rivets span {
    width: 8px;
    height: 8px;
    background: #85929e;
    border-radius: 50%;
    margin: 0 5px;
    box-shadow: 
        0 0 5px #64b5f6,
        inset 0 0 2px rgba(0, 0, 0, 0.5);
    position: relative;
}

.zkzjd-metal-rivets span:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 3px;
    height: 2px;
    background: rgba(133, 146, 158, 0.8);
    border-radius: 50%;
    transform: rotate(35deg);
}

.zkzjd-links-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.zkzjd-link-item {
    padding: 8px 15px;
    margin: 5px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #b0b0b0;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zkzjd-link-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border-color: rgba(100, 181, 246, 0.2);
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
}

.zkzjd-link-item:hover .zkzjd-link-highlight {
    opacity: 1;
}

/* 底部 -  */
.zkzjd-footer {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    position: relative;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
}

.zkzjd-metal-strip {
    height: 6px;
    background: linear-gradient(90deg, #111111, #252525, #111111);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.zkzjd-metal-strip:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(133, 146, 158, 0.8);
}

.zkzjd-metal-strip:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(133, 146, 158, 0.8);
}

.zkzjd-footer-main {
    padding: 50px 0 30px;
}

.zkzjd-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zkzjd-footer-col {
    position: relative;
}

.zkzjd-footer-logo {
    position: relative;
    margin-bottom: 20px;
    width: 140px;
    height: 50px;
}

.zkzjd-footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.zkzjd-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(100, 181, 246, 0.2) 0%, transparent 70%);
    filter: blur(10px);
    opacity: 0.5;
    pointer-events: none;
}

.zkzjd-footer-desc {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.zkzjd-social-icons {
    display: flex;
    align-items: center;
}

.zkzjd-social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #64b5f6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zkzjd-social-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-social-btn:hover {
    transform: translateY(-3px);
    color: #90caf9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(100, 181, 246, 0.2);
}

.zkzjd-social-btn:hover:before {
    opacity: 1;
}

.zkzjd-footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.zkzjd-footer-title-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #64b5f6, transparent);
    margin-bottom: 20px;
}

.zkzjd-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zkzjd-footer-links li {
    margin-bottom: 10px;
}

.zkzjd-footer-link {
    color: #a0a0a0;
    font-size: 14px;
    display: inline-block;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.zkzjd-footer-link:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #85929e;
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.zkzjd-footer-link:hover {
    color: #ffffff;
    padding-left: 18px;
}

.zkzjd-footer-link:hover:before {
    opacity: 1;
    box-shadow: 0 0 5px #64b5f6;
}

.zkzjd-contact-info {
    margin-top: 10px;
}

.zkzjd-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.zkzjd-contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-right: 12px;
    color: #64b5f6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.zkzjd-contact-text {
    flex: 1;
}

.zkzjd-contact-text p {
    color: #a0a0a0;
    font-size: 14px;
    margin: 8px 0 0;
}

.zkzjd-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: relative;
}

.zkzjd-footer-bottom:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(133, 146, 158, 0.8);
}

.zkzjd-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.zkzjd-copyright p {
    color: #777777;
    font-size: 13px;
    margin: 0 15px;
}

.zkzjd-copyright p a {
    color: #64b5f6;
    transition: color 0.3s ease;
}

.zkzjd-copyright p a:hover {
    color: #90caf9;
}

.zkzjd-copyright-rivets {
    display: flex;
    align-items: center;
}

.zkzjd-copyright-rivets span {
    width: 6px;
    height: 6px;
    background: #85929e;
    border-radius: 50%;
    margin: 0 4px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
    position: relative;
}

.zkzjd-copyright-rivets span:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 2px;
    height: 1px;
    background: rgba(133, 146, 158, 0.8);
    border-radius: 50%;
    transform: rotate(35deg);
}

.zkzjd-metal-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.3), transparent);
    opacity: 0.7;
    box-shadow: 0 0 10px rgba(100, 181, 246, 0.3);
}

/* 响应式布局 */
@media (max-width: 992px) {
    .zkzjd-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .zkzjd-footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .zkzjd-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .zkzjd-footer-about {
        grid-column: span 1;
    }
    
    .zkzjd-links-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .zkzjd-metal-rivets {
        display: none;
    }
    
    .zkzjd-footer-main {
        padding: 30px 0 20px;
    }
    
    .zkzjd-copyright {
        flex-direction: column;
    }
    
    .zkzjd-copyright-rivets {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .zkzjd-links-grid {
        justify-content: center;
    }
    
    .zkzjd-social-icons {
        justify-content: center;
    }
}

/* 视频详情页 -  */
.zkzjd-detail-container {
    position: relative;
    padding-bottom: 50px;
}

/* 面包屑导航 */
.zkzjd-breadcrumb {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    margin-bottom: 30px;
    position: relative;
}

.zkzjd-breadcrumb:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-breadcrumb-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.zkzjd-breadcrumb-item {
    display: flex;
    align-items: center;
    color: #b0b0b0;
    font-size: 13px;
    transition: all 0.3s ease;
}

.zkzjd-breadcrumb-item svg {
    margin-right: 5px;
    color: #64b5f6;
}

.zkzjd-breadcrumb-item:hover {
    color: #ffffff;
}

.zkzjd-breadcrumb-divider {
    margin: 0 8px;
    color: #555555;
}

.zkzjd-breadcrumb-item.zkzjd-active {
    color: #64b5f6;
    pointer-events: none;
}

/* 视频信息区域 */
.zkzjd-video-info-section {
    margin-bottom: 40px;
    position: relative;
}

.zkzjd-video-info-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    position: relative;
}

/* 视频海报 */
.zkzjd-video-poster {
    position: relative;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.zkzjd-video-poster-inner {
    position: relative;
    width: 100%;
    padding-top: 140%;
    background: #85929e;
    overflow: hidden;
}

.zkzjd-poster-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.5s ease;
    opacity: 0; /* 初始隐藏，加载完成后显示 */
}

.zkzjd-poster-img.zkzjd-loaded {
    opacity: 1; /* 加载完成后显示 */
}

.zkzjd-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.zkzjd-video-poster:hover .zkzjd-poster-overlay {
    opacity: 1;
}

.zkzjd-video-poster:hover .zkzjd-poster-img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.zkzjd-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(133, 146, 158, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.5);
}

.zkzjd-video-poster:hover .zkzjd-play-btn {
    transform: scale(1);
    opacity: 1;
}

.zkzjd-play-btn:hover {
    background: rgba(133, 146, 158, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(33, 150, 243, 0.8);
}

/* 评分和状态标签 */
.zkzjd-rating {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    background: rgba(133, 146, 158, 0.8);
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zkzjd-rating-star {
    color: #f9a825;
    margin-right: 5px;
}

.zkzjd-rating-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.zkzjd-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(133, 146, 158, 0.8);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 视频详细信息 */
.zkzjd-video-details {
    position: relative;
}

.zkzjd-video-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 12px;
}

.zkzjd-video-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #64b5f6, transparent);
}

/* 信息表格 */
.zkzjd-info-table {
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(230, 230, 240, 0.8) 0%, rgba(133, 146, 158, 0.8) 100%);
    border-radius: 6px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.zkzjd-info-table:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-info-table:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 4px 4px;
    opacity: 0.5;
    border-radius: 6px;
    pointer-events: none;
}

.zkzjd-info-row {
    display: flex;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.zkzjd-info-row:last-child {
    margin-bottom: 0;
}

.zkzjd-info-label {
    display: flex;
    align-items: center;
    width: 70px;
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 500;
}

.zkzjd-info-label svg {
    margin-right: 5px;
    color: #64b5f6;
}

.zkzjd-info-value {
    flex: 1;
    color: #ffffff;
    font-size: 14px;
}

.zkzjd-info-multi {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 操作按钮 */
.zkzjd-action-btns {
    display: flex;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.zkzjd-primary-btn, .zkzjd-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zkzjd-primary-btn {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.zkzjd-primary-btn:before, .zkzjd-secondary-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-primary-btn:hover {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
}

.zkzjd-secondary-btn {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #b0b0b0;
    min-width: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zkzjd-secondary-btn:hover, .zkzjd-btn-active {
    color: #64b5f6;
    border-color: rgba(100, 181, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.zkzjd-primary-btn:hover:before, .zkzjd-secondary-btn:hover:before {
    opacity: 1;
}

.zkzjd-primary-btn svg, .zkzjd-secondary-btn svg {
    margin-right: 5px;
}

/* 视频简介 */
.zkzjd-video-desc {
    background: linear-gradient(135deg, rgba(230, 230, 240, 0.8) 0%, rgba(133, 146, 158, 0.8) 100%);
    border-radius: 6px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.zkzjd-video-desc:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-desc-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.zkzjd-desc-header svg {
    margin-right: 5px;
    color: #64b5f6;
}

.zkzjd-desc-content {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    max-height: 80px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zkzjd-desc-content.zkzjd-expanded {
    max-height: 1000px;
}

.zkzjd-desc-content p {
    margin: 0 0 10px;
}

.zkzjd-desc-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color: #64b5f6;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zkzjd-desc-expand svg {
    margin-right: 5px;
    transition: all 0.3s ease;
}

.zkzjd-desc-expand:hover {
    color: #90caf9;
}

/* 播放列表部分 */
.zkzjd-playlist-section {
    margin-bottom: 40px;
}

.zkzjd-playlist-wrapper {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.zkzjd-playlist-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.zkzjd-section-header svg {
    margin-right: 10px;
    color: #64b5f6;
}

.zkzjd-section-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 播放源标签 */
.zkzjd-player-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 10px;
}

.zkzjd-player-tab {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.zkzjd-tab-inner {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.zkzjd-player-tab:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-player-tab:hover:before, .zkzjd-player-tab.zkzjd-active:before {
    opacity: 1;
}

.zkzjd-tab-icon {
    margin-right: 5px;
    color: #64b5f6;
}

.zkzjd-tab-text {
    font-size: 14px;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.zkzjd-player-tab:hover .zkzjd-tab-text {
    color: #ffffff;
}

.zkzjd-player-tab.zkzjd-active .zkzjd-tab-inner {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-color: rgba(100, 181, 246, 0.3);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.zkzjd-player-tab.zkzjd-active .zkzjd-tab-text {
    color: #ffffff;
}

.zkzjd-player-tab.zkzjd-active .zkzjd-tab-icon {
    color: #ffffff;
}

/* 剧集列表 */
.zkzjd-episodes-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

.zkzjd-episode {
    position: relative;
    overflow: hidden;
}

.zkzjd-episode-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 36px;
    padding: 0 12px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zkzjd-episode:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.zkzjd-episode:hover:before {
    opacity: 1;
}

.zkzjd-episode-name {
    font-size: 14px;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.zkzjd-episode:hover .zkzjd-episode-inner {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.zkzjd-episode:hover .zkzjd-episode-name {
    color: #ffffff;
}

.zkzjd-episode:active .zkzjd-episode-inner {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* 相关推荐区域 */
.zkzjd-related-section {
    margin-bottom: 30px;
}

/* Toast 通知 */
.zkzjd-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(133, 146, 158, 0.8);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zkzjd-toast-show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .zkzjd-video-info-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zkzjd-video-poster {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .zkzjd-breadcrumb {
        margin-bottom: 20px;
    }
    
    .zkzjd-video-title {
        font-size: 22px;
    }
    
    .zkzjd-action-btns {
        justify-content: center;
    }
    
    .zkzjd-playlist-wrapper {
        padding: 15px;
    }
    
    .zkzjd-player-tabs {
        justify-content: center;
    }
    
    .zkzjd-episodes-wrapper {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .zkzjd-breadcrumb-item, .zkzjd-breadcrumb-divider {
        font-size: 12px;
    }
    
    .zkzjd-info-table {
        padding: 10px;
    }
    
    .zkzjd-primary-btn, .zkzjd-secondary-btn {
        height: 36px;
        font-size: 13px;
        padding: 0 15px;
        min-width: auto;
    }
}

/* 视频播放页 -  */
.zkzjd-play-container {
    position: relative;
    padding-bottom: 40px;
}

/* 播放器区域 */
.zkzjd-player-section {
    margin-bottom: 30px;
    position: relative;
}

.zkzjd-player-wrapper {
    position: relative;
    border-radius: 8px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* 播放器边框顶部 */
.zkzjd-metal-border-top {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(90deg, #111111, #252525, #111111);
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
    position: relative;
}

.zkzjd-metal-border-top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-metal-rivet {
    width: 8px;
    height: 8px;
    background: #85929e;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.7), 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
}

.zkzjd-metal-rivet:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 3px;
    height: 2px;
    background: rgba(133, 146, 158, 0.8);
    border-radius: 50%;
    transform: rotate(45deg);
}

.zkzjd-status-panel {
    margin-left: 15px;
    display: flex;
    align-items: center;
    flex: 1;
}

.zkzjd-status-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #85929e;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.7);
    margin-right: 10px;
    animation: zkzjd-led-blink 2s infinite alternate;
}

@keyframes zkzjd-led-blink {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.zkzjd-status-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 播放器 */
.zkzjd-player-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 比例 */
    overflow: hidden;
    background: #85929e;
}

.zkzjd-player-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* 确保播放器内的所有类型元素都能正确显示 */
.zkzjd-player-box iframe,
.zkzjd-player-box embed,
.zkzjd-player-box object,
.zkzjd-player-box video,
.zkzjd-player-box .MacPlayer,
.zkzjd-player-box #playleft,
.zkzjd-player-box #video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background-color: #85929e !important;
    z-index: 1 !important;
}

/* 播放器边框底部 */
.zkzjd-metal-border-bottom {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(90deg, #111111, #252525, #111111);
    border-top: 2px solid rgba(0, 0, 0, 0.3);
    position: relative;
}

.zkzjd-metal-border-bottom:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-control-panel {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.zkzjd-control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    margin-left: 8px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #b0b0b0;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zkzjd-control-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-control-btn:hover {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.zkzjd-control-btn:hover:before {
    opacity: 1;
}

.zkzjd-control-btn.zkzjd-active {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
    border-color: rgba(100, 181, 246, 0.3);
}

.zkzjd-control-btn svg {
    margin-right: 5px;
}

/* 视频信息和剧集选择区域 */
.zkzjd-video-details-section {
    margin-bottom: 40px;
}

.zkzjd-details-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    position: relative;
}

/* 视频信息区 */
.zkzjd-video-info {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.zkzjd-video-info:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-video-header {
    margin-bottom: 15px;
}

.zkzjd-video-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.zkzjd-video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zkzjd-meta-item {
    display: flex;
    align-items: center;
    color: #b0b0b0;
    font-size: 13px;
}

.zkzjd-meta-item svg {
    margin-right: 5px;
    color: #64b5f6;
}

.zkzjd-video-description {
    position: relative;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.zkzjd-desc-content {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.zkzjd-desc-content.zkzjd-expanded {
    max-height: 1000px;
}

.zkzjd-desc-toggle {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #85929e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64b5f6;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.zkzjd-desc-toggle svg {
    transition: transform 0.3s ease;
}

.zkzjd-desc-toggle.zkzjd-expanded svg {
    transform: rotate(180deg);
}

/* 剧集区 */
.zkzjd-video-episodes {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.zkzjd-video-episodes:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-episodes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 10px;
}

.zkzjd-current-play {
    display: flex;
    align-items: center;
}

.zkzjd-episode-label {
    color: #b0b0b0;
    font-size: 14px;
    margin-right: 5px;
}

.zkzjd-current-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.zkzjd-player-selector {
    display: flex;
    align-items: center;
}

.zkzjd-source-label {
    color: #b0b0b0;
    font-size: 14px;
    margin-right: 5px;
}

.zkzjd-source-dropdown {
    position: relative;
    min-width: 120px;
}

.zkzjd-selected-source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zkzjd-selected-source:hover {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.zkzjd-source-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #85929e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zkzjd-source-dropdown.zkzjd-expanded .zkzjd-source-options {
    display: block;
}

.zkzjd-source-option {
    display: block;
    padding: 8px 12px;
    color: #b0b0b0;
    font-size: 13px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
}

.zkzjd-source-option:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.zkzjd-source-option:hover {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
}

.zkzjd-source-option.zkzjd-active {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
}

.zkzjd-episodes-filter {
    display: flex;
    margin-bottom: 15px;
    gap: 8px;
}

.zkzjd-filter-btn {
    padding: 5px 10px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    color: #b0b0b0;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zkzjd-filter-btn:hover {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
}

.zkzjd-filter-btn.zkzjd-active {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
    border-color: rgba(100, 181, 246, 0.3);
}

.zkzjd-episodes-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
    position: relative;
}

.zkzjd-episodes-list::-webkit-scrollbar {
    width: 6px;
}

.zkzjd-episodes-list::-webkit-scrollbar-track {
    background: rgba(133, 146, 158, 0.8);
    border-radius: 3px;
}

.zkzjd-episodes-list::-webkit-scrollbar-thumb {
    background: rgba(133, 146, 158, 0.8);
    border-radius: 3px;
}

.zkzjd-episodes-list::-webkit-scrollbar-thumb:hover {
    background: rgba(133, 146, 158, 0.8);
}

.zkzjd-episode-item {
    position: relative;
    transition: all 0.3s ease;
}

.zkzjd-episode-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #b0b0b0;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zkzjd-episode-item:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.zkzjd-episode-item:hover:before {
    opacity: 1;
}

.zkzjd-episode-rivet {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(133, 146, 158, 0.8);
    transform: translateY(-50%);
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
}

.zkzjd-episode-item:hover .zkzjd-episode-box {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.zkzjd-episode-item.zkzjd-active .zkzjd-episode-box {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #ffffff;
    border-color: rgba(100, 181, 246, 0.3);
}

.zkzjd-episode-item.zkzjd-active .zkzjd-episode-rivet {
    background: #85929e;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.7);
}

.zkzjd-episode-shine .zkzjd-episode-box {
    background-image: linear-gradient(135deg, 
        rgba(30, 30, 30, 0.9) 0%, 
        rgba(45, 45, 45, 0.9) 45%, 
        rgba(100, 181, 246, 0.2) 50%, 
        rgba(45, 45, 45, 0.9) 55%, 
        rgba(30, 30, 30, 0.9) 100%);
    background-size: 200% 200%;
    animation: zkzjd-episode-shine-anim 0.6s ease forwards;
}

@keyframes zkzjd-episode-shine-anim {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* 响应式布局 */
@media (max-width: 992px) {
    .zkzjd-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zkzjd-current-title {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .zkzjd-episodes-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .zkzjd-player-selector {
        width: 100%;
        justify-content: space-between;
    }
    
    .zkzjd-player-wrapper {
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .zkzjd-metal-border-top,
    .zkzjd-metal-border-bottom {
        padding: 8px 10px;
    }
    
    .zkzjd-control-panel {
        width: 100%;
        justify-content: space-around;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .zkzjd-control-btn {
        margin-left: 0;
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .zkzjd-episodes-list {
        grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
    }
}

@media (max-width: 480px) {
    .zkzjd-episodes-filter {
        justify-content: space-between;
        width: 100%;
    }
    
    .zkzjd-episodes-list {
        grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
        gap: 5px;
    }
    
    .zkzjd-episode-box {
        height: 32px;
    }
}

/* 首页样式 */
.zkzjd-industrial-container {
    position: relative;
    padding-bottom: 60px;
    background-color: #85929e;
    overflow: hidden;
}

/* 首页轮播图部分 */
.zkzjd-hero-slider-section {
    padding: 30px 0;
    position: relative;
}

.zkzjd-metal-frame {
    position: relative;
    border-radius: 8px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.zkzjd-frame-rivets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.zkzjd-rivet {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #85929e;
    border-radius: 50%;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.2);
}

.zkzjd-frame-rivets .zkzjd-rivet:nth-child(1) {
    top: 10px;
    left: 10px;
}

.zkzjd-frame-rivets .zkzjd-rivet:nth-child(2) {
    top: 10px;
    right: 10px;
}

.zkzjd-frame-rivets .zkzjd-rivet:nth-child(3) {
    bottom: 10px;
    left: 10px;
}

.zkzjd-frame-rivets .zkzjd-rivet:nth-child(4) {
    bottom: 10px;
    right: 10px;
}

.zkzjd-slider-container {
    position: relative;
    overflow: hidden;
}

.zkzjd-hero-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.zkzjd-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.zkzjd-slide.zkzjd-active {
    opacity: 1;
    z-index: 2;
}

.zkzjd-slide-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.zkzjd-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.zkzjd-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 230, 240, 0.8) 0%, rgba(133, 146, 158, 0.8) 100%);
}

.zkzjd-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    color: #ffffff;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.zkzjd-slide.zkzjd-active .zkzjd-slide-content {
    transform: translateY(0);
}

.zkzjd-slide-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.zkzjd-slide-title:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #85929e;
    box-shadow: 0 0 10px rgba(100, 181, 246, 0.8);
}

.zkzjd-slide-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 60%;
    color: #e0e0e0;
}

.zkzjd-industrial-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 4px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.zkzjd-industrial-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.zkzjd-industrial-btn:hover:before {
    transform: translateX(100%);
}

.zkzjd-industrial-btn:hover {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

.zkzjd-industrial-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.zkzjd-industrial-btn:hover svg {
    transform: translateX(3px);
}

.zkzjd-slider-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 5;
}

.zkzjd-slider-dots {
    display: flex;
    margin-right: 20px;
}

.zkzjd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(133, 146, 158, 0.8);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zkzjd-dot.zkzjd-active {
    background: #85929e;
    box-shadow: 0 0 8px rgba(100, 181, 246, 0.6);
}

.zkzjd-slider-arrows {
    display: flex;
}

.zkzjd-arrow {
    background: rgba(133, 146, 158, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.zkzjd-arrow:hover {
    background: rgba(133, 146, 158, 0.8);
    border-color: rgba(100, 181, 246, 0.3);
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.4);
}

/* 分类导航部分 */
.zkzjd-category-navigator {
    padding: 20px 0 30px;
    position: relative;
}

.zkzjd-industrial-panel {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.zkzjd-industrial-panel:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-panel-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.zkzjd-indicator-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #85929e;
    margin-right: 10px;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.zkzjd-indicator-light:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 2px;
    background: rgba(133, 146, 158, 0.8);
    border-radius: 50%;
    transform: rotate(45deg);
}

.zkzjd-indicator-red {
    background: #85929e;
    box-shadow: 0 0 5px rgba(244, 67, 54, 0.5);
}

.zkzjd-indicator-blink {
    animation: zkzjd-blink 0.5s ease;
}

@keyframes zkzjd-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.zkzjd-panel-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.zkzjd-header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    margin: 0 15px;
}

.zkzjd-more-link {
    display: flex;
    align-items: center;
    color: #64b5f6;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zkzjd-more-link svg {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.zkzjd-more-link:hover {
    color: #90caf9;
}

.zkzjd-more-link:hover svg {
    transform: translateX(3px);
}

.zkzjd-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.zkzjd-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 6px;
    padding: 15px;
    text-decoration: none;
    color: #e0e0e0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zkzjd-category-item:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-category-item:hover:before {
    opacity: 1;
}

.zkzjd-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(133, 146, 158, 0.8);
    margin-bottom: 10px;
    color: #64b5f6;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.zkzjd-category-hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(100, 181, 246, 0.3);
}

.zkzjd-category-hover .zkzjd-category-icon {
    background: rgba(133, 146, 158, 0.8);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.2);
    color: #90caf9;
}

.zkzjd-category-name {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.zkzjd-category-hover .zkzjd-category-name {
    color: #ffffff;
}

.zkzjd-category-rivets {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.zkzjd-category-rivets .zkzjd-rivet {
    position: relative;
    width: 5px;
    height: 5px;
    background: #85929e;
    border-radius: 50%;
    margin: 0 5px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zkzjd-rivet-shine {
    background: #85929e !important;
    box-shadow: 0 0 5px rgba(100, 181, 246, 0.8) !important;
}

/* 视频网格 */
.zkzjd-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* 工业装饰分隔 */
.zkzjd-metal-divider {
    padding: 10px 0;
    margin: 30px 0;
    position: relative;
}

.zkzjd-divider-line {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, transparent, #333333, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zkzjd-divider-rivet {
    width: 10px;
    height: 10px;
    background: #85929e;
    border-radius: 50%;
    margin: 0 30px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.2);
    position: relative;
}

.zkzjd-divider-rivet:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 2px;
    background: rgba(133, 146, 158, 0.8);
    border-radius: 50%;
    transform: rotate(45deg);
}

/* 工业装饰背景元素 */
.zkzjd-industrial-decor {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.zkzjd-decor-1 {
    top: 20%;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(33, 150, 243, 0.03) 0%, transparent 70%);
    opacity: 0.5;
    border-radius: 50%;
    border: 1px solid rgba(33, 150, 243, 0.1);
    box-shadow: inset 0 0 100px rgba(33, 150, 243, 0.05);
}

.zkzjd-decor-2 {
    bottom: 10%;
    left: -100px;
    width: 300px;
    height: 300px;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
    background-size: 8px 8px;
    transform: rotate(45deg);
    opacity: 0.3;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* 首页视频模块共通样式 */
.zkzjd-latest-videos-section,
.zkzjd-popular-videos-section,
.zkzjd-type-videos-section {
    padding: 20px 0;
    position: relative;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .zkzjd-hero-slider {
        height: 400px;
    }
    
    .zkzjd-slide-content {
        padding: 30px;
    }
    
    .zkzjd-slide-title {
        font-size: 24px;
    }
    
    .zkzjd-slide-desc {
        font-size: 14px;
        max-width: 80%;
    }
    
    .zkzjd-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
    
    .zkzjd-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .zkzjd-hero-slider {
        height: 350px;
    }
    
    .zkzjd-slide-content {
        padding: 20px;
    }
    
    .zkzjd-slide-title {
        font-size: 20px;
    }
    
    .zkzjd-slide-desc {
        font-size: 13px;
        max-width: 100%;
    }
    
    .zkzjd-industrial-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .zkzjd-panel-header {
        flex-wrap: wrap;
    }
    
    .zkzjd-header-line {
        display: none;
    }
    
    .zkzjd-more-link {
        margin-left: auto;
        margin-top: 10px;
    }
    
    .zkzjd-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .zkzjd-category-item {
        height: 100px;
    }
    
    .zkzjd-category-icon {
        width: 40px;
        height: 40px;
    }
    
    .zkzjd-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .zkzjd-hero-slider {
        height: 300px;
    }
    
    .zkzjd-slide-title {
        font-size: 18px;
    }
    
    .zkzjd-slide-desc {
        display: none;
    }
    
    .zkzjd-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .zkzjd-category-name {
        font-size: 12px;
    }
    
    .zkzjd-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .zkzjd-divider-rivet {
        margin: 0 20px;
    }
}

/* 面板动画效果 */
.zkzjd-panel-animated {
    animation: zkzjd-panel-appear 0.8s ease forwards;
}

@keyframes zkzjd-panel-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 工业风格搜索页样式 */
.zkzjd-industrial-search-container {
    position: relative;
    padding: 30px 0 60px;
    background-color: #85929e;
    min-height: 100vh;
    overflow: hidden;
}

/* 搜索工具面板 */
.zkzjd-search-panel {
    background: linear-gradient(145deg, #1a1a1a, #262626);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.zkzjd-panel-rivets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.zkzjd-panel-rivets .zkzjd-rivet {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #85929e;
    border-radius: 50%;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.2);
}

.zkzjd-panel-rivets .zkzjd-rivet:nth-child(1) {
    top: 10px;
    left: 10px;
}

.zkzjd-panel-rivets .zkzjd-rivet:nth-child(2) {
    top: 10px;
    right: 10px;
}

.zkzjd-panel-rivets .zkzjd-rivet:nth-child(3) {
    bottom: 10px;
    left: 10px;
}

.zkzjd-panel-rivets .zkzjd-rivet:nth-child(4) {
    bottom: 10px;
    right: 10px;
}

.zkzjd-search-form-section {
    position: relative;
    z-index: 2;
}

.zkzjd-search-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.zkzjd-status-indicator {
    margin-right: 15px;
}

.zkzjd-indicator-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #85929e;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
    position: relative;
    transition: all 0.3s ease;
}

.zkzjd-indicator-light:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 3px;
    background: rgba(133, 146, 158, 0.8);
    border-radius: 50%;
    transform: rotate(45deg);
}

.zkzjd-indicator-blue {
    background: #85929e;
    box-shadow: 0 0 8px rgba(33, 150, 243, 0.6);
}

.zkzjd-indicator-yellow {
    background: #85929e;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
}

.zkzjd-indicator-green {
    background: #85929e;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.zkzjd-indicator-red {
    background: #85929e;
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.6);
}

.zkzjd-industrial-search-form {
    margin-bottom: 20px;
}

.zkzjd-search-input-container {
    display: flex;
    position: relative;
    background: linear-gradient(to right, #1c1c1c, #2d2d2d);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.zkzjd-search-input-container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-search-input-container input {
    flex: 1;
    height: 50px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 0 20px;
}

.zkzjd-search-input-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.zkzjd-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #fff;
    font-weight: 500;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zkzjd-search-submit:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(133, 146, 158, 0.8);
}

.zkzjd-search-submit svg {
    margin-right: 8px;
}

.zkzjd-search-submit:hover {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
}

.zkzjd-search-submit:active {
    transform: translateY(1px);
}

/* 热门搜索标签 */
.zkzjd-hot-search {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.zkzjd-hot-label {
    display: flex;
    align-items: center;
    color: #b0b0b0;
    font-size: 14px;
}

.zkzjd-hot-label svg {
    margin-right: 5px;
    color: #e57373;
}

.zkzjd-hot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zkzjd-hot-tag {
    display: inline-flex;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(230, 230, 240, 0.8) 0%, rgba(133, 146, 158, 0.8) 100%);
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.zkzjd-hot-tag:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-hot-tag:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(230, 230, 240, 0.8) 0%, rgba(133, 146, 158, 0.8) 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.zkzjd-hot-tag:hover:before {
    opacity: 1;
}

/* 搜索结果信息面板 */
.zkzjd-results-info-panel {
    background: linear-gradient(145deg, #1d1d1d, #292929);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.zkzjd-results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 10px;
}

.zkzjd-results-indicators {
    display: flex;
    align-items: center;
}

.zkzjd-results-title {
    margin: 0;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.zkzjd-search-terms {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.zkzjd-term-label {
    color: #b0b0b0;
    font-size: 14px;
}

.zkzjd-term-value {
    color: #e0e0e0;
    font-size: 14px;
}

.zkzjd-highlight {
    color: #64b5f6;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(100, 181, 246, 0.3);
}

.zkzjd-result-count, .zkzjd-results-page {
    color: #b0b0b0;
    font-size: 14px;
}

/* 高级筛选面板 */
.zkzjd-advanced-filter-panel {
    background: linear-gradient(145deg, #1d1d1d, #292929);
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.zkzjd-panel-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.zkzjd-panel-title {
    margin: 0;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.zkzjd-toggle-filters {
    margin-left: auto;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(133, 146, 158, 0.8);
    transition: all 0.3s ease;
}

.zkzjd-toggle-filters:hover {
    background: rgba(133, 146, 158, 0.8);
}

.zkzjd-toggle-filters svg {
    transition: transform 0.3s ease;
}

.zkzjd-toggle-filters.zkzjd-active svg {
    transform: rotate(180deg);
}

.zkzjd-filters-container {
    padding: 20px;
}

.zkzjd-filter-row {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 10px;
}

.zkzjd-filter-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.zkzjd-filter-label {
    display: flex;
    align-items: center;
    width: 80px;
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 500;
}

.zkzjd-filter-label svg {
    margin-right: 5px;
    color: #64b5f6;
}

.zkzjd-filter-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zkzjd-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 4px;
    color: #b0b0b0;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.zkzjd-filter-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zkzjd-filter-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.zkzjd-filter-btn:hover:before {
    opacity: 1;
}

.zkzjd-filter-btn.zkzjd-active {
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    color: #fff;
    border-color: rgba(100, 181, 246, 0.3);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

/* 搜索结果面板 */
.zkzjd-results-panel {
    background: linear-gradient(145deg, #1d1d1d, #292929);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* 工业风格分页 */
.zkzjd-industrial-pagination {
    margin-top: 30px;
    position: relative;
    background: linear-gradient(135deg, #cfd8df 0%, #48525c 100%);
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.zkzjd-industrial-pagination:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.zkzjd-pagination-inner {
    position: relative;
    z-index: 1;
}

.zkzjd-pagination-rivets {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 2;
}

.zkzjd-pagination-rivets .zkzjd-rivet {
    width: 5px;
    height: 5px;
    background: #85929e;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.2);
}

/* 工业装饰背景元素 */
.zkzjd-decor-search-1 {
    top: 15%;
    right: -150px;
    width: 300px;
    height: 300px;
    background-image: 
        linear-gradient(45deg, rgba(100, 181, 246, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(100, 181, 246, 0.03) 25%, transparent 25%);
    background-size: 8px 8px;
    border-radius: 50%;
    opacity: 0.3;
    border: 1px solid rgba(100, 181, 246, 0.05);
    transform: rotate(-15deg);
}

.zkzjd-decor-search-2 {
    bottom: 10%;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at center, rgba(100, 181, 246, 0.05) 0%, transparent 70%);
    border-radius: 30%;
    transform: rotate(30deg);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* 搜索页媒体查询 */
@media (max-width: 992px) {
    .zkzjd-search-panel,
    .zkzjd-results-info-panel,
    .zkzjd-advanced-filter-panel,
    .zkzjd-results-panel {
        padding: 15px;
    }
    
    .zkzjd-results-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .zkzjd-filter-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .zkzjd-search-input-container {
        flex-direction: column;
    }
    
    .zkzjd-search-submit {
        width: 100%;
        height: 40px;
    }
    
    .zkzjd-hot-search {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .zkzjd-search-panel,
    .zkzjd-results-info-panel,
    .zkzjd-advanced-filter-panel,
    .zkzjd-results-panel {
        padding: 10px;
    }
    
    .zkzjd-filter-options {
        gap: 5px;
    }
    
    .zkzjd-filter-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
}
