@charset "utf-8";
/* CSS Document */

::-ms-clear{display: none;}
::-ms-reveal{display: none;}
::-o-clear{display: none;}
html,body {
    width: 100%;
    height:100%;
    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;
    overflow-y: hidden;
}
html{
    background:#F6F7FB;
}
body{
    min-width: 1366px;
    position: relative;
    background:#F6F7FB;
}
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;
}
.normalInput{
    background: #FBFDFF;
    border: 1px solid #CED5DF;
    border-radius: 2px;
    padding: 0 10px;
}
.normalInput:focus{
    background: #FFFFFF;
    border: 1px solid #0087FF;
    box-shadow: 0 0 14px 0 rgba(0,135,255,0.20);
    border-radius: 2px;
}
/*垂直水平居中*/
.middlePos{
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
}
/*实心绿色按钮*/
.greenBtn{
    background: #35C73B;
    border: 1px solid #14A21A;
    border-radius: 2px;
    font-size: 16px;
    color: #FFFFFF;
}
/*实心蓝色按钮*/
.blurBtn{
    background-image: linear-gradient(-180deg, #009AFF 0%, #0087FF 100%);
    border: 1px solid #1374C9;
    border-radius: 2px;
    font-size: 16px;
    color: #FFFFFF;
}
/*空心蓝色按钮*/
.blurBtnE{
    background: #FFFFFF;
    border: 1px solid #0084FF;
    border-radius: 2px;
    font-size: 14px;
    color: #0087FF;
}
.blurBtnE:hover{
    background-image: linear-gradient(-180deg, #009AFF 0%, #0087FF 100%);
    border: 1px solid #1374C9;
    color: #FFFFFF;
}
/*输入框的文字颜色样式*/
/* WebKit browsers */
input::-webkit-input-placeholder {
    color: #C0C7D1;
}
/*WebKit browsers*/
textarea::-webkit-input-placeholder {
    color: #C0C7D1;
}
/*Mozilla Firefox 4 to 18*/
:-moz-placeholder {
    color: #C0C7D1;
}
/*Mozilla Firefox 19+*/

::-moz-placeholder {
    color: #C0C7D1;
}
/* Internet Explorer 10+ */
:-ms-input-placeholder {
    color: #C0C7D1;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
/*输入框错误提示样式，直接加上类名*/
.wrong{
    border: 1px solid #D03E3E;
    box-shadow: 0 0 14px 0 rgba(210,60,57,0.20);
}
/*border*/

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

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

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

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

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #949494;;
}

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

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

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

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






