#full-slide {
    position: relative;
    width: 1440px;
    max-width: 95%;
    height: 600px;
    margin: 30px auto;
    background-color: #efefef;
    overflow: hidden;
}
@media (max-width: 768px) {
    #full-slide {
    margin: 15px auto;
}
}#full-slide .banner {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
#full-slide .banner li {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    -webkit-transition: opacity .6s ease-in-out;
    transition: opacity .6s ease-in-out;
}
#full-slide .banner li.active {
    opacity: 1;
    -webkit-transition: opacity .6s ease-in-out;
    transition: opacity .6s ease-in-out;
}

#full-slide .banner li:nth-child(1) {
    background-image: url("../zombie-rollerz-the-last-ship/image-1.jpg");
}
#full-slide .banner li:nth-child(2) {
    background-image: url("../zombie-rollerz-the-last-ship/image-2.jpg");
}
#full-slide .banner li:nth-child(3) {
    background-image: url("../zombie-rollerz-the-last-ship/image-3.jpg");
}
#full-slide .banner li:nth-child(4) {
    background-image: url("../zombie-rollerz-the-last-ship/image-4.jpg");
}
#full-slide .banner li:nth-child(5) {
    background-image: url("../zombie-rollerz-the-last-ship/image-5.jpg");
}
#full-slide .banner li:nth-child(6) {
    background-image: url("../zombie-rollerz-the-last-ship/image-6.jpg");
}
#full-slide .banner li:nth-child(7) {
    background-image: url("../zombie-rollerz-the-last-ship/image-7.jpg");
}
#full-slide .banner li:nth-child(8) {
    background-image: url("../zombie-rollerz-the-last-ship/image-8.jpg");
}
#full-slide .banner li:nth-child(9) {
    background-image: url("../zombie-rollerz-the-last-ship/image-9.jpg");
}
#full-slide .banner li:nth-child(10) {
    background-image: url("../zombie-rollerz-the-last-ship/image-10.jpg");
}



#full-slide i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    width: 60px;
    height: 60px;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
    color:#fff;
    background-color: #000;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#full-slide i:hover {
    -webkit-transform: translateY(-50%) scale(1.1);
    transform: translateY(-50%) scale(1.1);
}
#full-slide .prev {
    left: 30px;
}
#full-slide .next {
    right: 30px;
}
@media (max-width: 767px) {
    #full-slide i {
    -webkit-transform: translateY(-50%) scale(.7);
    transform: translateY(-50%) scale(.7);
}
#full-slide i:hover {
    -webkit-transform: translateY(-50%) scale(.8);
    transform: translateY(-50%) scale(.8);
}
#full-slide .prev {
    left: 0;
}
#full-slide .next {
    right: 0;
}
}
