/* start PC css settings
-------------------------------------------------------------------------------------------------------------------- */

.imgBox {
    position: relative;
    overflow: hidden;
}

.imgBoxIn {
    display: block;
    overflow: hidden;
    width: 265px;
    height: 170px;
}

.imgBox .imgBoxIn:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    color: #ffffff !important;
    text-align: center;
    vertical-align: middle;
    left: -100%;
    bottom: -100%;
    background-color: rgba(142, 27, 34, 0.4);
    background-repeat: no-repeat;
    background-position: center center;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

.imgBox .imgBoxIn:after {
    content: '';
    width: 0%;
    height: 0%;
    position: absolute;
    color: #ffffff !important;
    text-align: center;
    vertical-align: middle;
    left: 0;
    bottom: 0;
    background-image: url(../img/pic_view.png);
    background-repeat: no-repeat;
    background-position: center center;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.imgBox:hover .imgBoxIn:before {
    bottom: 0;
    left: 0;
}

.imgBox:hover .imgBoxIn:after {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 480px) {


}