@charset "UTF-8";
/*banner*/
.banner{
    width: 100%;
   
}
/*banner*/
/*container*/
.containerRight{
    float: right;
    width: 960px;
    margin: 20px 0;
    overflow: hidden;
}
.productItem{
    width: 300px;
    height: 200px;
    background: black;
    margin: 10px 0 10px 20px;
    float: left;
    position: relative;
    overflow: hidden;
}
.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(0,0,0,0.6);
    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*/

