﻿* {
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

checkbox {
    width: 18px;
    height: 18px;
}

.loading {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 150px;
    margin: -15px 0 0 -75px;
    text-align: center;
}

    .loading > div {
        width: 30px;
        height: 30px;
        background-color: #009eff;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
        animation: bouncedelay 1.4s infinite ease-in-out;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    .loading .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .loading .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}



.inputWithBorder {
    border: 0px;
    outline-style: none;
    padding: 3px 5px 3px 5px;
    margin: 0px;
    font-size: 13px;
    text-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-user-select: text;
    resize: none;
}

.comboBoxWithBorder {
    border: 0px;
    outline-style: none;
    padding: 3px 19px 3px 5px;
    margin: 0px;
    font-size: 13px;
    text-shadow: none;
    box-shadow: none;
    resize: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("image/arrow.png") no-repeat scroll right center transparent;
}

input[type=date]::-webkit-calendar-picker-indicator {
    border: 0px solid transparent;
    border-radius: 0px;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    color: transparent;
}

input[type=date]::-webkit-inner-spin-button {
    visibility: hidden;
}


input[type=datetime-local]::-webkit-calendar-picker-indicator {
    border: 0px solid transparent;
    border-radius: 0px;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    color: transparent;
}

input[type=datetime-local]::-webkit-inner-spin-button {
    visibility: hidden;
}


input[type=number]::-webkit-inner-spin-button {
    visibility: hidden;
}

.dateWithBorder {
    border: 0px;
    outline-style: none;
    padding: 3px 0px 3px 5px;
    margin: 0px;
    font-size: 13px;
    text-shadow: none;
    box-shadow: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-user-select: text;
    resize: none;
    /*在选择框的最右侧中间显示日历图片*/
    background: url("image/datebox_arrow.png") no-repeat scroll right center transparent;
}

.timeWithBorder {
    border: 0px;
    outline-style: none;
    padding: 3px 0px 3px 5px;
    margin: 0px;
    font-size: 13px;
    text-shadow: none;
    box-shadow: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-user-select: text;
    resize: none;
    /*在选择框的最右侧中间显示日历图片*/
    /*background: url("image/timebox_arrow.png") no-repeat scroll right center transparent;*/
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
    display: none;
}

.msg-window {
    position: fixed;
    display: block;
    z-index: 9700;
    width: 280px;
    height: 115px;
    color: #ffffff;
    border-color: #303F9F;
    background: #3F51B5;
    background: -webkit-linear-gradient(top,#3F51B5 0,#303F9F 100%);
    background: -moz-linear-gradient(top,#3F51B5 0,#303F9F 100%);
    background: -o-linear-gradient(top,#3F51B5 0,#303F9F 100%);
    background: linear-gradient(to bottom,#3F51B5 0,#303F9F 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3F51B5,endColorstr=#303F9F,GradientType=0);
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px 8px 8px;
    margin: 0px;
    padding: 0px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.msg-window-shadow {
    position: fixed;
    display: block;
    z-index: 8999;
    width: 280px;
    height: 115px;
    background: #ccc;
    -moz-box-shadow: 2px 2px 3px #cccccc;
    -webkit-box-shadow: 2px 2px 3px #cccccc;
    box-shadow: 2px 2px 3px #cccccc;
    filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
    -moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px 8px 8px;
    margin: 0px;
    padding: 0px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.msg-windows-header {
    display: block;
    text-align: left;
    position: relative;
    width: 100%;
    height: 40px;
    color: #ffffff;
    border-color: #303F9F;
    background: #3F51B5;
    background: -webkit-linear-gradient(top,#3F51B5 0,#303F9F 100%);
    background: -moz-linear-gradient(top,#3F51B5 0,#303F9F 100%);
    background: -o-linear-gradient(top,#3F51B5 0,#303F9F 100%);
    background: linear-gradient(to bottom,#3F51B5 0,#303F9F 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3F51B5,endColorstr=#303F9F,GradientType=0);
    overflow: hidden;
    border-width: 0 0 1px 0;
    border-style: solid;
    padding: 5px;
    margin: 0px;
}

.msg-windows-title {
    display: block;
    text-align: left;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    text-align: left;
    padding: 0px;
    margin: 0px;
    background: url('image/blank.gif') no-repeat;
}

.msg-windows-body {
    width: 100%;
    height: 73px;
    display: block;
    text-align: left;
    position: relative;
    border-color: #303F9F;
    border-width: 0px;
    border-style: solid;
    background-color: white;
    font-size: 13px;
    color: #ffffff;
    overflow: auto;
    border: 0;
    outline: 0;
    padding: 0px;
    margin: 0px;
}


.msgconfirm-window {
    position: fixed;
    display: block;
    z-index: 9700;
    width: 280px;
    height: 172px;
    color: #ffffff;
    border-color: #A5A5A5;
    background: #3F51B5;
    background: -webkit-linear-gradient(top,#3F51B5 0,#303F9F 100%);
    background: -moz-linear-gradient(top,#3F51B5 0,#303F9F 100%);
    background: -o-linear-gradient(top,#3F51B5 0,#303F9F 100%);
    background: linear-gradient(to bottom,#3F51B5 0,#303F9F 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3F51B5,endColorstr=#303F9F,GradientType=0);
    overflow: hidden;
    border-style: solid;
    -moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px 8px 8px;
    margin: 0px;
    padding: 0px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.msgconfirm-windows-body {
    width: 100%;
    height: 170px;
    display: block;
    text-align: left;
    position: relative;
    border-color: #303F9F;
    border-width: 0px;
    border-style: solid;
    background-color: white;
    font-size: 13px;
    color: #ffffff;
    overflow: auto;
    border: 0;
    outline: 0;
    padding: 0px;
    margin: 0px;
}

.rdp-button, .rdp-button:hover {
    font-size: 15px;
    color: #fff;
    border-width: 1px;
    border-color: #3F51B5;
    background: white;
    border-radius: 25px;
}

a.rdp-button:hover {
    font-size: 15px;
    border-width: 1px;
    border-color: #3F51B5;
    background: white;
    filter: none;
}

.rdp-button-second, .rdp-button-second:hover {
    font-size: 15px;
    color: #3F51B5;
    border-width: 1px;
    border-color: #3F51B5;
    background: #fff;
    border-radius: 25px;
}

a.rdp-button-second:hover {
    font-size: 15px;
    border-width: 1px;
    border-color: #3F51B5;
    background: #fff;
    filter: none;
}


/*下拉菜单顶部的小三角指示*/
.dropdown-menu::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: -7px;
    left: 12px;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: white;
    border-top: 1px solid #00000026;
    border-left: 1px solid #00000026;
}

.rdp-handCursor:hover {
    cursor: pointer;
}

/*鼠标移动到菜单上自动下拉菜单*/
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

/*下面是二级和三级菜单展示时的样式*/
.megamenu-scroll {
    overflow-y: scroll;
}

.megamenu-wrap {
    margin-bottom: 10px;
}

.megamenu-title {
    padding-bottom: 18px;
    margin-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    border-bottom: 1px solid #e8e8e8;
}

    .megamenu-title::before {
        position: absolute;
        content: "";
        bottom: -2px;
        left: 0px;
        width: 50px;
        height: 2px;
        background: #0092dc;
    }

.megamenu-list {
    border-left: 1px solid #e8e8e8;
    padding-left: 0px;
}

    .megamenu-list li a {
        width: 100%;
        display: inline-block;
        border-radius: 6px;
        padding: 5px 0px 5px 25px;
        color: #555555;
        white-space: nowrap;
        text-decoration: none;
        text-transform: capitalize;
        //transition: all linear .3s;
        /*-webkit-transition: all linear .3s;
                -moz-transition: all linear .3s;
                -ms-transition: all linear .3s;
                -o-transition: all linear .3s;*/
    }

        .megamenu-list li a:hover {
            color: #0092DC;
            background: #e9ecef;
        }
/*结束二级和三级菜单展示样式*/

.nodisplayscrollbar {
    scrollbar-width: none; /*Firefox*/
    -ms-overflow-style: none; /*IE 10+,edge*/
}

    .nodisplayscrollbar::-webkit-scrollbar {
        width: 0;
        height: 0;
        background-color: transparent;
        color: transparent;
        display: none; /*Chrome Safari*/
    }

/*滚动条样式*/
::-webkit-scrollbar {
    width: 8px; /* 滚动条宽度 */
    height: 8px; /* 滚动条高度 */
}

/* 滚动滑块样式 */
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: rgba(0,0,0,0.2); /* 滑块颜色 */
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

    /* 滚动滑块鼠标悬停样式 */
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(0,0,0,0.5);
    }

/* 滚动条轨道样式 */
::-webkit-scrollbar-track {
    border-radius: 6px;
    background: rgba(0,0,0,0.1); /* 轨道颜色 */
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}
/*结束滚动条样式*/

/*闪烁特效*/
@keyframes fade {
    from {        
    opacity: 1.0;    
    }
    50% {        
    opacity: 0.4;    
    }
    to {        
    opacity: 1.0;    
    }
}
@-webkit-keyframes fade {    
    from {        
    opacity: 1.0;    
    }
    50% {        
    opacity: 0.4;    
    }
    to {        
    opacity: 1.0;    
    }
}
.flashBox {      
    box-shadow: 0 0 0 .25rem rgba(172,0,0,1);
    animation: fade 800ms infinite;    
    -webkit-animation: fade 800ms infinite;
}
/*结束闪烁特效*/