/* ============================================================
   AI写作项目详情页 - 完整样式（已移除模块间距，由HTML控制）
   ============================================================ */

/* ============================================================
   一、全局变量（:root）
   搜索“←”可快速定位所有可调数值
   ============================================================ */
   :root {
    --aw-header-bg: #3c8aff;               /* ← Hero蓝色背景 */
    --aw-tag-color: #d5f888;               /* ← Hero标签文字颜色 */
    --aw-title-gradient: linear-gradient(90deg, #d5f888 0%, #f4ffdd 100%); /* ← Hero标题渐变 */
    --aw-back-bg: #ffffff;                 /* ← 返回按钮背景 */
    --aw-back-hover-bg: #f6f7f9;           /* ← 返回按钮hover背景 */
    --aw-back-text: #000000;               /* ← 返回按钮文字颜色 */
    --aw-back-icon: #202425;               /* ← 返回按钮图标颜色 */
    --aw-info-label-bg: rgba(255, 255, 255, 0.15);
  
    /* ===== 设计目标模块内部变量（保留，不影响模块间距） ===== */
    --goal-padding-top: 120px;             /* ← 卡片顶部内边距 */
    --goal-padding-bottom: 0px;            /* ← 卡片底部内边距 */
    --goal-padding-leftright: 60px;        /* ← 卡片左右内边距 */
    --cycle-margin-top: 80px;              /* ← 标题 → 写作顺序周期（卡片内部） */
    --grid-margin-top: 80px;               /* ← 写作顺序周期 → 三个卡片（卡片内部） */
    --grid-gap: 20px;                      /* ← 三个卡片之间的左右间距（卡片内部） */
    --item-gap: 20px;                      /* ← 序号圆与标签间距（卡片内部） */
    --body-gap: 10px;                      /* ← 卡片内部各行间距（卡片内部） */
    --header-margin-bottom: 10px;          /* ← 标签到标题的间距（卡片内部） */
  
    /* ===== 设计策略01页内部变量（保留） ===== */
    --right-img-offset-x: -50px;
    --right-img-offset-y: -60px;
    --left-img-margin-top: 10px;
    --strategy-padding-x: 20px;
  }
  
  /* ============================================================
     二、返回按钮
     ============================================================ */
  .aw-back-bar {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    pointer-events: none;
  }
  
  .aw-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 24px;
    padding: 0 10px 0 4px;
    background-color: var(--aw-back-bg);
    border-radius: 12px;
    pointer-events: auto;
    transition: background-color 200ms ease, 
                box-shadow 200ms ease, 
                opacity 200ms ease,
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    opacity: 0.5;
    transform: translateY(0);
  }
  
  .aw-back:hover {
    background-color: var(--aw-back-hover-bg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(-4px);
  }
  
  .aw-back:hover .aw-back__icon {
    color: #3C8AFF;
  }
  
  .aw-back:hover .aw-back__text {
    color: #3C8AFF;
  }
  
  .aw-back__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--aw-back-icon);
    transition: color 200ms ease;
  }
  
  .aw-back__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--aw-back-text);
    transition: color 200ms ease;
  }
  
  /* ============================================================
     三、Hero 首屏（蓝色背景）
     ============================================================ */
  .aw-hero {
    background-color: var(--aw-header-bg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 0;
  }
  
  .aw-hero .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .aw-hero__tag {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    color: var(--aw-tag-color);
    margin-bottom: 10px;
  }
  
  .aw-hero__title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 600;
    line-height: 1.4;
    background: var(--aw-title-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 74px;
    max-width: 786px;
  }
  
  .aw-hero__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 828px;
  }
  
  .aw-hero__row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 30px;
    align-items: start;
  }
  
  .aw-hero__label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    color: #ffffff;
  }
  
  .aw-hero__content {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #ffffff;
  }
  
  /* ============================================================
     四、通用正文样式
     ============================================================ */
  .aw-page {
    background: #ffffff;
  }
  
  .aw-section + .aw-section {
    padding-top: 0;
  }
  
  .aw-title-xl {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.4;
    color: #111111;
    margin-bottom: 24px;
  }
  
  .aw-title-lg {
    font-size: clamp(24px, 2.5vw, 30px);
    font-weight: 600;
    line-height: 1.4;
    color: #111111;
    margin-bottom: 20px;
  }
  
  .aw-title-md {
    font-size: clamp(22px, 2.3vw, 28px);
    font-weight: 600;
    line-height: 1.4;
    color: #111111;
    margin-bottom: 20px;
  }
  
  .aw-title-sm {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    line-height: 1.4;
    color: #666666;
    margin-bottom: 16px;
  }
  
  .aw-num {
    font-size: clamp(56px, 6vw, 80px);
    font-weight: 600;
    line-height: 1;
    color: #3C8AFF;
    margin-bottom: 8px;
  }
  
  .aw-label-lg {
    font-size: clamp(18px, 1.6vw, 20px);
    font-weight: 600;
    line-height: 1.4;
    color: #111111;
    margin-bottom: 12px;
  }
  
  .aw-label-md {
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    color: #666666;
    margin-bottom: 8px;
  }
  
  .aw-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #111111;
    margin-bottom: 12px;
  }
  
  .aw-caption {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: #666666;
    margin-bottom: 8px;
  }
  
  .aw-figure {
    margin-top: 32px;
  }
  
  .aw-figure img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .aw-decision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
  }
  
  .aw-decision-grid--two {
    grid-template-columns: 1fr 1fr;
  }
  
  .aw-decision-grid img {
    width: 100%;
    border-radius: 10px;
  }
  
  .section-s01 > .container > p:first-child,
  .section-s02 > .container > p.aw-title-xl,
  .section-s03 > .container > p:first-child {
    font-size: clamp(56px, 6vw, 80px);
    font-weight: 600;
    line-height: 1;
    color: #3C8AFF;
    margin-bottom: 8px;
  }
  
  .aw-footer-deco {
    text-align: center;
    padding: 40px 0 80px;
  }
  
  .aw-footer-deco img {
    max-width: 122px;
    margin-inline: auto;
  }
  
  /* ============================================================
     五、项目背景（section-bg 专用）
     ============================================================ */
  .aw-bg-wrapper {
    display: flex;
    gap: clamp(24px, 6vw, 78px);
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .aw-bg-left {
    flex: 1 1 400px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .aw-bg-right {
    flex: 1 1 200px;
    min-width: 200px;
  }
  
  .aw-bg-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }
  
  .aw-bg-block {
    width: 100%;
    min-height: auto;
    padding: 20px 24px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .aw-bg-block--gray {
    background: #F9F9FB;
  }
  
  .aw-bg-block--blue {
    background: #3C8AFF;
  }
  
  .aw-bg-block__label {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #111;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin-bottom: 4px;
  }
  
  .aw-bg-block--blue .aw-bg-block__label {
    color: #fff;
  }
  
  .aw-bg-block__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #111;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0;
  }
  
  .aw-bg-block__text--white {
    color: #fff;
  }
  
  .aw-bg-block__text strong {
    font-weight: 600;
  }
  
  .aw-bg-block__highlight-bg {
    display: inline-block;
    background: #E4FBAF;
    color: #3C8AFF;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    line-height: 26px;
    box-sizing: border-box;
  }
  
  /* ============================================================
     六、用户洞察（section-insight 专用）
     ============================================================ */
  .aw-insight-wrapper {
    display: flex;
    gap: clamp(16px, 2vw, 20px);
    align-items: stretch;
    flex-wrap: wrap;
  }
  
  .aw-insight-left {
    flex: 1 1 300px;
    min-width: 260px;
    background: #3C8AFF;
    border-radius: 10px;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  
  .aw-insight-card {
    width: 100%;
    flex: 1;
    background: #F9F9FB;
    border-radius: 10px 10px 10px 10px;
    padding: 24px 28px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
  }
  
  .aw-insight-bottom-bar {
    height: 10px;
    background: #3C8AFF;
    border-radius: 0 0 10px 10px;
    flex-shrink: 0;
  }
  
  .aw-insight-content p {
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0 0 8px 0;
  }
  
  .aw-insight-content p strong {
    font-weight: 600;
    display: block;
    margin-top: 12px;
  }
  
  .aw-insight-content p strong:first-child {
    margin-top: 0;
  }
  
  .aw-insight-content p:last-of-type {
    margin-bottom: 0;
  }
  
  .aw-insight-survey {
    color: #0357FF !important;
    margin-top: 10px !important;
    font-size: 16px;
    line-height: 24px;
  }
  
  .aw-insight-right {
    flex: 1 1 300px;
    min-width: 260px;
    background: #3C8AFF;
    border-radius: 10px;
    padding: clamp(24px, 4vw, 40px) clamp(16px, 2vw, 20px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .aw-insight-right-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .aw-insight-right-title {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0;
  }
  
  .aw-insight-right-highlight {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0;
    position: relative;
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    z-index: 1;
  }
  
  .aw-insight-right-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 510px;
    height: 14px;
    background: #DEFAA0;
    border-radius: 2px;
    z-index: -1;
  }
  
  .aw-insight-right-desc {
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin-top: 20px;
    max-width: 100%;
  }
  
  /* ============================================================
     七、设计切入点（section-entry 专用）
     ============================================================ */
  .aw-entry-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  
  .aw-entry-left {
    flex: 1 1 400px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .aw-entry-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
  }
  
  .aw-entry-arrow img {
    width: clamp(24px, 3vw, 40px);
    height: auto;
    display: block;
  }
  
  .aw-entry-block {
    width: 100%;
    background: #F9F9FB;
    border-radius: 10px;
    display: flex;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 90px;
  }
  
  .aw-entry-block--small {
    min-height: 90px;
  }
  
  .aw-entry-block--small .aw-entry-block__bar {
    width: 10px;
    flex-shrink: 0;
    background: #3C8AFF;
    border-radius: 10px 0 0 10px;
    min-height: 90px;
    align-self: stretch;
  }
  
  .aw-entry-block--medium {
    min-height: 214px;
  }
  
  .aw-entry-block--medium .aw-entry-block__bar {
    width: 10px;
    flex-shrink: 0;
    background: #3C8AFF;
    border-radius: 10px 0 0 10px;
    min-height: 214px;
    align-self: stretch;
  }
  
  .aw-entry-block__content {
    flex: 1;
    padding: 16px 20px 16px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .aw-entry-block__label {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #3C8AFF;
    margin-bottom: 0;
  }
  
  .aw-entry-block__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #111;
    margin: 0;
  }
  
  .aw-entry-three-col {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .aw-entry-col {
    flex: 1 1 30%;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    padding: 0 4px;
    text-align: center;
  }
  
  .aw-entry-col p {
    font-size: 16px;
    line-height: 24px;
    color: #111;
    margin: 0 0 12px 0;
  }
  
  .aw-entry-col p:last-child {
    margin-bottom: 0;
  }
  
  .aw-entry-col__title {
    font-weight: 600 !important;
    margin-bottom: 12px !important;
  }
  
  .aw-entry-col--center {
    background: #DEFAA0;
    border: 1px dashed #0357FF;
    border-radius: 10px;
    padding: 8px 12px;
    margin: 0;
    text-align: center;
  }
  
  .aw-entry-col--center p {
    color: #3C8AFF;
  }
  
  .aw-entry-col--center .aw-entry-col__title {
    font-weight: 600 !important;
  }
  
  .aw-entry-block__content--design .aw-entry-block__text {
    line-height: 24px;
    margin: 0;
  }
  
  .aw-entry-right {
    flex: 0 0 clamp(240px, 30vw, 432px);
    aspect-ratio: 1/1;
    max-width: 100%;
    background: #3C8AFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 40px);
    box-sizing: border-box;
    flex-shrink: 0;
  }
  
  .aw-entry-circle {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .aw-entry-circle__title {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block;
  }
  
  .aw-entry-circle__highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-weight: 600;
  }
  
  .aw-entry-circle__highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: #DEFAA0;
    border-radius: 2px;
    z-index: -1;
  }
  
  .aw-entry-circle__desc {
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 600;
    line-height: 1.6;
    color: #ffffff;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0;
  }
  
  /* ============================================================
     八、写作场景拆解（section-scene 专用）
     ============================================================ */
  .aw-scene-wrapper {
    display: flex;
    gap: clamp(32px, 8vw, 134px);
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .aw-scene-left {
    flex: 1 1 280px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
  }
  
  .aw-scene-left__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #111111;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0;
  }
  
  .aw-scene-left__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #111111;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0;
    margin-top: 10px;
  }
  
  .aw-scene-left__image {
    margin-top: 10px;
  }
  
  .aw-scene-left__image img {
    width: 100%;
    max-width: 318px;
    height: auto;
    display: block;
    border-radius: 10px;
  }
  
  .aw-scene-right {
    flex: 1 1 300px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
  }
  
  .aw-scene-right__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #111111;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0;
  }
  
  .aw-scene-right__image {
    margin-top: 10px;
  }
  
  .aw-scene-right__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }
  
  .aw-scene-right__content {
    margin-top: 10px;
  }
  
  .aw-scene-right__label {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #111111;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0;
  }
  
  .aw-scene-right__list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
  }
  
  .aw-scene-right__list li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #111111;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin-bottom: 8px;
    padding-left: 0;
  }
  
  .aw-scene-right__list li:last-child {
    margin-bottom: 0;
  }
  
  .aw-scene-highlight {
    display: inline-block;
    background: #3C8AFF;
    color: #ffffff;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 4px;
    line-height: 24px;
    box-sizing: border-box;
  }
  
  /* ============================================================
     九、设计目标（section-goal 专用）
     ============================================================ */
  .aw-goal-card {
    width: 100%;
    max-width: 1200px;
    min-height: 640px;
    height: auto;
    background: #3C8AFF;
    border-radius: 10px;
    padding: clamp(40px, 8vw, 120px) clamp(20px, 4vw, 60px) clamp(30px, 4vw, 60px);
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .aw-goal-card__title {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0;
    text-align: left;
  }
  
  .aw-goal-cycle {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 20px);
    margin-top: clamp(30px, 6vw, 80px);
    flex-wrap: wrap;
  }
  
  .aw-goal-cycle__label {
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 400;
    line-height: 24px;
    color: #F3F7FF;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    padding: 0 10px;
    text-align: center;
  }
  
  .aw-goal-cycle__arrow {
    font-size: 16px;
    color: #F3F7FF;
    opacity: 0.5;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
  }
  
  .aw-goal-cycle__arrow--left {
    margin-right: 10px;
  }
  
  .aw-goal-cycle__arrow--right {
    margin-left: 10px;
  }
  
  .aw-goal-grid {
    display: flex;
    gap: clamp(16px, 2vw, 30px);
    margin-top: clamp(30px, 6vw, 80px);
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .aw-goal-item {
    flex: 1 1 200px;
    min-width: 160px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .aw-goal-item__header {
    display: flex;
    align-items: center;
    gap: var(--item-gap);
    margin-bottom: var(--header-margin-bottom);
  }
  
  .aw-goal-item__num {
    width: clamp(48px, 4vw, 60px);
    height: clamp(48px, 4vw, 60px);
    border-radius: 50%;
    background: #ffffff;
    color: #3C8AFF;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 600;
    line-height: clamp(48px, 4vw, 60px);
    text-align: center;
    flex-shrink: 0;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
  }
  
  .aw-goal-item__tag {
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
  }
  
  .aw-goal-item__title {
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 400;
    line-height: 1.3;
    color: #DEFAA0;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0 0 var(--body-gap) 0;
  }
  
  .aw-goal-item__desc {
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 400;
    line-height: 24px;
    color: #DEFAA0;
    font-family: "PingFang SC", -apple-system, "Helvetica Neue", sans-serif;
    margin: 0;
  }
  
  /* ============================================================
     十、设计策略01页
     ============================================================ */
  .module.strategy-01 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  
  .module.strategy-01 .header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .module.strategy-01 .header .num {
    width: clamp(56px, 6vw, 80px);
    flex-shrink: 0;
    font-size: clamp(56px, 6vw, 80px);
    font-weight: 600;
    line-height: 1;
    color: #3C8AFF;
    margin-top: -10px;
  }
  
  .module.strategy-01 .right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .module.strategy-01 .right-content .sub {
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 24px;
    color: #3C8AFF;
  }
  
  .module.strategy-01 .right-content .main {
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.2;
    font-weight: 700;
    color: #3C8AFF;
    margin-top: 6px;
    position: relative;
    display: inline-block;
  }
  
  .module.strategy-01 .right-content .main .highlight {
    position: relative;
    display: inline-block;
  }
  
  .module.strategy-01 .right-content .main .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 117px;
    height: 14px;
    background: #DEFAA0;
    z-index: -1;
  }
  
  .module.strategy-01 .right-content .user-expect {
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    margin-top: 10px;
    margin-bottom: clamp(20px, 4vw, 50px);
  }
  
  .module.strategy-01 .right-content .middle-title {
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    margin-bottom: 0;
  }
  
  .module.strategy-01 .right-content .content-row {
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, 6vw, 90px);
    flex-wrap: wrap;
  }
  
  .module.strategy-01 .right-content .left-img {
    flex-shrink: 0;
    max-width: 315px;
    width: 100%;
    background: none;
    border-radius: 8px;
    display: block;
    margin-top: 10px;
  }
  
  .module.strategy-01 .right-content .left-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }
  
  .module.strategy-01 .right-content .right-area {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, 5vw, 70px);
    flex-wrap: wrap;
  }
  
  .module.strategy-01 .right-content .modules {
    flex: 1 1 300px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .module.strategy-01 .right-content .module-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .module.strategy-01 .right-content .module-item .circle {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #3C8AFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2px;
  }
  
  .module.strategy-01 .right-content .module-item .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .module.strategy-01 .right-content .module-item .content .title {
    font-size: clamp(18px, 1.6vw, 20px);
    line-height: 24px;
    font-weight: 700;
    color: #3C8AFF;
  }
  
  .module.strategy-01 .right-content .module-item .content .title.small {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #111111;
  }
  
  .module.strategy-01 .right-content .module-item .content .desc {
    font-size: 16px;
    line-height: 24px;
    color: #111111;
  }
  
  .module.strategy-01 .right-content .module-item .content .desc.light {
    color: rgba(17, 17, 17, 0.5);
  }
  
  .module.strategy-01 .right-content .module-item .content .desc .highlight-bg {
    background: #F3F8FF;
    color: #3C8AFF;
    padding: 0 4px;
  }
  
  .module.strategy-01 .right-content .module-item .content .extra-img {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .module.strategy-01 .right-content .module-item .content .extra-img img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
  }
  
  .module.strategy-01 .right-content .module-item .content .extra-img .caption {
    font-size: 16px;
    line-height: 24px;
    color: rgba(17, 17, 17, 0.5);
  }
  
  .module.strategy-01 .right-content .module-item .content .extra-text {
    margin-top: 4px;
    white-space: normal;
  }
  
  .module.strategy-01 .right-content .right-img {
    flex-shrink: 0;
    max-width: 272px;
    width: 100%;
    height: auto;
    background: none;
    border-radius: 8px;
    display: block;
    transform: none;
    margin-top: 16px;
  }
  
  .module.strategy-01 .right-content .right-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }
  
  /* ============================================================
     响应式
     ============================================================ */
  @media (max-width: 1280px) {
    .aw-hero__title {
      font-size: clamp(36px, 4.5vw, 56px);
    }
  }
  
  @media (max-width: 1024px) {
    .aw-bg-wrapper {
      flex-direction: column;
      gap: 32px;
    }
    .aw-bg-left {
      flex: 1 1 auto;
      width: 100%;
    }
    .aw-bg-block {
      width: 100%;
      min-height: auto;
      padding: 16px 20px;
    }
    .aw-bg-right {
      width: 100%;
    }
  
    .aw-insight-wrapper {
      flex-direction: column;
      gap: 32px;
    }
    .aw-insight-left,
    .aw-insight-right {
      flex: 1 1 auto;
      width: 100%;
      height: auto;
    }
    .aw-insight-card {
      height: auto;
      min-height: 320px;
      justify-content: center;
    }
    .aw-insight-left {
      height: auto;
      padding-bottom: 10px;
    }
    .aw-insight-bottom-bar {
      height: 10px;
      width: 100%;
    }
    .aw-insight-right {
      height: auto;
      padding: 30px 16px;
    }
    .aw-insight-right-title {
      font-size: 28px;
      line-height: 40px;
    }
    .aw-insight-right-highlight {
      font-size: 28px;
      line-height: 40px;
      white-space: normal;
    }
    .aw-insight-right-highlight::after {
      height: 10px;
      bottom: 3px;
      width: 90%;
    }
    .aw-insight-right-desc {
      font-size: 16px;
      line-height: 28px;
    }
  
    .aw-entry-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }
    .aw-entry-left {
      flex: 1 1 auto;
      width: 100%;
    }
    .aw-entry-block {
      width: 100%;
      height: auto;
      min-height: 90px;
    }
    .aw-entry-block--medium {
      height: auto;
      min-height: 214px;
    }
    .aw-entry-block--small .aw-entry-block__bar,
    .aw-entry-block--medium .aw-entry-block__bar {
      height: auto;
      min-height: 90px;
      align-self: stretch;
    }
    .aw-entry-right {
      flex: 0 0 320px;
      width: 320px;
      height: 320px;
    }
    .aw-entry-circle__title {
      font-size: 26px;
    }
    .aw-entry-circle__desc {
      font-size: 16px;
    }
    .aw-entry-three-col {
      flex-wrap: wrap;
    }
    .aw-entry-col {
      flex: 1 1 30%;
      min-width: 80px;
    }
    .aw-entry-col--center {
      margin: 0;
    }
    .aw-entry-arrow img {
      width: 32px;
      height: 32px;
    }
  
    .aw-scene-wrapper {
      flex-direction: column;
      gap: 40px;
    }
    .aw-scene-left {
      flex: 1 1 auto;
      width: 100%;
    }
    .aw-scene-left__image img {
      width: 100%;
      height: auto;
      max-width: 100%;
    }
    .aw-scene-right {
      flex: 1 1 auto;
      width: 100%;
    }
  
    .module.strategy-01 {
      padding-left: 0;
      padding-right: 0;
    }
    .module.strategy-01 .right-content .content-row {
      flex-direction: column;
      gap: 30px;
    }
    .module.strategy-01 .right-content .right-area {
      flex-direction: column;
      gap: 30px;
    }
    .module.strategy-01 .right-content .left-img {
      width: 100%;
      height: auto;
      margin-top: 10px;
    }
    .module.strategy-01 .right-content .right-img {
      width: 100%;
      height: auto;
      transform: none;
      margin-top: 16px;
    }
    .module.strategy-01 .right-content .module-item .content .extra-text {
      white-space: normal;
    }
  
    .aw-goal-card {
      width: 100%;
      height: auto;
      min-height: 640px;
      padding: 80px 30px 40px;
    }
    .aw-goal-grid {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      margin-top: 40px;
      justify-content: center;
    }
    .aw-goal-item {
      max-width: 100%;
      width: 100%;
      align-items: center;
      text-align: center;
    }
    .aw-goal-item__header {
      justify-content: center;
    }
    .aw-goal-item__title {
      font-size: 20px;
    }
    .aw-goal-cycle {
      margin-top: 30px;
    }
  }
  
  