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

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #333;
    background: #d0ffd0;;
    line-height: 1.5;
}

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

ul {
    list-style: none;
}

/* 通用容器 */
.edie-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 冲击感顶部设计 */
.edie-header {
    background: linear-gradient(135deg, #b2ffb2 0%, #98ff98 100%);
    position: relative;
    padding: 20px 0;
    box-shadow: 0 5px 25px rgba(rgba(193, 255, 193, 0.25));
    z-index: 100;
}

.edie-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b2ffb2, #b2ffb2, #b2ffb2, #aaffaa);
    z-index: 1;
}

.edie-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo样式 */
.edie-logo {
    flex: 0 0 auto;
    margin-right: 20px;
    z-index: 2;
}

.edie-logo-link {
    display: block;
    padding: 5px 0;
    transition: transform 0.3s ease;
}

.edie-logo-link:hover {
    transform: translateY(-2px);
}

.edie-logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(rgba(170, 255, 170, 0.5));
    position: relative;
    display: inline-block;
    white-space: nowrap; /* 防止文本换行 */
}

.edie-logo-text:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d0ffd0;;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.edie-logo-link:hover .edie-logo-text:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* 搜索框样式 */
.edie-search {
    flex: 0 0 auto;
    width: 50%;
    max-width: 500px;
}

.edie-search-form {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 3px 15px rgba(rgba(152, 255, 152, 0.2));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edie-search-form:hover,
.edie-search-form:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(rgba(208, 255, 208, 0.3));
}

.edie-search-input {
    flex: 1;
    background: rgba(rgba(152, 255, 152, 0.95));
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
    color: #333;
    width: 100%;
}

.edie-search-btn {
    background: linear-gradient(to right, #aaffaa, #d0ffd0);
    border: none;
    color: white;
    cursor: pointer;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.edie-search-btn:hover {
    background: linear-gradient(to right, #aaffaa, #b2ffb2);
}

.edie-search-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
}

.edie-search-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.edie-search-icon:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 8px;
    background: #c1ffc1;;
    transform: rotate(-45deg);
    transform-origin: 50% 0;
}

/* 导航样式 */
.edie-nav {
    background: rgba(rgba(170, 255, 170, 0.9));
    position: relative;
    box-shadow: 0 5px 15px rgba(rgba(208, 255, 208, 0.15));
}

.edie-nav-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.edie-nav-item {
    position: relative;
}

.edie-nav-link {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.edie-nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to right, #aaffaa, #b2ffb2);
    transition: height 0.3s ease;
    z-index: -1;
}

.edie-nav-link:hover:before,
.edie-nav-active:before {
    height: 100%;
}

.edie-nav-home .edie-nav-link {
    background: linear-gradient(to right, #98ff98, #aaffaa);
}

/* 热搜词汇样式 */
.edie-hot-search {
    background: #b2ffb2;;
    padding: 10px 0;
    box-shadow: inset 0 5px 10px rgba(rgba(170, 255, 170, 0.05));
}

.edie-hot-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.edie-hot-item {
    margin-right: 15px;
    margin-bottom: 5px;
}

.edie-hot-link {
    display: inline-block;
    padding: 5px 12px;
    background: #c1ffc1;;
    color: #666;
    border-radius: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(rgba(170, 255, 170, 0.1));
}

.edie-hot-link:hover {
    background: linear-gradient(to right, #98ff98, #c1ffc1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(rgba(170, 255, 170, 0.15));
}

/* 响应式调整 */
@media (max-width: 768px) {
    .edie-header-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .edie-logo {
        margin-bottom: 15px;
        margin-right: 0;
        text-align: center;
    }
    
    .edie-logo-text {
        font-size: 24px; /* 移动端稍微缩小字体 */
    }
    
    .edie-search {
        width: 100%;
    }
    
    .edie-nav-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
        justify-content: center; /* 居中导航 */
    }
    
    .edie-nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* 更小屏幕的适配 */
@media (max-width: 480px) {
    .edie-logo-text {
        font-size: 22px; /* 更小屏幕上进一步缩小字体 */
    }
}

/* 视频列表页面样式 - 基础容器 */
.edie-container-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #b2ffb2;;
}

/* 分类标题和筛选区域 */
.edie-section-heading {
    background: linear-gradient(135deg, #98ff98 0%, #aaffaa 100%);
    color: #fff;
    padding: 20px 0;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(rgba(170, 255, 170, 0.15));
}

.edie-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #98ff98, #d0ffd0, #c1ffc1, #98ff98);
}

.edie-heading-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.edie-category-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
    text-shadow: 2px 2px 4px rgba(rgba(193, 255, 193, 0.3));
}

.edie-category-icon {
    display: inline-block;
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, #aaffaa, #d0ffd0);
    margin-right: 15px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(rgba(208, 255, 208, 0.5));
}

.edie-filter-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.edie-filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(rgba(208, 255, 208, 0.1));
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(rgba(208, 255, 208, 0.1));
}

.edie-filter-btn:hover,
.edie-filter-btn.edie-active {
    background: linear-gradient(to right, #98ff98, #98ff98);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(rgba(193, 255, 193, 0.3));
    border-color: transparent;
}

/* 视频部分 */
.edie-video-section,
.edie-featured-section,
.edie-latest-section {
    padding: 30px 0;
    position: relative;
}

.edie-featured-section {
    background: linear-gradient(to bottom, #b2ffb2 0%, #aaffaa 100%);
    box-shadow: 0 5px 15px rgba(rgba(193, 255, 193, 0.05));
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 20px;
}

.edie-featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c1ffc1, #aaffaa);
    z-index: 1;
}

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

.edie-section-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #333;
    display: flex;
    align-items: center;
}

.edie-title-icon {
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #b2ffb2, #c1ffc1);
    margin-right: 12px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(rgba(170, 255, 170, 0.4));
}

.edie-more-link {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.edie-more-link:hover {
    color: #c1ffc1;
    transform: translateX(5px);
}

.edie-arrow-icon {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.edie-more-link:hover .edie-arrow-icon {
    transform: translateX(3px);
}

.edie-arrow-icon::after {
    content: '→';
    font-size: 16px;
}

/* 视频网格 */
.edie-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 25px;
    margin-bottom: 30px;
}

/* 视频卡片 */
.edie-video-card {
    background: #b2ffb2;;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(rgba(193, 255, 193, 0.08));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.edie-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(rgba(170, 255, 170, 0.15));
}

.edie-video-info {
    padding: 15px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.edie-video-thumb {
    position: relative;
    padding-bottom: 140%; /* 修改为更适合竖向图片的宽高比 */
    height: 0;
    overflow: hidden;
}

.edie-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #98ff98;;
    overflow: hidden; /* 确保内容不溢出 */
}

.edie-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.edie-video-card:hover .edie-thumb-img img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.edie-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(rgba(208, 255, 208, 0.2));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edie-video-card:hover .edie-video-overlay {
    opacity: 1;
}

.edie-play-icon {
    width: 60px;
    height: 60px;
    background: rgba(rgba(178, 255, 178, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(rgba(193, 255, 193, 0.2));
}

.edie-video-card:hover .edie-play-icon {
    transform: scale(1);
    opacity: 1;
}

.edie-play-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.edie-video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 8px;
    background: rgba(rgba(178, 255, 178, 0.7));
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.edie-video-card:hover .edie-video-duration {
    background: #b2ffb2;;
}

.edie-video-meta {
    position: relative;
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.edie-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    background: rgba(rgba(193, 255, 193, 0.6));
    border-radius: 4px;
    color: rgba(rgba(rgba(193, 255, 193, 0.9)));
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.edie-video-card:hover .edie-meta-item {
    background: rgba(rgba(208, 255, 208, 0.8));
}

.edie-views-icon::before {
    content: '👁';
    margin-right: 3px;
    font-family: Arial, sans-serif;
}

.edie-date-icon::before {
    content: '📅';
    margin-right: 3px;
    font-family: Arial, sans-serif;
}

.edie-video-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    min-height: 44px; /* 确保标题有固定高度，为播放量留出空间 */
}

.edie-video-card:hover .edie-video-title {
    color: #aaffaa;
}

.edie-video-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.edie-video-category {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.edie-category-tag {
    padding: 3px 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #98ff98, #b2ffb2);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.edie-tag {
    padding: 3px 8px;
    border-radius: 4px;
    background: #98ff98;;
    color: #666;
    font-size: 12px;
    transition: all 0.3s ease;
}

.edie-video-card:hover .edie-tag {
    background: #aaffaa;;
}

/* 分页样式优化 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 8px;
}

.pagination .van-button {
    border: none;
    background: rgba(rgba(178, 255, 178, 0.9));
    border-radius: 6px;
    padding: 0;
    margin: 0 2px;
    min-width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 10px rgba(rgba(193, 255, 193, 0.05));
}

.pagination .van-button:hover {
    background: #98ff98;;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(rgba(208, 255, 208, 0.1));
    color: #98ff98;
}

.pagination .van-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #b2ffb2, #aaffaa);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.pagination .van-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.pagination .van-button__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(rgba(152, 255, 152, 0.9));
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 10px rgba(rgba(152, 255, 152, 0.05));
    position: relative;
    overflow: hidden;
}

.pagination-item:hover {
    background: #aaffaa;;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(rgba(170, 255, 170, 0.1));
    color: #d0ffd0;
}

.pagination-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #98ff98, #aaffaa);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.pagination-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.pagination-item-active {
    background: linear-gradient(135deg, #98ff98, #b2ffb2);
    color: white;
    box-shadow: 0 5px 15px rgba(rgba(193, 255, 193, 0.3));
}

.pagination-item-active:hover {
    color: white;
    background: linear-gradient(135deg, #98ff98, #c1ffc1);
}

.pagination-item-active::before {
    display: none;
}

/* 响应式分页调整 */
@media (max-width: 768px) {
    .pagination {
        gap: 5px;
    }
    
    .pagination .van-button,
    .pagination-item {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 3px;
    }
    
    .pagination .van-button,
    .pagination-item {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .pagination .van-button__text {
        font-size: 12px;
    }
    
    .pagination .van-button:nth-child(n+4):nth-last-child(n+4) {
        display: none;
    }
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .edie-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        grid-gap: 20px;
    }
}

@media (max-width: 768px) {
    .edie-video-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    
    .edie-heading-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .edie-filter-options {
        margin-top: 15px;
        width: 100%;
        justify-content: space-between;
    }
    
    .edie-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .edie-more-link {
        margin-top: 10px;
    }
    
    .edie-video-title {
        font-size: 14px;
        -webkit-line-clamp: 1; /* 移动端只显示一行标题 */
        margin-bottom: 5px;
        min-height: auto; /* 移动端不需要那么大的高度 */
    }
    
    .edie-video-meta {
        flex-wrap: wrap;
        position: relative;
        margin-top: 5px;
    }
    
    .edie-meta-item {
        font-size: 11px;
        padding: 2px 5px;
    }
    
    .edie-video-info {
        padding: 10px;
    }
    
    .edie-video-card {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .edie-video-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 8px;
    }
    
    .edie-video-thumb {
        padding-bottom: 120%; /* 手机端竖向比例调整 */
    }
    
    .edie-video-duration {
        padding: 2px 5px;
        font-size: 10px;
        bottom: 5px;
        right: 5px;
    }
    
    .edie-play-icon {
        width: 40px;
        height: 40px;
    }
    
    .edie-play-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* 波浪动画分隔线 */
.edie-footer-waves {
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: 40px;
    overflow: hidden;
}

.edie-wave-parallax {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.edie-wave-1,
.edie-wave-2,
.edie-wave-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-position: 0 bottom;
    background-repeat: repeat-x;
    background-size: 50% 100%;
}

.edie-wave-1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.3-200 0.7-250 49.3-394.5 49.3v31.8h800v-31.8z' fill='%23222222'/%3E%3C/svg%3E");
    animation: edie-wave-animation 25s linear infinite;
    z-index: 10;
    opacity: 0.3;
}

.edie-wave-2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.3-200 0.7-250 49.3-394.5 49.3v31.8h800v-31.8z' fill='%23222222'/%3E%3C/svg%3E");
    animation: edie-wave-animation-reverse 20s linear infinite;
    z-index: 9;
    opacity: 0.5;
}

.edie-wave-3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.3-200 0.7-250 49.3-394.5 49.3v31.8h800v-31.8z' fill='%23222222'/%3E%3C/svg%3E");
    animation: edie-wave-animation 15s linear infinite;
    z-index: 8;
    opacity: 0.7;
}

@keyframes edie-wave-animation {
    0% {
        transform: translateX(0) translateZ(0);
    }
    50% {
        transform: translateX(-25%) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

@keyframes edie-wave-animation-reverse {
    0% {
        transform: translateX(-50%) translateZ(0);
    }
    50% {
        transform: translateX(-25%) translateZ(0);
    }
    100% {
        transform: translateX(0) translateZ(0);
    }
}

/* 底部主体 */
.edie-footer {
    background: #b2ffb2;;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(rgba(152, 255, 152, 0.2));
}

.edie-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b2ffb2, #c1ffc1, #98ff98, #aaffaa);
    z-index: 1;
}

.edie-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 0 40px;
    position: relative;
}

/* 网站信息列 */
.edie-footer-logo {
    margin-bottom: 20px;
}

.edie-footer-logo .edie-logo-text {
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(rgba(170, 255, 170, 0.5));
}

.edie-footer-desc {
    font-size: 14px;
    color: rgba(rgba(rgba(152, 255, 152, 0.7)));
    margin-bottom: 20px;
    line-height: 1.6;
}

.edie-footer-contact {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(rgba(193, 255, 193, 0.05));
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.edie-footer-contact:hover {
    background: rgba(rgba(170, 255, 170, 0.1));
    transform: translateY(-2px);
}

.edie-contact-icon {
    margin-right: 10px;
    font-size: 16px;
    color: #aaffaa;
}

.edie-icon-email::before {
    content: '✉️';
    font-family: Arial, sans-serif;
}

.edie-email-text {
    font-size: 14px;
    color: rgba(rgba(rgba(178, 255, 178, 0.8)));
}

/* 底部列标题 */
.edie-footer-title {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    display: inline-block;
}

.edie-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #98ff98, #d0ffd0);
    transition: width 0.3s ease;
}

.edie-footer-column:hover .edie-footer-title::after {
    width: 100%;
}

/* 底部链接列表 */
.edie-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.edie-footer-links li {
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.edie-footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #aaffaa;;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.edie-footer-links li:hover {
    padding-left: 20px;
}

.edie-footer-links li:hover::before {
    background: #b2ffb2;;
    box-shadow: 0 0 8px rgba(rgba(170, 255, 170, 0.6));
}

.edie-footer-link {
    color: rgba(rgba(rgba(152, 255, 152, 0.7)));
    font-size: 14px;
    transition: all 0.3s ease;
}

.edie-footer-link:hover {
    color: #fff;
}

/* 搜索引擎按钮 */
.edie-footer-seo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.edie-seo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(rgba(193, 255, 193, 0.05));
    color: rgba(rgba(rgba(178, 255, 178, 0.7)));
    font-size: 14px;
    transition: all 0.3s ease;
}

.edie-seo-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(rgba(170, 255, 170, 0.15));
}

.edie-btn-baidu:hover {
    background: #98ff98;;
}

.edie-btn-google:hover {
    background: #b2ffb2;;
}

.edie-btn-bing:hover {
    background: #aaffaa;;
}

.edie-btn-360:hover {
    background: #98ff98;;
}

.edie-btn-sogou:hover {
    background: #aaffaa;;
}

.edie-btn-sm:hover {
    background: #aaffaa;;
}

.edie-seo-icon {
    margin-right: 5px;
    transition: all 0.3s ease;
}

.edie-seo-btn:hover .edie-seo-icon {
    transform: scale(1.1);
}

/* 二维码样式 */
.edie-qrcode-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.edie-qrcode-wrapper {
    text-align: center;
}

.edie-qrcode {
    width: 140px;
    height: 140px;
    background: #98ff98;;
    padding: 10px;
    border-radius: 10px;
    margin: 0 auto 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(rgba(170, 255, 170, 0.2));
    transition: all 0.3s ease;
    overflow: hidden;
}

.edie-qrcode:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(rgba(178, 255, 178, 0.3)), 0 0 15px rgba(rgba(152, 255, 152, 0.3));
}

.edie-qrcode::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(rgba(208, 255, 208, 0.3)), transparent);
    transform: rotate(45deg);
    animation: edie-qr-shine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes edie-qr-shine {
    0%, 100% {
        top: -150%;
        left: -150%;
    }
    50% {
        top: 100%;
        left: 100%;
    }
}

.edie-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.edie-qrcode-text {
    color: rgba(rgba(rgba(170, 255, 170, 0.7)));
    font-size: 14px;
}

/* 友情链接 */
.edie-footer-links-section {
    padding: 30px 0;
    border-top: 1px solid rgba(rgba(208, 255, 208, 0.05));
}

.edie-footer-links-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.edie-links-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-right: 15px;
}

.edie-links-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(rgba(152, 255, 152, 0.5)), transparent);
}

.edie-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.edie-links-item {
    transition: all 0.3s ease;
}

.edie-links-anchor {
    display: flex;
    align-items: center;
    color: rgba(rgba(rgba(208, 255, 208, 0.6)));
    font-size: 14px;
    transition: all 0.3s ease;
}

.edie-links-anchor:hover {
    color: #fff;
    transform: translateX(5px);
}

.edie-link-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #d0ffd0;;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.edie-links-anchor:hover .edie-link-dot {
    transform: scale(1.5);
    box-shadow: 0 0 5px rgba(rgba(193, 255, 193, 0.7));
}

/* 版权信息 */
.edie-copyright {
    background: rgba(rgba(193, 255, 193, 0.2));
    padding: 20px 0;
    position: relative;
}

.edie-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(rgba(178, 255, 178, 0.1)), transparent);
}

.edie-copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.edie-copyright-text {
    color: rgba(rgba(rgba(170, 255, 170, 0.5)));
    font-size: 14px;
}

.edie-copyright-nav {
    display: flex;
    gap: 20px;
}

.edie-copyright-link {
    color: rgba(rgba(rgba(208, 255, 208, 0.5)));
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.edie-copyright-link:hover {
    color: #98ff98;
}

.edie-copyright-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d0ffd0;;
    transition: width 0.3s ease;
}

.edie-copyright-link:hover::after {
    width: 100%;
}

/* 返回顶部按钮 */
.edie-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c1ffc1, #98ff98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(rgba(178, 255, 178, 0.2));
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.edie-back-to-top.edie-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.edie-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(rgba(152, 255, 152, 0.4));
}

.edie-to-top-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* 消息提示框 */
.edie-tooltip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(rgba(208, 255, 208, 0.8));
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    text-align: center;
    box-shadow: 0 5px 15px rgba(rgba(193, 255, 193, 0.2));
}

.edie-tooltip.edie-show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .edie-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0 30px;
    }
    
    .edie-copyright-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .edie-copyright-nav {
        justify-content: center;
    }
    
    .edie-back-to-top {
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 20px;
    }
    
    .edie-to-top-icon {
        width: 20px;
        height: 20px;
    }
    
    .edie-links-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .edie-footer-seo {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .edie-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== 视频详情页样式 ==================== */
/* 详情页英雄区背景 */
.edie-detail-hero {
    position: relative;
    padding: 60px 0;
    margin-bottom: 40px;
    overflow: hidden;
    min-height: 600px;
}

.edie-detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    filter: blur(15px);
    transform: scale(1.1);
    z-index: -2;
}

.edie-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(rgba(178, 255, 178, 0.8)) 0%, rgba(rgba(170, 255, 170, 0.7)) 100%);
    z-index: -1;
}

.edie-detail-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 30px;
}

/* 海报样式 */
.edie-detail-poster {
    flex: 0 0 300px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.edie-poster-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(rgba(152, 255, 152, 0.6));
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.edie-poster-img {
    width: 100%;
    display: block;
    vertical-align: middle;
}

.edie-poster-shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 40px rgba(rgba(208, 255, 208, 0.5));
    z-index: 1;
}

.edie-poster-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

/* 立即播放按钮 */
.edie-play-now {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    z-index: 10;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.edie-play-now:hover {
    transform: translateX(-50%) translateY(-5px);
}

.edie-play-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(rgba(208, 255, 208, 0.2));
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.edie-pulse-active {
    animation: edie-pulse-play 1.5s infinite;
    opacity: 1;
}

@keyframes edie-pulse-play {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.edie-play-icon-large {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c1ffc1 0%, #c1ffc1 100%);
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(rgba(208, 255, 208, 0.6));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edie-play-now:hover .edie-play-icon-large {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(rgba(208, 255, 208, 0.8));
}

.edie-play-icon-large svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.edie-play-text {
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(rgba(193, 255, 193, 0.5));
}

/* 详情信息区域 */
.edie-detail-info {
    flex: 1;
    min-width: 280px;
    color: #fff;
}

.edie-detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.edie-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0.9;
}

.edie-breadcrumb-link {
    color: #d0ffd0;
    transition: color 0.3s ease;
}

.edie-breadcrumb-link:hover {
    color: #aaffaa;
}

.edie-breadcrumb-divider {
    margin: 0 2px;
    opacity: 0.7;
    color: #b2ffb2;
}

.edie-breadcrumb-current {
    opacity: 0.8;
    color: #c1ffc1;
}

.edie-detail-score {
    margin-left: 20px;
}

.edie-score-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c1ffc1 0%, #c1ffc1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(rgba(208, 255, 208, 0.4));
    position: relative;
    animation: edie-score-pulse 2s infinite;
}

@keyframes edie-score-pulse {
    0% {
        box-shadow: 0 10px 20px rgba(rgba(170, 255, 170, 0.4));
    }
    50% {
        box-shadow: 0 15px 30px rgba(rgba(193, 255, 193, 0.6));
    }
    100% {
        box-shadow: 0 10px 20px rgba(rgba(208, 255, 208, 0.4));
    }
}

.edie-score-number {
    font-size: 28px;
    font-weight: 700;
}

.edie-score-label {
    font-size: 12px;
    opacity: 0.7;
}

.edie-detail-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(rgba(178, 255, 178, 0.8));
    color: #c1ffc1;
}

.edie-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.edie-detail-tag {
    padding: 4px 12px;
    background: rgba(rgba(193, 255, 193, 0.1));
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.edie-detail-tag:hover {
    background: #c1ffc1;;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(rgba(208, 255, 208, 0.4));
}

/* 元数据展示 */
.edie-detail-meta {
    margin-bottom: 30px;
}

.edie-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 12px;
}

.edie-meta-item {
    display: flex;
    align-items: baseline;
}

.edie-meta-label {
    font-weight: 600;
    opacity: 0.9;
    margin-right: 10px;
    color: #d0ffd0;
}

.edie-meta-value {
    opacity: 1;
    color: #c1ffc1;
}

.edie-meta-value a {
    display: inline-block;
    color: #fff;
    padding: 0 8px;
    border-radius: 12px;
    margin: 2px 5px 2px 0;
    transition: all 0.3s ease;
}

.edie-meta-value a:hover {
    background: rgba(rgba(170, 255, 170, 0.15));
    color: #d0ffd0;
}

.edie-meta-long {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.edie-meta-highlight {
    color: #c1ffc1;
    font-weight: 600;
}

/* 播放选项按钮 */
.edie-play-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.edie-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(rgba(178, 255, 178, 0.2));
}

.edie-play-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.edie-btn-primary {
    background: linear-gradient(135deg, #c1ffc1 0%, #c1ffc1 100%);
    color: #fff;
}

.edie-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(rgba(208, 255, 208, 0.4));
}

.edie-btn-secondary {
    background: rgba(rgba(208, 255, 208, 0.1));
    color: #333;
    border: 1px solid rgba(rgba(193, 255, 193, 0.2));
}

.edie-btn-secondary:hover {
    background: rgba(rgba(152, 255, 152, 0.2));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(rgba(170, 255, 170, 0.3));
}

/* 详情内容区域 */
.edie-detail-content {
    background: #d0ffd0;;
    padding: 40px 0 60px;
    position: relative;
}

.edie-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.edie-detail-section {
    background: #b2ffb2;;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(rgba(193, 255, 193, 0.05));
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edie-detail-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(rgba(178, 255, 178, 0.1));
}

.edie-section-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(rgba(193, 255, 193, 0.05));
}

.edie-section-title {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin: 0;
    color: #333;
}

.edie-section-title .edie-title-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: #98ff98;
}

.edie-section-body {
    padding: 25px;
}

/* 简介样式 */
.edie-detail-desc {
    position: relative;
}

.edie-desc-content {
    color: #555;
    line-height: 1.8;
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: relative;
}

.edie-desc-content.edie-desc-expanded {
    max-height: none;
}

.edie-desc-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 15px;
    color: #c1ffc1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.edie-desc-toggle:hover {
    color: #aaffaa;
}

.edie-desc-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-left: 5px;
}

/* 相关推荐样式 */
.edie-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.edie-related-card {
    margin-bottom: 0;
}

/* 鼠标特效和涟漪效果 */
.edie-mouse-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.edie-ripple-click {
    position: absolute;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background: rgba(rgba(193, 255, 193, 0.6));
    opacity: 0;
    transform: scale(1);
    animation: edie-click-ripple 0.8s ease-out;
}

@keyframes edie-click-ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(100);
        opacity: 0;
    }
}

/* 简介展开收起按钮样式 */
.edie-desc-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    margin-top: 10px;
    background: rgba(rgba(170, 255, 170, 0.05));
    border-radius: 20px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.edie-desc-toggle:hover {
    background: rgba(rgba(152, 255, 152, 0.1));
    color: #d0ffd0;
}

.edie-desc-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-right: 5px;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .edie-detail-hero {
        padding: 40px 0;
    }
    
    .edie-detail-wrapper {
        flex-direction: column;
    }
    
    .edie-detail-poster {
        margin: 0 auto 30px;
    }
    
    .edie-detail-title {
        font-size: 20px;
        color: #c1ffc1;
        text-shadow: 0 1px 3px rgba(rgba(178, 255, 178, 0.8));
    }
    
    .edie-related-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 480px) {
    .edie-detail-hero {
        padding: 30px 0;
    }
    
    .edie-detail-poster {
        flex: 0 0 240px;
    }
    
    .edie-detail-title {
        font-size: 18px;
        color: #98ff98;
        text-shadow: 0 1px 3px rgba(rgba(152, 255, 152, 0.8));
    }
    
    .edie-play-options {
        flex-direction: column;
    }
    
    .edie-play-btn {
        width: 100%;
    }
    
    .edie-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ==================== 视频播放页样式 ==================== */
/* 播放容器 */
.edie-play-container {
    background: #98ff98;;
    color: #fff;
}

/* 顶部导航 */
.edie-play-header {
    padding: 15px 0;
    border-bottom: 1px solid rgba(rgba(208, 255, 208, 0.07));
}

.edie-play-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edie-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0.8;
}

.edie-breadcrumb-link {
    color: #333;
    transition: color 0.3s ease;
}

.edie-breadcrumb-link:hover {
    color: #d0ffd0;
}

.edie-breadcrumb-divider {
    margin: 0 2px;
    opacity: 0.5;
}

.edie-breadcrumb-current {
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.edie-play-actions {
    display: flex;
    gap: 12px;
}

.edie-action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(rgba(178, 255, 178, 0.08));
    backdrop-filter: blur(5px);
}

.edie-action-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.edie-btn-fav {
    color: #b2ffb2;
}

.edie-btn-fav:hover {
    background: rgba(rgba(152, 255, 152, 0.2));
    transform: translateY(-2px);
}

.edie-btn-report {
    color: #d0ffd0;
}

.edie-btn-report:hover {
    background: rgba(rgba(178, 255, 178, 0.2));
    transform: translateY(-2px);
}

/* 播放器主体区域 */
.edie-play-stage {
    padding: 30px 0;
    position: relative;
}

.edie-player-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    position: relative;
}

/* 左侧播放器 */
.edie-player-main {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(rgba(178, 255, 178, 0.4));
    background: #b2ffb2;;
    transition: all 0.3s ease;
}

.edie-player-main:hover {
    box-shadow: 0 15px 40px rgba(rgba(152, 255, 152, 0.2));
}

.edie-player-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9宽高比 */
    background: #b2ffb2;;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(rgba(193, 255, 193, 0.5));
}

.edie-fullsize-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.edie-player-box iframe,
.edie-player-box #playleft {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    outline: none !important;
    z-index: 1;
}

/* 播放器信息 */
.edie-player-info {
    padding: 15px 20px;
    background: rgba(rgba(170, 255, 170, 0.3));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(rgba(193, 255, 193, 0.05));
}

.edie-play-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(rgba(208, 255, 208, 0.5));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.edie-play-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.edie-meta-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    opacity: 0.7;
}

.edie-meta-icon {
    margin-right: 5px;
    position: relative;
}

.edie-icon-eye:before {
    content: '👁️';
    font-family: Arial, sans-serif;
}

.edie-icon-time:before {
    content: '⏱️';
    font-family: Arial, sans-serif;
}

.edie-icon-star:before {
    content: '⭐';
    font-family: Arial, sans-serif;
}

.edie-meta-score {
    color: #d0ffd0;
    opacity: 1;
}

.edie-score-value {
    font-weight: 700;
}

/* 右侧选集 */
.edie-player-sidebar {
    background: rgba(rgba(152, 255, 152, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(rgba(193, 255, 193, 0.2));
    transition: all 0.3s ease;
}

.edie-player-sidebar:hover {
    box-shadow: 0 15px 40px rgba(rgba(152, 255, 152, 0.3));
    transform: translateY(-5px);
}

.edie-sidebar-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(rgba(152, 255, 152, 0.07));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edie-sidebar-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.edie-playlist-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 13px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.edie-playlist-toggle:hover {
    opacity: 1;
    color: #aaffaa;
}

.edie-toggle-text {
    font-size: 12px;
}

.edie-toggle-icon {
    position: relative;
    width: 12px;
    height: 12px;
}

.edie-toggle-icon:before {
    content: '⚙️';
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.edie-playlist-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: 520px;
}

.edie-playlist-tabs {
    display: flex;
    border-bottom: 1px solid rgba(rgba(170, 255, 170, 0.07));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.edie-playlist-tab {
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.edie-playlist-tab:hover {
    opacity: 1;
    background: rgba(rgba(193, 255, 193, 0.05));
}

.edie-tab-active {
    opacity: 1;
    color: #aaffaa;
}

.edie-tab-active:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(to right, #aaffaa, #d0ffd0);
}

.edie-playlist-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.edie-playlist-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 10px;
}

.edie-show {
    display: grid;
}

.edie-hide {
    display: none;
}

.edie-playlist-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-radius: 5px;
    background: rgba(rgba(178, 255, 178, 0.05));
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.edie-playlist-item:hover {
    background: rgba(rgba(193, 255, 193, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(rgba(208, 255, 208, 0.3));
}

.edie-item-active {
    background: linear-gradient(135deg, #c1ffc1, #98ff98);
    color: #fff;
    font-weight: 600;
}

.edie-item-active:hover {
    background: linear-gradient(135deg, #b2ffb2, #d0ffd0);
}

.edie-item-index {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.edie-item-name {
    font-size: 11px;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* 详情区域 */
.edie-play-details {
    padding: 40px 0;
    background: #c1ffc1;;
    position: relative;
}

.edie-play-details:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(rgba(208, 255, 208, 0.07)), transparent);
}

.edie-details-wrapper {
    background: rgba(rgba(152, 255, 152, 0.03));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(rgba(208, 255, 208, 0.2));
}

.edie-detail-tabs {
    display: flex;
    border-bottom: 1px solid rgba(rgba(193, 255, 193, 0.07));
}

.edie-detail-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.edie-detail-tab:hover {
    opacity: 1;
    background: rgba(rgba(208, 255, 208, 0.05));
}

.edie-detail-tab svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.edie-tab-active {
    opacity: 1;
    color: #c1ffc1;
}

.edie-tab-active:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(to right, #b2ffb2, #c1ffc1);
}

.edie-detail-content {
    padding: 25px;
}

.edie-detail-pane {
    display: none;
}

.edie-pane-active {
    display: block;
}

/* 简介内容 */
.edie-intro-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-template-areas: 
        "poster info"
        "desc desc";
    gap: 25px;
}

.edie-intro-poster {
    grid-area: poster;
}

.edie-poster-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(rgba(178, 255, 178, 0.3));
    transition: all 0.3s ease;
}

.edie-poster-wrap:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(rgba(170, 255, 170, 0.4)), 0 0 15px rgba(rgba(193, 255, 193, 0.4));
}

.edie-poster-wrap img {
    width: 100%;
    display: block;
    vertical-align: middle;
    transition: all 0.5s ease;
}

.edie-poster-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(to right, transparent 0%, rgba(rgba(193, 255, 193, 0.3)) 50%, transparent 100%);
    transform: rotate(30deg);
    animation: edie-poster-shine 5s infinite;
    pointer-events: none;
}

@keyframes edie-poster-shine {
    0% {
        top: -100%;
        left: -100%;
    }
    100% {
        top: 100%;
        left: 100%;
    }
}

.edie-intro-info {
    grid-area: info;
      color: #333;
}

.edie-info-item {
    display: flex;
    margin-bottom: 12px;
}

.edie-info-label {
    flex: 0 0 50px;
    font-weight: 600;
    opacity: 0.7;
}

.edie-info-value {
    flex: 1;
}

.edie-info-value a {
    display: inline-block;
    padding: 2px 8px;
    margin: 0 5px 5px 0;
    background: rgba(rgba(170, 255, 170, 0.05));
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.edie-info-value a:hover {
    background: rgba(rgba(208, 255, 208, 0.2));
    color: #b2ffb2;
    transform: translateY(-2px);
}

.edie-intro-desc {
    grid-area: desc;
    margin-top: 5px;
}

.edie-desc-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(rgba(170, 255, 170, 0.07));
    position: relative;
    color: #333;
}

.edie-desc-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #b2ffb2, transparent);
}

.edie-desc-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    max-height: none;
    overflow: visible;
}

.edie-desc-content.edie-desc-expanded {
    max-height: none;
}

.edie-desc-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    cursor: pointer;
    color: #c1ffc1;
    transition: all 0.3s ease;
}

.edie-desc-toggle:hover {
    transform: translateY(-2px);
}

.edie-desc-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.edie-desc-toggle.expanded svg {
    transform: rotate(180deg);
}
/* 相关推荐 */
.edie-related-videos {
    padding: 50px 0;
    background: #aaffaa;;
    position: relative;
}

.edie-related-videos:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(rgba(178, 255, 178, 0.07)), transparent);
}

.edie-related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.edie-related-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    color: #fff;
}

.edie-title-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: #98ff98;
}

.edie-view-more {
    display: flex;
    align-items: center;
    color: rgba(rgba(rgba(208, 255, 208, 0.7)));
    font-size: 14px;
    transition: all 0.3s ease;
}

.edie-view-more svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.edie-view-more:hover {
    color: #b2ffb2;
}

.edie-view-more:hover svg {
    transform: translateX(3px);
}

.edie-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

.edie-related-card {
    background: rgba(rgba(193, 255, 193, 0.03));
    margin-bottom: 0;
}

.edie-related-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(rgba(152, 255, 152, 0.2)), 0 5px 15px rgba(rgba(152, 255, 152, 0.1));
}

/* 响应式调整 */
@media (max-width: 992px) {
    .edie-player-wrapper {
        grid-template-columns: 1fr;
    }
    
    .edie-player-main {
        order: 1;
    }
    
    .edie-player-box {
        width: 100%;
        padding-top: 56.25%; /* 16:9宽高比 */
        margin: 0 auto;
    }
    
    .edie-player-sidebar {
        order: 2;
    }
    
    .edie-playlist-wrapper {
        max-height: 300px;
    }
    
    .edie-intro-grid {
        grid-template-columns: 120px 1fr;
    }
}

@media (max-width: 768px) {
    .edie-play-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .edie-play-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .edie-playlist-tabs {
        padding-bottom: 5px;
    }
    
    .edie-playlist-tab {
        padding: 10px 15px;
    }
    
    .edie-detail-tabs {
        overflow-x: auto;
    }
    
    .edie-detail-tab {
        flex-shrink: 0;
        padding: 12px 20px;
    }
    
    .edie-intro-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "info"
            "poster"
            "desc";
    }
    
    .edie-intro-poster {
        max-width: 140px;
    }
    
    .edie-related-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .edie-player-box {
        width: 100%;
        padding-top: 56.25%; /* 16:9宽高比 */
    }
}

@media (max-width: 480px) {
    .edie-player-box {
        width: 100%;
        padding-top: 56.25%; /* 16:9宽高比 */
    }
    
    .edie-player-info {
        padding: 10px 15px;
    }
    
    .edie-play-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .edie-playlist-box {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
    
    .edie-detail-content {
        padding: 15px;
    }
    
    .edie-form-content {
        flex-direction: column;
    }
    
    .edie-form-avatar {
        align-self: center;
    }
    
    .edie-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
/* 控制显示/隐藏 */
.edie-playlist-box {
    display: none;
}
.edie-playlist-box.edie-show {
    display: block;
}

/* 播放列表的原始样式 */
.edie-playlist-box {
    display: none;
    overflow: hidden;
}
.edie-playlist-box.edie-show {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 5px;
    margin: 0 -5px;
}
.edie-playlist-item {
    display: inline-block;
    margin: 5px;
    padding: 8px 5px;
    background: rgba(rgba(208, 255, 208, 0.05));
    border-radius: 4px;
    text-align: center;
    color: #b2ffb2;
    min-width: 40px;
    transition: all 0.3s ease;
    flex: 0 0 calc(20% - 10px);
    position: relative;
    overflow: hidden;
}
.edie-playlist-item:hover {
    background: rgba(rgba(170, 255, 170, 0.6));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(rgba(193, 255, 193, 0.1));
}
.edie-playlist-item.edie-item-active {
    background: rgba(rgba(178, 255, 178, 1));
    color: #fff;
    box-shadow: 0 5px 15px rgba(rgba(208, 255, 208, 0.3));
}
.edie-item-index {
    display: block;
    font-weight: bold;
    font-size: 14px;
}
.edie-item-name {
    display: block;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 响应式调整 */
@media (max-width: 768px) {
    .edie-playlist-item {
        flex: 0 0 calc(25% - 10px);
    }
}
@media (max-width: 480px) {
    .edie-playlist-item {
        flex: 0 0 calc(33.33% - 10px);
    }
}

/* 视频选集样式 */
.edie-cyber-play-section {
    background: rgba(rgba(178, 255, 178, 0.05));
    border-radius: 12px;
    padding: 0;
    margin: 30px 0;
    box-shadow: 0 5px 25px rgba(rgba(193, 255, 193, 0.1));
    position: relative;
    overflow: hidden;
}

.edie-cyber-play-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #98ff98, #98ff98, #b2ffb2, #b2ffb2);
    z-index: 1;
}

.edie-cyber-section-title {
    display: none;
}

.edie-play-tabs {
    width: 100%;
    position: relative;
}

.edie-play-source-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(rgba(178, 255, 178, 0.1));
    padding-bottom: 15px;
}

.edie-play-source-tab {
    padding: 8px 16px;
    background: rgba(rgba(152, 255, 152, 0.05));
    border-radius: 30px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.edie-play-source-tab:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(rgba(170, 255, 170, 0.2)), rgba(rgba(193, 255, 193, 0)));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edie-play-source-tab:hover {
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(rgba(170, 255, 170, 0.1));
}

.edie-play-source-tab:hover:before {
    opacity: 1;
}

.edie-play-source-tab.active {
    background: linear-gradient(to right, #aaffaa, #c1ffc1);
    color: white;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(rgba(178, 255, 178, 0.3));
}

.edie-play-lists-wrapper {
    width: 100%;
    position: relative;
}

.edie-play-list {
    display: none;
    width: 100%;
}

.edie-play-list.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.edie-play-list-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    position: relative;
}

.edie-play-list-items:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, rgba(rgba(193, 255, 193, 0.05)), transparent);
    pointer-events: none;
}

.edie-play-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background: #c1ffc1;;
    border-radius: 8px;
    color: #555;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(rgba(170, 255, 170, 0.05));
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(rgba(178, 255, 178, 0.05));
}

.edie-play-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(rgba(178, 255, 178, 0.9)), rgba(rgba(193, 255, 193, 0.5)));
    opacity: 0.8;
    pointer-events: none;
    z-index: -1;
}

.edie-play-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(rgba(170, 255, 170, 0.2)), rgba(rgba(170, 255, 170, 0.2)));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.edie-play-item:hover {
    color: #d0ffd0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(rgba(178, 255, 178, 0.1));
    border-color: rgba(rgba(rgba(193, 255, 193, 0.2)));
}

.edie-play-item:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.edie-play-item.active {
    background: linear-gradient(to right, #aaffaa, #b2ffb2);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(rgba(208, 255, 208, 0.3));
}

.edie-play-item.active:before {
    display: none;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .edie-cyber-play-section {
        padding: 0;
    }
    
    .edie-play-list-items {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }
    
    .edie-play-item {
        padding: 10px 8px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .edie-play-list-items {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 6px;
    }
    
    .edie-play-item {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .edie-play-source-tab {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* 播放条目波纹效果 */
.edie-play-item {
    position: relative;
    overflow: hidden;
}

.edie-item-ripple {
    position: absolute;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background: rgba(rgba(170, 255, 170, 0.5));
    transform: translate(-50%, -50%) scale(0);
    animation: edie-item-ripple 0.6s linear;
    pointer-events: none;
}

@keyframes edie-item-ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* 自定义滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(rgba(193, 255, 193, 0.05));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #b2ffb2, #d0ffd0);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #98ff98, #aaffaa);
    box-shadow: 0 0 6px rgba(rgba(193, 255, 193, 0.5));
}

::-webkit-scrollbar-corner {
    background: rgba(rgba(152, 255, 152, 0.05));
}

/* 播放列表内容区域滚动条 */
.edie-play-list {
    max-height: 350px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #98ff98 rgba(rgba(178, 255, 178, 0.05));
    padding-right: 5px;
    transition: all 0.3s ease;
}

.edie-play-list:hover::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #b2ffb2, #d0ffd0);
}

.edie-play-list::-webkit-scrollbar-thumb {
    background: rgba(rgba(178, 255, 178, 0.3));
}

.edie-play-list-items {
    padding-right: 5px;
}

/* 添加响应式媒体查询以在不同屏幕尺寸下调整高度 */
@media (max-width: 768px) {
    .edie-video-thumb {
        padding-bottom: 130%; /* 手机上稍微降低高度比例 */
    }
}

@media (max-width: 480px) {
    .edie-video-thumb {
        padding-bottom: 120%; /* 更小的屏幕再降低一些 */
    }
}

/* 相关视频卡片样式调整，使其在详情页中更好显示 */
.edie-related-card .edie-video-thumb {
    padding-bottom: 150%; /* 相关推荐部分竖向比例更高 */
}

/* 相关推荐部分响应式调整 */
@media (max-width: 768px) {
    .edie-detail-hero {
        padding: 30px 0;
    }
    
    .edie-detail-wrapper {
        flex-direction: column;
    }
    
    .edie-detail-poster {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .edie-detail-title {
        font-size: 20px;
    }
    
    .edie-related-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
}

@media (max-width: 480px) {
    .edie-detail-hero {
        padding: 20px 0;
    }
    
    .edie-detail-poster {
        width: 100%;
    }
    
    .edie-detail-title {
        font-size: 18px;
    }
    
    .edie-play-options {
        flex-wrap: wrap;
    }
    
    .edie-play-btn {
        margin-bottom: 10px;
    }
    
    .edie-related-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 8px;
    }
    
    /* 竖向视频比例调整 */
    .edie-related-card .edie-video-thumb {
        padding-bottom: 120%;
    }
}

/* ==================== 搜索结果页样式 ==================== */
.edie-search-results {
    background: #aaffaa;;
    position: relative;
    padding: 40px 0;
}

.edie-search-header {
    background: linear-gradient(135deg, #aaffaa 0%, #aaffaa 100%);
    color: #fff;
    padding: 30px 0;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(rgba(208, 255, 208, 0.2));
}

.edie-search-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #98ff98, #aaffaa, #b2ffb2, #aaffaa);
}

.edie-search-title-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.edie-search-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(rgba(178, 255, 178, 0.3));
    display: flex;
    align-items: center;
}

.edie-search-keyword {
    color: #d0ffd0;
    margin: 0 8px;
    position: relative;
    display: inline-block;
}

.edie-search-keyword::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c1ffc1;;
}

.edie-search-stats {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(rgba(rgba(208, 255, 208, 0.7)));
}

.edie-stats-highlight {
    font-weight: 700;
    color: #c1ffc1;
    margin: 0 4px;
}

.edie-search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.edie-search-filter {
    background: rgba(rgba(170, 255, 170, 0.1));
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(rgba(178, 255, 178, 0.1));
}

.edie-search-filter:hover {
    background: rgba(rgba(208, 255, 208, 0.2));
    transform: translateY(-2px);
}

.edie-search-filter.active {
    background: linear-gradient(to right, #b2ffb2, #d0ffd0);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(rgba(208, 255, 208, 0.3));
}

.edie-search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 25px;
    margin-bottom: 30px;
}

.edie-search-card {
    background: #d0ffd0;;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(rgba(178, 255, 178, 0.08));
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.edie-search-card:hover {
    transform: none;
    box-shadow: none;
}

.edie-search-card::before {
    display: none;
}

.edie-search-card .edie-video-card {
    height: 100%;
    margin-bottom: 0;
}

.edie-search-card .edie-video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(rgba(178, 255, 178, 0.12)), 0 5px 15px rgba(rgba(178, 255, 178, 0.1));
}

.edie-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    padding: 30px;
    background: rgba(rgba(193, 255, 193, 0.8));
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(rgba(152, 255, 152, 0.05));
}

.edie-no-results-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #b2ffb2;
    opacity: 0.5;
}

.edie-no-results-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.edie-no-results-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    max-width: 500px;
}

.edie-search-again {
    display: flex;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
}

.edie-search-again-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(rgba(152, 255, 152, 0.1));
    border-radius: 30px 0 0 30px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.edie-search-again-input:focus {
    border-color: #98ff98;
    box-shadow: 0 0 10px rgba(rgba(193, 255, 193, 0.2));
}

.edie-search-again-btn {
    background: linear-gradient(to right, #c1ffc1, #d0ffd0);
    color: #fff;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edie-search-again-btn:hover {
    background: linear-gradient(to right, #c1ffc1, #aaffaa);
    box-shadow: 0 5px 15px rgba(rgba(193, 255, 193, 0.3));
}

.edie-search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.edie-suggestion-label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.edie-suggestion-item {
    display: inline-block;
    padding: 5px 12px;
    background: #98ff98;;
    border-radius: 20px;
    color: #555;
    font-size: 14px;
    transition: all 0.3s ease;
}

.edie-suggestion-item:hover {
    background: #d0ffd0;;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(rgba(152, 255, 152, 0.3));
}

/* 搜索结果页动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.edie-search-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.edie-search-card:nth-child(2) { animation-delay: 0.1s; }
.edie-search-card:nth-child(3) { animation-delay: 0.2s; }
.edie-search-card:nth-child(4) { animation-delay: 0.3s; }
.edie-search-card:nth-child(5) { animation-delay: 0.4s; }
.edie-search-card:nth-child(6) { animation-delay: 0.5s; }
.edie-search-card:nth-child(7) { animation-delay: 0.6s; }
.edie-search-card:nth-child(8) { animation-delay: 0.7s; }
.edie-search-card:nth-child(9) { animation-delay: 0.8s; }
.edie-search-card:nth-child(10) { animation-delay: 0.9s; }

/* 响应式调整 */
@media (max-width: 768px) {
    .edie-search-header {
        padding: 20px 0;
    }

    .edie-search-title {
        font-size: 22px;
    }

    .edie-search-stats {
        margin-top: 10px;
        width: 100%;
    }

    .edie-search-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-top: 15px;
    }

    .edie-search-filter {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .edie-search-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }

    .edie-no-results-title {
        font-size: 20px;
    }

    .edie-no-results-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .edie-search-title {
        font-size: 18px;
    }

    .edie-search-grid {
        grid-template-columns: 1fr;
    }

    .edie-search-again {
        flex-direction: column;
        gap: 10px;
    }

    .edie-search-again-input {
        border-radius: 30px;
        width: 100%;
    }

    .edie-search-again-btn {
        border-radius: 30px;
        width: 100%;
    }
}

/* 搜索结果页面样式适配 */
.edie-search-results .edie-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .edie-search-results .edie-video-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }
}

@media (max-width: 480px) {
    .edie-search-results .edie-video-grid {
        grid-template-columns: 1fr;
    }
}

/* 搜索页动画适配 */
.edie-search-results .edie-video-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.edie-search-results .edie-video-card:nth-child(2) { animation-delay: 0.1s; }
.edie-search-results .edie-video-card:nth-child(3) { animation-delay: 0.2s; }
.edie-search-results .edie-video-card:nth-child(4) { animation-delay: 0.3s; }
.edie-search-results .edie-video-card:nth-child(5) { animation-delay: 0.4s; }
.edie-search-results .edie-video-card:nth-child(6) { animation-delay: 0.5s; }
.edie-search-results .edie-video-card:nth-child(7) { animation-delay: 0.6s; }
.edie-search-results .edie-video-card:nth-child(8) { animation-delay: 0.7s; }
.edie-search-results .edie-video-card:nth-child(9) { animation-delay: 0.8s; }
.edie-search-results .edie-video-card:nth-child(10) { animation-delay: 0.9s; }