/*
 *
 */

* {
    margin: 0;
    padding: 0;
}

html, body {
}

body {
    font-family: "微軟正黑體", Arial;
    font-size: 15px;

    background-color: #eee;

    padding: 15px 15px;
}

.errorbox {
    max-width: 800px;
    margin: 0 auto;

    padding: 85px 0px;
    /*box-shadow: 5px 5px 15px #ccc;*/
}

.errorbox .body {
    position: relative;
    min-height: 200px;

    padding-top: 20px;
    padding-bottom: 54px;

    background: #fff;
}

.errorbox h1 {
    background-color: #369;

    color: #fff;
    padding: 5px 20px;

    font-size: 1.66em;

    text-align: center;

    border-radius: 8px 8px 0 0;
}

.errorbox p {
    margin: 0 20px 0 20px;
    line-height: 1.5em;
}

.errorbox .info {
    padding-top: 4px;
    position: absolute;
    width: 100%;
    height: 40px;
    line-height: 20px;
    bottom: 0;

    font-size: 0.8em;

    border-top: 2px solid #eee;
}

.errorbox .info label {
    float: left;
    width: 50px;
}
.errorbox .info em {
    font-style: normal;
}

.errorbox .message {
    padding-bottom: 20px;
}

.errorbox .message p {
    margin-bottom: 15px;
    font-size: 1.1em;
}
.errorbox .err_msg {
    display: block;
    margin-bottom: 8px;

    color: #e63c4f;
}
.errorbox .err_name,
.errorbox .err_position {
    display: block;
    font-size: 0.8em;
    line-height: 1.2em;
}
.errorbox .err_name:before,
.errorbox .err_position:before {
    content: '-';
    display: inline-block;
    padding: 0 3px;
    margin-left: 1em;
}
.errorbox .err_name:after,
.errorbox .err_position:after {
    content: '';
    display: block;
    clear: both;
    height: 0px;
}
.errorbox .backtrace {
    float: left;
    margin-top: 25px;
    line-height: 1.3em;
    padding: 8px 0;
    padding-right: 25px;

    border-top: 1px solid #eee;
}

/** HTTP error */
.httperror {
    position: absolute;
    text-align: center;
    font-size: 18px;

    padding-top: 70px;
    border-radius: 100%;
    background-color: #fff;

    width: 450px;
    height: 380px;

    top: 35%;
    left: 50%;

    transform: translate(-50%, -35%);
}
.httperror h2 {
    font-family: 'arial narrow', arial;

    font-size: 5em;
    color: #666;
    margin-bottom: 16px;
}

.httperror h4 {
    font-size: 2em;
    color: #006dc0;

    margin-bottom: 8px;
    /*-ms-transform: scaleY(1.5);
    transform: scaleY(1.5);*/

    white-space: nowrap;
}
.httperror .body a {
    display: inline-block;
    padding: 8px 20px;
    background-color: #666;
    color: #fff;

    border-radius: 20px;

    text-decoration: none;
    margin-top: 16px;
}
.httperror .body a:hover {
    background-color: #232323;
}

@media (max-width: 480px) {
    .httperror {
        position: static;

        border-radius: 100%;
        background: none;

        top: auto;
        left: auto;

        transform: none;

        width: 100%;
        height: auto;

        font-size: 12px;
    }
}
