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

/* 全局样式 */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "SimSun", "宋体", serif;
      }
      
      body {
        background: #fdc888;
        background-image: linear-gradient(to bottom, rgba(240, 237, 230, 0.5) 0%, rgba(245, 243, 237, 0.5) 100%);
        color: #fff;
        line-height: 1.6;
      }
      
      a {
        text-decoration: none;
        color: #fff;
        transition: all 0.3s ease;
      }
      
      a:hover {
        color: #8B4513;
      }
      
      .ebgl-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }
      
      .ebgl-clearfix:after {
        content: "";
        display: table;
        clear: both;
      }
      
      /* 顶部样式 */
      .ebgl-site-header-top {
        background-color: rgba(127, 82, 70, 0.85);
        border-bottom: 1px solid #d9d3c8;
        padding: 8px 0;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
        position: relative;
      }
      
      .ebgl-site-header-top:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #8B4513, #A0522D, #CD853F, #A0522D, #8B4513);
        opacity: 0.7;
      }
      
      .ebgl-site-url-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }
      
      .ebgl-site-url {
        font-size: 14px;
        color: #5a5a5a;
        font-weight: 300;
        letter-spacing: 1px;
      }
      
      .ebgl-url-actions a {
        display: inline-block;
        color: #696969;
        font-size: 13px;
        padding: 2px 8px;
        border: 1px solid #d9d3c8;
        border-radius: 3px;
        background-color: rgba(127, 82, 70, 0.85);
        transition: all 0.3s ease;
      }
      
      .ebgl-url-actions a:hover {
        color: #8B4513;
        background-color: rgba(127, 82, 70, 0.85);
        border-color: #8B4513;
      }
      
      /* 头部Logo区域 */
      .ebgl-header {
        padding: 20px 0;
        background-color: rgba(127, 82, 70, 0.85);
        position: relative;
        overflow: hidden;
      }
      
      .ebgl-header:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(135deg, rgba(139, 69, 19, 0.02) 25%, transparent 25%, 
                           transparent 50%, rgba(139, 69, 19, 0.02) 50%, rgba(139, 69, 19, 0.02) 75%, 
                           transparent 75%, transparent);
        background-size: 40px 40px;
        opacity: 0.1;
        z-index: 0;
      }
      
      .ebgl-navbar-header {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .ebgl-navbar-brand {
        font-size: 32px;
        color: #fff;
        font-weight: 700;
        padding: 5px 0;
        position: relative;
        display: inline-block;
        letter-spacing: 2px;
        font-family: "FangSong", "仿宋", serif;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
      }
      
      .ebgl-navbar-brand:before,
      .ebgl-navbar-brand:after {
        content: "•";
        font-size: 18px;
        position: absolute;
        top: 50%;
        color: rgba(139, 69, 19, 0.6);
        transform: translateY(-50%);
      }
      
      .ebgl-navbar-brand:before {
        left: -10px;
      }
      
      .ebgl-navbar-brand:after {
        right: -10px;
      }
      
      /* 导航 */
      .ebgl-appel {
        background-color: rgba(127, 82, 70, 0.85);
        border-top: 1px solid rgba(205, 133, 63, 0.2);
        border-bottom: 1px solid rgba(205, 133, 63, 0.2);
        position: relative;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      }
      
      .ebgl-youmu-app {
        padding: 10px 0;
        position: relative;
      }
      
      .ebgl-area {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }
      
      .ebgl-first {
        margin-right: 20px;
        margin-bottom: 10px;
        position: relative;
      }
      
      .ebgl-first dt {
        margin-bottom: 8px;
        position: relative;
      }
      
      .ebgl-first dt a {
        color: #8B4513;
        font-weight: 700;
        position: relative;
        padding: 0 0 3px 0;
        font-size: 16px;
        display: inline-block;
      }
      
      .ebgl-first dt a:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(139, 69, 19, 0.7), rgba(139, 69, 19, 0.1));
      }
      
      .ebgl-first dt a strong {
        position: relative;
        z-index: 1;
      }
      
      .ebgl-first dd {
        display: inline-block;
        margin-right: 12px;
        margin-bottom: 5px;
      }
      
      .ebgl-first dd a {
        font-size: 14px;
        color: #fff;
        transition: all 0.3s;
        padding: 2px 4px;
        border-radius: 2px;
      }
      
      .ebgl-first dd a:hover {
        color: #8B4513;
        background-color: rgba(127, 82, 70, 0.85);
      }
      
      /* 搜索框 */
      #ebgl-ddab {
        padding: 15px 0;
        background-color: rgba(127, 82, 70, 0.85);
        border-top: 1px dashed rgba(139, 69, 19, 0.1);
      }
      
      .ebgl-seach {
        max-width: 500px;
        margin: 0 auto;
        position: relative;
      }
      
      .ebgl-seach form {
        display: flex;
        position: relative;
      }
      
      .ebgl-seach input {
        flex: 1;
        height: 40px;
        border: 1px solid #d9d3c8;
        border-radius: 4px 0 0 4px;
        padding: 0 15px;
        font-size: 14px;
        background-color: rgba(127, 82, 70, 0.85);
        color: #fff;
        transition: all 0.3s;
      }
      
      .ebgl-seach input:focus {
        outline: none;
        border-color: #8B4513;
        background: #fdc888;
        box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.1);
      }
      
      .ebgl-seach button {
        width: 80px;
        height: 40px;
        background: linear-gradient(135deg, #8B4513, #A0522D);
        border: none;
        color: #fff;
        font-size: 15px;
        cursor: pointer;
        border-radius: 0 4px 4px 0;
        transition: all 0.3s;
      }
      
      .ebgl-seach button:hover {
        background: linear-gradient(135deg, #A0522D, #8B4513);
      }
      
      .ebgl-seach button:active {
        transform: translateY(1px);
      }
      
      /* 元素 */
      .ebgl-ink-dot {
        display: inline-block;
        width: 6px;
        height: 6px;
        background: #fdc888;
        border-radius: 50%;
        margin-right: 8px;
        position: relative;
        top: -1px;
        opacity: 0.7;
      }
      
      .ebgl-ink-btn {
        position: relative;
        overflow: hidden;
      }
      
      .ebgl-ink-drop {
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50% 50% 50% 0;
        margin-right: 5px;
        transform: rotate(-45deg);
      }
      
      .ebgl-ink-text {
        position: relative;
        display: inline-block;
        padding: 0 10px;
      }
      
      .ebgl-ink-text:before,
      .ebgl-ink-text:after {
        content: "";
        position: absolute;
        width: 4px;
        height: 4px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50%;
      }
      
      .ebgl-ink-text:before {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
      }
      
      .ebgl-ink-text:after {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
      }
      
      .ebgl-ink-decoration {
        width: 80px;
        height: 30px;
        position: relative;
        opacity: 0.6;
      }
      
      .ebgl-ink-left {
        position: relative;
      }
      
      .ebgl-ink-left:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(139, 69, 19, 0.6));
        transform: translateY(-50%);
      }
      
      .ebgl-ink-right {
        position: relative;
      }
      
      .ebgl-ink-right:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 60px;
        height: 1px;
        background: linear-gradient(to left, transparent, rgba(139, 69, 19, 0.6));
        transform: translateY(-50%);
      }
      
      .ebgl-ink-border-top {
        height: 3px;
        background: linear-gradient(to right, 
                      transparent, rgba(139, 69, 19, 0.2), 
                      rgba(139, 69, 19, 0.3), rgba(139, 69, 19, 0.2), 
                      transparent);
      }
      
      .ebgl-ink-border-bottom {
        height: 3px;
        background: linear-gradient(to right, 
                      transparent, rgba(139, 69, 19, 0.2), 
                      rgba(139, 69, 19, 0.3), rgba(139, 69, 19, 0.2), 
                      transparent);
      }
      
      .ebgl-ink-category-title {
        position: relative;
      }
      
      .ebgl-ink-splash {
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50% 50% 50% 0;
        margin-right: 4px;
        position: relative;
        top: -2px;
        transform: rotate(-45deg);
        opacity: 0.7;
      }
      
      .ebgl-ink-link {
        position: relative;
        transition: all 0.3s ease;
      }
      
      .ebgl-ink-link:hover {
        color: #8B4513;
        text-shadow: 0 0 1px rgba(139, 69, 19, 0.2);
      }
      
      .ebgl-ink-input {
        border-color: #d9d3c8 !important;
        background-color: rgba(127, 82, 70, 0.85) !important;
      }
      
      .ebgl-ink-button {
        position: relative;
        overflow: hidden;
      }
      
      .ebgl-ink-button:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, transparent 100%);
        opacity: 0.5;
      }
      
      .ebgl-ink-icon-search {
        display: inline-block;
        width: 12px;
        height: 12px;
        border: 2px solid #fff;
        border-radius: 50%;
        position: relative;
        top: 1px;
        margin-right: 5px;
      }
      
      .ebgl-ink-icon-search:after {
        content: "";
        position: absolute;
        width: 2px;
        height: 6px;
        background: #fdc888;
        bottom: -4px;
        right: -1px;
        transform: rotate(-45deg);
      }
      
      /* 修改点击效果 */
      .ebgl-ink-button-clicked {
        position: relative;
        overflow: hidden;
      }
      
      .ebgl-ink-button-clicked:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 50% 50% 50% 0;
        transform: translate(-50%, -50%) rotate(-45deg);
        animation: ebgl-ink-splash 0.5s ease-out;
      }
      
      @keyframes ebgl-ink-splash {
        0% {
          width: 5px;
          height: 5px;
          opacity: 1;
          transform: translate(-50%, -50%) rotate(-45deg);
        }
        30% {
          opacity: 0.8;
          transform: translate(-50%, -50%) rotate(-45deg) scale(1.5);
        }
        100% {
          width: 50px;
          height: 50px;
          opacity: 0;
          transform: translate(-50%, -50%) rotate(-45deg) scale(3);
        }
      }
      
      /* 修改滴落效果 */
      .ebgl-ink-drop-effect {
        animation: ebgl-ink-drop 1.5s ease-out;
        border-radius: 50% 50% 50% 0;
        background-color: rgba(127, 82, 70, 0.85);
        transform: rotate(-45deg);
      }
      
      @keyframes ebgl-ink-drop {
        0% {
          transform: rotate(-45deg) translateY(-10px) scale(0.5);
          opacity: 0;
        }
        20% {
          opacity: 0.7;
          transform: rotate(-45deg) translateY(-5px) scale(1.2);
        }
        40% {
          opacity: 0.5;
          transform: rotate(-45deg) translateY(0) scale(1);
        }
        70% {
          opacity: 0.3;
          transform: rotate(-45deg) translateY(0) scale(0.9);
        }
        100% {
          opacity: 0;
          transform: rotate(-45deg) translateY(0) scale(0.8);
        }
      }
      
      /* 平滑过渡动画 */
      .ebgl-ink-splash {
        transition: all 0.3s ease;
      }
      
      .ebgl-ink-decoration {
        transition: opacity 0.3s ease;
      }
      
      /* 视频列表 */
      .ebgl-thumbnail-group {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
        padding: 0;
        list-style: none;
      }
      
      .ebgl-thumbnail-group > li {
        width: calc(20% - 20px);
        margin: 0 10px 20px;
        position: relative;
      }
      
      @media (max-width: 1200px) {
        .ebgl-thumbnail-group > li {
          width: calc(25% - 20px);
        }
      }
      
      @media (max-width: 992px) {
        .ebgl-thumbnail-group > li {
          width: calc(33.333% - 20px);
        }
      }
      
      @media (max-width: 768px) {
        .ebgl-thumbnail-group > li {
          width: calc(50% - 20px);
        }
      }
      
      @media (max-width: 576px) {
        .ebgl-thumbnail-group > li {
          width: calc(50% - 20px);
        }
      }
      
      /* 同时大屏幕下的视频封面也保持一致的比例和布局 */
      @media (min-width: 1201px) {
        .ebgl-movie-poster {
          width: 250px;
        }
        
        .ebgl-poster-wrap {
          padding-bottom: 150%;
        }
      }
      
      /* 在电影详情页中的海报尺寸合适 */
      .ebgl-movie-poster {
        max-width: 250px;
        width: 100%;
      }
      
      .ebgl-thumbnail-group > li:hover {
        transform: translateY(-3px);
      }
      
      .ebgl-thumbnail {
        position: relative;
        padding-bottom: 150%; /* 2:3的竖图比例 */
        overflow: hidden;
        background: #fdc888;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        display: block;
        transition: all 0.3s ease;
      }
      
      .ebgl-thumbnail:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.6), transparent);
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      
      .ebgl-thumbnail:hover:before {
        opacity: 1;
      }
      
      .ebgl-thumbnail:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, 
                      rgba(139, 69, 19, 0.05) 0%, 
                      rgba(139, 69, 19, 0.05) 30%, 
                      rgba(0, 0, 0, 0.6) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
      }
      
      .ebgl-thumbnail:hover:after {
        opacity: 1;
      }
      
      .ebgl-thumbnail img {
        width: 100%;
        height: 100%;
        display: block;
        transition: all 0.5s ease;
        object-fit: cover; /* 图片能完整展示 */
        position: absolute;
        top: 0;
        left: 0;
      }
      
      .ebgl-thumbnail:hover img {
        transform: scale(1.05);
      }
      
      /* 视频信息 */
      .ebgl-video-info {
        position: relative;
        padding: 12px 8px;
        background-color: rgba(127, 82, 70, 0.85);
        border: 1px solid rgba(139, 69, 19, 0.1);
        border-top: none;
        border-radius: 0 0 4px 4px;
        transition: all 0.3s ease;
        margin-top: 0; /* 移除额外的顶部边距 */
        z-index: 2;
      }
      
      .ebgl-video-info:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 4px;
        right: 4px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.2), transparent);
      }
      
      .ebgl-thumbnail-group > li:hover .ebgl-video-info {
        background-color: rgba(127, 82, 70, 0.85);
        box-shadow: 0 4px 8px rgba(139, 69, 19, 0.08);
      }
      
      .ebgl-video-info h5 {
        margin: 0 0 5px 0;
        font-size: 15px;
        line-height: 1.4;
        height: 42px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        position: relative;
      }
      
      .ebgl-video-info h5 a {
        color: #fff;
        transition: all 0.3s ease;
        display: block;
        font-family: "FangSong", "仿宋", serif;
        letter-spacing: 0.5px;
      }
      
      .ebgl-video-info h5 a:hover {
        color: #8B4513;
        text-decoration: none;
      }
      
      .ebgl-video-info p {
        margin: 5px 0 0;
        font-size: 12px;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        position: relative;
        padding-left: 5px;
      }
      
      .ebgl-video-info p:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 3px;
        height: 3px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50%;
        transform: translateY(-50%);
      }
      
      /* 视频缩略图装饰 */
      .ebgl-ink-thumbnail-effect {
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        overflow: hidden;
        z-index: 2;
      }
      
      .ebgl-ink-thumbnail-effect:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 60px 60px 0;
        border-color: transparent rgba(139, 69, 19, 0.7) transparent transparent;
        transform: scale(0.7);
        opacity: 0.6;
        transition: all 0.3s ease;
      }
      
      .ebgl-thumbnail:hover .ebgl-ink-thumbnail-effect:before {
        opacity: 0.8;
        transform: scale(0.9);
      }
      
      /* 视频播放图标 */
      .ebgl-play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: rgba(127, 82, 70, 0.85);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5; /* 播放图标在最上层 */
        opacity: 0;
        transition: all 0.3s ease;
      }
      
      .ebgl-play-icon:before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 0 10px 16px;
        border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
        margin-left: 3px;
      }
      
      .ebgl-thumbnail:hover .ebgl-play-icon {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
      
      /* 视频标签 */
      .ebgl-video-tag {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 12px;
        color: #fff;
        background-color: rgba(127, 82, 70, 0.85);
        padding: 2px 8px;
        border-radius: 2px;
        z-index: 3;
        opacity: 0;
        transform: translateY(-5px);
        transition: all 0.3s ease;
      }
      
      .ebgl-thumbnail:hover .ebgl-video-tag {
        opacity: 1;
        transform: translateY(0);
      }
      
      /* 视频更新时间 */
      .ebgl-video-time {
        position: absolute;
        bottom: 10px;
        right: 10px;
        font-size: 12px;
        color: #fff;
        background-color: rgba(127, 82, 70, 0.85);
        padding: 2px 8px;
        border-radius: 2px;
        z-index: 3;
        opacity: 0.7;
        transition: all 0.3s ease;
      }
      
      .ebgl-thumbnail:hover .ebgl-video-time {
        background-color: rgba(127, 82, 70, 0.85);
      }
      
      /* 效果装饰 */
      .ebgl-appel-max {
        position: relative;
        padding: 20px 0;
      }
      
      .ebgl-appel-max:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.15), transparent);
      }
      
      /* 视频列表标题 */
      .ebgl-appel-title {
        position: relative;
        font-family: "FangSong", "仿宋", serif;
        color: #fff;
        margin: 15px 0;
        font-size: 20px;
        padding-left: 15px;
        display: inline-block;
      }
      
      .ebgl-appel-heading {
        position: relative;
        margin-bottom: 10px;
        padding-bottom: 10px;
      }
      
      .ebgl-appel-heading:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(139, 69, 19, 0.2), transparent);
      }
      
      .ebgl-appel-title:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 20px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 2px;
      }
      
      /* 视频列表动画效果 */
      .ebgl-fade-in-up {
        animation: huFadeInUp 0.8s ease both;
        animation-delay: 0.1s;
      }
      
      @keyframes huFadeInUp {
        from {
          opacity: 0;
          transform: translate3d(0, 20px, 0);
        }
        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }
      
      .ebgl-in-view .ebgl-thumbnail:before {
        animation: huInkLineShow 1.2s ease-in-out;
      }
      
      @keyframes huInkLineShow {
        0% {
          opacity: 0;
          transform: scaleX(0.2);
        }
        50% {
          opacity: 1;
          transform: scaleX(1.05);
        }
        100% {
          opacity: 1;
          transform: scaleX(1);
        }
      }
      
      .ebgl-in-view .ebgl-video-tag {
        animation: huFadeInLeft 0.6s ease-out 0.3s forwards;
      }
      
      @keyframes huFadeInLeft {
        from {
          opacity: 0;
          transform: translate3d(-10px, 0, 0);
        }
        to {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }
      
      .ebgl-in-view .ebgl-video-time {
        animation: huFadeInRight 0.6s ease-out 0.3s forwards;
      }
      
      @keyframes huFadeInRight {
        from {
          opacity: 0;
          transform: translate3d(10px, 0, 0);
        }
        to {
          opacity: 0.7;
          transform: translate3d(0, 0, 0);
        }
      }
      
      /* 效果 */
      .ebgl-ink-drop-animated {
        animation: huInkDrop 2s ease-out;
      }
      
      @keyframes huInkDrop {
        0% {
          transform: rotate(-45deg) scale(0);
          opacity: 0;
        }
        30% {
          transform: rotate(-45deg) scale(1.2);
          opacity: 0.8;
        }
        70% {
          transform: rotate(-45deg) scale(0.9);
          opacity: 0.6;
        }
        100% {
          transform: rotate(-45deg) scale(0.8);
          opacity: 0;
        }
      }
      
      /* 染色效果 */
      .ebgl-thumbnail:hover .ebgl-ink-thumbnail-effect:before {
        animation: huInkCorner 0.6s ease-out;
      }
      
      @keyframes huInkCorner {
        0% {
          transform: scale(0.7);
          opacity: 0.6;
        }
        50% {
          transform: scale(1);
          opacity: 0.9;
        }
        100% {
          transform: scale(0.9);
          opacity: 0.8;
        }
      }
      
      /* 视频列表hover上移效果 */
      .ebgl-thumbnail-group > li {
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      
      /* 视频分类标题样式增强 */
      .ebgl-breadcrumb-nav {
        margin-bottom: 15px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
      }
      
      .ebgl-breadcrumb {
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
      }
      
      .ebgl-breadcrumb-item {
        position: relative;
        display: flex;
        align-items: center;
      }
      
      .ebgl-breadcrumb-item:not(:first-child):before {
        content: "/";
        display: inline-block;
        margin: 0 10px;
        color: #aaa;
        font-size: 14px;
      }
      
      .ebgl-breadcrumb-item a {
        display: flex;
        align-items: center;
        color: #fff;
        transition: all 0.3s;
      }
      
      .ebgl-breadcrumb-item a svg {
        margin-right: 5px;
        color: #8B4513;
        opacity: 0.8;
      }
      
      .ebgl-breadcrumb-item a:hover {
        color: #8B4513;
      }
      
      .ebgl-breadcrumb-item.active {
        color: #8B4513;
      }
      
      /* 分页样式 */
      .ebgl-pagination-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin: 30px 0;
        padding-top: 20px;
        position: relative;
      }
      
      .ebgl-pagination-container:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.15), transparent);
      }
      
      .ebgl-pagination-info {
        font-size: 14px;
        color: #fff;
        margin-right: 20px;
        margin-bottom: 10px;
      }
      
      .ebgl-pagination-info span {
        color: #8B4513;
        font-weight: 500;
        margin: 0 3px;
      }
      
      .ebgl-pagination {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 10px;
        height: 36px;
      }
      
      .ebgl-page-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        margin: 0 3px;
        padding: 0 10px;
        font-size: 14px;
        color: #fff;
        background-color: rgba(127, 82, 70, 0.85);
        border: 1px solid rgba(139, 69, 19, 0.15);
        border-radius: 3px;
        transition: all 0.3s;
        text-decoration: none;
        position: relative;
        overflow: hidden;
      }
      
      .ebgl-page-btn:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.2), transparent);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
      }
      
      .ebgl-page-btn:hover {
        color: #8B4513;
        border-color: rgba(139, 69, 19, 0.3);
        background-color: rgba(127, 82, 70, 0.85);
        box-shadow: 0 2px 5px rgba(139, 69, 19, 0.08);
        transform: translateY(-1px);
      }
      
      .ebgl-page-btn:hover:before {
        transform: translateX(0);
      }
      
      .ebgl-page-btn.active {
        color: #fff;
        background-color: rgba(127, 82, 70, 0.85);
        border-color: rgba(139, 69, 19, 0.8);
        position: relative;
      }
      
      .ebgl-page-btn.active:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
      }
      
      .ebgl-page-first, .ebgl-page-prev, .ebgl-page-next, .ebgl-page-last {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      
      .ebgl-page-first svg, .ebgl-page-prev svg, .ebgl-page-next svg, .ebgl-page-last svg {
        opacity: 0.7;
        transition: opacity 0.3s;
      }
      
      .ebgl-page-btn:hover svg {
        opacity: 1;
      }
      
      .ebgl-pagination-jump {
        display: flex;
        align-items: center;
        margin-left: 15px;
        position: relative;
        height: 36px;
        vertical-align: middle;
      }
      
      .ebgl-jump-input {
        width: 60px;
        height: 36px;
        padding: 0 10px;
        font-size: 14px;
        color: #fff;
        background-color: rgba(127, 82, 70, 0.85);
        border: 1px solid rgba(139, 69, 19, 0.15);
        border-radius: 3px 0 0 3px;
        transition: all 0.3s;
        vertical-align: middle;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: textfield;
      }
      
      .ebgl-jump-input::-webkit-outer-spin-button,
      .ebgl-jump-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
      }
      
      .ebgl-jump-btn {
        height: 36px;
        padding: 0 15px;
        font-size: 14px;
        color: #fff;
        background: linear-gradient(135deg, #8B4513, #A0522D);
        border: none;
        border-radius: 0 3px 3px 0;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        vertical-align: middle;
        box-sizing: border-box;
        outline: none;
        line-height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      
      .ebgl-jump-btn:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s;
      }
      
      .ebgl-jump-btn:hover {
        background: linear-gradient(135deg, #A0522D, #8B4513);
      }
      
      .ebgl-jump-btn:hover:before {
        opacity: 1;
      }
      
      .ebgl-jump-btn:active {
        transform: translateY(1px);
      }
      
      /* 风格分页动画 */
      .ebgl-pagination-container {
        animation: huFadeIn 0.5s ease-out;
      }
      
      @keyframes huPageNumHover {
        0% {
          box-shadow: 0 0 0 rgba(139, 69, 19, 0);
        }
        50% {
          box-shadow: 0 0 8px rgba(139, 69, 19, 0.2);
        }
        100% {
          box-shadow: 0 0 5px rgba(139, 69, 19, 0.1);
        }
      }
      
      .ebgl-page-btn:hover {
        animation: huPageNumHover 0.8s ease-out forwards;
      }
      
      /* 响应式适配 */
      @media (max-width: 768px) {
        .ebgl-pagination-container {
          flex-direction: column;
          align-items: center;
        }
        
        .ebgl-pagination-info {
          margin-right: 0;
          margin-bottom: 15px;
          text-align: center;
        }
        
        .ebgl-pagination {
          margin-bottom: 15px;
          justify-content: center;
        }
        
        .ebgl-pagination-jump {
          margin-left: 0;
          margin-top: 10px;
          justify-content: center;
        }
      }
      
      /* 底部样式 */
      .ebgl-links-section {
        position: relative;
        padding: 30px 0;
        margin-top: 40px;
        background-color: rgba(127, 82, 70, 0.85);
        border-top: 1px solid rgba(139, 69, 19, 0.1);
      }
      
      .ebgl-links-section:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(to bottom, rgba(139, 69, 19, 0.05), transparent);
      }
      
      .ebgl-links-title {
        position: relative;
        font-family: "FangSong", "仿宋", serif;
        color: #fff;
        font-size: 18px;
        margin-bottom: 20px;
        padding-left: 15px;
        display: inline-block;
      }
      
      .ebgl-links-title:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 18px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 2px;
      }
      
      .ebgl-links-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
      
      .ebgl-link-item {
        display: inline-block;
        padding: 5px 12px;
        margin-right: 10px;
        margin-bottom: 10px;
        color: #fff;
        font-size: 14px;
        background-color: rgba(127, 82, 70, 0.85);
        border: 1px solid rgba(139, 69, 19, 0.1);
        border-radius: 3px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      
      .ebgl-link-item:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.2), transparent);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
      }
      
      .ebgl-link-item:hover {
        color: #8B4513;
        background-color: rgba(127, 82, 70, 0.85);
        box-shadow: 0 2px 5px rgba(139, 69, 19, 0.1);
        transform: translateY(-2px);
      }
      
      .ebgl-link-item:hover:before {
        transform: translateX(0);
      }
      
      /* 页脚样式 */
      .ebgl-footer {
        background-color: rgba(127, 82, 70, 0.85);
        position: relative;
        padding: 40px 0 20px;
        color: #fff;
        border-top: 1px solid rgba(139, 69, 19, 0.15);
        opacity: 0.95;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }
      
      .ebgl-footer:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, 
                      transparent, rgba(139, 69, 19, 0.1), 
                      rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.1), 
                      transparent);
      }
      
      .ebgl-footer:after {
        content: "";
        position: absolute;
        top: 5px;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(135deg, rgba(139, 69, 19, 0.01) 25%, transparent 25%, 
                           transparent 50%, rgba(139, 69, 19, 0.01) 50%, rgba(139, 69, 19, 0.01) 75%, 
                           transparent 75%, transparent);
        background-size: 60px 60px;
        opacity: 0.2;
        z-index: 0;
        pointer-events: none;
      }
      
      .ebgl-footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        z-index: 1;
      }
      
      .ebgl-footer-logo {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
      }
      
      .ebgl-footer-logo:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.3), transparent);
      }
      
      .ebgl-footer-logo img {
        max-width: 100px;
        height: auto;
        margin-bottom: 10px;
        filter: grayscale(20%) sepia(10%);
        transition: all 0.3s ease;
      }
      
      .ebgl-footer-logo:hover img {
        filter: grayscale(0%) sepia(20%);
      }
      
      .ebgl-footer-logo h3 {
        font-family: "FangSong", "仿宋", serif;
        font-size: 24px;
        color: #fff;
        margin: 0;
        letter-spacing: 1px;
      }
      
      .ebgl-footer-columns {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
        margin-top: 20px;
        opacity: 1;
        transform: none;
      }
      
      .ebgl-footer-column {
        flex: 1;
        min-width: 200px;
        margin-bottom: 20px;
        padding: 0 15px;
        opacity: 1;
        transform: none;
        transition: all 0.5s ease;
      }
      
      .ebgl-footer-column h4 {
        font-family: "FangSong", "仿宋", serif;
        font-size: 16px;
        color: #fff;
        margin-bottom: 15px;
        padding-bottom: 10px;
        position: relative;
        display: block;
      }
      
      .ebgl-footer-column h4:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, rgba(139, 69, 19, 0.6), transparent);
        display: block;
      }
      
      .ebgl-footer-column p {
        font-size: 14px;
        line-height: 1.6;
        color: #fff;
        margin-bottom: 10px;
        display: block;
      }
      
      .ebgl-contact-info {
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
      }
      
      .ebgl-contact-info li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        font-size: 14px;
        color: #fff;
      }
      
      .ebgl-contact-icon {
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-right: 8px;
        position: relative;
      }
      
      .ebgl-email-icon:before {
        content: "";
        position: absolute;
        width: 14px;
        height: 10px;
        border: 1px solid rgba(139, 69, 19, 0.6);
        border-radius: 1px;
        display: block;
      }
      
      .ebgl-email-icon:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        border-style: solid;
        border-width: 5px 7px;
        border-color: rgba(139, 69, 19, 0.6) transparent transparent transparent;
        transform: rotate(180deg);
        display: block;
      }
      
      .ebgl-tg-icon:before {
        content: "";
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 1px solid rgba(139, 69, 19, 0.6);
      }
      
      .ebgl-tg-icon:after {
        content: "";
        position: absolute;
        top: 4px;
        left: 4px;
        width: 8px;
        height: 8px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 1px;
        transform: rotate(45deg);
      }
      
      .ebgl-footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid rgba(139, 69, 19, 0.1);
        position: relative;
        z-index: 1;
      }
      
      .ebgl-copyright {
        font-size: 13px;
        color: #fff;
      }
      
      .ebgl-footer-links {
        display: flex;
        gap: 20px;
      }
      
      .ebgl-footer-links a {
        font-size: 13px;
        color: #fff;
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease;
      }
      
      .ebgl-footer-links a:before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: rgba(127, 82, 70, 0.85);
        transition: width 0.3s ease;
      }
      
      .ebgl-footer-links a:hover {
        color: #8B4513;
      }
      
      .ebgl-footer-links a:hover:before {
        width: 100%;
      }
      
      .ebgl-back-to-top {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
      }
      
      .ebgl-back-to-top-icon {
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-left: 5px;
        position: relative;
      }
      
      .ebgl-back-to-top-icon:before {
        content: "";
        position: absolute;
        top: 4px;
        left: 0;
        width: 8px;
        height: 8px;
        border-top: 1px solid #666;
        border-right: 1px solid #666;
        transform: rotate(-45deg);
        transition: all 0.3s ease;
      }
      
      .ebgl-back-to-top:hover .ebgl-back-to-top-icon:before {
        border-color: #8B4513;
        transform: rotate(-45deg) translate(-2px, 2px);
      }
      
      /* 媒体查询 */
      @media (max-width: 768px) {
        .ebgl-footer-columns {
          flex-direction: column;
        }
        
        .ebgl-footer-column {
          flex: 0 0 100%;
          max-width: 100%;
          margin-bottom: 20px;
          padding: 0;
          width: 100%;
        }
        
        .ebgl-footer-bottom {
          flex-direction: column;
          text-align: center;
        }
        
        .ebgl-copyright {
          margin-bottom: 15px;
        }
        
        .ebgl-footer-links {
          justify-content: center;
        }
      }
      
      /* 底部增强样式 */
      .ebgl-ink-dot {
        display: inline-block;
        width: 6px;
        height: 6px;
        background: #fdc888;
        border-radius: 50%;
        margin-right: 8px;
        position: relative;
        top: -1px;
        opacity: 0.7;
      }
      
      .ebgl-ink-dot-small {
        display: inline-block;
        width: 4px;
        height: 4px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50%;
        margin-right: 6px;
        position: relative;
        top: -1px;
      }
      
      .ebgl-ink-brush-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50% 50% 50% 0;
        margin-right: 8px;
        position: relative;
        top: -1px;
        transform: rotate(-45deg);
      }
      
      .ebgl-ink-text-small {
        position: relative;
        display: inline-block;
        transition: all 0.3s ease;
      }
      
      .ebgl-ink-text-hover {
        color: #8B4513;
        text-shadow: 0 0 1px rgba(139, 69, 19, 0.2);
      }
      
      .ebgl-ink-border-top {
        height: 3px;
        background: linear-gradient(to right, 
                      transparent, rgba(139, 69, 19, 0.2), 
                      rgba(139, 69, 19, 0.3), rgba(139, 69, 19, 0.2), 
                      transparent);
        margin-bottom: 20px;
      }
      
      .ebgl-ink-logo-frame {
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
      }
      
      .ebgl-ink-logo-frame:before {
        content: "";
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border: 1px solid rgba(139, 69, 19, 0.2);
        border-radius: 3px;
        opacity: 0;
        transform: scale(1.1);
        transition: all 0.3s ease;
      }
      
      .ebgl-footer-logo:hover .ebgl-ink-logo-frame:before {
        opacity: 1;
        transform: scale(1);
      }
      
      .ebgl-ink-brush-text {
        position: relative;
        font-family: "FangSong", "仿宋", serif;
        letter-spacing: 2px;
        display: inline-block;
      }
      
      .ebgl-ink-brush-text:before {
        content: "";
        position: absolute;
        left: -10px;
        bottom: 5px;
        width: 6px;
        height: 6px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg);
        opacity: 0.7;
      }
      
      .ebgl-ink-brush-text:after {
        content: "";
        position: absolute;
        right: -10px;
        bottom: 5px;
        width: 6px;
        height: 6px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg);
        opacity: 0.7;
      }
      
      .ebgl-ink-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.2), transparent);
        margin-bottom: 20px;
        position: relative;
      }
      
      .ebgl-ink-divider:before {
        content: "";
        position: absolute;
        top: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50%;
      }
      
      .ebgl-ink-seal {
        position: absolute;
        bottom: 10px;
        right: 15px;
        width: 50px;
        height: 50px;
        opacity: 0;
        transform: rotate(10deg) scale(0.8);
        transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        pointer-events: none;
      }
      
      .ebgl-ink-seal:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid rgba(139, 69, 19, 0.6);
        border-radius: 3px;
        transform: rotate(-5deg);
      }
      
      .ebgl-ink-seal:after {
        content: "印";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: "FangSong", "仿宋", serif;
        font-size: 24px;
        color: rgba(139, 69, 19, 0.6);
      }
      
      .ebgl-show-seal {
        opacity: 0.7;
        transform: rotate(0) scale(1);
      }
      
      .ebgl-ink-scroll-decoration {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        overflow: hidden;
        z-index: 2;
      }
      
      .ebgl-ink-scroll-decoration:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50%;
        border: 1px solid rgba(139, 69, 19, 0.15);
      }
      
      .ebgl-ink-scroll-decoration:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 10px;
        transform: translate(-50%, -50%) rotate(-45deg);
        border-bottom: 2px solid rgba(139, 69, 19, 0.5);
        border-right: 2px solid rgba(139, 69, 19, 0.5);
      }
      
      /* 底部动画效果 */
      .ebgl-footer-loaded {
        opacity: 1;
        transform: translateY(0);
      }
      
      .ebgl-column-show {
        opacity: 1;
        transform: translateY(0);
      }
      
      .ebgl-divider-show {
        animation: huDividerShow 1s ease-out forwards;
      }
      
      @keyframes huDividerShow {
        0% {
          background: linear-gradient(90deg, transparent, transparent, transparent);
          opacity: 0;
        }
        50% {
          background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.3), transparent);
          opacity: 1;
        }
        100% {
          background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.2), transparent);
          opacity: 1;
        }
      }
      
      .ebgl-fade-in {
        animation: huFadeIn 1s ease-out forwards;
      }
      
      @keyframes huFadeIn {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      .ebgl-ink-drop-footer {
        position: absolute;
        z-index: 2;
        pointer-events: none;
      }
      
      .ebgl-scroll-visible {
        animation: huScrollPulse 2s infinite;
      }
      
      @keyframes huScrollPulse {
        0% {
          transform: translateX(-50%);
        }
        50% {
          transform: translateX(-50%) translateY(-5px);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      
      .ebgl-visible {
        opacity: 1;
        transform: translateY(0);
      }
      
      /* 内容正常显示 */
      .ebgl-footer-loaded .ebgl-footer-column {
        opacity: 1;
        transform: translateY(0);
      }
      
      /* 修复布局在较小屏幕上的问题 */
      @media (max-width: 992px) {
        .ebgl-footer-columns {
          display: flex;
          flex-direction: column;
        }
        
        .ebgl-footer-column {
          flex: 0 0 100%;
          max-width: 100%;
          margin-bottom: 30px;
        }
      }
      
      /* 分页特效 */
      .ebgl-ink-splash-pagination {
        position: absolute;
        z-index: 1;
        pointer-events: none;
      }
      
      .ebgl-jump-error {
        animation: huJumpError 0.6s ease;
        border-color: rgba(220, 53, 69, 0.5) !important;
      }
      
      @keyframes huJumpError {
        0%, 100% {
          transform: translateX(0);
        }
        10%, 30%, 50%, 70%, 90% {
          transform: translateX(-2px);
        }
        20%, 40%, 60%, 80% {
          transform: translateX(2px);
        }
      }
      
      /* 修复默认分页样式，兼容性 */
      .page {
        display: none;
      }
      
      /* 风分页图标 */
      .ebgl-page-first, .ebgl-page-prev, .ebgl-page-next, .ebgl-page-last {
        position: relative;
      }
      
      .ebgl-page-first:before, .ebgl-page-last:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s;
        border-radius: 3px;
      }
      
      .ebgl-page-first:hover:before, .ebgl-page-last:hover:before {
        opacity: 1;
      }
      
      /* 页数高亮装饰 */
      .ebgl-page-btn.active:before {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        top: 4px;
        right: 4px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50%;
        opacity: 0.7;
      }
      
      /* 分页按钮禁用样式 */
      .ebgl-page-btn.disabled {
        color: #aaa;
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
      }
      
      /* 强化分页跳转按钮风格 */
      .ebgl-jump-btn:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 1px;
        background-color: rgba(127, 82, 70, 0.85);
        transition: width 0.3s ease;
      }
      
      .ebgl-jump-btn:hover:after {
        width: 80%;
      }
      
      /* 修复输入框焦点效果 */
      .ebgl-jump-input:focus {
        outline: none;
        border-color: rgba(139, 69, 19, 0.4);
        background: #fdc888;
        box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.05);
      }
      
      /* 使分页容器内元素保持水平对齐 */
      @media (min-width: 769px) {
        .ebgl-pagination-container {
          display: flex;
          align-items: center;
          justify-content: center;
        }
        
        .ebgl-pagination-info, .ebgl-pagination, .ebgl-pagination-jump {
          margin-bottom: 0; /* 移除移动端的下边距 */
          display: flex;
          align-items: center;
        }
      }
      
      /* 添加风格输入框占位符样式 */
      .ebgl-jump-input::placeholder {
        color: #aaa;
        font-style: italic;
        opacity: 0.7;
      }
      
      /* 修复在Safari和iOS上的显示问题 */
      @supports (-webkit-touch-callout: none) {
        .ebgl-jump-input {
          line-height: normal;
        }
        
        .ebgl-jump-btn {
          line-height: normal;
        }
      }
      
      /* 视频详情页样式 */
      .ebgl-movie-detail {
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 5px;
        border: 1px solid rgba(139, 69, 19, 0.1);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
      }
      
      .ebgl-movie-detail:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.4), transparent);
        z-index: 1;
      }
      
      .ebgl-movie-detail:after {
        content: "";
        position: absolute;
        top: 3px;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(139, 69, 19, 0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.5;
        z-index: 0;
      }
      
      .ebgl-movie-info-container {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 30px;
      }
      
      .ebgl-movie-poster {
        max-width: 220px;
        width: 100%;
        margin-right: 30px;
        margin-bottom: 20px;
      }
      
      @media (max-width: 768px) {
        .ebgl-movie-info-container {
          flex-direction: column;
        }
        
        .ebgl-movie-poster {
          max-width: 180px;
          margin: 0 auto 20px;
        }
      }
      
      /* 海报容器比例正确 */
      .ebgl-poster-wrap {
        position: relative;
        padding-bottom: 150%; /* 2:3的竖图比例 */
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        background: #fdc888;
        border: 1px solid rgba(139, 69, 19, 0.1);
        overflow: hidden;
        margin: 0 auto;
        z-index: 1; /* 确保不会覆盖按钮 */
      }
      
      /* 海报图片填充容器且不变形 */
      .ebgl-poster-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 3px;
        transition: all 0.5s ease;
        object-fit: cover; /* 竖图能完整显示 */
      }
      
      .ebgl-movie-score {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        background: rgba(139, 69, 19, 0.8);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        z-index: 2;
      }
      
      .ebgl-play-btn {
        display: block;
        text-align: center;
        background: linear-gradient(135deg, #8B4513, #A0522D);
        color: #fff;
        padding: 10px 0;
        border-radius: 3px;
        font-size: 16px;
        margin-top: 15px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-decoration: none;
        z-index: 10; /* 提高z-index确保按钮可点击 */
        cursor: pointer; /* 添加指针光标 */
      }
      
      .ebgl-play-btn:hover {
        background: linear-gradient(135deg, #A0522D, #8B4513);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(139, 69, 19, 0.2);
      }
      
      .ebgl-play-btn:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s;
      }
      
      .ebgl-play-btn:hover:before {
        opacity: 1;
      }
      
      .ebgl-play-btn:active {
        transform: translateY(0);
      }
      
      .ebgl-play-btn svg {
        vertical-align: middle;
        margin-right: 5px;
        position: relative;
        top: -1px;
      }
      
      .ebgl-movie-info {
        flex: 1;
        min-width: 0;
      }
      
      .ebgl-movie-title {
        font-family: "FangSong", "仿宋", serif;
        font-size: 28px;
        color: #fff;
        margin: 0 0 5px;
        position: relative;
        padding-bottom: 10px;
        display: inline-block;
      }
      
      .ebgl-movie-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, rgba(139, 69, 19, 0.7), transparent);
      }
      
      .ebgl-movie-subtitle {
        font-size: 16px;
        color: #fff;
        margin: 0 0 15px;
        font-weight: normal;
        font-style: italic;
      }
      
      .ebgl-movie-meta {
        margin-bottom: 20px;
      }
      
      .ebgl-meta-item {
        margin-bottom: 8px;
        line-height: 1.6;
        font-size: 14px;
        color: #fff;
        position: relative;
        padding-left: 12px;
      }
      
      .ebgl-meta-item:before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        width: 4px;
        height: 4px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50%;
      }
      
      .ebgl-meta-label {
        color: #8B4513;
        font-weight: 500;
      }
      
      .ebgl-movie-action {
        display: flex;
        margin-top: 20px;
      }
      
      .ebgl-action-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: 0 20px;
        border-radius: 3px;
        font-size: 15px;
        transition: all 0.3s ease;
        margin-right: 15px;
        text-decoration: none;
      }
      
      .ebgl-btn-play {
        background: linear-gradient(135deg, #8B4513, #A0522D);
        color: #fff;
        position: relative;
        overflow: hidden;
        z-index: 10; /* 提高z-index确保按钮可点击 */
        cursor: pointer; /* 添加指针光标 */
      }
      
      .ebgl-btn-play:hover {
        background: linear-gradient(135deg, #A0522D, #8B4513);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(139, 69, 19, 0.2);
      }
      
      .ebgl-btn-play:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s;
      }
      
      .ebgl-btn-play:hover:before {
        opacity: 1;
      }
      
      .ebgl-btn-collect {
        background-color: rgba(127, 82, 70, 0.85);
        border: 1px solid rgba(139, 69, 19, 0.3);
        color: #8B4513;
      }
      
      .ebgl-btn-collect:hover {
        background: #fdc888;
        border-color: rgba(139, 69, 19, 0.5);
        color: #8B4513;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      }
      
      .ebgl-movie-desc, .ebgl-movie-episodes {
        padding: 0 25px 25px;
        position: relative;
        z-index: 1;
      }
      
      .ebgl-section-title {
        font-family: "FangSong", "仿宋", serif;
        font-size: 20px;
        color: #fff;
        margin-bottom: 15px;
        padding-left: 15px;
        position: relative;
      }
      
      .ebgl-section-title:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 20px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 2px;
      }
      
      .ebgl-section-content {
        font-size: 15px;
        line-height: 1.8;
        color: #fff;
      }
      
      .ebgl-episode-tabs {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        margin-bottom: 15px;
      }
      
      .ebgl-episode-tab {
        padding: 8px 20px;
        margin-right: 5px;
        margin-bottom: -1px;
        cursor: pointer;
        font-size: 15px;
        color: #fff;
        border: 1px solid transparent;
        border-bottom: none;
        border-radius: 3px 3px 0 0;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      
      .ebgl-episode-tab:hover {
        color: #8B4513;
        background-color: rgba(127, 82, 70, 0.85);
      }
      
      .ebgl-episode-tab.active {
        color: #8B4513;
        border-color: rgba(139, 69, 19, 0.1);
        background: #fdc888;
      }
      
      .ebgl-episode-tab.active:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background-color: rgba(127, 82, 70, 0.85);
      }
      
      .ebgl-episode-list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -5px;
      }
      
      .ebgl-episode-item {
        flex: 0 0 calc(20% - 10px);
        margin: 0 5px 10px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        background-color: rgba(127, 82, 70, 0.85);
        border: 1px solid rgba(139, 69, 19, 0.1);
        border-radius: 3px;
        color: #fff;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
      }
      
      @media (max-width: 992px) {
        .ebgl-episode-item {
          flex: 0 0 calc(25% - 10px);
        }
      }
      
      @media (max-width: 768px) {
        .ebgl-episode-item {
          flex: 0 0 calc(33.333% - 10px);
        }
      }
      
      @media (max-width: 576px) {
        .ebgl-episode-item {
          flex: 0 0 calc(50% - 10px);
        }
      }
      
      .ebgl-episode-item:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.2), transparent);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
      }
      
      .ebgl-episode-item:hover {
        color: #8B4513;
        background: #fdc888;
        border-color: rgba(139, 69, 19, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
      }
      
      .ebgl-episode-item:hover:before {
        transform: translateX(0);
      }
      
      /* 视频播放器样式 */
      .ebgl-huudi {
        background: #fdc888; /* 改为纯黑色背景，更适合视频播放 */
        border-radius: 5px;
        border: 1px solid rgba(139, 69, 19, 0.1);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9宽高比 */
      }
      
      .ebgl-huudi:before {
        display: none; /* 移除顶部渐变装饰 */
      }
      
      .ebgl-huudi iframe,
      .ebgl-huudi video,
      .ebgl-huudi embed,
      .ebgl-huudi object {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        object-fit: fill;
        z-index: 1; /* 视频内容在最上层 */
      }
      
      /* 所有播放器容器内的内容也是铺满的 */
      .ebgl-huudi > div,
      .ebgl-huudi > div > div,
      .ebgl-huudi > div > div > div {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important; /* 背景透明，避免遮挡 */
        z-index: auto !important; /* 重置z-index */
      }
      
      /* 第三方播放器内容铺满 */
      .ebgl-huudi #playerCnt,
      .ebgl-huudi #dplayer,
      .ebgl-huudi .MacPlayer,
      .ebgl-huudi .MacPlayer > iframe,
      .ebgl-huudi .MacPlayer > video,
      .ebgl-huudi .MacPlayer > div {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        object-fit: fill !important;
        background: transparent !important;
        z-index: auto !important;
      }
      
      /* 修复特定播放器可能存在的问题 */
      .ebgl-huudi #playleft,
      .ebgl-huudi .playleft,
      .ebgl-huudi .MacPlayer > script + div {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        background: transparent !important;
      }
      
      /* 播放器中的iframe铺满 */
      .ebgl-huudi iframe {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 2 !important;
      }
      
      /* 移除装饰元素 */
      .ebgl-play-decoration {
        display: none !important;
      }
      
      /* 动效 - 移除 */
      .ebgl-ink-flow {
        display: none !important;
      }
      
      /* 移除播放器控制条自定义样式 */
      .ebgl-player-controls {
        display: none !important;
      }
      
      /* 移除播放器加载动画 */
      .ebgl-player-loading {
        display: none !important;
      }
      
      /* 视频播放页信息 */
      .ebgl-play-info {
        display: flex;
        flex-wrap: wrap;
        padding: 20px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 5px;
        border: 1px solid rgba(139, 69, 19, 0.1);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        position: relative;
      }
      
      .ebgl-play-info:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.4), transparent);
        z-index: 1;
      }
      
      .ebgl-play-title {
        flex: 0 0 100%;
        font-family: "FangSong", "仿宋", serif;
        font-size: 22px;
        color: #fff;
        margin: 0 0 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        position: relative;
      }
      
      .ebgl-play-title a {
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      
      .ebgl-play-title a:hover {
        color: #8B4513;
      }
      
      .ebgl-play-meta {
        flex: 1;
        font-size: 14px;
        color: #fff;
      }
      
      .ebgl-play-meta p {
        margin: 0 0 5px;
        line-height: 1.6;
        position: relative;
        padding-left: 12px;
      }
      
      .ebgl-play-meta p:before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        width: 4px;
        height: 4px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 50%;
      }
      
      .ebgl-play-action {
        flex: 0 0 250px;
        text-align: right;
      }
      
      .ebgl-play-btn-detail {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        padding: 0 20px;
        background-color: rgba(127, 82, 70, 0.85);
        border: 1px solid rgba(139, 69, 19, 0.3);
        border-radius: 3px;
        color: #8B4513;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      
      .ebgl-play-btn-detail:hover {
        background: #fdc888;
        border-color: rgba(139, 69, 19, 0.5);
        color: #8B4513;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      }
      
      /* 播放器页面选集列表 */
      .ebgl-play-episodes {
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 5px;
        border: 1px solid rgba(139, 69, 19, 0.1);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
        padding: 20px;
      }
      
      .ebgl-play-episodes:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.4), transparent);
        z-index: 1;
      }
      
      .ebgl-play-episodes-title {
        font-family: "FangSong", "仿宋", serif;
        font-size: 18px;
        color: #fff;
        margin-bottom: 15px;
        padding-left: 15px;
        position: relative;
      }
      
      .ebgl-play-episodes-title:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 18px;
        background-color: rgba(127, 82, 70, 0.85);
        border-radius: 2px;
      }
      
      /* 效果装饰 */
      .ebgl-ink-decoration-video {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 80px;
        height: 80px;
        pointer-events: none;
        z-index: 1;
        opacity: 0.2;
      }
      
      .ebgl-ink-decoration-video:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 40 A 20 20 0 1 0 60 60 L 60 40 Z' fill='none' stroke='rgba(139, 69, 19, 0.8)' stroke-width='1'/%3E%3C/svg%3E");
        transform: rotate(45deg);
      }
      
      /* 动效 */
      @keyframes huInkFlow {
        0% {
          transform: translateY(-20px) rotate(0deg);
          opacity: 0;
        }
        50% {
          opacity: 0.5;
        }
        100% {
          transform: translateY(20px) rotate(10deg);
          opacity: 0;
        }
      }
      
      .ebgl-ink-flow {
        position: absolute;
        width: 30px;
        height: 30px;
        background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 15 A 8 8 0 1 0 20 20 L 10 20 Z' fill='rgba(139, 69, 19, 0.2)' stroke='none'/%3E%3C/svg%3E");
        animation: huInkFlow 8s ease-in-out infinite;
        pointer-events: none;
      }
      
      /* 播放器控制条自定义样式 */
      .ebgl-player-controls {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: rgba(0, 0, 0, 0.6);
        z-index: 10;
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      
      .ebgl-huudi:hover .ebgl-player-controls {
        opacity: 1;
      }
      
      /* 响应式调整 */
      @media (max-width: 768px) {
        .ebgl-play-info {
          flex-direction: column;
        }
        
        .ebgl-play-action {
          flex: 0 0 auto;
          text-align: left;
          margin-top: 15px;
        }
        
        .ebgl-movie-action {
          flex-wrap: wrap;
        }
        
        .ebgl-action-btn {
          margin-bottom: 10px;
        }
      }
      
      /* 视频播放页增强样式 */
      .ebgl-episode-item.active {
        background: linear-gradient(135deg, #8B4513, #A0522D);
        color: #fff;
        border-color: rgba(139, 69, 19, 0.5);
        box-shadow: 0 3px 8px rgba(139, 69, 19, 0.2);
      }
      
      .ebgl-episode-item.active:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
      }
      
      .ebgl-play-episodes {
        margin-top: 20px;
      }
      
      .ebgl-play-episodes .ebgl-episode-tabs {
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        margin-bottom: 15px;
      }
      
      .ebgl-play-episodes .ebgl-episode-list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -5px;
      }
      
      /* 播放页面装饰 */
      .ebgl-play-decoration {
        position: absolute;
        top: -30px;
        right: 30px;
        width: 60px;
        height: 60px;
        opacity: 0.2;
        z-index: 0;
        pointer-events: none;
      }
      
      .ebgl-play-decoration:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30 A 15 15 0 1 0 45 45 L 15 45 Z' fill='rgba(139, 69, 19, 0.3)' stroke='none'/%3E%3C/svg%3E");
        animation: huRotate 20s linear infinite;
      }
      
      @keyframes huRotate {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }
      
      /* 风播放器加载动画 */
      .ebgl-player-loading {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(127, 82, 70, 0.85);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9;
      }
      
      .ebgl-player-loading:before {
        content: "";
        width: 50px;
        height: 50px;
        border: 3px solid rgba(139, 69, 19, 0.1);
        border-top: 3px solid rgba(139, 69, 19, 0.6);
        border-radius: 50%;
        animation: huSpin 1s linear infinite;
      }
      
      @keyframes huSpin {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }
      
      /* 风格视频控制条 */
      .ebgl-custom-controls {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        display: flex;
        align-items: center;
        padding: 0 15px;
        box-sizing: border-box;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 5;
      }
      
      .ebgl-huudi:hover .ebgl-custom-controls {
        opacity: 1;
      }
      
      .ebgl-control-btn {
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        opacity: 0.8;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .ebgl-control-btn:hover {
        opacity: 1;
      }
      
      .ebgl-progress-bar {
        flex: 1;
        height: 4px;
        background-color: rgba(127, 82, 70, 0.85);
        margin: 0 10px;
        position: relative;
        border-radius: 2px;
        overflow: hidden;
        cursor: pointer;
      }
      
      .ebgl-progress-inner {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: linear-gradient(90deg, #8B4513, #A0522D);
        border-radius: 2px;
      }
      
      /* 视频播放页面UI响应式调整 */
      @media (max-width: 768px) {
        .ebgl-play-episodes .ebgl-episode-item {
          flex: 0 0 calc(33.33% - 10px);
          font-size: 13px;
        }
        
        .ebgl-play-episodes .ebgl-episode-tab {
          padding: 6px 12px;
          font-size: 14px;
        }
      }
      
      @media (max-width: 576px) {
        .ebgl-play-episodes .ebgl-episode-item {
          flex: 0 0 calc(50% - 10px);
        }
        
        .ebgl-play-episodes .ebgl-episode-tabs {
          overflow-x: auto;
          white-space: nowrap;
          display: block;
          padding-bottom: 10px;
        }
        
        .ebgl-play-episodes .ebgl-episode-tab {
          display: inline-block;
          margin-bottom: 5px;
        }
        
        .ebgl-custom-controls {
          padding: 0 10px;
        }
        
        .ebgl-control-btn {
          width: 28px;
          height: 28px;
        }
      }
      
      /* 面包屑增强样式 */
      .ebgl-breadcrumb-nav {
        position: relative;
        margin-bottom: 20px;
      }
      
      .ebgl-breadcrumb-nav:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.15), transparent);
      }
      
      .ebgl-breadcrumb {
        padding: 10px 0;
      }
      
      .ebgl-breadcrumb-item a {
        position: relative;
        overflow: hidden;
      }
      
      .ebgl-breadcrumb-item a:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: rgba(127, 82, 70, 0.85);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
      }
      
      .ebgl-breadcrumb-item a:hover:after {
        transform: translateX(0);
      }
      
      .ebgl-breadcrumb-item.active {
        font-weight: 500;
        color: #8B4513;
      }
      
      .ebgl-breadcrumb-item:not(:first-child):before {
        color: #aaa;
      }
      
      /* 动画效果增强 */
      .ebgl-ink-splash-effect {
        position: absolute;
        z-index: 2;
        pointer-events: none;
        border-radius: 50% 50% 50% 0;
        background-color: rgba(127, 82, 70, 0.85);
        transform: translate(-50%, -50%) scale(0) rotate(-45deg);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
      }
      
      /* 所有视频封面一致的尺寸 */
      @media (max-width: 1200px), (max-width: 992px), (max-width: 768px), (max-width: 576px) {
        .ebgl-thumbnail-group > li {
          margin-bottom: 20px; /* 统一底部间距 */
        }
        
        .ebgl-thumbnail, .ebgl-poster-wrap {
          padding-bottom: 150%; /* 保持统一竖图比例 */
        }
      }
      
      /* 移动设备上的额外优化 */
      @media (max-width: 576px) {
        .ebgl-thumbnail-group {
          margin: 0 -5px;
        }
        
        .ebgl-thumbnail-group > li {
          width: calc(50% - 10px);
          margin: 0 5px 15px;
        }
        
        .ebgl-thumbnail {
          padding-bottom: 150%;
          border-radius: 3px;
        }
        
        .ebgl-video-info {
          padding: 8px 5px;
        }
        
        .ebgl-video-info h5 {
          font-size: 14px;
          height: 38px;
          -webkit-line-clamp: 2;
        }
        
        .ebgl-video-info p {
          font-size: 11px;
          margin-top: 3px;
        }
        
        /* 电影海报在手机上*/
        .ebgl-movie-poster {
          max-width: 180px;
          margin: 0 auto 15px;
        }
        
        .ebgl-poster-wrap {
          padding-bottom: 150%;
          border-radius: 4px;
        }
      }
      
      /* 海报鼠标悬停效果 */
      .ebgl-poster-wrap:hover img {
        transform: scale(1.03);
      }
      
      /* 海报装饰边框 */
      .ebgl-poster-wrap:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 4px;
        z-index: 1;
        pointer-events: none;
      }
      
      /* 视频标签和时间在竖图上显示正确 */
      .ebgl-video-tag, .ebgl-video-time {
        z-index: 5;
      }
      
      /* 缩略图悬停效果正常 */
      .ebgl-thumbnail:hover img {
        transform: scale(1.05);
      }
      @media (max-width: 767px) {
          .ebgl-footer-columns {
              display: block !important;
              padding: 0 15px; /* 增加手机端左右边距 */
          }
      
          .ebgl-footer-column {
              /* 手机端每个栏目占满整行 */
              width: 100% !important;
              margin-bottom: 30px; /* 栏目间间距 */
              float: none !important; /* 清除可能的浮动样式 */
              display: block !important; /* 块级显示 */
          }
      
          /* 优化子元素在小屏幕的显示 */
          .ebgl-footer-column h4 {
              font-size: 16px; /* 缩小标题字体 */
              margin-bottom: 12px;
          }
      
          .ebgl-footer-column p {
              font-size: 14px;
              line-height: 1.6;
          }
      
          .ebgl-contact-info {
              padding-left: 20px; /* 联系信息列表左缩进 */
          }
      }
      
      /* 懒加载图片样式 */
      .ebgl-lazyload {
        opacity: 0.5;
        transition: opacity 0.3s;
        min-height: 50px;
        background-size: 40px auto;
        background-position: center center;
        background-repeat: no-repeat;
      }
      
      .ebgl-lazyloaded {
        opacity: 1;
      }
      
      .ebgl-lazyload-error {
        opacity: 0.2;
      }
      
      /* 调整封面容器样式，在图片加载前保持适当的尺寸 */
      .ebgl-thumbnail {
        background-color: rgba(127, 82, 70, 0.85);
        background-image: url('../../static/image/loading.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 40px auto;
      }
      
      /* 懒加载背景图片样式 */
      .lazy-load {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        transition: opacity 0.3s ease;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.8;
        border-radius: inherit;
      }
      
      .lazy-load.loaded {
        opacity: 1;
      }
      
      .ebgl-video-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: all 0.3s ease;
        z-index: 0; /* 确保图片层级低于按钮 */
      }