.section {
    padding: 100px 0 160px;
}
.section .wrap .en {
    color: #1685B8;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.section .wrap .title {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin: 12px 0 60px;
}
.section .wrap .list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
.section .wrap .list .item .img {
    width: 100%;
    height: 242px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}
.section .wrap .list .item .img img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 2s;
}
.section .wrap .list .item .item_bottom {
    padding: 20px 10px;
}
.section .wrap .list .item .item_bottom .h5 {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    transition: 0.6s;
}
.section .wrap .list .item .item_bottom .p {
    color: #62748E;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section .wrap .list .item:hover .img img {
    transform: scale(1.1);
}
.section .wrap .list .item:hover .item_bottom .h5  {
    color: #1685B8;
}

@media screen and (max-width: 1365px) {
    .section .wrap .title {
        font-size: 32px;
    }
}
@media screen and (max-width: 768px) {
    .section {
        padding: 50px 0 70px;
    }
    .section .wrap .title {
        font-size: 22px;
        margin: 10px 0 30px;
    }
    .section .wrap .list {
        grid-template-columns: repeat(1, 1fr);
    }
    .section .wrap .list .item .item_bottom .h5 {
        font-size: 16px;
    }
    .section .wrap .list .item .item_bottom .p {
        font-size: 14px;
    }
    .section .wrap .list .item .item_bottom .p {
        margin: 10px 0 0;
    }
}
