.hx_ibanner .swiper {
    width: 100%;
    position: relative;
    /* 确保高度由内部图片决定 */

}


.hx_ibanner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hx_ibanner .swiper-img img {
    max-height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    object-position: center;
    width: 100%;
    /* 图片居中显示 */

}

.hx_ibanner .swiper-img {
    width: 100%;
    height: 100%;
}

.hx_ibanner .swiper-container {
    width: 100%;
    height: 100%;
}

.hx_ibanner .swiper-slide {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
}

.swiper-img a {
    display: block;
    line-height: 0;
    /* 确保a标签不产生额外间距 */
    height: auto;
    /* 改为auto由图片决定 */
}

.mask-banner {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 34px;
    opacity: 1;
    z-index: 3;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: none;
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* 隐藏水平滚动条 */
    width: 100%;
    /* 直接使用 100%，避免因 100vw 包含滚动条宽度导致溢出 */
    box-sizing: border-box;
    /* 让内边距和边框包含在元素的宽度和高度内 */

}

/* 隐藏原本的图片说明 */
.swiper-slide .slide-caption {
    display: none;
}

/* 修改分页器样式 */
.swiper-pagination {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 0;
    margin: 0;
    pointer-events: auto;
    height: 100%;
    /* 确保分页器高度与父容器一致 */

}

.swiper-pagination-bullet {
    background: transparent;
    color: #9C9E9F;
    font-family: Inter;
    font-size: 12px;

    opacity: 1;
    width: auto;
    height: auto;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    /* 启用 flex 布局 */
    align-items: center;
    /* 垂直居中 */
    bottom: 0px !important;
    font-weight: bold;
}

/* 设置激活状态下的分页器样式 */
.swiper-pagination-bullet-active {
    color: #FFFFFF;
    font-weight: bold;
}

/* 调整分页器文字样式 */
.swiper-pagination-bullet span {
    margin-left: 5px;
    /* 文字与小圆点的间距 */
}

/* 隐藏未激活的分页器小圆点 */
.swiper-pagination-bullet .bullet-dot {
    display: none;
    width: 10px;
    height: 10px;
    background: #1EFF92;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;


}

/* 显示激活状态下的分页器小圆点 */
.swiper-pagination-bullet-active .bullet-dot {
    display: inline-block;
}

/* 调整分页器容器的宽度和溢出处理 */
.mask-banner {
    width: 100%;
    overflow-x: auto;
    /* 当内容超出时显示水平滚动条 */
    -webkit-overflow-scrolling: touch;
    /* 优化移动端滚动体验 */
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0 !important;
}

.coreindex-nav {
    width: 100%;
    text-align: center;
    height: 60px;
    background: #161A1F;
}

.coreindex-nav a {
    display: inline-block;
    height: 60px;
    padding: 0px 50px;
    line-height: 60px;
    margin: auto;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    color: #8B8B8B;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
    /* 垂直居中对齐 */
}

.coreindex-nav a.on {

    font-size: 16px;
    color: var(--button-Normal, #1EFF92);
    font-weight: 600;
    font-family: Inter;
    font-weight: 600;
    line-height: 60px;
    /* 固定行高 */
    vertical-align: middle;
    /* 垂直居中对齐 */
}

.coreindex-nav a:not(.on):hover {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 60px;
    /* 固定行高 */
    vertical-align: middle;
    /* 垂直居中对齐 */
}

.coreindex-nav a.on .line {
    width: 64px;
    height: 5px;
    display: block;
    background: #454549;
    position: relative;
    overflow: hidden;
    position: absolute;
    top: 53px;
    left: 50%;
    margin-left: -32px;
}

.coreindex-nav a.on .line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #1EFF92;
    /* 修改 animation 属性，添加 infinite 实现循环 */
    animation: fillLine 0.5s ease-in-out forwards;

}

@keyframes fillLine {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

html {
    overflow-y: scroll;
}



/* 推荐专区 */

.index_recommend_main {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-top: 30px;
    margin-bottom: 30px;
}

.index_recommend_follow_main {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-top: 30px;
    margin-bottom: 30px;
}



/* 当屏幕宽度超过 1920px 时应用以下样式 */
@media screen and (min-width: 1921px) {

    /* 修正类名 */
    .index_recommend_main {
        margin: auto;
        width: 1920px;
        margin-top: 30px;
    }
}

.core.item.card {
    width: 280px;
    height: 380px;
    display: inline-block;
    overflow: hidden;
    text-align: left;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-radius: 15px;
    transform: translate(0, 0);
    background: #0C1012;
    padding-bottom: 20px;

}

.core.item.card:hover {
    background: linear-gradient(122deg, #0C1012 24%, rgba(35, 49, 37, 0.59) 59%, #0C2A23 100%);
    -webkit-box-shadow: rgba(44, 255, 231, 0.35) 0px 0px 21px 1px;
    -moz-box-shadow: rgba(44, 255, 231, 0.35) 0px 0px 21px 1px;
    box-shadow: 0px 6px 32px 0px rgba(2, 157, 83, 0.39);
}



.index-workslist {
    margin: auto;
    width: auto;
    display: grid;
    column-gap: 4px;
    box-sizing: border-box;
    background-color: transparent;
    margin-left: 16px;

}

@media screen and (min-width: 1841px) {
    .index-workslist {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* 当屏幕宽度超过 1920px 时应用以下样式 */
@media screen and (min-width: 1921px) {
    .index-workslist {
        column-gap: 30px;
        place-items: stretch;
        /* 让每个 grid 项在格子内水平和垂直居中 */
    }
}


.follow-workslist {
    margin: auto;
    width: auto;
    display: grid;
    column-gap: 4px;
    box-sizing: border-box;
    background-color: transparent;
    margin-left: 16px;
    grid-template-columns: repeat(6, 1fr);

}
/* 当屏幕宽度超过 1920px 时应用以下样式 */
@media screen and (min-width: 1921px) {
    .follow-workslist {
    grid-template-columns: repeat(8, 1fr);
        /* 让每个 grid 项在格子内水平和垂直居中 */
    }
}



.card:hover {
    background: linear-gradient(122deg, #0C1012 24%, rgba(35, 49, 37, 0.59) 59%, #0C2A23 100%);
    -webkit-box-shadow: rgba(44, 255, 231, 0.35) 0px 0px 21px 1px;
    -moz-box-shadow: rgba(44, 255, 231, 0.35) 0px 0px 21px 1px;
    box-shadow: 0px 6px 32px 0px rgba(2, 157, 83, 0.39)
}

.card .cover {
    width: 100%;
    height: 207px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 15px 15px 0px 0px;
}


.card .cover a .hoverbg {
    width: 100%;
    height: 207px;
    border-radius: 8px 8px 0px 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
}

.card:hover .hoverbg {
    background: rgba(2, 157, 83, 0.15);
}


#workc{
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    cursor: pointer;
    position: relative;
}

.workslist .card .works-play {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    cursor: pointer;
    position: relative;
}

.card .cover img {
    object-fit: cover;
    width: 100%;
    height: 207px;
}

.card:hover .works-play {
    color: #70FFF7 !important;
}

.card #tit-cc {
    width: calc(100% - 30px);
    height: 22px !important;
    line-height: 22px !important;
    margin: auto;
    margin-top: 12px;
    margin-bottom: 8px;
    position: relative;
    display: flex;
}

.core .tit .title-cc {
    width: 100%;
    height: 22px;
    color: #fff;
    overflow: hidden;
    float: left;
    list-style-type: none;
}

.core .tit .title-cc a {
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    max-width: 100%;
    font-weight: 500;
    text-overflow: ellipsis;
    text-decoration: none;
}


.card .tit .bq-icon {
    width: 19px;
    height: 20px;
    background: url("/template/CoreAnimation/extend/img/huo.svg") no-repeat;
}


.category-container {
    display: flex;
    /* 启用 flex 布局 */
}

.core .category {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.60);
    margin-left: 12px;
    height: 21px;
    line-height: 21px;
    fill: rgba(255, 255, 255, 0.05);
    display: block;
    margin-bottom: 10px;
    margin-top: 4px;
}

.core .category .icon-fl {
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 0px 10px;
    height: 21px;
    transform: skewX(-5deg);
    border-radius: 20px 10px 20px 10px;
    text-align: center;
    display: inline-block;
    height: 21px;
    min-width: 56px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

}

.core .category .icon-fl>div {
    transform: skewX(5deg);
}

.core .record {
    width: calc(100% - 30px);
    margin: auto;
    height: 36px;
    line-height: 17px;
    color: #838897;
    margin-bottom: 12px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.10);
    padding-bottom: 16px;
}

.look_review_collection div {
    display: block;
    float: left;
    height: 17px;
    margin-top: 8px;
    margin-right: 8px;
}


.look_review_collection .review-icon b {
    color: rgba(255, 255, 255, 0.60);
    margin-right: 30px;
    float: left;

}

.look_review_collection .collection-icon b {
    color: rgba(255, 255, 255, 0.60);
    margin-right: 30px;
    float: left;

}

.look_review_collection .look b {
    color: rgba(255, 255, 255, 0.60);
    margin-right: 30px;
    float: left;

}

.look_review_collection .look b,
.look_review_collection .review-icon b,
.look_review_collection .collection-icon b {
    display: inline-block;
    height: 17px;
    vertical-align: middle;
    line-height: 14px;
    margin-left: 10px;
    font-weight: 500;
}

.look_review_collection .look .kan-icon {
    background: url("/template/CoreAnimation/extend/img/eye-line.svg") no-repeat;
    width: 16px;
    height: 17px;
    display: block;
    float: left;
}

.look_review_collection .review-icon .kan-icon {
    background: url("/template/CoreAnimation/extend/img/discuss-line.svg") no-repeat;
    width: 16px;
    height: 17px;
    display: block;
    float: left;
}

.look_review_collection .collection-icon .kan-icon {
    background: url("/template/CoreAnimation/extend/img/star-line.svg") no-repeat;
    width: 16px;
    height: 17px;
    display: block;
    float: left;
}

* {
    box-sizing: border-box;
}

.card .less {
    width: calc(100% - 30px);
    margin: auto;
    height: 32px;
}

#user-pic {
    width: 32px;
    height: 32px;
    position: relative;
    float: left;
}

#user-pic img {
    width: 32px;
    height: 32px;
    border-radius: 16px;
}


.less .user-name {
    width: 141px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    overflow: hidden;
    color: var(--text-white-60, rgba(255, 255, 255, 0.60));
    margin-left: 8px;
    font-family: "PingFang SC";
    font-weight: 600;
    float: left;
}

.less .moer-icon {
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    color: #9C9C9C;
    text-decoration: none;
}

.less .moer-icon:hover {
    color: #ffffff;

}








/* 分页器样式 */

.smart-pagination {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    /* 水平居中 */
    justify-content: center;
    /* 垂直居中 */
    align-items: center;
    /* 允许子元素换行 */
    flex-wrap: wrap;
}

.page-numbers {
    /* 让页码区域作为一个整体 */
    display: inline-flex;
    /* 让页码区域内的元素水平居中 */
    justify-content: center;
    /* 让页码区域内的元素垂直居中 */
    align-items: center;
}

.page-numbers a {
    width: 36px;

    display: inline-block;
    margin: 0 4px;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    font-weight: 600;
    color: #6D7278;
    text-decoration: none;
}



.page-num:hover {
    color: #FFFFFF;
}

.page-btn {
    /* 移除浮动 */
    float: none;
    margin: 0 8px;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    font-weight: 600;
    color: #6D7278;
    text-decoration: none;
    margin-right: 30px;
}


.smart-pagination .page-btn:last-child {
    margin-left: 20px;
}

.prev {
    background: url("/template/CoreAnimation/extend/img/yb-icon.svg")10px center no-repeat;
    text-indent: -9999px;
    width: 36px;
    height: 36px;

}

.next {
    background: url("/template/CoreAnimation/extend/img/nex-icon.svg")10px center no-repeat;
    text-indent: -9999px;
    width: 36px;
    height: 36px;
}



.page-btn.disabled {
    color: #ccc;
    cursor: not-allowed;

}

.page-num.current {
    background: #1EFF92;
    color: #000000;
    border-radius: 3px;
}

.ellipsis {
    padding: 8px 12px;
    color: #999;
}

.page-info {
    margin-left: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}
::selection {
    background-color: #00C787;
    color: white;
}

table[summary="分类信息"] {
    display: none;
}


