


* {
    padding: 0;
    margin: 0;
    list-style: none
}

body {
    font-size: 16px;
    background: linear-gradient(to bottom,rgba(212,237,255,1) 0%,rgba(212,237,255,0) 600px);
    background-color: #fff;
}

a {
    font-size: 16px;
    text-decoration: none;
    color: #333333;
}

    a:hover {
        color: #ff5967
    }

        a:hover .pic img {
            -webkit-transform: scale(1.04);
            -moz-transform: scale(1.04);
            -ms-transform: scale(1.04);
            -o-transform: scale(1.04);
            transform: scale(1.04);
        }

    a *, .dh4s {
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        transition: all .4s ease;
    }

.dh1s {
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    transition: all .1s ease;
}

.main {
    width: 100%;
    min-height: 1000px;
}

.container_fluid {
    width: 100%
}

.container {
    width: 1600px;
    margin: auto
}

.layui-layer.hover-popup-custom {
    border-radius: 8px
}

.left {
    float: left
}

.right {
    float: right
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.pic_star .iconfont {
    padding-left: 5px;
    color: #C4C4C4
}

    .pic_star .iconfont.on {
        color: #FF6700
    }



.pic {
    position: relative;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .pic :hover {
        /* scale(1.1) 表示放大到原始大小的 1.1 倍 */
        transform: scale(1.1);
    }

.type_cover {
    position: relative;
    border-radius: 6px
}

    .type_cover img {
        width: 100%;
        height: 100%;
        border-radius: 6px
    }

    .type_cover:before {
        content: '';
        width: 90%;
        height: 50%;
        border-radius: 8px;
        position: absolute;
        left: 5%;
        top: -8px;
        background: #b9daf3;
        z-index: -1
    }

    .type_cover:after {
        content: '';
        width: 80%;
        height: 50%;
        border-radius: 8px;
        position: absolute;
        left: 10%;
        top: -16px;
        background: #d9eefe;
        z-index: -2
    }

/*顶部导航---------------------------*/
.header {
    left: 0;
    top: 0;
    z-index: 99;
    background: rgba(255,255,255,0.95)
}

.header_box {
    display: flex;
    position: relative;
    align-items: center;
    height: 100px;
}

.header_logo {
    margin-right: 100px
}

.header_nav {
    flex: 1;
    display: flex;
    position: relative;
}

    .header_nav a {
        height: 100px;
        line-height: 100px;
        display: inline-block;
        padding: 0 15px;
        margin: 0 15px;
        position: relative;
        font-size: 20px;
        color: #232323
    }

        .header_nav a:hover {
            font-size: 20px;
            font-weight: bold;
        }

            .header_nav a:hover::after {
                width: 100%;
            }

        .header_nav a::after {
            content: '';
            display: block;
            width: 0;
            height: 6px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            background: #ff5967;
            -webkit-transition: all .4s ease;
            -moz-transition: all .4s ease;
            transition: all .4s ease
        }

.header_msg {
    height: 40px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: solid 1px #B4B4B4
}

    .header_msg a {
        padding: 0 15px;
        display: inline-block;
    }

        .header_msg a i {
            position: relative;
            font-size: 30px;
            color: #8d8d8d
        }

        .header_msg a:hover {
            transform: scale(1.2);
        }

            .header_msg a:hover i {
                color: #000;
            }

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    height: 12px;
    line-height: 12px;
    padding: 0 5px;
    border-radius: 6px;
    font-size: 10px;
    color: #fff;
    background: #ff5967
}

.header_user {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0 0 10px
}

    .header_user:hover {
        background: #fff
    }

    .header_user img {
        width: 60px;
        height: 60px;
        border-radius: 50%
    }

.header_username {
    position: relative;
    margin-left: 10px;
    overflow-x: hidden
}

    .header_username h3 {
        font-size: 18px;
        font-weight: bold;
    }

    .header_username .ellipsis {
        max-width: 100px;
        font-size: 14px;
    }

.header_userinfo .header_user {
    padding: 15px 30px;
    background: rgba(244,244,244,1.00)
}

.header_userinfo {
    display: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

    .header_userinfo .user_nav li {
        text-align: center;
        line-height: 50px;
        border-top: solid 1px #F3F3F3
    }

    .header_userinfo .logout a {
        display: block
    }

        .header_userinfo .logout a:hover {
            background: rgba(243,243,243,1.00)
        }

/*首页栏目标题---------------------------*/
.index_title {
    display: flex;
    align-items: center;
    height: 65px;
    margin-top: 80px
}

    .index_title .icon {
        margin-right: 10px
    }

    .index_title .txt {
        flex: 1
    }

        .index_title .txt span {
            position: relative;
            line-height: 32px;
            font-size: 28px;
            font-weight: bold
        }

            .index_title .txt span::before {
                content: '';
                position: absolute;
                z-index: -1;
                width: 20px;
                height: 20px;
                top: -6px;
                right: -6px;
                border-radius: 10px;
                background: linear-gradient(to left bottom,rgba(209, 204, 254, 1),rgba(209, 204, 254, 0));
            }

.index_pictype .index_title .txt span::before {
    background: linear-gradient(to left bottom,rgba(254, 234, 208, 1),rgba(254, 234, 208, 0));
}

.index_hotpic .index_title .txt span::before {
    background: linear-gradient(to left bottom,rgba(254, 193, 209, 1),rgba(254, 193, 209, 0));
}

.index_video .index_title .txt span::before {
    background: linear-gradient(to left bottom, rgba(203, 218, 251, 1), rgba(203, 218, 251, 0));
}

.index_title .txt p {
    color: #9ca0af;
    font-size: 14px;
}


/*新图速递---------------------------*/
.index_newpic {
    margin-top: 40px
}

.index_newpic_list {
    display: flex;
    justify-content: space-between;
    height: 570px;
    margin: 10px 0 50px
}

    .index_newpic_list > ul {
        width: calc(50% - 10px);
    }

        .index_newpic_list > ul > li {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 5px
        }

        .index_newpic_list > ul:nth-child(2) {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

            .index_newpic_list > ul:nth-child(2) li {
                width: calc(50% - 10px);
                height: calc(50% - 10px);
            }

.pic_title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30px;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}




/*分类图册---------------------------*/
.index_type_list {
    margin: 5px 0 50px
}

    .index_type_list > ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

        .index_type_list > ul li {
            position: relative;
            width: calc(20% - 16px);
            height: 220px;
            margin-top: 20px;
            border-radius: 5px
        }

.pic_more {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 20px;
}

    .pic_more i {
        font-size: 24px;
        margin-left: 10px
    }

.index_type_list .pic_title small {
    display: block;
    font-weight: normal
}

.index_type_list a:hover .pic_title {
    height: 60px
}




/*高清视频---------------------------*/
.index_video_list {
    margin: 10px 0 50px
}

    .index_video_list > ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

        .index_video_list > ul li {
            position: relative;
            width: calc(20% - 16px);
            height: 220px;
            border-radius: 5px
        }

            .index_video_list > ul li:not(:last-child) .pic:before {
                content: '"\e610"';
                width: 100%;
                height: 100%;
                position: absolute;
                left: 0;
                top: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                font-family: "iconfont" !important;
                z-index: 2;
                color: rgba(0,0,0,0.65);
                font-size: 60px;
                text-shadow: 0 0 15px rgba(255,255,255,0.58)
            }


/*热门下载---------------------------*/
.index_host_list {
    margin: 5px 0 50px
}

.image-row {
    display: flex;
    margin-bottom: 20px !important;
    width: 100%;
    min-height: 200px;
    max-height: 280px;
}

.image-item {
    margin-right: 10px;
    position: relative;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .image-item:last-child {
        margin-right: 0;
    }

    .image-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px;
    font-size: 14px;
    text-align: center;
}

.load-more-item {
    background-color: #a0b4c3;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-grow: 1;
}

    .load-more-item:hover {
        background-color: #d0d0d0;
        transform: scale(1.0);
    }

.load-more-text {
    color: #333;
    font-weight: bold;
    font-size: 16px;
}


/*底部---------------------------*/
.footer {
    background: #2e3139;
    padding: 80px 0 40px;
    margin-top: 80px;
    color: #abadb0
}

    .footer a {
        color: #D5D5D5
    }

.footer_box {
    display: flex;
    justify-content: space-between;
}

.footer_qr {
    flex: 1;
    text-align: right
}

    .footer_qr img {
        width: 110px;
        margin-right: 15px
    }

.footer_phone {
    margin-top: 25px;
    padding-top: 10px;
    border-top: solid 1px #737373;
    font-size: 28px;
    font-weight: bold
}

    .footer_phone i {
        font-size: 28px;
        font-weight: normal;
        margin-right: 5px
    }



/*列表页---------------------------*/
.list_typeinfo {
    display: flex;
    margin-top: 70px
}

    .list_typeinfo .type_cover {
        width: 125px;
        height: 95px;
        margin-right: 40px
    }

        .list_typeinfo .type_cover:before {
            border-radius: 5px;
            top: -5px;
        }

        .list_typeinfo .type_cover:after {
            border-radius: 5px;
            top: -10px;
        }

    .list_typeinfo .type_title h2 {
        font-size: 28px
    }

        .list_typeinfo .type_title h2 small {
            display: inline-block;
            height: 24px;
            line-height: 24px;
            border-radius: 12px;
            padding: 0 10px;
            margin-left: 10px;
            font-size: 14px;
            font-weight: normal;
            color: #fff;
            background: #ff5967
        }

    .list_typeinfo .type_title p {
        font-size: 14px;
        color: #646464
    }

.list_typelist {
    display: flex;
    line-height: 40px;
    margin-top: 45px
}

    .list_typelist > span, .list_search > span {
        width: 80px;
        font-weight: bold
    }

    .list_typelist ul {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

        .list_typelist ul li a {
            display: block;
            height: 40px;
            border-radius: 20px;
            padding: 0 15px;
            color: #fff;
            background: #a0b4c3
        }

        .list_typelist ul li.on a, .list_typelist ul li:hover a {
            background: #ff5967;
            box-shadow: 3px 3px 10px rgba(241,78,73,0.30)
        }

.list_search {
    display: flex;
    line-height: 40px;
    margin-top: 30px
}

    .list_search > ul {
        display: flex;
        gap: 15px;
    }

    .list_search .button-border {
        border-width: 1px;
        color: #535353
    }

    .list_search .keywords {
        display: flex
    }

        .list_search .keywords input {
            width: 250px;
            height: 38px;
            padding: 0 15px;
            border-radius: 20px 0 0 20px;
            color: #535353;
            border: solid 1px #1b9af7
        }

        .list_search .keywords button {
            border-radius: 0 20px 20px 0;
            background: #2b7eee;
            color: #fff;
            padding: 0 15px;
            height: 38px !important;
        }

.list_list {
    margin-top: 50px
}

.pages {
    text-align: center;
}



/*详情页---------------------------*/
.page_view {
    background-color: #f1f9ff
}

.view_search {
    margin-top: 50px;
}

.container_fluid.picbox {
    background: #f1f9ff
}

.view_pic {
    margin: 50px auto;
    display: flex;
    gap: 5px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

    .view_pic .thumb {
        width: 1000px;
        height: 680px;
        border-radius: 6px;
        overflow: hidden;
        background: #5F5F5F
    }

        .view_pic .thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .view_pic .box_r {
        flex: 1;
        padding: 25px
    }

        .view_pic .box_r lable {
            color: #999999
        }

        .view_pic .box_r a {
            color: #2b7eee
        }

        .view_pic .box_r .user {
            display: flex;
            margin: 15px 0 30px
        }

            .view_pic .box_r .user img {
                width: 36px;
                height: 36px;
                margin-right: 15px;
                border-radius: 18px
            }

            .view_pic .box_r .user span {
                line-height: 36px
            }

    .view_pic .info {
        display: flex;
        justify-content: space-between;
    }

        .view_pic .info .copy {
            padding-left: 8px;
            cursor: pointer;
        }

        .view_pic .info > ul {
            flex-grow: 1
        }

            .view_pic .info > ul > li {
                line-height: 20px;
                margin: 15px 0
            }

        .view_pic .info .price {
            font-size: 24px;
            font-weight: bold;
            color: #ff5967;
            margin-right: 5px
        }

    .view_pic .btns {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin: 30px 0
    }

        .view_pic .btns .button {
            padding: 0 20px
        }

            .view_pic .btns .button i {
                font-size: 28px;
                margin-right: 10px
            }

        .view_pic .btns .button-block {
            flex: 1;
        }

    .view_pic .copyright_tips {
        font-size: 14px;
        line-height: 20px;
        color: #999999
    }

    .view_pic .tips {
        line-height: 30px;
        margin-top: 20px;
    }

        .view_pic .tips a {
            padding: 0 10px
        }

    .view_pic .otherbtns {
        margin-top: 25px
    }

        .view_pic .otherbtns i {
            margin-right: 10px
        }

.view_title {
    display: flex;
    justify-content: space-between;
    margin: 0 0 25px
}

.box_fluid {
    background: #fff;
    padding: 25px 0;
}

.view_keywords {
    margin-top: 20px
}

    .view_keywords ul {
        display: flex;
        gap: 10px;
    }

        .view_keywords ul li a {
            display: block;
            height: 36px;
            line-height: 36px;
            border-radius: 18px;
            padding: 0 20px;
            background: #a0b4c3;
            color: #fff
        }

            .view_keywords ul li a:hover {
                background: #ff5967;
                box-shadow: 3px 3px 10px rgba(241,78,73,0.30)
            }

/* 隐藏NProgress的spinner加载指示器，只保留进度条 */
#nprogress .spinner {
    display: none !important;
}
/* 可选：自定义进度条样式 */
#nprogress .bar {
    height: 3px !important; /* 调整进度条高度 */
    background: #29d !important; /* 进度条颜色 */
}

.empty-state-container {
    text-align: center;
    padding: 40px 20px;
    max-width: 500px;
}

.empty-icon {
    font-size: 80px;
    color: #b0bec5;
    margin-bottom: 30px;
}

.empty-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #546e7a;
}

.empty-description {
    font-size: 16px;
    color: #78909c;
    margin-bottom: 30px;
    line-height: 1.5;
}

.action-button {
    background-color: #2196F3; /* 蓝色主色调 */
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .action-button:hover {
        background-color: #0b7dda; /* 悬停颜色 */
    }

.layui-laypage a:hover {
    color: rgb(30,64,175,0.8) !important
}

.video_div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    box-sizing: border-box;
}

.video_panel {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 8px;
}

    .video_panel:before {
        content: "";
        display: block;
        width: 100%;
        padding-top: 56%;
    }

.video_box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.video_wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.video_info {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 12px;
    color: #fff;
    line-height: 20px;
    background: linear-gradient(0deg,transparent,rgba(0,0,0,.6));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.video_panel .v_title {
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.video_panel .video_info_other {
    display: flex;
}

.video_panel .v_quality {
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    background: #ffa31c;
    border-color: #ffa31c;
    border-radius: 2px;
    padding: 0 4px;
    margin-right: 6px;
}

.video_panel .v_time {
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    background: rgba(51, 51, 51, .8);
    border-radius: 2px;
    padding: 0 4px;
}
/* 封面和视频过渡效果 */
.video-cover, .video-player {
    transition: opacity 0.4s ease-in-out, transform 0.6s ease;
}

.header_nav .select_nav::after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: #ff5967;
    -webkit-transition: all .4sease;
    -moz-transition: all .4s ease;
    transition: all .4sease;
    font-size: 20px;
    font-weight: bold;
}
