html, body {
    position: relative;
    height: 100%;
}
a {
    color: #19BBC6;
}
.indexSwiper{
    position: relative;
}
.swiper-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

    .swiper-slide img {
        width: 100%;
        height: 100%;
    }

.gallery-top {
    height: 80%;
    width: 100%;
}

.gallery-container {
    box-sizing: border-box;
    width: 100%;
    padding: 0 10%;;
    position: absolute;
    bottom: 40px;
}
.swiper-button-next, .swiper-button-prev{
    top: auto;
    bottom: 45px;
}

.gallery-thumbs .swiper-slide {
    height: 100%;
    width: 24% !important;
    /*opacity: 0.4;*/
    /*margin-right: 0 !important;*/
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.article {
    box-sizing: border-box;
    padding: 1rem 1rem .5rem;
    font-size: 0.5rem;
    color: #19BBC6;
    white-space: nowrap;
    /*border-left: 1px solid #eee;*/
    /*border-right: 1px solid #eee;*/
    position: relative;
}
.article::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 70%;
    width: 1px;
    background: #fff;
    transform: translate(0,-50%);
}
.article::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 70%;
    width: 1px;
    background: #fff;
    transform: translate(0,-50%);
}
.article p{
    text-align: center;
    font-size: 12px;
    color: #fff;
    text-overflow: ellipsis;
    overflow: hidden;
}
.line{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 80%;
    height: 1px;
    background: #eee;
}
.swiper-slide-thumb-active .line::after{
    content: '';
    height: 100%;
    width: 0;
    background: #19BBC6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    animation: load 3.2s ease infinite;
}

@-webkit-keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .gallery-container {
        display: none;
    }
    .swiper-button-next, .swiper-button-prev {
        bottom: auto !important;
        top: 50% !important;
    }
}
