@charset "utf-8";

/* 自定义颜色 */
:root {
    --text_color: #333;
    --bg_body: #fff;
    --bg_holder: #f86369;

    --text_link: #333;
    --hover_link: #222;

    --hover_site_nav: #f5f5f5;

    --bg_site_logo: #f86369;
    --hover_site_logo: #f86369;

    --text_btn_primary: #fff;
    --bg_btn_primary: #f86369;
    --hover_btn_primary: #f86369;

    --text_btn_secondary: #666;
    --bd_btn_secondary: #bbb;
    --bg_btn_secondary: #fff;
    --hover_btn_secondary: #f5f5f5;

    --text_btn_default: #666;
    --bg_btn_default: #eee;
    --hover_btn_default: #ddd;
    --bd_btn_bordered: #bbb;

    --text_header: #333;
    --bg_header: #fff;

    --bg_search_box: #eee;

    --text_place_holder: #999;

    --bg_dropdown: #fff;
    --link_dropdown: #666;
    --hover_dropdown: #f5f5f5;

    --bg_content: #fff;

    --text_white: #fff;
    --text_dark: #333;
    --text_light: #999;
    --text_orange: #ff9800;
    --text_red: #f50000;
    --text_gray: #666;
    --text_blue: #0099de;
    --text_green: #44ff1e;
    --text_primary: #f86369;
    --bg_dark: #333;
    --bg_white: #fff;
    --bg_gray: #666;
    --bg_light: #f5f5f5;
    --bg_blue: #0099de;
    --bg_orange: #ff9800;
    --bg_primary: #f86369;
    --bg_secondary: #999;
    --bg_green: #00c51b;
    --bg_sky: #d2e5fb;
    --bg_red: #f50000;
    --bg_line: #f0f0f0;
    --bg_border: #ddd;
    --bg_sky_line: #9bc2ef;
    --bg_light_red: #ffeeee;

    --bg_footer: #fbfbfb;
    --text_footer: #888;
    --link_footer: #888;
}

/* 全局通用样式 */
html,
body {
    width: 100vw;
    padding: 0;
    margin: 0;
    font-size: 10px;
    font-family: "webfonts", "PingFang SC", Arial, "Microsoft YaHei", sans-serif;
}

body {
    overflow-x: hidden;
}

ul,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

input,
textarea,
select {
    font-family: "webfonts", "PingFang SC", Arial, "Microsoft YaHei", sans-serif;
}

input:required:invalid,
input:focus:invalid,
textarea:required:invalid,
textarea:focus:invalid {
    box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

img {
    max-height: 100%;
    max-width: 100%;
}

p {
    margin: 0 0 5px;
}

a {
    text-decoration: none;
    color: var(--text_link);
}

a:hover {
    color: var(--hover_link);
}


.template.default {
    background: var(--bg_body);
    font-size: 1.4rem;
    color: var(--text_color);
}

.template.light {
    background: var(--bg_light);
    font-size: 1.4rem;
    color: var(--text_color);
}

.template.modal-in {
    overflow: hidden;
}

.template .container {
    margin: 0 auto;
    padding: 0 10px;
}

.template.small .container {
    max-width: 900px;
}

.template.medium .container {
    max-width: 1260px;
}

.template.large .container {
    max-width: 1600px;
}

.template .container.small {
    max-width: 900px;
}

.template .container.medium {
    max-width: 1200px;
}

.template .container.large {
    max-width: 1600px;
}

/* 头部底部样式 */
.header {
    background-color: var(--bg_header);
    height: 60px;
}

.header .site-logo {
    height: 40px;
    margin: 10px 0;
    display: inline-block;
}

.header .site-nav {
    margin: 0 20px;
    display: flex;
}

.header .site-nav>a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 1.6rem;
    color: var(--text_header);
}

.header .site-nav>a:hover {
    background-color: var(--hover_site_nav);
}

.header .site-nav .btn-entrance {
    height: 36px;
    line-height: 36px;
    margin: 12px 0 0 10px;
    padding: 0 15px;
    background-color: var(--bg_btn_primary);
    color: var(--text_btn_primary);
    border-radius: 18px;
    font-size: 1.4rem;
}

.header .site-nav .btn-entrance:hover {
    background-color: var(--hover_btn_primary);
}

.header .site-nav .btn-entrance .iconfont {
    font-size: 1.8rem;
}

.header .site-nav .btn-app {
    height: 34px;
    line-height: 36px;
    margin: 12px 0 0 10px;
    padding: 0 15px;
    background-color: var(--bg_btn_secondary);
    border: 1px solid var(--bd_btn_secondary);
    border-radius: 18px;
    font-size: 1.4rem;
    color: var(--text_btn_secondary)
}

.header .site-nav .btn-app:hover {
    background-color: var(--hover_btn_secondary);
}

.header .site-nav .btn-app .iconfont {
    font-size: 1.8rem;
}

.header .site-nav .btn-user {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .site-nav .btn-user>a {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    overflow: hidden;
    display: inline-block;
    margin: 10px 0 10px 10px;
    background-color: var(--bg_border);
}

.header .site-nav .btn-user .dropdown-menu {
    width: 120px;
}

.header .site-nav .dropdown-menu {
    width: 150px;
}

.header .site-search .input-group {
    height: 36px;
    display: flex;
    padding: 0 0 0 10px;
    background-color: var(--bg_search_box);
    border-radius: 18px;
}

.header .site-search .input-group input {
    height: 36px;
    width: 150px;
    padding: 0;
    color: var(--text_gray);
    border: none;
    outline: none;
    outline-width: 0;
    background: none;
    transition: width .4s;
}

.header .site-search .input-group input:focus,
.header .site-search .input-group input:valid {
    width: 250px;
}

.header .site-search .input-group input:focus~a {
    background-color: var(--bg_primary);
    color: var(--text_white)
}

.header .site-search .input-group>a {
    height: 34px;
    width: 34px;
    border-radius: 18px;
    font-size: 2.2rem;
    line-height: 32px;
    margin: 1px 1px 0 0;
    text-align: center;
    font-weight: bold;
    color: var(--text_light);
    transition: all .4s;
}

.header .site-search .input-group>a:hover {
    background-color: var(--bg_gray);
    color: var(--text_white)
}

/* 主体样式 */
.content {
    background-color: var(--bg_content);
}

.template.medium .content {
    max-width: 1240px;
}

/*
.template.modal-in .content{filter:blur(3px);}
*/
/* 固定头部样式 */
.template.fixed .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1024;
}

.template.fixed .content {
    margin-top: 60px;
}

.template.light .content {
    margin-top: 70px;
}

.template.fixed .sticky {
    position: sticky;
    top: 70px;
}

/* 底部样式 */
.footer {
    padding: 20px 0 0;
    font-size: 1.4rem;
    border-top: 1px solid var(--bg_line);
    background-color: var(--bg_footer);
    color: var(--text_footer);
}

.footer a {
    color: var(--link_footer);
}

.footer .go-pc {
    margin: 0 5px;
}

.footer .go-mobile {
    margin: 0 15px 0 5px;
}

.template.medium .footer .container {
    max-width: 960px;
}

/* 阴影效果 */
.shadow-bs {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .15);
}

/* 水平分隔 */
.hspace-s {
    height: 10px;
    flex-shrink: 0;
}

.hspace-m {
    height: 20px;
    flex-shrink: 0;
}

.hspace-l {
    height: 40px;
    flex-shrink: 0;
}

.vspace-line {
    width: 1px;
    flex-shrink: 0;
}

.vspace-s {
    width: 5px;
    flex-shrink: 0;
}

.vspace-m {
    width: 10px;
    flex-shrink: 0;
}

.vspace-l {
    width: 20px;
    flex-shrink: 0;
}

.vspace-xl {
    width: 30px;
    flex-shrink: 0;
}

/* 外边距 */
.mg-s {
    margin: 5px;
}

.mg-m {
    margin: 10px;
}

.mg-l {
    margin: 20px;
}

.mg-n {
    margin: 0 !important;
}

.mh-s {
    margin: 0 5px;
}

.mh-m {
    margin: 0 10px;
}

.mh-l {
    margin: 0 20px;
}

.mv-s {
    margin: 5px 0;
}

.mv-m {
    margin: 10px 0;
}

.mv-l {
    margin: 20px 0;
}

/* 内边距 */
.pd-s {
    padding: 5px;
}

.pd-m {
    padding: 10px;
}

.pd-l {
    padding: 20px;
}

.pd-n {
    padding: 0 !important;
}

.ph-n {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.ph-s {
    padding: 0 5px !important;
}

.ph-m {
    padding: 0 10px;
}

.ph-l {
    padding: 0 20px !important;
}

.pv-s {
    padding: 0 5px;
}

.pv-m {
    padding-top: 10px;
    padding-bottom: 10px;
}

.pv-l {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* 背景色 */
.bg-orange {
    background-color: var(--bg_orange);
}

.bg-primary {
    background-color: var(--bg_primary);
}

.bg-secondary {
    background-color: var(--bg_secondary);
}

.bg-light {
    background-color: var(--bg_light);
}

.bg-white {
    background-color: var(--bg_white);
}

.bg-line {
    background-color: var(--bg_line);
}

/* 字体颜色 */
.text-white {
    color: var(--text_white);
}

.text-dark {
    color: var(--text_dark);
}

.text-light {
    color: var(--text_light);
}

.text-blue {
    color: var(--text_blue);
}

.text-orange {
    color: var(--text_orange) !important;
}

.text-primary {
    color: var(--text_primary)
}

.text-red {
    color: var(--text_red) !important;
}

/* 字体大小 */
.font-s {
    font-size: 1.2rem !important;
}

.font-n {
    font-size: 1.4rem !important;
}

.font-m {
    font-size: 1.6rem !important;
}

.font-l {
    font-size: 2.0rem !important;
}

.font-xl {
    font-size: 2.4rem;
}

/* 文字排列 */
.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.text-middle {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 1%;
}

/* 图片图标 */
.im-icon {
    height: 20px;
    width: 16px;
    display: inline-block;
    background-size: contain;
    background-position: top center;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-right: 5px;
    opacity: .8;
}

.im-icon.icon-username {
    background-image: url(../images/icon_username.png);
}

.im-icon.icon-password {
    background-image: url(../images/icon_password.png);
}

.im-icon.icon-mobile {
    background-image: url(../images/icon_mobile.png);
}

.im-icon.icon-phone {
    background-image: url(../images/icon_phone.png);
}

.im-icon.icon-apps {
    background-image: url(../images/icon_apps.png);
}

.im-icon.icon-likes {
    background-image: url(../images/icon_like.png);
}

.im-icon.icon-unlike {
    background-image: url(../images/icon_unlike.png);
}

.im-icon.icon-emoji {
    background-image: url(../images/icon_emoji.png);
}

.im-icon.icon-comment {
    background-image: url(../images/icon_comment.png);
}

.im-icon.icon-reply {
    background-image: url(../images/icon_reply.png);
}

.im-icon.icon-notifications {
    background-image: url(../images/icon_notification.png);
}

.im-icon.icon-notifications.active {
    background-image: url(../images/icon_notification_on.png);
}

.im-icon.icon-weixin {
    background-image: url(../images/icon_weixin.png);
}

.im-icon.icon-qq {
    background-image: url(../images/icon_qq.png);
}

.im-icon.icon-alipay {
    background-image: url(../images/icon_alipay.png);
}

.im-icon.icon-wrong {
    background-image: url(../images/icon_wrong.png);
}

.im-icon.icon-right {
    background-image: url(../images/icon_right.png);
}

.im-icon.large {
    width: 20px;
    height: 24px;
}

.im-icon.xlarge {
    width: 20px;
    height: 20px;
}

.arrow-more {
    height: 20px;
    line-height: 20px;
    position: relative;
    padding: 0 8px;
    z-index: 2;
}

.arrow-more:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border: 6px solid;
    margin-top: -5px;
    border-color: transparent transparent transparent var(--bg_primary);
}

.arrow-more:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 2px;
    width: 0;
    height: 0;
    border: 6px solid;
    margin-top: -5px;
    border-color: transparent transparent transparent #fff;
}

.arrow-more.second {
    padding: 0 3px;
    z-index: 1;
}

/* 加载动画 */
.loader-container {
    height: 70px;
    width: 70px;
    color: var(--bg_gray);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}

@keyframes load {
    0% {
        height: 10px;
    }

    50% {
        height: 30px;
    }

    100% {
        height: 10px;
    }
}

@-webkit-keyframes load {
    0% {
        height: 10px;
    }

    50% {
        height: 30px;
    }

    100% {
        height: 10px;
    }
}

/* 进度条 */
.circle-progress {
    font-size: 100px;
    width: 1em;
    height: 1em;
    position: relative;
    background-color: var(--bg_blue);
}

.circle-progress:after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.circle-progress-left,
.circle-progress-right {
    /*width: 1em; height: 1em; */
    background-color: var(--bg_white);
}

.circle-progress-right {
    clip: rect(0, auto, auto, .5em);
}

.circle-progress-left {
    clip: rect(0, .5em, auto, 0);
}

.progress {
    width: 0.9em;
    height: 0.9em;
    background-color: var(--bg_white);
    ;
    text-align: center;
    line-height: 0.2em;
    color: rgba(0, 0, 0, 0.5);
}

.progress :first-child {
    font-size: 0.2em;
    height: 0.8em;
    line-height: 0.8em;
    display: block;
}

.circle-progress * {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    margin: auto;
}

.circle-progress,
.circle-progress>* {
    border-radius: 50%;
}

/* 其他杂项 */
.text-vline {
    margin: 0 5px;
    font-size: 1rem;
    align-self: center;
    color: var(--text_light);
}

.place-holder {
    background-color: var(--bg_holder);
    min-height: 300px;
}

.qrcode-m {
    width: 80px;
    height: 80px;
    border: 1px solid var(--text_dark)
}

.hline-dashed {
    border-bottom: 1px dashed var(--bg_line);
    margin: 5px 0;
}

.hline-solid {
    border-bottom: 1px solid var(--bg_line);
    margin: 5px 0;
}

.label-circle {
    margin: 0 10px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    display: inline-block;
    background: var(--bg_line);
    color: var(--text_light);
    text-align: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.single-line {
    white-space: nowrap;
}

.lh-26 {
    line-height: 26px;
}

.pull-right {
    float: right;
}

.hidden {
    display: none !important;
}

.dragscroll {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -ms-user-select: none;
}

/* 按钮 */
.btn {
    height: 40px;
    line-height: 40px;
    font-size: 1.4rem;
    text-align: center;
    flex-shrink: 0;
    border-radius: 5px;
    background-color: var(--bg_btn_default);
    color: var(--text_btn_default);
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--hover_btn_default);
    color: var(--text_btn_default);
}

.btn:active {
    background-color: var(--bg_btn_default);
    color: var(--text_btn_default);
}

.btn.white {
    background-color: var(--bg_white);
}

.btn.white:hover {
    background-color: var(--bg_primary);
    color: var(--text_white);
    border-color: var(--bg_primary)
}

.btn.primary {
    background-color: var(--bg_btn_primary);
    color: var(--text_white);
}

.btn.blue {
    background-color: var(--bg_blue);
    color: var(--text_white);
}

.btn.orange {
    background-color: var(--bg_orange);
    color: var(--text_white);
}

.btn.bordered {
    height: 30px;
    line-height: 30px;
    border: 1px solid var(--bg_secondary);
    color: var(--text_gray);
    background-color: #fff;
    text-shadow: 0 1px #fff;
}

.btn.bordered:hover {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
}

.btn.bordered:active {
    box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, .5) !important;
}

.btn.orange.bordered {
    border: 1px solid var(--bg_orange);
    color: var(--bg_orange);
    background-color: transparent;
}

.btn.round {
    border-radius: 20px;
}

.btn.mini {
    height: 30px;
    padding: 0 20px;
    line-height: 30px;
}

.btn.link {
    border: none;
    padding: 0 5px;
    background-color: transparent;
    color: var(--text_blue);
    height: auto;
    line-height: normal;
}

.btn.link.bordered {
    border: 1px solid var(--bg_secondary);
    color: var(--text_gray);
    padding: 3px 8px;
    background-color: #fff;
    text-shadow: 0 1px #fff;
}

.btn.link.bordered:hover {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
}

.btn.link.bordered:active {
    box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, .5);
}

.btn.disabled {
    cursor: not-allowed;
    filter: grayscale(100%);
}

.btn.grow {
    flex: 1;
}

.btn-group {
    display: flex;
    align-items: center;
}

.btn-group .btn {
    margin-left: 5px;
}

.btn-group .btn:first-child {
    margin-left: 0;
}

/* 轮播容器 */
.banners {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
    background: var(--bg_light);
    border-radius: 5px;
}

.banners .banner {
    border-radius: 5px;
}

.banners .banner img {
    max-width: 100%;
    max-height: none;
}

.banners.large {
    height: 270px;
}

.banners.large .banner {
    height: 270px;
}

.banners.medium {
    height: 230px;
}

.banners.medium .banner {
    height: 230px;
}

.banners.small {
    height: 130px;
}

.banners.small .banner {
    height: 130px;
}

/* 下拉选择框 */
.dropdown {
    position: relative;
    z-index: 512;
}

.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    min-width: 120px;
    background-color: var(--bg_dropdown);
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
}

.dropdown:hover {
    z-index: 1024;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

.dropdown>input:valid~.dropdown-menu {
    display: none;
}

.dropdown>input:focus::-webkit-input-placeholder {
    color: var(--text_place_holder);
}

.dropdown-menu>a {
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    color: var(--link_dropdown)
}

.dropdown-menu>a:hover {
    background-color: var(--hover_dropdown);
}

.dropdown-menu>a:first-child {
    border-radius: 5px 5px 0 0;
}

.dropdown-menu>a:last-child {
    border-radius: 0 0 5px 5px;
}

/* 列表样式 */
.list-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.list-box h3 {
    font-size: 1.6rem;
}

.list-box h3>a {
    float: right;
    font-weight: normal;
    font-size: 1.4rem;
}

.list-box h3>.tips {
    margin-left: 10px;
    font-weight: normal;
    cursor: pointer;
}

.list-box .list-items {
    display: flex;
    flex-direction: column;
}

.list-box.width-icon .list-items {
    padding-left: 25px;
}

.list-box.horizontoal .list-items {
    flex-direction: row;
}

.list-box.wrap .list-items {
    flex-wrap: wrap;
}

.list-box.with-title h3 {
    border-bottom: 1px solid var(--bg_line);
    padding-bottom: 10px;
}

.list-box.fixed {
    flex-grow: 0;
    flex-shrink: 0;
}

.list-box .list-items .list-item {
    display: flex;
    align-items: center;
}

.list-box .list-tabs {
    border-bottom: 1px solid var(--bg_line);
    margin-bottom: 10px;
    display: flex;
}

.list-box .list-tabs>a {
    color: var(--text_light);
    font-size: 1.6rem;
    font-weight: bold;
    padding: 10px 15px;
    position: relative;
}

.list-box .list-tabs>a:hover {
    color: var(--text_dark);
}

.list-box .list-tabs>a.active {
    color: var(--text_dark);
}

.list-box .list-tabs>a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    right: 50%;
    bottom: 0;
    background-color: var(--text_dark);
    transition: width .2s;
}

.list-box .list-tabs>a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: 0;
    background-color: var(--text_dark);
    transition: width .2s;
}

.list-box .list-tabs>a.active:before,
.list-box .list-tabs>a.active:after {
    width: 50%;
}

.list-box .list-tabs .search-box {
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    display: flex;
    padding: 0;
}

.list-box .list-tabs .search-box .input-group {
    height: 32px;
    display: flex;
}

.list-box .list-tabs .search-box .input-group input {
    height: 30px;
    width: 55px;
    padding: 0 10px;
    border-radius: 5px 0 0 5px;
    color: var(--text_gray);
    border: none;
    outline-width: 0;
    background: none;
    transition: width .4s;
}

.list-box .list-tabs .search-box .input-group input:focus,
.wikis-search .input-group input:valid {
    width: 120px;
    background-color: var(--bg_light);
}

.list-box .list-tabs .search-box .input-group input:focus~a {
    background-color: var(--bg_primary);
    color: var(--text_white)
}

.list-box .list-tabs .search-box .input-group>a {
    height: 30px;
    width: 30px;
    border-radius: 0 5px 5px 0;
    font-size: 2.2rem;
    line-height: 28px;
    text-align: center;
    font-weight: bold;
    color: var(--text_light);
    transition: all .4s;
}

.list-box .list-tabs .search-box .input-group>a:hover {
    background-color: var(--bg_gray);
    color: var(--text_white)
}

.list-box .list-items .list-item.item-1 {
    height: 70px;
}

.list-box .list-items .list-item.item-1>a:nth-child(1) {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--bg_light);
    overflow: hidden;
}

.list-box .list-items .list-item.item-1>a:nth-child(3) {
    width: 56px;
    color: var(--text_orange);
    align-self: flex-start;
    margin-top: 10px;
}

.list-box .list-items .list-item.item-1>div {
    flex: 1;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
}

.list-box .list-items .list-item.item-1>div p {
    color: var(--text_light);
    margin: 5px 0;
    font-size: 1.2rem;
}

.list-box .list-items .list-item.item-2 {
    height: 150px;
    border-bottom: 1px solid var(--bg_line);
}

.list-box .list-items .list-item.item-2:last-child {
    border: none;
}

.list-box .list-items .list-item.item-2>a:nth-child(2) {
    height: 100px;
    width: 150px;
    border-radius: 5px;
    background-color: var(--bg_light);
    text-align: center;
    overflow: hidden;
}

.list-box .list-items .list-item.item-2>div {
    flex: 1;
    padding: 0 10px 0 0;
    display: flex;
    flex-direction: column;
}

.list-box .list-items .list-item.item-2>div>a {
    font-size: 1.6rem;
    font-weight: bold;
}

.list-box .list-items .list-item.item-2>div>p {
    color: var(--text_light);
    margin: 10px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-box .list-items .list-item.item-2>div>div {
    font-size: 1.2rem;
}

.list-box .list-items .list-item.item-2>div>div>a {
    color: var(--text_light);
    margin-right: 10px;
}

.list-box .list-items .list-item.item-3 {
    height: 100px;
}

.list-box .list-items .list-item.item-4 {
    padding: 10px 0;
    width: 50%;
    align-items: stretch;
}

.list-box .list-items .list-item.item-4 .cover {
    width: 80px;
}

.list-box .list-items .list-item.item-4 .info {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
}

.list-box .list-items .list-item.item-4 .info>a {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.list-box .list-items .list-item.item-4 .info>span {
    margin: 5px 0;
    color: var(--text_gray);
}

.list-box .list-items .list-item.table-title {
    background-color: var(--bg_light);
    border-top: 1px solid var(--bg_line)
}

.list-box .list-items .list-item.table-title span {
    padding: 5px;
    font-size: 1.4rem;
    font-weight: 500;
}

.list-box .list-items .list-item.table-row {
    border: 1px solid var(--bg_line);
    border-top: none;
}

.list-box .list-items .list-item.table-row span {
    padding: 8px;
}

/* 选项卡 */
.css-tabs input[type=radio] {
    display: none
}

.css-tabs .tabs-title {
    display: flex;
    padding: 5px;
    border-radius: 5px;
}

.css-tabs .tabs-title.style-link {
    padding: 5px 0;
    color: var(--text_blue);
}

.css-tabs .tabs-title.style-tabs {
    font-size: 1.6rem;
    border-bottom: 1px solid var(--bg_line);
    border-radius: 0;
    padding: 0;
}

.css-tabs .tabs-title label {
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 5px;
    background-color: var(--bg_white)
}

.css-tabs .tabs-title.style-tabs label {
    padding: 8px 15px 10px 15px;
    border-radius: 0;
    margin: 0 2px;
    color: var(--text_gray);
    border-top: 2px solid var(--bd_btn_secondary);
    box-shadow: 0 -1px 2px rgba(0, 0, 0, .2);
    background: var(--bg_light);
}

.css-tabs .tabs-content>div {
    padding: 20px 5px;
    display: none
}

.css-tabs #tab_1:checked~.tabs-title label:nth-child(1),
.css-tabs #tab_2:checked~.tabs-title label:nth-child(2),
.css-tabs #tab_3:checked~.tabs-title label:nth-child(3),
.css-tabs #tab_4:checked~.tabs-title label:nth-child(4) {
    background: var(--bg_orange);
    color: var(--text_white);
}

.css-tabs #tab_1:checked~.tabs-title.style-link label:nth-child(1),
.css-tabs #tab_2:checked~.tabs-title.style-link label:nth-child(2),
.css-tabs #tab_3:checked~.tabs-title.style-link label:nth-child(3),
.css-tabs #tab_4:checked~.tabs-title.style-link label:nth-child(4) {
    background: none;
    color: var(--text_orange);
}

.css-tabs #tab_1:checked~.tabs-title.style-tabs label:nth-child(1),
.css-tabs #tab_2:checked~.tabs-title.style-tabs label:nth-child(2),
.css-tabs #tab_3:checked~.tabs-title.style-tabs label:nth-child(3),
.css-tabs #tab_4:checked~.tabs-title.style-tabs label:nth-child(4) {
    background: var(--bg_white);
    color: var(--text_dark);
    border-color: var(--text_blue);
    box-shadow: 0px -2px 5px 0px rgba(0, 52, 243, 0.31);
}

.css-tabs #tab_1:checked~.tabs-content>div:nth-child(1),
.css-tabs #tab_2:checked~.tabs-content>div:nth-child(2),
.css-tabs #tab_3:checked~.tabs-content>div:nth-child(3),
.css-tabs #tab_4:checked~.tabs-content>div:nth-child(4) {
    display: block
}

/* 弹层 */
.modal {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    overflow-y: auto;
    z-index: 512;
    opacity: 0;
    transition: opacity .3s;
    background-color: rgba(0, 0, 0, .15);
}

.modal.transparent {
    background-color: transparent;
}

.modal .modal-container {
    width: 100vh;
    margin: 0 auto;
}

.modal .modal-layer2 {
    background-color: var(--bg_white);
    display: flex;
    flex-direction: column;
    margin: 60px auto 100px;
    min-height: 150px;
    width: 200px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-100%);
    transition: all .3s ease 0s;
}

.modal .modal-layer2.center {
    margin: 0 auto;
    margin-top: 50%;
    border-radius: 5px;
}

.modal .modal-swiper {
    background-color: var(--bg_white);
    display: flex;
    flex-direction: column;
    margin: 60px auto 100px;
    min-height: 80px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-100%);
    transition: all .3s ease 0s;
}

.modal .modal-swiper.small {
    width: 500px;
}

.modal .modal-swiper.center {
    margin: 0 auto;
    margin-top: 50%;
    border-radius: 5px;
}

.modal-in .modal.fade-in .modal-swiper {
    transform: translateY(0);
    opacity: 1;
}

.modal-in .modal.fade-in .modal-swiper.center {
    transform: translateY(-50%);
}

.modal-in .modal.fade-out .modal-swiper.center {
    transform: translateY(-100%);
    opacity: 0;
}

.modal .modal-layer {
    background-color: var(--bg_white);
    display: flex;
    flex-direction: column;
    margin: 60px auto 100px;
    min-height: 250px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-100%);
    transition: all .3s ease 0s;
}

.modal .modal-layer.small {
    width: 500px;
}

.modal .modal-layer.medium {
    width: 800px;
}

.modal .modal-layer.center {
    margin: 0 auto;
    margin-top: 50%;
    border-radius: 5px;
}

.modal .modal-title {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 10px;
    border-bottom: 1px solid var(--bg_line);
    margin: 0;
}

.modal .modal-title .btn-group {
    float: right;
}

.modal .modal-title .modal-close {
    padding-left: 10px;
}

.modal .modal-title .titlebtn a {
    font-size: 1.4rem;
}

.modal .modal-body {
    padding: 10px;
    flex: 1;
}

.modal .modal-bottom {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.modal .modal-bottom .btn-group {
    margin: 5px;
}

.modal .modal-bottom .modal-dismiss {
    display: none;
}

.modal .modal-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    transition: opacity .2s;
}

.modal .modal-loading .loader-container span {
    background: var(--bg_white);
}

.modal.alert .modal-layer {
    width: 300px;
    min-height: 150px;
    border-radius: 5px;
}

.modal.alert .modal-layer .modal-body {
    color: var(--text_gray);
    font-size: 1.5rem;
    padding: 20px 20px 15px 20px;
}

.modal.alert .modal-bottom .modal-confirm,
.modal.alert .modal-bottom .modal-cancel {
    display: none;
}

.modal.alert .modal-bottom .modal-dismiss {
    display: block;
    font-size: 1.5rem;
}

.modal.confirm .modal-layer {
    width: 330px;
    min-height: 160px;
    border-radius: 5px;
}

.modal.confirm .modal-layer .modal-body {
    color: var(--text_gray);
    font-size: 1.5rem;
    padding: 20px 20px 15px 20px;
}

.modal-in .modal {
    opacity: 1;
}

.modal-in .modal.fade-in .modal-layer {
    transform: translateY(0);
    opacity: 1;
}

.modal-in .modal.fade-in .modal-layer.center {
    transform: translateY(-50%);
}

.modal-in .modal.fade-out .modal-layer.center {
    transform: translateY(-100%);
    opacity: 0;
}

.modal.fade-in .modal-loading {
    opacity: 0;
    z-index: -1;
}

.modal.small-screen .modal-container {
    width: 130vh;
}

.modal.small-screen .modal-layer.center {
    margin: 0 auto;
    margin-top: 35%;
    border-radius: 5px;
}

.modal-in .modal.fade-in.small-screen .modal-layer.center {
    transform: translateY(-40%);
}

.modal::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.modal::-webkit-scrollbar-thumb {
    background: #999;
}

.modal::-webkit-scrollbar-track {
    background: #f5f5f5;
}






.modal .characters {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.modal .characters .similar-character {
    width: 70px;
    height: 100px;
    background-color: var(--bg_white);
    margin: 10px 0 0 10px;
    border: 1px solid var(--bg_border);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal .characters .similar-character img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-color: var(--bg_white);
    transition: top .2s;
    transition-delay: 0s;
}

.modal .characters .similar-character span {
    height: 29px;
    margin-top: 70px;
    display: block;
    line-height: 30px;
    text-align: center;
    border-top: 1px solid var(--bg_border);
    font-family: "webfonts" !important;
    font-weight: bold;
}


/* 开关 */
.switch {
    width: 80px;
    height: 26px;
    background: var(--bg_light);
    margin-left: 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.2);
}

.switch:after {
    content: 'OFF';
    color: var(--text_light);
    position: absolute;
    right: 10px;
    z-index: 0;
    font: 12px/26px Arial, sans-serif;
    font-weight: bold;
}

.switch:before {
    content: 'ON';
    color: var(--text_blue);
    position: absolute;
    left: 10px;
    z-index: 0;
    font: 12px/26px Arial, sans-serif;
    font-weight: bold;
}

.switch label {
    display: block;
    width: 34px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 1;
    background: var(--bg_white);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0px 0 3px 0 rgba(0, 0, 0, 0.2);
}

.switch input[type=checkbox] {
    visibility: hidden;
}

.switch input:checked+label {
    left: 43px;
    background: var(--bg_blue)
}


/* 提示 */
.toast-container {
    position: fixed;
    width: 300px;
    bottom: 20%;
    left: 50%;
    margin-left: -150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    z-index: 4096;
}

.toast-container .toast-message {
    background-color: rgba(0, 0, 0, .5);
    color: var(--text_white);
    padding: 10px 20px;
    margin-bottom: 5px;
    border-radius: 10px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
}

.toast-container .toast-message:nth-last-child(1) {
    opacity: 1
}

.toast-container .toast-message:nth-last-child(2) {
    opacity: .4;
    transform: scale(.9)
}

.toast-container .toast-message:nth-last-child(3) {
    opacity: .3;
    transform: scale(.8)
}

.toast-container .toast-message:nth-last-child(4) {
    opacity: .2;
    transform: scale(.7)
}

.toast-container .toast-message:nth-last-child(5) {
    opacity: .1;
    transform: scale(.6)
}

/* 表单 */
.form {
    flex: 1;
    padding: 20px;
}

.form .label {
    font-size: 1.6rem;
    color: var(--text_light);
    line-height: 2;
}

.form .label em {
    font-style: normal;
}

.form .input-group {
    height: 32px;
    display: flex;
    flex: 1;
    width: 0;
    min-width: 0 !important;
    padding: 0 10px;
    background-color: var(--bg_light);
    border: 1px solid var(--bg_border);
    border-radius: 5px;
}

.form .input-group input[type=text],
.form .input-group input[type=password],
.form .input-group input[type=number] {
    height: 32px;
    font-size: 1.5rem;
    flex: 1;
    width: 0;
    min-width: 0 !important;
    padding: 0;
    color: var(--text_gray);
    border: none;
    outline: none;
    outline-width: 0;
    -webkit-appearance: none;
    background: none;
}

.form .input-group.auto {
    height: auto;
    min-height: 100px;
    flex: 1;
    padding: 0;
}

.form .input-group.automin {
    height: auto;
    min-height: 50px;
    flex: 1;
    padding: 0;
}

.form .input-group.block {
    display: block;
    width: auto;
}

.form .input-group textarea {
    font-size: 1.5rem;
    padding: 10px;
    resize: none;
    color: var(--text_gray);
    border: none;
    width: calc(100% - 20px);
    outline-width: 0;
    background: none;
}

.form .input-group.inline {
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0 10px;
}

.form .input-group.inline.small {
    flex-basis: 30px;
}

.form .input-group.inline.small input[type=text] {
    text-align: center;
}

.form label {
    display: flex;
    font-size: 1.2rem;
    margin-right: 10px;
    cursor: pointer;
    align-items: center;
}

.form label input[type=radio] {
    margin: 2px 5px 0 0;
    cursor: pointer;
}

.form label input[type=checkbox] {
    margin: 2px 5px 0 0;
    cursor: pointer;
}

.form select {
    flex: 1;
    flex: 1;
    font-size: 1.4rem;
    height: 30px;
    padding: 3px 5px 5px 5px;
    outline-width: 0;
    border-radius: 5px;
    background-color: var(--bg_light);
    border-color: var(--bg_border);
}

/*Iframe弹窗*/
.iframe-container {
    background-image: url(../temp/wpt_x_txpj.png);
    background-repeat: no-repeat;
    opacity: 0;
    background-position: center;
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2048;
    background-color: rgba(0, 0, 0, .5);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .5);
}

.iframe-container iframe {
    position: absolute;
    left: 0;
    top: -110%;
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    transition: top .8s;
}

.iframe-container .close {
    position: absolute;
    top: -110%;
    width: 100%;
    height: 100%;
    line-height: 30px;
    border-radius: 50%;
    background-image: url(../images/close.png);
    background-repeat: no-repeat;
    background-position: center 99%;
    display: block;
    background-color: rgba(0, 0, 0, .3);
    color: var(--text_white);
    transition: top 1.5s linear;
}

.iframe-container .close:hover {
    background-color: rgba(0, 0, 0, .4);
}

.iframe-container.in iframe {
    top: 0;
}

.iframe-container.in .close {
    top: -96%;
}


/* 栅格样式 */
.row {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.row.stretch {
    align-items: stretch;
}

.row.wrap {
    flex-wrap: wrap;
}

.row.start {
    justify-content: flex-start;
}

.row.end {
    justify-content: flex-end;
}

.row.top {
    align-items: flex-start;
}

.row.stack {
    flex-direction: column;
}

.row .col {
    display: flex;
    align-items: stretch;
}

.row .col.block {
    display: block;
}

.row .col.auto {
    width: 0 !important;
    min-width: 0;
    flex: 1;
}

.row .col.fixed {
    flex-grow: 0;
    flex-shrink: 0;
}

.row .col.stack {
    flex-direction: column;
}

.row .col.center {
    align-items: center;
}

.row .col.centered {
    justify-content: center;
}

.row .col.end {
    align-items: flex-end;
    justify-content: flex-end;
}


.row .col-seq {
    width: 60px;
}

.row .col-1-1 {
    width: 100%;
}

.row .col-2-1 {
    width: 50%;
}

.row .col-3-1 {
    width: 33.3%;
}

.row .col-3-2 {
    width: 66.6%;
}

.row .col-4-1 {
    width: 25%;
}

.row .col-4-2 {
    width: 50%;
}

.row .col-4-3 {
    width: 75%;
}

.row .col-5-1 {
    width: 20%;
}

.row .col-5-2 {
    width: 40%;
}

.row .col-5-3 {
    width: 60%;
}

.row .col-5-4 {
    width: 80%;
}

.row .col-6-1 {
    width: 16.6%;
}

.row .col-6-2 {
    width: 33.3%;
}

.row .col-6-3 {
    width: 50%;
}

.row .col-6-4 {
    width: 66.6%;
}

.row .col-6-5 {
    width: 83.3%;
}

.row .col-7-1 {
    width: 14.2%;
}

.row .col-7-2 {
    width: 28.5%;
}

.row .col-7-3 {
    width: 42.8%;
}

.row .col-7-4 {
    width: 57.1%;
}

.row .col-7-5 {
    width: 71.4%;
}

.row .col-7-6 {
    width: 85.7%;
}

.row .col-8-1 {
    width: 12.5%;
}

.row .col-8-2 {
    width: 25%;
}

.row .col-8-3 {
    width: 37.5%;
}

.row .col-8-4 {
    width: 50%;
}

.row .col-8-5 {
    width: 62.5%;
}

.row .col-8-6 {
    width: 75%;
}

.row .col-8-7 {
    width: 87.5%;
}

.row .col-9-1 {
    width: 11.11%;
}

.row .col-9-2 {
    width: 22.22%;
}

.row .col-9-3 {
    width: 33.33%;
}

.row .col-9-4 {
    width: 44.44%;
}

.row .col-9-5 {
    width: 55.55%;
}

.row .col-9-6 {
    width: 66.66%;
}

.row .col-9-7 {
    width: 77.77%;
}

.row .col-9-8 {
    width: 88.88%;
}

/* 响应式布局元素 */
@media screen and (max-width:1024px) {
    .header .site-search {
        display: none;
    }
}