﻿/*默认滑块初始隐藏*/
.capp-ui [type=range] {
    display: none;
}
/*顶部*/
#top {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    background-color: #25A;
    color: #d0eae9;
    font-size: 14px;
    border-bottom: 1px solid #036;
    min-width: 800px;
    user-select: none;
}

.top-logo {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 18px;
    width: 168px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
}

.top-side {
    margin-left: 168px;
    height: 50px;
}

    .top-side > div {
        display: flex;
        align-items: center;
        height: 50px;
    }

#top_left, #top_right {
    display: inline-flex;
    height: 50px;
    align-items: center;
}

#top_left {
    flex-grow: 1;
    position: relative;
}

    #top_left > a {
        position: relative;
        display: inline-flex;
        padding: 0px 25px;
        height: 100%;
        flex-direction: column;
        color: #FFF;
        justify-content: center;
        align-items: center;
    }

        #top_left > a:hover > ul {
            display: flex;
            flex-direction: column;
        }

            #top_left > a:hover > ul > li {
                display: inline-flex;
                width: 100%;
            }

                #top_left > a:hover > ul > li > a {
                    display: inline-flex;
                    width:100%;
                    height: 36px;
                    justify-content: center;
                    align-items: center;
                    font-size: 12px;
                    color:#555;
                }

                    #top_left > a:hover > ul > li > a:hover {
                        background-color: #EEE;
                        color: #07F;
                    }


        #top_left > a > ul {
            width: calc(100%);
            background-color: #FFF;
            position: absolute;
            color: #555;
            display: none;
            top: 50px;
            left: 0px;
            outline: 1px solid #888;
            box-shadow: 0px 2px 5px 1px;
            padding: 5px 1px 5px 1px;
            animation: zoomIn 150ms;
        }


        #top_left > a:hover {
            background-color: rgba(17,68,170,1);
        }

        #top_left > a > i {
            font-size: 18px;
        }

        #top_left > a > span {
            font-size: 12px;
        }

    #top_left > .has-child {
        padding-right: 36px;
    }


        #top_left > .has-child:after {
            font-family: YNSDN !important;
            font-style: normal;
            -webkit-font-smoothing: antialiased;
            content: "\E609";
            font-size: 16px;
            position: absolute;
            top: 18px;
            right: 14px;
        }

        #top_left > .has-child:hover:after {
            content: "\E608";
        }


#top_right {
    width: 360px;
    font-size: 12px;
    justify-content: flex-end;
    flex-grow: 0;
}

    #top_right > .login {
        display: inline-block;
        height: 50px;
        line-height: 50px;
        margin-right: 18px;
    }

.loginInf {
    position: relative;
    display: block;
    overflow: visible;
    cursor: default;
}

    .loginInf > .nick {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        padding: 0px 8px;
    }

    .loginInf:hover {
        background-color: rgba(17,68,170,1);
    }

    .loginInf > .nick:before {
        font-family: YNSDN;
        content: "\E91b";
        margin-right: 8px;
    }

    .loginInf > .nick:after {
        font-family: YNSDN;
        content: "\E609";
        margin-left: 8px;
    }

    .loginInf:hover > .nick:after {
        content: "\E608";
    }

    .loginInf > ul {
        display: none;
    }

.login:hover > .loginInf > ul {
    display: block;
    border: 1px solid #036;
    background-color: #25A;
}

.loginInf > ul > li {
    padding-left: 12px;
    cursor: pointer;
    line-height: 32px;
    height: 32px;
}

    .loginInf > ul > li:hover {
        color: #F90;
        background-color: rgba(17,68,170,1);
    }

    .loginInf > ul > li > i {
        margin-right: 8px;
    }


.btn-login {
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0px 25px;
    margin-left: 10px;
    border-radius: 2px;
    cursor: pointer;
    background-color: rgba(0,200,30,0.9);
    color: #FFF;
}

/*左边开始*/
#aside {
    position: fixed;
    top: 51px;
    left: 0px;
    height: calc(100% - 50px);
    background-color: #EEE;
    box-shadow: #DDD 0px 0px 20px 10px inset;
    border-bottom: 1px solid #e1e2e2;
    z-index: 100;
    user-select: none;
}

.nav-wrapper {
    width: 168px;
}


#main_menu {
    padding: 58px 0px 10px 0px;
}

    #main_menu > li {
        color: #668899;
        height: 48px;
        line-height: 48px;
        display: block;
        font-size: 14px;
        padding-left: 40px;
        cursor: pointer;
    }

        #main_menu > li:hover {
            color: #F50;
            box-shadow: #DDD 0px 0px 0px 1px inset;
        }

        #main_menu > li > a {
            display: block;
            height: 48px;
            line-height: 48px;
            color: #668899;
        }

            #main_menu > li > a:hover {
                color: #F50;
            }


    #main_menu > .act {
        background-color: #F3F4F4;
        color: #07F;
        background: linear-gradient(90deg, rgba(230,230,230,0),rgba(230,230,230,0.6) 20%, rgba(240, 240,240,1) 50%,rgba(255, 255, 255,1)) !important;
        cursor: default;
        box-shadow: none !important;
    }

/*主要区域*/
#main_content {
    position: absolute;
    top: 50px;
    display: block;
    min-height: calc(100% - 50px);
    width: calc(100% - 168px);
    margin-left: 168px;
    min-width: 1024px;
    background-color: #888F90;
}

.content-top {
    display: block;
    position: absolute;
    width: 100%;
    height: 58px;
    background-color: #F4F5F8;
    background-image: linear-gradient(to bottom, #EEEEEE,#F4F5F8);
    border-bottom: 1px solid #CCC /*rgba(34,85,172,1)*/;
    user-select: none;
}

    .content-top > span {
        display: inline-flex;
        position: relative;
        height: 100%;
        justify-content: center;
        align-items: flex-end;
        float: left;
        margin-left: 18px;
    }

        .content-top > span > span {
            display: inline-flex;
            height: 42px;
            line-height: 42px;
            justify-content: center;
            align-items: center;
        }

.ui-top-tabs {
    position: relative;
    float: left;
    margin-left: 20px;
    overflow: visible;
    height: 100%;
    display: inline-flex;
    justify-content: flex-end;
    align-items: flex-end;
}

    .ui-top-tabs > * {
        align-items: flex-start;
        position: relative;
        color: #668899;
        margin-right: 8px;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        display: inline-block;
        height: 43px;
        line-height: 42px;
        padding: 0px 18px;
        cursor: pointer;
        border-style: solid;
        border-color: rgba(0,0,0,0);
        border-top-width: 1px;
        border-left-width: 1px;
        border-right-width: 1px;
        border-bottom: none;
        font-size: 14px;
        margin-bottom: -1px;
    }

        .ui-top-tabs > *:hover {
            color: #09F;
            box-shadow: #DDD 0px 2px 2px 0px inset;
        }

        .ui-top-tabs > *.act {
            /* linear-gradient(0deg, rgba(255,255,255,1),rgba(200,200,200,0.3))*/
            background: #FFF;
            box-shadow: none !important;
            color: #07F !important;
            cursor: default !important;
            border-top: 1px solid #CCC;
            border-left: 1px solid #CCC;
            border-right: 1px solid #CCC;
        }

/**content-body**/
.content-body {
    position: relative;
    display: block;
    margin-top: 58px;
    color: #666;
    height: calc(100% - 58px);
    overflow-y: hidden;
}


.page-box {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

/*content-body-inner开始*/
.content-body > div {
    position: relative;
    display: block;
    text-align: center;
    padding: 0px;
    height: 100%;
    overflow-y: hidden;
}

.c-b-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 22px;
    height: 50px;
    background-image: linear-gradient(to bottom,#FFF, #F3F5F8);
    border-bottom: 1px solid #EEEEEE;
}

.c-b-bottom {
    position: absolute;
    bottom: 0px;
    padding: 8px 32px;
    color: #80989f;
}

.c-b-top > div {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    color: #80989f;
}

        .c-b-top > div span {
            display: inline-flex;
            align-items: center;
        }

        .c-b-top > div .color-inp {
            outline: 1px solid #d2e2e7;
            display: inline-block;
            width: 23px;
            height: 23px;
        }

        .c-b-top > div .color-inp {
            cursor: pointer;
        }

        .c-b-top > div > span {
            margin-right: 18px;
        }

            .c-b-top > div > span > span {
                margin-right: 8px;
            }

        .c-b-top > div input {
            outline: none;
            line-height: 25px;
            height: 25px;
        }


.c-b-main {
    position: relative;
    height: calc(100% - 50px);
    display: block;
    overflow-y:auto;
}

.c-b-w-set {
    position: absolute;
    display: block;
    height: 100%;
    background-image: linear-gradient(to bottom,#FFF 0%, #F5F5F5 5%,#EEF7F9);
    border-left: 1px solid #CCC;
    padding: 28px 18px;
    right: 0px;
    top: 0px;
    overflow-y:auto;
}

    .c-b-w-set > * {
        display:block;
        position:relative;
        width:100%;
    }

    .c-b-w-show {
        position: absolute;
        display: block;
        height: 100%;
        background-color: #FFF;
        left: 0px;
        top: 0px;
        overflow-y: auto;
    }
/*.wrap-pagination开始*/
.wrap-pagination span, .wrap-pagination a {
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0px 10px;
    box-sizing: border-box;
    margin-left: 8px;
}

.wrap-pagination a {
    color: #729fb2;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid #bed6e3;
    border-bottom-color: #accbd9;
    border-radius: 2px;
    background-color: #deeef4;
    background-image: linear-gradient(to bottom, #e6f2f7, #d0e6ee);
}



/*tools-popup开始*/

.tools-popup {
    display: block;
    position: absolute;
    width: calc(100% - 168px);
    height: 100%;
    top: 50px;
    right: 0px;
    animation: moveInRight 200ms;
}


    .tools-popup .popup-wrap-close {
        top: 13px;
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.cfm-dl {
    position:relative;
    display: flex;
    width:100%;
}
    .cfm-dl > * {
        display:inline-flex;
        align-items:center;
        height:39px;
    }
    .cfm-dl > dt {
        width:80px;
        justify-content:flex-end;
        padding-right:8px;
        color:#88A3AA;
    }
    .cfm-dl > dd {
        flex-grow:1;
        flex-shrink:1;
    }

    .cfm-dl  input {
        height:25px;
        line-height:25px;
        outline:none;
        width:100%;
    }