@charset "UTF-8";
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
  
    html, body {
      width: 100%;
      height: 100%;
      font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
      -webkit-font-smoothing: antialiased;
      background: #EADFCF;
    }


    /* 头部 */
    .header {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 10px 20px;
      background: linear-gradient(180deg,
        rgba(193, 127, 89, 0.12) 0%,
        rgba(247, 235, 217, 0) 100%);
      overflow: hidden;
    }

    /* 装饰性光斑 */
    .header::before {
      content: "";
      position: absolute;
      top: -60px;
      right: -40px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .header::after {
      content: "";
      position: absolute;
      top: 20px;
      left: 80px;
      width: 140px;
      height: 140px;
      background: radial-gradient(circle, rgba(193, 127, 89, 0.1) 0%, transparent 65%);
      pointer-events: none;
    }

    /* 左侧 Logo */
    .logo-wrap {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-img {
      height: 65px;
      width: auto;
      display: block;
      /* 去除白底，让金色与黑色融入暖色背景 */
      mix-blend-mode: multiply;
      filter: drop-shadow(0 1px 3px rgba(139, 90, 43, 0.15));
      border-radius: 10px
    }

    /* 右侧标题区 */
    .title-block {
      position: relative;
      z-index: 2;
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
    }

    .title-text {
      font-family: "Noto Serif SC", serif;
      font-weight: 700;
      font-size: 24px;
      letter-spacing: 2px;
      color: #3D2914;
      line-height: 1.3;
    }

    .title-divider {
      width: 48px;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, #C17F59 50%, transparent 100%);
      border-radius: 1px;
    }

    .title-sub {
      font-family: "Noto Sans SC", sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 3px;
      color: #8B6F4E;
      text-transform: uppercase;
    }

    /* 装饰 —— 角落的印章式印记 */
    .stamp-mark {
      position: absolute;
      top: 18px;
      right: 20px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #C17F59;
      opacity: 0.6;
      box-shadow: 0 0 0 3px rgba(193, 127, 89, 0.15);
      z-index: 3;
    }

     /* ========== Hero区 ========== */
    .hero {
      position: relative;
      padding: 48px 24px 60px;
      overflow: hidden;
      background: linear-gradient(180deg, #FFF6EA 0%, #FFFBF5 100%);
      background: -ms-linear-gradient(top, #FFF6EA 0%, #FFFBF5 100%);
    }
    .hero-decor {
      position: absolute;
    }
    .hero-glow-1 {
      top: -80px;
      left: -60px;
      width: 280px;
      height: 280px;
      background: #F7E4C4; /* IE 纯色回退 */
      background: radial-gradient(circle, rgba(245, 184, 114, 0.35) 0%, transparent 65%);
      background: -ms-radial-gradient(circle, rgba(245, 184, 114, 0.35) 0%, transparent 65%);
      border-radius: 50%;
    }
    .hero-glow-2 {
      bottom: -40px;
      right: -80px;
      width: 260px;
      height: 260px;
      background: #F7E0D8; /* IE 纯色回退 */
      background: radial-gradient(circle, rgba(242, 197, 184, 0.3) 0%, transparent 65%);
      background: -ms-radial-gradient(circle, rgba(242, 197, 184, 0.3) 0%, transparent 65%);
      border-radius: 50%;
    }
    .hero-petal {
      position: absolute;
      opacity: 0.5;
      -webkit-animation: floatPetal 8s ease-in-out infinite;
      -ms-animation: floatPetal 8s ease-in-out infinite;
      animation: floatPetal 8s ease-in-out infinite;
    }
    .hero-petal-1 {
      top: 60px;
      right: 40px;
      -webkit-animation-delay: 0s;
      -ms-animation-delay: 0s;
      animation-delay: 0s;
    }
    .hero-petal-2 {
      top: 120px;
      left: 30px;
      -webkit-animation-delay: -3s;
      -ms-animation-delay: -3s;
      animation-delay: -3s;
    }
    .hero-petal-3 {
      bottom: 80px;
      right: 60px;
      -webkit-animation-delay: -5s;
      -ms-animation-delay: -5s;
      animation-delay: -5s;
    }
    @-ms-keyframes floatPetal {
      0%, 100% { -ms-transform: translateY(0) rotate(0deg); }
      50% { -ms-transform: translateY(-12px) rotate(8deg); }
    }
    @-webkit-keyframes floatPetal {
      0%, 100% { -webkit-transform: translateY(0) rotate(0deg); }
      50% { -webkit-transform: translateY(-12px) rotate(8deg); }
    }
    @keyframes floatPetal {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-12px) rotate(8deg); }
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .hero-eyebrow {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(232, 146, 60, 0.1);
      border-radius: 999px;
      font-size: 13px;
      color: #D47A2A;
      font-weight: 500;
      margin-bottom: 24px;
    }
    .hero-eyebrow-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      margin-right: 8px; /* 替代 gap */
      border-radius: 50%;
      background: #E8923C;
      vertical-align: middle;
      -webkit-animation: pulseDot 2s ease-in-out infinite;
      -ms-animation: pulseDot 2s ease-in-out infinite;
      animation: pulseDot 2s ease-in-out infinite;
    }
    @-ms-keyframes pulseDot {
      0%, 100% { opacity: 1; -ms-transform: scale(1); }
      50% { opacity: 0.6; -ms-transform: scale(0.85); }
    }
    @-webkit-keyframes pulseDot {
      0%, 100% { opacity: 1; -webkit-transform: scale(1); }
      50% { opacity: 0.6; -webkit-transform: scale(0.85); }
    }
    @keyframes pulseDot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.85); }
    }
    .hero-title {
      font-family: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
      font-size: 42px;
      font-weight: 700;
      line-height: 1.35;
      color: #3D2E1F;
      margin-bottom: 18px;
      letter-spacing: 1px;
    }
    .hero-title em {
      font-style: normal;
      color: #D47A2A; /* IE 回退：显示纯色文字 */
    }
    .hero-subtitle {
      font-size: 15px;
      line-height: 1.75;
      color: #6B5742;
      margin-bottom: 36px;
      font-weight: 400;
    }

    .hero-cta-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .btn {
      display: inline-block;
      padding: 16px 32px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      border: none;
      outline: none;
      text-decoration: none;
      font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      text-align: center;
    }

    .btn-primary {
      background: #E8923C; /* IE9 纯色回退 */
       background: -ms-linear-gradient(135deg, #F5B872 0%, #E8923C 50%, #D47A2A 100%);
      background: linear-gradient(135deg, #F5B872 0%, #E8923C 50%, #D47A2A 100%);
      color: #fff;
    }

    .btn-primary:active {
      transform: scale(0.97);
      box-shadow: 0 4px 12px rgba(232, 146, 60, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: var(--soft-brown-deep);
      border: 1.5px solid rgba(139, 111, 82, 0.3);
    }

    .btn-secondary:active {
      transform: scale(0.97);
      background: rgba(139, 111, 82, 0.06);
    }

    .btn-icon {
      font-size: 18px;
    }
    /* ========== 数据展示区 ========== */
    .stats-section {
      padding: 0 24px;
      margin-top: -30px;
      position: relative;
      z-index: 3;
    }
    /* 双列：IE 用 -ms-grid，现代浏览器用标准 grid */
    .stats-grid {
      display: -ms-grid;
      -ms-grid-columns: 1fr 1fr;
      -ms-grid-rows: auto auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 12px;
    }
    .stat-card {
      background: #FFFFFF;
      background: rgba(255, 255, 255, 0.85);
      border-radius: 16px;
      padding: 20px 16px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow: 0 4px 20px rgba(139, 111, 82, 0.08);
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
    }
    .stat-card:active {
      -ms-transform: translateY(-2px);
      transform: translateY(-2px);
    }
    .stat-card:nth-child(1) { -ms-grid-column: 1; -ms-grid-row: 1; }
    .stat-card:nth-child(2) { -ms-grid-column: 2; -ms-grid-row: 1; }
    .stat-card:nth-child(3) { -ms-grid-column: 1; -ms-grid-row: 2; }
    .stat-card:nth-child(4) { -ms-grid-column: 2; -ms-grid-row: 2; }
    .stat-number {
      font-family: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
      font-size: 28px;
      font-weight: 600;
      color: #D47A2A; /* IE 回退：显示纯色数字 */
      background: linear-gradient(135deg, #E8923C, #C97A28);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 6px;
      line-height: 1.2;
    }
    .stat-label {
      font-size: 13px;
      color: #6B5742;
      font-weight: 400;
    }
    /* ========== 通用Section样式 ========== */
    .section {
      padding: 64px 24px;
      position: relative;
    }
    .section-alt {
      background: #FFF6EA;
    }
    /* ========== 核心理念区 ========== */
    .values-section {
      padding-top: 72px;
    }
    .values-grid {
      display: block;
    }
    .value-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      box-shadow: 0 8px 32px rgba(139, 111, 82, 0.12);
      position: relative;
      overflow: hidden;
      margin-bottom: 18px; /* 替代 gap */
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
    }
    .value-card:last-child {
      margin-bottom: 0;
    }
    .value-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      opacity: 0.06;
      -ms-transform: translate(30%, -30%);
      transform: translate(30%, -30%);
    }
    .value-card:nth-child(1)::before { background: #E8923C; }
    .value-card:nth-child(2)::before { background: #8B6F52; }
    .value-card:nth-child(3)::before { background: #E8A598; }
    .value-card:active {
      -ms-transform: translateY(-3px);
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(139, 111, 82, 0.18);
    }
    .value-icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: -ms-flexbox;
      -ms-flex-align: center;
      -ms-flex-pack: center;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .value-icon svg {
      width: 28px;
      height: 28px;
    }
    .value-icon-1 {
      background: linear-gradient(135deg, rgba(232, 146, 60, 0.15), rgba(232, 146, 60, 0.05));
      background: -ms-linear-gradient(135deg, rgba(232, 146, 60, 0.15), rgba(232, 146, 60, 0.05));
    }
    .value-icon-1 svg { stroke: #E8923C; }
    .value-icon-2 {
      background: linear-gradient(135deg, rgba(139, 111, 82, 0.15), rgba(139, 111, 82, 0.05));
      background: -ms-linear-gradient(135deg, rgba(139, 111, 82, 0.15), rgba(139, 111, 82, 0.05));
    }
    .value-icon-2 svg { stroke: #8B6F52; }
    .value-icon-3 {
      background: linear-gradient(135deg, rgba(232, 165, 152, 0.2), rgba(232, 165, 152, 0.05));
      background: -ms-linear-gradient(135deg, rgba(232, 165, 152, 0.2), rgba(232, 165, 152, 0.05));
    }
    .value-icon-3 svg { stroke: #E8A598; }
    .value-title {
      font-family: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
      font-size: 20px;
      font-weight: 600;
      color: #3D2E1F;
      margin-bottom: 8px;
    }
    .value-desc {
      font-size: 14px;
      line-height: 1.75;
      color: #6B5742;
    }
    /* ========== 核心服务区 ========== */
    .services-section {
      background: #FFF6EA;
    }
    .services-grid {
      display: block;
    }
    .service-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: start;
      align-items: flex-start;
      box-shadow: 0 4px 16px rgba(139, 111, 82, 0.06);
      margin-bottom: 16px; /* 替代 gap */
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      position: relative;
    }
    .service-card:last-child {
      margin-bottom: 0;
    }
    .service-card:active {
      -ms-transform: translateX(4px);
      transform: translateX(4px);
    }
    .service-card-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: -ms-flexbox;
      -ms-flex-align: center;
      -ms-flex-pack: center;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 18px; /* 替代 gap */
      -ms-flex-negative: 0;
      flex-shrink: 0;
    }
    .service-card-icon svg {
      width: 28px;
      height: 28px;
    }
    .service-icon-1 {
      background: linear-gradient(135deg, #FFF0D9, #FFE0B3);
      background: -ms-linear-gradient(135deg, #FFF0D9, #FFE0B3);
    }
    .service-icon-1 svg { stroke: #D47A2A; }
    .service-icon-2 {
      background: linear-gradient(135deg, #F3E9DC, #E8D9C4);
      background: -ms-linear-gradient(135deg, #F3E9DC, #E8D9C4);
    }
    .service-icon-2 svg { stroke: #8B6F52; }
    .service-icon-3 {
      background: linear-gradient(135deg, #FCE5DD, #F5CEC2);
      background: -ms-linear-gradient(135deg, #FCE5DD, #F5CEC2);
    }
    .service-icon-3 svg { stroke: #D87A62; }
    .service-content {
      -ms-flex: 1 1 0%;
      flex: 1;
    }
    .service-title {
      font-family: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
      font-size: 18px;
      font-weight: 600;
      color: #3D2E1F;
      margin-bottom: 6px;
    }
    .service-desc {
      font-size: 14px;
      line-height: 1.7;
      color: #6B5742;
    }
    .service-tag {
      display: inline-block;
      margin-top: 10px;
      padding: 3px 10px;
      font-size: 12px;
      color: #D47A2A;
      background: rgba(232, 146, 60, 0.1);
      border-radius: 999px;
      font-weight: 500;
    }
    /* ========== 采访方式区 ========== */
    .plans-grid {
      display: block;
    }
    .plan-card {
      background: #fff;
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 4px 16px rgba(139, 111, 82, 0.06);
      border: 1.5px solid transparent;
      margin-bottom: 16px; /* 替代 gap */
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      position: relative;
    }
    .plan-card:last-child {
      margin-bottom: 0;
    }
    .plan-card.featured {
      border-color: #E8923C;
      background: linear-gradient(180deg, #FFFBF3 0%, #FFFFFF 100%);
      background: -ms-linear-gradient(top, #FFFBF3 0%, #FFFFFF 100%);
      box-shadow: 0 8px 28px rgba(232, 146, 60, 0.15);
    }
    .plan-card.featured::before {
      content: '推荐';
      position: absolute;
      top: 16px;
      right: 16px;
      padding: 3px 10px;
      font-size: 11px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, #E8923C, #D47A2A);
      background: -ms-linear-gradient(135deg, #E8923C, #D47A2A);
      border-radius: 999px;
      letter-spacing: 1px;
    }
    .plan-card:active {
      -ms-transform: translateY(-2px);
      transform: translateY(-2px);
    }
    .plan-header {
      margin-bottom: 16px;
    }
    .plan-name {
      font-family: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
      font-size: 19px;
      font-weight: 600;
      color: #3D2E1F;
      margin-bottom: 4px;
    }
    .plan-subtitle {
      font-size: 13px;
      color: #9A8770;
    }
    .plan-price {
      display: block;
      margin-bottom: 18px;
    }
    .plan-price-currency {
      font-size: 16px;
      font-weight: 500;
      color: #D47A2A;
      vertical-align: baseline;
    }
    .plan-price-value {
      font-family: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
      font-size: 32px;
      font-weight: 600;
      color: #E8923C;
      line-height: 1;
      vertical-align: baseline;
      margin: 0 2px; /* 替代 gap */
    }
    .plan-price-unit {
      font-size: 13px;
      color: #9A8770;
      vertical-align: baseline;
    }
    .plan-features {
      list-style: none;
      margin-bottom: 20px;
    }
    .plan-features li {
      display: block;
      font-size: 14px;
      color: #6B5742;
      padding: 6px 0;
      line-height: 1.5;
    }
    .plan-features li svg {
      width: 18px;
      height: 18px;
      margin-right: 10px; /* 替代 gap */
      vertical-align: middle;
      stroke: #E8923C;
    }
    .plan-btn {
      width: 100%;
      padding: 13px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      -webkit-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      transition: all 0.2s ease;
      border: 1.5px solid;
      background: transparent;
      font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    }
    .plan-btn-outline {
      color: #5C4A36;
      border-color: rgba(139, 111, 82, 0.25);
    }
    .plan-btn-outline:active {
      background: rgba(139, 111, 82, 0.06);
    }
    .plan-btn-primary {
      color: #fff;
      border-color: transparent;
      background: #E8923C; /* IE9 回退 */
      background: -ms-linear-gradient(135deg, #F5B872 0%, #D47A2A 100%);
      background: linear-gradient(135deg, #F5B872 0%, #D47A2A 100%);
      box-shadow: 0 4px 14px rgba(232, 146, 60, 0.3);
    }
    .plan-btn-primary:active {
      -ms-transform: scale(0.98);
      transform: scale(0.98);
    }
    /* ========== 流程区 ========== */
    .process-section {
      background: #FFF6EA;
    }
    .process-timeline {
      position: relative;
      padding-left: 36px;
    }
    .process-timeline::before {
      content: '';
      position: absolute;
      left: 15px;
      top: 20px;
      bottom: 20px;
      width: 2px;
      background: linear-gradient(180deg, #F5B872, #F2C5B8, transparent);
      background: -ms-linear-gradient(top, #F5B872, #F2C5B8, transparent);
      border-radius: 2px;
    }
    .process-step {
      position: relative;
      padding: 20px 0;
    }
    .process-step:first-child { padding-top: 0; }
    .process-step:last-child { padding-bottom: 0; }
    .process-step-dot {
      position: absolute;
      left: -36px;
      top: 24px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid #E8923C;
      display: -ms-flexbox;
      -ms-flex-align: center;
      -ms-flex-pack: center;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(232, 146, 60, 0.2);
    }
    .process-step:first-child .process-step-dot { top: 4px; }
    .process-step-dot svg {
      width: 16px;
      height: 16px;
      stroke: #E8923C;
    }
    .process-step-num {
      font-size: 12px;
      font-weight: 600;
      color: #E8923C;
      letter-spacing: 1.5px;
      margin-bottom: 4px;
    }
    .process-step-title {
      font-family: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
      font-size: 18px;
      font-weight: 600;
      color: #3D2E1F;
      margin-bottom: 6px;
    }
    .process-step-desc {
      font-size: 14px;
      color: #6B5742;
      line-height: 1.7;
    }
    /* ========== 用户评价区 ========== */
    .testimonials-section {
      background: #FFFBF5;
    }
    .testimonials-grid {
      display: block;
    }
    .testimonial-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      box-shadow: 0 8px 32px rgba(139, 111, 82, 0.12);
      position: relative;
      margin-bottom: 18px; /* 替代 gap */
    }
    .testimonial-card:last-child {
      margin-bottom: 0;
    }
    .testimonial-quote {
      font-family: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
      font-size: 48px;
      color: rgba(232, 146, 60, 0.2);
      line-height: 1;
      position: absolute;
      top: 16px;
      left: 20px;
      font-style: italic;
    }
    .testimonial-content {
      position: relative;
      z-index: 1;
      font-size: 15px;
      line-height: 1.8;
      color: #3D2E1F;
      margin-bottom: 18px;
      padding-top: 12px;
      font-weight: 400;
    }
    .testimonial-author {
      display: -ms-flexbox;
      -ms-flex-align: center;
      display: flex;
      align-items: center;
    }
    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #F5B872, #F2C5B8);
      background: -ms-linear-gradient(135deg, #F5B872, #F2C5B8);
      display: -ms-flexbox;
      -ms-flex-align: center;
      -ms-flex-pack: center;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      font-family: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
      margin-right: 12px; /* 替代 gap */
      -ms-flex-negative: 0;
      flex-shrink: 0;
    }
    .testimonial-info h4 {
      font-size: 14px;
      font-weight: 500;
      color: #3D2E1F;
      margin-bottom: 2px;
    }
    .testimonial-info p {
      font-size: 12px;
      color: #9A8770;
    }
    /* ========== CTA区 ========== */
    .cta-section {
      padding: 64px 24px;
      background: linear-gradient(180deg, #FFF6EA 0%, #FBF0DF 100%);
      background: -ms-linear-gradient(top, #FFF6EA 0%, #FBF0DF 100%);
      position: relative;
      overflow: hidden;
    }
    .cta-glow {
      position: absolute;
    }
    .cta-glow-1 {
      top: -100px;
      left: 50%;
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 400px;
      height: 300px;
      background: #F7E4C4; /* IE 回退 */
      background: radial-gradient(ellipse, rgba(245, 184, 114, 0.35) 0%, transparent 65%);
      background: -ms-radial-gradient(ellipse, rgba(245, 184, 114, 0.35) 0%, transparent 65%);
    }
    .cta-glow-2 {
      bottom: -120px;
      left: -80px;
      width: 300px;
      height: 250px;
      background: #F7E0D8; /* IE 回退 */
      background: radial-gradient(circle, rgba(242, 197, 184, 0.25) 0%, transparent 65%);
      background: -ms-radial-gradient(circle, rgba(242, 197, 184, 0.25) 0%, transparent 65%);
    }
    .cta-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .cta-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 24px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(232, 146, 60, 0.15), rgba(242, 197, 184, 0.15));
      background: -ms-linear-gradient(135deg, rgba(232, 146, 60, 0.15), rgba(242, 197, 184, 0.15));
      display: -ms-flexbox;
      -ms-flex-align: center;
      -ms-flex-pack: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cta-icon svg {
      width: 32px;
      height: 32px;
      stroke: #E8923C;
    }
    .cta-title {
      font-family: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
      font-size: 28px;
      font-weight: 600;
      color: #3D2E1F;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .cta-subtitle {
      font-size: 15px;
      color: #6B5742;
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .cta-btn {
      width: 100%;
      padding: 18px;
      border-radius: 999px;
      background: #E8923C; /* IE9 回退 */
      background: -ms-linear-gradient(135deg, #F5B872 0%, #E8923C 50%, #D47A2A 100%);
      background: linear-gradient(135deg, #F5B872 0%, #E8923C 50%, #D47A2A 100%);
      color: #fff;
      font-size: 17px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(232, 146, 60, 0.35);
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    }
    .cta-btn:active {
      -ms-transform: scale(0.97);
      transform: scale(0.97);
      box-shadow: 0 4px 12px rgba(232, 146, 60, 0.3);
    }
    .cta-btn svg {
      display: inline-block;
      vertical-align: middle;
      margin-left: 6px;
    }
    .cta-note {
      margin-top: 16px;
      font-size: 12px;
      color: #9A8770;
    }