.selectImgDiv .item{
    width: 200px;
    height: 300px;
    border: solid thin #AAAAAA;
    float: left;
    margin: 10px;
    cursor: pointer;
    overflow: hidden;

}
.selectImgDiv .item:hover{
    border: solid thin #0099FF;
}
.selectImgDiv .item .img_show{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.selectImgDiv .item .img_show img{
    width: 100%;
    height: 100%;
}
.selectImgDiv .item:hover .img_show img{
    transform: scale(1.3);
    transition: all 1s ease 0s;
    -webkit-transform: scale(1.3);
    -webkit-transform: all 1s ease 0s;
}
.selectImgDiv .item .img_title{
    height: 30px;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    background-color: rgba(102,102,102,0.6);
    position: relative;
    color: #FFFFFF;
    font-weight: 700;
}
.selectImgDiv .item:hover .img_title{
    top:-30px;
}
.selectImgDiv .item .img_isCheck{
    position: relative;
    top:-333px;
    text-align: right;

}
.selectImgDiv .item .img_isCheck i{
    font-size: 50px;
    display: none;
    color: #66FF33;
}