.Colt_ImgCont {
    margin-left: -10px;
    margin-right: -10px;
}
.Colt_AllList {
    margin: 20px 10px 0px;
    float: left;
    transition: all .4s;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 1px 6px 1px #999;
    width: 275px;
}
.Colt_AllListImg {
    height: 127px;
    overflow: hidden;
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transform: rotate(0);
}

.Colt_AllList .Colt_AllListImg:hover {
    transform: rotate(5deg);
}
    .Colt_AllListImg img {
        width: 100%;
    }
.Colt_AllList p {
    height: 30px;
    line-height: 30px;
    color: black;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 200px;
    padding-left: 10px;
}
.Colt_AllList:hover {
    background: white;
    box-shadow: 0px 4px 10px 3px #ccc;
}