/* 全局变量与重置 */
:root {
    --main-bg: #000;
    --main-color: #fff;
    --card-bg: #333;
    --card-min-bg: #1a1a1a;
    --accent: #ff6a00;
    --gold: #d4af37;
    --text-dim: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: var(--main-bg);
    color: var(--main-color);
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

img {
    width: 100%;
    display: block;
    height: auto;
    border: none;
}

button,h1,h2,h3,h4,h5,h6,input,label,select,textarea {
    font-size: 100%;
    vertical-align: top;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

dl,li,ol,ul {
    list-style: none
}

a,a:active,a:focus,a:hover {
    outline: 0;
    text-decoration: none;
    color: var(--main-color);
    font-size: 12px;
}

fieldset,img {
    border: none;
}

.grid-col-1 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-col-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-col-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-col-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-col-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-col-6 {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-col-7 {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-col-8 {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-col-9 {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-col-10 {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
}

.gap-1 {
    gap: 1px;
}

.gap-2 {
    gap: 2px;
}

.gap-3 {
    gap: 3px;
}

.gap-4 {
    gap: 4px;
}

.gap-5 {
    gap: 5px;
}

.gap-6 {
    gap: 6px;
}

.gap-7 {
    gap: 7px;
}

.gap-8 {
    gap: 8px;
}

.gap-9 {
    gap: 9px;
}

.gap-10 {
    gap: 10px;
}

.height-1 {
    display: block;
    width: 100%;
    height: 1px;
    clear: both;
}

.height-2 {
    display: block;
    width: 100%;
    height: 2px;
    clear: both;
}

.height-3 {
    display: block;
    width: 100%;
    height: 3px;
    clear: both;
}

.height-4 {
    display: block;
    width: 100%;
    height: 4px;
    clear: both;
}

.height-5 {
    display: block;
    width: 100%;
    height: 5px;
    clear: both;
}

.height-6 {
    display: block;
    width: 100%;
    height: 6px;
    clear: both;
}

.height-7 {
    display: block;
    width: 100%;
    height: 7px;
    clear: both;
}

.height-8 {
    display: block;
    width: 100%;
    height: 8px;
    clear: both;
}

.height-9 {
    display: block;
    width: 100%;
    height: 9px;
    clear: both;
}

.height-10 {
    display: block;
    width: 100%;
    height: 10px;
    clear: both;
}

.flex {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.padd0 {
    padding: 0px !important;
}

.padd1 {
    padding: 1px !important;
}

.padd2 {
    padding: 2px !important;
}

video {
    width: 100%;
    max-height: 70vw;
    background: var(--main-bg);
}

.app {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.glass-card {
    background: var(--card-bg);
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 2;
    max-width: 400px;
    width: 90%;
}

/* 头部固定布局 */
.header {
    position: -webkit-sticky;
    position: sticky;
    top: -76px;
    z-index: 9999;
    background: var(--main-bg);
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header .header-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 8px;
    gap: 4px;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
    white-space: nowrap;
}

.header .logo a {
    display: block;
    height: 32px;
}

.header .logo img {
    height: 100%;
    width: 112px;
    background: none;
    border-radius: 8px;
    object-fit: contain;
}

.header .search-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-radius: 6px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3px 5px;
    background: #999;
}

.header .search-container input {
    background: none;
    border: none;
    color: #fff;
    font-size: 12px;
    width: 100%;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.header .icon-search {
    background: url(../images/icons_1.gif?0510);
    background-repeat: no-repeat;
    background-size: auto 30px;
    width: 34px;
    height: 25px;
    border: none;
    background-position: -52px -2px;
    cursor: pointer;
}

.header .header-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.header .header-icons .icon-ai {
    background: url(../images/icons_1.gif?0510);
    background-repeat: no-repeat;
    background-size: auto 30px;
    width: 36px;
    height: 33px;
    border: none;
    background-position: -91px 0px;
    display: block;
}

.header .header-icons .icon-newweb {
    background: url(../images/icons_1.gif?0510);
    background-repeat: no-repeat;
    background-size: auto 30px;
    width: 36px;
    height: 33px;
    border: none;
    background-position: -7px 0px;
    display: block;
}

.header .category-grid {
    background: none !important;
}

/* 导航滑动条 */
.nav-scroller {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 0px 2px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nav-scroller::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    list-style: none;
    padding: 0 10px;
    gap: 10px;
}

.nav-item {
    white-space: nowrap;
    padding-bottom: 0px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.nav-item a {
    font-size: 15px;
    color: var(--main-color);
    font-weight: 500;
    padding: 5px 0px;
    display: block;
    -webkit-transition: -webkit-transform 0.1s ease;
    transition: transform 0.1s ease;
}

.nav-item a:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.8;
}

.nav-item.active {
    border-bottom: 2px solid var(--accent);
}

.nav-item.active a {
    color: var(--main-color);
    font-weight: bold;
}

.nav-item.highlight a {
    color: red;
    font-weight: 500;
}

.nav-item.highlight1 a {
    color: #4caf50;
    font-weight: 500;
}

/* bann轮播 */
.banner {
    height: 28vw;
    max-height: 160px;
    padding: 0px 0px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 640px;
    border-bottom-left-radius: 200px 20px;
    border-bottom-right-radius: 200px 20px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.banner .banner-item {
    height: 28vw;
    max-height: 160px;
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}

.banner span {
    position: absolute;
    width: 100%;
    margin-top: -18px;
    text-align: center;
    color: var(--main-color);
    background: url(../images/opacity60.png?0510);
    opacity: 0.5;
    font-size: 13px;
    line-height: 18px;
}

/* 公告栏 */
.announcement {
    padding: 0px 4px;
    border-radius: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    color: var(--main-color);
    line-height: 30px
}

.announcement .icon-vol {
    background: url(../images/icons_1.gif?0510);
    background-repeat: no-repeat;
    background-size: auto 26px;
    width: 35px;
    height: 29px;
    border: none;
    background-position: -153px 0px;
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* 图标网格 */
.action-grid {
    padding: 6px 8px;
}

.action-grid .box {
    padding: 2px;
}

.action-grid .box:active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.action-item {
    text-align: center;
}

.action-item a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.action-item a img {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: auto;
}

.box {
    aspect-ratio: 1/1;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    -webkit-transition: -webkit-transform 0.1s ease;
    transition: transform 0.1s ease;
}

.border-pg {
    border: 1.5px solid #fff;
}

.action-item span {
    font-size: 11px;
    color: var(--main-color);
    font-weight: 500;
    display: block;
    margin-bottom: 1px;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 功能网格 */
.category-grid.height25 {
    padding: 4px 8px;
    background: var(--card-min-bg);
}

.category-grid {
    padding: 0px 8px;
    background: var(--card-min-bg);
}

.category-grid .cat-tag {
    background: var(--card-bg) ;
    text-align: center;
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    padding: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: -webkit-transform 0.1s ease;
    transition: transform 0.1s ease;
}

.category-grid .cat-tag.tag_title {
    background: no-repeat;
    font-size: 13px;
    border-top: 2px solid #009688;
    text-align: left;
    color: #009688;
    font-weight: 500;
    white-space: nowrap;
    background: var(--main-bg);
}

.category-grid .cat-tag.tag_title2 {
    font-size: 13px;
    height: 28px;
    text-align: left;
    font-weight: 700;
    background: center;
    background: var(--main-bg);
    margin-top: -10px;
    height: 30px;
    height: 30px !important;
    position: relative;
    bottom: -10px;
    margin-left: -4px;
    margin-right: 4px;
    color: #009688;
    border-top: 1px solid #009688;
    border-left: 1px solid #009688;
}

.category-grid .cat-tag.filter-more {
    background: url(../images/more.png?0510);
    background-repeat: no-repeat;
    background-size: auto 12px;
    background-position: right 0px center;
    padding-right: 12px;
    font-size: 12px;
    height: 24px !important;
    line-height: 24px !important;
    color: var(--main-color);
    min-width: 40px;
    text-align: right;
}

.category-grid .cat-tag a {
    color: var(--main-color);
    font-weight: 500;
    width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
}

.category-grid.height20 .cat-tag {
    height: 20px;
    line-height: 20px;
}

.category-grid.height22 .cat-tag {
    height: 22px;
    line-height: 22px;
}

.category-grid.height25 .cat-tag {
    height: 25px;
    line-height: 25px;
}

.category-grid.height27 .cat-tag {
    height: 27px;
    line-height: 27px;
}

.category-grid.height30 .cat-tag {
    height: 30px;
    line-height: 30px;
}

.category-grid.height32 .cat-tag {
    height: 32px;
    line-height: 32px;
}

.category-grid.height35 .cat-tag {
    height: 35px;
    line-height: 35px;
}

.category-grid.height37 .cat-tag {
    height: 37px;
    line-height: 37px;
}

.category-grid.height40 .cat-tag {
    height: 40px;
    line-height: 40px;
}

.cat-tag:active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.cat-color .cat-tag:nth-child(12n+1) a {
    color: #ff02b3;
}

.cat-color .cat-tag:nth-child(3) a {
    color: #8BC34A;
}

.cat-color .cat-tag:nth-child(5) a {
    color: #ff453a;
}

.cat-color .cat-tag:nth-child(7) a {
    color: #15c5ff;
}

.cat-color .cat-tag:nth-child(9) a {
    color: #21ff15;
}

.cat-color .cat-tag:nth-child(11) a {
    color: #ff453a;
}

.cat-color .cat-tag:nth-child(15) a {
    color: #15c5ff;
}

.cat-color1 .cat-tag:nth-child(12n+1) a {
    color: #21ff15;
}

.cat-color1 .cat-tag:nth-child(3) a {
    color: #ff453a;
}

.cat-color1 .cat-tag:nth-child(5) a {
    color: #ff453a;
}

.cat-color1 .cat-tag:nth-child(7) a {
    color: #ff02b3;
}

.cat-color1 .cat-tag:nth-child(9) a {
    color: #15c5ff;
}

.cat-color1 .cat-tag:nth-child(11) a {
    color: #8BC34A;
}

.cat-color1 .cat-tag:nth-child(15) a {
    color: #15c5ff;
}

.category-type {
    background: var(--card-min-bg);
    padding: 0px;
    margin: 0px 4px;
    padding: 6px;
    border-radius: 6px;
}

.category-type .cat-tag {
    background: var(--card-bg);
    ; margin: 1px;
    border-radius: 6px;
    line-height: 28px;
    height: 28px;
}

.category-type h5 {
    font-size: 13px;
    text-align: center;
}

/* 视频流 */
.filter-bar {
    padding: 6px 8px 6px 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 2px;
    font-size: 16px;
}

.filter-bar .filter-title {
    background: url(../images/title-bg.png?0510);
    background-repeat: no-repeat;
    background-size: auto 25px;
    background-position: 0px 1px;
    width: 80px;
    padding-left: 15px;
    font-size: 16px;
    height: 28px;
    min-width: 88px;
}

.video-feed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 0px 8px;
}

.video-feed3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px 8px;
    padding: 0px 8px;
}

.video-feed .video-card:active, .video-feed3 .video-card:active {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

.video-feed .video-card .thumb, .video-feed3 .video-card .thumb {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 16/10;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.video-feed .video-card img, .video-feed3 .video-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.video-feed .badge, .video-feed3 .badge {
    position: absolute;
    left: 6px;
    top: 0;
    background: #4CAF50;
    font-size: 10px;
    padding: 1px 2px;
    border-radius: 0 0 4px 4px;
    color: #fff;
    z-index: 1;
}

.video-feed .meta, .video-feed3 .meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3px 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 10px;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--main-color);
    z-index: 1;
}

.video-feed .title {
    font-size: 12px;
    margin-top: 6px;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--main-color);
}

.video-feed3 .title {
    line-height: 20px;
    overflow: hidden;
    height: 20px;
    margin: 0px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 右下角浮动 */
.float-btn {
    position: fixed;
    right: 15px;
    bottom: 80px;
    width: 56px;
    height: 56px;
    background: #222;
    border: 1px solid #444;
    border-radius: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 99;
}

.dl-text {
    font-size: 8px;
    color: var(--accent);
}

.video-container {
    width: 100%;
    max-width: 800px;
}

/* 标题部分 */
.video-header {
    font-size: 17px;
    padding: 6px 8px;
}

.video-title {
    font-size: 16.5px;
    font-weight: bold;
    margin-bottom: 6px;
    line-height: 24px;
}

.video-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.video-meta span {
    margin-right: 15px;
}

.highlight {
    color: #ffaa44;
    /* 橙黄色高亮 */
}

.highlight1 {
    color: #CCFFCC;
    /* 橙黄色高亮 */
}

/* 播放器区域 */
.player-wrapper {
    position: relative;
    overflow: hidden;
    padding: 8px;
    padding-top: 0px;
}

.player-wrapper .play-content {
    width: 100%;
    background: #333;
    position: relative;
}

.player-wrapper .play-content .play_but {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    z-index: 5;
}

.player-wrapper .play-content .play_but .button {
    background: url(../images/play.png?0510) no-repeat center;
    width: 60px;
    height: 60px;
    background-size: contain;
    border: none;
    cursor: pointer;
}

.player-wrapper .play_video .play_but {
    display: none !important;
}

.infor_flow {
    text-align: center;
    padding: 0px 8px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.infor_flow a {
    display: block;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.infor_flow a img {
    width: 100%;
    height: 24vw;
    max-height: 140.8px;
    display: block;
}

.infor_flow a span {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    padding: 0px 10px;
    background: #ffffff;
    line-height: 22px;
    height: 22px;
    font-size: 13px;
    border-top-left-radius: 4px;
}

.infor_flow.grid-col-2 a img {
    width: 100%;
    height: 17vw;
    max-height: 96px;
}

/* 底部样式 */
.site-footer {
    padding: 20px 0px;
    text-align: center;
    color: #666;
}

.site-footer .logo {
    width: 25%;
    margin: 0 auto;
    margin-bottom: 12px;
}

.site-footer .promise-text {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.site-footer .footer-links {
    margin-bottom: 15px;
    font-size: 13px;
}

.site-footer .footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
}

.site-footer .footer-links .separator {
    color: #333;
}

.site-footer .footer-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
}

.site-footer .logo-text {
    color: #ccc;
    font-size: 13px;
    font-weight: bold;
}

.site-footer .copyright {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
}

/* 分页 */
.page .fan-page {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 6px;
    gap: 4px;
}

.page .fan-page a {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-right: none;
    line-height: 36px;
    max-width: 65px;
    background: var(--card-min-bg);
    border-radius: 4px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.page .fan-page .action {
    background: var(--card-bg) !important;
}

.page .sk-page {
    text-align: center;
}

.page .sk-page input {
    border: 1px solid #000000;
    padding: 0px 8px;
    line-height: 32px;
    width: 40%;
    text-align: center;
    border-radius: 4px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.page .sk-page a {
    padding: 0px 6px;
    line-height: 32px;
    width: 20%;
    display: inline-block;
    vertical-align: top;
    color: #aaa;
    border-radius: 4px;
    font-size: 14px;
    background: var(--card-min-bg);
    text-align: center;
}

.page .sk-page span {
    font-size: 15px;
    line-height: 34px;
    margin-right: 6px;
    display: block;
    width: 100%;
    text-align: center;
}

.page a:active {
    -webkit-transform: scale(0.92);
    transform: scale(0.92);
}

/* 搜索 */
.search-container .content-list .search {
    width: 100%;
    padding: 14px 0px;
    display: block;
}

.search-container .content-list .search .form {
    padding: 0px 8px;
}

.search-container .content-list .search form {
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid #3fc3cc;
    border-radius: 2px;
}

.search-container .content-list .search input[name='search'] {
    display: block;
    width: 75%;
    float: left;
    height: 40px;
    border: none;
    border-radius: 0px;
    padding: 0px 20px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.search-container .content-list .search input[name='search']:focus {
    border: none;
}

.search-container .content-list .search input[type='button'] {
    float: left;
    width: 25%;
    border: none;
    background: #fff;
    color: #34a1a8;
    height: 40px;
    border-radius: 0px;
    border-left: 1px solid #34a1a8;
    font-size: 15px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.search-container .content-list .search .title {
    font-size: 14px;
    padding: 4px 8px;
    width: 100%;
    margin-bottom: 4px;
    margin-top: 10px;
}

.search-container .content-list .search .item {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding: 8px 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
}

.search-container .content-list .search .item a {
    font-size: 12px;
    margin-bottom: 4px;
    padding: 0px 8px;
    border-radius: 4px;
    display: block;
    border: 1px solid #ffffff;
    background: #494949;
    line-height: 24px;
    color: var(--main-color);
    white-space: nowrap;
}

/* 加载 */
.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    background: url(../images/opacity60.png);
    color: var(--main-color);
    border-radius: 10px;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
}

.loading i {
    width: 26px;
    height: 26px;
    border: 3px solid #e0e0e0;
    border-top-color: red;
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    display: block;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
