/* 数字化制造工程中心页面样式 */
.engineering-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #0056a4;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 22px;
    color: #333;
    margin-top: 0;
}

.engineering-content {
    line-height: 1.8;
    font-size: 14px;
}

.engineering-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.engineering-list {
    margin: 20px 0;
    padding-left: 20px;
}

.engineering-list li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: disc;
    font-size: 14px;
}

/* 统一的图片展示容器 */
.image-container {
    margin: 30px 0;
    text-align: center;
}

/* 单图展示 */
.image-container.single img {
    max-width: 70%;
    height: auto;
    border: 0;
    padding: 1px;
}

/* 多图展示 */
.image-container.multi {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.image-container.multi img {
    flex: 1;
    max-width: 48%;
    height: auto;
    border: 0;
    padding: 5px;
}

/* 图片说明文字统一样式 */
.image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    text-align: center !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .image-container.multi {
        flex-direction: column;
        align-items: center;
    }
    
    .image-container.multi img {
        max-width: 100%;
    }
}