*:facus {
	outline: none;
}

html, body {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.0) 30%, rgba(0, 0, 0, 0.1) 65%), url(../img/404_bg.webp);    
    background-position: center, left bottom;
    background-attachment: fixed;
    background-size: cover;
    /* background: #000; */
	/* cursor: default; */    
}

a {
	margin: 0px;
	padding: 0px;
	text-decoration: none;
    color: #008aff;
	outline: 0;
    word-break: break-all;
}

img {
	border: 0px;
}

.clear {
	height: 0px;
	margin: 0px;
	padding: 0px;
	clear: both;
}

#container {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

#container .track {
    width: 100%;
    height: 70px;
    position: absolute;
    left: 0;
    bottom: -5px;
    overflow-x: hidden;
}

#container .track .truck {
    width: 100px;
    vertical-align: bottom;
    position: absolute;
    left: -100px;
    bottom: 0;
    animation: runTruck1 15s ease-in-out 0s infinite normal forwards;
}

@keyframes runTruck1 {
    0% {
        left: -105px;
    }
    50% {
        left: 100.5%;
        transform: rotateY(0deg);
    }
    50.01% {
        transform: rotateY(180deg);
    }
    99.99% {
        transform: rotateY(180deg);
    }
    100%{
        left: -105px;
        transform: rotateY(0deg);
    }
}

.ctx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ctx .left {
    flex: 0 0 45%;
    padding: 50px;
    box-sizing: border-box;
    border: solid 1px #c0c0c0;
    border-radius: 50px;
    line-height: 1.6em;
    text-align: left;
    font-size: 20px;
    background: #ffffff66;
}

.ctx .left .tit {
    margin: 0 0 20px;
    font-weight: bold;
    font-size: 28px;
    color: #b00000;
}

.ctx .left .reason {
    margin: 20px 0 0;
    font-size: 16px;
    color: #a0a0a0;
}

.ctx .left .reason ul {
    margin: 0;
}

.ctx .left .code404 {
    margin: 100px 0 0;
    text-align: right;
    font-family: arial;
    font-size: 100px;
    color: #c0c0c088;
}

.ctx .right {
    flex: 0 0 35%;
    text-align: center;
}

.ctx .right img {
    width: 100%;
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .ctx .left {
        padding: 40px 40px;
    }

    .ctx .left .tit {
        margin: 0 0 10px;
    }

    .ctx .left .reason {
        margin: 10px 0 0;
    }

    .ctx .left .reason ul li {
        line-height: 1.5em;
    }

    .ctx .left .code404 {
        margin: 10px 0 0;
        font-size: 60px;
    }

    .ctx .right img {
        width: 80%;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
    .ctx {
        justify-content: center;
    }

    .ctx .left {
        padding: 25px 40px;
        font-size: 16px;
    }

    .ctx .left .tit {
        margin: 0 0 10px;
        font-size: 24px;
    }

    .ctx .left .reason {
        margin: 10px 0 0;
        font-size: 14px;
    }

    .ctx .left .reason ul li {
        line-height: 1.5em;
    }

    .ctx .left .code404 {
        margin: 10px 0 0;
        font-size: 60px;
    }

    .ctx .right img {
        width: 60%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {    
    #container {
        padding: 0 0 70px;
    }

    #container .track {
        bottom: 0;
    }

    #container .track .truck {
        width: 100px;
        vertical-align: bottom;
        position: absolute;
        left: -100px;
        bottom: 0;
        animation: runTruck1 10s ease-in-out 0s infinite normal forwards;
    }

    .ctx .left {
        flex: 0 0 100%;
        padding: 20px;
        border-radius: 20px;
    }

    .ctx .left .code404 {
        margin: 40px 0 0;
        font-size: 60px;
    }

    .ctx .right {
        flex: 0 0 80%;
        padding: 20px 10%;
    }

    .ctx .right img {
        width: 80%;
    }
}