.company-intro {
    padding: 20px;
    text-align: left;
}

.product-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left;
    margin-top: 50px;
}

.product-item {
    text-align: center;
    width: calc(25% - 20px); /* 每行显示4张图片 */
    box-sizing: border-box;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-item p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}