/*
换行：
word-break: break-all;
word-wrap: break-word;

文字不可选择：
user-select: none;
 */

{% load static %}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
html, body{
    background: #FFFFFF;
    color: #333333;
    font-size: 16px;
    font-family: -apple-system, Helvetica, Arial, "Microsoft YaHei", sans-serif;
    font-weight: 400;
    height: 100%;
    position: relative;


}

body {
    background: #FFFFFF !important;

}
.all_body{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;

}
.all_body .all_inner{
    height: auto;
    width: 600px;
    max-width: 600px;
        padding-top: 65px;
        background-color: rgb(245, 247, 250);
}
.all_body.mobile .all_inner{
    height: auto;
    max-width: 100%;
    width: 100%;
}

.video-bg-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -2 !important;
    overflow: hidden;
    display: block !important;
}

.video-bg-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.2);
    filter: blur(25px) brightness(.8);
    object-fit: cover;
}

.video-bg-container .bg{

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea4d, #764ba24d);
    pointer-events: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    background-color:transparent;
}
/*  */
input{
    outline: 0;
    color: #121212;
    background:none ;
    border:none;
    -webkit-text-fill-color: #121212;
}
input:-webkit-autofill {
    background-color:transparent;
  transition: background-color 5000s ease-in-out 0s;
    color: #121212 !important;
}
:root input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    box-shadow: none;
    /*阴影大小等于input框宽度一半 利用内阴影覆盖原背景色*/
    color: #121212;
    background-color:transparent;
    -webkit-text-fill-color: #121212; /*利用文本填充属性覆盖原有文本颜色*/
}


/* scroll滚动框宽度*/
::-webkit-scrollbar{
    width: 1px;
}

a:hover{
    text-decoration: none;
}


::after,
::before {
    box-sizing: border-box;
}


/* --------------------------------底部导航栏------------------------------ */
.footer {

    height: 58px;
    width: calc(100% - 20px);
    position: fixed;
    bottom: 5px;
    left: 10px;
    right: 10px;
    z-index: 9999;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: -webkit-transform .4s cubic-bezier(.25,.46,.45,.94);
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
    transition: transform .4s cubic-bezier(.25,.46,.45,.94), -webkit-transform .4s cubic-bezier(.25,.46,.45,.94);
    border-radius: 15px;
    overflow: hidden;
}
.all_body.mobile .footer {
    left: 0;
    right: 0;
    width: 100%;
}

.footer.tabbar-hidden {
    -webkit-transform:translateY(calc(100% + 10px));
    transform:translateY(calc(100% + 10px));
    transition:-webkit-transform .3s cubic-bezier(.4,0,.6,1);
    transition:transform .3s cubic-bezier(.4,0,.6,1);
    transition:transform .3s cubic-bezier(.4,0,.6,1),
    -webkit-transform .3s cubic-bezier(.4,0,.6,1)
}
.footer .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    height: 58px;
    position: relative;
    z-index: 2;
}

.footer .inner .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    width: 15%;
}

.footer .inner .item img {
    height: 22px;
    width: 22px;
}

.footer .inner .item.selected span {
    color: #667eea;
    font-weight: 600;
}
.footer .inner .item span {
    font-size: 10px;
    line-height: 15px;
    white-space: nowrap;
    color: #999;
    margin-top: 2px;
    position: relative;
}
.footer .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .35));
    backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 4px 16px rgba(0, 0, 0, .08), 0 0 1px rgba(0, 0, 0, .05), inset 0 1px 0 hsla(0, 0%, 100%, .6);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    z-index: 1;
}

/* --------------------------------底部导航栏------------------------------ */
/* --------------------------------消息提示------------------------------ */
#show_msg_box {
    position: absolute;
    z-index: 99999999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#show_msg_box .msg_inner {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#show_msg_box .msg_box {
    background: rgba(0,0,0,0.7);
    width: 60%;
    padding: 20px 10px;
    border-radius: 10px;
    z-index: 998;
    color: #fff;
    font-size: 18px;
}

#show_msg_box .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.4;
    z-index: 990;
    display: none;
}


#show_msg_box .msg_box img {
    display: none;
    opacity: 0;
}

#show_msg_box .msg_box span {
    display: block;
    text-align: center;
    word-break: break-all;
    word-wrap: break-word;
}
/* --------------------------------消息提示------------------------------ */



/* --------------------------------Loading------------------------------ */

#show_loading {
    position: absolute;
        position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

#show_loading .loading_inner {

    width: 600px;
    max-width: 450px;
    height: 100%;
}

#show_loading .bg {}

.box_wrap {}

#show_loading .loading_wrap {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#show_loading .loading_box {
    background: rgba(0,0,0,0.7);
    width: 60%;
    padding: 50px 10px;
    border-radius: 10px;
    z-index: 998;
    color: #fff;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#show_loading .loading_box img {
    height: 50px;
    width: 50px;
}

#show_loading .loading_box span {
    margin-top: 20px;
}
/* --------------------------------Loading------------------------------ */


.index_top {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    height: 65px;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.index_top .logo_wrap {
    flex: 1;
}

.index_top .logo_wrap img {
    height: 28px;
}

.index_top .btn_kefu {
    width: 30px;
    height: 30px;
    background: hsla(0, 0%, 100%, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: all .3s ease;
    cursor: pointer;
    margin-right: 10px;
}

.index_top .btn_lan {
    width: 30px;
    height: 30px;
    background: hsla(0, 0%, 100%, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: all .3s ease;
    cursor: pointer;
}

.index_top .btn_lan span {}

.index_top .btn_kefu span {}
.index_top .btn_lan img {
    width: 28px;
    height: 28px;
}


.poped_lan {
    position: fixed;
    top: 60px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .05);
    z-index: 10001;
    padding: 10px;
    min-width: 180px;
    max-height: 70vh;
    overflow-y: auto;
    display: none;
    opacity: 0;
}
.poped_lan.selected{
    display: block;
    opacity: 1;
}

.poped_lan .p_inner {}

.poped_lan .item {
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.poped_lan .item .s01 {}

.poped_lan .item .s02 {
    display: none;
    opacity: 0;
}

.poped_lan .item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 10px;
    flex-shrink: 0;
}

.poped_lan .item:hover {
    background: rgba(102, 126, 234, .1);
}
.show_this{
    display: block !important;
    opacity: 1 !important;
}