.t_bold{
    font-weight: bold;
}
.t_italic{
    font-style: italic;
}
.t_underline{
    text-decoration: underline;
}
.t_shadow{
    border: 1px solid;
    display: none;
}
.t_lineThrough{
    text-decoration: line-through;
}
.mask{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 100;
    display: none;
}
.hide{
        display: none;
}
.window{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 111;
    background: #fff;
    padding: 5px;
    color: #000;
    width: 254px;
    height: 200px;
    overflow: auto;
}
select{
    border: 1px solid rgb(198, 198, 198);
    padding: 4px 2px;
    /* box-shadow: 0 0 2px 1px #ADADAD; */
    border-radius: 3px;
    vertical-align: middle;
    height: 26px;
}
select:hover{
    border: 1px solid rgb(11, 126, 180);
    
}
.ng-hide{
    display: none;
}
.center{
    text-align: center;
}
.loading{
    color: #B7B7B7;
    font-size: 20px;
}
.center.loading{
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
}
.slider{
    height: 132px;
    width: 10px;
    background: #fff;
    position: fixed;
    bottom: 7px;
    right: 30px;
    box-shadow: 0 0 2px 2px #C2C2C2;
    border-radius: 5px;
    overflow: hidden;
}

.ng-isolate-scope.slider {}
.slider .sliderHandler{
    width: 100%;
    height: 10px;
    background: rgb(177, 239, 99);
}
.slider .sliderMask{
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(177, 239, 99);
    width: 100%;
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}
@-webkit-keyframes rotation{
    0%{-webkit-transform: rotate(0deg);}
    100%{-webkit-transform: rotate(360deg);}
}
@-moz-keyframes rotation{
    0%{-moz-transform: rotate(0deg);}
    100%{-moz-transform: rotate(360deg);}
}
@keyframes rotation{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}

.loading-ani{
        position: absolute;
        right: 123px;
        top: 0px;
        z-index: 10;
        color: #FFF;
        font-size: 12px;
        line-height: 23px;
        background-color: #B78B04;
        padding: 5px 7px;
}
.loading-ani span{
    margin-left: 9px;
}
.loading-ani i{
        vertical-align: middle;
        width: 21px;
        height: 21px;
        border: 1px #fff solid;
        border-radius: 50%;
        -webkit-animation: rotation 1s ease-in-out infinite;
        -moz-animation: rotation 1s ease-in-out infinite;
        animation: rotation 1s ease-in-out infinite;
        margin: 0;
        display: inline-block;

}
.loading-ani i:after{
        width: 5px;
        height: 5px;
        background-color: rgba(255,255,255,1);
        border-radius: 100%;
        position: absolute;
        content: "";

        left: 8px;
}


.transMask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 14;
    /* display: none; */
    opacity: 0.5;
}
.confirmDialog{
    position: fixed;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 194px;
    background-color: #fff;
    z-index: 100;
    margin-left: -175px;
    margin-top: -97px;
    /* border: 1px solid rgb(231, 225, 225); */
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(131, 131, 131, 0.41);
    overflow: hidden;
    z-index: 101;
}

.confirmDialog .title {
    padding-left: 8px;
    font-size: 16px;
    border-bottom: 1px solid rgb(231, 225, 225);
    height: 40px;
    line-height: 40px;
    background-color: #0C8DC9;
    color: #fff;
}
.buttonErea {
    position: absolute;
    bottom: 0;
    height: 44px;
    text-align: center;
    width: 100%;
    /* background-color: #E7E5E5; */
    font-size: 0px;
    border-top: 1px solid #E7E5E5;
}
.buttonErea .btn {
    width: 49%;
    display: inline-block;
    font-size: 16px;
    line-height: 44px;
    cursor: default;
    padding: 0;
    background-color: initial;
    border-radius: 0;
}

.buttonErea .btn.ok {
    border-right: 1px solid #E7E5E5;
    color: #0C8DC9;
}

.confirmDialog .dconent {
    padding: 37px 22px;
}

.btn.cancel {
    color: rgb(239, 0, 0);
}

.buttonErea .btn:hover {
    background-color: #ECECEC;
}

.buttonErea .btn:active {
    background-color: #E5E5E5;
}



.opacityHide {
    opacity: 0 !important;
}

.text-overflow {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}