﻿/* Flex table
    Use the flex table classes when you need to keep related elements on the same row,
    but with flexible individual widths.
----------------------------------*/
.flextable {
    display: table;
    width: 100%;
}

    .flextable * {
        margin: 0;
    }

.cell {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
    padding-left:10px;
}

.cell-flex {
    display: table-cell;
    vertical-align: middle;
}

.cell-fit {
    width: 3000px;
    display: table-cell;
    vertical-align: middle;
    text-align:left;
}
.cell-fit-auto {
    width:auto!important;
    display: table-cell;
    vertical-align: middle;
}

.t-ell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* module
----------------------------------*/
/* normal(vertical) module */
.mod,
.mod-hd,
.mod-bd,
.mod-ft {
    position: relative;
}

/* horizontal module */
.mod-h {
}

    .mod-h > .mod-hd {
        display: table-cell;
        vertical-align: middle;
        /*padding-right: 9px;*/
        white-space: nowrap;
    }

    .mod-h > .mod-bd {
        display: table-cell;
        vertical-align: middle;
        width: 10000px;
    }

    .mod-h > .mod-ft {
        display: table-cell;
        vertical-align: middle;
        white-space: nowrap;
    }

/* card
----------------------------------*/
.card {
    /*position: relative;
    border: 1px solid;
    border-color: transparent;
    padding: 9px 12px;*/
}

    .card .card-hd {
        position: relative;
        zoom: 1;
    }

.card-h > .card-hd {
    display: table-cell;
    vertical-align: middle;
    padding-right: 9px;
    white-space: nowrap;
}

.card-h > .card-bd {
    display: table-cell;
    vertical-align: middle;
    width: 10000px;
}

.card-h > .card-ft {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
}
/* card end */

.tooltip-inner {
    max-width: 400px;
    padding: 0;
}

.tooltip-alert {
    padding: 8px 10px;
    font-weight: bolder;
    color: #A94442;
}


/* popup
----------------------------------*/
.popup-scrollable {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
    overflow-y: scroll;
}

.popup-close {
    display: block;
    background: url(/Assets/img/close.png) no-repeat;
    width: 22px;
    height: 22px;
    margin-right: 7px;
    cursor: pointer;
}

    .popup-close:hover {
        background: url(/Assets/img/close1.png) no-repeat;
    }

.popup-loading {
    background-image: url(/Assets/img/modal-tip-loading.gif);
    background-repeat: no-repeat;
    background-position: center center;
    width: 80px;
    height: 80px;
    margin: auto;
    padding: 15px;
    background-color: White;
    border-radius: 5px;
}

.popup-iframe {
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,0.3);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
}

.loadding {
    background-image: url(/Assets/img/loading.gif);
    background-repeat: no-repeat;
    background-position: center center;
    width: 20px;
    height: 20px;
    margin: auto;
}

.modal-tip {
    padding: 15px;
    background-color: White;
    border-radius: 5px;
}

.modal-tip-close {
    position: absolute;
    display: block;
    top: -15px;
    right: -15px;
    background: url(/Assets/img/modal-tip-close.png) no-repeat;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

    .modal-tip-close:hover {
        background: url(/Assets/img/modal-tip-close1.png) no-repeat;
    }

.modal-tip-loading {
    background-image: url(/Assets/img/modal-tip-loading.gif);
    background-repeat: no-repeat;
    background-position: center center;
    width: 80px;
    height: 80px;
    margin: auto;
}

.modal-tip-success {
    background-image: url(/Assets/img/modal-tip-success.gif);
    background-repeat: no-repeat;
    background-position: center center;
    width: 80px;
    height: 80px;
    margin: auto;
}

.modal-tip-warning {
    background-image: url(/Assets/img/modal-tip-warning.gif);
    background-repeat: no-repeat;
    background-position: center center;
    width: 80px;
    height: 80px;
    margin: auto;
}

.modal-tip-content {
    color: #575757;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block;
}

.modal-tip-footer {
    text-align: center;
}

.popup .icon-jinggao {
    font-size: 48px;
    color: #f39c12;
    height: 48px;
    width: 48px;
    margin-right: 10px;
}

/* jlist
----------------------------------*/
.jlist-items:before, .jlist-items:after {
    display: table;
    /*content: " ";*/
}

.jlist-items:after {
    clear: both;
}

.jlist-item-toggle,
.jlist-item-checker,
.jlist-checker-all,
.jlist-tree-icon {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .jlist-item-toggle:before {
        content: "\f0d7";
    }

.jlist-item-collapsed .jlist-item-toggle:before {
    content: "\f0da";
}

.jlist-item-leaf .jlist-item-toggle {
    visibility: hidden;
}

.jlist-checker-all:before,
.jlist-item-checker:before {
    content: "\f096";
}

.jlist-checker-all-checked:before,
.jlist-item-selected .jlist-item-checker:before {
    content: "\f046";
}

.jlist-item-partselected .jlist-item-checker:before {
    content: "\f14a";
}

.jlist-tree-icon:before {
    color: #F1C40F;
    content: "\f07c";
}

.jlist-item-leaf .jlist-tree-icon:before,
.jlist-item-collapsed .jlist-tree-icon:before {
    color: #F1C40F;
    content: "\f07b";
}

.jlist-item-selected {
    background: #ebeff0;
}
/* jlist end */

.jselect.jselect-default {
    display: inline-block;
    width: 220px;
    vertical-align: middle;
}

.jselect-select {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.jselect-pop {
    display: none;
    border: 1px solid #000;
    background: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    -webkit-background-clip: padding-box;
    padding: 6px 0;
    list-style: none;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.jselect.jselect-default .jselect-display {
    position: relative;
    background: white;
    cursor: text;
    border: 1px solid gainsboro;
    border-radius: 2px;
    line-height: 1.42857;
    padding: 6px 24px 6px 12px;
    box-sizing: border-box;
    cursor: pointer;
    min-height: 34px;
}

.jselect-display-single {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jselect-display-arrow {
    position: absolute;
    bottom: 0;
    right: 12px;
    top: 0;
    width: 4px;
}

    .jselect-display-arrow b {
        border-color: #999 transparent transparent transparent;
        border-style: solid;
        border-width: 4px 4px 0 4px;
        height: 0;
        left: 0;
        margin-left: -4px;
        margin-top: -2px;
        position: absolute;
        top: 50%;
        width: 0;
    }

.jselect .jselect-display-multiple .jlist-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .jselect .jselect-display-multiple .jlist-items .jlist-item {
        display: inline-block;
        margin-right: 9px;
    }

.jselect .jselect-display-multiple .jlist-empty {
    color: gray;
    margin-right: 9px;
}

.jselect-list {
    position: relative;
    overflow-y: auto;
}

    .jselect-list .jlist-items .jlist-item .jlist-item-checker {
        visibility: hidden;
    }

    .jselect-list .jlist-items .jlist-item-selected .jlist-item-checker {
        visibility: visible;
    }

        .jselect-list .jlist-items .jlist-item-selected .jlist-item-checker:before {
            content: "\f00c";
        }

.jselect-search {
    display: none;
    padding: 5px;
}

    .jselect-search .input-group {
        width: 100%;
    }

    .jselect-search .jselect-search-input {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

.jselect-pager {
    padding: 5px 15px !important;
}

/*.jselect {
    display: inline-block;
    width: 220px;
}

    .jselect .jselect-display {
        position: relative;
        background: white;
        cursor: text;
        border: 1px solid gainsboro;
        border-radius: 2px;
        height: 34px;
        line-height: 1.42857;
        padding: 6px 24px 6px 12px;
        box-sizing: border-box;
        cursor: pointer;
    }

.jselect-select {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.jselect-display-arrow {
    position: absolute;
    bottom: 0;
    right: 12px;
    top: 0;
    width: 4px;
}

    .jselect-display-arrow b {
        border-color: #999 transparent transparent transparent;
        border-style: solid;
        border-width: 4px 4px 0 4px;
        height: 0;
        left: 0;
        margin-left: -4px;
        margin-top: -2px;
        position: absolute;
        top: 50%;
        width: 0;
    }

.jselect .jselect-display-multiple {
}

.jselect-display-multiple .jlist-item {
    display: inline-block;
    margin-right: 9px;
}

.jselect-display-multiple .jlist-empty {
    color: gray;
    margin-right: 9px;
}*/
/*
.jlist-item:hover
{
    background-color: #f5f5f5;
}
*/

/* jpager
----------------------------------*/
/*.jpager .space a {
    border: none;
    margin-left: 0;
}

.jpager .jpager-item a {
    margin-right: 5px;
}*/
.pagination {
    padding: 10px 0;
}

    .pagination ul {
        box-shadow: none;
        -webkit-box-shadow: none;
    }

        .pagination ul > li {
            display: inline-block;
        }

.jpager-info {
    padding-left: 10px;
}
/* jpager end */


/* mod-modal */
.mod-modal {
    width: 600px;
    background: #fcfdfd;
    padding: 0;
    border: 0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

    .mod-modal > .mod-hd {
        height: 40px;
        line-height: 40px;
        background: #fff;
        font-size: 15px;
        font-weight: 400;
        color: #333;
        text-indent: 20px;
        border-bottom: 1px solid #dadada;
        -webkit-border-radius: 6px 6px 0 0;
        -moz-border-radius: 6px 6px 0 0;
        border-radius: 6px 6px 0 0;
        /*background-color: #f5f5f5*/
    }

    .mod-modal > .mod-bd {
        padding: 15px;
        position: relative;
        overflow: auto;
    }

    .mod-modal > .mod-ft {
        padding: 14px 15px 15px;
        margin-bottom: 0;
        text-align: right;
        background-color: #fff;
        border-top: 1px solid #ddd;
        -webkit-border-radius: 0 0 6px 6px;
        -moz-border-radius: 0 0 6px 6px;
        border-radius: 0 0 6px 6px;
        -webkit-box-shadow: inset 0 1px 0 #fff;
        -moz-box-shadow: inset 0 1px 0 #fff;
        box-shadow: inset 0 1px 0 #fff;
    }

    .mod-modal > .mod-bd > form {
        padding-top: 20px;
    }

.mod-modal-lg {
    width: 900px;
}

.card-modal {
    width: 600px;
    background: #fcfdfd;
    padding: 0;
    border: 0;
}

    .card-modal > .card-hd {
        height: 40px;
        line-height: 40px;
        background: #fff;
        font-size: 15px;
        font-weight: 400;
        color: #333;
        text-indent: 20px;
        border-bottom:1px solid #dadada;
        /*background-color: #f5f5f5*/
    }

    .card-modal > .card-bd {
        padding: 15px;
        position: relative;
        overflow: auto;
    }

    .card-modal > .card-ft {
        padding: 14px 15px 15px;
        margin-bottom: 0;
        text-align: right;
        background-color: #fff;
        border-top: 1px solid #ddd;
        -webkit-border-radius: 0 0 6px 6px;
        -moz-border-radius: 0 0 6px 6px;
        border-radius: 0 0 6px 6px;
        -webkit-box-shadow: inset 0 1px 0 #fff;
        -moz-box-shadow: inset 0 1px 0 #fff;
        box-shadow: inset 0 1px 0 #fff;
    }

.card-modal-lg {
    width: 900px;
}


body.popup-page {
    border: 0 none;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}


.list-tree {
}

    .list-tree .card-hd, .list-tree .card-bd {
        vertical-align: middle;
        padding: 0;
    }



.card-default {
    position: relative;
    border: .0625rem solid #e5e5e5;
    border-radius: .25rem;
    margin-bottom: 15px;
}



.alert-val {
    margin-bottom: 0;
    padding: 3px 5px;
    font-size: 14px;
}

.square-icon {
    font-size: 16px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.ell {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
}

.dib_vm {
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}



/*ul默认样式*/
.ul-default {
    list-style: none;
    padding: 0;
}


/*右侧dropdown-menu定位修复*/
.dropdown-right > .dropdown-menu {
    left: auto;
    right: 0;
}

/*调整划线a标签文字样式*/
a.text-l-t, a.text-l-t:hover {
    color: #aaa;
    text-decoration: line-through;
}


/*无头像avatar*/

.avatar {
    background: #70D5C3;
    color: #fff;
}

.avatar-text {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    font-size: 12px;
}

.avatar.thumb-xs > .avatar-text {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.avatar-detail {
    position: absolute;
    width: 220px;
    right: 15px;
    top: 40px;
    z-index: 20;
    display: none;
}

.avatar:hover .avatar-detail {
    display: inline-block;
}

/*tab页样式*/
.nav-inline li {
    display: inline-block;
    float: none;
}

.nav-underline li a, .nav-underline li a:focus {
    background: none;
    color: #7B8995;
    padding: 14px 15px;
}

    .nav-underline li a:hover {
        background: none;
        color: #333;
    }

.nav-underline li.active a, .nav-underline li.active a:focus, .nav-underline li.active a:hover {
    border-bottom: 2px solid #4B5395;
    color: #4B5395;
    background: none;
}

.muted {
    color: #aaa;
}

/*侧滑弹窗*/
.btn-no-border {
    border: none;
    box-shadow: none;
}

    .btn-no-border i {
        opacity: .6;
    }

    .btn-no-border:hover i {
        opacity: 1;
    }

.list-hover-btngroup .list-child-btngroup {
    visibility: hidden;
}

.list-hover-btngroup:hover .list-child-btngroup {
    visibility: visible;
}


/*评论*/
.comment-tree {
    border-bottom: 1px solid #EAEEF1;
}

    .comment-tree .mod-h > .mod-hd {
        vertical-align: top;
        padding-right: 20px;
    }

    .comment-tree a.name {
        margin-right: 10px;
        color: #111;
        text-decoration: none;
        cursor: pointer;
    }

        .comment-tree a.name:hover {
            color: #08c;
        }

    .comment-tree .detail {
        padding: 5px 0;
    }

    .comment-tree .quote {
        display: block;
        margin-top: 8px;
        margin-left: 10px;
        color: #aaa;
        border-left: 4px solid #dadada;
        padding-left: 8px;
    }

    .comment-tree .metion {
        color: #fa0;
        margin-right: 4px;
    }

    .comment-tree .comment-button {
        opacity: 0;
    }

    .comment-tree > li:hover .comment-button {
        opacity: 1;
    }

    .comment-tree .comment-button a {
        text-decoration: none;
    }

    .comment-tree li.morecomments {
        text-align: center;
    }

        .comment-tree li.morecomments a {
            text-decoration: none;
            color: #ccc;
        }

            .comment-tree li.morecomments a:hover {
                color: #08c;
            }

.post-comment {
    border: 1px solid #EAEEF1;
    border-radius: 4px 4px 0 0;
    height: 90px;
    overflow-y: auto;
    border-bottom: none;
    padding: 6px 10px;
    position: relative;
}

.post-comment-button {
    position: relative;
    border: 1px solid #EAEEF1;
    border-top: none;
    padding: 4px 10px;
    border-radius: 0 0 4px 4px;
}

    .post-comment-button a.icon {
        color: #aaa;
        font-size: 18px;
        margin-right: 10px;
    }

        .post-comment-button a.icon:hover {
            color: #333;
        }

.emo {
    width: 400px;
    height: 250px;
    overflow-y: auto;
    background: #f5f5f5;
    border: 1px solid #EAEEF1;
    position: absolute;
    bottom: 40px;
}

    .emo ul {
        list-style: none;
        margin: 10px;
    }

        .emo ul li {
            display: inline-block;
            width: 34px;
            padding: 5px;
            text-align: center;
        }

            .emo ul li:hover {
                background: #EAEEF1;
            }



.atmenu {
    width: 200px;
    height: 250px;
    padding: 10px;
    z-index: 100;
    background: #fff;
    border: 1px solid #dadada;
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: none
}

    .atmenu ul.jlist, .atmenu ul {
        padding-left: 2px;
        list-style: none;
        margin: 0;
        overflow-y: auto;
        max-height: 200px;
    }

        .atmenu ul li {
            margin-bottom: 10px;
            padding: 4px 4px;
        }

            .atmenu ul li.active {
                background: #eee;
                border-radius: 4px;
            }

            .atmenu ul li .mod-bd {
                padding: 0 5px;
            }

            .atmenu ul li.active {
                background: #eee;
                border-radius: 4px;
            }

    .atmenu img {
        width: 36px;
        height: 36px;
        max-width: 36px;
        display: block;
        border-radius: 20px;
    }

    .atmenu a {
        color: #666;
    }

        .atmenu a:hover {
            color: #fa0;
            text-decoration: none;
        }
/*.atmenu li.jlist-item img{width:25px;}*/


/*日志*/

.log-tree li {
    padding: 10px 0;
    margin-left: 20px;
}

    .log-tree li.log-date {
        margin-left: 0;
        font-size: 15px;
        padding: 10px 0;
        color: #333;
    }

    .log-tree li .mod-bd, .log-tree li .mod-hd {
        vertical-align: top;
    }



/*hover变色*/

.hover-light:hover {
    background: #fafaff;
}


/*项目卡片右上角圆点*/

.relative {
    position: relative;
}

.new-mes-dot {
    width: 8px;
    height: 8px;
    border-radius: 200px;
    background: #F05050;
    position: absolute;
    right: -4px;
    top: -4px;
}


/*进度条*/
.progress-short {
    width: 60px;
    margin: 0;
    height: 5px;
}
/*任务项li*/
.eventLi {
    padding: 4px 6px;
    margin-bottom: 4px;
    cursor: pointer;
}
/*任务一览列表*/

.btn-hide-group {
    visibility: hidden;
}
/*分隔线*/
.divider-line {
    margin-top: 10px;
    border-bottom: 1px #eaeaea dashed;
}

.hover-light:hover .btn-hide-group {
    visibility: visible;
}

.i-checks {
    cursor: pointer;
}

input[type=text]::-ms-clear {
    display: none;
}

.color-warning {
    color: #fa0;
}
/*项目列表激活*/
.proj-progress li.active {
    background: #eaeaea;
    color: #fff;
}


/*jlist加减号*/

.plus-minus .jlist-item-toggle:before {
    content: "\f056";
}

.plus-minus .jlist-item-toggle {
    font-size: 14px;
    color: #A3ACB3;
}

.plus-minus .jlist-item-collapsed .jlist-item-toggle:before {
    content: "\f055";
}

/*BS3统一表单间距*/

.form-group {
    margin-bottom: 5px;
}


/*里程碑横向轴*/
.milestone-panel-line {
    background: #eee;
    height: 4px;
    border-radius: 4px;
}

.milestone-panel {
    list-style: none;
    padding: 0 0 8px 0;
    margin: -8px 0 0 0;
    overflow-x: auto;
    white-space: nowrap;
}

    .milestone-panel li {
        display: inline-block;
        text-align: center;
        margin-right: 30px;
        font-size: 12px;
        vertical-align: top;
    }

        .milestone-panel li a {
            border-radius: 200px;
            width: 12px;
            height: 12px;
            padding: 0;
            display: block;
            margin: 0 auto;
        }

.poparr-up {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #81ba26;
    margin: 0 auto;
    padding-top: 5px;
}

.milestone-text {
    background: #81ba26;
    color: #fff;
    font-size: 12px;
    padding: 10px 10px 4px 10px;
    text-align: left;
}

    .milestone-text h6 {
        color: #fff;
        margin: 0;
        text-align: center;
    }

.muted .poparr-up {
    border-bottom: 6px solid #DEE6EA;
}

.muted .milestone-text {
    background: #DEE6EA;
    color: #555;
    text-align: left;
}

    .muted .milestone-text h6 {
        color: #555;
        text-align: center;
    }

.btn-muted {
    background: #DEE6EA;
    border: none;
}

.danger .poparr-up {
    border-bottom: 6px solid #d84c47;
}

.danger .milestone-text {
    background: #d84c47;
    color: #fff;
    text-align: left;
}

    .danger .milestone-text h6 {
        text-align: center;
    }


/*修改申办方项目首页右上角待办提醒样式*/
.projlink {
    background: #fff !important;
    color: #555 !important;
    cursor: default;
}

/*点赞hover面板*/

.thumb-up-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.thumb-up-panel li {
    display: inline-block;
}

.thumb-up-btn {
    background: #545ca6;
}

    .thumb-up-btn:hover {
        background: #3E4589;
    }

    .thumb-up-btn.disabled {
        background: #D7E5E8;
        cursor: text
    }

.avatar.bg-light {
    background: #D7E5E8;
    color: #788188;
}
/*人员名片*/
.avatar-detail {
    position: absolute;
    width: 320px;
    left: 40px;
    top: 20px;
    z-index: 20;
}

/*评价打星*/

.fa-star.active {
    color: #face00;
    cursor: pointer;
}

.fa-star.disabled {
    color: #d7e5e8;
    cursor: pointer;
}

.fa-a {
    line-height: 1;
    display: inline-block;
    font-style: normal;
    font-weight: 800;
    width: 18px;
    font-size: 15px;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

    .fa-a.active {
        color: #face00;
    }

    .fa-a.disabled {
        color: #d7e5e8;
    }

/*修复FF下header footer没高度*/
.header,
.footer {
    min-height: 50px;
    padding: 0 15px;
    height: 50px;
}

/*无内容提示*/
.no-content {
    text-align: center;
    font-size: 16px;
}

    .no-content i.fa-coffee {
        font-size: 90px;
        color: #DDE0E3;
        margin-bottom: 20px;
        margin-top: 220px;
    }

.no-content {
    text-align: center;
    font-size: 16px;
}

/*垂直分割线*/
.divider-line-v {
    height: 2px;
    background: #dadada;
    border-bottom: 1px solid #f8f8f8;
    margin-top: 10px;
    margin-bottom: 5px;
}

/*加载效果*/
@-moz-keyframes bounceDelay {
    0%,100%,80% {
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes bounceDelay {
    0%,100%,80% {
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceDelay {
    0%,100%,80% {
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.page-spinner-bar {
    position: absolute;
    z-index: 2200;
    width: 100px;
    top: 40%;
    left: 50%;
    margin-left: -55px;
    text-align: center;
}

    .page-spinner-bar > div {
        background: #4bccd8;
        border-radius: 100% !important;
        display: inline-block;
        margin: 0 5px;
        width: 18px;
        height: 18px;
        -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
        -moz-animation: bounceDelay 1.4s infinite ease-in-out;
        -o-animation: bounceDelay 1.4s infinite ease-in-out;
        animation: bounceDelay 1.4s infinite ease-in-out;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    .page-spinner-bar .bounce1 {
        -webkit-animation-delay: -.32s;
        -moz-animation-delay: -.32s;
        -o-animation-delay: -.32s;
        animation-delay: -.32s;
    }

    .page-spinner-bar .bounce2 {
        -webkit-animation-delay: -.16s;
        -moz-animation-delay: -.16s;
        -o-animation-delay: -.16s;
        animation-delay: -.16s;
    }


/*patrick 2017-6-19*/


.hbox-fit {
    display: table !important;
    border-spacing: 0;
    width: 100%;
}

    .hbox-fit > * {
        display: table-cell;
        vertical-align: middle;
        white-space: nowrap;
    }

        .hbox-fit > *.col-fit {
            width: 3000px;
        }

        .hbox-fit > *.m-a-0 > * {
            margin: 0px;
        }

.cell-ell {
    display: table;
    table-layout: fixed;
    width: 100%;
}

    .cell-ell > * {
        display: table-cell;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }


.jselect.jselect-default {
    display: inline-block;
    width: 220px;
    vertical-align: middle;
}

.jselect-select {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.jselect-pop {
    display: none;
    border: 1px solid #000;
    background: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    -webkit-background-clip: padding-box;
    padding: 6px 0;
    list-style: none;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

    .jselect-pop .pagination {
        margin: 0;
    }

.jselect.jselect-default .jselect-display {
    position: relative;
    background: white;
    cursor: text;
    border: 1px solid gainsboro;
    border-radius: 2px;
    line-height: 1.42857;
    padding: 6px 24px 6px 12px;
    box-sizing: border-box;
    cursor: pointer;
    min-height: 34px;
}

.jselect-display-single {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jselect-display-arrow {
    position: absolute;
    bottom: 0;
    right: 12px;
    top: 0;
    width: 4px;
}

    .jselect-display-arrow b {
        border-color: #999 transparent transparent transparent;
        border-style: solid;
        border-width: 4px 4px 0 4px;
        height: 0;
        left: 0;
        margin-left: -4px;
        margin-top: -2px;
        position: absolute;
        top: 50%;
        width: 0;
    }

.jselect .jselect-display-multiple .jlist-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .jselect .jselect-display-multiple .jlist-items .jlist-item {
        display: inline-block;
        margin-right: 9px;
    }

.jselect .jlist-items .jlist-item a {
    color: #333;
    text-decoration: none;
    margin: 1px 0;
    padding: 8px 0px;
}

.jselect .jselect-display-multiple .jlist-empty {
    color: gray;
    margin-right: 9px;
}

.jselect-list {
    position: relative;
    overflow-y: auto;
}

    .jselect-list .jlist-items .jlist-item .jlist-item-checker {
        visibility: hidden;
    }

    .jselect-list .jlist-items .jlist-item-selected .jlist-item-checker {
        visibility: visible;
    }

        .jselect-list .jlist-items .jlist-item-selected .jlist-item-checker:before {
            content: "\f00c";
        }

.jselect-search {
    display: none;
    padding: 5px;
}

    .jselect-search .input-group {
        width: 100%;
    }

    .jselect-search .jselect-search-input {
        width: 100%;
    }


.datepicker-container {
    background-color: #fff;
    direction: ltr;
    font-size: 12px;
    left: 0;
    line-height: 30px;
    position: fixed;
    top: 0;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 210px;
    z-index: -1;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

    .datepicker-container::before,
    .datepicker-container::after {
        border: 5px solid transparent;
        content: " ";
        display: block;
        height: 0;
        position: absolute;
        width: 0;
    }

.datepicker-dropdown {
    border: 1px solid #ccc;
    -webkit-box-shadow: 0 3px 6px #ccc;
    box-shadow: 0 3px 6px #ccc;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    z-index: 1;
}

.datepicker-inline {
    position: static;
}

.datepicker-top-left,
.datepicker-top-right {
    border-top-color: #39f;
}

    .datepicker-top-left::before,
    .datepicker-top-left::after,
    .datepicker-top-right::before,
    .datepicker-top-right::after {
        border-top: 0;
        left: 10px;
        top: -5px;
    }

    .datepicker-top-left::before,
    .datepicker-top-right::before {
        border-bottom-color: #39f;
    }

    .datepicker-top-left::after,
    .datepicker-top-right::after {
        border-bottom-color: #fff;
        top: -4px;
    }

.datepicker-bottom-left,
.datepicker-bottom-right {
    border-bottom-color: #39f;
}

    .datepicker-bottom-left::before,
    .datepicker-bottom-left::after,
    .datepicker-bottom-right::before,
    .datepicker-bottom-right::after {
        border-bottom: 0;
        bottom: -5px;
        left: 10px;
    }

    .datepicker-bottom-left::before,
    .datepicker-bottom-right::before {
        border-top-color: #39f;
    }

    .datepicker-bottom-left::after,
    .datepicker-bottom-right::after {
        border-top-color: #fff;
        bottom: -4px;
    }

    .datepicker-top-right::before,
    .datepicker-top-right::after,
    .datepicker-bottom-right::before,
    .datepicker-bottom-right::after {
        left: auto;
        right: 10px;
    }

.datepicker-panel > ul {
    margin: 0;
    padding: 0;
    width: 102%;
}

    .datepicker-panel > ul::before,
    .datepicker-panel > ul::after {
        content: " ";
        display: table;
    }

    .datepicker-panel > ul::after {
        clear: both;
    }

    .datepicker-panel > ul > li {
        background-color: #fff;
        cursor: pointer;
        float: left;
        height: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center;
        width: 30px;
    }

        .datepicker-panel > ul > li:hover {
            background-color: #e5f2ff;
        }

        .datepicker-panel > ul > li.muted,
        .datepicker-panel > ul > li.muted:hover {
            color: #999;
        }

        .datepicker-panel > ul > li.highlighted {
            background-color: #e5f2ff;
        }

            .datepicker-panel > ul > li.highlighted:hover {
                background-color: #cce5ff;
            }

        .datepicker-panel > ul > li.picked,
        .datepicker-panel > ul > li.picked:hover {
            color: #39f;
        }

        .datepicker-panel > ul > li.disabled,
        .datepicker-panel > ul > li.disabled:hover {
            background-color: #fff;
            color: #ccc;
            cursor: default;
        }

            .datepicker-panel > ul > li.disabled.highlighted,
            .datepicker-panel > ul > li.disabled:hover.highlighted {
                background-color: #e5f2ff;
            }

        .datepicker-panel > ul > li[data-view="years prev"],
        .datepicker-panel > ul > li[data-view="year prev"],
        .datepicker-panel > ul > li[data-view="month prev"],
        .datepicker-panel > ul > li[data-view="years next"],
        .datepicker-panel > ul > li[data-view="year next"],
        .datepicker-panel > ul > li[data-view="month next"],
        .datepicker-panel > ul > li[data-view="next"] {
            font-size: 18px;
        }

        .datepicker-panel > ul > li[data-view="years current"],
        .datepicker-panel > ul > li[data-view="year current"],
        .datepicker-panel > ul > li[data-view="month current"] {
            width: 150px;
        }

    .datepicker-panel > ul[data-view="years"] > li,
    .datepicker-panel > ul[data-view="months"] > li {
        height: 52.5px;
        line-height: 52.5px;
        width: 52.5px;
    }

    .datepicker-panel > ul[data-view="week"] > li,
    .datepicker-panel > ul[data-view="week"] > li:hover {
        background-color: #fff;
        cursor: default;
    }

.datepicker-hide {
    display: none;
}

    .icalendar {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  width: 240px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
}

.icalendar li {
    list-style:none;
} 
.icalendar select {
    width: auto;
    background-color: none;
    border: none;
    height:auto;
    padding:0;
}

        .icalendar input {
            width: auto;
            background-color: none;
            border: none;
            line-height: auto;
        }

        .icalendar * {
            line-height: 1.42857143 !important;
            box-sizing: border-box;
        }


            .icalendar .close {
                float: none;
                font-size: inherit;
                font-weight: inherit;
                line-height: inherit;
                color: inherit;
                text-shadow: inherit;
                opacity: inherit;
            }

    .icalendar .left .year select {
            width: 80px;
        } 
        
        
        .icalendar .head {
            background: #0276B1;
            text-align: center;
            color: #fff;
            padding: 8px 0;
            font-size: 12px;
            letter-spacing: .05em;
            position: relative;
        }
.icalendar .head a {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #fff;
  text-decoration: none;
  transition: all .5s;
  opacity: .4;
  letter-spacing: .1em;
}
.icalendar .head a:hover {
  opacity: 1;
}
.icalendar .detail {
  background: #08c;
  text-align: center;
  color: #fff;
  padding: 6px 0;
  height: 90px;
  font-size: 14px;
  overflow: visible;
}
.icalendar .detail .day {
  font-size: 24px;
  font-family: Verdana;
  font-weight: 700;
}
.icalendar .detail .month,
.icalendar .detail .year {
  font-size: 12px;
}





.icalendar .detail .month select,
.icalendar .detail .year select {
  color: #fff;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  margin: 0 5px;
  cursor: pointer;
}
.icalendar .detail .month select option,
.icalendar .detail .year select option {
  color: #333;
}
.icalendar .detail .month strong,
.icalendar .detail .year strong {
  width: 12px;
  height: 12px;
  background: #08c;
  display: inline-block;
  position: relative;
  left: -12px;
}
.icalendar .detail .month a,
.icalendar .detail .year a {
  color: #fff;
  opacity: .4;
  transition: all .5s;
}
.icalendar .detail .month a i,
.icalendar .detail .year a i {
  font-size: 13px;
}
.icalendar .detail .month a.next,
.icalendar .detail .year a.next {
  margin-left: -20px;
}
.icalendar .detail .month a:hover,
.icalendar .detail .year a:hover {
  opacity: 1;
}
.icalendar .detail.time {
  padding: 15px;
}
.icalendar .detail.time .hour,
.icalendar .detail.time .minute {
  display: inline-block;
  width: 45%;
}
.icalendar .detail.time .hour span.num,
.icalendar .detail.time .minute span.num {
  font-family: Verdana;
  letter-spacing: .1em;
  font-size: 36px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  opacity: .3;
  transition: all .2s;
}
.icalendar .detail.time .hour span.num.active,
.icalendar .detail.time .minute span.num.active {
  opacity: 1;
}
.icalendar .detail.time .hour .adjust-tool,
.icalendar .detail.time .minute .adjust-tool {
  display: inline-block;
  vertical-align: middle;
  padding: 4px;
}
.icalendar .detail.time .hour .adjust-tool a,
.icalendar .detail.time .minute .adjust-tool a {
  display: block;
  padding: 1px 1px;
  color: #fff;
  opacity: .2;
  border-radius: 2px;
  transition: all .5s;
}
.icalendar .detail.time .hour .adjust-tool a:hover,
.icalendar .detail.time .minute .adjust-tool a:hover {
  background: rgba(0, 0, 0, 0.2);
  opacity: .8;
}
.icalendar .detail.time .divider {
  display: inline-block;
  width: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  vertical-align: middle;
  margin-left: -5px;
}
.icalendar .body {
  min-height: 150px;
}
.icalendar .body .month {
  text-align: center;
  padding: 8px 0 0 0;
  font-size: 12px;
}
.icalendar .body .weeks {
  font-family: Arial;
  letter-spacing: -0.3em;
  font-size: 0;
  padding: 5px 0;
  border-bottom: 1px solid #f2f2f2;
}
.icalendar .body .weeks > div {
  display: inline-block;
  margin: 0;
  width: 14.28%;
  text-align: center;
}
.icalendar .body .weeks > div strong {
  font-weight: 300;
  font-size: 12px;
  font-family: Sim sun;
  color: #333;
}
.icalendar .body .days {
  font-family: Arial;
  letter-spacing: -0.3em;
  font-size: 0;
}
.icalendar .body .days > div {
  display: inline-block;
  margin: 0;
  width: 14.28%;
  padding: 1px 0;
  text-align: center;
  cursor: pointer;
}
.icalendar .body .days > div strong {
  display: block;
  width: 22px;
  height: 22px;
  line-height: 20px;
  margin: 2px auto;
  border-radius: 50%;
  font-weight: 300;
  font-size: 12px;
  font-family: Tahoma;
  transition: all .5s;
  letter-spacing: 0px;
}
.icalendar .body .days > div.muted {
  color: #ccc;
}
.icalendar .body .days > div.active strong {
  background: #08c;
  color: #fff;
}
.icalendar .body .days > div.disabled {
  cursor: default;
}
.icalendar .body .days > div.disabled strong {
  color: #ccc;
  background: #f2f2f2;
}
.icalendar .body .days > div:hover strong {
  background: #f0f0f0;
}
.icalendar .body .days > div.active:hover strong {
  background: #0275AF;
}
.icalendar .body .days > div.disabled:hover strong {
  background: #f2f2f2;
}
.icalendar .foot {
  padding: 10px 0 15px 0;
}
.icalendar .foot .buttons {
  text-align: right;
  padding: 0 10px;
}
.icalendar .foot .buttons a {
  font-size: 12px;
  font-family: Sim sun;
  color: #888;
  text-decoration: none;
  margin: 2px;
  padding: 6px 8px;
  transition: all .5s;
  border-radius: 2px;
}
.icalendar .foot .buttons a:hover {
  background: #f0f0f0;
  color: #000;
}
.icalendar select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 10px;
  background: url(/Assets/img/calendararr.png) no-repeat center right !important;
}
.icalendar select option {
  background: #fff;
  color: #333;
}
.icalendar select::-ms-expand {
  display: none;
}
.icalendar a {
  cursor: pointer;
}
.icalendar.lite .detail {
  overflow: visible;
  padding: 10px 10px;
  height: 45px;
}

    .icalendar.lite .detail .year .year-list {
        margin: 0;
        padding: 0;
        position: absolute;
        background: #fff;
        color: #333;
        left: 0;
        right: 0;
        top: 22px;
        overflow-y: auto;
        max-height: 210px;
        border: 1px solid #08c;
    }

    .icalendar.lite .detail .year .year-list li {
        padding:5px;
        font-size:13px;
    }

        .icalendar.lite .detail .year .year-list li.active {
            color: #1e90ff;
        }

        .icalendar.lite .detail .year .year-list li:hover {
            background: #1e90ff;
            color: #fff;
        }



.icalendar.lite .detail .left {
  float: left;
}
.icalendar.lite .detail .right {
  float: right;
}
.icalendar.lite .detail .year span,
.icalendar.lite .detail .month span {
  font-size: 13px;
  margin: 0 5px;
}
.icalendar.lite .detail .year span select,
.icalendar.lite .detail .month span select {
  background: none;
  border: none;
  color: #fff;
}
.icalendar.lite .detail .year span select option,
.icalendar.lite .detail .month span select option {
  color: #333;
}
.icalendar.lite .detail .year span select:focus,
.icalendar.lite .detail .month span select:focus {
  outline: none;
}
.icalendar.lite .time-long {
  padding: 0 10px;
  margin: 5px 0;
  text-align: right;
}
.icalendar.lite .time-long i {
  color: #e0e0e0;
  margin-top: 4px;
  float: left;
}
.icalendar.lite .time-long span.txt {
  float: left;
  margin-left: 5px;
  color: #888;
}
.icalendar.lite .time-long > span {
  vertical-align: top;
}
.icalendar.lite .time-long span.hour,
.icalendar.lite .time-long span.minute {
  display: inline-block;
  position: relative;
}
.icalendar.lite .time-long span.hour strong,
.icalendar.lite .time-long span.minute strong {
  position: absolute;
  width: 12px;
  height: 16px;
  display: block;
  background: #fff;
  right: 2px;
  top: 3px;
}
.icalendar.lite .time-long span.hour select,
.icalendar.lite .time-long span.minute select {
  width: 42px;
  background: none;
  border: none;
  font-size: 16px;
  font-family: Verdana;
  font-weight: 500;
}
.icalendar.lite .time-long span.hour select:focus,
.icalendar.lite .time-long span.minute select:focus {
  border: none;
  outline: none;
}
.icalendar.lite .time-long span.minute {
  margin-left: -6px;
}
.icalendar.lite .time-long span.divider {
  font-size: 16px;
  margin-left: -18px;
  position: relative;
  font-family: Verdana;
}
.icalendar.lite .foot {
  overflow: auto;
  padding: 0 0 5px 0;
  background: #f8f8f8;
  border-top: 1px solid #eee;
}
.icalendar.lite .foot .time {
  float: left;
  padding: 0 10px;
  margin: 10px 0;
  text-align: left;
  border-right: 1px solid #e0e0e0;
}
.icalendar.lite .foot .time i {
  color: #e0e0e0;
  margin-top: 4px;
}
.icalendar.lite .foot .time > span {
  vertical-align: top;
}
.icalendar.lite .foot .time span.hour,
.icalendar.lite .foot .time span.minute {
  display: inline-block;
  position: relative;
}
.icalendar.lite .foot .time span.hour strong,
.icalendar.lite .foot .time span.minute strong {
  position: absolute;
  width: 12px;
  height: 16px;
  display: block;
  background: #f8f8f8;
  right: 2px;
  top: 3px;
}
.icalendar.lite .foot .time span.hour select,
.icalendar.lite .foot .time span.minute select {
  width: 42px;
  background: none;
  border: none;
  font-size: 16px;
  font-family: Verdana;
  font-weight: 500;
}
.icalendar.lite .foot .time span.hour select:focus,
.icalendar.lite .foot .time span.minute select:focus {
  border: none;
  outline: none;
}
.icalendar.lite .foot .time span.minute {
  margin-left: -6px;
}
.icalendar.lite .foot .time span.divider {
  font-size: 16px;
  margin-left: -18px;
  position: relative;
  font-family: Verdana;
}
.icalendar.lite .foot .buttons {
  float: right;
  margin: 5px 0;
}


th > i.fa.fa-sort-desc, th > i.fa.fa-sort-asc {
    color: black;
}

.datepicker-container {
    background-color: #fff;
    direction: ltr;
    font-size: 12px;
    left: 0;
    line-height: 30px;
    position: fixed;
    top: 0;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 210px;
    z-index: -1;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

    .datepicker-container::before,
    .datepicker-container::after {
        border: 5px solid transparent;
        content: " ";
        display: block;
        height: 0;
        position: absolute;
        width: 0;
    }

.datepicker-dropdown {
    border: 1px solid #ccc;
    -webkit-box-shadow: 0 3px 6px #ccc;
    box-shadow: 0 3px 6px #ccc;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    z-index: 1;
}

.datepicker-inline {
    position: static;
}

.datepicker-top-left,
.datepicker-top-right {
    border-top-color: #39f;
}

    .datepicker-top-left::before,
    .datepicker-top-left::after,
    .datepicker-top-right::before,
    .datepicker-top-right::after {
        border-top: 0;
        left: 10px;
        top: -5px;
    }

    .datepicker-top-left::before,
    .datepicker-top-right::before {
        border-bottom-color: #39f;
    }

    .datepicker-top-left::after,
    .datepicker-top-right::after {
        border-bottom-color: #fff;
        top: -4px;
    }

.datepicker-bottom-left,
.datepicker-bottom-right {
    border-bottom-color: #39f;
}

    .datepicker-bottom-left::before,
    .datepicker-bottom-left::after,
    .datepicker-bottom-right::before,
    .datepicker-bottom-right::after {
        border-bottom: 0;
        bottom: -5px;
        left: 10px;
    }

    .datepicker-bottom-left::before,
    .datepicker-bottom-right::before {
        border-top-color: #39f;
    }

    .datepicker-bottom-left::after,
    .datepicker-bottom-right::after {
        border-top-color: #fff;
        bottom: -4px;
    }

    .datepicker-top-right::before,
    .datepicker-top-right::after,
    .datepicker-bottom-right::before,
    .datepicker-bottom-right::after {
        left: auto;
        right: 10px;
    }

.datepicker-panel > ul {
    margin: 0;
    padding: 0;
    width: 102%;
}

    .datepicker-panel > ul::before,
    .datepicker-panel > ul::after {
        content: " ";
        display: table;
    }

    .datepicker-panel > ul::after {
        clear: both;
    }

    .datepicker-panel > ul > li {
        background-color: #fff;
        cursor: pointer;
        float: left;
        height: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center;
        width: 30px;
    }

        .datepicker-panel > ul > li:hover {
            background-color: #e5f2ff;
        }

        .datepicker-panel > ul > li.muted,
        .datepicker-panel > ul > li.muted:hover {
            color: #999;
        }

        .datepicker-panel > ul > li.highlighted {
            background-color: #e5f2ff;
        }

            .datepicker-panel > ul > li.highlighted:hover {
                background-color: #cce5ff;
            }

        .datepicker-panel > ul > li.picked,
        .datepicker-panel > ul > li.picked:hover {
            color: #39f;
        }

        .datepicker-panel > ul > li.disabled,
        .datepicker-panel > ul > li.disabled:hover {
            background-color: #fff;
            color: #ccc;
            cursor: default;
        }

            .datepicker-panel > ul > li.disabled.highlighted,
            .datepicker-panel > ul > li.disabled:hover.highlighted {
                background-color: #e5f2ff;
            }

        .datepicker-panel > ul > li[data-view="years prev"],
        .datepicker-panel > ul > li[data-view="year prev"],
        .datepicker-panel > ul > li[data-view="month prev"],
        .datepicker-panel > ul > li[data-view="years next"],
        .datepicker-panel > ul > li[data-view="year next"],
        .datepicker-panel > ul > li[data-view="month next"],
        .datepicker-panel > ul > li[data-view="next"] {
            font-size: 18px;
        }

        .datepicker-panel > ul > li[data-view="years current"],
        .datepicker-panel > ul > li[data-view="year current"],
        .datepicker-panel > ul > li[data-view="month current"] {
            width: 150px;
        }

    .datepicker-panel > ul[data-view="years"] > li,
    .datepicker-panel > ul[data-view="months"] > li {
        height: 52.5px;
        line-height: 52.5px;
        width: 52.5px;
    }

    .datepicker-panel > ul[data-view="week"] > li,
    .datepicker-panel > ul[data-view="week"] > li:hover {
        background-color: #fff;
        cursor: default;
    }

.datepicker-hide {
    display: none;
}