/* ==========================================================
   0. Banner 主视觉区域
   ========================================================== */
/* Banner 内部左右结构：左边文字、右边手机图，两端对齐 */
.top-banner .bannerItem {
    justify-content: space-between;
}
/* 左侧文字段落最大宽度 495 px，防止换行过多 */
.top-banner .bannerItem p {
    max-width: 495px;
}
/* 主标题向上提 20 px，让视觉更紧凑 */
.top-banner .bannerItem h2 {
    margin-top: -20px;
}
/* 右侧手机图容器：右内边距 137 px，让图往左收一点 */
.top-banner .bannerItem .ani-img {
    padding-right: 137px;
}
/* 手机图本身固定尺寸 361*439 px，防止变形 */
.top-banner .bannerItem .ani-img img {
    width: 361px;
    height: 439px;
}

/* 助理/顾问 Banner：蓝→青渐变，覆盖整个区域 */
.assistant-banner {
    background: linear-gradient(90deg, rgba(25,78,250,1), rgba(38,172,216,1));
    -webkit-background-size: cover;
    background-size: cover;
}

/* ==========================================================
   1. 适用行业 + 模式图
   ========================================================== */
/* 版心 1200 px 水平居中 */
.apply-industy, .mode .mode-details {
    width: 1200px;
    margin: 0 auto;
}
/* 行业图标区：flex 横向平均分布，自动换行 */
.apply-industy .show {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
/* 单个行业图标：140 px 方图，文字居中 */
.apply-industy .show .item {
    width: 140px;
    text-align: center;
    margin-bottom: 66px;   /* 行间距 66 px */
}
/* 图标本身 140*140 px */
.apply-industy .show .item img {
    width: 140px;
    height: 140px;
}
/* 行业名称：18 px 深蓝 */
.apply-industy .show .item span {
    font-size: 18px;
    color: #3B426B;
}

/* 模式图区域：浅灰背景，顶部 50 px 留白 */
.mode {
    background: #F2F3FA;
    margin-top: 50px;
}
/* 模式图本身：1137*254 px，水平居中，底部 100 px 留白 */
.mode .mode-details img {
    width: 1137px;
    height: 254px;
    margin: 0 auto;
    padding-bottom: 100px;
}

/* ==========================================================
   2. 营销会员能力区（market-member）
      左图右文，600 px 两栏等分
   ========================================================== */
.market-member {
    display: flex;
    justify-content: space-between;
    align-items: center;   /* 垂直居中 */
}
/* 左右两栏固定 600 px */
.market-member > div {
    flex: 0 0 600px;
}
/* 右侧文字区再左移 34 px，避免贴边 */
.market-member > div.right {
    padding-left: 34px;
}
/* 图片相对定位，方便后期加动画或微调 */
.market-member > div img {
    position: relative;
}
/* 文字块本身 */
.market-member .item {
    flex: 0 0 600px;
    box-sizing: border-box;
    position: relative;
}
/* 小标题：22 px 深蓝，加粗，不强制换行 */
.market-member .item h4 {
    line-height: 1;
    font-size: 22px;
    color: #3B426B;
    margin-bottom: 20px;
    font-weight: bold;
    white-space: pre-wrap;
}
/* 列表文字：18 px 灰蓝，行高 50 px */
.market-member .item .info {
    font-size: 18px;
    color: #7d88a2;
    line-height: 50px;
}
/* 列表前面的小蓝点（伪元素） */
.market-member .item .info:before {
    content: " ";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: rgba(60,118,255,1);
    border-radius: 50%;
    margin-right: 16px;
}
/* 二级描述：缩进 81 px，与蓝点对齐 */
.market-member .item .info-1 {
    font-size: 18px;
    color: #7d88a2;
    line-height: 50px;
    padding-left: 81px;
}

/* ==========================================================
   3. 朋友圈功能轮播（moments-function）
      竖版 Swiper，左侧导航按钮，右侧手机图
   ========================================================== */
/* 轮播容器：全宽 750 px 高 */
.moments-function .swiper-container {
    width: 100%;
    height: 750px;
    margin-bottom: 40px;
}
/* 每张 slide 整体向右偏移 612 px，实现“手机图在右” */
.moments-function .swiper-container .swiper-slide {
    left: 612px;
}
/* 手机图固定尺寸 389*750 px */
.moments-function .swiper-container .moments-page-item > img {
    width: 389px;
    height: 750px;
}
/* 左侧导航按钮：226*52 px 大胶囊，默认透明 */
.moments-function .swiper-container .swiper-pagination-bullet {
    width: 226px;
    height: 52px;
    border-radius: 52px;
    font-size: 20px;
    line-height: 52px;
    text-align: center;
    color: #3B426B;
    background: transparent;
    opacity: 1;
    border: 1px solid transparent;
}
/* 鼠标悬停时边框变蓝 */
.moments-function .swiper-container .swiper-pagination-bullet:hover {
    border-color: #3C76FF;
}
/* 左侧导航整体定位：距离左边 182 px，竖排居中 */
.moments-function .swiper-container-vertical > .swiper-pagination-bullets {
    left: 182px;
    width: 226px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
/* 当前选中按钮：蓝底白字 */
.moments-function .swiper-container .swiper-pagination-bullet-active {
    background: #3C76FF;
    color: #fff;
}
/* 按钮之间 70 px 间距 */
.moments-function .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0 70px 0;
}

/* ==========================================================
   4. 通用标题/副标题组合
   ========================================================== */
/* 大标题：26 px 深蓝，居中，粗 600，底部 50 px 留白 */
.sub-title {
    text-align: center;
    font-size: 26px;
    color: #3b426b;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 50px;
}
/* 副标题：18 px 灰蓝，居中，底部 20 px 留白 */
.sub-essay {
    font-size: 18px;
    color: #7d88a2;
    text-align: center;
    padding-bottom: 20px;
}
/* 两种顶部额外留白 */
.sub-title1 { padding-top: 80px; margin-bottom: 55px; }
.sub-title2 { padding-top: 92px; margin-bottom: 54px; }

/* ==========================================================
   5. 积分/权益提示图
   ========================================================== */
/* 图片区域上下留白，整体向右移 60 px，视觉居中 */
.tips-img {
    padding: 60px 0 92px;
    position: relative;
    left: 60px;
}

/* ==========================================================
   6. 源码映射（由 Sass 自动生成，可忽略）
   ========================================================== */
/*# sourceMappingURL=buyer.css.map */
