.frame {
    display: inline;
    font-size: 0
}

.frame a {
    width: 250px;
    display: inline-block;
}

.wrap {
    width: 250px;
    height: 325px;
    position: relative;
    overflow: hidden;
}

.wrap img {
    display: block;
}

.wrap .mask {
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 100;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.wrap .mask h1 {
    font-size: 14px;
    font-weight: bold;
    color: #d5bd85;
    text-align: center;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    width: 100%
}

.wrap:hover .mask {
    background: rgba(0, 0, 0, 0.8);
}


/*net*/

.clear {
    clear: both;
}

.img {
    display: block;
    position: relative;
    width: 250px;
    height: 325px;
    margin: 0 auto;
    overflow: hidden;
}

.img:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 100%;
    top: 0;
    left: -150px;
    overflow: hidden;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, .2)50%, rgba(255, 255, 255, 0)100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, .2)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, .2)50%, rgba(255, 255, 255, 0)100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, .2)50%, rgba(255, 255, 255, 0)100%);
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg)
}

.img:hover:before {
    left: 150%;
    transition: left 1s ease 0s;
}
