



@import url('../../../assets/ext/cdn.jsdelivr.net/npm/uigg/font/font.min.css');
@import url('../../../assets/ext/use.fontawesome.com/releases/v5.15.4/css/all.css');



html,
body,
div,
span,
object,
iframe,
frame,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
tt,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
big,
small,
strong,
sub,
sup,
var,
b,
i,
a,
s,
u,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary,
button,
input,
select,
textarea,
optgroup,
time,
mark,
audio,
video,
marquee,
x,
o,
z,
d,
h,
m,
menu,
menu-cont,
menu-group,
menu-list,
name,
name-logo,
name-search,
tab,
tab-list,
tab-cont,
tab-group,
drop,
drop-cont,
drop-list,
chat,
chat-title,
chat-sider,
chat-cont,
chat-list,
chat-message,
chat-tool,
chat-control,
chat-tip,
uigg-title,
uigg-txt,
uigg-emot,
pop,
pop-main,
pop-title,
pop-cont,
pop-solve,
pop-choice,
pop-sider,
hop,
hop-cont,
countdown,
tip,
page,
music,
space,
corner,
msie,
rate,
scaler,
notify,
empty,
fold {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent center no-repeat;
    background-size: contain;
    box-sizing: border-box;
    font-family: uigg;
    border-color: var(--eee);
    border-style: solid;
    -webkit-tap-highlight-color: transparent;
    transition-duration: .3s;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
menu,
menu-cont,
menu-group,
menu-list,
name,
name-logo,
name-search,
tab,
tab-list,
tab-cont,
tab-group,
drop,
drop-cont,
drop-list,
chat,
chat-title,
chat-sider,
chat-cont,
chat-list,
chat-message,
chat-tool,
chat-control,
chat-tip,
uigg-emot,
pop,
pop-main,
pop-title,
pop-cont,
pop-solve,
pop-choice,
pop-sider,
hop,
hop-cont,
countdown,
tip,
page,
music,
space,
corner,
msie,
rate,
scaler,
notify,
empty,
fold {
    display: block;
}

html,
body {
    height: 100%;
    transition-duration: 0s;
    background-size: cover;
}

html,
body,
input,
select,
textarea,
button {
    font-size: 14px;
}

html {
    -webkit-font-smoothing: antialiased;
}

body,
a {
    color: var(--333);
}

a,
a:hover,
b,
i,
em,
cite {
    text-decoration: none;
    font-style: normal;
}

a,
x,
o,
button,
.btn,
.smooth,
.return,
drop {
    cursor: pointer;
}

p {
    margin: 0;
    line-height: 180%;
    text-align: justify;
}

ul,
li {
    list-style: none;
}




z {
    display: inline-block;
    transition-duration: 0s;
}

::selection {
    background-color: var(--333);
    color: var(--ccc);
    text-shadow: none;
}

::-webkit-scrollbar {
    background-color: transparent;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--000-1);
}

@media(max-width:640px) {
    html,
    body,
    input,
    select,
    textarea,
    button {
        font-size: .2rem;
    }
     ::-webkit-scrollbar {
        width: .03rem;
    }
    body::-webkit-scrollbar {
        width: 0;
    }
}







.anime-fade-in,
.anime-fade-in-down,
.anime-fade-in-left,
.anime-fade-in-right,
.anime-fade-in-up,
.anime-bounce-in-right,
.anime-flip-out-x,
.anime-zoom-in{
    animation-duration: .6s;
    animation-fill-mode: both;
}


.anime-bounce-in-right{
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-duration: 1s;
}




.anime-flip-out-x{
    backface-visibility: visible;
}





.anime-fade-in {
    animation-name: anime-fade-in;
}

.anime-fade-in-down {
    animation-name: anime-fade-in-down;
}

.anime-fade-in-left {
    animation-name: anime-fade-in-left;
}

.anime-fade-in-right {
    animation-name: anime-fade-in-right;
}

.anime-fade-in-up {
    animation-name: anime-fade-in-up;
}

















.anime-bounce-in-right {
    animation-name: anime-bounce-in-right;
}

















.anime-flip-out-x {
    animation-name: anime-flip-out-x;
}



.anime-zoom-in {
    animation-name: anime-zoom-in;
}











.infinite {
    animation-iteration-count: infinite;
}

.alternate {
    animation-direction: alternate;
}

@keyframes anime-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes anime-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes anime-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes anime-fade-in-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes anime-fade-in-left {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes anime-fade-in-right {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes anime-fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes anime-fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes anime-fade-out-down {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes anime-fade-out-left {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

@keyframes anime-fade-out-right {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes anime-fade-out-up {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes anime-bounce-in {
    0% {
        opacity: 0;
        transform: scale(.3);
    }
    20% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(.9);
    }
    60% {
        opacity: 1;
        transform: scale(1.03);
    }
    80% {
        transform: scale(.97);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes anime-bounce-in-down {
    0% {
        opacity: 0;
        transform: translateY(-1000px);
    }
    60% {
        opacity: 1;
        transform: translateY(25px);
    }
    75% {
        transform: translateY(-10px);
    }
    90% {
        transform: translateY(5px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes anime-bounce-in-left {
    0% {
        opacity: 0;
        transform: translateX(-1000px);
    }
    60% {
        opacity: 1;
        transform: translateX(25px);
    }
    75% {
        transform: translateX(-10px);
    }
    90% {
        transform: translateX(5px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes anime-bounce-in-right {
    0% {
        opacity: 0;
        transform: translateX(3000px);
    }
    60% {
        opacity: 1;
        transform: translateX(-25px);
    }
    75% {
        transform: translateX(10px);
    }
    90% {
        transform: translateX(-5px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes anime-bounce-in-up {
    0% {
        opacity: 0;
        transform: translateY(3000px);
    }
    60% {
        opacity: 1;
        transform: translateY(-20px);
    }
    75% {
        transform: translateY(10px);
    }
    90% {
        transform: translateY(-5px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes anime-bounce-out {
    20% {
        transform: scale(.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(.3);
    }
}

@keyframes anime-bounce-out-down {
    20% {
        transform: translateY(10px);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateY(1000px);
    }
}

@keyframes anime-bounce-out-left {
    20% {
        opacity: 1;
        transform: translateX(20px);
    }
    100% {
        opacity: 0;
        transform: translateX(-1000px);
    }
}

@keyframes anime-bounce-out-right {
    20% {
        opacity: 1;
        transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        transform: translateX(1000px);
    }
}

@keyframes anime-bounce-out-up {
    20% {
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-1000px);
    }
}

@keyframes anime-flip-in-x {
    0% {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
    100% {
        transform: perspective(400px);
        opacity: 1;
    }
}

@keyframes anime-flip-in-y {
    0% {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
    100% {
        transform: perspective(400px);
        opacity: 1;
    }
}

@keyframes anime-flip-out-x {
    0% {
        transform: perspective(400px);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes anime-flip-out-y {
    0% {
        transform: perspective(400px);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes anime-zoom-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
    }
}

@keyframes anime-zoom-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

@keyframes anime-shrink-in {
    0% {
        opacity: 0;
        filter: blur(20px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes anime-shrink-out {
    0% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 0;
        filter: blur(20px);
    }
}

@keyframes anime-shrink-in-enlarge {
    0% {
        opacity: 0;
        transform: scale(5);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes anime-shrink-out-enlarge {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: scale(5);
        filter: blur(10px);
    }
}




.main,
.mobile {
    width: 100%;
    margin: auto;
    position: relative;
}

.main {
    max-width: 1300px;
    padding: 0 10px;
}

.mobile {
    max-width: 640px;
    min-height: 100%;
}

.mobile img {
    width: 100%;
}

.block {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clear {
    clear: both;
}

.flex {
    display: flex !important;
}





.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.single {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}





.full {
    width: 100% !important;
    height: 100% !important;
    align-content: center;
    align-items: center;
    
}





.fullscreen.active:after {
    content: '\e9f8';
}

.center {
    display: flex !important;
    justify-content: center;
    
}

.center1 {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.absolute{
    position: absolute;
    margin: auto;
}

.fixed{
    position: fixed;
    margin: auto;
}









@media(max-width:640px) {
    .main {
        padding: 0 .1rem;
    }
}




corner {
    width: 0;
    height: 0;
    border-width: 0;
    border-color: transparent;
    position: absolute;
    margin: auto;
    display: block;
}










:root {
    --gradient:#8e7dff;
    --color: var(--sapphire);
    --white: #fff;
    --fff: #fff;
    --f7: #f7f7f7;
    --eee: #eee;
    --ddd: #ddd;
    --ccc: #ccc;
    --bbb: #bbb;
    --999: #999;
    --666: #666;
    --333: #333;
    --222: #222;
    --111: #111;
    --000: #000;
    --black: #000;
    --brown: #8d1313;
    --red: #ff3b52;
    --pink: #ff3ea6;
    --purple: #d844d8;
    --sapphire: #6c62f9;
    --blue: #2e6efd;
    --cyan: #0df0f0;
    --green: #47DCA1;
    --lime: #af0;
    --yellow: #fe0;
    --orange: #fb0;
    --tomato: #f60;
    --violet: #a34fe4;
    
    --deep: #c35b0b;
    --sharpblue: #27374c;
    --oragegradien: #ff6d0a;
    --sharpcyan: #023043;
    --sharpred: #230007;
    --sharpgreen: #00451c;
    --sharpblack: #383838;
    --sharpbrown: #320a09;
    --fff-1: rgba(255, 255, 255, .1);
    --fff-2: rgba(255, 255, 255, .2);
    --fff-3: rgba(255, 255, 255, .3);
    --fff-4: rgba(255, 255, 255, .4);
    --fff-5: rgba(255, 255, 255, .5);
    --fff-6: rgba(255, 255, 255, .6);
    --fff-7: rgba(255, 255, 255, .7);
    --fff-8: rgba(255, 255, 255, .8);
    --fff-9: rgba(255, 255, 255, .9);
    --000-1: rgba(0, 0, 0, .1);
    --000-2: rgba(0, 0, 0, .2);
    --000-3: rgba(0, 0, 0, .3);
    --000-4: rgba(0, 0, 0, .4);
    --000-5: rgba(0, 0, 0, .5);
    --000-6: rgba(0, 0, 0, .6);
    --000-7: rgba(0, 0, 0, .7);
    --000-8: rgba(0, 0, 0, .8);
    --000-9: rgba(0, 0, 0, .9);
}









































































































































img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

audio,
canvas,
progress,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

video {
    object-fit: fill;
}

canvas {
    user-select: none;
}

a[title="到百度地图查看此区域"]{
    display: none;
}

@media(max-width:640px) {
    img {
        width: 100%;
    }
}




.touch {}














@font-face {
    font-family: ico;
    src: url('../../../assets/s3/content/design1/css/ico.woff2') format('woff2');
}

.ico {
    font-family: ico !important;
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    margin: auto;
    vertical-align: middle;
    line-height: 1;
    text-transform: none;
    display: inline-block;
    direction: ltr;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
}







































































































































































































































































































































































































































































.ico-message-info:before {
    content: "\e96b";
}























































































































































































































.ico-arrow-enter:before {
    content: "\e757";
}



















































































































.ico-star:before {
    content: "\ea62";
}











































































































































































































































































































































































































.ico-edit:before {
    content: "\e88d";
}























































































































































































.ico-file:before {
    content: "\e8a4";
}

































































































































































































































































































































































































.ico-reduce:before {
    content: "\e9d4";
}



















































































































































































































































.ico-add:before {
    content: "\e6f3";
}





















































































.ico-search:before {
    content: "";
}































































































































.ico-alone-bottom:before {
    content: "\e70a";
}



























































.ico-alone-left:before {
    content: "\e710";
}







































.ico-alone-side-right:before {
    content: "\e714";
}







































.ico-alone-right:before {
    content: "\e718";
}







































.ico-alone-top:before {
    content: "\e71c";
}



















.ico-alone-side-left:before {
    content: "\e71e";
}















































































.ico-close:before {
    content: "\e826";
}







































































































































































































































































.ico-user:before {
    content: "\eb42";
}









































































































































































@media(max-width:640px) {
    .ico {
        font-size: .36rem;
    }
}




@font-face {
    font-family: uigg;
    src: local('PingFang SC'), local('Microsoft Yahei');
}

@font-face {
    font-family: yahei;
    src: local('Microsoft Yahei');
}

@font-face {
    font-family: jhenghei;
    src: local('Microsoft JhengHei');
}

























h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    text-transform: capitalize;
}

h1 {
    font-size: 26px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

h4 {
    
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

@media(max-width:640px) {
    h1 {
        font-size: .32rem;
    }
    h2 {
        font-size: .28rem;
    }
    h3 {
        font-size: .26rem;
    }
    h4 {
        font-size: .24rem;
    }
    h5 {
        font-size: .22rem;
    }
    h6 {
        font-size: .2rem;
    }
}




pop,
pop>x {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

pop {
    position: fixed;
    background-color: var(--000-8);
    z-index: 999;
    display: none;
}




pop-main {
    width: 90%;
    max-width: 720px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

pop-title {
    background-color: white;
    border-bottom-width: 1px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

pop-title h3 {
    width: 100%;
    line-height: 50px;
    padding: 0 20px;
    flex: 1;
    min-width: 0;
    font-size: 18px;
}

pop-title h3:nth-child(2) {
    padding: 0;
}

pop-title .ico {
    line-height: 50px;
    width: 50px;
    height: 50px;
}

pop-title .close:after {
    content: '';
}

pop-cont {
    background-color: white;
    display: block;
}

pop-solve {
    display: flex;
}

pop-solve .btn {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
}

pop-solve .btn:hover {
    transform: translate(0);
}

pop-choice,
pop-sider {
    overflow: hidden;
    position: absolute;
    z-index: 1;
}

pop-choice {
    bottom: 0;
    width: 100%;
}

pop-sider {
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: white;
}

@media(max-width:640px) {
    pop-title h3 {
        line-height: .7rem;
        padding: 0 .2rem;
        font-size: .24rem;
    }
    pop-title .ico {
        line-height: .7rem;
        width: .7rem;
        height: .7rem;
    }
    pop-sider {
        width: 5rem;
    }
}




tip {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999;
    padding: 10px 15px;
    background-color: white;
    transition-duration: 0s;
    border-width: 1px;
    line-height: 24px;
}

@media(max-width:640px) {
    tip {
        padding: .1rem .15rem;
        line-height: .3rem;
    }
}




.btn {
    text-align: center;
    height: 50px;
    line-height: 50px;
    position: relative;
    background-color: var(--color);
    color: white;
    border-radius: 2px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    user-select: none;
}

.btn .ico {
    margin: 5px;
    color: white;
}

.btn:hover {
    transform: translateY(5px);
}

.btn-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-flex .btn,
.btn-flex button {
    flex: 1;
}



.btn-empty .ico {
    color: var(--color);
}

.btn-disable {
    filter: grayscale(100%);
}

.btn-disable:hover {
    transform: translateY(0);
    cursor: no-drop;
}

@media(max-width:640px) {
    .btn {
        height: .8rem;
        line-height: .8rem;
        border-radius: .03rem;
        padding: 0 .2rem;
        font-size: .22rem;
        font-weight: bold;
    }
    .btn:hover {
        transform: translateY(0);
    }
    .btn .ico {
        margin: .05rem;
    }
}




nav {
    
    
    position: relative;
    
    
    z-index: 3;
    
    
}




nav li a {
    display: block;
    padding: 8px 0;
    position: relative;
    border-radius: 5px;
}

nav li .ico {
    display: block;
    margin: 0 auto 5px;
    font-size: 32px;
}

nav li span {
    display: block;
    text-align: center;
    line-height: 100%;
    text-transform: capitalize;
}

@media(max-width:640px) {
    space {
        height: 1.4rem;
    }
    nav {
        box-shadow: 0 0 .05rem var(--000-1);
    }
    nav li {
        padding: .08rem;
    }
    nav li a {
        padding: .08rem 0;
    }
    nav li .ico {
        margin: 0 auto .02rem;
        font-size: .32rem;
    }
    nav li span {
        font-size: .18rem;
    }
}




menu {
    text-transform: capitalize;
}

menu x.ico {
    display: none;
    float: right;
}

menu x.ico:after {
    content: '\e961';
}

menu-cont {
    text-align: center;
}

menu-cont li {
    cursor: pointer;
    position: relative;
    display: inline-block;
}

menu-cont li:hover menu-group {
    display: block;
}

menu-cont li a {
    display: block;
    user-select: none;
}

menu-cont li>a {
    padding: 0 10px;
}

menu-group {
    position: absolute;
    left: 0;
    display: none;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px var(--000-1);
}

menu-group a {
    line-height: 40px;
}

menu-list h6 {
    line-height: 50px;
}

@media(max-width:640px) {
    menu x.ico {
        display: block;
        width: .8rem;
        height: .8rem;
        line-height: .8rem;
        font-size: .42rem;
    }
    menu-cont {
        position: absolute;
        left: 0;
        top: .8rem;
        background-color: var(--000-9);
        width: 100vw;
        display: none;
    }
    menu-cont li {
        width: 100%;
        height: auto;
        display: block;
        overflow: hidden;
    }
    menu-cont li:not(:last-child) {
        border-bottom: 1px var(--333) solid;
    }
    menu-cont li,
    menu-cont li a {
        color: white;
    }
    menu-cont li a {
        line-height: .7rem;
        padding: 0 .2rem;
    }
    menu-cont li:hover menu-group {
        display: none;
    }
    menu-group {
        width: 100%;
        background-color: var(--333);
        padding: 0;
        position: static;
        overflow: hidden;
    }
    menu-list h6 {
        color: white;
        line-height: .7rem;
    }
}




.title {
    text-align: center;
}

.title h3,
.title em {
    display: inline-block;
    vertical-align: middle;
}

.title span {
    display: block;
}










o {
    font-family: ico !important;
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    justify-content: center;
    margin: auto;
    line-height: 1;
    text-transform: none;
    display: inline-block;
    direction: ltr;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    color: var(--color);
}

o.radio:after {
    content: '\e9ce';
}

o.radio.active:after {
    content: '\e9c6';
}



o.radio-done.active:after {
    content: '\e9c5';
}

o.checkbox:after {
    content: '\e7da';
}

o.checkbox.active:after {
    content: '\e7dc';
}



o.checkbox-done.active:after {
    content: '\e7d7';
}



o.checkbox-cancel.active:after {
    content: '\e7d8';
}





o.favorite.active:after {
    content: '\e90b';
}



o.star.active:after {
    content: '\ea65';
}

o.visibility:after {
    content: '\eb5a';
}

o.visibility.active:after {
    content: '\eb5d';
}

o.password:after {
    content: '\eb5a';
}

o.password.active:after {
    content: '\ebc6';
}



o.mic.active:after {
    content: '\e971';
}



o.volume.active:after {
    content: '\eb60';
}



o.muzak.active:after {
    content: '\e990';
}



o.phonecard.active:after {
    content: '\e9a8';
}



o.telecamera.active:after {
    content: '\eb23';
}



o.camera.active:after {
    content: '\e7c0';
}



o.aim.active:after {
    content: '\e707';
}



o.semaphore.active:after {
    content: '\ea01';
}



o.suitcase.active:after {
    content: '\eb01';
}

o.toggle:after {
    content: '\eb34';
}

o.toggle.active:after {
    content: '\eb35';
}

o.toggle {
    font-size: 36px;
}

@media(max-width:640px) {
    o {
        font-size: .32rem;
        margin: 0;
    }
}




button,
input,
optgroup,
select,
textarea {
    outline: none;
    border-radius: 0;
}

textarea {
    resize: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="range"],
input[type="range"]::-webkit-slider-thumb,
input[type="search"]::-webkit-search-cancel-button,
select,
textarea,
progress,
::-webkit-outer-spin-button,
::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    color: var(--ccc);
    text-transform: capitalize;
}

::-moz-placeholder {
    color: var(--ccc);
}

::-webkit-progress-bar {
    background-color: var(--f7);
    border-radius: 100px;
    height: 10px;
}

::-webkit-progress-value {
    background-color: var(--color);
    border-radius: 100px;
}

::-moz-progress-bar {
    background-color: var(--color);
}

input[type="range"],
input[type="file"],
input[type="color"] {
    padding: 0;
    background: none !important;
    border: 0;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background-color: var(--color);
}

input[type="range"]::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    background-color: var(--color);
    border-radius: 100%;
    margin-top: -10px;
    box-shadow: 0 3px 6px var(--color);
}

input[type="file"]::-webkit-file-upload-button {
    background-color: var(--color);
    border: 0;
    cursor: pointer;
    height: 50px;
    color: white;
    border-radius: 2px;
    text-transform: capitalize;
    padding: 0 20px;
}

input[type="color"] {
    width: 50px;
}

::-webkit-calendar-picker-indicator {
    transform: scale(1.3);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url(../../../assets/ext/cdn.jsdelivr.net/npm/uigg/ico/svg/time/calendar.svg);
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    background-image: url(../../../assets/ext/cdn.jsdelivr.net/npm/uigg/ico/svg/time/calendar-many.svg);
}

input[type="time"]::-webkit-calendar-picker-indicator {
    background-image: url(../../../assets/ext/cdn.jsdelivr.net/npm/uigg/ico/svg/time/time.svg);
}

input[type="week"]::-webkit-calendar-picker-indicator {
    background-image: url(../../../assets/ext/cdn.jsdelivr.net/npm/uigg/ico/svg/time/calendar-less.svg);
}

input[type="month"]::-webkit-calendar-picker-indicator {
    background-image: url(../../../assets/ext/cdn.jsdelivr.net/npm/uigg/ico/svg/time/calendar-reduce.svg);
}

select,
.input,
.input i,
.input o,
input {
    width: 100%;
    height: 50px;
    position: relative;
}

button {
    line-height: 50px;
}

.input i,
.input o {
    width: 50px;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
}

textarea {
    width: 100%;
    height: 120px;
    padding: 15px 10px;
    line-height: 160%;
}

input {
    padding: 0 10px;
}

select {
    padding: 0 50px 0 10px;
    background-image: url(../../../assets/ext/cdn.jsdelivr.net/npm/uigg/ico/svg/arrow/alone-bottom.svg);
    background-size: 24px;
    background-position: calc(100% - 12px) center;
}

.form .input,
.form input,
.form select,
.form textarea,
.form span,
.form a,
.form button,
.form o,
.form cite,
.form .code {
    margin: 5px;
    float: left;
}

.form select,
.form .input,
.form input,
.form textarea {
    background-color: var(--f7);
}

.form .input input {
    background-color: transparent;
}

.form .input o {
    margin: 0;
}

.form li .input input {
    margin: 0;
}

.form progress {
    margin: 20px 5px 0;
}

.form {
    padding: 20px;
    overflow: hidden;
}

.form span,
.form cite,
.form li,
.form o {
    line-height: 50px;
}

.form li {
    display: block;
    width: 100%;
    float: left;
}

.form li.resolve {
    padding-left: 110px;
}

.form li.resolve .btn:not(:last-child) {
    margin-right: 10px;
}

.form li .code {
    width: 140px;
    height: 50px;
}

.form li .code img {
    width: 100%;
    height: 100%;
}

.form span:first-child {
    text-transform: capitalize;
}

.form li span:first-child {
    width: 100px;
}

.form .btn span {
    margin: 0;
}

.form .min {
    width: 10%;
}

.form .sml {
    width: 20%;
}

.form .med {
    width: 30%;
}

.form .lag {
    width: 50%;
}

.form .big {
    width: 60%;
}

.form .max {
    width: 80%;
}



.upload-group{
    width: 100px;
    height: 100px;
    float: left;
    margin: 5px;
    background-color: var(--f7);
    line-height: 100px;
    font-size: 36px;
    color: var(--000-2);
}

.upload-group {
    position: relative;
    background-size: cover;
}

.upload-group input[type="file"] {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}



.upload-group:after {
    content: '\e75b';
}





@media(max-width:640px) {
    input[type="range"]::-webkit-slider-runnable-track {
        height: .05rem;
    }
    input[type="range"]::-webkit-slider-thumb {
        width: .35rem;
        height: .35rem;
        margin-top: -.15rem;
        box-shadow: 0 .03rem .06rem var(--color);
    }
    input[type="file"]::-webkit-file-upload-button {
        height: .7rem;
        border-radius: .03rem;
        padding: 0 .2rem;
    }
    input[type="color"] {
        width: .7rem;
        flex: none !important;
    }
     ::-webkit-progress-bar {
        height: .1rem;
    }
    button,
    select,
    .input,
    .input i,
    .input o,
    input {
        height: .7rem;
    }
    button {
        line-height: .7rem;
    }
    .input i,
    .input o {
        width: .7rem;
        line-height: .7rem;
    }
    textarea {
        padding: .18rem .1rem;
        height: 2rem;
    }
    input {
        padding: 0 .1rem;
    }
    select {
        padding: 0 .7rem 0 .1rem;
        background-size: .36rem;
        background-position: calc(100% - .16rem) center;
    }
    .form .input,
    .form input,
    .form select,
    .form textarea,
    .form span,
    .form a,
    .form button,
    .form o,
    .form cite,
    .form .code {
        margin: 0;
    }
    .form select,
    .form .input,
    .form input,
    .form textarea {
        background-color: transparent;
        flex: 1;
        min-width: 0;
    }
    .form progress {
        margin: .3rem 0 0;
    }
    .form {
        padding: .1rem;
    }
    .form span,
    .form cite,
    .form li,
    .form li .code,
    .form o {
        line-height: .7rem;
    }
    .form li,
    .form li.resolve {
        padding: .1rem 0;
        display: flex;
    }
    .form li:not(:last-child) {
        border-bottom-width: 1px;
    }
    .form li.resolve {
        border: 0;
    }
    .form li.resolve .btn {
        width: 100%;
    }
    .form li.resolve .btn:not(:last-child) {
        margin-right: .1rem;
    }
    .form li .code {
        width: 1.8rem;
        height: .7rem;
        font-size: .2rem;
        font-weight: normal;
    }
    .form li span:first-child {
        width: 1.2rem;
    }
    .form button {
        width: 100%;
    }
    .form cite {
        display: none;
    }
    .form .min,
    .form .sml,
    .form .med,
    .form .lag,
    .form .big,
    .form .max {
        width: auto;
        flex: 1;
        min-width: 0;
    }
    .upload-group{
        width: 1.1rem;
        height: 1.1rem;
        margin: .05rem;
        line-height: 1.1rem;
        font-size: .42rem;
    }
    
}




page .ico,
page * {
    height: 50px;
    border-radius: 2px;
    text-align: center;
    margin: 2px;
    line-height: 50px;
}

page,
page ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

page ul a,
page span,
page input {
    font-size: 16px;
}

page a,
page button {
    background-color: var(--f7);
    width: 50px;
    user-select: none;
}

page ul {
    margin: 0;
    overflow: inherit;
}

page ul a {
    display: none;
    transition-duration: 0s;
}

page span {
    padding: 0 10px;
}

page input {
    border-width: 1px;
    width: 80px;
}

page a:hover,
page a.active,
page button:hover {
    background-color: var(--color);
    color: white;
    transition-duration: .3s;
}

page[min] span,
page[min] input,
page[min] button {
    display: none;
}

@media(max-width:640px) {
    page .ico,
    page * {
        height: .7rem;
        border-radius: .02rem;
        margin: .02rem;
        line-height: .7rem;
    }
    page ul a,
    page span,
    page input {
        font-size: .22rem;
    }
    page a,
    page button {
        width: .7rem;
    }
    page ul {
        display: none;
    }
    page span {
        padding: 0 .1rem;
    }
    page input {
        width: .7rem;
    }
}




tab {}

tab-list {
    overflow: hidden;
}

tab-list li {
    display: block;
    float: left;
    text-align: center;
}

tab-list li a {
    display: block;
    font-weight: bold;
    padding: 0 20px;
}

tab-group {
    display: none;
}

tab-group.active {
    display: block;
}

@media(max-width:640px) {
    tab-list li a {
        padding: 0 .2rem;
    }
}




.table {}

.table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
}

.table table th,
.table table td {
    vertical-align: middle;
    text-align: center;
    height: 50px;
}

.table table th {
    text-transform: capitalize;
}

.table table thead th,
.table table thead td {
    font-weight: bold;
    color: white;
    text-transform: capitalize;
}

.table table thead tr {
    background-color: var(--color);
}

.table table tbody tr:nth-child(2n) {
    background-color: var(--f7);
}

.table table tbody tr:hover {
    background-color: var(--eee);
}

.table table tfoot tr:first-child td,
.table table tfoot tr:first-child th {
    border-top: 1px var(--color) solid;
}

@media(max-width:640px) {
    .table {
        overflow: auto;
    }
    .table table {
        max-width: 15rem;
    }
    .table table th,
    .table table td {
        height: .7rem;
    }
    .table table tbody tr:hover {
        background-color: transparent;
    }
}




.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    font-size: 40px;
    line-height: 50px;
    color: var(--color);
    margin-top: -25px;
    display: flex;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: 'ico';
    content: '';
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color);
}



.swiper-animate .swiper-slide-active .swiper-anime {
    display: block;
}







@media(max-width:640px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: .5rem;
        height: .5rem;
        font-size: .4rem;
        line-height: .5rem;
        margin-top: -.25rem;
    }
    
}




name,
name h2,
name-logo,
name-search {
    display: flex;
    align-items: center;
    justify-content: center;
}

name {
    height: 80px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 5px var(--000-1);
}

name u,
name h2,
name h3,
name-logo,
name-search {
    flex: 1;
    min-width: 0;
    text-align: center;
}

name h2,
name h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 26px;
}

name h2,
name-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

name h3 {
    text-align: left;
    border-left: 1px var(--eee) solid;
    padding: 0 20px;
}

name .ico {
    font-size: 36px;
    width: 80px;
    position: relative;
    z-index: 1;
}

name-logo {
    padding: 15px;
}

name-logo img {
    height: 100%;
    width: auto;
}

name-logo h1 {
    text-transform: uppercase;
    font-size: 30px;
    padding-left: 10px;
}

name-search {
    position: relative;
    margin: 10px 0;
    background-color: var(--000-1);
    border-radius: 30px;
}

name-search input {
    text-align: inherit;
    font-size: 24px;
    color: inherit;
    padding: 0 80px 0 0;
}

name-search input::-webkit-input-placeholder {
    color: var(--000-2);
}

name-search input::-moz-placeholder {
    color: var(--000-2);
}

@media(max-width:640px) {
    name {
        height: .8rem;
        box-shadow: 0 0 .05rem var(--000-1);
    }
    name h2,
    name h3 {
        font-size: .3rem;
    }
    name h3 {
        margin: .2rem 0;
        padding: 0 .25rem;
    }
    name .ico {
        font-size: .42rem;
        width: .8rem;
    }
    name-logo {
        padding: .15rem;
    }
    name-logo h1 {
        font-size: .32rem;
        padding-left: .1rem;
    }
    name-search {
        margin: .1rem 0;
        border-radius: .3rem;
    }
    name-search input {
        font-size: .24rem;
        height: .6rem;
        padding: 0 .8rem 0 0;
    }
}




load {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: white url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiBmaWxsPSJub25lIiByPSIzMCIgc3Ryb2tlPSIjZWVlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiIHRyYW5zZm9ybT0icm90YXRlKDQ2Ny41NzkgNTAgNTApIj48YW5pbWF0ZVRyYW5zZm9ybSBhdHRyaWJ1dGVOYW1lPSJ0cmFuc2Zvcm0iIHR5cGU9InJvdGF0ZSIgY2FsY01vZGU9ImxpbmVhciIgdmFsdWVzPSIwIDUwIDUwOzE4MCA1MCA1MDs3MjAgNTAgNTAiIGtleVRpbWVzPSIwOzAuNTsxIiBkdXI9IjEuNXMiIGJlZ2luPSIwcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiPjwvYW5pbWF0ZVRyYW5zZm9ybT48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2UtZGFzaGFycmF5IiBjYWxjTW9kZT0ibGluZWFyIiB2YWx1ZXM9IjAgMTg4LjQ5NTU1OTIxNTM4NzU3OzE4OC40OTU1NTkyMTUzODc2IC0yLjg0MjE3MDk0MzA0MDQwMWUtMTQ7MCAxODguNDk1NTU5MjE1Mzg3NTciIGtleVRpbWVzPSIwOzAuNTsxIiBkdXI9IjEuNSIgYmVnaW49IjBzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSI+PC9hbmltYXRlPjwvY2lyY2xlPjwvc3ZnPg==') center no-repeat;
    background-size: 100px 100px;
}

@media(max-width:640px) {
    load {
        background-size: 1rem 1rem;
    }
}




msie {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    font-size: 50px;
    font-weight: lighter;
    text-transform: uppercase;
    color: whitesmoke;
}

@media(max-width:640px) {
    msie {
        font-size: .3rem;
    }
}






.anew.btn {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 30px;
    width: 50px;
    font-size: 24px;
    font-weight: normal;
}

.anew.btn:hover {
    transform: translateY(-5px);
}

@media(max-width:640px) {
    .anew.btn {
        right: .2rem;
        width: .7rem;
        height: .7rem;
        margin: .2rem;
        font-size: .32rem;
    }
    .anew.btn:hover {
        transform: translateY(0);
    }
}




scaler {
    display: flex;
}

scaler a {
    width: 50px;
}

scaler input {
    flex: 1;
    min-width: 0;
    text-align: center;
}

@media(max-width:640px) {
    scaler a {
        width: .7rem;
    }
}




.list {
    overflow: hidden;
}

.list li:not(:last-child) {
    border-bottom-width: 1px;
}






countdown {}

countdown s {
    text-decoration: none;
}




music {
    animation: muzak 10s infinite linear;
    border-radius: 100%;
    z-index: 999;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 0;
    background-color: var(--color);
    color: white;
    display: none;
}

music.ico {
    line-height: 50px;
    margin: 30px;
}

music[pause] {
    animation: none;
}

music:after {
    content: '\e98c';
}

music[pause]:after {
    content: '\e990';
}

@keyframes muzak {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media(max-width:640px) {
    music {
        width: .8rem;
        height: .8rem;
    }
    music.ico {
        line-height: .8rem;
        font-size: .48rem;
        margin: .3rem;
    }
}




drop {
    width: 100%;
    height: 50px;
    line-height: 50px;
    position: relative;
    background-color: var(--f7);
}

drop x {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

drop i.ico {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 50px;
    width: 50px;
}

drop>i.ico {
    transform: rotate(90deg);
}

drop-cont {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

drop-list {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: white;
    width: 100%;
    box-shadow: 0 3px 6px var(--000-1);
    max-height: 50vh;
}

drop ul {
    overflow: visible;
}

drop li {
    position: relative;
}

drop li:not(:last-child) {
    border-bottom-width: 1px;
}

drop li drop-list {
    right: -100%;
    top: 0;
    left: auto;
}

drop li drop-list x {
    display: none;
}

drop a {
    padding: 0 20px;
    display: block;
    user-select: none;
}

drop li:hover>a {
    color: white;
    background-color: var(--color);
}

drop li:hover>drop-list {
    display: block;
}

drop li:hover>i {
    color: white;
}

drop.active>drop-list {
    display: block;
}

drop.active>i {
    transform: rotate(-90deg);
}

@media(max-width:640px) {
    drop {
        height: .7rem;
        line-height: .7rem;
    }
    drop i.ico {
        line-height: .7rem;
        width: .7rem;
    }
    drop-list {
        top: .7rem;
        box-shadow: 0 .03rem .06rem var(--000-1);
    }
    drop a {
        padding: 0 .2rem;
    }
}




rate {}

rate i {
    color: var(--orange);
    cursor: pointer;
}

rate i.active::before {
    content: '\ea65';
}




notify {
    position: fixed;
    top: 0;
    right: 0;
    margin: 0 10px;
    z-index: 999;
}

notify li {
    width: 300px;
    padding: 30px 20px 20px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 5px 10px -3px var(--000-1);
    position: relative;
    margin: 10px 0;
    transition: .3s;
}

notify li x.ico {
    position: absolute;
    top: 0;
    right: 0;
    margin: 7px;
}

@media(max-width:640px) {
    notify {
        margin: 0 .1rem;
    }
    notify li {
        width: 4rem;
        padding: .4rem .2rem .2rem;
        border-radius: .1rem;
        box-shadow: 0 .05rem .1rem -.03rem var(--000-1);
        margin: .1rem 0;
    }
    notify li x.ico {
        margin: .08rem;
    }
}




.avatar {
    border-radius: 100%;
    background-size: cover;
    display: block;
}




empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

empty.default {
    font-size: 30px;
    color: var(--000-1);
    text-transform: capitalize;
}

empty.default:after {
    content: 'empty';
}

empty .ico {
    display: block;
    font-size: 72px;
}

empty>.ico {
    margin: inherit;
}

@media(max-width:640px) {
    empty {
        font-size: .36rem;
    }
    empty .ico {
        font-size: .8rem;
    }
}




hop {
    position: relative;
}

hop x {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}

hop a {
    height: 50px;
    line-height: 50px;
    min-width: 50px;
    display: block;
    text-align: center;
    user-select: none;
}

hop-cont {
    position: absolute;
    right: 0;
    top: 60px;
    width: 200px;
    
    border-radius: 5px;
    display: none;
}

hop-cont corner {
    border-width: 0 10px 10px 10px;
    border-bottom-color: white;
    top: -10px;
}

hop-cont a {
    background-color: white;
    border-bottom-width: 1px;
    text-transform: capitalize;
}

hop-cont a:first-child {
    border-radius: 0px 0px 0 0;
}

hop-cont a:last-child {
    border-radius: 0 0 5px 5px;
    border: 0;
}

hop-cont a:hover {
    background-color: var(--color);
    color: white;
}

@media(max-width:640px) {
    hop a {
        height: .7rem;
        line-height: .7rem;
        min-width: .7rem;
    }
    hop-cont {
        top: .8rem;
        width: 3rem;
        box-shadow: 0 .05rem .1rem var(--000-1);
        border-radius: .05rem;
    }
    hop-cont corner {
        border-width: 0 .1rem .1rem .1rem;
        top: -.1rem;
    }
    hop-cont a:first-child {
        border-radius: .1rem .1rem 0 0;
    }
    hop-cont a:last-child {
        border-radius: 0 0 .1rem .1rem;
    }
}




uigg-emot s {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-size: 90%;
    vertical-align: middle;
    cursor: pointer;
}

uigg-emot s:hover {
    background-color: var(--eee);
}

@media(max-width:640px) {
    uigg-emot s {
        width: .6rem;
        height: .6rem;
    }
}




chat {
    height: 100%;
    display: flex;
    position: relative;
}

chat ::-webkit-scrollbar {
    width: 3px;
}

chat .ico {
    width: 50px;
    height: 50px;
    line-height: 50px;
}

chat s {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-size: 90%;
    vertical-align: middle;
    cursor: pointer;
}

chat chat-title .ico:hover,
chat chat-tool .ico:hover {
    background: var(--eee);
}

chat .avatar {
    width: 50px;
    height: 50px;
}

chat pop img {
    max-height: 100%;
}

chat aside {
    word-break: break-all;
}

chat aside * {
    white-space: normal;
}

chat aside img {
    max-width: 200px;
    border-radius: 5px;
    cursor: pointer;
    min-width: 50px;
    min-height: 50px;
}

chat aside video {
    max-width: 300px;
}

chat a[download] {
    background-color: var(--orange);
    display: inline-block;
    border-radius: 5px;
    padding-right: 20px;
}

chat a[download] .ico-file {
    width: 50px;
    height: 50px;
    background-color: transparent;
}

chat a[download]:hover .ico-file:before {
    content: '\e74e';
}

chat-title {
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom-width: 1px;
    position: relative;
    z-index: 1;
}

chat-title h3 {
    font-size: 16px;
    flex: 1;
    padding: 0 10px;
}

chat-title input {
    flex: 1;
    min-width: 0;
}

chat-title x.ico-close {
    background: var(--red) !important;
    color: white;
    display: none;
}

chat-sider {
    width: 240px;
    display: flex;
    flex-direction: column;
    border-right-width: 1px;
}

chat-sider hop {
    position: static;
}

chat-sider hop-cont {
    width: 100%;
    top: 50px;
}

chat-sider hop-cont a {
    border-radius: 0 !important;
}

chat-sider hop-cont corner {
    display: none;
}

chat-list {
    flex: 1;
    overflow: auto;
}

chat-list li {}

chat-list li a {
    display: flex;
    align-items: center;
    padding: 10px;
}

chat-list li .avatar {
    margin-right: 5px;
}

chat-list li h6,
chat-list li span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

chat-list li h6 {
    flex: 1;
    min-width: 0;
}

chat-list li span {
    color: var(--ccc);
    display: block;
}

chat-list li a.disable {
    filter: grayscale(100%);
}

chat-list li a.active {
    background-color: var(--f7);
}

chat-list li a:hover {
    background-color: var(--eee);
}

chat-cont {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background-color: white;
    position: relative;
    z-index: 1;
}

chat-message {
    flex: 1;
    border-bottom-width: 1px;
    overflow: auto;
}

chat-message li {
    padding: 10px 70px;
    position: relative;
    overflow: hidden;
}

chat-message li .avatar {
    position: absolute;
    left: 0;
    top: 0;
    margin: 10px;
}

chat-message li cite {
    display: block;
    margin-bottom: 5px;
    color: var(--ccc);
}

chat-message li aside {
    background-color: var(--f7);
    border-radius: 0 10px 10px 10px;
    padding: 10px;
    display: inline-block;
}

chat-message li.mine {}

chat-message li.mine .avatar {
    left: auto;
    right: 0;
}

chat-message li.mine cite {
    text-align: right;
}

chat-message li.mine aside {
    background-color: aliceblue;
    border-radius: 10px 0 10px 10px;
    float: right;
}

chat-tool {
    height: 50px;
    position: relative;
}

chat-tool>a {
    float: left;
    position: relative;
}

chat-tool>a input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

chat-tip {
    position: absolute;
    bottom: 50px;
    left: 0;
    background-color: white;
    border-width: 1px 0;
    width: 100%;
    overflow: auto;
    padding: 10px;
    display: none;
}

chat-control {
    height: 150px;
    position: relative;
    overflow: hidden;
}

chat-control aside {
    height: 100%;
    padding: 0 70px 0 10px;
    overflow: auto;
    -webkit-user-modify: read-write;
}

chat-control aside * {
    -webkit-user-modify: read-only;
}



@media(max-width:640px) {
    chat {
        display: block;
    }
    chat .ico {
        width: .7rem;
        height: .7rem;
        line-height: .7rem;
    }
    chat s {
        width: .6rem;
        height: .6rem;
    }
    chat .avatar {
        width: .6rem;
        height: .6rem;
    }
    chat aside img {
        max-width: 3rem;
        border-radius: .05rem;
        min-width: .7rem;
        min-height: .7rem;
    }
    chat aside video {
        max-width: 3rem;
    }
    chat a[download] {
        border-radius: .05rem;
        padding-right: .2rem;
    }
    chat a[download] .ico-file {
        width: .7rem;
        height: .7rem;
    }
    chat-title {
        height: .7rem;
    }
    chat-title h3 {
        font-size: .22rem;
        padding: 0 .1rem;
    }
    chat-title x.ico-close {
        display: block;
    }
    chat-sider {
        width: 100%;
        height: 100%;
        border-right-width: 0;
    }
    chat-sider hop-cont {
        top: .7rem;
    }
    chat-list li a {
        padding: .15rem;
    }
    chat-list li .avatar {
        margin-right: .1rem;
    }
    chat-cont {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
    }
    chat-message li {
        padding: .1rem .8rem;
    }
    chat-message li .avatar {
        margin: .1rem;
    }
    chat-message li cite {
        margin-bottom: .05rem;
    }
    chat-message li aside {
        border-radius: 0 .1rem .1rem .1rem;
        padding: .1rem;
    }
    chat-message li.mine aside {
        border-radius: .1rem 0 .1rem .1rem;
    }
    chat-tool {
        height: .7rem;
    }
    chat-emot {
        bottom: .7rem;
        padding: .1rem;
    }
    chat-control {
        height: 2rem;
    }
    chat-control aside {
        padding: 0 .9rem 0 .1rem;
    }
    
}




fold {}

fold tt {
    display: block;
    border-bottom-width: 1px;
}

fold tt a {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}

fold tt a h5 {
    flex: 1;
    min-width: 0;
    line-height: 30px;
}

fold tt a .ico {
    width: 40px;
}

fold tt.active s {
    transform: rotate(180deg);
}

fold aside {
    display: none;
    padding: 10px;
}

@media(max-width:640px) {
    fold tt a {
        padding: .1rem;
    }
    fold tt a h5 {
        line-height: .5rem;
    }
    fold tt a .ico {
        width: .5rem;
    }
    fold aside {
        padding: .1rem;
    }
}

.clause form {
    width: 100%;
}



































.login-inputs {
    padding: 15px;
}







#promotions-tab {
    border-bottom: unset;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
}








#promotions-tab .nav-item button.active {
    color: #ffffff;
}

#promotions-tab .nav-item button.active span {
    color: #fb4d03;
}



#promo_ li {
    
    float: left;
    padding: 10px;
    border: 0;
    transition-duration: 0s;
}


#promotions-tab .nav-item button.active {
    color: #555;
    
    border-bottom: 3px solid var(--color);
}



.info-cont p {
    color: #fff !important;
}








.vip {
    display: none;
}

.vip-cont {
    padding: 50px 0;
}

.vip-rade {}

.vip-rade em {
    display: block;
    text-align: center;
}

.vip-rade h3 {
    text-align: center;
    padding: 20px 0;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--orange);
    text-shadow: 5px 5px 10px var(--orange);
}

.vip-rade progress {
    width: 100%;
}



















.vip-upgrade {
    display: flex;
}

.vip-card {}

.vip-buy {
    flex: 1;
}

.vip-buy li {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.vip-buy li span {
    text-transform: capitalize;
}

.vip-buy u {
    flex: 1;
}

.vip-buy b {
    padding: 10px 20px;
    border: 2px solid;
    color: var(--orange);
    text-transform: uppercase;
}

.vip-list table th{
    width: 20%;
}

.vip-list h4 {
    text-align: center;
    padding: 30px 0;
    font-size: 26px;
    text-transform: uppercase;
}

.vip-list td {

}

.vip-info {
    padding: 30px 0;
}

.vip-info fold tt {
    display: flex;
    padding: 10px;
    cursor: pointer;
}

.vip-info fold tt h3 {
    flex: 1;
}

.vip-info fold tt i {
    margin: inherit;
}

.vip-info aside {
    padding: 0 20px;
}

.vip-info aside h5 {
    color: var(--orange);
}




.mission {
    padding: 0;
    overflow: hidden;
}

.mission li {
    margin-bottom: 20px;
    transition-duration: 0s;
    width: 50%;
    float: left;
    padding: 0 10px;
}

.mission li a {
    display: block;
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: 10px;
}













.mission-info .progress {
    width: 200px;
    display: flex;
    align-items: center;
}

.mission-info .progress progress {
    width: 100%;
    flex: 1;
    margin-top: 10px;
}

.mission-info .progress span {
    margin-left: 10px;
}.head-user .avatar{
    width: 70px !important;
    height: 55px !important;
}#refUrl, #refUrl1, #refUrl2{
    margin-top: -10px !important;
    position: relative;
}
section .main{
    width: 1300px !important;
}
section .banner{
    overflow: auto;
}


div#video_iframe {
    z-index: 99!important;
}#appRoute{
    height: 100%;
    position: relative;
}

.main_rew{
    text-align: center;
    padding: 20px;
}
.rewards {
    padding: 0;
    overflow: hidden;
}

.rewards li {
    margin-bottom: 20px;
    transition-duration: 0s;
    padding: 0 60px;
}

.rewards li a {
    display: block;
   background-size: cover;
    box-shadow: var(--shadow);
    border-radius: 10px;
}
.rewards li .rew1 {
    background-image: url(../images/rewards/rew1.png);
}
.rewards li .rew2 {
    background-image: url(../images/rewards/rew2.png);
}
.rewards li .rew3 {
    background-image: url(../images/rewards/rew3.png);
}
.rewards li .rew4 {
    background-image: url(../images/rewards/rew4.png);
}
.rewards li .rew5 {
    background-image: url(../images/rewards/rew5.png);
}
.rewards li .rew6 {
    background-image: url(../images/rewards/rew6.png);
}
.rewards li .rew7 {
    background-image: url(../images/rewards/rew7.png);
}
.ico-fluent-rewards {
    background-image: url(../images/rewards/icon/theme1icon.png);
}

.rewards-cont {
    display: flex;
    align-items: center;
    padding: 10px 0;
    
}

.rewards-cont em {
    margin: 0 30px;
    width: 90px;
    height: 90px;
    display: block;
}

.rewards-cont h5 {
    font-size: 24px;
    flex: 1;
    text-transform: uppercase;
}

.rewards-cont h5 span {
    font-size: 16px;
    display: block;
    font-weight: normal;
    text-transform: capitalize;
    margin-top: 10px;
}





.rewards-info .progress {
    width: 200px;
    display: flex;
    align-items: center;
}

.rewards-info .progress progress {
    width: 100%;
    flex: 1;
    margin-top: 10px;
}

.rewards-info .progress span {
    margin-left: 10px;
}




.lang .dropdown_lang{
    background: var(--color-lg) !important;
}

body hop-cont{
    right: 0px !important;
}

.poplicense .fa-times-circle::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f057";
}
.hot-bar {
    position: absolute !important;
    margin-left: 240px;
    margin-top: -45px;
    background-image: url(../images/hot/hot-bar.gif) !important;
    background-size: contain;
    background-position: right;
    z-index: 1;
    width: 100px;
    height: 60%;
    max-height: 100px;
    max-width: 4rem;
}

