.he-wrap {
    position: relative;
    zoom: 1;
    display: inline-block;
    *display: inline;
    position: relative
}
.he-view,
.he-zoom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    visibility: hidden
}
.he-view-show {
    visibility: visible
}
.a0{
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .6s;
    -moz-animation-duration: .6s;
    -ms-animation-duration: .6s;
    -o-animation-duration: .6s;
    animation-duration: .6s
}


@keyframes flipInDown {
    0% {
        transform: perspective(400px) rotateX(-90deg);
        opacity: 0.5
    }

    60% {
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}
.flipInV,
flipInH {
    -webkit-transform-style: preserve-3d;
    -webkit-animation-name: flipInDown;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-style: preserve-3d;
    -moz-animation-name: flipInDown;
    -moz-transform-origin: 50% 50%;
    -o-transform-style: preserve-3d;
    -o-animation-name: flipInDown;
    -o-transform-origin: 50% 50%;
    transform-style: preserve-3d;
    animation-name: flipInDown;
    transform-origin: 50% 50%
}
.tpl3 .info-fly {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-color: #fefefe;
    background-color: rgba(255, 255, 255, .7);
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    border-radius: 3px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #333;
    text-shadow: 1px 1px 0 #fff;
}