
/* 父级定位确保样式 */
.sf-profile .gsgk-conten .gsgk-content {
    padding-left: 60px;  /* 左侧内边距增大 */
    padding-right: 20px; /* 右侧内边距不变，保持整体平衡 */
}

/* 业务项基础间距 */
.business-item.wow.fadeInUp.animated {
    margin-bottom: 70px; /* 项目垂直间距 */
    padding-top: 10px;
}
.business-item.wow.fadeInUp.animated:last-child {
    margin-bottom: 0; /* 最后一项清除底部间距 */
}

/* 标题样式*/
.business-title {
    color: #000000; /* 标题灰色 */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px; /* 标题与下方内容间距 */
    line-height: 1.4;
}

/* 内容段落样式 */
.business-content {
    color: #444; /* 正文主色 */
    font-size: 16px;
    line-height: 1.8; /* 行高优化阅读 */
    margin-bottom: 16px; /* 段落与列表间距 */
    text-align: justify; /* 文字两端对齐 */
}

/* 列表项样式 */
.business-list {
    list-style: none; /* 去除默认圆点项目符号 */
    padding-left: 24px; /* 列表缩进 */
    margin-bottom: 8px;
}
.business-list li {
    color: #444; /* 列表文字色 */
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px; /* 列表项之间间距 */
}

/* 总结段落样式 */
.business-summary {
    padding: 0 60px; /* 左侧内边距与内容容器一致 */
    margin-top: 30px;
}

.business-summary p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    border-top: 1px dashed #eee; /* 顶部虚线分隔 */
    padding-top: 24px;
}
/* ---------- 图片组样式 ---------- */
.business-img-group {
    display: flex;         /* 启用 Flex 布局，使图片水平排列 */
    justify-content: center; /* 图片组在容器内水平居中 */
    gap: 20px;             /* 图片之间的间距 */
    margin: 20px auto;     /* 图片组自身水平居中，上下留间距 */
    flex-wrap: nowrap;     /* 强制不换行，确保始终水平排列 */
}

.business-img-group .photo {
    width: 30%;            /* 单个图片占容器约 30% 宽度（两组各占比，预留间距） */
    height: auto;          /* 高度自适应，保持图片比例 */
}

.business-img-group .photo img {
    width: 100%;           /* 图片填充容器 */
    height: auto;          /* 高度自适应 */
    object-fit: cover;     /* 保持图片比例，防止变形 */
    border-radius: 4px;    /* 可选：添加轻微圆角，提升美观度 */
}

/* ---------- 文字样式：黑色 + 下划线 ---------- */
.underline-black {
    color: black;          /* 文字颜色为黑色 */
    text-decoration: underline; /* 文字添加下划线 */
}