/* Body */
    body{
        position: fixed;
        width: 100%;
    }
/* Body */

/* Ul */
    ul{
        list-style: none;
        padding-inline-start: 0;
    }
/* Ul */

/* A */
    a{
        cursor: default;
    }
    a:hover{
        text-underline: none;
        text-decoration: none;
    }
/* A */

/* Table */
    tfoot ul{
        list-style: none;
    }
    tfoot ul>li{
        float: left;
    }
    tfoot ul>li>a{
        /*border: 1px solid #2e6da4;*/
        padding: 2px 5px 2px 0;
        border-right: 3px;
        /*margin-right: 15px;*/
    }
/* Table */

/* Input */
    input[type="text"],input[type="button"],button{
        border-radius: 3px!important;
    }
    input[type="checkbox"], input[type="radio"]{
        width: 15px!important;
    }
    input[type=checkbox] {
      margin-right: 5px;
      cursor: pointer;
      font-size: 14px;
      height: 15px;
      position: relative;
    }

    input[type=checkbox]:after {
      position: absolute;
      height: 15px;
      width: 15px;
      top: 0;
      left: 0;
      content: " ";
      line-height: 12px;
      background-color: #eaebec;
      display: inline-block;
      visibility: visible;
      text-align: center;
      border-radius: 3px;
      border: 1px solid #e1e1e1;
    }
    input[type=checkbox]:checked:after {
      content: "✓";
      font-size: 13px;
      background-color: #17a2b8;
      border: 1px solid #17a2b8;
      color: white;
      width: 15px;
    }
    input[type=radio] {
        margin-right: 5px;
        cursor: pointer;
        font-size: 14px;
        height: 15px;
        position: relative;
    }
    input[type=radio]:after {
        position: absolute;
        height: 15px;
        top: 0;
        left: 0;
        content: " ";
        background-color: #eaebec;
        color: #fff;
        display: inline-block;
        visibility: visible;
        padding: 0px 3px;
        border-radius: 50%;
        width: 15px;
    }
    input[type=radio]:checked:before {
        content: "✓";
        font-size: 13px;
        text-align: center;
        display: block;
        position: relative;
        top: 0px;
        left: 0px;
        width: 6px;
        height: 6px;
        background-color: #17a2b8;
        border: 1px solid #17a2b8;
        color: white;
        width: 15px;
        height: 15px;
        line-height: 12px;
        font-weight: 400;
        border-radius: 50%;
        z-index: 1;
    }
/* Input */

/* Checkbox */
    .checkbox{
        border: 1px solid #ced4da;
        display: inline-block;
        margin-left: -3px;
        padding: 10px 10px;
        border-radius: .25rem;
    }
    .checkbox>div{
        float: left;
        padding: 5px 10px;
    }
    .checkbox>div>hr{
        margin-top: 36px;
        margin-bottom: 0;
    }
    .checkbox>div>div{
        float: left;
        margin-right: 10px;
    }
    .checkbox>div>div:nth-child(1){
        width: 15px;
    }
    .checkbox>div>div:nth-child(2){
        width: 40px;
    }
    .checkbox>div>div:nth-child(3){
        width: 115px;
    }
    .checkbox>div>div:nth-child(4){
        padding-left: 50px;
    }
    .checkbox>div>div:nth-child(4)>div{
        min-width: 108px;
        margin-right: 15px;
        margin-top: 8px;
        float: left;
    }
/* Checkbox */

/* Radio */
    .radio{
        border: 1px solid #ced4da;
        padding: 2px 0 4px 10px;
        width: 100%;
        margin-top: -2px;
        border-radius: .25rem;
        display: block;
        color: #495057;
    }
/* Radio */

/* Font-size */
    .fz-30{
        font-size: 30px;
    }
    .fz-20{
        font-size: 20px;
    }
    .fz-14{
        font-size: 14px;
    }
    .fz-13{
        font-size: 13px;
    }
    .fz-12{
        font-size: 12px;
    }
/* Font-size */

/* Margin-top */
    .mt-30{
        margin-top: 20px;
    }
    .mt-15{
        margin-top: 15px;
    }
    .mt-10{
        margin-top: 10px;
    }
/* Margin-top */

/* Color */
    .red{
        color: #ff3178!important;
    }
    .yellow{
        color: #eea236;
    }
    .green{
        color: #07c160!important;
    }
    .gray{
        color: gray;
    }
    .blue{
        color: #4c9de4!important;
    }
    .white{
        color: white;
    }
/* Color */

/* Border-color */
    .bdl-blue{
        border-left: 7px solid #6392FF!important;
    }
    .bd-blue{
        background: #6392FF!important;
    }
    .bdl-red{
        border-left: 7px solid #FF6673!important;
    }
    .bd-red{
        background: #FF6673!important;
    }
    .bdl-yellow{
        border-left: 7px solid #EDE616!important;
    }
    .bd-yellow{
        background: #EDE616!important;
    }
    .bdl-green{
        border-left: 7px solid #22CCCC!important;
    }
    .bd-green{
        background: #22CCCC!important;
    }
    .bdl-orange{
        border-left: 7px solid #FE7B4C!important;
    }
    .bd-orange{
        background: #FE7B4C!important;
    }
    .bdl-purple{
        border-left: 7px solid #B07FFF!important;
    }
    .bd-purple{
        background: #B07FFF!important;
    }
    .bdl-bluish{
        border-left: 7px solid #29d3ff!important;
    }
    .bd-bluish{
        background: #29d3ff!important;
    }
    .bdl-aquamarine{
        border-left: 7px solid #87D236!important;
    }
    .bd-aquamarine{
        background: #87D236!important;
    }
/* Border-color */

/* Background-color */
    .bg-red{
        background: #eb6291!important;
    }
    .bg-blue{
        background: #29d3ff!important;
    }
    .bg-green{
        background: #00ce68!important;
    }
    .bg-color1{
        background: #87D236!important;
    }
    .bg-color2{
        background: #A37DE1!important;
    }
    .bg-color3{
        background: #FE7B4C!important;
    }
    .bg-color4{
        background: #4385FF!important;
    }
    .bg-color5{
        background: #FFBA43!important;
    }
    .bg-color6{
        background: #48A4F3!important;
    }
    .bg-color7{
        background: #f8f8f8!important;
    }
/* Background-color */

/* Button */
    button{
        outline: none!important;
    }
    .btn-sm{
        padding: 2px 5px;
        font-size: 12px;
    }
    .btn-md{
        padding: 1px 8px 4px 8px;
        font-size: 13px;
    }
    .btn-super{
        position: relative;
        line-height: 75px;
        text-align: center;
        display: flex;
/*        width: 172px;*/
        width: 100%;
        float: left;
        box-shadow: #dddddd -1px 3px 5px 0px;
        border-radius: 15px;
        overflow: hidden;
    }
    .btn-super:hover{
        text-decoration: none;
    }
    .btn-super>div:nth-child(1){
        width: 6%;
        text-align: right;
        font-size: 18px;
        border-left: 7px solid #6392FF;
        border-radius: 15px 0 0 15px;
        z-index: 2;
        color: white;
    }
    .btn-super>div:nth-child(2){
        width: 50%;
        text-align: center;
/*        padding-left: 15px;*/
        font-size: 16px;
        border-radius: 15px 0 0 15px;
        z-index: 2;
        color: white;
    }
    .btn-super>div:nth-child(3){
        width: 44%;
        font-size: 18px;
        border-radius: 0 5px 5px 0;
        box-sizing: unset;
        z-index: 1;
    }
    .btn-super .btn-right img{
        width: 70%;
    }
    .btn-super .btn-left{
        display: table;
    }
    .btn-super .btn-left img{
        width: 10px;
        position: absolute;
        left: 0px;
        top: 12px;
    }
    .btn-circle{
        border-radius: 50%!important;
        height: 120px;
        width: 120px;
        color: white;
        margin-right: 15px;
        outline: none!important;
    }
    .btn-pass{
        background: #2ecac8;
        border: 10px solid #dcf6f6;
    }
    .btn-reject{
        background: #ff8c7d;
        border: 10px solid #ffe8e5;
    }
    .btn-ellipse{
        border-radius: 20px;
        border: 1px solid #f2f8f9;
        font-size: 12px;
        padding: 8px 15px;
        outline: none!important;
    }
/* Button */

/* Modal */
    .modal-xs {
        max-width: 450px;
    }

    .modal-xs .modal-header{
        background: #f5f6f7;
        padding: 10px 15px;
    }


    .modal-xs .modal-header .close{
        line-height: 20px;
    }

    .modal-xs .modal-header h5{
        font-size: 16px;
    }
    .modal-xs .form-group{
        padding: 15px;
    }
    .modal-xs .form-group>div{
        float: left;
    }
    .modal-xs .form-group>div:nth-child(1){
        width: 30%;
        text-align: right;
        line-height: 28px;
        color: #777777;
    }
    .modal-xs .form-group>div:nth-child(2){
        width: 70%;
    }
    .modal-xs .form-group>div:nth-child(2)>input{
        padding: 2px 8px;
        border: 1px solid #ccc;
        outline: none;
    }
    .modal-xs .modal-footer{
        display: block;
        text-align: center;
        padding: 25px 10px;
    }
/* Modal */

/* Scrollbar */
    .table-box{
        overflow-x: scroll;
        margin-top: 30px;
    }
    .table-box::-webkit-scrollbar{
        display: block;
    }
    .table-box::-webkit-scrollbar, .right-content::-webkit-scrollbar {
        height: 10px;
    }
    /*<!--修改 滚动条的 下面 的 样式-->*/
    .table-box::-webkit-scrollbar-track, .right-content::-webkit-scrollbar-track {
      background-color: #e6eafd;
      -webkit-border-radius: 2em;
      -moz-border-radius: 2em;
      border-radius: 2em;
    }
    /*<!--修改 滑块 -->*/
    .table-box::-webkit-scrollbar-thumb, .right-content::-webkit-scrollbar-thumb {
      background-color: #d1d2d3;
      -webkit-border-radius: 2em;
      -moz-border-radius: 2em;
      border-radius: 2em;
    }
/* Scrollbar */

/* Login */
    .bg-img{
    	background: url('../images/dbj.png') no-repeat;
    	background-size:100% 100%;
    	background-attachment:fixed;
    }
    .login-img{
        position: fixed;
        transform: translate(-50%, -50%);
        top: 0%;
        left: 50%;
        border: 15px solid white;
        background: white;
        border-radius: 50%;
    }
    .login-img>img{
        width: 85px;
    }
    .login-tips{
        margin-top: 60px;
        text-align: center;
    }
    .login-tips>span{
        border-top: 1px solid #ccc;
        padding: 10px;
        font-size: 16px;
    }
    .login-box .input-group{
        padding-top: 20px;
    }
    .login-box .input-group span{
        background: #3399FF;
    }
    .login-box .input-group input{
        background: #F5F5F5;
        border: none;
        font-size: 13px;
    }
    .login-box .btn{
        background: #3399ff;
        margin-top: 10px;
    }
    .login-box .input-group img{
        width: 13px;
        height: 15px;
    }
    .login-box{
    	opacity: 0.99;
    	background: #fff;
    	position: fixed;
    	left: 23%;
    	top: 55%;
    	transform: translate(-50%, -50%);
    	border-radius: 3px;
    	width: 320px;
    	height: 280px;
    }
/* Login */

/* Foot */
    .foot{
        position: fixed;
        bottom: 0;
        height: 100px;
        padding: 12px;
        background: #f1f1f1cc;
        font-size: 12px;
    }
/* Foot */

/* Left */
    /*All*/
        .left{
            z-index: 1000;
            font-size: 20px;
            position: absolute;
            height: 100%;
            overflow-y: scroll;
            padding: 0;
            width: 13%;
            box-shadow: darkgrey -5px 7px 14px 0px;
        }
    /* nav  */
        .nav .active{
            background: #f1f1f1!important;
        }
        .nav .active>a{
            color: #000000!important;
        }
        .nav>ul{
            width: 100%;
        }
        .nav>ul>li{
            padding: 15px 0 10px 0;
            position: relative;
            border-bottom: 1px solid #f1f1f1;
            z-index: 1000;
        }
        .nav>ul>li:nth-child(1){
            padding: 10px 14px 10px 13px;
            position: fixed;
            z-index: 1001;
            background: white;
        }
        .nav>ul>li:nth-child(2){
            margin-top: 107px;
        }
        .nav>ul>li:hover{
            transition: all 0.2s linear 0.2s;
            background: #f5f5f5;
        }
        .nav>ul>li:nth-child(1)>a{
            text-align: center;
            padding-right: 0!important;
        }
        .nav>ul>li>a{
            color: #555555!important;
            display: block;
            padding-right: 16px;
            text-align: center;
            text-decoration: none;
        }
        .nav>ul>li>a:hover{
            color: #000000!important;
        }
        .nav>ul>li>a>i{
            font-size: 25px;
        }
        .nav>ul>li>a>.logo{
            width: 60px;
            height: 60px;
            margin-bottom: 5px;
        }
        .nav>ul>li>a>.book>img{
            width: 40px;
        }
        .nav>ul>li>a>div{
            margin-top: 3px;
            font-size: 13px;
        }
    /*Scrollbar*/
        .left::-webkit-scrollbar{
            display: none;
        }
        .left::-webkit-scrollbar, .right-content::-webkit-scrollbar {
          width: 8px;
        }
        /*<!--修改 滚动条的 下面 的 样式-->*/
        .left::-webkit-scrollbar-track, .right-content::-webkit-scrollbar-track {
          background-color: #e6eafd;
          -webkit-border-radius: 2em;
          -moz-border-radius: 2em;
          border-radius: 2em;
        }
        /*<!--修改 滑块 -->*/
        .left::-webkit-scrollbar-thumb, .right-content::-webkit-scrollbar-thumb {
          background-color: #d1d2d3;
          -webkit-border-radius: 2em;
          -moz-border-radius: 2em;
          border-radius: 2em;
        }
/* Left */

/* Right */
    /*All*/
        .right{
            width: 87%;
            position: absolute;
            left: 13%;
        }
    /*Head*/
        .right .right-head{
            z-index: 100;
            background: linear-gradient(to right,#3399ff,#3399ff);
            position: inherit;
            width: 100%;
            line-height: 60pt;
            height: 60pt;
            padding-right: 12px;
            box-shadow: darkgrey 1px 0px 10px 0px;
        }
        .right .out{
            color: white;
            text-decoration: none;
        }
        .right .out>img{
            width: 18px;
            margin-top: -5px;
        }
        .right .right-head ul>li{
            float: right;
            margin-left: 25px;
        }
        .right .right-head ul>li>a{
            text-decoration: none;
            color: white;
            font-size: 13pt;
        }
    /*Body*/
        .right .right-body{
            width: 100%;
            position: absolute;
            left: 0;
            top: 0;
            margin-bottom: 0;
            background: #f2f8f9;
        }
        .right .right-content{
            overflow-x: hidden;
            overflow-y: scroll;
            padding: 12px;
            margin-top: 60pt;
        }
        .right .right-box{
            border-radius: 3px;
            background: white;
            margin-right: 12px;
            float: left;
            padding: 15px 20px;
        }
        .right .right-box>div>div:nth-child(1){
            padding: 0 20px;
            font-size: 25px;
        }
        .right .right-box>div>div:nth-child(3){
            color: #aaa;
            font-size: 12px;
        }
        .right .right-box>span>div{
            display: inline-block;
            border-bottom: 1px solid #f1f1f1;
        }
        .right .right-box>span>div>div{
            float: left;
        }
        .right .right-box>span>div>div:nth-child(1){
            width: 12%;
            font-size: 13px;
        }
        .right .right-box>span>div>div:nth-child(2){
            width: 73%;
            font-size: 13px;
        }
        .right .right-box>span>div>div:nth-child(2)>p{
            margin-bottom: 3px;
        }
        .right .right-box>span>div>div:nth-child(2)>p:nth-child(2){
            width: 73%;
            font-size: 12px;
            color: #aaa;
            margin-bottom: 5px;
        }
        .right .right-box>span>div>div:nth-child(3){
            width: 15%;
            font-size: 12px;
        }
        .right .right-box>div>p:nth-child(odd){
            margin-bottom: 0;
        }
        .right .right-top>div{
            border-radius: 3px;
            padding: 10px 12px;
            background: #ffffff;
        }
        .right .right-top>div>div:nth-child(1){
            border-bottom: 1px solid #e1e1e1;
            padding-bottom: 10px;
        }
        .right .right-top>div>div:nth-child(1)>img{
            margin-top: -3px;
        }
        .right .right-top table tr>th{
            border-bottom: none!important;
        }
        .right .right-top table tr>th,.right .right-content table tr>td{
            text-align: center;
            vertical-align: middle;
            padding: 12px 10px;
        }
        .right .right-top table tr>th input, .right .right-content table tr>td>input,.right .right-content table tr>td>select,.right .right-content table tr>td>textarea{
            border: 1px solid #ffffff;
            width: 100%;
            outline: none;
            text-align: center;
        }
/* Right */

/* Task */
    .task-group{
        width: 100%;
        display: inline-block;
        padding: 25px 10px 0 10px;
    }
    .task-group>ul>li{
        cursor: default;
        list-style: none;
        float: left;
        margin-right: 15px;
        width: 108px;
        border-radius: 5px;
        padding: 15px 12px;
        text-align: center;
    }
    .task-group>ul>li:nth-child(1){
        background: #e9e4ff;
    }
    .task-group>ul>li:nth-child(2){
        background: #ffced6;
    }
    .task-group>ul>li:nth-child(3){
        background: #fceac4;
    }
    .task-group>ul>li:nth-child(4){
        background: #a8f3e7;
    }
    .task-group>ul>li:nth-child(5){
        background: #f0c7eb;
    }
    .task-group>ul>li:nth-child(6){
        background: #ffeb9f;
    }
    .task-group>ul>li:nth-child(7){
        background: #cff4df;
    }
    .task-group>ul>li:nth-child(8){
        background: #c5e9f2;
    }
    .task-group>ul>li:nth-child(9){
        background: #c7fac1;
    }
    .task-group>ul>li:last-child{
        padding: 5px 20px 5px 20px;
        text-align: center;
        font-size: 29px;
        color: #c1c2c3;
        background: #fafbfc;
    }
    .task-flow,.task-job{
        width: 100%;
        display: inline-block;
        padding: 15px 10px 0 10px;
    }
    .task-flow>form{
        padding-left: 0!important;
    }
    .task-flow .active{
        /*opacity: 0.98!important;*/
        color: white!important;
    }
    .task-flow>ul>li,.task-job>ul>li{
        list-style: none;
        float: left;
        color: #000000;
        margin-top: 1px;
        margin-bottom: 5px;
    }
    .task-flow>ul>li:nth-of-type(odd){
        font-size: 13px;
        font-weight: 500;
        border-radius: 5px;
        padding: 8px 10px 8px 8px;
        background: #f2f8f9;
        width: 114px;
        text-align: center;
    }
    .task-flow>ul>li:nth-of-type(even){
        padding: 3px;
    }
    .task-flow>ul>li>span{
        margin-top: -1px;
        float: left;
        margin-right: 2px;
    }
    .task-flow>ul>li>span>img{
        width: 18px;
    }
    /* .task-flow thead>tr:nth-of-type(odd){
        background: #f2f8f9!important;
    }*/
    .task-progress{
        padding: 5px 0 20px 0;
        line-height: 3px;
    }
    .task-progress .active{
        color: #08c8b5!important;
    }
    .task-progress .active>span{
        background: #c1f6f4;
    }
    .task-progress .active>span>span{
        background: #08cab5;
    }
    .task-progress>ul>li{
        float: left;
        line-height: 15px;
        padding: 0 20px 0 0;
        font-size: 13px;
    }
    .task-progress>ul>li>span{
        padding: 3px;
        border-radius: 50%;
        background: #dee3e7;
        width: 13px;
        height: 13px;
        display: inline-block;
        float: left;
        margin-right: 5px;
    }
    .task-progress>ul>li>span>span{
        border-radius: 50%;
        width: 7px;
        background: #b0b2b4;
        display: block;
        height: 7px;

    }
    .task-progress>ul>li:nth-of-type(even){
        color: #ccc;
    }
    .task-form{
        padding-bottom: 30px;
    }
    .task-form>form>div{
        display: flex;
        font-size: 13px;
    }
    .task-form>form>div>.task-form-title{
        width: 30%;
        float: left;
    }
    .task-form>form>div>.task-form-content{
        width: 80%;
        float: left;
    }
    .task-form>form>div>.task-form-content>input{
        border: 1px solid #cccccc;
        outline: none;
        padding: 3px 5px;
    }
    .task-job>ul>li{
        cursor: default;
        text-align: center;
        padding: 1px 20px 10px 25px;
        border-right: 1px solid #eeeeee;
    }
    .task-job>ul>a{
        cursor: default;
        line-height: 50px;
        width: 100px;
        padding: 10px;
        text-align: center;
        float: left;
    }
    .task-job>ul>li>a>span:nth-child(1){
        color: #000000;
    }
    .task-job>ul>li>a>span:nth-child(3){
        padding: 1px 10px;
        border-radius: 3px;
    }
    .task-job>ul>li:nth-child(1)>a>span:nth-child(3){
        background: #ecf5fe;
        color: #3684e3;
    }
    .task-job>ul>li:nth-child(2)>a>span:nth-child(3){
        background: #fff2f1;
        color: #fa584d;
    }
    .task-job>ul>li:nth-child(3)>a>span:nth-child(3){
        background: #edfbfa;
        color: #0779ff;
    }
    .task-job>ul>li:nth-child(4)>a>span:nth-child(3){
        background: #ebf6fb;
        color: #0cc88c;
    }
    .task-job>ul>li:nth-child(5)>a>span:nth-child(3){
        background: #fafbed;
        color: #03e1ef;
    }
    .task-job>ul>li:nth-child(6)>a>span:nth-child(3){
        background: #f5fbf2;
        color: #ffa45e;
    }
    .task-job>ul>li:nth-child(7)>a>span:nth-child(3){
        background: #fbf6ff;
        color: #da67dc;
    }
    .task-job>ul>li:nth-child(8)>a>span:nth-child(3){
        background: #ebf6fb;
        color: #a9c2f9;
    }
/* Task */

/* Page */
    .pagination {
        display: block;
        margin: 0; 
        border-radius: 4px;
    }
    .pagination > li {
        padding: 3px;
        display: inline;
    }
    .pagination > li > a, .pagination > li > span {
        border-radius: 15px;
        position: relative;
        float: left;
        padding: 3px 8px;
        margin-left: -1px;
        line-height: 1.42857143;
        color: #337ab7;
        text-decoration: none;
        background-color: #fff;
        border: 1px solid #ddd;
    }
    .pagination .active>span{
        background: #337ab7;
        color: white;
    }
/* Page */

/* Search */
    .search{
        padding-bottom: 20px;
    }
    .search>input{
        padding: 4px 15px;
        background: #f2f8f9;
        border: 1px solid #e1e1e1;
        font-size: 13px;
        margin-right: 10px;
        outline: none;
    }
    .search>button{
        margin-top: -2px;
    }
/* Search */

/* Form */
    .form-left{
        padding-right:30px;
        padding-left: 0px;
    }
    .form-right{
        border-left: 1px solid #e1e1e1;
        padding-left:30px;padding-right: 0px;
    }
    .form-right>p>input, .form-right>p>select{
        border-top: 1px solid #fff;
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #f1f1f1;
        outline: none;
    }
/* Form */

/* Autocomplete */
    .autocomplete-suggestions { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; border: 1px solid #999; background: #FFF; cursor: default; overflow: auto; -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); }
    .autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
    .autocomplete-no-suggestion { padding: 2px 5px;}
    .autocomplete-selected { background: #F0F0F0; }
    .autocomplete-suggestions strong { font-weight: bold; color: #000; }
    .autocomplete-group { padding: 2px 5px; }
    .autocomplete-group strong { font-weight: bold; font-size: 16px; color: #000; display: block; border-bottom: 1px solid #000; }
/* Autocomplete */

/* Progress */
    @-webkit-keyframes progress-bar-stripes {
      from {
        background-position: 40px 0;
      }
      to {
        background-position: 0 0;
      }
    }
    @-o-keyframes progress-bar-stripes {
      from {
        background-position: 40px 0;
      }
      to {
        background-position: 0 0;
      }
    }
    @keyframes progress-bar-stripes {
      from {
        background-position: 40px 0;
      }
      to {
        background-position: 0 0;
      }
    }
    .progress {
      height: 15px;
      margin-bottom: 0px;
      overflow: hidden;
      background-color: #f5f5f5;
      border-radius: 4px;
      -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
              box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    }
    .progress-bar {
      float: left;
      width: 0;
      height: 100%;
      font-size: 12px;
      line-height: 20px;
      color: #fff;
      text-align: center;
      background-color: #337ab7;
      -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
              box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
      -webkit-transition: width .6s ease;
           -o-transition: width .6s ease;
              transition: width .6s ease;
    }
    .progress-striped .progress-bar,
    .progress-bar-striped {
      background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      -webkit-background-size: 40px 40px;
              background-size: 40px 40px;
    }
    .progress.active .progress-bar,
    .progress-bar.active {
      -webkit-animation: progress-bar-stripes 2s linear infinite;
           -o-animation: progress-bar-stripes 2s linear infinite;
              animation: progress-bar-stripes 2s linear infinite;
    }
    .progress-bar-success {
      background-color: #5cb85c;
    }
    .progress-striped .progress-bar-success {
      background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    }
    .progress-bar-info {
      background-color: #5bc0de;
    }
    .progress-striped .progress-bar-info {
      background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    }
    .progress-bar-warning {
      background-color: #f0ad4e;
    }
    .progress-striped .progress-bar-warning {
      background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    }
    .progress-bar-danger {
      background-color: #d9534f;
    }
    .progress-striped .progress-bar-danger {
      background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    }
/* Progress */


/* Other */
    .clear{
        clear: both;
    }
    .select-none{
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .chbox{
        margin-left: 15px;
        margin-right: 15px;
        font-size: 20px;
    }
    .tips{
        background: #ff3178;
        border-radius: 5px;
        color: white;
        font-size: 12px;
        padding: 1px 5px!important;
        margin-top: 5px;
        margin-right: 10px;
        line-height: 17px;
    }
    .tip-number{
        position: absolute;
        top: 0;
        right: -3px;
        border-radius: 50%;
        height: 8px;
        width: 8px;
        background-color: red;
    }
    .choose{
        line-height: 20px;
        float: left;
        position: relative;
        padding: 2px 10px;
        background: #d5f7ff;
        border-radius: 3px;
        margin-right: 5px;
        margin-bottom: 15px;
    }
    .choose>span{
        position: absolute;
        top: -3px;
        right: -5px;
        padding: 0 2px;
        font-size: 12px;
        background: #ffffff;
        border-radius: 50%;
        line-height: 10px;
        cursor: default;
    }
    .mine-alert{
        position: fixed;
        top: 100px;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 1050;
    }
/* Other */

.list-unit>ul::-webkit-scrollbar {
    width: 8px;
}
.list-unit>ul::-webkit-scrollbar-track {
    background-color: #e6eafd;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}
.list-unit>ul::-webkit-scrollbar-thumb {
    background-color: #d1d2d3;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}
iframe::-webkit-scrollbar {
    width: 8px;
}
iframe::-webkit-scrollbar-track {
    background-color: #e6eafd;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}
iframe::-webkit-scrollbar-thumb {
    background-color: #d1d2d3;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}
.detail>div{padding-bottom: 10px;}
.detail>div:nth-of-type(even){margin-left: 20px;margin-bottom: 20px;}
.detail input, .task-flow select{margin-bottom: 15px;}
.upload-box{position: relative;display: inline-flex;min-height: 40px;}
.upload-box img{width:30%;margin-bottom: 10px;z-index: 100;}
.upload-input{position: absolute;opacity: 0;z-index: 10;left: 35%;bottom: 12%;width: 60px;}
.upload-btn{position: absolute;z-index: 1;left: 35%;bottom: 18%;}
.add{margin-top: -6px;margin-left: 10px;}
.place{background: #fafbfc;margin-top: 5px;border-radius: 5px;padding: 15px;}



.course{
    padding: 0 20px;
    margin-top: 30px;
}
.course>div{
    margin-bottom: 30px;
}
.board{
    position: absolute;
    width: 112%;
    height: 120%;
}
.text-gray{
    color: #a1a1a1;
}