.listBox {
    padding: 12px 0;
}

.listBox ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.listBox ul li {
    float: left;
    margin-bottom: 24px;
    padding: 0 12px;
    width: 25%;
    box-sizing: border-box;
}

.listBox .box {
    height: 100%;
}

.listBox .subBox {
    position: relative;
    padding: 50px 20px;
    background: #fff;
    border: 1px solid #ddd;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subBox img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.subBox strong span {
    font-size: 18px;
    color: #084bbb;
    font-weight: bold;
}

.subBox p {
    font-size: 14px;
    color: #666;
    margin: 12px 0 0 0;
    min-height: 1.2em;
}

.subBox strong, .subBox p {
    text-align: center;
}

@media (max-width: 1200px) {
    .listBox ul li {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .listBox ul li {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .listBox ul li {
        width: 100%;
    }
}