/* 谷歌 */
html, body{
    background: #fff;
    font-size: 14px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-weight: 400;

}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    background-color:transparent;
}
/*  */
input{
    outline: 0;

    background:none ;
    border:none;

}
input:-webkit-autofill {
    background-color:transparent;
  transition: background-color 5000s ease-in-out 0s;
}
:root input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    box-shadow: none;
    /*阴影大小等于input框宽度一半 利用内阴影覆盖原背景色*/
    background-color:transparent;

}


/* scroll滚动框宽度*/
::-webkit-scrollbar{
    width: 1px;
}

a:hover{
    text-decoration: none;
}


::after,
::before {
    box-sizing: border-box;
}
:root {
  --color-yellow: #f0a70a;
  --color-white: #fff;
  --color-gray: #5d5d6e;
  --color-gray02: #888894;
  --color-gray03: #758696;
  --color-zise: #7358a8;
  --color-blue: #007bff;

}
.all_body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.all_inner {
    height: auto;

    width: 100%;
    max-width: 700px;
    background: #EAE9EF;

    min-height: 100vh;
        position: relative;
}





.footer {
        position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
        box-shadow: var(--tab-nav-shadow, 0 -7px 20px 0 rgba(37, 37, 48, .15));
    background: #fff;
    z-index: 9999;
}

.footer .bg {}

.footer .inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    height: 80px;
    /* line-height: 60px; */
}

.footer .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    cursor: pointer;
    width: 20%;
}
.footer .home.selected img{
    content: url("/static/images/icons/home02.png");
}
.footer .record.selected img{
    content: url("/static/images/icons/record02.png");
}
.footer .task.selected img{
    content: url("/static/images/icons/task02.png");
}
.footer .my.selected img{
    content: url("/static/images/icons/my02.png");
}
.footer .item img {
    display: block;
    height: 25px;
}

.footer .item .s01 {
    font-size: 15px;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #999;
    line-height: 15px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 32px;
}

.footer .item.selected .s01 {
    color: #eb000e;
}






/* --------------------------------消息提示------------------------------ */
#show_msg_box {
    position: fixed;
    z-index: 999999;
    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);
    max-width: 400px;
    padding: 30px 20px;
    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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        z-index: 99999;
}

#show_loading .loading_inner {
    width: 100%;
    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: 250px;
    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------------------------------ */

.hide_this{
    display: none !important;
    opacity: 0 !important;
}

.no_data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.no_data img {
    width: 150px;
}

.no_data .s01 {
    opacity: 0.5;
    margin-top: 10px;
}