/* --- */
.list {
    display: flex;
    padding-bottom: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.list-item {
    width: 32%;
    display: inline-block;
    margin-right: 2%;
    border: 1px solid #e4e4e4;
    background-color: #fff;
    margin-bottom: 40px;
}

.list-item:hover {
    -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 10px rgba(43, 160, 232, 0.2);
    border-color: #2ba0e8;
     cursor: pointer;
}

.list-item:nth-child(3) {
    margin-right: 0%;
}

.list-item .img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.list-item img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: all 0.8s;
}

.list-item:hover img {
    transform: scale(1.1);
}

.list-item p {
    font-size: 20px;
    padding: 15px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-item:hover>p {
    color: #333;
}
.line {
    display: block;
    background-color: red;
    width: 50px;
    height: 1px;
    margin: 10px 0;
}

@media (max-width: 1500px) {}

@media (max-width: 1200px) {}

@media (max-width: 992px) {

    .list-item {
        width: 48%;
        margin-right: 2%;
    }

}

@media (max-width: 768px) {


}

@media (max-width: 576px) {
    .list-item {
        width: 100%;
    }

}
