/* ==========================================================
   顶部横幅：保持全屏覆盖，内部图片居中 1200px
   ========================================================== */
.assistant-banner {
    -webkit-background-size: cover;
    background-size: cover;
}
.assistant-banner img {
    display: block;          /* 清除图片底部 3 px 空隙 */
    width: 1200px;           /* 内容区宽度，大屏居中 */
    height: 100%;            /* 撑满横幅高度 */
    margin: auto;            /* 水平居中 */
}

/* ==========================================================
   砍价标题区：上下留白 53/61 px，保证呼吸感
   ========================================================== */
.bargain-function .bargain-title {
    padding: 53px 0 61px;
}
.bargain-title {
    font-size: 30px;
    font-family: PingFang SC;
    font-weight: bold;
    color: rgba(59, 66, 107, 1);
    line-height: 32px;
}

/* ==========================================================
   四图标入口：880 px 定宽，水平均分，垂直居中
   ========================================================== */
.bargain-icon {
    width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.bargain-icon .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bargain-icon .item p {
    font-size: 22px;
    font-family: PingFang SC;
    font-weight: 500;
    color: rgba(93, 100, 148, 1);
    line-height: 30px;
}

/* ==========================================================
   功能内容区：左右两栏，底部 15 px 间距
   ========================================================== */
.function-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 15px;
}

/* 左侧文字：固定 470 px，左对齐，列方向 */
.content-txt {
    width: 470px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.content-txt .content-title {
    font-size: 26px;
    font-family: PingFang SC;
    font-weight: bold;
    color: rgba(59, 66, 107, 1);
    line-height: 56px;
    padding-top: 210px;   /* 大留白，制造“视觉焦点” */
}
.content-txt p {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 500;
    color: rgba(93, 100, 148, 1);
    line-height: 48px;    /* 大行高，阅读更舒适 */
}

/* ==========================================================
   单张长图：底部 61 px 留白，图片 694 px 定宽
   ========================================================== */
.diyImg {
    padding-bottom: 61px;
}
.diyImg img {
    width: 694px;
    border: 0;
    margin: auto;         /* 居中 */
}

/* ==========================================================
   四宫格长图：底部 84 px 留白，宽度 100% 自适应
   ========================================================== */
.fourImg {
    padding-bottom: 84px;
}
.fourImg img {
    width: 100%;
    border: 0;
    display: block;       /* 清除底部空隙 */
    margin: auto;
}
