
.product-list {
    margin: 80px auto 60px;
    padding: 0 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1280px;
}

.product-list .product-item {
    margin: 30px 15px 0;
    width: 380px;
    height: 500px;
    text-align: center;
    border: 1px solid #e4e7ed;
}

.product-list .product-item img {
    margin-top: 32px;
    width: 290px;
}

.product-list .product-item p {
    margin-top: 20px;
    color: #383838;
    font-size: 30px;
}

.industry {
    margin-bottom: 50px;
    padding: 100px 50px;
    background-color: #EAF4FE;
}

.industry-title {
    font-size: 50px;
    color: #383838;
    text-align: center;
}

.industry-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 130px auto 0;
    max-width: 1280px;
}

.industry-item {
    flex: 1;
    margin: 20px 15px;
    text-align: center;
}

.industry-item img {
    width: 200px;
    height: 200px;
    border-radius: 100%;
}

.industry-item p {
    margin-top: 30px;
    color: #383838;
    font-size: 32px;
}

@media only screen and (max-width: 992px) {
    .product-list .product-item p {
        font-size: 36px;
    }
}