@charset "UTF-8";@font-face {
    font-family: iconfont;
    src: url(/static/iconfont.woff2) format("woff2")
}

.icon {
    font-family: iconfont!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-down:before {
    content: "\e001"
}

.icon-search:before {
    content: "\e002"
}

.icon-up:before {
    content: "\e003"
}

.icon-sup:before {
    content: "\e004"
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    color: #dfdfdf;
    font-size: 16px;
    font-family: Helvetica,Arial,"Helvetica Neue","Microsoft yahei",SimHei,sans-serif
}

body {
    background-color: #000
}

ul {
    list-style: none
}

a {
    text-decoration: none;
    color: inherit
}

b {
    font-weight: 600;
    color: #df2d2d
}

.logo a {
    display: block;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 1.625rem;
    text-indent: .25rem;
    letter-spacing: 1px;
    font-weight: 800;
    color: #2994ef
}

.goup {
    display: none;
    position: fixed;
    width: 2.35rem;
    height: 2.35rem;
    line-height: 2.35rem;
    border-radius: 50%;
    bottom: 35%;
    right: 5%;
    z-index: 10;
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: rgba(0,0,0,.35);
    text-align: center;
    font-size: 1.25rem
}

.container {
    max-width: 1080px;
    position: relative;
    padding: 0 .5rem;
    margin: 0 auto
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 4rem;
    margin-top: .5rem;
    border-radius: .25rem;
    background-color: #202020
}

header form {
    height: 1.875rem;
    max-width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header form input {
    width: 100%;
    height: 1.875rem;
    padding-left: .875rem;
    padding-right: .5rem;
    border: none;
    border-radius: 1rem 0 0 1rem;
    outline: 0
}

header form button {
    width: 3.5rem;
    height: 1.875rem;
    line-height: 1.5rem;
    background-color: #2994ef;
    color: #000;
    font-size: .875rem;
    text-align: center;
    border: none;
    border-radius: 0 1rem 1rem 0;
    cursor: pointer
}

#search-options {
    display: none;
    position: absolute; /* 必须设置 position 才能使用 z-index */
    top: 2.5rem; /* 调整位置 */
    left: 0;
    width: 100%; /* 与父级宽度一致 */
    background-color: #202020;
    border: 1px solid #333;
    border-radius: 0.25rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* 确保在其他元素之上 */
    transform: scaleY(0); /* 初始状态收起 */
    transform-origin: top; /* 动画从顶部展开 */
    transition: transform 0.3s ease; /* 添加展开动画 */
}

#search-options.show {
    display: block;
    transform: scaleY(1); /* 展开状态 */
}

#search-options ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#search-options ul li {
    padding: 0.5rem 1rem; /* 内边距 */
    border-bottom: 1px solid #333; /* 分隔线 */
    text-align: left; /* 左对齐 */
}

#search-options ul li:last-child {
    border-bottom: none; /* 去掉最后一项的分隔线 */
}

#search-options ul li a {
    color: #dfdfdf; /* 字体颜色 */
    font-size: 0.875rem; /* 字体大小 */
    text-decoration: none; /* 去掉下划线 */
    display: block; /* 链接占满整个区域 */
    transition: background-color 0.3s, color 0.3s; /* 添加过渡效果 */
}

#search-options ul li a:hover {
    background-color: #2994ef; /* 鼠标悬停时背景颜色 */
    color: #fff; /* 鼠标悬停时字体颜色 */
}

nav .menu {
    display: flex;
    flex-wrap: wrap
}

nav .menu li {
    width: 10%
}

nav .menu li a {
    display: block;
    margin: .125rem;
    height: 1.72rem;
    line-height: 1.72rem;
    background-color: #000;
    border-radius: .25rem;
    border: 1px solid #3f3f3f;
    font-size: .86rem;
    text-align: center
}

nav .menu li a.toptype{font-weight: bold;}

.case {
    padding: .25rem;
    background-color: #202020;
    border-radius: .25rem;
    margin-top: .5rem
}

.case .raster {
    display: flex;
    flex-wrap: wrap
}

.case .raster .item {
    width: 25%;
    padding: .25rem
}

.case .raster .item a {
    display: block;
    height: 100%;
    padding: .25rem;
    background-color: #000;
    border: 1px solid #222;
    border-radius: .25rem;
    transition: .3s all
}

.case .raster .item .view {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: .125rem;
    margin-bottom: .25rem;
}

.case .raster .item .view img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    background-color: #000;
}

.case .raster .item .view .info {
    width: 100%;
    text-align: center;
    height: 1.25rem;
    line-height: 1.25rem;
    font-size: .75rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    color: #333;
    background-color: rgba(0,0,0,.25);
}

.case .raster .item p {
    line-height: 1.25;
    padding: 0 .25rem;
    font-size: .8125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all
}

.case .raster .item a:hover {
    color: #2994ef;
    transform: scale(1.05)
}

.goup:hover,.label li a:hover,nav .menu li a.on,nav .menu li a:hover {
    background-color: #2994ef;
    color: #fff
}

.heading {
    padding: .25rem .5rem
}

.heading h1,.heading h2,.heading h3 {
    font-size: 1.25rem
}

.heading .wd::after,.heading .wd::before {
    content: "\""
}

.between {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.more {
    font-size: .875rem;
    padding-right: .5rem
}

.more:hover {
    color: #2994ef
}

.sort {
    position: relative
}

.sort span {
    display: block;
    line-height: 1.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    background-color: #000;
    font-size: .8125rem;
    text-align: center;
    border-radius: 1rem;
    border: 1px solid #333
}

.sort span:hover {
    background-color: #2994ef;
    color: #000;
    cursor: pointer
}

.sort ul {
    display: none;
    position: absolute;
    margin-top: .3rem;
    width: 100%;
    text-align: center;
    background-color: #000;
    font-size: .8125rem;
    border-radius: .5rem;
    border: 1px solid #333;
    z-index: 1
}

.sort ul::after,.sort ul::before {
    content: '';
    position: absolute;
    top: -.25rem;
    left: 50%;
    margin-left: -.125rem;
    border-left: .25rem solid transparent;
    border-right: .25rem solid transparent
}

.sort ul::before {
    border-bottom: .25rem solid #333
}

.sort ul::after {
    border-bottom: .25rem solid #fff;
    margin-top: 1px
}

.sort ul li:not(:last-child) {
    border-bottom: 1px solid #333
}

.sort ul li a {
    display: block;
    margin: .125rem 0;
    height: 1.5rem;
    line-height: 1.5rem;
    color: inherit
}

.page {
    margin-top: 1.875rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.page li {
    padding: .125rem
}

.page a {
    display: block;
    padding: 0 .125rem;
    min-width: 4rem;
    height: 2rem;
    line-height: 2rem;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: .25rem;
    font-size: .875rem;
    text-align: center
}

.page .no a,.page a:hover,.sort .no,.sort ul li a:hover {
    background-color: #2994ef;
    color: #fff
}

.page .app {
    display: none
}

footer {
    padding: 1rem .125rem .5rem .125rem;
    font-size: .75rem;
    text-align: center;
    color: #aaa
}

footer .site {
    display: flex;
    padding: .25rem;
    font-size: .8125rem;
    justify-content: center;
    align-items: flex-end
}

footer .site a:not(:last-child)::after {
    content: '|';
    padding: 0 .25rem
}

footer .declare {
    font-size: .75rem
}

.panel {
    padding: .125rem
}

.panel .player {
    position: relative;
    padding-bottom: 56.25%;
    background-color: #000;
    border-radius: .125rem;
    overflow: hidden
}

.panel .player .play {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.brief {
    margin: .5rem .25rem;
    font-size: .875rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.label {
    display: flex;
    flex-wrap: wrap;
    padding: .125rem
}

.label li {
    width: 10%;
    text-align: center;
    padding: .125rem
}

.label li a {
    display: block;
    padding: .25rem .125rem;
    font-size: .875rem;
    border-radius: .25rem;
    background-color: #000;
    border: 1px solid #aaa
}

.module {
    margin-top: .25rem;
    padding-bottom: .5rem
}

.module .big a {
    display: block;
    height: 3.5rem;
    margin-bottom: 1px
}

.module .flat a {
    display: block;
    margin-top: 1px;
    height: 4.5rem
}

.module .big a img,.module .flat a img {
    width: 100%;
    height: 100%
}

.module .small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -.25rem
}

.module .small a {
    width: 10%;
    margin-top: .625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden
}

.module .small a img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 5px
}

.module .small span {
    margin-top: .25rem;
    font-size: .8125rem;
    white-space: nowrap;
    font-weight: 600;
    color: #ba3232
}

@media screen and (max-width: 1024px) {
    html {
        font-size:26px
    }

    .container {
        padding: 0 .25rem
    }

    header {
        padding: .5rem;
        margin-top: .25rem
    }

    nav .menu li {
        width: 20%
    }

    .case {
        margin-top: .25rem
    }

    .case .raster .item {
        width: 50%;
        padding: .125rem
    }

    .page .app {
        display: block
    }

    .page .hide {
        display: none
    }

    .label li,.module .small a {
        width: 20%
    }
}

@media screen and (max-width: 767px) {
    html {
        font-size:15px
    }
}

html>div {
    max-height: 60px!important
}
