.header {
    background: #1e2e63;
}

.bg-404 {
    width: 100%;
    height: 600px;
    margin-bottom: -40px;
    background: url("http://www.qtv.com.cn/images/404_bg.jpg") center;
}

.bg-404 .content {
    position: relative;
    height: 600px;
}

.star {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FFF;
    top: 100px;
    left: 400px;
    position: relative;
    transform-origin: 100% 0;
    animation: star-ani 6s infinite ease-out;
    box-shadow: 0 0 5px 5px rgba(255, 255, 255, .3);
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 2;
}

.star:after {
    content: '';
    display: block;
    top: 0px;
    left: 1000px;
    border: 0px solid #fff;
    border-width: 0px 90px 2px 90px;
    border-color: transparent transparent transparent rgba(255, 255, 255, .3);
    transform: rotate(-45deg) translate3d(1px, 3px, 0);
    box-shadow: 0 0 1px 0 rgba(255, 255, 255, .1);
    transform-origin: 0% 100%;
    animation: shooting-ani 3s infinite ease-out;
}

.s1 {
    top: 35px;
    left: 400px;
    animation-delay: 7s;
    -webkit-animation-delay: 7s;
    -moz-animation-delay: 7s;
}

.s1:after {
    border-color: transparent transparent transparent #fff;
    -webkit-animation-delay: 7s;
    -moz-animation-delay: 7s;
    animation-delay: 7s;
}

.s2 {
    top: 50px;
    left: 1000px;
    background: #FFF;
    animation-delay: 5.8s;
}

.s2:after {
    border-color: transparent transparent transparent #fff;
    animation-delay: 5.8s;
}

.s3 {
    top: 30px;
    left: 600px;
    background: #fff;
    animation-delay: 5s;
    -webkit-animation-delay: 5s;
    -moz-animation-delay: 5s;
}

.s3:after {
    border-color: transparent transparent transparent #fff;
    animation-delay: 5s;
    -webkit-animation-delay: 5s;
    -moz-animation-delay: 5s;
}

@keyframes star-ani {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0) translate3d(0, 0, 0);
    }
    50% {
        opacity: .5;
        transform: scale(1) rotate(0) translate3d(-200px, 200px, 0);
    }
    100% {
        opacity: 0;
        transform: scale(1) rotate(0) translate3d(-300px, 300px, 0);
    }
}

.center-pic1 {
    position: absolute;
    top: 40px;
    left: -45px;
    width: 555px;
    height: 590px;
    background: url("http://www.qtv.com.cn/images/404_pic1.png");
    animation: pic1-ani 2s infinite ease-out;
}

.center-pic2 {
    position: absolute;
    top: 300px;
    left: 120px;
    width: 272px;
    height: 214px;
    background: url("http://www.qtv.com.cn/images/i_404.png");
    animation: i-ani 4s infinite ease-in-out;
}

.center-pic3 {
    position: absolute;
    top: 55px;
    right: 230px;
    width: 123px;
    height: 164px;
    background: url("http://www.qtv.com.cn/images/404_pic3.png");
    animation: shake 2s infinite ease-in;
}

.center-content {
    position: absolute;
    width: 450px;
    right: 0;
    bottom: 50px;
}

.center-content .return-home {
    width: 145px;
    height: 50px;
    line-height: 50px;
    background: #ffc243;
    border-radius: 5px;
}

.center-content .return-home i {
    display: inline-block;
    height: 27px;
    width: 27px;
    vertical-align: text-bottom;
    background: url("http://www.qtv.com.cn/images/404_home.png");
    margin: 0 10px;
}

.center-content .return-home a {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #192952;
}

.center-content .ewm {
    margin-top: 10px;
}

.center-content .ewm-t {
    float: left;
    padding: 0 5px;
    width: 25px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 1.1;
}

.center-content .ewm img {
    width: 103px;
    height: 103px;
    float: left;
}

.center-content .news-list {
    position: relative;
    width: 284px;
    float: left;
    margin-top: 16px;
    margin-left: 20px;
    border-top: 1px solid #fff;

}

.center-content .news-list .news-title {
    position: absolute;
    top: -18px;
    padding-right: 10px;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    background: #1a2952;
}

.center-content .news-list ul {
    margin-top: 24px;
}

.center-content .news-list ul li {
    height: 25px;
    line-height: 25px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

.center-content .news-list ul li a {
    color: #fff;
    font-size: 14px;
}

.center-content .news-list ul li a:hover {
    color: #cc0033;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

@keyframes pic1-ani {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(1deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes i-ani {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 30px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes shake {
    0% {
        transform: rotate(0deg) translate(2px, 2px);
    }
    25% {

        transform: rotate(-1deg) translate(-2px, -2px);
    }
    50% {
        transform: rotate(0deg) translate(0px, 0px);
    }
    75% {
        transform: rotate(1deg) translate(-2px, -2px);
    }
    100% {
        transform: rotate(0deg) translate(2px, 2px);
    }
}