@charset "UTF-8";
/*banner*/
.banner{
    width: 100%;
    height: 370px;
}
/*banner*/
/*container*/
.containerRight{
    float: right;
    width: 960px;
    margin: 20px 0;
    overflow: hidden;
}
.productItem{
    width: 220px;
    height: 240px;
    margin: 9px 0 10px 16px;
    float: left;
    position: relative;
    overflow: hidden;
    border: 2px solid #059a6b;
}
.productItem img{
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.productItem span{
    display: block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: white;
    background:rgba(5, 154, 107, 0.92);
    position: absolute;
    bottom: 0;
    left: 0;
}
.productItem:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
/*container*/

