#outer-wp #inter-wp {
    z-index: 0; /*ori.css原始設1會擋住放大區塊*/
}

/* Position the image container (needed to position the left and right arrows) */
.zoom-photo-container {
    position: relative;
    width: 100%;
}
.zoom-photo-container img {
    vertical-align: middle;
}

/* Hide the images by default */
.mySlides {
    display: none;
}
.mySlides img {
    width: 100%;
    border: solid 1px #eee;
}

/* Next & previous buttons */
.zoom-photo-container .prev,
.zoom-photo-container .next {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 3;
}

/* Position the "next button" to the right */
.zoom-photo-container .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.zoom-photo-container .prev:hover,
.zoom-photo-container .next:hover {
    background: #b871be;
}

.zoom-photo-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}
.zoom-photo-row .cursor {
    cursor: pointer;
}

/* Six columns side by side */
.zoom-photo-column {
    width: 15%;
}
.img-effect {
    border: solid 1px #eee;
}

/* Add a transparency effect for thumnbail images */
.img-effect {
    opacity: 0.6;
}

.zoom-photo-active,
.img-effect:hover {
    opacity: 1;
    border: solid 1px #b871be;
}

/* Fading animation */
.img-fade {
    -webkit-animation-name: img-fade;
    -webkit-animation-duration: 1.5s;
    animation-name: img-fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes img-fade {
    from {opacity: .4} 
    to {opacity: 1}
}
@keyframes img-fade {
    from {opacity: .4} 
    to {opacity: 1}
}


@media (max-width: 640px) {
    #outer-wp #inter-wp {
        z-index: 1;
    }
    .zoom-photo-row {
        display: none;
    }
    .zoom-photo-container .prev,
    .zoom-photo-container .next {
        display: block;
    }
}