/* 404 */

.error-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #1379d2;
    background: -webkit-radial-gradient(#358ede 50%, #0f76d0 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-radial-gradient(#358ede 50%, #0f76d0 100%);
    /* Opera 11.6 - 12.0 */
    background: -moz-radial-gradient(#358ede 50%, #0f76d0 100%);
    /* Firefox 3.6 - 15 */
    background: radial-gradient(#358ede 50%, #0f76d0 100%);
    /* 标准的语法 */
}

.error {
    width: 100%;
    height: 100%;
    display: table;
    background-image: url('../img/error404/error404_bg.png');
    background-position: center bottom;
    background-repeat: repeat-x;
}

.error-content {
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto;
    text-align: center;
}

.error-content img {
    width: 80%;
    max-width: 881px;
    margin: 30px auto;
}

.error-content .title {
    display: block;
    font-family: [HYe1gj Regular];
    font-size: 2.85em;
    color: #fff;
}

.error-content .txt {
    display: block;
    font-family: [HYe1gj Regular];
    font-size: 1.85em;
    color: #fff;
}

.error-content .btn-box {
    padding: 40px 0;
    text-align: center;
}

.error-content .btn-box a {
    display: inline-block;
    width: 179px;
    height: 46px;
    border: 1px solid #fff;
    border-radius: 23px;
    margin: 10px 15px;
    line-height: 46px;
    font-family: [HYe1gj Regular];
    font-size: 1.58em;
    color: #fff;
    text-align: center;
}


/*PC小屏（col-md-）/992 - 1199*/

@media only screen and (max-width: 1199px) {
    .error {
        background-size: 100% auto;
    }
}


/*pad（col-sm-）/768 - 991*/

@media only screen and (max-width: 991px) {}


/*手机（col-md-）/640 - 767*/

@media only screen and (max-width: 767px) {}


/*手机（col-md-）/480 - 639*/

@media only screen and (max-width:639px) {}


/*手机（col-md-）/320 - 479*/

@media only screen and (max-width:479px) {
    .error-content .title {
        font-size: 1.85em;
    }
    .error-content .txt {
        font-size: 1.4em;
    }
}

