/*
作者：天兴工作室
网址：https://www.txcstx.com
邮箱：admin@txcstx.cn
*/

@import "txui.min.css";
@import "../font/remixicon.css";

body {
    --tx-color: #ff6f3d;
    --tx-border: #ddd;
    --tx-bg: #f6f6f6;
    --tx-boxbg: #ffffff;
    --tx-txt: #333;
    --tx-link: #444;
    --tx-light: #888;
    --tx-light1: #aaa;
    --tx-contrast: #ffffff;
    --tx-radius: 5px;
    --tx-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: var(--tx-bg);
}

body.tx-night {
    --tx-bg: #000;
    --tx-boxbg: #293238;
    --tx-txt: #efefef;
    --tx-link: #fff;
    --tx-border: #222;
    --tx-light: #888;
    --tx-light1: #666;
}

@media (prefers-color-scheme: dark) {
    body {
        --tx-bg: #000;
        --tx-boxbg: #293238;
        --tx-txt: #efefef;
        --tx-link: #fff;
        --tx-border: #222;
        --tx-light: #888;
        --tx-light1: #666;
    }
}

/***动画旋转***/

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/***放大缩小***/
@keyframes txus-dot-bg {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}


.item-r30>* {
    margin: 0 30px 0 0;
}

.ov-v {
    overflow: visible;
}

.alert {
    border-radius: var(--tx-radius);
}

.txus-shadow {
    box-shadow: var(--tx-shadow);
}

.disabled,
.disabled:hover,
.disabled:focus {
    cursor: not-allowed !important;
    opacity: 0.3 !important;
}


.disabled i {
    animation: rotate 2s linear infinite;
}

.tx-table td,
.tx-table th,
.tx-text table td,
.tx-text table th {
    padding: 0.8em 1.2em;
}

.w10em {
    width: 10em;
}

.w8em {
    width: 8em;
}

.w6em {
    width: 6em;
}

.bo-r5 {
    border-radius: 5px;
    display: block;
    overflow: hidden;
}

.bg-gray {
    background-color: var(--tx-bg);
}

.tx-btn-s1,
.tx-btn-s1:hover {
    border: 1px solid var(--tx-color);
    background-color: transparent;
    color: var(--tx-color);
}

.not-click {
    background-color: var(--tx-light1);
    color: var(--tx-contrast);
    cursor: not-allowed;
}

.float-none {
    float: none;
    position: static;
}

.tx-wide {
    width: 100%;
    max-width: 1920px;
}

.tx-box {
    background-color: var(--tx-boxbg);
    border-radius: var(--tx-radius);
    transition: all 0.5s ease 0s;
}

.tx-title {
    height: 50px;
    border-bottom: 1px solid var(--tx-border);
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.tx-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 1.2em;
    margin-top: -0.6em;
    background-color: var(--tx-color);
    border-radius: 0 2em 2em 0;
}

.mod-h6 {
    height: 14.4em;
    overflow: hidden;
}

.tx-title-tab {
    border-bottom: 1px solid var(--tx-border);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.tx-title-tab>* {
    position: relative;
    height: 50px;
    display: inline-flex;
    align-items: center;
    opacity: 0.5;
    margin: 0 30px 0 0;
}

.tx-title-tab>.on {
    font-size: 1.25em;
    color: var(--tx-color);
    font-weight: 700;
    opacity: 1;
}

.tx-title-tab>.on::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 2em;
    height: 4px;
    margin-left: -1em;
    background-color: var(--tx-color);
    border-radius: 2em 2em 0 0;
}

.item-flexcol {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
    align-items: center;
}

.item-flexcol [class*="ri-"] {
    font-size: 1.8em;
}

.txus-main {
    padding: 90px 30px 30px 30px;
}

.tx-table {
    width: 100%;
}

.tx-table tr:nth-child(2n + 1) {
    background-color: rgba(0, 0, 0, 0.02);
}

.tx-table th,
.tx-table tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.tx-box-blur {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.7);
}

.tx-night .tx-box-blur {
    background-color: rgba(41, 50, 56, 0.7);
}

.hover-animation-top:hover {
    transform: translate3d(0, -3px, 0);
}

.hover-animation-bg {
    position: relative;
    overflow: hidden;
}

.hover-animation-bg::after {
    content: "";
    position: absolute;
    right: -3em;
    bottom: -8em;
    width: 10em;
    height: 10em;
    background-color: var(--tx-color);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease 0s;
}

.hover-animation-bg:hover::after,
.on .hover-animation-bg::after {
    opacity: 0.1;
    visibility: visible;
    bottom: -6em;
}

.hover-animation-bg::before {
    content: "";
    position: absolute;
    left: -3em;
    top: -7em;
    width: 8em;
    height: 8em;
    background-color: var(--tx-color);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
}

.hover-animation-bg:hover::before,
.on .hover-animation-bg::before {
    opacity: 0.2;
    visibility: visible;
    top: -5em;
}

.hover-animation-bg.off {
    cursor: not-allowed;
    opacity: 0.6;
}

.hover-animation-bg.off .item-js-on {
    opacity: 1;
    visibility: visible;
    border-color: var(--tx-border);
}

.hover-txt {
    position: relative;
    overflow: hidden;
}

.hover-txt:hover .hover-txt-hide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--tx-contrast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85em;
    z-index: 10;
}

.dot-bg-box {
    position: relative;
    overflow: hidden;
}

.dot-bg-box>* {
    position: relative;
    z-index: 1;
}

.dot-bg-box>.dot-bg-item {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}



.dot-bg-box::after,
.dot-bg-box::before,
.dot-bg-item::after {
    content: "";
    position: absolute;
    background-color: var(--tx-color);
    border-radius: 50%;
    z-index: 0;
}

.dot-bg-box::before {
    top: -5em;
    left: -5em;
    width: 12em;
    height: 12em;
    opacity: 0.2;
    animation: txus-dot-bg 10s infinite ease-in-out;
}

.dot-bg-box::after {
    top: -14em;
    left: -7em;
    width: 20em;
    height: 20em;
    opacity: 0.1;
    animation: txus-dot-bg 6s infinite ease-in-out;
}

.dot-bg-item::after {
    right: -9em;
    top: 8em;
    width: 12em;
    height: 12em;
    opacity: 0.08;
    animation: txus-dot-bg 8s infinite ease-in-out;
}

.txus-eject-btn {
    cursor: pointer;
}

.eject-box {
    position: absolute;
    z-index: 10;
    display: none;
}

.login-box {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tx-bg);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.login-box-bg::after,
.login-box-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.login-box-bg::after {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.login-box-bg::before {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.tx-night .login-box-bg::before {
    background-color: rgba(0, 0, 0, 0.5);
}

.login-con {
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.login-logo {
    position: relative;
    z-index: 90;
}

.login-logo [class*="ri-"] {
    width: 1.5em;
    height: 1.5em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--tx-color);
    font-size: 4em;
    color: var(--tx-contrast);
    border-radius: 50%;
}

.login-form {
    padding: 70px 30px 30px 30px;
    margin: -40px 0 0 0;
}

.tx-input-i {
    height: 2.6em;
    width: 2.6em;
    background-color: var(--tx-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--tx-radius) 0 0 var(--tx-radius);
}

.tx-ico-round {
    display: inline-flex;
    width: 2.4em;
    height: 2.4em;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--tx-contrast);
}

.tx-ico-round:hover {
    opacity: 0.85;
    color: var(--tx-contrast);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 5px 24px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo * {
    display: inline-block;
    height: 50px;
    line-height: 50px;
}

.search {
    position: absolute;
    left: 50%;
    top: 0;
    width: 360px;
    height: 100%;
    margin-left: -150px;
    display: flex;
    align-items: center;
}

.search form {
    background-color: var(--tx-bg);
    border-radius: 5em;
    padding: 4px 4px 4px 10px;
    width: 100%;
}

.search form>*,
.search form> :focus {
    border: 0;
}

.search form button {
    border-radius: 5em;
}

.header-r-avatar {
    height: 3em;
    width: 3em;
    display: inline-flex;
}

.top-user-box {
    min-width: 200px;
    top: 100%;
    right: 0;
    padding: 30px 15px 15px 15px;
    background-color: var(--tx-boxbg);
    border-radius: 0 0 var(--tx-radius) var(--tx-radius);
}

.side-box {
    width: 220px;
    border-radius: var(--tx-radius);
    background: var(--tx-boxbg);
    background-size: 100% auto;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 80vh;
    flex: none;
    margin: 0 30px 0 0;
}

.side-avatar {
    padding: 30px 40px;
}

.side-avatar>a {
    width: 6em;
    display: inline-flex;
    background-color: var(--tx-bg);
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    padding: 4px;
}

.side-avatar img {
    border-radius: 50%;
}

.txus-side-menu>li>a {
    display: flex;
    align-items: center;
    height: 3em;
    padding: 0 2em 0 3em;
    position: relative;
    z-index: 10;
}

.txus-side-menu>li>a i {
    font-size: 1.4em;
    margin: 0 0.5em 0 0;
    line-height: 1;
}

.txus-side-menu>li.on>a {
    color: var(--tx-color);
    font-weight: 700;
}

.txus-side-menu>li.on>a::after,
.txus-side-menu>li>a:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tx-color);
    z-index: 0;
    opacity: 0.05;
}

.txus-side-menu .sub {
    position: relative;
}

.txus-side-menu .sub::after {
    content: "\ea4e";
    font-family: remixicon !important;
    position: absolute;
    right: 1em;
    top: 0;
    display: inline-flex;
    height: 3em;
    align-items: center;
    opacity: 0.5;
    transition: all 0.35s ease 0s;
    z-index: 0;
}

.txus-side-menu .sub.up::after {
    transform: rotate(180deg);
}

.txus-side-menu>li ul {
    padding: 0 0 0.5em 5em;
}

.txus-side-menu>li ul li a {
    display: flex;
    align-items: center;
    height: 2.4em;
    opacity: 0.8;
}

.txus-side-menu>li ul li.on a {
    font-weight: 700;
    color: var(--tx-color);
}

.txus-vip-mod-box {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.vip-item-box,
.user-mod-box a {
    display: flex;
    padding: 26px;
    position: relative;
    flex-direction: column;
    background-color: var(--tx-boxbg);
    border-radius: var(--tx-radius);
    border: 1px solid var(--tx-boxbg);
}

.vip-item-box {
    height: 100%;
}

.vip-item-box:hover,
.on .vip-item-box,
.user-mod-box a:hover {
    box-shadow: var(--tx-shadow);
    transition: all 0.5s ease 0s;
    border-color: var(--tx-color);
}

.vip-item-box>[class*="ri-"],
.user-mod-box a>[class*="ri-"] {
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 3.6em;
    opacity: 0.1;
    display: inline-flex;
    align-items: center;
    font-weight: 100;
    transition: all 0.35s ease 0s;
    z-index: 10;
    height: 100%;
}

.vip-item-box>[class*="ri-"] {
    right: 20px;
    top: 20px;
    height: auto;
}

.vip-item-box:hover>[class*="ri-"],
.on .vip-item-box>[class*="ri-"] {
    opacity: 1;
    font-weight: 400;
}

.vip-item-box.svip .tx-btn,
.hover-animation-bg.svip::before,
.hover-animation-bg.svip::after {
    background-color: #eccd7b;
    color: #000;
}

.vip-item-box.svip:hover,
.on .vip-item-box.svip {
    border-color: #eccd7b;
}

.vip-item-box.svip [class*="ri-"] {
    color: #eccd7b;
}

.vip-item-box .tx-btn {
    opacity: 0.5;
}

.vip-item-box:hover .tx-btn,
.on .vip-item-box .tx-btn {
    opacity: 1;
}

.vip-item-tips {
    position: relative;
    height: 40px;
    background-color: var(--tx-bg);
    border-radius: var(--tx-radius);
}

.vip-item-tips>span {
    display: block;
    height: 40px;
    padding: 10px;
    background-color: var(--tx-bg);
    transition: all 0.35s ease 0s;
    overflow: hidden;
}

.vip-item-tips:hover span {
    overflow: auto;
    white-space: wrap;
    height: auto;
    text-overflow: inherit;
    transform: translateY(calc(-100% + 40px));
}

.item-post {
    padding: 20px 0;
    position: relative;
    border-bottom: 1px solid var(--tx-border);
}

.item-post .edt-box {
    position: absolute;
    right: 0;
    bottom: 20px;
}

.edt-box {
    display: inline-flex;
    align-items: center;
}

.edt-box>* {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2em;
    padding: 0 1em;
    border-radius: var(--tx-radius);
    background-color: var(--tx-bg);
    margin: 0 0 0 0.6em;
    opacity: 0.5;
}

.edt-box>*.top {
    background-color: #f00;
    color: #fff;
    opacity: 1;
}

.edt-box>*.ref {
    background-color: var(--tx-color);
    color: #fff;
    opacity: 1;
}

.edt-box>*.state {
    background-color: #5fb878;
    color: #fff;
    opacity: 1;
}

.item-js-on {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border: 1px solid var(--tx-color);
    border-radius: var(--tx-radius);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
}

.on .item-js-on {
    opacity: 1;
    visibility: visible;
}

.on .item-js-on::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px;
    border-color: var(--tx-color) var(--tx-color) transparent transparent;
    z-index: 0;
}

.on .item-js-on::before {
    content: "\eb7b";
    font-family: remixicon !important;
    position: absolute;
    right: 3px;
    top: 0;
    z-index: 1;
    color: var(--tx-contrast);
}

.vip-s {
    background-color: #222;
    color: #fcd53f;
}

.vip-v {
    background-color: #fb7299;
}

.vip-d,
.vip-d:hover {
    background-color: #eee;
    color: #999;
}

.pagebar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}

.pagebar>a {
    padding: 0 1em;
    line-height: 2.4;
    background-color: var(--tx-bg);
    margin: 0 0.3em 0.3em 0;
    border-radius: var(--tx-radius);
    color: var(--tx-light1);
}

.pagebar>span {
    flex: auto;
    line-height: 2.4;
    opacity: 0.4;
    text-align: center;
}

.pagebar .now-page,
.pagebar a:hover {
    color: var(--tx-contrast);
    background-color: var(--tx-color);
}

.no-content-tips {
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0.5;
}

.no-content-tips i {
    font-size: 5em;
    line-height: 1;
    color: var(--tx-color);
    margin: 0 0 10px 0;
}

.tx-select {
    background-color: var(--tx-boxbg);
}

.tx-us-editor .edui-editor,
.tx-us-editor .edui-editor-iframeholder {
    width: 100% !important;
}

.edui-default .edui-toolbar .edui-combox .edui-combox-body {
    background-color: var(--tx-boxbg) !important;
    border-color: var(--tx-border) !important;
}

.edui-default .edui-toolbar .edui-combox-body .edui-arrow {
    border-color: var(--tx-border) !important;
}

.edui-default .edui-editor {
    border: 1px solid var(--tx-border) !important;
    background-color: var(--tx-boxbg) !important;
    z-index: 20 !important;
}

.edui-default .edui-editor-toolbarbox {
    box-shadow: 0 0 0 !important;
}

.edui-default .edui-editor-toolbarboxouter {
    background-image: linear-gradient(to bottom, var(--tx-boxbg), var(--tx-bg)) !important;
    border-bottom: 1px solid var(--tx-border) !important;
    background-color: var(--tx-boxbg) !important;
}

.tx-ue-optimization .edui-default .edui-toolbar .edui-for-attachment,
.tx-ue-optimization .edui-default .edui-toolbar .edui-for-emotion,
.tx-ue-optimization .edui-default .edui-toolbar .edui-for-fullscreen,
.tx-ue-optimization .edui-default .edui-toolbar .edui-for-insertcode,
.tx-ue-optimization .edui-default .edui-toolbar .edui-for-inserttable,
.tx-ue-optimization .edui-default .edui-toolbar .edui-for-insertvideo,
.tx-ue-optimization .edui-default .edui-toolbar .edui-for-map,
.tx-ue-optimization .edui-default .edui-toolbar .edui-for-scrawl,
.tx-ue-optimization .edui-default .edui-toolbar .edui-for-spechars,
.tx-ue-optimization .edui-default .edui-toolbar .edui-for-wordimage {
    display: none !important;
}

/**兼容老图标**/
[class*=" txico-"],
[class^="txico-"] {
    font-family: remixicon !important;
    font-style: normal;
}

.txico-home::before {
    content: "\ee19";
}

.txico-shop::before {
    content: "\eeab";
}

.txico-text::before {
    content: "\ed0f";
}

.txico-people::before {
    content: "\f264";
}

.txico-vip::before {
    content: "\f28e";
}

#txus-poster {
    width: 360px;
    height: 450px;
    background-color: var(--tx-boxbg);
    border-radius: var(--tx-radius);
    overflow: hidden;
    padding: 20px;
    color: #000;
    position: relative;
    left: -100vw;
}

#txus-poster>img {
    height: 40px;
    width: auto;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

#txus-poster>p {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
}

#txus-qrcode {
    background-color: var(--tx-boxbg);
    padding: 10px;
    border-radius: var(--tx-radius);
    width: 320px;
    height: 320px;
}

.pay-code-box {
    position: relative;
}

.pay-code-box::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    font-family: remixicon !important;
    font-style: normal;
    font-size: 20px;
    background-color: #fff;
    border-radius: var(--tx-radius);
}

.pay-code-box.alipay::after {
    content: "\ea2b";
    color: #226bf3;
}

.pay-code-box.wxpay::after,
.pay-code-box.wechat::after {
    content: "\f2b8";
    color: #00c250;
}

.tx-label {
    display: block;
    margin-bottom: 0.4em;
}

.tx-item {
    padding: 1em 0;
    border-bottom: 1px dotted var(--tx-border);
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
    position: relative;
    z-index: 10;
}

.tx-item::after {
    position: absolute;
    top: 0;
    left: -100%;
    width: calc(100% + 60px);
    height: 100%;
    background-color: rgba(0, 0, 0, 0.02);
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: -1;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
}

.tx-item:hover::after {
    left: -30px;
    opacity: 1;
    visibility: visible;
}

.tips-gray {
    color: var(--tx-light1);
    font-size: .8em;
    position: relative;
    margin-top: .6em;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.tips-gray::before {
    content: "?";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.3em;
    height: 1.3em;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .06);
    color: var(--tx-light1);
    margin: 0 .5em 0 0
}

.explain-txt {
    font-size: .8em;
    color: var(--tx-light1);
    font-weight: 200
}

.tx-data-revert {
    position: absolute;
    top: 1em;
    right: 0;
    z-index: 10
}

.tx-upimg-img img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    position: relative;
    z-index: 10;
}

.tx-upfile-box .tx-btn {
    width: 100%;
    border-radius: 4px 4px 0 0;
}

.tx-upfile-box p {
    line-height: 2.4;
    padding: 0;
    height: 2.4em;
    overflow: hidden;
    padding: 0 1em;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 0 0 4px 4px;
}

.tx-flash-box .flash-upimg-btn {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 200;
    text-shadow: 0 1px 2px #666;
    color: #fff;
    z-index: 11;
    background-color: rgba(0, 0, 0, 0.1);
}

.tx-flash-box {
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    padding: 1em;
    position: relative;
    margin-bottom: 15px;
    line-height: 28px;
    align-items: stretch;
}

.tx-flash-box input {
    height: 2em;
}

.tx-item-delete {
    position: absolute;
    width: 1.2em;
    height: 1.6em;
    line-height: 1;
    background-color: #c00;
    color: #fff !important;
    border-radius: 0 0 20px 20px;
    right: 0.2em;
    top: 0;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-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: 0.85em;
    overflow: hidden;
    z-index: 22;
}

.tx-flash .tx-upimg-img {
    background-color: #f1f1f1;
    padding: 15px;
    width: 32%;
    margin-right: 1em;
    position: relative;
    max-height: calc(9.6em + 22px);
}

.tx-flash .upimg-img img {
    height: 100%;
}

.tx-item-delete:hover,
.tx-submit-btn:hover {
    color: #fff !important;
    opacity: 0.9;
}

.tx-choice.disabled {
    cursor: no-drop
}

.tx-choice.disabled span,
.tx-choice.disabled:hover span {
    background-color: rgba(0, 0, 0, .07);
    color: rgba(0, 0, 0, .07)
}

.txcheckbox {
    display: none
}

.txcheck {
    height: 1.6em;
    border-radius: 5em;
    background-color: rgba(0, 0, 0, .15);
    cursor: pointer;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 0 .8em 0 2em;
    -webkit-transition: all .35s ease 0s;
    transition: all .35s ease 0s
}

.txcheck::after {
    content: "关";
    color: rgba(0, 0, 0, .2);
    font-size: .8em;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.txcheck::before {
    content: "";
    display: block;
    width: calc(1.6em - 6px);
    height: calc(100% - 6px);
    overflow: hidden;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
    position: absolute;
    left: 3px;
    top: 3px;
    -webkit-transition: all .35s ease 0s;
    transition: all .35s ease 0s
}

.txcheck-on {
    background-color: var(--tx-color);
    padding: 0 2em 0 .8em
}

.txcheck-on::before {
    left: calc(100% - 1.6em + 3px)
}

.txcheck-on::after {
    content: "开";
    color: #fff
}

.up-main-box .tx-upimg-item {
    border: 1px solid var(--tx-border);
    border-radius: var(--tx-radius);
    overflow: hidden;
    position: relative;
    height: 200px;
}

.up-main-box .tx-upimg-item .tx-btn {
    position: absolute;
    bottom: 0;
    right: 0;
}

.up-main-box .tx-upimg-item img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 996px) {
    .header {
        padding: 8px 0;
        z-index: 99;
    }

    .logo * {
        height: 36px;
    }

    .txus-main {
        padding: calc(52px + 3vw) 0 0 0;
        overflow: hidden;
    }

    .login-con {
        margin: 0;
        width: 100vw;
        height: 100vh;
        max-width: none;
    }

    .login-logo {
        display: none;
    }

    .login-form {
        height: 100vh;
        padding: 8vw;
        margin: 0;
        display: flex;
        flex-direction: column;
        border-radius: 0;
    }

    .login-form h1 {
        display: flex;
        align-items: center;
        margin: 0 0 3em 0;
        flex: none;
    }

    .login-form h1 a {
        flex: auto;
        text-align: left;
    }

    .login-form form {
        margin-bottom: 2em;
    }

    .search {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        background-color: var(--tx-boxbg);
        padding: 2vw;
        border-top: 1px solid var(--tx-border);
        display: none;
        height: auto;
    }

    .header-r {
        flex: auto;
        justify-content: flex-end;
    }

    .header-r>* {
        margin-left: 5vw;
    }

    .header .item-flexcol [class*="ri-"] {
        font-size: 1.6em;
    }

    .top-user-box {
        padding: 4vw;
        width: 100vw;
        right: -3vw;
        top: 130%;
        box-shadow: var(--tx-shadow);
    }

    .wap-top-menu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .wap-top-menu>* {
        width: 25%;
        margin: 3vw 0;
    }

    .txus-main>.tx-wide {
        flex-direction: column;
    }

    .side-box {
        width: 100%;
        margin: 0 0 3vw 0;
        min-height: inherit;
        overflow-y: hidden;
        display: none;
    }

    .user-home .side-box {
        display: block;
    }

    .txus-side-menu {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        padding: 2vw;
        margin: 0;
    }

    .txus-side-menu li {
        width: 20%;
        margin: 3vw 0;
    }

    .txus-side-menu>li>a {
        flex-direction: column;
        padding: 0;
        justify-content: center;
        align-items: center;
        height: auto;
        font-size: 0.9em;
    }

    .txus-side-menu>li>a i {
        margin: 0 0 4px 0;
        font-size: 2.2em;
    }

    .txus-side-menu .sub::after,
    .txus-side-menu>li ul,
    .txus-side-menu>li.on>a::after,
    .txus-side-menu>li>a:hover::after {
        display: none;
    }

    .user-mod-box a {
        padding: 3vw 4vw;
    }

    .tx-title-tab {
        justify-content: space-between;
    }

    .tx-title-tab>* {
        margin: 0;
        padding: 0 2vw;
    }

    .item-post {
        padding: 4vw 0;
    }

    .item-post .edt-box {
        bottom: 3vw;
    }

    .tx-table-box {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .tx-table-box .tx-table {
        width: auto;
        min-width: 150vw;
        white-space: nowrap;
    }

    .pagebar {
        flex-wrap: nowrap;
        justify-content: space-between;
        font-size: 0.85em;
    }

    .pagebar> :last-child {
        margin-right: 0;
    }

    .txus-bottom-menu-h {
        height: 5em;
    }

    .txus-bottom-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 20;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 3vw;
        font-size: 0.85em;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    }

    .txus-bottom-menu>* {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        line-height: 1;
        height: 5em;
        padding: 0 2vw;
    }

    .txus-bottom-menu>* i {
        font-size: 2em;
        margin: 0 0 4px 0;
    }

    .txus-bottom-menu>.on {
        color: var(--tx-color);
        font-weight: 700;
    }

    .edui-dialog-body {
        width: 90vw !important;
        padding: 0 !important;
    }

    .edui-default .edui-for-attachment .edui-dialog-content,
    .edui-default .edui-for-insertimage .edui-dialog-content,
    .edui-default .edui-for-insertvideo .edui-dialog-content,
    .edui-default .edui-for-link .edui-dialog-content,
    .edui-default .edui-for-map .edui-dialog-content,
    .edui-default .edui-for-scrawl .edui-dialog-content {
        width: 90vw !important;
    }

    .edui-default .edui-toolbar .edui-for-attachment,
    .edui-default .edui-toolbar .edui-for-emotion,
    .edui-default .edui-toolbar .edui-for-fullscreen,
    .edui-default .edui-toolbar .edui-for-insertcode,
    .edui-default .edui-toolbar .edui-for-inserttable,
    .edui-default .edui-toolbar .edui-for-insertvideo,
    .edui-default .edui-toolbar .edui-for-map,
    .edui-default .edui-toolbar .edui-for-scrawl,
    .edui-default .edui-toolbar .edui-for-spechars,
    .edui-default .edui-toolbar .edui-for-wordimage {
        display: none !important;
    }

    .edui-default .edui-popup {
        width: 90vw !important;
        position: fixed !important;
        top: 50% !important;
        left: 5vw !important;
        transform: translateY(-50%);
    }

    .edui-dialog::after {
        content: "" !important;
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        z-index: 0 !important;
        background-color: rgba(0, 0, 0, 0.2) !important;
        width: 100vw !important;
        height: 100vh !important;
    }

    .edui-dialog>* {
        z-index: 20;
    }

    .wap-paybtn-grop>* {
        margin: 4px 0;
        width: 100%;
    }

    .mod-h6 {
        height: auto;
    }

    .user-mod-box a>[class*="ri-"] {
        font-size: 2.6em;
    }

    .footer {
        padding: 2vw;
    }

    .login-con .no-content-tips {
        height: 100vh;
    }
}

@media screen and (max-width: 768px) {
    .edt-box>* {
        padding: 0;
        width: 2em;
    }

    .edt-box>* span {
        display: none;
    }
}