<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Error</title>
    <style>
        a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center,
        cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer,
        form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu,
        meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong,
        sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp {
            border: 0;
            margin: 0;
            padding: 0;
            font-size: 100%
        }

        body {
            background-color: #f2f2f2;
            color: #444;
            font: 12px/1.5 'Helvetica Neue', Arial, Helvetica, sans-serif;
        }

        html, body {
            height: 100%;
        }

        * {
            box-sizing: border-box;
        }

        .error-page {
            width: 100%;
            height: 100%;
            padding-top: 10%;
            background-image: url('/resources/images/blueprint.png');
        }

        .error_content {
            margin: 0 auto;
            width: 1000px;
            height: 600px;
            border-radius: 10px;
            box-shadow: 0 0 60px #cccccc;
        }

        .error_left {
            margin: 120px 0 0 80px;
            width: 330px;
            height: 345px;
            background: url("/resources/images/timg.png") no-repeat;
            background-size: 100%;
            float: left;
        }

        .error_left .sp_con {
            margin-left: 128px;
            color: #1A4EC0;
            margin-top: 39px;
            position: absolute;
            font-size: 18px;
        }

        .error_right {
            width: 580px;
            height: 100%;
            float: right;
        }

        div#da-wrapper {
            height: auto;
            min-height: 100%;
            position: relative;
            min-width: 400px
        }

        div#da-wrapper, div#da-wrapper.fluid {
            width: 100%
        }

        div#da-content {
            clear: both;
        }

        div#da-wrapper .da-container, div#da-wrapper.fluid .da-container {
            width: 96%;
            margin: auto;
        }

        div#da-error-wrapper {
            width: 400px;
            padding: 30px 0;
            margin: auto;
            position: relative;
        }

        div#da-error-wrapper #da-error-pin {
            width: 38px;
            height: 38px;
            display: block;
            margin: auto;
            margin-bottom: -27px;
            z-index: 10;
            position: relative;
            background: url("/resources/images/error-pin.png") no-repeat center center;
        }

        div#da-error-wrapper #da-error-code {
            box-sizing: content-box;
            width: 285px;
            height: 170px;
            padding: 127px 16px 0 16px;
            position: relative;
            margin: auto;
            margin-bottom: 20px;
            z-index: 5;
            line-height: 1;
            font-size: 32px;
            text-align: center;
            background: url("/resources/images/error-hanger.png") no-repeat center center;
            -webkit-transform-origin: center top;
            -moz-transform-origin: center top;
            transform-origin: center top;
            -webkit-animation: error-swing infinite 2s ease-in-out alternate;
            -moz-animation: error-swing infinite 2s ease-in-out alternate;
            animation: error-swing infinite 2s ease-in-out alternate
        }

        div#da-error-wrapper #da-error-code span {
            font-size: 96px;
            display: block;
        }

        div#da-error-wrapper .da-error-heading {
            color: #eb8531;
            text-align: center;
            font-size: 24px;
            font-family: Georgia, "Times New Roman", Times, serif;
            margin: 45px auto;
            margin: 0;
        }

        div#da-error-wrapper p {
            text-align: center;
            font-size: 14px;
            margin-top: 30px;
        }

        div#da-error-wrapper p a {
            display: inline-block;
            width: 80px;
            margin: 5px;
            color: #fff;
            background: #409EFF;
            text-decoration: none;
            padding: 8px 12px;
            -webkit-border-radius: 4px;
            -o-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
        }

        @-webkit-keyframes error-swing {
            0% {
                -webkit-transform: rotate(1deg)
            }
            100% {
                -webkit-transform: rotate(-2deg)
            }
        }

        @-moz-keyframes error-swing {
            0% {
                -moz-transform: rotate(1deg)
            }
            100% {
                -moz-transform: rotate(-2deg)
            }
        }

        @keyframes error-swing {
            0% {
                transform: rotate(1deg)
            }
            100% {
                transform: rotate(-2deg)
            }
        }
    </style>
</head>
<body>
<div class="error-page">
    <div class="error_content">
        <div class="error_left">
            <span class="sp_con">赶紧修，大家等着呢。</span>
        </div>
        <div class="error_right">
            <div id="da-wrapper" class="fluid">
                <div id="da-content">
                    <div class="da-container">
                        <div id="da-error-wrapper">
                            <div id="da-error-pin"></div>
                            <div id="da-error-code">error
                                <span>500</span>
                            </div>
                            <h1 class="da-error-heading">哎呦~ 服务器居然累倒了!</h1>
                            <p>别急，工程师正在紧急处理，马上就好。</p>
                            <p>
                                <a href="/wcm/site/home_site.html">返回首页</a>
                            </p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
</body>
</html>