*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,a:focus{
    text-decoration: none;
}
.displayNone{
    display: none;
}
.actived{
    display: block;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
input[disabled]:hover{
    cursor:not-allowed;
}
select[disabled]:hover{
    cursor:not-allowed;
}
th,td {
    text-align: center;
}
.inputNormal{
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    color: #b2b2b2;
}
.inputNormal:focus{
    border: 1px solid #6eb2eb;
    color: #666666;
}
.inputError{
    border: 1px solid #f47272;
}
.selectNormal{
    display: inline-block;
    height: 30px;
    line-height: 30px;
    border: 1px solid #d8d8d8;
    color: #666666;
    font-size: 14px;
}
.btnNormal{
    display: inline-block;
    background-color: #6eb2eb;
    color: #ffffff;
    font-size: 16px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    padding:0 10px;
    border-radius: 4px;
}
.btnNormal:hover{
    color: #ffffff;
    background-color: #469de5;
    box-shadow: 0px 4px 10px 0px #c7c7c7;
}
.btnNormalGhost{
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    color: #6eb2eb;
    background-color: #ffffff;
    border: 1px solid #6eb2eb;
    border-radius: 4px;
}
.btnNormalGhost:hover{
    color: #ffffff;
    background-color: #6eb2eb;
    box-shadow: 0px 4px 10px 0px #c7c7c7;
}
.btnGhost{
    display: inline-block;
    padding: 0 12px;
    line-height: 24px;
    border:1px solid #6EB2EB;
    color: #6EB2EB;
    font-size: 14px;
    border-radius: 4px;
}
.btnGhost:hover{
    background-color: #6EB2EB;
    color: #FFFFFF;
}
.btnGhostRed{
    border:1px solid #f47272;
    color: #f47272;
}
.btnGhostRed:hover{
    background-color: #f47272;
    color: #FFFFFF;
}
.red{
    color: #f47272;
}
.green{
    color: green;
}
.redNormal{
    background-color: #f47272;
}
.redNormal:hover{
    background-color: #e64c4c;
    box-shadow: 0px 4px 10px 0px #c7c7c7;
}




.errorPage{
    width: 1180px;
    margin: auto;
}
.errorPage>.content{
    background-color: #FFFFFF;
    padding: 180px 215px 80px;
    overflow: hidden;
    z-index: 2;
}
.errorPage>.content>.leftImg{
    width: 330px;
    height: 220px;
}
.errorPage>.content>.leftImg>img{
    width: 100%;
    height: 100%;
}
.errorPage>.content>.rightContent{
    width: 370px;
    height: 220px;
    margin-left: 50px;
}
.errorPage>.content>.rightContent>h1{
    font-size: 42px;
    color: #666666;
    margin: 20px 0;
}
.errorPage>.content>.rightContent>p{
    font-size: 16px;
    line-height: 16px;
    color: #666666;
    margin-bottom: 10px;
}
.errorPage>.content>.rightContent>p:nth-of-type(n+2){
    font-size: 14px;
    color: #999999;
}
.errorPage>.content>.rightContent>.rightContentBtn{
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    text-align: center;
}
.errorPage>.content>.rightContent>.rightContentBtn>a{
    height: 40px;
    line-height: 40px;
    margin-left: -100px;
}
.errorPage>.content>.rightContent>.rightContentBtn>.homeBtn{
    margin-left: 30px;
}
.errorPage>.errorContent{
    width: 100%;
    background-color: #e9e9e9;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
    z-index: 1;
    height: 40px;
    overflow: hidden;
    transition: all 0.3s linear;
}
.errorPage>.errorContent.actived{
    height: 325px;
}
.errorPage>.errorContent>.errorInfoBtnDiv{
    line-height: 40px;
    text-align: center;
}
.errorPage>.errorContent>.errorInfoBtnDiv>a{
    font-size: 16px;
    color: #b2b2b2;
}
.errorPage>.errorContent>.errorInfoBtnDiv>a:hover{
    color: #6EB2EB;
}
.errorPage>.errorContent>.errorInfoBtnDiv>a>i{
    display: inline-block;
    font-size: 16px;
    margin-left: 6px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
    transition: .3s transform;
}
.errorPage>.errorContent.actived>.errorInfoBtnDiv>a>i{
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.errorPage>.errorContent>.errorInfo{
    padding: 15px  20px 20px;
}
.errorPage>.errorContent>.errorInfo{
    padding: 15px  20px 20px;
}
.errorPage>.errorContent>.errorInfo>.errorInfoText{
    width: 100%;
    height: 200px;
    resize: none;
    background-color: #FFFFFF;
    color: #666666;
    font-size: 14px;
    line-height: 20px;
    border-radius: 4px;
    padding: 5px 10px;
    box-sizing: border-box;
}
.errorPage>.errorContent>.errorInfo>.copyDiv{
    margin-top: 20px;
    text-align: center;
}