.itemsList {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.itemsList:after {
    content: '';
    width: 31.2%;
    border: 1px solid transparent;
}

.itemsList .items {
    width: 31.2%;
    border: 1px solid #f7f7f7;
    margin-bottom: 5.4vh;
    padding: 0 0 2.6vh 0;
    height: 48vh;
}

.itemsList .items:hover {
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    -webkit-transition: all .5s linear .3s;
    -o-transition: all .5s linear .3s;
    transition: all .5s linear .3s;
    width: 32.2%;
}

.itemsList .items img {
    width: 100%;
    height: 27.3vh
}

.itemsList .items:hover .content {
    padding-right: 6%;
    padding-left: 6%;
    border-bottom: 1px solid #1246c8;
    -webkit-transition: all .5s linear .3s;
    -o-transition: all .5s linear .3s;
    transition: all .5s linear .3s;
}

.items:hover .content p {
    color: #1246c8;
    -webkit-transition: all .5s linear .3s;
    -o-transition: all .5s linear .3s;
    transition: all .5s linear .3s;
}

.items:hover .content span {
    color: #444444;
    -webkit-transition: all .5s linear .3s;
    -o-transition: all .5s linear .3s;
    transition: all .5s linear .3s;
}

.items:hover .btn {
    background: #1246c8;
    color: white;
    -webkit-transition: all .5s linear .3s;
    -o-transition: all .5s linear .3s;
    transition: all .5s linear .3s;
}

.itemsList .items .content {
    padding: 4.5%;
    border-bottom: 1px solid #f7f7f7;
}

.items .content p {
    font-size: 1em;
    font-family: Alibaba PuHuiTi Regular, Alibaba PuHuiTi Regular-Regular;
    font-weight: 400;
    text-align: left;
    color: #222222;
    margin-bottom: 0.875em;
}

.items .content span {
    font-size: 0.8125em;
    font-family: Alibaba PuHuiTi Regular, Alibaba PuHuiTi Regular-Regular;
    font-weight: 400;
    text-align: justifyLeft;
    color: #999999;
    line-height: 1.3125;
    display: -webkit-box;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 3.9em;
}

.items .btn {
    border: 1px solid #aaaaaa;
    border-radius: 2px;
    padding: 1% 3.3%;
    color: #aaaaaa;
    width: fit-content;
    text-align: center;
    font-size: 0.6875em;
    margin-top: 1.1875em;
    margin-left: 1em;
}

.last {
    background: #f7f7f7;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    position: relative;
}

.last p {
    opacity: 0.3;
    font-size: 1.375em;
    font-family: Alibaba PuHuiTi Regular, Alibaba PuHuiTi Regular-Regular;
    font-weight: 400;
    text-align: left;
    color: #222222;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 480px) {
    #content {
        padding: 15vh 5%;
    }
    #content .itemsList .items {
        width: 45%;
    }
}