@import '../common/index.css';
@import '../common/header.css';
@import '../common/footer.css';
@import '../common/animate.min.css';
@import '../common/float.css';
.pageImage {
    height: 250px;
}

.pageWrap {

    background-color: #F2F2F2;
    padding: 30px 0px;
}

.productMain {
    width: 1200px;
    margin: 0 auto;
    /* padding: 30px 70px; */
}

.pageTitle {
    width: 30%;
    padding-bottom: 3px;
    font-size: 18px;
    margin-bottom: 20px;
}

.productList {
    display: flex;
    flex-wrap: wrap;

}

.productBox {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 50px;
}

.productBox:hover .aaaa {
    color: #3269AB;
}

.productBox:nth-child(3n) {
    margin-right: 0px;
}

.imageBox {
    height: 225px;
    position: relative;
}

.imageBox img {
    height: 100%;
    width: 100%;
}

.imageBox:hover .excerpt {
    display: flex;
}

.excerpt {
    display: none;
    position: absolute;
    word-wrap: break-word;
    overflow: hidden;
    line-height: 20px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    top: 0;
    left: 0;
    height: 225px;
    color: #FFFFFF;
    width: 100%;
    font-size: 13px;
    background-color: rgba(0, 0, 0, 0.5);
}

.excerpt span {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    width: 100%;
    overflow: hidden;
}

.productName {
    /* width: 100%; */
    background-color: #fff;
    padding: 20px 18px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.nameFont {
    color: #5B544D;
    font-size: 15px;
}

footer {
    margin-top: 0;
}