*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Microsoft YaHei",Helvetica;
    interpolate-size:allow-keywords;
}

p, ul, ol, li, td, th, img, div, h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

img {
    display: inline-block;
    border: medium none;
    vertical-align: top;
}

p {
    word-wrap: break-word;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

@keyframes opacityTo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#nav {
    height: 85px;
    position: absolute;
    left: 140px;
    top: 0;
    right: 0;
    transition: all .3s ease;
    z-index: 3;
}

    #nav .menu {
        height: 45px;
        position: relative;
        background-color: #f3f6f5;
        user-select: none;
        -ms-user-select: none;
        -moz-user-select: none;
    }

        #nav .menu.show_switch {
            padding: 0 60px;
        }

            #nav .menu.show_switch .switch {
                display: block;
            }

    #nav .switch {
        position: absolute;
        width: 26px;
        height: 26px;
        top: 9.5px;
        cursor: pointer;
        display: none;
        background-image: url("../../Images/4/switch.png");
        background-repeat: no-repeat;
        border-radius: 50%;
    }

        #nav .switch.prev {
            left: 30px;
            background-position: 0 0;
        }

        #nav .switch.next {
            right: 30px;
            background-position: -24px 0;
        }

    #nav .list {
        height: 100%;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
    }

    #nav li {
        display: inline-block;
        height: 100%;
        width: 100px;
        line-height: 45px;
        font-size: 12px;
        text-align: center;
        border-right: 1px solid #e9e9e9;
        cursor: pointer;
        color: #333;
        position: relative;
    }

        #nav li:last-child {
            border-right: none;
        }

        #nav li:hover {
            background-color: #fff;
        }

            #nav li:hover .close {
                display: block;
                animation: opacityTo 0.2s linear;
            }

        #nav li.active {
            color: #fff;
            background-color: #197971;
        }

            #nav li.active .close {
                background-position: 0 0;
            }

    #nav .close {
        position: absolute;
        right: 6px;
        top: 6px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-image: url("../../Images/4/close.png");
        background-position: -14px 0;
        background-size: 200% 100%;
        display: none;
    }

    #nav .crumbs {
        background-color: #fff;
        height: 40px;
        font-size: 12px;
        border-bottom: 1px solid #e9e9e9;
        color: #333333;
        user-select: none;
        display: flex;
        align-items: center;
        padding-left: 20px;
    }

        #nav .crumbs svg {
            height: 22px;
            width: 22px;
            cursor: pointer;
        }

            #nav .crumbs svg.min {
                display: none;
            }

            #nav .crumbs svg.max {
                display: block;
            }

body.hide-menu #nav .crumbs svg.min {
    display: block;
}

body.hide-menu #nav .crumbs svg.max {
    display: none;
}

        #nav .crumbs .index {
            display: inline-block;
            line-height: 40px;
            margin-left: 12px;
        }

        #nav .crumbs .tools {
            display: inline-block;
            font-size: 12px;
            border-left: 1px solid #dddddd;
            margin-left: 20px;
            padding-left: 20px;
        }

        #nav .crumbs .tool {
            cursor: pointer;
            margin-right: 20px;
            position: relative;
            padding-left: 18px;
        }

            #nav .crumbs .tool:before {
                content: '';
                position: absolute;
                left: 0;
                top: 1px;
                width: 14px;
                height: 14px;
                background-size: 100% 100%;
            }

            #nav .crumbs .tool#return:before {
                background-image: url("../../Images/4/return.png");
            }

            #nav .crumbs .tool#copy:before {
                background-image: url("../../Images/4/copy.png");
            }

            #nav .crumbs .tool#reload:before {
                background-image: url("../../Images/4/reload.png");
            }

        #nav .crumbs #copy_input {
            width: 10px;
            height: 0;
            opacity: 0;
        }

#menu {
    width: 140px;
    height: 100%;
    position: absolute;
    background: #2f4056;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    border-right: 1px solid #e1e1e2;
}

    #menu .logo {
        height: 85px;
        padding-top: 1px;
    }

        #menu .logo .ico {
            display: block;
            width: 100px;
            height: 75px;
            margin: 5px auto 5px 16px;
            background-image: url("../../Images/4/logo.png");
            background-size: 100% 100%;
        }

        #menu .logo .name {
            color: #fff;
            font-size: 14px;
            margin-top: -3px;
            text-align: center;
        }

    #menu .con {
        position: absolute;
        bottom: 55px;
        top: 85px;
        width: 156px;
        overflow-y: scroll;
        user-select: none;
        -ms-user-select: none;
        -moz-user-select: none;
    }

        #menu .con.show_scroll {
            width: 140px;
        }

    #menu .item {
        height: auto;
        font-size: 14px;
        color: #fff;
    }

        #menu .item.open {
            position: relative;
        }

            #menu .item.open:before {
                content: '';
                height: 100%;
                width: 2px;
                background-color: #00bc87;
                position: absolute;
                z-index: 9;
                left: 0;
                top: 0;
                animation: opacityTo 0.2s linear;
            }

            #menu .item.open .title {
                color: #00bc87;
                background-color: #2c2f34;
                -webkit-transition: all 0.2s linear;
                -moz-transition: all 0.2s linear;
                -ms-transition: all 0.2s linear;
                transition: all 0.2s linear;
            }

                #menu .item.open .title:after {
                    border-top: 6px solid #00bc87;
                    border-left: 4px solid transparent;
                    border-right: 4px solid transparent;
                }

            #menu .item.open .two, #menu .item.open .list_item {
                display: block;
            }

    #menu .title {
        height: 48px;
        line-height: 48px;
        padding-left: 40px;
        position: relative;
        cursor: pointer;
    }

        #menu .title .iconfont {
            position: absolute;
            left: 12px;
        }

        #menu .title:hover {
            color: #fff;
            -webkit-transition: all 0.2s linear;
            -moz-transition: all 0.2s linear;
            -ms-transition: all 0.2s linear;
            transition: all 0.2s linear;
        }

            #menu .title:hover:after {
                border-right: 6px solid #fff;
            }

        #menu .title:after {
            content: '';
            display: block;
            position: absolute;
            right: 12px;
            top: 21px;
            width: 0;
            height: 0;
            border-bottom: 4px solid transparent;
            border-top: 4px solid transparent;
            border-right: 6px solid #67747f;
        }

    #menu .two {
        height: 44px;
        line-height: 44px;
        padding-left: 40px;
        font-size: 12px;
        display: none;
        cursor: pointer;
        background-color: #2c2f34;
        position: relative;
    }

        #menu .two:before {
            content: '';
            width: 12px;
            height: 12px;
            background-image: url("../../Images/4/two_menu.png");
            background-size: 100% 100%;
            position: absolute;
            left: 18px;
            top: 16px;
        }

        #menu .two:hover, #menu .two.open {
            color: #f08518;
            -webkit-transition: all 0.1s linear;
            -moz-transition: all 0.1s linear;
            -ms-transition: all 0.1s linear;
            transition: all 0.1s linear;
        }

            #menu .two:hover:before, #menu .two.open:before {
                background-image: url("../../Images/4/two_menu_active.png");
            }

            #menu .two.open + ul {
                display: block;
            }

    #menu .list {
        display: none;
        background-color: #2c2f34;
    }

    #menu .list_item {
        padding-left: 40px;
        height: 32px;
        line-height: 32px;
        cursor: pointer;
        font-size: 12px;
        display: none;
        -webkit-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        -ms-transition: all 0.15s linear;
        transition: all 0.15s linear;
    }

        #menu .list_item.active, #menu .list_item:hover {
            color: #fff;
            background-color: #1aa094 !important;
        }

    #menu .hide {
        display: none;
    }

    #menu .bottom {
        height: 55px;
        border-top: 1px solid #1d2f3d;
        text-align: center;
        position: absolute;
        bottom: 0;
        width: 100%;
        color: #fff;
    }

        #menu .bottom .name {
            font-size: 14px;
            line-height: 54px;
            cursor: pointer;
        }

            #menu .bottom .name:hover + .setting {
                display: block;
                animation: opacityTo 0.2s linear;
            }

    #menu .setting {
        position: absolute;
        width: 110px;
        height: auto;
        bottom: 30px;
        left: 50%;
        margin-left: -55px;
        background-color: #00bc87;
        padding: 0 12px;
        border-radius: 5px;
        display: none;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        user-select: none;
        -ms-user-select: none;
        -moz-user-select: none;
    }

        #menu .setting:hover {
            display: block;
        }

        #menu .setting:after {
            content: '';
            position: absolute;
            left: 50%;
            margin-left: -6px;
            width: 0;
            height: 0;
            border-top: 8px solid #00bc87;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
        }

        #menu .setting .item {
            height: 36px;
            text-align: center;
            line-height: 36px;
            color: #f2f2f2;
            font-size: 14px;
            cursor: pointer;
            border-bottom: 1px solid #00b481;
        }

            #menu .setting .item:hover {
                color: #fff;
            }

            #menu .setting .item.no_border {
                border-bottom: none;
            }

#content {
    background: #f3f6f5;
    position: absolute;
    right: 0;
    top: 85px;
    bottom: 0;
    left: 140px;
    overflow: hidden;
    transition: all .3s ease;
}

#content .iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #fff;
}

#iframe-loading {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    display: flex;
    justify-content: center;
    background-color: white;
}

    #iframe-loading div {
        width: 50px;
        height: 50px;
        background: url("../../Images/loading.gif");
        margin-top: 50px;
    }

.login_body {
    width: 100%;
    min-width: 880px;
    overflow: auto;
}

.login_bac {
    width: 100%;
    height: 500px;
    background: url(../../Images/4/fd277336.jpg) no-repeat center top;
    padding-top: 50px;
    position: relative;
}

.login_ACC {
    width: 100%;
    height: 15px;
    position: absolute;
    bottom: 0;
    overflow: hidden;
}

    .login_ACC div {
        width: 1260px;
        height: 100%;
        position: relative;
        margin: auto;
    }

    .login_ACC i {
        display: inline-block;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: url("../../Images/3/ico_Acc_.png");
    }

        .login_ACC i.left {
            float: left;
        }

        .login_ACC i.right {
            float: right;
        }

.login_title {
    width: 100%;
    text-align: center;
    font-size: 51px;
    font-family:»ªÎÄÐÐ¿¬;
    color: #FFF;
    position: absolute;
    top: 250px;
}

.login_box {
    background-color: #fff;
    width: 520px;
    position: absolute;
    top: 340px;
    left: 50%;
    margin-left: -260px;
    box-shadow: rgb(207 221 246) 0px 4px 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.login_box_ {
    display: inline-block;
    height: 100%;
    float: left;
    position: relative;
}

.login_box_logo {
    background: url("../../Images/3/login_logo.png");
}

.login_from {
    padding-top: 65px;
}

    .login_from div {
        width: 300px;
        height: 40px;
        position: relative;
        margin-left: 10px;
        margin-bottom: 34px;
    }

.login_sub {
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
    width: 200px;
    margin: 0 auto;
    display: block;
    height: 50px;
    border-radius: 32px;
    background-color: #1890ff;
    box-shadow: 0 2px 0 rgb(0 0 0 / 5%);
    font-size: 18px;
    text-shadow: 0 -1px 0 rgb(0 0 0 / 12%);
}

.login_logo {
    width: 200px;
    display: block;
    margin: auto;
}

.login_user {
    border: 1px solid #cfcfcf;
}

    .login_user input {
        width: 100%;
        height: 100%;
        outline: none;
        font-size: 14px;
        display: block;
        padding: 0 10px 0 40px;
        border: none;
        line-height: 40px;
    }

    .login_user i {
        display: block;
        position: absolute;
        left: -1px;
        top: -1px;
        height: 28px;
        width: 28px;
        margin: 6px;
    }

        .login_user i.ico_user {
            background: url("../../Images/3/ico_user.png");
            background-size: 100% 100%;
        }

        .login_user i.ico_pass {
            background: url("../../Images/3/ico_pass.png");
            background-size: 100% 100%;
        }

.login_yzm {
    width: 200px;
    height: 100%;
    border: 1px solid #cfcfcf;
    outline: none;
    text-indent: 16px;
    font-size: 14px;
    line-height: 40px;
}

.login_ico_y {
    width: 80px;
    height: 40px;
    float: right;
}

.login_change {
    color: #1aac81;
    font-size: 14px;
    line-height: 40px;
    position: absolute;
    right: -58px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.func_helploan {
    background: url("../../Images/funicon/HelpLoan.png");
}

/*# sourceMappingURL=index.css.map */
.hide-menu #nav {
    left: 0;
}

.hide-menu #menu {
    display: none;
}

.hide-menu #content {
    left: 0;
}