.block{
    width: 100%;
    height: 90px;
}
.category-nav{
    width: 90vw;
    padding-bottom: 10px;
    margin: auto;
    box-sizing: border-box;
    border-radius: 6px;
    background-color: var(--card-bg);
}
.category-nav-row{
    width: 100%;
    height: auto;
    display: flex;
}
.category-title{
    user-select: none;
    font-size: 14px;
    width: 60px;
    text-align: center;
    padding-top: 13px;
    color: #777;
    font-weight: 600;
}
.category-tags{
    user-select: none;
    padding-top: 10px;
    color: #999;
    flex: 1;
}
.category-tags ul li:first-child a span::before{
    /* 这里放置你想要应用的样式 */
    font-family: "iconfont-modown" !important;
    content: '\E8EB';
    margin-right: 2px;
}
#tag-random a span::before{
    /* 这里放置你想要应用的样式 */
    font-family: "iconfont-modown" !important;
    content: '\E668';
    margin-right: 2px;
}
#tag-capacity a span::before{
    /* 这里放置你想要应用的样式 */
    font-family: "iconfont-modown" !important;
    content: '\E601';
    margin-right: 2px;
}
#tag-fire a span::before{
    /* 这里放置你想要应用的样式 */
    font-family: "iconfont-modown" !important;
    content: '\E902';
    margin-right: 2px;
}
.category-tags ul{
    display: flex;
    flex-wrap: wrap;
}
.category-tags li{
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
}
.category-tags a{
    text-decoration: none;
}
.category-tags label{
    margin: 1px 2px;
    color: #999;
    font-size: 12px;
    padding: 1px 6px;
    display: inline-block;
    transition: all 0.2s;
    cursor: pointer;
}
input[type="radio"]{
    display: none;
}
input[type="radio"]:checked + label{
    background-color: #14b268;
    color: #fff;
    border-radius: 50px;
}
.content {
    padding-top: 0;
}
#container-loading{
    width: 100px;
    height: auto;
    border-radius: 10px;
    margin: auto;
    margin-top: 20px;
    background-color: var(--card-bg);
}
.loading_img{
    width: 80px;
    height: 80px;
    background-image: url('https://gitcode.net/2301_78006839/wxpj/-/raw/master/img/%E5%A4%B4%E5%83%8F.gif?inline=false');
    background-position: center;
    background-size: contain;
}
.loading_text{
    color: var(--text-color);
    text-align: center;
    padding: 10px;
}
.loading_text::after{
    color: var(--text-color);
    content: '..';
    animation: loading 0.5s ease-in-out 1s infinite alternate both;
}
@keyframes loading{
    0%{
        content: ' .';
    }
    40%{
        content: ' ..';
    }
    100%{
        content: ' ...';
    }
}

@media (min-width:770px) {
    .category-nav{
        width: 80vw;
    }
}
@media (min-width:1000px) {
    .category-tags label{
        font-size: 14px;
    }
    .category-title{
        font-size: 17px;
        width: 100px;
    }
}