@charset "utf-8";
.factory-list {
    margin-top: 30px;
}
.factory-item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
    position: relative;
}
.factory-item:nth-child(even) {
    margin-right: 0;
}
.factory-item .img {
    display: block;
    overflow: hidden;
}
.factory-item a.img img {
    width: 100%;
    transition: .5s ease-in-out;
}
.factory-item a.img:hover img {
    transform: scale3d(1.05, 1.05, 1);
}
.factory-item .title {
    position: absolute;
    width: 70%;
    height: 30px;
    line-height: 30px;
    left: 15%;
    bottom: 10%;
    color: #fff;
    background: rgba(0,0,0,0.4);
    font-size: 15px;
    padding: 0 10px;
    text-align: center;
    transition: background .3s;
}
.factory-item .title:hover {
    background: rgba(0,170,148,1);
}