#gallerydetail {}

#gallerydetail .top-wrapper {
    position: relative;
    height: 485px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#gallerydetail .top-wrapper .banner-scale {
    width: 100%;
    min-width: 2200px;
    animation: banner-scale 2s ease-in-out;
}

#gallerydetail .top-wrapper .txt-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding-top: 80px;
}


#gallerydetail .top-wrapper .txt-wrapper .tit1 {
    font-size: 78px;
    font-weight: 500;
    color: white;
}

#gallerydetail .top-wrapper .txt-wrapper .tit2 {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

#gallerydetail .content-wrapper {
    background-color: white;
}

#gallerydetail .detail-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 60px;
}
#gallerydetail .detail-wrapper .loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: white;
}
#gallerydetail .detail-wrapper .head{
    position: relative;
    width: 100%;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#gallerydetail .detail-wrapper .head .request {
    margin-left: auto;
    height: 47px;
    min-width: 180px;
    width: initial;
}
#gallerydetail .detail-wrapper .head .name {
    font-size: 19px;
    font-weight: 500;
    margin-left: 70px;
}
#gallerydetail .detail-wrapper .head .back {
    position: absolute;
    top: 0;
    left: 10px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}
#gallerydetail .detail-wrapper .head .back > img {
    width: 20px;
}
#gallerydetail .detail-wrapper .main-slide {
    height: 800px;
    margin-top: 20px;
}


#gallerydetail .detail-wrapper .main-slide .pg{
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    width: 60%;
    z-index: 100;
    margin: 0 auto;
    text-align: center;

    display: flex;
}
#gallerydetail .detail-wrapper .main-slide .swiper-pagination-bullet {
    background-color: white;
    opacity: 0.5;
    width: 100%;
    margin: 0;
    border-radius: 0;
    height: 2px;
}
#gallerydetail .detail-wrapper .main-slide .swiper-pagination-bullet-active{
    background-color: black;
    opacity: 1;
}
#gallerydetail .detail-wrapper .main-slide .swiper-slide{
    position: relative;
}

#gallerydetail .detail-wrapper .main-slide .swiper-slide > .inner-thumb-img{
    width: 100%;
}
#gallerydetail .detail-wrapper .main-slide .swiper-slide > .inner-thumb{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
#gallerydetail .detail-wrapper .thumb-slide {
    margin-top: 5px;
}
#gallerydetail .detail-wrapper .thumb-slide .swiper-slide{
    position: relative;
    cursor: pointer;
}
#gallerydetail .detail-wrapper .thumb-slide .swiper-slide::before{
    content: '';
    margin-top: 100%;
    display: inline-block;
    width: 100%;
}
#gallerydetail .detail-wrapper .thumb-slide .swiper-slide > .inner-thumb{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}







