html ,.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6,.uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle {
    font-family: -apple-system,BlinkMacSystemFont,"Microsoft Yahei","Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
.pj-background, .uk-background-projectx, .tm-navbar-container:not(.uk-navbar-transparent) {
    background-color: rgba(51,51,51,.6);
}
.primary-background, .uk-dropdown-background, .uk-modal-body, .uk-modal-footer {
    background: rgba(51,51,51,1);
}
.tm-navbar-container:not(.uk-navbar-transparent) {
    color: rgba(255,255,255,0.8);
}
.tm-button-default, .tm-button-primary {
    border-radius: 500px;
}
.tm-border {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}
.padding-episode {
    padding-left: 8px;
    padding-right:8px;
}
.uk-tag {
    display: inline-block;
    padding: 0 10px;
    margin-right: 5px;
    background: #ea5a5a;
    line-height: 1.5;
    font-size: 12px;
    color: #fff;
    vertical-align: middle;
    white-space: nowrap;
    border-radius: 2px;
    text-transform: uppercase;
}
.uk-category {
    background: #1e87f0;
}
.uk-button-tag {
    background: #1e87f0;
    color: #fff;
}
.dropload-down{
    text-align:center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.scroll-top{
    width: 40px;
    height: 40px;
    background:#ea5a5a;
    justify-content: center;
}
.uk-light a.uk-tag-active {
    color: #ea5a5a;
}
.uk-background-two {
    background: #ea5a5a;
}
.uk-display-flex {
    display: flex;
}
.button-episode {
    font-size: 14px;
    line-height: 14px;
    padding: 10px 15px;
}
@media only screen and (max-width: 600px){
    .user-info {
        margin-top: 10px;
    }
}


  /* 设置页面整体背景 */
        body {
            background-color: #181818;
            font-family: Arial, sans-serif;
        }

        /* 自定义分页样式 */
        .custom-pagination {
            list-style-type: none;
            padding-left: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
        }

        /* 分页按钮整体样式 */
        .custom-pagination li {
            margin: 0 5px;
            border-radius: 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* 更轻的阴影效果 */
        }

        /* 分页按钮链接和当前页的样式 */
        .custom-pagination li a, 
        .custom-pagination li .current-page {
            display: block;
            color: #fff; /* 白色字体 */
            background-color: rgba(0, 0, 0, 0.5); /* 黑色透明背景 */
            border-radius: 20px; /* 椭圆形状 */
            padding: 8px 16px;
            text-decoration: none;
            transition: color 0.3s, background-color 0.3s;
            font-weight: bold; /* 加粗字体 */
            text-align: center;
        }

        /* 悬停时的按钮样式 */
        .custom-pagination li a:hover, 
        .custom-pagination li .current-page:hover {
            background-color: #a5a8ef; /* 浅蓝色背景 */
        }

        /* 禁用和活动分页按钮的样式 */
        .custom-pagination li.active a, 
        .custom-pagination li.disabled a {
            color: #aaa; /* 灰色字体 */
            background-color: rgba(0, 0, 0, 0.3); /* 更轻的黑色透明背景 */
            pointer-events: none; /* 禁止点击 */
        }

        /* 当前页按钮的样式 */
        .custom-pagination li.current-page a {
            pointer-events: none; /* 禁止点击 */
            font-weight: bold; /* 加粗当前页 */
            background-color: #4671f3; /* 当前页的背景色 */
            color: #fff; /* 当前页的字体颜色 */
        }

        /* 当前页按钮在悬停时保持当前颜色 */
        .custom-pagination li.current-page a:hover {
            background-color: #4671f3; /* 保持当前页背景色 */
        }

        /* 去掉按钮的默认外观，确保一致性 */
        .custom-pagination li a, 
        .custom-pagination li .current-page {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        /* 调整按钮的背景图片和边框 */
        .custom-pagination li a, 
        .custom-pagination li .current-page {
            background-image: none; /* 去掉任何可能的背景图片 */
            border: none; /* 去掉边框 */
        }