@charset "utf-8";
/* CSS Document */
html,body {
    width: 100%;
    min-height:100vh;
    background:#EBF1F7;
    font-family:Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC",sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-word-break: break-all;
    word-break: break-all;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0;
    padding: 0;
    list-style: none;
    border: 0;
    position: relative;
}
body{
    min-width: 1000px;
}
h1, h2, h3, h4, h5, h6, input, button, ul, li, a, p, textarea,table,tr,td, thead,tbody,select{
    margin: 0;
    padding: 0;
    list-style: none;
    border: 0;
    background: none;
}
.clearfix{
    *zoom: 1;
}
.clearfix:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
}
img {
    display: inline-block;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

button, input, a ,textarea{
    outline: none;
}
button,a{
    cursor: pointer;
}
/*float*/
.fLt {
    float: left
}

.fRt {
    float: right
}

/*fontsize*/
.f30 {
    font-size: 30px;
}
.f20 {
    font-size: 20px;
}

.f19 {
    font-size: 19px;
}

.f18 {
    font-size: 18px;
}

.f17 {
    font-size: 17px;
}

.f16 {
    font-size: 16px;
}

.f15 {
    font-size: 15px;
}

.f14 {
    font-size: 14px;
}

.f13 {
    font-size: 13px;
}

.f12 {
    font-size: 12px;
}

.f11 {
    font-size: 11px;
}

.f10 {
    font-size: 10px;
}

.Fnormal {
    font-weight: normal;
}

.Fbold {
    font-weight: bold;
}

/*color*/
.black {
    color: #000;
}
.white{
    color: #fff;
}

input::-webkit-input-placeholder { /* WebKit browsers */
    color:    #B2BCC9;
}
textarea::-webkit-input-placeholder { /* WebKit browsers */
    color:    #B2BCC9;
}
:-moz-placeholder {/*  Mozilla Firefox 4 to 18 */
    color:   #B2BCC9;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:   #B2BCC9;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:   #B2BCC9 ! important ;
}

.wrong{
    border: 1px solid red;
}
/*border*/

/*滚动条样式*/
/*::-webkit-scrollbar {
    width: 5px;
    height: 12px;
    background: none;
}

::-webkit-scrollbar-button {
    width: 4%;
    background: none;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: none;
}

::-webkit-scrollbar-track-piece {
    background: none;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #E1E7ED;
}

::-webkit-scrollbar-corner {
    background: none;
}

::-webkit-resizer {
    background: none;
}

html,body{
    scrollbar-3dlight-color: #f2f2f2;
    scrollbar-highlight-color: #f2f2f2;
    scrollbar-face-color: #E1E7ED;
    scrollbar-arrow-color: #f2f2f2;
    scrollbar-shadow-color: #f2f2f2;
    scrollbar-dark-shadow-color: #f2f2f2;
    scrollbar-base-color: #f2f2f2;
    scrollbar-track-color: #f2f2f2;
}*/

/*省略号*/
.hidden {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

/*隐藏页面元素*/
.hide{
	display:none;
}