﻿.gallerySlides {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.gallerySlides>.pic{
    position: relative;
    display: inline-block;
    max-width: 98%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.gallerySlides img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.gallerySlides .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
}
.gallerySlides .count{
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
}
.gallerySlides .count>em{
    font-style: normal;
    font-weight: normal;
}

.gallerySlides .title {
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    padding:0 3%;
    margin-top: 20px;
    word-wrap: break-word;
    word-break: break-all;
}

.gallerySlides .prev-btn,
.gallerySlides .next-btn {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    height: 60px;
    width: 28px;
    text-align: center;
    float: left;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}
.gallerySlides .prev-btn{
    left: 0;
}
.gallerySlides .next-btn{
    right: 0;
}