/*#region console*/
.console-header {
    background: #ffffff;
    -webkit-box-shadow: 0 1px 1px 0 #dadada;
    box-shadow: 0 1px 1px 0 #dadada;
    left: 180px;
    top: 0;
    right: 0;
    position: fixed;
    z-index: 999;
    height: 3.625rem;
}

.console-header-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 0.3125rem 0 0 1.25rem;
}

    .console-header-left .title {
        margin-bottom: 0.25rem;
        font-weight: 600;
        color: #333;
        font-size: 1.25rem;
    }

    .console-header-left .message {
        color: #555;
    }

.console-header-right {
    float: right;
    position: relative;
    padding-right: 0.625rem;
}

    .console-header-right .user {
        cursor: pointer;
        height: 3.625rem;
        position: relative;
        background-color: #fff;
        padding-top: 0.5rem;
    }

        .console-header-right .user img {
            width: 2.5rem;
            height: 2.5rem;
            position: absolute;
            left: 0.125rem;
            top: 0.5rem;
            border-radius: 2.5rem;
        }

        .console-header-right .user h3 {
            height: 1.75rem;
            line-height: 1.75rem;
            padding: 0 1.875rem 0 3.125rem;
            color: #668dff;
        }

        .console-header-right .user h4 {
            margin-top: -0.3125rem;
            font-size: 0.75rem;
            color: #555;
            padding: 0 1.875rem 0 3.125rem;
        }

        .console-header-right .user .more {
            position: absolute;
            right: 0.625rem;
            top: 50%;
            margin-top: -0.625rem;
            color: #dadada;
        }

        .console-header-right .user:hover .more {
            color: #555555;
        }

        .console-header-right .user .more:before {
            content: "\e601";
        }

        .console-header-right .user:hover .more:before {
            content: "\e602";
        }

        .console-header-right .user .leo-dropdown-menu {
            top: 3.625rem;
        }

        .console-header-right .user:hover .leo-dropdown-menu {
            display: block;
        }

    .console-header-right .tool.user {
        padding: 0;
    }

    .console-header-right .tool a {
        display: inline-block;
        width: 2.5rem;
        height: 3.625rem;
        line-height: 3.625rem;
        text-align: center;
        font-size: 1.25rem;
        color: #9ba3af;
        position: relative;
        padding: 0;
    }

        .console-header-right .tool a i {
            height: 0.3125rem;
            width: 0.3125rem;
            border-radius: 50%;
            background: #f90000;
            position: absolute;
            right: 0.625rem;
            top: 0.8125rem;
            display: none;
        }

.console-aside {
    position: fixed;
    z-index: 100;
    width: 180px;
    top: 0;
    bottom: 0px;
    overflow: hidden;
    -moz-box-shadow: 0 0 0.625rem #BDBDBD;
    -webkit-box-shadow: 0 0 0.625rem #BDBDBD;
    box-shadow: 0 0 0.625rem #BDBDBD;
    background-color: #1b2a47;
    background-color: #222b3b;
    padding-top: 125px;
}

    .console-aside.bg-white {
        background-color: #ffffff;
        overflow: auto;
    }

body > .console-aside.bg-white {
    top: 0px;
}

.console-aside .logo {
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #222b3b;
}

    .console-aside .logo .md {
        width: 170px;
        margin-top: 10px;
    }

    .console-aside .logo .sm {
        height: 3.125rem;
        display: none;
    }


.console-aside .nav {
    overflow: auto;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #222b3b;
    width: 100%;
}

    .console-aside .nav .nav-main {
        cursor: pointer;
        border-bottom: 1px solid #354156;
        -webkit-transition: all .15s ease-out 0s;
        transition: all .15s ease-out 0s;
    }

        .console-aside .nav .nav-main .title {
            background-color: transparent;
            line-height: 49px;
            color: #245582;
            position: relative;
            border-bottom: 1px solid #354156a8;
        }

            .console-aside .nav .nav-main .title a {
                display: block;
            }

        .console-aside .nav .nav-main.active {
            background-color: #222b3b;
        }

            .console-aside .nav .nav-main.active .title {
                background-color: #222b3b;
                color: #fff;
            }

                .console-aside .nav .nav-main.active .title .iconfont,
                .console-aside .nav .nav-main.active .title .text {
                    color: #fff;
                }

        .console-aside .nav .nav-main .iconfont {
            width: 1.875rem;
            height: 2.5rem;
            text-align: center;
            color: #8b919e;
            position: absolute;
            /* left: 0; */
            top: 0;
        }

        .console-aside .nav .nav-main .text {
            color: #8b919e;
            font-size: 0.875rem;
            padding-left: 1.875rem;
        }

        .console-aside .nav .nav-main .active .text {
            color: #f0f5ff;
        }

        .console-aside .nav .nav-main ul {
            display: none;
            -webkit-transition: all .15s ease-out 0s;
            transition: all .15s ease-out 0s;
        }

        .console-aside .nav .nav-main.active > ul {
            display: block;
        }

        .console-aside .nav .nav-main ul li {
            line-height: 2.5rem;
            position: relative;
        }

            .console-aside .nav .nav-main ul li:hover {
                background-color: #131B28;
            }
            /* 
.console-aside .nav .nav-main ul li:after {
	content: "";
	width: 100%;
	height: 0.0625rem;
	background: #283040;
	display: table;
	margin: 0 auto;
} */

            .console-aside .nav .nav-main ul li:last-child:after {
                background-color: transparent;
            }

            .console-aside .nav .nav-main ul li a {
                display: block;
                text-indent: 0.875rem;
                height: 2.5rem;
                overflow: hidden;
                position: relative;
                padding-right: 0.625rem;
            }


            .console-aside .nav .nav-main ul li .text {
                padding-left: 1.25rem;
            }

            .console-aside .nav .nav-main ul li.active {
                background-color: #131B28;
                color: #fff !important;
            }

                .console-aside .nav .nav-main ul li.active .iconfont {
                    color: #fff !important;
                }

.console-body {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.console-header ~ .console-body {
    padding-top: 3.625rem;
}

.console-aside ~ .console-body {
    margin-left: 180px;
}

    .console-aside ~ .console-body .leo-table-content {
        overflow: auto;
    }

.console-body-iframe {
    width: 100%;
    height: 100%;
}
/*#endregion*/

/*#region renshi nav **/
.renshi-nav {
    width: 100%;
    height: 100%;
    overflow: auto;
}

    .renshi-nav ul li {
        border-bottom: 0;
        line-height: 35px;
        display: block;
    }

    .renshi-nav ul > li, .renshi-nav ul > li > a, .renshi-nav > ul > li > a > .iconfont {
        line-height: 49px;
    }

    .renshi-nav > ul > li {
        background: #2B3648;
    }

    .renshi-nav ul li a {
        color: #fff;
        border-bottom: 1px solid #354156a8;
        display: block;
    }

        .renshi-nav ul li a .iconfont {
            height: 49px;
            width: 40px;
            text-align: center;
        }

        .renshi-nav ul li a .txt {
            font-size: 16px;
        }

    .renshi-nav ul li li .iconfont {
        line-height: 35px;
        height: 35px;
        width: 35px;
    }

    .renshi-nav ul li .inactive {
    }

    .renshi-nav ul li .inactives {
        background: #1e9fffa8;
    }

        .renshi-nav ul li .inactives ~ ul {
            display: block;
        }

    .renshi-nav ul li li .inactives {
        background: #1e9fff63;
    }

        .renshi-nav ul li li .inactives span {
            transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -o-transform: rotate(90deg);
        }

    .renshi-nav ul li ul {
        display: none;
    }

    .renshi-nav ul li ul {
        background: #222b3b;
    }

        .renshi-nav ul li ul li, .renshi-nav ul li ul li a {
            line-height: 35px;
        }

            .renshi-nav ul li ul li ul {
                display: none;
            }

            .renshi-nav ul li ul li a {
                padding-left: 8px;
            }

            .renshi-nav ul li ul li ul li {
                background-color: #222b3b;
            }

                .renshi-nav ul li ul li ul li a {
                    color: #20262f;
                    padding-left: 43px;
                    color: #ffffffa8;
                }

                    .renshi-nav ul li ul li ul li a:hover {
                        color: #fff;
                    }
/*#endregion*/

/*#region login*/
.leo-login {
    background-image: url('../Images/login/login_bg.png');
    background-repeat: no-repeat;
    background-size: 60% 100%;
    width: 100%;
    height: 100%;
}

    .leo-login .leo-alert-danger {
        overflow: hidden;
        margin-top: 20px;
        border-radius: 0.125rem;
    }

.leo-login-logo {
    width: 12.5rem;
    margin: 1.875rem 2.5rem;
}

.leo-login-image {
    width: 30%;
    position: absolute;
    top: 50%;
    margin-top: -18%;
    left: 14%;
}

.leo-login-right {
    position: absolute;
    width: 40%;
    right: 0;
    top: 0;
    bottom: 0;
}

.leo-login .langauge {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    z-index: 100;
}

    .leo-login .langauge:hover .leo-dropdown-menu {
        display: block;
    }

    .leo-login .langauge a {
        border-radius: 0rem;
        padding: 0.625rem;
    }

    .leo-login .langauge .iconfont {
        font-size: 0.75rem;
        margin-left: 0.3125rem;
    }

        .leo-login .langauge .iconfont:before {
            content: "\e601";
        }

    .leo-login .langauge:hover .iconfont:before {
        content: "\e602";
    }

    .leo-login .langauge .leo-dropdown-menu {
        background-color: #2fb3ff;
        box-shadow: none;
        color: #fff;
        border-radius: 0rem;
    }

.leo-login-form {
    width: 80%;
    max-width: 400px;
    padding: 1.25rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -30%;
    margin-top: -250px;
}

    .leo-login-form h1 {
        padding: 1.25rem;
        text-align: center;
        font-size: 1.375rem;
        margin-bottom: 10px;
    }

    .leo-login-form .leo-input-row {
        margin-bottom: 26px;
        width: 100%;
        padding: 0;
    }

        .leo-login-form .leo-input-row label {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 48px;
            line-height: 48px;
            text-align: center;
            color: #888;
        }

        .leo-login-form .leo-input-row input {
            padding-left: 48px;
            border-radius: 0.125rem;
            height: 48px;
        }

            .leo-login-form .leo-input-row input:focus ~ label {
                color: #0071e6;
            }

    .leo-login-form .leo-btn-blue, .leo-login-form .leo-btn-gray {
        width: 100%;
        display: block;
        position: relative;
        cursor: pointer;
    }

        .leo-login-form .leo-btn-gray img {
            position: absolute;
            right: 0px;
            top: 8px;
        }

    .leo-login-form .forget {
        font-size: 0.75rem;
        font-weight: normal;
        text-align: right;
        display: block;
        color: #888;
    }

        .leo-login-form .forget:hover {
            text-decoration: underline;
        }

.leo-login .leo-footer {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: auto;
}

    .leo-login .leo-footer p {
        color: #888888;
        text-align: center;
        padding-bottom: 0.625rem;
    }

@media screen and (max-width:700px) {
    .leo-login {
        background-image: none;
        background-color: #4294ff;
    }

    .leo-login-image {
        display: none;
    }

    .leo-login-right {
        width: 100%;
    }

    .leo-login .langauge {
        top: 2.8125rem;
    }

    .leo-login-form h1 {
        color: #FFFFFF;
    }

    .leo-login-form .forget {
        color: #FFFFFF;
    }

    .leo-login .leo-footer p {
        color: #FFFFFF;
        padding: 0 1.25rem;
    }

        .leo-login .leo-footer p.browser {
            display: none;
        }

    .leo-login .leo-footer {
        background-color: transparent;
    }

    .leo-login .leo-login-form {
        margin-left: -45%;
        max-width: none;
        width: 90%;
    }
}
/*#endregion*/

/*#region tdc*/
.tdc-title {
    font-weight: bold;
    padding-bottom: 10px;
    text-align: center;
    font-size: 20px;
}

.tdc-brief {
    width: 100%;
    background-color: #f8f8f9;
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 10px;
}

.tdc-article p {
    line-height: 20px;
}

.tdc-article pre {
    border-radius: 5px;
    background-color: #e6e9ea;
    padding: 10px !important;
}
/*#endregion*/

/*#region doc*/
.doc-body {
    height: 100%;
    width: 100%;
}

.doc-nav {
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 4px #e1e5e9;
    padding: 14px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: fixed;
    background: #fff;
    padding: 9px 0;
    margin: 0;
}

    .doc-nav h1 {
        font-weight: bold;
    }

.doc-content {
}

.doc-nav ~ .doc-content {
    padding-top: 43px;
}

.doc-content {
    position: relative;
    height: 100%;
    width: 100%;
}

.doc-toolbar {
    background-color: #f9fafb;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 10px;
    position: absolute;
    top: 43px;
    left: 0;
    right: 0;
    z-index: 100;
}

.doc-toolbar-btns a {
    color: #09AAFF;
    padding: 0 10px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #83bdff;
    line-height: 32px;
    margin-top: 7px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
}

    .doc-toolbar-btns a:hover {
        color: #0071e6;
    }

    .doc-toolbar-btns a i {
        margin-right: 5px;
    }

.doc-search {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 100;
    width: 340px;
}

.doc-search-form {
    padding-left: 15px;
    padding-right: 54px;
    background: #f1f2f4;
    border-radius: 33px;
    width: 250px;
    margin-top: 6px;
    position: relative;
}

    .doc-search-form input {
        width: 100%;
        height: 38px;
        background: 0 0;
        border: 0;
        outline: 0;
        font-size: 12px;
    }

    .doc-search-form .iconfont {
        position: absolute;
        top: 0;
        height: 38px;
        display: block;
        line-height: 38px;
        font-size: 18px;
        font-weight: bold;
        right: 0;
        width: 38px;
        text-align: center;
        z-index: 200;
        cursor: pointer;
    }

.doc-search-sort {
    margin-top: 6px;
    position: relative;
    padding-left: 5px;
}

    .doc-search-sort .iconfont {
        font-size: 20px;
        line-height: 38px;
        padding: 0 5px;
        cursor: pointer;
    }

        .doc-search-sort .iconfont:hover, .doc-search-form .iconfont:hover {
            color: #0071e6;
        }

.doc-loc {
    line-height: 40px;
    position: relative;
}

.doc-loc-nav {
    color: #666;
}

    .doc-loc-nav a {
        padding: 0 5px;
    }

    .doc-loc-nav .iconfont {
        font-size: 14px;
        line-height: 30px;
    }

.doc-files {
    width: 100%;
    padding-top: 50px;
    overflow: auto;
}

.doc-loc-page a, .doc-loc-page span {
    padding: 0 5px;
}

.doc-checkall {
    padding-bottom: 10px;
}

    .doc-checkall span {
        padding-left: 5px;
    }

.doc-files {
    padding-top: 112px;
    overflow: auto;
    height: 100%;
}

.doc-file {
    width: 120px;
    height: 127px;
    float: left;
    margin: 4px 0 0 6px;
    text-align: center;
    border: 1px solid #fff;
    position: relative;
    border-radius: 5px;
    position: relative;
}

    .doc-file input {
        position: absolute;
        top: 5px;
        left: 5px;
        background-color: #f1f5fa;
        display: none;
    }

    .doc-file p {
        margin: 6px 5px 5px;
        font-size: 14px;
    }

    .doc-file.leo-active, .doc-file:hover {
        background-color: #f1f5fa;
        border: 1px solid #83bdff;
    }

        .doc-file.leo-active input, .doc-file:hover input {
            display: block;
        }

.doc-media {
    position: relative;
    margin: 9px auto 0;
    width: 84px;
    height: 84px;
    overflow: hidden;
}

    .doc-media .iconfont {
        font-size: 70px;
        color: #ffd659;
    }

    .doc-media img {
        width: 100%;
    }
/*#endregion*/

/*#region doc upload*/
.doc-upload {
    height: 100%;
    width: 100%;
}

.doc-uploadfiles {
    padding-bottom: 112px;
    overflow: auto;
    height: 100%;
}

.doc-uploadfile {
    width: 120px;
    float: left;
    margin: 4px 0 0 6px;
    text-align: center;
    position: relative;
    border-radius: 5px;
    border: 0.0625rem solid #ced4da;
}

    .doc-uploadfile .icon-shanchu {
        position: absolute;
        left: 0;
        top: 0;
        padding: 3px;
        cursor: pointer;
        z-index: 100;
    }

    .doc-uploadfile .icon-tijiaochenggong {
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        z-index: 100;
        color: #26d769;
        display: none;
    }

    .doc-uploadfile .progress {
        position: absolute;
        left: 0;
        bottom: 2px;
        right: 0;
        z-index: 100;
        width: 100%;
        background-color: #ddd;
        height: 18px;
        border-radius: 16px;
        display: none;
    }

        .doc-uploadfile .progress div {
            width: 0%;
            background-color: #26d769;
            height: 100%;
            border-radius: 16px;
            line-height: 20px;
            color: #ffffff;
        }

.doc-uploadmedia {
    position: relative;
    margin: 0px auto 0;
    width: 84px;
    height: 84px;
    overflow: hidden;
}

    .doc-uploadmedia .iconfont {
        font-size: 70px;
        color: #ffd659;
    }

    .doc-uploadmedia img {
        width: 100%;
    }

.doc-uploadfile input {
    border: none;
    border-top: 0.0625rem solid #ced4da;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
}

.doc-uploadplaceholder {
    width: 120px;
    margin: 4px 0 0 6px;
    text-align: center;
    position: relative;
    border-radius: 5px;
    padding-top: 10px;
}

    .doc-uploadplaceholder input {
        overflow: hidden;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
        opacity: 0;
        cursor: pointer;
    }

.doc-contextmenu {
    -moz-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.3);
    padding: 0.1875rem 0;
    min-height: 0;
    background-color: #245582;
    border-radius: 0.1875rem;
    position: fixed;
    left: 100px;
    top: 50px;
    width: 150px;
    color: #ffffff;
    padding: 8px 0;
    z-index: 1000;
}

    .doc-contextmenu a {
        color: #ffffff;
        display: block;
        font-size: 14px;
        padding: 8px;
    }

        .doc-contextmenu a:hover {
            color: #8b919e;
        }

        .doc-contextmenu a i {
            margin-right: 5px;
        }

    .doc-contextmenu span {
        border-bottom: 2px solid #697386;
        display: block;
        margin: 5px 8px;
    }

.doc-gtlist {
    padding: 20px 20px 0 20px;
    overflow: auto;
    height: 100%;
}

.doc-gtitem {
    position: relative;
    width: 60%;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.doc-gtitem-photo {
    position: absolute;
    left: 0;
    top: 0;
}

.doc-gtitem.leo-pull-right .doc-gtitem-photo {
    left: auto;
    right: 0;
}

.doc-gtitem-photo img {
    width: 45px;
    height: 45px;
    border-radius: 45px;
}

.doc-gtitem-photo p {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

    .doc-gtitem-photo p .leo-alert {
        padding: 5px 8px;
        display: block;
        margin-bottom: 4px;
    }

.doc-gtitem-photo a {
    display: block;
    padding: 10px;
}

.doc-gtitem-content {
    padding-left: 60px;
    min-height: 120px;
}

.doc-gtitem.leo-pull-right .doc-gtitem-content {
    padding-left: 0;
    padding-right: 60px;
    text-align: right;
}

.doc-gtitem-content .tool {
    padding-bottom: 10px;
}

    .doc-gtitem-content .tool span {
        line-height: 20px;
        color: #9b9ea0;
    }

    .doc-gtitem-content .tool a {
        line-height: 20px;
        padding: 0 10px;
    }

    .doc-gtitem-content .tool .leo-alert {
        padding: 5px 8px;
    }


.doc-article {
    padding-top: 54px;
    padding-left: 250px;
    overflow: auto;
}

.doc-article-item {
    margin: 15px 25px 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

    .doc-article-item h3 {
        font-size: 14px;
        color: #161616;
        font-weight: 500;
        width: 90%;
        padding-bottom: 10px;
    }

        .doc-article-item h3 a {
            color: #161616;
        }

.doc-article-summary {
    color: #6c6c6c;
    line-height: 20px;
}

.doc-article-time {
    font-size: 12px;
    font-weight: normal;
    color: #999;
    line-height: 30px;
}

    .doc-article-time span {
        margin-right: 10px;
    }

.doc-article-tool a {
    line-height: 20px;
    padding: 0 10px;
}

    .doc-article-tool a.icon-icon_chakan {
        font-weight: bold;
        font-size: 20px;
    }
/*#endregion*/


.card-small a {
    width: 46%;
    padding: 8%;
    margin-right: 4%;
}

    .card-small a:hover {
        color: #ffffff;
    }
