.section-header {
    text-align: center;
    background-color: #f8f8f8;
    margin-bottom: 0px; /* 调整与下方模块的间距 */
    padding: 60px 0; /* 增加上下间距 */
}

.section-header h2 {
    font-size: 33px;
    margin-bottom: 10.5px;
}

.header-line {
    width: 131px;
    margin: 0 auto;
    border: none;
    border-top: 2px solid #ff6600; /* 设置线条颜色 */
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    margin: 0;
}

.module-container {
    width: 100%;
    background-color: #f8f8f8;
    padding: 40px 0; /* 增加上下间距 */
    display: flex;
    justify-content: center; /* 中心对齐内部内容 */
}

.module-content {
    display: flex;
    align-items: flex-start; /* 顶部对齐 */
    max-width: 1200px; /* 可根据需要调整 */
    padding: 0 20px; /* 左右内边距 */
    width: 100%;
    justify-content: center; /* 使内容整体居中 */
}

.module-text {
    flex: 1;
    max-width: 450px; /* 设置文字部分的最大宽度 */
    padding-right: 20px;
    color: #333;
    font-family: Arial, sans-serif;
    margin-top: 0; /* 确保文字整体顶部对齐 */
    word-wrap: break-word; /* 确保文本内容自动换行 */
}

.module-text h2 {
    font-size: 22px;
    margin-bottom: 20px; /* 调整标题与文本之间的间距 */
    font-weight: bold; /* 标题加粗 */
}

.module-text p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px; /* 调整文本与按钮之间的间距 */
}

.module-images {
    display: flex;
    flex-shrink: 0;
    gap: 20px; /* 两个图片之间的间距 */
}

.module-images img {
    width: 275px; /* 两个图片平分550px宽度 */
    border-radius: 8px;
}

.details-button {
    display: inline-block;
    padding: 13px 20px;
    background-color: transparent; /* 按钮镂空效果 */
    border: 2px solid #4CAF50; /* 边框颜色 */
    color: #4CAF50; /* 文字颜色 */
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}
