.info25_part_content {
    padding: 60px 0;
}
.info25_container {
    max-width: 1200px;
    margin: 0 auto;
}
.info25_list_content {
    display: flex;
    flex-wrap: wrap;
}
.info25_list_content > div {
    width: 380px;
    height: 255px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin: 0px 10px 20px;
}
.info25_list_content > div > img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 20px;
}
.info25_list_content > div > h3 {
    font-size: 18px;
    color: #333;
    line-height: 30px;
    text-align: center;
    white-space: nowrap; /* 确保文本在一行内显示 */
    overflow: hidden; /* 超出容器部分隐藏 */
    text-overflow: ellipsis;
    margin-bottom: 20px;
}
.info25_list_content > div > p {
    font-size: 14px;
    color: #666;
    line-height: 22px;
}

@media (max-width: 768px) {
    .info25_list_content {
        justify-content: space-between;
    }
}
