.photo-view {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: none;
    opacity: 0;
}

.photo-view-tabbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    text-align: center;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.2);
}

.photo-view-tabbar .photo-view-pagination {
    line-height: 40px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.photo-view-tabbar .photo-view-close {
    position: absolute;
    right: 0;
    top: 0;
    line-height: 40px;
    font-size: 14px;
    color: #333;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.6);
    width: 40px;
    text-align: center;
    cursor: pointer;
}

.photo-view::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0.6;
}

.photo-view-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.photo-view .swiper-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.photo-view .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.photo-view .swiper-slide {
    height: 100%;
}

.photo-view-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.photo-view-img-wrap .cell {}

.photo-view-img-wrap .cell img {
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.photo-view-arrow {
    width: 50px;
    height: 100px;
    position: absolute;
    top: 38%;
    -o-background-size: cover;
    background-size: cover;
    margin-top: 40px;
    cursor: pointer;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 4px;
}

.photo-view-arrow.disable {
    opacity: 0.5;
}

.photo-view-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.photo-view-arrow-left {
    left: 40px;
    background-image: ;
}

.photo-view-arrow-right {
    right: 40px;
    background-image: ;
}