/**
██   ██ ██    ██ ██████  ██  ██████ ███    ███ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ████  ████ ██      
███████ ██    ██ ██   ██ ██ ██      ██ ████ ██ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ██  ██  ██      ██ 
██   ██  ██████  ██████  ██  ██████ ██      ██ ███████ 
            ===========================================
 * @Sign
================================
        Keep calm and get rich.
                    Is the best huudi.
 */
 
/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    background: #a9b958;
    color: #333;
    line-height: 1.6;
}

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

ul, li {
    list-style: none;
}

.hiqu-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部UI */
.hiqu-header-wrapper {
    position: relative;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    overflow: hidden;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hiqu-header-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='noise' x='0%25' y='0%25' width='100%25' height='100%25'%3E%3CfeTurbulence baseFrequency='0.05' numOctaves='3' seed='1' result='noise'/%3E%3CfeDisplacementMap in='SourceGraphic' in2='noise' scale='5' xChannelSelector='R' yChannelSelector='G'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.hiqu-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 2;
}

.hiqu-logo {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 5px 15px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hiqu-logo:hover {
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hiqu-search {
    position: relative;
    width: 50%;
    max-width: 500px;
}

.hiqu-searchbar-wrapper {
    display: flex;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.hiqu-search-input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all 0.3s ease;
}

.hiqu-search-input:focus {
    background: #a9b958;
}

.hiqu-search-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 15px;
    background: #a9b958;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    transition: all 0.3s ease;
}

.hiqu-search-button:hover {
    background: #a9b958;
}

/* 导航菜单 */
.hiqu-nav-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
    margin: 10px 20px;
}

.hiqu-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    padding: 0 10px;
    scrollbar-width: none;
}

.hiqu-nav::-webkit-scrollbar {
    display: none;
}

.hiqu-nav a {
    position: relative;
    display: inline-block;
    padding: 12px 20px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0 2px;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.hiqu-nav a:hover,
.hiqu-nav a.hiqu-focu {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.hiqu-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hiqu-nav a:hover::before,
.hiqu-nav a.hiqu-focu::before {
    opacity: 1;
}

/* 热搜词汇区域 */
.hiqu-main-container {
    position: relative;
    margin-top: 15px;
    background: #a9b958;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hiqu-title {
    position: relative;
    padding: 12px 20px;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}

.hiqu-title-link {
    display: flex;
    align-items: center;
}

.hiqu-tags-box {
    padding: 15px;
}

.hiqu-tags {
    display: flex;
    flex-wrap: wrap;
}

.hiqu-label2 {
    width: 100%;
}

.hiqu-web_list {
    display: flex;
    flex-wrap: wrap;
}

.hiqu-web_list a {
    display: inline-block;
    margin: 5px;
    padding: 5px 12px;
    background: #a9b958;
    color: #333;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
}

.hiqu-web_list a:hover {
    background: #a9b958;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hiqu-header {
        flex-direction: column;
        padding: 10px;
    }
    
    .hiqu-logo {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }
    
    .hiqu-search {
        width: 100%;
        max-width: 100%;
    }
    
    .hiqu-nav a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* 低多边形动画效果 */
@keyframes hiqu-polygon-pulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

.hiqu-polygon {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    animation: hiqu-polygon-pulse 4s infinite ease-in-out;
    z-index: 1;
}

.hiqu-polygon-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 80px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 0s;
}

.hiqu-polygon-2 {
    top: 30%;
    right: 10%;
    width: 120px;
    height: 100px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: 1s;
}

.hiqu-polygon-3 {
    bottom: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 2s;
}

.hiqu-polygon-4 {
    bottom: 10%;
    right: 20%;
    width: 70px;
    height: 90px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    animation-delay: 3s;
}

/* 视频列表 */
.hiqu-pic {
    margin: 20px 0;
}

.hiqu-pic ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hiqu-pic li {
    position: relative;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hiqu-pic li:hover {
    transform: translateY(-5px);
}

.hiqu-video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.hiqu-vertical-cover {
    position: relative;
    padding-bottom: 140%;
    background: #a9b958;
    clip-path: polygon(0% 0%, 100% 0%, 95% 95%, 5% 100%);
}

.hiqu-vertical-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.hiqu-pic li:hover .hiqu-vertical-cover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hiqu-pic li:hover .hiqu-vertical-cover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.hiqu-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 2;
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.hiqu-thumbnail-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 15px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    z-index: 2;
    transform: translateZ(20px);
    clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0% 100%);
}

.hiqu-video-name {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hiqu-video-episode {
    margin-top: 5px;
    font-size: 12px;
    opacity: 0.8;
}

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

.hiqu-video-overlay i {
    font-size: 50px;
    color: #fff;
    opacity: 0.8;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.hiqu-play-symbol {
    font-size: 50px;
    color: #fff;
    opacity: 0.8;
    transform: scale(0.8);
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hiqu-pic li:hover .hiqu-video-overlay i,
.hiqu-pic li:hover .hiqu-video-overlay .hiqu-play-symbol {
    transform: scale(1);
    opacity: 1;
}

/* 低多边形装饰元素 */
.hiqu-polygon-decoration {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.hiqu-polygon-1 {
    top: -50px;
    left: 5%;
    width: 150px;
    height: 150px;
    background: #a9b958;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.hiqu-polygon-2 {
    bottom: -80px;
    right: 10%;
    width: 200px;
    height: 200px;
    background: #a9b958;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* 视频卡片悬停效果 */
.hiqu-vods li {
    position: relative;
    overflow: visible;
}

.hiqu-vods li::before,
.hiqu-vods li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0%, 95% 95%, 5% 100%);
}

.hiqu-vods li::before {
    top: 10px;
    left: -5px;
    transform: rotate(-3deg);
}

.hiqu-vods li::after {
    top: 5px;
    right: -5px;
    transform: rotate(2deg);
}

.hiqu-vods li:hover::before {
    transform: rotate(-5deg) translateX(-2px);
}

.hiqu-vods li:hover::after {
    transform: rotate(4deg) translateX(2px);
}

/* 视频列表标题 */
.hiqu-category-header {
    position: relative;
    margin: 30px 0 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hiqu-category-header h2 {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hiqu-category-header h2 i {
    margin-right: 10px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .hiqu-pic ul {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hiqu-pic ul {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .hiqu-video-name {
        font-size: 14px;
    }
    
    .hiqu-video-episode {
        font-size: 10px;
    }
    
    .hiqu-category-header h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hiqu-pic ul {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 8px;
    }
}

/* 分页样式 */
.hiqu-pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.hiqu-pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.hiqu-pagination li {
    margin: 0 3px;
}

.hiqu-pagination a,
.hiqu-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #a9b958;
    color: #333;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

/* 页码信息显示区域特殊样式 */
.hiqu-pagination-info {
    display: flex;
    align-items: center;
}

.hiqu-pagination-info span {
    width: auto;
    min-width: 40px;
    max-width: none;
    padding: 0 10px;
    font-size: 16px;
    white-space: nowrap;
    overflow: visible;
}

/* 上一页和下一页的箭头符号样式 */
.hiqu-pagination a[title="上一页"],
.hiqu-pagination a[title="下一页"] {
    font-size: 20px;
    font-weight: bold;
}

.hiqu-pagination a[title="上一页"] {
    padding-right: 2px;
}

.hiqu-pagination a[title="下一页"] {
    padding-left: 2px;
}

.hiqu-pagination a:hover,
.hiqu-pagination span.current {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 加载动画 */
@keyframes hiqu-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.lazy-loading {
    animation: hiqu-pulse 1.5s infinite ease-in-out;
}

/* 面包屑导航 */
.hiqu-breadcrumb {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.1), rgba(178, 31, 31, 0.1));
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
    overflow: hidden;
}

.hiqu-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
    pointer-events: none;
}

.hiqu-breadcrumb li {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    font-size: 14px;
    color: #666;
    z-index: 2;
}

.hiqu-breadcrumb li:last-child {
    margin-right: 0;
    color: #333;
    font-weight: bold;
}

.hiqu-breadcrumb li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #aaa;
}

.hiqu-breadcrumb li i {
    margin-right: 5px;
    color: #1a2a6c;
}

.hiqu-breadcrumb li a {
    position: relative;
    color: #1a2a6c;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 3px 8px;
    border-radius: 3px;
    overflow: hidden;
}

.hiqu-breadcrumb li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 42, 108, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.hiqu-breadcrumb li a:hover {
    color: #b21f1f;
}

.hiqu-breadcrumb li a:hover::before {
    transform: scaleX(1);
}

.hiqu-breadcrumb li strong {
    font-weight: bold;
    color: #b21f1f;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hiqu-breadcrumb {
        padding: 10px 15px;
        margin: 15px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hiqu-breadcrumb li {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .hiqu-breadcrumb li:not(:last-child)::after {
        display: none;
    }
    
    .hiqu-breadcrumb li:not(:first-child) {
        margin-left: 15px;
    }
    
    /* 移动端分页信息样式优化 */
    .hiqu-pagination li {
        margin: 0 2px;
    }
    
    .hiqu-pagination a,
    .hiqu-pagination span {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .hiqu-pagination-info {
        margin-right: 5px;
    }
    
    .hiqu-pagination-info span {
        width: auto;
        min-width: 36px;
        padding: 0 8px;
        font-size: 14px;
    }
}

/* 小屏幕设备特殊处理 */
@media (max-width: 480px) {
    .hiqu-pagination {
        margin: 20px 0;
    }
    
    .hiqu-pagination ul {
        width: 100%;
    }
    
    .hiqu-pagination li {
        margin: 0 1px 5px;
    }
    
    .hiqu-pagination a,
    .hiqu-pagination span {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    /* 在移动端优化超长页码显示 */
    .hiqu-pagination-mobile-top {
        width: 100% !important;
        justify-content: center;
        margin-bottom: 8px;
        order: -1;
    }
    
    .hiqu-pagination-mobile-top span {
        min-width: auto;
        width: auto;
        padding: 4px 12px !important;
        font-size: 13px;
        background: linear-gradient(135deg, #1a2a6c, #b21f1f);
        color: #fff;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        border-radius: 20px !important;
        clip-path: none !important;
    }
}

/* 底部UI */
.hiqu-footer-container {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

/* 返回顶部按钮 */
.hiqu-return_top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hiqu-return_top.hiqu-visible {
    opacity: 1;
    visibility: visible;
}

.hiqu-return_top i {
    font-size: 24px;
}

.hiqu-arrow-up {
    font-size: 24px;
    font-weight: bold;
}

.hiqu-return_top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* 友情链接 */
.hiqu-title-link {
    position: relative;
    margin: 30px 0 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hiqu-title-link strong {
    position: relative;
    z-index: 2;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hiqu-title-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpolygon points='0,0 100,0 50,100' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 30px;
    z-index: 1;
    opacity: 0.3;
}

.hiqu-huob {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    clip-path: polygon(0 0, 100% 0, 98% 98%, 2% 100%);
}

.hiqu-linkfont {
    position: relative;
    display: inline-block;
    margin: 5px;
    padding: 6px 15px;
    background: #a9b958;
    color: #333;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s ease;
    overflow: hidden;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
}

.hiqu-linkfont::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.1), rgba(178, 31, 31, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hiqu-linkfont:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #1a2a6c;
}

.hiqu-linkfont:hover::before {
    opacity: 1;
}

/* 底部主体 */
.hiqu-footer {
    position: relative;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: #fff;
    padding: 0;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.hiqu-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='noise' x='0%25' y='0%25' width='100%25' height='100%25'%3E%3CfeTurbulence baseFrequency='0.05' numOctaves='3' seed='1' result='noise'/%3E%3CfeDisplacementMap in='SourceGraphic' in2='noise' scale='5' xChannelSelector='R' yChannelSelector='G'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 1;
}

.hiqu-footer-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 30px 30px;
    z-index: 2;
}

.hiqu-footer-section {
    flex: 1;
    min-width: 250px;
    margin: 15px;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    backdrop-filter: blur(5px);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.hiqu-footer-section h3 {
    position: relative;
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding-bottom: 10px;
}

.hiqu-footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #a9b958;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.hiqu-footer-section p {
    margin: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hiqu-footer-bottom {
    position: relative;
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.hiqu-footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* 装饰多边形 */
.hiqu-footer-polygon {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
    pointer-events: none;
}

.hiqu-footer-polygon-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: hiqu-polygon-float 8s infinite ease-in-out;
}

.hiqu-footer-polygon-2 {
    top: 30%;
    right: 10%;
    width: 120px;
    height: 120px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: hiqu-polygon-float 12s infinite ease-in-out reverse;
}

.hiqu-footer-polygon-3 {
    bottom: 15%;
    left: 15%;
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: hiqu-polygon-float 10s infinite ease-in-out 2s;
}

@keyframes hiqu-polygon-float {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hiqu-footer-content {
        flex-direction: column;
        padding: 40px 20px 20px;
    }
    
    .hiqu-footer-section {
        margin: 10px 0;
    }
    
    .hiqu-return_top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}

/* 分类页视频分类区域 */
.hiqu-mycate {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 98% 98%, 2% 100%);
}

.hiqu-mycate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.05), rgba(178, 31, 31, 0.05));
    z-index: 0;
    pointer-events: none;
}

.hiqu-mycate a {
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    background: #a9b958;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hiqu-mycate a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.2), rgba(178, 31, 31, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hiqu-mycate a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #1a2a6c;
}

.hiqu-mycate a:hover::before {
    opacity: 1;
}

/* 活跃分类样式 */
.hiqu-mycate a[style*="background-color"] {
    position: relative;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f) !important;
    color: #fff !important;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(26, 42, 108, 0.3);
    transform: translateY(-2px);
}

.hiqu-mycate a[style*="background-color"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpolygon points='0,0 100,0 50,100' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 20px;
    z-index: -1;
    opacity: 0.3;
}

/* 分类装饰元素 */
.hiqu-category-decoration {
    position: absolute;
    background: rgba(26, 42, 108, 0.05);
    z-index: 0;
    pointer-events: none;
}

.hiqu-category-polygon-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: hiqu-category-float 8s infinite ease-in-out;
}

.hiqu-category-polygon-2 {
    bottom: 10%;
    right: 5%;
    width: 60px;
    height: 60px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: hiqu-category-float 6s infinite ease-in-out reverse;
}

@keyframes hiqu-category-float {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hiqu-mycate {
        padding: 15px;
        gap: 8px;
    }
    
    .hiqu-mycate a {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* 视频详情页 */
.hiqu-video-detail-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 98% 98%, 2% 100%);
}

.hiqu-video-detail-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.05), rgba(178, 31, 31, 0.05));
    z-index: 0;
    pointer-events: none;
}

/* 视频封面 */
.hiqu-video-cover {
    position: relative;
    flex: 0 0 300px;
    max-width: 300px;
    height: 420px;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
    margin-bottom: 20px;
}

.hiqu-video-cover a {
    display: block;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
}

.hiqu-video-cover img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: all 0.5s ease;
    clip-path: polygon(0 0, 100% 0, 95% 95%, 5% 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hiqu-video-cover::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: rgba(26, 42, 108, 0.2);
    z-index: -1;
    transform: translateZ(-50px);
    clip-path: polygon(0 0, 100% 0, 95% 95%, 5% 100%);
    filter: blur(10px);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.hiqu-video-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
    pointer-events: none;
}

.hiqu-video-cover a:hover img {
    transform: translateZ(20px);
    filter: brightness(1.1);
}

.hiqu-video-cover a:hover::before {
    transform: translateZ(-70px);
    filter: blur(15px);
}

.hiqu-video-cover a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.hiqu-video-cover a::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: #fff;
    font-size: 50px;
    opacity: 0;
    z-index: 3;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hiqu-video-cover a:hover::before {
    opacity: 1;
}

.hiqu-video-cover a:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* 视频信息 */
.hiqu-video-info {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.hiqu-video-title {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.hiqu-video-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.hiqu-video-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 15px;
}

.hiqu-video-meta-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
}

.hiqu-video-meta-item i {
    margin-right: 5px;
    color: #1a2a6c;
    font-size: 16px;
}

.hiqu-video-description {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    max-height: 200px;
    overflow-y: auto;
    clip-path: polygon(0 0, 100% 0, 98% 98%, 2% 100%);
    border-left: 3px solid rgba(26, 42, 108, 0.3);
}

.hiqu-video-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.hiqu-play-button,
.hiqu-alternate-button,
.hiqu-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hiqu-play-button {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
}

.hiqu-alternate-button {
    background: linear-gradient(135deg, #333, #666);
}

.hiqu-share-button {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.hiqu-play-button::before,
.hiqu-alternate-button::before,
.hiqu-share-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hiqu-play-button:hover,
.hiqu-alternate-button:hover,
.hiqu-share-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hiqu-play-button:hover::before,
.hiqu-alternate-button:hover::before,
.hiqu-share-button:hover::before {
    opacity: 1;
}

.hiqu-play-button i,
.hiqu-alternate-button i,
.hiqu-share-button i {
    margin-right: 5px;
    font-size: 18px;
}

.hiqu-video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hiqu-video-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.05);
    color: #555;
    font-size: 13px;
    border-radius: 3px;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.hiqu-video-tag:hover {
    background: rgba(26, 42, 108, 0.1);
    color: #1a2a6c;
    transform: translateY(-2px);
}

/* 播放列表样式 */
.hiqu-play-source-tab {
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    background: #a9b958;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
    cursor: pointer;
}

.hiqu-play-source-tab.hiqu-active {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(26, 42, 108, 0.3);
}

.hiqu-episode-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hiqu-episode-item {
    display: inline-block;
    padding: 8px 15px;
    background: #a9b958;
    color: #333;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.hiqu-episode-item:hover {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #b21f1f, #1a2a6c);
    background-size: 300% 100%;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: hiqu-gradient-shift 3s ease infinite;
}

.hiqu-episode-item.hiqu-active {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    position: relative;
}

@keyframes hiqu-gradient-shift {
    0% {background-position: 0% 50%}
    50% {background-position: 100% 50%}
    100% {background-position: 0% 50%}
}

/* 装饰多边形 */
.hiqu-detail-polygon {
    position: absolute;
    background: rgba(26, 42, 108, 0.05);
    z-index: 0;
    pointer-events: none;
}

.hiqu-detail-polygon-1 {
    top: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: hiqu-detail-float 10s infinite ease-in-out;
}

.hiqu-detail-polygon-2 {
    bottom: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: hiqu-detail-float 8s infinite ease-in-out reverse;
}

@keyframes hiqu-detail-float {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hiqu-video-detail-container {
        padding: 20px;
        gap: 20px;
    }
    
    .hiqu-video-cover {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .hiqu-video-title {
        font-size: 20px;
    }
    
    .hiqu-video-meta {
        gap: 10px;
    }
    
    .hiqu-video-meta-item {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .hiqu-play-button,
    .hiqu-alternate-button,
    .hiqu-share-button {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* 播放器容器样式 */
.hiqu-player-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    background: #a9b958;
    border-radius: 8px;
    overflow: hidden;
}

.hiqu-player-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 宽高比 */
    overflow: hidden;
}

.hiqu-huudi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #a9b958;
    overflow: hidden;
}

/* 确保播放器内的媒体元素铺满整个区域 */
.hiqu-huudi iframe,
.hiqu-huudi video,
.hiqu-huudi embed,
.hiqu-huudi object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

/* 播放器控制按钮样式 */
.hiqu-player-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    z-index: 100;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hiqu-player-container:hover .hiqu-player-controls {
    opacity: 1;
}

.hiqu-player-control-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(213, 124, 69, 0.85);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.2s ease;
}

.hiqu-player-control-item:hover {
    background-color: rgba(213, 124, 69, 0.85);
    transform: scale(1.1);
}

.hiqu-fullscreen-toggle {
    position: relative;
    z-index: 101;
}

/* 全屏模式样式 */
.hiqu-player-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    background: #a9b958 !important;
}

/* 媒体查询适配不同设备 */
@media (max-width: 768px) {
    .hiqu-player-wrapper {
        padding-bottom: 60%; /* 手机横屏模式调整宽高比 */
    }
    
    .hiqu-player-control-item {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .hiqu-player-wrapper {
        padding-bottom: 62.5%; /* 手机竖屏模式调整宽高比 */
    }
    
    .hiqu-player-control-item {
        width: 28px;
        height: 28px;
    }
}

/* 播放器加载动画 */
.hiqu-player-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    animation: hiqu-player-pulse 1s infinite linear;
}

@keyframes hiqu-player-pulse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hiqu-pic li:hover .hiqu-video-overlay {
    opacity: 1;
}

/* 懒加载背景图片样式 */
.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;
}

.hiqu-video-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.hiqu-video-img.lazy-load {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
    clip-path: polygon(0 0, 100% 0, 95% 95%, 5% 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
 