*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

::-webkit-scrollbar-thumb {
    background-color: rgba(130,130,130,.5);
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #f1404b;
        -webkit-border-radius: 4px;
        border-radius: 4px;
    }

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb:active {
    background-color: #f1404b;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

::-webkit-scrollbar-corner {
    background: rgba(0,0,0,0);
    border-radius: 0 0 8px 0;
}

::-webkit-scrollbar-button {
    background-color: rgba(0,0,0,0);
    height: 2px;
    width: 2px;
}

html {
    -webkit-tap-highlight-color: transparent;
    font-size: 12px;
}

body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #f3f5fb;
    font-family: microsoft yahei ui, Roboto, Noto, Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 0;
}

input, button, select {
    outline: none;
    border: none
}

a {
    color: #282a2d;
    text-decoration: none;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

    a:hover {
        color: #f1404b;
        text-decoration: none
    }

p {
    padding: 0;
    margin: 0;
}

.icons svg {
    vertical-align: middle;
    fill: currentColor;
    color: #888;
}

#body_sidebar {
    position: fixed;
    top: 0;
    height: 100%;
    width: 0;
    display: block;
    overflow: hidden;
    background-color: #fff;
    z-index: 1001;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
}

    #body_sidebar .body-sidebar-inner {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    #body_sidebar .sidebar-logo {
        background-color: #fff;
        line-height: 4rem;
        border-right: 1px solid #f2f2f2;
        border-bottom: 1px solid #f2f2f2;
    }

        #body_sidebar .sidebar-logo .logo {
            display: flex;
            align-items: center;
            padding: 0 0.5rem;
            height: 100%;
        }

        #body_sidebar .sidebar-logo img {
            height: 3.91rem;
            width: 3.91rem;
        }

        #body_sidebar .sidebar-logo .tit {
            font-size: 2.5rem;
            margin-left: 0.4rem;
        }

    #body_sidebar .sidebar-menu {
        overflow-y: auto;
        overflow-x: hidden;
        flex: 1;
    }

    #body_sidebar .menu-a {
        display: flex;
        overflow: hidden;
        padding: 8px 8px;
        margin: 1.5px 8px;
        font-size: 1.2rem;
        align-items: center;
        white-space: nowrap;
        transition: all .3s;
    }

    #body_sidebar .sidebar-bottom {
        border-top: 1px solid #f2f2f2;
    }

    #body_sidebar .menu-a:hover {
        background: rgba(0,0,0,.1);
        border-radius: 5px
    }

    #body_sidebar .menu-a svg {
        height: 1.6rem;
    }

    #body_sidebar .menu-t {
        margin-left: 5px;
    }

#body_content {
    margin-left: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

    #body_content .content-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transition: all .3s;
        z-index: 1003;
    }

    #body_content .content-header-inner {
        width: 100%;
        background-color: #fff;
        display: flex;
        justify-content: space-between;
        line-height: 4rem;
        height: 4rem;
    }

    #body_content .header-sid-btn svg {
        height: 4rem;
        width: 4rem;
    }

        #body_content .header-sid-btn svg .line--1 {
            --total-length: 126.38166809082031;
        }

        #body_content .header-sid-btn svg .line--3 {
            --total-length: 126.38166809082031;
        }

        #body_content .header-sid-btn svg .line--2 {
            --total-length: 80;
        }

        #body_content .header-sid-btn svg path {
            fill: none;
            stroke: #888;
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
            --length: 24;
            --offset: -38;
            stroke-dasharray: var(--length) var(--total-length);
            stroke-dashoffset: var(--offset);
            transition: all .5s cubic-bezier(.645,.045,.355,1),stroke .2s ease;
        }

        #body_content .header-sid-btn svg:hover path {
            stroke: #f1404b
        }

    #body_content .content-header-inner .big-a {
        color: #282a2d;
        font-size: 1.2rem;
        padding: 10px 15px;
    }

    #body_content .content-main {
        margin-top: 4rem;
        padding: 0.8rem;
    }

    #body_content .header-user {
        margin: 0 1rem;
    }

        #body_content .header-user .cli {
            height: 100%;
            display: inline-block;
            width: 4rem;
            text-align: center;
        }

            #body_content .header-user .cli svg {
                height: 40%;
            }

                #body_content .header-user .cli svg:hover {
                    color: #f66;
                }

    #body_content .content-footer {
        background-color: #fff;
        margin: 1.3rem 1.3rem 0 1.3rem;
        padding: 0.8rem;
    }

.body-sidebar-fix {
    display: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.query-mod {
    z-index: 1002;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .query-mod.hide {
        display: none;
    }

    .query-mod.show {
        display: block;
    }

    .query-mod .query-mod-fix {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background: rgba(0,0,0,.5);
        width: 100%;
        height: 100%;
    }

    .query-mod .query-mod-body {
        border-radius: 5px;
        padding: 1rem;
        width: 40rem;
        height: 10rem;
        background-color: #fff;
        position: absolute;
        top: 10%;
        left: 50%;
        margin-left: -20rem;
    }

        .query-mod .query-mod-body .query-tit {
            font-size: 16px;
        }

        .query-mod .query-mod-body form {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
        }

        .query-mod .query-mod-body .query-in {
            width: 100%;
            border: 1px solid #888;
            padding: 5px 10px;
            font-size: 16px;
            border-radius: 5px 0 0 5px;
        }

        .query-mod .query-mod-body .query-btn {
            width: 10rem;
            cursor: pointer;
            border-radius: 0 5px 5px 0;
            font-size: 16px;
            padding: 5px 10px;
            -webkit-transition: color .3s;
            -moz-transition: color .3s;
            -o-transition: color .3s;
            transition: color .3s;
            border-top: 1px solid #888;
            border-right: 1px solid #888;
            border-bottom: 1px solid #888;
        }

            .query-mod .query-mod-body .query-btn:hover {
                color: #f1404b;
            }

/*logo*/
.main-logo {
    text-align: center;
    height: 4rem;
    line-height: 4rem;
    margin: 1rem auto;
    width: 20rem;
}

    .main-logo .logo {
        display: flex;
        align-items: center;
        padding: 0 0.5rem;
        height: 100%;
        justify-content: center;
    }

        .main-logo .logo img {
            height: 3.5rem;
            margin-right: 0.4rem;
        }

        .main-logo .logo .tit {
            font-size: 2.5rem;
        }