﻿* {
    border: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

    *:focus {
        outline: none;
    }

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    font-family: PingFang-SC-Medium;
    /*font-family: SimSun, Arial, "Microsoft YaHei", 宋体;*/
}

::-ms-clear, ::-ms-reveal {
    display: none;
}

a {
    cursor: pointer;
    text-decoration: none;
}

    a:link {
        text-decoration: none;
    }

    a:visited {
        text-decoration: none;
    }

    a:hover {
        color: #206fd5;
        text-decoration: none;
    }

/*input[type=text], input[type=password] {
    padding: 2px;
    height: 18px;
    line-height: 18px;
    border: 1px solid #95B8E7;
}

    input[type=text]:focus, input[type=password]:focus {
        border: 1px solid #95B8E7;
        box-shadow: 0 0 3px 0 #95B8E7;
        -moz-box-shadow: 0 0 3px 0 #95B8E7;
        -webkit-box-shadow: 0 0 3px 0 #95B8E7;
    }*/

input[type=button], input[type=submit] {
    padding: 4px;
    height: 24px;
    line-height: 14px;
    border: 1px solid #95B8E7;
    background-color: #FCFCFC;
}

    input[type=button]:hover, input[type=submit]:hover {
        background-color: #EAF2FF;
    }

    input[type=button]:active, input[type=submit]:active {
        background-color: #C8DDFF;
    }

.user_unselect {
    -moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit浏览器*/
    -ms-user-select: none; /*IE10*/
    -khtml-user-select: none; /*早期浏览器*/
    user-select: none;
}

::-webkit-scrollbar {
    width: 4px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #cdcdcd;
    border-radius: 5px;
}
/*文字超出部分不换行省略号显示*/
.exceed {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
