/**
 * 首页
 */
 .body .banner {
    background: url(../images/index/backxin.png) no-repeat;
    background-size: 100% 100%;
    text-align: center;
    position: relative;
 }
.body .banner .stars img {
    position: absolute;
}
.body .banner .stars img:nth-child(1) {
    top: 30px;
    left: 50px;
    animation: amin1 1.5s infinite;
}
.body .banner .stars img:nth-child(2) {
    top: 30px;
    right: 60px;
    animation: amin1 1.3s infinite;
}
.body .banner .stars img:nth-child(3) {
    top: 100px;
    left: 260px;
    animation: amin1 2.5s infinite;
}
.body .banner .stars img:nth-child(4) {
    top: 240px;
    left: 160px;
    animation: amin1 2s infinite;
}
.body .banner .stars img:nth-child(5) {
    top: 300px;
    right: 60px;
    animation: amin1 0.8s infinite;
}
.body .banner .stars img:nth-child(6) {
    top: 10px;
    right: 760px;
    animation: amin1 1.8s infinite;
}
.body .banner .stars img:nth-child(7) {
    top: 45px;
    left: 600px;
    animation: amin1 1.5s infinite;
}
.body .banner .stars img:nth-child(8) {
    top: 100px;
    right: 160px;
    animation: amin1 1.9s infinite ease-in-out;
}
@keyframes amin1 {
    0% {
        transform: scale(1,1);
        opacity: 0.7;
    }
    50%{
        transform: scale(1.5,1.5); 
        opacity: 1;
    }
    100% {
        transform: scale(1,1); 
        opacity: 0.7;
    }
}
.body .banner .bg {
    /*width: 100%;*/
    width: 1395px;
    margin: 30px 0 60px 0;
}
.body .banner .eye {
    background: url(../images/index/person.png) no-repeat;
    background-position: center;
    position: relative;
    height: 525px;
    z-index: 999;
}
.body .banner .eye img {
    position: relative;
    top: 133px;
    opacity: 0;
}
.body .banner .eye img:nth-child(1) {
    left: 73px;
    animation: amin2 5s infinite;
}
@keyframes amin2 {
    0% {
        opacity: 0; 
    }
    47%{
        opacity: 0; 
    }
    50%{
        opacity: 1; 
    }
    53%{
        opacity: 0; 
    }
    100% {
        opacity: 0; 
    }
}
.body .banner .eye img:nth-child(2) {
    left: -50px;
    animation: amin3 5s infinite;
}
@keyframes amin3 {
    0% {
        opacity: 0; 
    }
    50%{
        opacity: 0; 
    }
    53%{
        opacity: 1; 
    }
    56%{
        opacity: 0; 
    }
    100% {
        opacity: 0; 
    }
}
.flystars {
    position: relative;
}
.flystars .flystar {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    transform-origin: 100% 0;
    animation: star-ani 2s infinite ease-out;
    box-shadow: 0 0 5px 5px rgba(255, 255, 255, .3);
    opacity: 0;
    z-index: 2;
}
.flystars .flystar:after {
    content: '';
    display: block;
    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%;
}
.flystars .while {
    background: #FFF;
    top: -8px;
    left: 30%;
}
.flystars .while:after {
    border-color: transparent transparent transparent #FFF;
}
.flystars .pink {
    top: -35px;
    left: 40%;
    background: #ff5a99;
    animation-delay: 1.5s;
}
.flystars .pink:after {
    border-color: transparent transparent transparent #ff5a99;
    animation-delay: 1.5s;
}
.flystars .blue {
    top: -15px;
    right: 15%;
    background: cyan;
    animation-delay: 3.6s;
}
.flystars .blue:after {
    border-color: transparent transparent transparent cyan;
    animation-delay: 3.6s;
}
.flystars .yellow {
    top: -10px;
    right: 10%;
    background: #ffe206;
    animation-delay: 2.4s;
}
.flystars .yellow:after {
    border-color: transparent transparent transparent #ffcd5c;
    animation-delay: 2.4s;
}
.flystars .green {
    top: -50px;
    right: 25%;
    background: #70bb73;
    animation-delay: 0.9s;
}
.flystars .green:after {
    border-color: transparent transparent transparent #70bb73;
    animation-delay: 0.9s;
}
@keyframes star-ani {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0) translate3d(0, 0, 0);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(0) translate3d(-200px, 200px, 0);
    }
    100% {
        opacity: 0;
        transform: scale(1) rotate(0) translate3d(-300px, 300px, 0);
    }
}


.body .content {
    margin: 0 auto;
    width: 1000px;
    margin-top: -115px;
    position: relative;
}
.body .content .game-list {
    margin-top: 25px;
    margin-bottom: 40px;
}
.body .content .game-list .game-title, .body .content .news-list .news .news-title, .body .content .news-list .jobs .jobs-title {
    height: 30px;
    padding: 15px 0 10px;
}
.body .content .game-list .game-title .title, .body .content .news-list .news .news-title .title, .body .content .news-list .jobs .jobs-title .title {
    float: left;
    font-size: 18px;
}
.body .content .game-list .game-title .more, .body .content .news-list .news .news-title .more, .body .content .news-list .jobs .jobs-title .more {
    float: right;
    color: #2695dd;
    font-size: 16px;
}
.body .content .more a {
    color: #2695dd;
    text-decoration: none;
}
.body .content .game-list .item-list {
    background-color: #000;
    box-shadow: 0px 0px 8px #2084c4;
    height: 165px;
}
.body .content .game-list .item-list .item:first-child {
    padding: 28px 20px 28px 40px;
}
.body .content .game-list .item-list .item {    
    float: left;
    padding: 28px 20px;
    text-align: center;
}
.body .content .game-list .item-list .item .name {    
    font-size: 14px;
}

.body .content .news-list .news{
    width: 45%;
    float: left;
}
.body .content .news-list .news .newsitem-list, .body .content .news-list .jobs .item-list {
    height: 280px;
    position: relative;
    background-color: #111527;
    box-shadow: 0px 0px 8px #2084c4;
    overflow: hidden;
}
.body .content .news-list .news .newsitem-list .item {
    text-align: center;
    position: absolute;
    height: 280px;
    width: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
}
.body .content .news-list .news .newsitem-list .item img {
    position: relative;
    width: 100%;
}
.body .content .news-list .news .newsitem-list .item .new-info {  
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(17,21,39, 0) 0%, rgba(17,21,39, 1) 30%, rgba(17,21,39, 1) 100%);
    padding-top: 25px;
    width: 100%;
}
.body .content .news-list .news .newsitem-list .item .new-info .name {  
    color: #2695dd;
    margin-bottom: 5px;
    margin-top: 15px;
}
.body .content .news-list .news .newsitem-list .item .new-info .info {  
    font-size: 14px;
    margin-bottom: 12px;
    padding: 0 10px;
    line-height: 24px;
    color: #D1D1D1;
}
.body .content .news-list .news .status {
    width: 200px;
    height: 6px;
    background-color: #111527;
    border-radius: 10px;
    margin: 20px auto;
    position: relative;
}
.body .content .news-list .news .status .currnet-status {
    width: 200px;
    height: 6px;
    background-color: #2084c4;
    border-radius: 10px;
    margin: auto;
    position: absolute;
}

.body .content .news-list .jobs{
    width: 45%;
    float: right;
}
.body .content .news-list .jobs .item-list .item:first-child{
    padding: 30px 15px 15px 15px;
}
.body .content .news-list .jobs .item-list .item{
    padding: 15px;
    font-size: 16px;
    color: #D1D1D1;
}
.body .content .news-list .jobs .item-list .item .title{
    color: #D1D1D1;
    text-decoration: none;
    text-align: center;
}
.body .content .news-list .jobs .item-list .item .title span{
    color: #2084c4;
}
.body .content .news-list .jobs .item-list .item .time{
    float: right;
    font-size: 14px;
}

.clear{
    clear: both;
}