@charset "utf-8";
/* 清除默认样式 */
body { font-size: 14px; font-family:Helvetica; color: #333; background: #fff;/*height:100%*/;width: 100%;overflow-x: hidden}
html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;height:100%}
input, select, textarea { vertical-align: middle; outline:none; border:0;  -webkit-appearance: none;}
h1, h2, h3, h4, h5, h6{font-weight:normal;}
img { border: 0; vertical-align: middle;max-width: 100%}
ul, li, ol, dl, dt {list-style: none;}
em,i{font-style: normal}
a { text-decoration: none; outline: none; color:#2b2b2b; }
* { padding: 0; margin: 0; }
.fl { float: left; }
.fr { float: right; }
.clearfix:after { clear: both; content: ' '; display: block; font-size: 0; line-height: 0; visibility: hidden; width: 0; height: 0; }
.w1200 { width: 1200px; margin: 0 auto;}
button{
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    /*background:rgba(231,232,233,1);*/
    background:#2c7dfa;
    outline: none;
    border: none;
    cursor: pointer;
}
button:hover{
    background-color: #3785fc;
}
/*加载动画*/
.loading_mode{
    position: fixed;
    left:50%;
    top:50%;
    width: 36px;
    height:36px;
    line-height: 36px;
    margin-top: -18px;
    margin-left: -18px;
    background: rgba(0,0,0,0.5);
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    display: none;
}
.loading_icon{
    display: inline-block;
    width: 18px;
    height: 18px;
    position: absolute;
    left:50%;
    top:50%;
    z-index:999;
    margin-top: -9px;
    margin-left: -9px;
    background: url("../images/loading_01.png");
    background-size: cover;
    -webkit-animation:run 1.2s linear 0s infinite;
    animation:run 1.2s linear 0s infinite;
}
@-webkit-keyframes run{
    from{
        -webkit-transform:rotate(0deg);
    }
    to{
        -webkit-transform:rotate(360deg);
    }
}
@keyframes run{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/*错误*/
.error_prompt{
    width: 100%;
    height: 70px;
    position: fixed;
    background-color: #fd7761;
    top: -70px;
    left:0;
    z-index: 1000;
    transition: all 0.3s;
    visibility: hidden;
}
.error_promptac{
    visibility: visible !important;
    top: 0 !important;
}
.error_prompt_center{
    width: 94%;
    margin: 0 auto;
    height: 70px;
    line-height: 70px;
    vertical-align: middle;
    text-align: center;
}
.error_title{
    color: #ffffff;
    font-size: 14px;
}
.sure_error{
    width: 64px;
    height: 28px;
    display: inline-block;
    line-height: 28px;
    text-align: center;
    border-radius: 2px;
    margin-top: 17px;
    cursor: pointer;
    color: #D76455;
    border: 1px solid rgba(255,255,255,0.3);
    background-color: rgba(255,255,255,1);
    margin-left: 20px;
}
.sure_error:hover{
    border: 1px solid rgba(255,255,255,0.5);
}
