_error.css 1.26 KB
.err-page {
    width: 100%;
    height: 100%;
    background: #fff;

    .err-status {
        position: fixed;
        top: 401px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;

        .err-404 {
            width: 300px;
            height: 126px;
            background: resolve("error/404.svg") no-repeat;
            margin: 0 auto;
        }

        .err-500 {
            width: 300px;
            height: 126px;
            background: resolve("error/500.svg") no-repeat;
            margin: 0 auto;
        }
    }

    .tips {
        position: fixed;
        top: 600px;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        
        span {
            display: block;
        }

        .tip {
            font-size: 38px;
            color: #b0b0b0;
        }

        .tips-english {
            font-size: 22px;
            color: #b0b0b0;
            margin-top: 20px;
        }

        .home {
            width: 65%;
            margin: 0 auto;
            margin-top: 80px;
            height: 100px;
            color: #fff;
            background: #000;
            text-align: center;
            font-size: 28px;
            line-height: 100px;
        }
    }
}