
    .funeng-page * { margin: 0; padding: 0; box-sizing: border-box; }
    .funeng-page {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      color: #172033;
      background: #f6f8fb;
      line-height: 1.65;
    }
    .funeng-page a { text-decoration: none; color: inherit; }
    .funeng-page .page { overflow: hidden; }
    .funeng-page .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

    .funeng-page .nav {
      height: 72px;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(15, 33, 64, .08);
    }
    .funeng-page .nav-inner {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .funeng-page .logo {
      font-weight: 800;
      letter-spacing: 1px;
      color: #0b4ec4;
      font-size: 22px;
    }
    .funeng-page .nav-links {
      display: flex;
      gap: 28px;
      color: #536172;
      font-size: 14px;
    }
    .funeng-page .nav-cta {
      padding: 10px 18px;
      background: #ff7a1a;
      color: #101828;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 10px 25px rgba(255, 122, 26, .25);
    }

    .funeng-page .hero {
      position: relative;
      background:
        radial-gradient(circle at 12% 25%, rgba(23, 112, 255, .34), transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(255, 122, 26, .25), transparent 28%),
        linear-gradient(135deg, #071936 0%, #0d3482 52%, #08111f 100%);
      color: white;
      padding: 88px 0 76px;
    }
    .funeng-page .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 40px 40px;
      opacity: .45;
    }
    .funeng-page .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 52px;
      align-items: center;
    }
    .funeng-page .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px;
      color: #dbeafe;
      font-size: 14px;
      margin-bottom: 20px;
      background: #eef5ff;
    }
    .funeng-page .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ff7a1a;
    }
    .funeng-page h1 {
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1.15;
      letter-spacing: -1.5px;
      margin-bottom: 22px;
    }
    .funeng-page .hero p {
      font-size: 18px;
      color: #d8e5ff;
      max-width: 680px;
      margin-bottom: 32px;
    }
    .funeng-page .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .funeng-page .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 24px;
      border-radius: 12px;
      font-weight: 800;
      font-size: 15px;
    }
    .funeng-page .btn-primary {
      background: #ff7a1a;
      color: #101828;
      box-shadow: 0 14px 28px rgba(255, 122, 26, .28);
    }
    .funeng-page .btn-ghost {
      color: #101828;
      border: 1px solid rgba(255,255,255,.24);
      background: #eef5ff;
    }
    .funeng-page .hero-card {
      border-radius: 26px;
      padding: 18px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 24px 80px rgba(0,0,0,.28);
    }
    .funeng-page .photo-main {
      height: 340px;
      border-radius: 20px;
      background:
        linear-gradient(rgba(7,25,54,.06), rgba(7,25,54,.4)),
        url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1200&q=80") center/cover;
      position: relative;
      overflow: hidden;
    }
    .funeng-page .photo-main .label {
      position: absolute;
      left: 18px;
      bottom: 18px;
      background: rgba(7, 25, 54, .78);
      border: 1px solid rgba(255,255,255,.16);
      color: #101828;
      border-radius: 14px;
      padding: 14px 16px;
      width: calc(100% - 36px);
    }
    .funeng-page .label strong { display: block; font-size: 18px; margin-bottom: 4px; }
    .funeng-page .label span { color: #cbd5e1; font-size: 13px; }

    .funeng-page section { padding: 78px 0; }
    .funeng-page .section-head {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 34px;
    }
    .funeng-page .section-title {
      font-size: 34px;
      line-height: 1.25;
      letter-spacing: -1px;
      color: #101828;
    }
    .funeng-page .section-desc {
      color: #667085;
      max-width: 560px;
      font-size: 16px;
    }
    .funeng-page .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .funeng-page .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .funeng-page .card {
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      border-radius: 22px;
      padding: 26px;
      box-shadow: 0 14px 40px rgba(16, 24, 40, .06);
    }
    .funeng-page .icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #eef5ff;
      color: #0b63e5;
      font-weight: 900;
      margin-bottom: 18px;
    }
    .funeng-page .card h3 {
      font-size: 19px;
      margin-bottom: 10px;
      color: #101828;
    }
    .funeng-page .card p {
      color: #667085;
      font-size: 14.5px;
    }

    .funeng-page .services { background: #fff; }
    .funeng-page .services-head-new {
      display:block !important;
      margin-bottom: 28px !important;
    }
    .funeng-page .services-desc-new {
      max-width: 760px;
      margin-top: 12px;
      color:#6c7b92;
      font-size:17px;
      line-height:1.85;
      font-weight:600;
    }
    .funeng-page .services-visual-grid {
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 24px;
    }
    .funeng-page .service-visual-card {
      background:#fff;
      border:1px solid #e4ebf5;
      border-radius: 24px;
      overflow:hidden;
      box-shadow: 0 18px 40px rgba(15, 35, 68, .06);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .funeng-page .service-visual-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 46px rgba(15, 35, 68, .10);
      border-color:#d8e2f0;
    }
    .funeng-page .service-visual-image {
      height: 180px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .funeng-page .service-visual-body {
      padding: 18px 20px 22px;
    }
    .funeng-page .tag {
      display: inline-flex;
      padding: 6px 11px;
      border-radius: 999px;
      background: #fff2e8;
      color: #d75b00;
      font-weight: 800;
      font-size: 12px;
      margin-bottom: 12px;
    }
    .funeng-page .service-visual-card h3 {
      margin: 0 0 10px;
      color:#13233d;
      font-size: 28px;
      line-height:1.25;
      font-weight:900;
      letter-spacing:-0.02em;
    }
    .funeng-page .service-visual-card p {
      margin:0;
      color:#687991;
      font-size:16px;
      line-height:1.85;
      font-weight:600;
      min-height: 86px;
    }
    .funeng-page .service-mini-tags {
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top: 16px;
    }
    .funeng-page .service-mini-tags span {
      display:inline-flex;
      align-items:center;
      padding:8px 12px;
      border-radius:999px;
      background:#f6f9fd;
      border:1px solid #e3ebf7;
      color:#65758e;
      font-size:13px;
      font-weight:700;
    }
    @media (max-width: 1100px){
      .funeng-page .services-visual-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
    }
    @media (max-width: 768px){
      .funeng-page .services-visual-grid {
        grid-template-columns: 1fr;
      }
      .funeng-page .service-visual-card h3 {
        font-size:24px;
      }
      .funeng-page .service-visual-image {
        height: 200px;
      }
    }

    .funeng-page .split {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 38px;
      align-items: center;
    }
    .funeng-page .teacher-photo {
      min-height: 430px;
      border-radius: 28px;
      background:
        linear-gradient(rgba(7,25,54,.05), rgba(7,25,54,.38)),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80") center/cover;
      box-shadow: 0 24px 70px rgba(16,24,40,.12);
    }
    .funeng-page .teacher-list {
      display: grid;
      gap: 14px;
    }
    .funeng-page .teacher-item {
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      border-radius: 18px;
      padding: 20px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      align-items: start;
    }
    .funeng-page .avatar {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: linear-gradient(135deg, #0b63e5, #7fb1ff);
      color: #101828;
      font-weight: 900;
      display: grid;
      place-items: center;
    }
    .funeng-page .teacher-item h3 { font-size: 18px; margin-bottom: 4px; }
    .funeng-page .teacher-item p { color: #667085; font-size: 14.5px; }

    .funeng-page .cases {
      background:
        radial-gradient(circle at 12% 0%, rgba(11, 99, 229, .08), transparent 28%),
        linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
      color: #172033;
    }
    .funeng-page .cases .section-title { color: #101828; }
    .funeng-page .cases .section-desc { color: #667085; }

    .funeng-page .case-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }
    .funeng-page .stat-card {
      background: #eef5ff;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 20px;
      padding: 22px;
      backdrop-filter: blur(6px);
    }
    .funeng-page .stat-card strong {
      display: block;
      font-size: 32px;
      line-height: 1;
      margin-bottom: 8px;
      color: #101828;
      letter-spacing: -1px;
    }
    .funeng-page .stat-card span {
      font-size: 14px;
      color: #b7c5dc;
    }

    .funeng-page .gallery-wrap {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 20px;
      align-items: stretch;
    }
    .funeng-page .gallery-main, .funeng-page .gallery-side {
      display: grid;
      gap: 16px;
    }
    .funeng-page .gallery-main {
      grid-template-columns: repeat(2, 1fr);
    }
    .funeng-page .gallery-side {
      grid-template-columns: 1fr;
    }
    .funeng-page .photo-card {
      position: relative;
      min-height: 220px;
      border-radius: 22px;
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      box-shadow: 0 18px 42px rgba(16, 24, 40, .08);
    }
    .funeng-page .photo-card.tall { min-height: 456px; }
    .funeng-page .photo-card.wide { min-height: 270px; }
    .funeng-page .photo {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1);
      transition: transform .35s ease;
    }
    .funeng-page .photo-card:hover .photo { transform: scale(1.04); }
    .funeng-page .photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5,10,20,.72), rgba(5,10,20,.06) 45%, rgba(5,10,20,.0));
    }
    .funeng-page .photo-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.16);
      color: #101828;
      font-size: 12px;
      font-weight: 700;
      border: 1px solid rgba(255,255,255,.18);
      z-index: 2;
    }
    .funeng-page .photo-info {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 2;
    }
    .funeng-page .photo-info h3 {
      font-size: 18px;
      margin-bottom: 4px;
      color: #101828;
    }
    .funeng-page .photo-info p {
      font-size: 13px;
      color: #c9d5ea;
      margin: 0;
    }

    .funeng-page .thumb-grid {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
    }
    .funeng-page .thumb {
      height: 108px;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(255,255,255,.12);
      background: #eef5ff;
    }
    .funeng-page .thumb > div {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }
    .funeng-page .thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5,10,20,.45), rgba(5,10,20,.08));
    }

    .funeng-page .gallery-note {
      margin-top: 18px;
      padding: 18px 20px;
      border-radius: 18px;
      background: #eef5ff;
      border: 1px solid rgba(255,255,255,.12);
      color: #d7e1f0;
      font-size: 14px;
    }


    
    .funeng-page .course-clean-layout {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 20px;
      align-items: stretch;
    }

    .funeng-page .course-main-card {
      position: relative;
      min-height: 520px;
      border-radius: 24px;
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      box-shadow: 0 18px 42px rgba(16, 24, 40, .08);
    }

    .funeng-page .course-main-card .photo {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1);
      transition: transform .35s ease;
    }

    .funeng-page .course-main-card:hover .photo {
      transform: scale(1.035);
    }

    .funeng-page .course-main-card .photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5,10,20,.78), rgba(5,10,20,.12) 58%, rgba(5,10,20,0));
    }

    .funeng-page .course-main-info {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      z-index: 2;
    }

    .funeng-page .course-main-info .photo-badge {
      position: static;
      display: inline-flex;
      margin-bottom: 14px;
      background: rgba(255,255,255,.16);
      border: 1px solid rgba(255,255,255,.18);
      color: #101828;
    }

    .funeng-page .course-main-info h3 {
      font-size: 30px;
      line-height: 1.25;
      margin-bottom: 8px;
      color: #101828;
    }

    .funeng-page .course-main-info p {
      color: #c9d5ea;
      font-size: 14px;
      max-width: 560px;
    }

    .funeng-page .course-main-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 20px;
    }

    .funeng-page .course-main-stats div {
      padding: 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.18);
    }

    .funeng-page .course-main-stats strong {
      display: block;
      font-size: 22px;
      line-height: 1.1;
      margin-bottom: 4px;
      color: #fff;
    }

    .funeng-page .course-main-stats span {
      color: #dbe7fb;
      font-size: 12px;
    }

    .funeng-page .course-side-list {
      display: grid;
      gap: 14px;
    }

    .funeng-page .course-type-card {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 16px;
      padding: 14px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
      align-items: center;
    }

    .funeng-page .course-type-img {
      position: relative;
      height: 116px;
      border-radius: 16px;
      overflow: hidden;
      background: #eef5ff;
    }

    .funeng-page .course-type-img div {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .funeng-page .course-type-text .photo-badge {
      position: static;
      display: inline-flex;
      margin-bottom: 8px;
      background: #eef5ff;
      border: 1px solid #dbeafe;
      color: #0b63e5;
    }

    .funeng-page .course-type-text h3 {
      font-size: 18px;
      line-height: 1.35;
      margin-bottom: 6px;
      color: #101828;
    }

    .funeng-page .course-type-text p {
      color: #667085;
      font-size: 13px;
      margin-bottom: 10px;
    }

    .funeng-page .course-mini-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .funeng-page .course-mini-tags span {
      padding: 5px 8px;
      border-radius: 999px;
      background: #f6f9ff;
      border: 1px solid #e8eef7;
      color: #667085;
      font-size: 12px;
    }

    .funeng-page .course-photo-wall {
      margin-top: 20px;
      padding: 20px;
      border-radius: 24px;
      background: #eef5ff;
      border: 1px solid rgba(255,255,255,.12);
    }

    .funeng-page .course-wall-head {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: end;
      margin-bottom: 16px;
    }

    .funeng-page .course-wall-head h3 {
      color: #101828;
      font-size: 22px;
    }

    .funeng-page .course-wall-head p {
      max-width: 560px;
      color: #667085;
      font-size: 14px;
    }

    .funeng-page .course-wall-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }

    .funeng-page .course-wall-item {
      height: 112px;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      background: #eef5ff;
      border: 1px solid rgba(255,255,255,.10);
    }

    .funeng-page .course-wall-item div {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .3s ease;
    }

    .funeng-page .course-wall-item:hover div {
      transform: scale(1.04);
    }


    .funeng-page .course-clean-layout, .funeng-page .course-photo-wall {
      position: relative;
    }

    .funeng-page .course-photo-wall::before {
      content: "";
      position: absolute;
      top: 0;
      left: 28px;
      right: 28px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, #0b63e5, rgba(11,99,229,0));
    }

    @media (max-width: 1100px) {
      .funeng-page .course-clean-layout {
        grid-template-columns: 1fr;
      }
      .funeng-page .course-main-card {
        min-height: 420px;
      }
      .funeng-page .course-wall-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 640px) {
      .funeng-page .course-type-card {
        grid-template-columns: 1fr;
      }
      .funeng-page .course-type-img {
        height: 180px;
      }
      .funeng-page .course-main-stats, .funeng-page .course-wall-grid {
        grid-template-columns: 1fr;
      }
      .funeng-page .course-wall-head {
        display: block;
      }
      .funeng-page .course-wall-head h3 {
        margin-bottom: 8px;
      }
    }


    .funeng-page .process-wrap {
      background: #fff;
      border-radius: 28px;
      border: 1px solid rgba(15,33,64,.08);
      padding: 32px;
      box-shadow: 0 14px 40px rgba(16, 24, 40, .06);
    }
    .funeng-page .process {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .funeng-page .step {
      position: relative;
      padding: 18px;
      border-radius: 18px;
      background: #f6f8fb;
    }
    .funeng-page .step-num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #0b63e5;
      color: #101828;
      display: grid;
      place-items: center;
      font-weight: 900;
      margin-bottom: 12px;
    }
    .funeng-page .step h3 { font-size: 16px; margin-bottom: 6px; }
    .funeng-page .step p { font-size: 13.5px; color: #667085; line-height: 1.55; }

    .funeng-page .cta {
      padding: 0 0 84px;
    }
    .funeng-page .cta-box {
      border-radius: 30px;
      padding: 48px;
      background:
        radial-gradient(circle at 80% 20%, rgba(255, 122, 26, .22), transparent 28%),
        linear-gradient(135deg, #0b4ec4, #071936);
      color: #101828;
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 40px;
      align-items: center;
    }
    .funeng-page .cta-box h2 {
      font-size: 34px;
      line-height: 1.25;
      margin-bottom: 14px;
    }
    .funeng-page .cta-box p { color: #d8e5ff; }
    .funeng-page .form {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 22px;
      padding: 22px;
    }
    .funeng-page .form input, .funeng-page .form select {
      width: 100%;
      height: 44px;
      border: 0;
      outline: 0;
      border-radius: 12px;
      padding: 0 14px;
      margin-bottom: 12px;
      color: #172033;
      background: #fff;
    }
    .funeng-page .form button {
      width: 100%;
      height: 46px;
      border: 0;
      border-radius: 12px;
      background: #ff7a1a;
      color: #101828;
      font-weight: 900;
      cursor: pointer;
    }
    .funeng-page .footer {
      padding: 26px 0;
      color: #667085;
      font-size: 13px;
      border-top: 1px solid rgba(15,33,64,.08);
      background: #fff;
      text-align: center;
    }

    @media (max-width: 1100px) {
      .funeng-page .gallery-wrap { grid-template-columns: 1fr; }
      .funeng-page .gallery-main { grid-template-columns: repeat(2, 1fr); }
      .funeng-page .gallery-side { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 980px) {
      .funeng-page .hero-inner, .funeng-page .split, .funeng-page .cta-box { grid-template-columns: 1fr; }
      .funeng-page .grid-4, .funeng-page .grid-3, .funeng-page .case-stats { grid-template-columns: repeat(2, 1fr); }
      .funeng-page .process { grid-template-columns: 1fr 1fr; }
      .funeng-page .nav-links { display: none; }
      .funeng-page .thumb-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 640px) {
      .funeng-page .container { width: min(100% - 28px, 1180px); }
      .funeng-page section { padding: 54px 0; }
      .funeng-page .grid-4, .funeng-page .grid-3, .funeng-page .process, .funeng-page .gallery-main, .funeng-page .gallery-side, .funeng-page .case-stats, .funeng-page .thumb-grid { grid-template-columns: 1fr; }
      .funeng-page .section-head { display: block; }
      .funeng-page .section-title { font-size: 28px; margin-bottom: 10px; }
      .funeng-page .hero { padding: 62px 0; }
      .funeng-page .photo-main { height: 260px; }
      .funeng-page .photo-card.tall, .funeng-page .photo-card.wide, .funeng-page .photo-card { min-height: 220px; }
      .funeng-page .cta-box { padding: 30px 22px; }
    }
  
    
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(.96);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes floatSoft {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
    }

    .funeng-page .hero .eyebrow, .funeng-page .hero h1, .funeng-page .hero p, .funeng-page .hero-actions, .funeng-page .section-head, .funeng-page .card, .funeng-page .teacher-photo, .funeng-page .teacher-item, .funeng-page .course-main-card, .funeng-page .course-type-card, .funeng-page .course-photo-wall, .funeng-page .process-wrap, .funeng-page .cta-box {
      opacity: 0;
      animation: fadeUp .72s ease forwards;
    }

    .funeng-page .hero .eyebrow { animation-delay: .05s; }
    .funeng-page .hero h1 { animation-delay: .14s; }
    .funeng-page .hero p { animation-delay: .23s; }
    .funeng-page .hero-actions { animation-delay: .32s; }

    .funeng-page .hero-card {
      opacity: 0;
      animation: scaleIn .82s ease .22s forwards;
    }

    .funeng-page .section-head { animation-delay: .06s; }

    .funeng-page .grid-4 .card:nth-child(1), .funeng-page .grid-3 .card:nth-child(1), .funeng-page .teacher-list .teacher-item:nth-child(1), .funeng-page .course-type-card:nth-child(1), .funeng-page .process .step:nth-child(1) { animation-delay: .08s; }

    .funeng-page .grid-4 .card:nth-child(2), .funeng-page .grid-3 .card:nth-child(2), .funeng-page .teacher-list .teacher-item:nth-child(2), .funeng-page .course-type-card:nth-child(2), .funeng-page .process .step:nth-child(2) { animation-delay: .16s; }

    .funeng-page .grid-4 .card:nth-child(3), .funeng-page .grid-3 .card:nth-child(3), .funeng-page .teacher-list .teacher-item:nth-child(3), .funeng-page .course-type-card:nth-child(3), .funeng-page .process .step:nth-child(3) { animation-delay: .24s; }

    .funeng-page .grid-4 .card:nth-child(4), .funeng-page .grid-3 .card:nth-child(4), .funeng-page .process .step:nth-child(4) { animation-delay: .32s; }

    .funeng-page .grid-3 .card:nth-child(5), .funeng-page .process .step:nth-child(5) { animation-delay: .40s; }

    .funeng-page .grid-3 .card:nth-child(6) { animation-delay: .48s; }

    .funeng-page .teacher-photo { animation-delay: .12s; }
    .funeng-page .course-main-card { animation-delay: .12s; }
    .funeng-page .course-photo-wall { animation-delay: .22s; }
    .funeng-page .process-wrap { animation-delay: .10s; }
    .funeng-page .cta-box { animation-delay: .10s; }

    .funeng-page .card, .funeng-page .teacher-item, .funeng-page .course-type-card, .funeng-page .course-main-card, .funeng-page .course-photo-wall, .funeng-page .process-wrap, .funeng-page .cta-box, .funeng-page .hero-card, .funeng-page .btn, .funeng-page .nav-cta, .funeng-page .course-wall-item, .funeng-page .photo-card {
      transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease,
        background .28s ease,
        opacity .28s ease;
    }

    .funeng-page .card:hover, .funeng-page .teacher-item:hover, .funeng-page .course-type-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 46px rgba(16, 24, 40, .12);
      border-color: rgba(11, 99, 229, .22);
    }

    .funeng-page .service-card:hover::after {
      background: rgba(11, 99, 229, .13);
    }

    .funeng-page .hero-card:hover, .funeng-page .course-main-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 70px rgba(16, 24, 40, .18);
    }

    .funeng-page .btn:hover, .funeng-page .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(255, 122, 26, .28);
    }

    .funeng-page .icon, .funeng-page .avatar, .funeng-page .step-num, .funeng-page .course-type-text .photo-badge, .funeng-page .course-main-info .photo-badge {
      transition: transform .28s ease, box-shadow .28s ease;
    }

    .funeng-page .card:hover .icon, .funeng-page .teacher-item:hover .avatar, .funeng-page .step:hover .step-num, .funeng-page .course-type-card:hover .photo-badge, .funeng-page .course-main-card:hover .photo-badge {
      transform: scale(1.08);
    }

    .funeng-page .photo-main, .funeng-page .teacher-photo, .funeng-page .course-type-img, .funeng-page .course-wall-item {
      transition: transform .35s ease, filter .35s ease;
    }

    .funeng-page .photo-main:hover, .funeng-page .teacher-photo:hover {
      transform: translateY(-4px);
      filter: saturate(1.05) contrast(1.03);
    }

    .funeng-page .course-type-card:hover .course-type-img div, .funeng-page .course-wall-item:hover div {
      transform: scale(1.06);
    }

    .funeng-page .course-type-img div, .funeng-page .course-wall-item div {
      transition: transform .35s ease;
    }

    .funeng-page .step {
      transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
    }

    .funeng-page .step:hover {
      transform: translateY(-5px);
      background: #eef5ff;
      box-shadow: 0 16px 34px rgba(16, 24, 40, .08);
    }

    .funeng-page .form input, .funeng-page .form select, .funeng-page .form button {
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }

    .funeng-page .form input:focus, .funeng-page .form select:focus {
      transform: translateY(-1px);
      box-shadow: 0 0 0 3px rgba(11, 99, 229, .16);
    }

    .funeng-page .form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(255, 122, 26, .24);
    }

    .funeng-page .form button:disabled,
    .funeng-page .form button.is-loading {
      cursor: not-allowed;
      opacity: .72;
      transform: none;
    }

    .funeng-page .nav {
      animation: fadeIn .45s ease forwards;
    }

    @media (prefers-reduced-motion: reduce) {
      .funeng-page *, .funeng-page *::before, .funeng-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
    }

  
    
    .funeng-page .section-title {
      color: #13233d !important;
      font-weight: 900 !important;
      letter-spacing: -.6px;
    }

    .funeng-page .section-desc {
      color: #56667f !important;
      font-size: 16px !important;
      line-height: 1.8 !important;
      font-weight: 500 !important;
    }

    .funeng-page .card h3, .funeng-page .teacher-item h3, .funeng-page .course-type-text h3, .funeng-page .wall-head h3, .funeng-page .step h3 {
      color: #13233d !important;
      font-weight: 800 !important;
    }

    .funeng-page .card p, .funeng-page .teacher-item p, .funeng-page .course-type-text p, .funeng-page .wall-head p, .funeng-page .step p, .funeng-page .gallery-note, .funeng-page .course-main-info p {
      color: #5d6d85 !important;
      font-size: 15px !important;
      line-height: 1.8 !important;
      font-weight: 500 !important;
    }

    
    .funeng-page .hero .eyebrow {
      background: rgba(255,255,255,.14) !important;
      border: 1px solid rgba(255,255,255,.28) !important;
      color: #f2f7ff !important;
      font-weight: 700 !important;
      text-shadow: 0 1px 2px rgba(0,0,0,.12);
    }

    .funeng-page .hero h1 {
      color: #fff !important;
      text-shadow: 0 6px 18px rgba(0,0,0,.18);
    }

    .funeng-page .hero p {
      color: #ecf3ff !important;
      font-size: 18px !important;
      line-height: 1.85 !important;
      font-weight: 500 !important;
    }

    .funeng-page .hero-card .label, .funeng-page .hero-note {
      background: rgba(7, 25, 54, .86) !important;
      border: 1px solid rgba(255,255,255,.18) !important;
      box-shadow: 0 14px 30px rgba(0,0,0,.16);
    }

    .funeng-page .hero-card .label strong, .funeng-page .hero-note strong {
      color: #ffffff !important;
      font-size: 19px !important;
      font-weight: 800 !important;
    }

    .funeng-page .hero-card .label span, .funeng-page .hero-note span {
      color: #d9e6fb !important;
      font-size: 14px !important;
      font-weight: 500 !important;
      line-height: 1.7 !important;
      display: block;
    }

    .funeng-page .btn-ghost {
      background: rgba(255,255,255,.14) !important;
      border: 1px solid rgba(255,255,255,.28) !important;
      color: #ffffff !important;
      font-weight: 800 !important;
    }

    
    .funeng-page #target {
      background:
        radial-gradient(circle at 10% 0%, rgba(11,99,229,.06), transparent 26%),
        linear-gradient(180deg, #f7faff 0%, #f4f8ff 100%) !important;
    }

    .funeng-page #team {
      background:
        radial-gradient(circle at 88% 24%, rgba(11,99,229,.05), transparent 24%),
        linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%) !important;
    }

    .funeng-page #target .container, .funeng-page #team .container {
      position: relative;
      z-index: 1;
    }

    .funeng-page #target .card, .funeng-page .teacher-item {
      background: rgba(255,255,255,.82) !important;
      backdrop-filter: blur(6px);
      border: 1px solid rgba(15,33,64,.10) !important;
      box-shadow: 0 16px 34px rgba(18,46,88,.06) !important;
    }

    .funeng-page .teacher-photo {
      box-shadow: 0 22px 48px rgba(16,24,40,.10) !important;
      border: 1px solid rgba(15,33,64,.08);
      position: relative;
    }

    .funeng-page .teacher-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 28px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
      pointer-events: none;
    }

    
    .funeng-page .cases .section-title {
      color: #13233d !important;
    }

    .funeng-page .cases .section-desc {
      color: #56667f !important;
    }

    .funeng-page .course-main-info h3 {
      color: #ffffff !important;
      font-size: 34px !important;
      font-weight: 900 !important;
      line-height: 1.22 !important;
      text-shadow: 0 4px 14px rgba(0,0,0,.24);
    }

    .funeng-page .course-main-info p {
      color: #edf4ff !important;
      font-size: 15px !important;
      line-height: 1.8 !important;
      text-shadow: 0 2px 8px rgba(0,0,0,.18);
    }

    .funeng-page .course-main-stats div {
      background: rgba(255,255,255,.16) !important;
      border: 1px solid rgba(255,255,255,.22) !important;
      backdrop-filter: blur(4px);
    }

    .funeng-page .course-main-stats strong {
      color: #ffffff !important;
      font-size: 26px !important;
      font-weight: 900 !important;
    }

    .funeng-page .course-main-stats span {
      color: #e0eafb !important;
      font-size: 13px !important;
      font-weight: 500 !important;
    }

    .funeng-page .course-type-card {
      background: rgba(255,255,255,.88) !important;
      border: 1px solid rgba(15,33,64,.10) !important;
    }

    .funeng-page .course-type-text .photo-badge, .funeng-page .course-main-info .photo-badge {
      font-weight: 800 !important;
      letter-spacing: .2px;
    }

    .funeng-page .course-mini-tags span {
      color: #54657d !important;
      background: #f2f6fd !important;
      border: 1px solid #e4ecf8 !important;
      font-weight: 600 !important;
    }

    .funeng-page .course-photo-wall {
      background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%) !important;
      border: 1px solid rgba(11,99,229,.10) !important;
    }

    .funeng-page .course-wall-head h3 {
      font-size: 26px !important;
      font-weight: 850 !important;
    }

    .funeng-page .course-wall-head p {
      color: #5f7087 !important;
    }

    .funeng-page .gallery-note {
      background: rgba(255,255,255,.72) !important;
      border: 1px solid rgba(11,99,229,.12) !important;
      color: #596a82 !important;
      font-size: 14px !important;
      font-weight: 600 !important;
    }

    
    .funeng-page .process-wrap {
      background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%) !important;
      border: 1px solid rgba(15,33,64,.08) !important;
    }

    .funeng-page .step {
      background: linear-gradient(180deg, #f9fbff 0%, #f3f7ff 100%) !important;
      border: 1px solid #e7eef9 !important;
    }

    .funeng-page .step-num {
      box-shadow: 0 8px 18px rgba(255,122,26,.24);
      font-size: 16px !important;
    }

    
    .funeng-page .cta-box h2 {
      color: #ffffff !important;
      font-size: 34px !important;
      font-weight: 900 !important;
      line-height: 1.25 !important;
      text-shadow: 0 4px 16px rgba(0,0,0,.18);
    }

    .funeng-page .cta-box p {
      color: #eef5ff !important;
      font-size: 18px !important;
      line-height: 1.85 !important;
      font-weight: 500 !important;
    }

    .funeng-page .form input, .funeng-page .form select {
      color: #243247 !important;
      font-weight: 500;
      box-shadow: inset 0 0 0 1px rgba(15,33,64,.04);
    }

    .funeng-page .form input::placeholder {
      color: #7d8ba0;
      font-weight: 500;
    }

  
    
    .funeng-page #process .step-num {
      background: #ff7a1a !important;
      color: #ffffff !important;
      box-shadow: 0 8px 18px rgba(255, 122, 26, .28) !important;
    }

    .funeng-page #process .step:hover .step-num {
      background: #ff7a1a !important;
      color: #ffffff !important;
      transform: scale(1.08);
    }

  
    
    .funeng-page .team-section-new {
      background:
        radial-gradient(circle at 12% 8%, rgba(11, 99, 229, .07), transparent 26%),
        linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
    }

    .funeng-page .team-new-layout {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .funeng-page .lead-teacher-card {
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 18px 42px rgba(16, 24, 40, .07);
      display: flex;
      flex-direction: column;
    }

    .funeng-page .lead-teacher-photo {
      position: relative;
      min-height: 310px;
      background:
        linear-gradient(to top, rgba(7,25,54,.58), rgba(7,25,54,.05)),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80") center/cover;
    }

    .funeng-page .lead-teacher-photo .photo-label {
      position: absolute;
      left: 20px;
      bottom: 20px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.90);
      color: #0b63e5;
      font-size: 13px;
      font-weight: 800;
    }

    .funeng-page .lead-teacher-body {
      padding: 26px;
    }

    .funeng-page .lead-teacher-title {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }

    .funeng-page .lead-avatar {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #0b63e5, #6aa4ff);
      color: #fff;
      font-size: 24px;
      font-weight: 900;
      box-shadow: 0 12px 22px rgba(11,99,229,.20);
      flex: 0 0 auto;
    }

    .funeng-page .lead-teacher-title h3 {
      font-size: 25px;
      line-height: 1.25;
      color: #13233d;
      margin-bottom: 4px;
      font-weight: 900;
    }

    .funeng-page .lead-teacher-title p {
      color: #667085;
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }

    .funeng-page .lead-teacher-desc {
      padding: 16px 18px;
      border-radius: 18px;
      background: #f6f9ff;
      border: 1px solid #e8eef7;
      color: #56667f;
      font-size: 15px;
      line-height: 1.8;
      font-weight: 500;
      margin-bottom: 18px;
    }

    .funeng-page .lead-highlights {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .funeng-page .lead-highlights div {
      padding: 14px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid #e8eef7;
    }

    .funeng-page .lead-highlights b {
      display: block;
      color: #13233d;
      font-size: 15px;
      margin-bottom: 4px;
    }

    .funeng-page .lead-highlights span {
      color: #667085;
      font-size: 13px;
      line-height: 1.6;
    }

    .funeng-page .teacher-matrix {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .funeng-page .matrix-head {
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      border-radius: 28px;
      padding: 26px;
      box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
    }

    .funeng-page .matrix-head h3 {
      color: #13233d;
      font-size: 26px;
      line-height: 1.25;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .funeng-page .matrix-head p {
      color: #56667f;
      font-size: 15px;
      line-height: 1.8;
      font-weight: 500;
    }

    .funeng-page .matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .funeng-page .matrix-card {
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      border-radius: 22px;
      padding: 18px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      box-shadow: 0 14px 32px rgba(16, 24, 40, .05);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .funeng-page .matrix-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 42px rgba(16, 24, 40, .11);
      border-color: rgba(11,99,229,.20);
    }

    .funeng-page .matrix-icon {
      width: 46px;
      height: 46px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: #eef5ff;
      color: #0b63e5;
      font-size: 18px;
      font-weight: 900;
    }

    .funeng-page .matrix-card h4 {
      color: #13233d;
      font-size: 17px;
      line-height: 1.35;
      font-weight: 850;
      margin-bottom: 5px;
    }

    .funeng-page .matrix-card p {
      color: #667085;
      font-size: 13.5px;
      line-height: 1.7;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .funeng-page .matrix-tags {
      display: flex;
      gap: 7px;
      flex-wrap: wrap;
    }

    .funeng-page .matrix-tags span {
      padding: 5px 8px;
      border-radius: 999px;
      background: #f6f9ff;
      border: 1px solid #e8eef7;
      color: #5d6d85;
      font-size: 12px;
      font-weight: 600;
    }

    .funeng-page .topic-match {
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      border-radius: 24px;
      padding: 20px 22px;
      box-shadow: 0 14px 32px rgba(16, 24, 40, .05);
    }

    .funeng-page .topic-match-title {
      color: #13233d;
      font-size: 18px;
      font-weight: 850;
      margin-bottom: 12px;
    }

    .funeng-page .topic-pills {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .funeng-page .topic-pills span {
      padding: 9px 13px;
      border-radius: 999px;
      background: #f2f7ff;
      color: #0b63e5;
      border: 1px solid #dbeafe;
      font-size: 13px;
      font-weight: 700;
    }

    @media (max-width: 980px) {
      .funeng-page .team-new-layout {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .funeng-page .matrix-grid, .funeng-page .lead-highlights {
        grid-template-columns: 1fr;
      }
    }

  
    
    .funeng-page .lecturer-card {
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      border-radius: 22px;
      padding: 18px;
      box-shadow: 0 14px 32px rgba(16, 24, 40, .05);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .funeng-page .lecturer-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 42px rgba(16, 24, 40, .11);
      border-color: rgba(11,99,229,.20);
    }

    .funeng-page .lecturer-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }

    .funeng-page .lecturer-avatar {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: linear-gradient(135deg, #0b63e5, #6aa4ff);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 20px;
      font-weight: 900;
      flex: 0 0 auto;
      box-shadow: 0 10px 20px rgba(11,99,229,.18);
    }

    .funeng-page .lecturer-name h4 {
      color: #13233d;
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .funeng-page .lecturer-name p {
      color: #667085;
      font-size: 13px;
      line-height: 1.55;
      margin: 0;
      font-weight: 600;
    }

    .funeng-page .lecturer-desc {
      color: #5d6d85;
      font-size: 13.5px;
      line-height: 1.75;
      font-weight: 500;
      margin-bottom: 12px;
      min-height: 48px;
    }

    .funeng-page .lecturer-tags {
      display: flex;
      gap: 7px;
      flex-wrap: wrap;
    }

    .funeng-page .lecturer-tags span {
      padding: 5px 8px;
      border-radius: 999px;
      background: #f6f9ff;
      border: 1px solid #e8eef7;
      color: #5d6d85;
      font-size: 12px;
      font-weight: 600;
    }

    .funeng-page .lecturer-note {
      margin-top: 12px;
      padding: 12px 14px;
      border-radius: 16px;
      background: #f8fbff;
      border: 1px solid #e8eef7;
      color: #56667f;
      font-size: 13px;
      line-height: 1.7;
      font-weight: 500;
    }

  
    
    .funeng-page .team-photo-grid-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .funeng-page .teacher-photo-head {
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      border-radius: 28px;
      padding: 28px;
      box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
    }

    .funeng-page .teacher-photo-head h3 {
      color: #13233d;
      font-size: 28px;
      line-height: 1.25;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .funeng-page .teacher-photo-head p {
      color: #56667f;
      font-size: 15px;
      line-height: 1.85;
      font-weight: 500;
      max-width: 900px;
    }

    .funeng-page .teacher-photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .funeng-page .teacher-person-card {
      background: #fff;
      border: 1px solid rgba(15,33,64,.08);
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .funeng-page .teacher-person-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(16, 24, 40, .12);
      border-color: rgba(11,99,229,.22);
    }

    .funeng-page .teacher-person-photo {
      height: 230px;
      position: relative;
      background: #eef5ff;
      overflow: hidden;
    }

    .funeng-page .teacher-person-photo div {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .35s ease;
    }

    .funeng-page .teacher-person-card:hover .teacher-person-photo div {
      transform: scale(1.04);
    }

    .funeng-page .teacher-person-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7,25,54,.42), rgba(7,25,54,.02) 56%);
    }

    .funeng-page .teacher-photo-badge {
      position: absolute;
      left: 16px;
      bottom: 16px;
      z-index: 2;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,.92);
      color: #0b63e5;
      font-size: 12px;
      font-weight: 900;
    }

    .funeng-page .teacher-person-body {
      padding: 22px;
    }

    .funeng-page .teacher-person-body h4 {
      color: #13233d;
      font-size: 22px;
      line-height: 1.3;
      font-weight: 900;
      margin-bottom: 6px;
    }

    .funeng-page .teacher-role {
      color: #0b63e5;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .funeng-page .teacher-intro {
      color: #5d6d85;
      font-size: 14px;
      line-height: 1.8;
      font-weight: 500;
      margin-bottom: 14px;
      min-height: 76px;
    }

    .funeng-page .teacher-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .funeng-page .teacher-tags span {
      padding: 6px 9px;
      border-radius: 999px;
      background: #f6f9ff;
      border: 1px solid #e8eef7;
      color: #5d6d85;
      font-size: 12px;
      font-weight: 650;
    }


    .funeng-page .teacher-person-card--featured {
      grid-column: span 2;
      display: grid;
      grid-template-columns: 360px 1fr;
      align-items: stretch;
      border: 1px solid rgba(11,99,229,.14);
      box-shadow: 0 20px 48px rgba(16, 24, 40, .08);
    }

    .funeng-page .teacher-person-card--featured .teacher-person-photo {
      height: 100%;
      min-height: 430px;
    }

    .funeng-page .teacher-person-card--featured .teacher-person-body {
      padding: 28px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .funeng-page .teacher-feature-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      margin-bottom: 14px;
      padding: 8px 14px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(11,99,229,.10), rgba(255,133,38,.12));
      color: #0b63e5;
      font-size: 13px;
      font-weight: 900;
    }

    .funeng-page .teacher-person-card--featured .teacher-person-body h4 {
      font-size: 34px;
      margin-bottom: 10px;
    }

    .funeng-page .teacher-person-card--featured .teacher-role {
      font-size: 17px;
      margin-bottom: 16px;
    }

    .funeng-page .teacher-person-card--featured .teacher-intro {
      font-size: 15px;
      line-height: 1.95;
      min-height: auto;
      margin-bottom: 16px;
    }

    .funeng-page .teacher-feature-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin: 2px 0 16px;
    }

    .funeng-page .teacher-feature-point {
      padding: 14px 14px 12px;
      border-radius: 18px;
      background: #f8fbff;
      border: 1px solid #e8eef7;
    }

    .funeng-page .teacher-feature-point strong {
      display: block;
      color: #13233d;
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 6px;
    }

    .funeng-page .teacher-feature-point span {
      display: block;
      color: #5d6d85;
      font-size: 13px;
      line-height: 1.7;
      font-weight: 550;
    }

    .funeng-page .teacher-person-card--featured .teacher-tags span {
      font-size: 13px;
      padding: 7px 11px;
    }

    .funeng-page .teacher-replace-note {
      padding: 16px 18px;
      border-radius: 18px;
      background: #f8fbff;
      border: 1px solid #e8eef7;
      color: #56667f;
      font-size: 14px;
      line-height: 1.8;
      font-weight: 500;
    }

    @media (max-width: 980px) {
      .funeng-page .teacher-photo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .funeng-page .teacher-person-card--featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
      }
      .funeng-page .teacher-person-card--featured .teacher-person-photo {
        min-height: 320px;
      }
      .funeng-page .teacher-feature-points {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .funeng-page .teacher-photo-grid {
        grid-template-columns: 1fr;
      }
      .funeng-page .teacher-person-photo {
        height: 260px;
      }
      .funeng-page .teacher-person-card--featured {
        grid-column: span 1;
      }
      .funeng-page .teacher-person-card--featured .teacher-person-body {
        padding: 22px;
      }
      .funeng-page .teacher-person-card--featured .teacher-person-body h4 {
        font-size: 28px;
      }
    }

  
    
    .funeng-page .teacher-photo-grid { grid-template-columns: repeat(5, 1fr) !important; gap: 16px !important; }
    .funeng-page .teacher-person-photo { height: 205px !important; }
    .funeng-page .teacher-person-body { padding: 18px !important; }
    .funeng-page .teacher-person-body h4 { font-size: 20px !important; }
    .funeng-page .teacher-role { min-height: 42px; line-height: 1.55; }
    .funeng-page .teacher-intro { min-height: 126px; font-size: 13px !important; }
    @media (max-width: 1180px) { .funeng-page .teacher-photo-grid { grid-template-columns: repeat(3, 1fr) !important; } }
    @media (max-width: 760px) { .funeng-page .teacher-photo-grid { grid-template-columns: repeat(2, 1fr) !important; } }
    @media (max-width: 520px) { .funeng-page .teacher-photo-grid { grid-template-columns: 1fr !important; } }

  
    
    .funeng-page .hero h1 {
      max-width: 640px;
      line-height: 1.16 !important;
      word-break: keep-all;
    }

  
    
    .funeng-page .course-type-card {
      grid-template-columns: 170px 1fr !important;
      align-items: stretch !important;
    }
    .funeng-page .course-type-img {
      height: 100% !important;
      min-height: 128px !important;
    }
    .funeng-page .course-type-text h3 {
      font-size: 20px !important;
      margin-bottom: 8px !important;
    }
    .funeng-page .course-type-text p {
      font-size: 14px !important;
      line-height: 1.75 !important;
      margin-bottom: 12px !important;
    }
    .funeng-page .course-mini-tags span {
      font-size: 12px !important;
      padding: 5px 9px !important;
      margin-bottom: 2px;
    }
    @media (max-width: 640px) {
      .funeng-page .course-type-card { grid-template-columns: 1fr !important; }
      .funeng-page .course-type-img { height: 180px !important; }
    }

  
    
    .funeng-page .process {
      display: grid !important;
      grid-template-columns: repeat(5, 1fr) !important;
      gap: 18px !important;
    }
    .funeng-page .step {
      padding: 22px !important;
      min-height: 250px !important;
      background: linear-gradient(180deg, #f9fbff 0%, #f3f7ff 100%) !important;
      border: 1px solid #e7eef9 !important;
      border-radius: 20px !important;
    }
    .funeng-page .step-num {
      background: #ff7a1a !important;
      color: #fff !important;
      box-shadow: 0 8px 18px rgba(255,122,26,.24) !important;
    }
    .funeng-page .step h3 {
      font-size: 21px !important;
      line-height: 1.35 !important;
      margin: 14px 0 10px !important;
      color: #13233d !important;
      font-weight: 900 !important;
    }
    .funeng-page .step p {
      font-size: 15px !important;
      line-height: 1.78 !important;
      color: #5d6d85 !important;
      font-weight: 600 !important;
    }
    @media (max-width: 1180px) {
      .funeng-page .process { grid-template-columns: repeat(2, 1fr) !important; }
      .funeng-page .step { min-height: auto !important; }
    }
    @media (max-width: 640px) {
      .funeng-page .process { grid-template-columns: 1fr !important; }
    }

  
    
    .funeng-page .section-head {
      align-items: flex-start !important;
      margin-bottom: 30px !important;
    }
    .funeng-page .section-head:has(.section-title:only-child) {
      display: block !important;
    }
    .funeng-page .course-wall-head {
      display: block !important;
      margin-bottom: 18px !important;
    }
    .funeng-page .course-wall-head h3 {
      margin-bottom: 0 !important;
    }

  
    
    .funeng-page .photo-main .label { display: none !important; }

    .funeng-page #pain .section-head {
      display: block !important;
      margin-bottom: 32px !important;
    }

    .funeng-page .course-clean-layout {
      grid-template-columns: 1fr 1fr !important;
      align-items: stretch !important;
    }

    .funeng-page .course-main-card {
      min-height: 460px !important;
    }

    .funeng-page .course-type-card {
      grid-template-columns: 210px 1fr !important;
      min-height: 150px !important;
      align-items: center !important;
    }

    .funeng-page .course-type-img {
      height: 122px !important;
      min-height: 122px !important;
      aspect-ratio: 16 / 9 !important;
      border-radius: 16px !important;
    }

    .funeng-page .course-wall-grid {
      grid-template-columns: repeat(6, 1fr) !important;
      gap: 14px !important;
    }

    .funeng-page .course-wall-item {
      height: auto !important;
      aspect-ratio: 16 / 9 !important;
      border-radius: 14px !important;
    }

    .funeng-page .course-wall-item div, .funeng-page .course-type-img div, .funeng-page .course-main-card .photo {
      background-size: cover !important;
      background-position: center !important;
    }

    @media (max-width: 1100px) {
      .funeng-page .course-clean-layout {
        grid-template-columns: 1fr !important;
      }
      .funeng-page .course-wall-grid {
        grid-template-columns: repeat(3, 1fr) !important;
      }
    }

    @media (max-width: 640px) {
      .funeng-page .course-type-card {
        grid-template-columns: 1fr !important;
      }
      .funeng-page .course-type-img {
        width: 100% !important;
        height: auto !important;
      }
      .funeng-page .course-wall-grid {
        grid-template-columns: 1fr !important;
      }
    }

  
    
    .funeng-page #target {
      background: linear-gradient(180deg, #f5f8fd 0%, #eef3fb 100%) !important;
    }
    .funeng-page .target-head-new {
      display:flex !important;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom: 30px !important;
    }
    .funeng-page .target-section-desc {
      max-width: 820px;
      margin-top: 12px;
      color:#6c7b92;
      font-size: 17px;
      line-height: 1.9;
      font-weight: 600;
    }
    .funeng-page .target-grid-redesign {
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 24px;
    }
    .funeng-page .target-card-redesign {
      position:relative;
      background:#fff;
      border:1px solid #dfE8f4;
      border-radius: 26px;
      padding: 28px 28px 24px;
      box-shadow: 0 18px 40px rgba(18,39,76,.06);
      overflow:hidden;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .funeng-page .target-card-redesign::before {
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:6px;
      background: linear-gradient(90deg, #1f6cff 0%, #ff8b2b 100%);
    }
    .funeng-page .target-card-redesign:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 46px rgba(18,39,76,.10);
      border-color:#d4dff0;
    }
    .funeng-page .target-card-top {
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-bottom: 16px;
    }
    .funeng-page .target-no {
      width:52px;
      height:52px;
      border-radius:16px;
      background:#edf4ff;
      color:#0f63e6;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:24px;
      font-weight:900;
      letter-spacing:-0.02em;
      flex:0 0 auto;
    }
    .funeng-page .target-card-type {
      display:inline-flex;
      align-items:center;
      padding: 8px 14px;
      border-radius:999px;
      background:#fff6ed;
      color:#d96808;
      font-size:13px;
      font-weight:800;
      flex:0 0 auto;
    }
    .funeng-page .target-card-redesign h3 {
      margin:0 0 10px;
      color:#13233d;
      font-size:34px;
      line-height:1.2;
      font-weight:900;
      letter-spacing:-0.02em;
    }
    .funeng-page .target-card-redesign > p {
      margin:0 0 20px;
      color:#64758c;
      font-size:17px;
      line-height:1.9;
      font-weight:600;
      min-height:96px;
    }
    .funeng-page .target-info-block {
      padding-top:16px;
      border-top:1px solid #e8eef7;
      margin-top:16px;
    }
    .funeng-page .target-info-label {
      display:block;
      margin-bottom:10px;
      color:#13233d;
      font-size:14px;
      font-weight:800;
    }
    .funeng-page .target-tags {
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .funeng-page .target-tags span {
      padding:8px 14px;
      border-radius:999px;
      background:#f6f9fd;
      border:1px solid #e3ebf7;
      color:#61738e;
      font-size:13px;
      font-weight:700;
    }
    @media (max-width: 980px){
      .funeng-page .target-head-new {
        display:block !important;
      }
      .funeng-page .target-grid-redesign {
        grid-template-columns: 1fr;
      }
      .funeng-page .target-card-redesign h3 {
        font-size:28px;
      }
      .funeng-page .target-card-redesign > p {
        min-height:auto;
      }
      .funeng-page .target-card-top {
        align-items:flex-start;
        flex-wrap:wrap;
      }
    }

  
    
    .funeng-page #cases, .funeng-page .cases {
      padding-top: 56px !important;
      padding-bottom: 56px !important;
    }

    .funeng-page .course-clean-layout {
      display: grid !important;
      grid-template-columns: 1.05fr .95fr !important;
      gap: 18px !important;
      align-items: stretch !important;
    }

    .funeng-page .course-main-card {
      min-height: 430px !important;
      border-radius: 22px !important;
    }

    .funeng-page .course-main-info {
      left: 24px !important;
      right: 24px !important;
      bottom: 24px !important;
    }

    .funeng-page .course-main-info h3 {
      font-size: 30px !important;
      line-height: 1.2 !important;
      margin-bottom: 8px !important;
    }

    .funeng-page .course-main-info p {
      font-size: 14px !important;
      line-height: 1.7 !important;
    }

    .funeng-page .course-main-stats {
      margin-top: 16px !important;
      gap: 10px !important;
    }

    .funeng-page .course-main-stats div {
      padding: 12px 14px !important;
      border-radius: 14px !important;
    }

    .funeng-page .course-main-stats strong {
      font-size: 25px !important;
    }

    .funeng-page .course-main-stats span {
      font-size: 12px !important;
      line-height: 1.55 !important;
    }

    .funeng-page .course-side-list {
      gap: 12px !important;
    }

    .funeng-page .course-type-card {
      grid-template-columns: 180px 1fr !important;
      gap: 14px !important;
      padding: 12px !important;
      min-height: 132px !important;
      border-radius: 20px !important;
      align-items: center !important;
    }

    .funeng-page .course-type-img {
      width: 100% !important;
      height: auto !important;
      aspect-ratio: 16 / 9 !important;
      min-height: unset !important;
      border-radius: 14px !important;
    }

    .funeng-page .course-type-text .photo-badge {
      margin-bottom: 6px !important;
      padding: 5px 9px !important;
      font-size: 12px !important;
    }

    .funeng-page .course-type-text h3 {
      font-size: 18px !important;
      line-height: 1.25 !important;
      margin-bottom: 5px !important;
    }

    .funeng-page .course-type-text p {
      font-size: 13px !important;
      line-height: 1.6 !important;
      margin-bottom: 8px !important;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .funeng-page .course-mini-tags {
      gap: 6px !important;
    }

    .funeng-page .course-mini-tags span {
      font-size: 11.5px !important;
      padding: 4px 8px !important;
    }

    .funeng-page .course-photo-wall {
      margin-top: 18px !important;
      padding: 18px !important;
      border-radius: 22px !important;
    }

    .funeng-page .course-wall-head {
      margin-bottom: 14px !important;
    }

    .funeng-page .course-wall-grid {
      grid-template-columns: repeat(6, 1fr) !important;
      gap: 12px !important;
    }

    .funeng-page .course-wall-item {
      height: auto !important;
      aspect-ratio: 16 / 9 !important;
      border-radius: 12px !important;
    }

    @media (max-width: 1100px) {
      .funeng-page .course-clean-layout {
        grid-template-columns: 1fr !important;
      }
      .funeng-page .course-main-card {
        min-height: 380px !important;
      }
      .funeng-page .course-wall-grid {
        grid-template-columns: repeat(3, 1fr) !important;
      }
    }

    @media (max-width: 640px) {
      .funeng-page .course-type-card {
        grid-template-columns: 1fr !important;
      }
      .funeng-page .course-wall-grid {
        grid-template-columns: 1fr !important;
      }
      .funeng-page .course-main-card {
        min-height: 420px !important;
      }
    }

  
    
    .funeng-page #cases.cases {
      padding: 70px 0 76px !important;
      background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%) !important;
    }

    .funeng-page .cases-head-center {
      display: block !important;
      text-align: center !important;
      margin-bottom: 34px !important;
    }

    .funeng-page .cases-head-center .section-title {
      position: relative;
      display: inline-block;
      margin: 0 auto !important;
    }

    .funeng-page .cases-head-center .section-title::after {
      content:"";
      position:absolute;
      left:50%;
      bottom:-14px;
      width:54px;
      height:4px;
      border-radius:999px;
      background:#ff7a1a;
      transform:translateX(-50%);
    }

    .funeng-page .recommend-layout {
      display:grid;
      grid-template-columns: 2.05fr 1fr;
      grid-template-rows: 260px 260px;
      gap: 22px;
    }

    .funeng-page .recommend-card {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      background:#eef3fb;
      box-shadow: 0 16px 42px rgba(15,33,64,.08);
      min-height: 240px;
    }

    .funeng-page .recommend-card-large {
      grid-row: span 2;
    }

    .funeng-page .recommend-card-wide {
      grid-column: 1 / 3;
      min-height: 280px;
    }

    .funeng-page .recommend-img {
      position:absolute;
      inset:0;
      background-size:cover;
      background-position:center;
      transition: transform .42s ease;
    }

    .funeng-page .recommend-card:hover .recommend-img {
      transform: scale(1.045);
    }

    .funeng-page .recommend-mask {
      position:absolute;
      inset:0;
      background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 35%, rgba(0,0,0,.08) 72%);
    }

    .funeng-page .recommend-card-large .recommend-mask {
      background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.48) 36%, rgba(0,0,0,.08) 72%);
    }

    .funeng-page .recommend-content {
      position:absolute;
      left:34px;
      right:34px;
      bottom:30px;
      z-index:2;
      color:#fff;
    }

    .funeng-page .recommend-card-small .recommend-content {
      left:24px;
      right:24px;
      bottom:22px;
    }

    .funeng-page .recommend-kicker {
      font-size:15px;
      font-weight:700;
      line-height:1.4;
      margin-bottom:8px;
      color:rgba(255,255,255,.92);
    }

    .funeng-page .recommend-content h3 {
      font-size:30px;
      line-height:1.22;
      margin:0 0 10px;
      font-weight:900;
      color:#fff;
      text-shadow:0 4px 14px rgba(0,0,0,.26);
    }

    .funeng-page .recommend-card-small .recommend-content h3 {
      font-size:22px;
      line-height:1.28;
    }

    .funeng-page .recommend-content p {
      max-width:720px;
      font-size:15px;
      line-height:1.75;
      margin:0;
      color:rgba(255,255,255,.88);
      font-weight:500;
    }

    .funeng-page .recommend-card-small .recommend-content p {
      font-size:13.5px;
      line-height:1.65;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }

    .funeng-page .recommend-stats {
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
      margin-top:22px;
      max-width:620px;
    }

    .funeng-page .recommend-stats div {
      padding:14px 16px;
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.22);
      backdrop-filter: blur(6px);
    }

    .funeng-page .recommend-stats strong {
      display:block;
      font-size:31px;
      line-height:1;
      margin-bottom:7px;
      color:#fff;
      font-weight:900;
    }

    .funeng-page .recommend-stats span {
      display:block;
      color:rgba(255,255,255,.86);
      font-size:13px;
      line-height:1.45;
      font-weight:600;
    }

    .funeng-page .recommend-tags {
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:13px;
    }

    .funeng-page .recommend-tags span {
      display:inline-flex;
      padding:5px 9px;
      border-radius:999px;
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.2);
      color:rgba(255,255,255,.92);
      font-size:12px;
      font-weight:600;
    }

    .funeng-page .recommend-more {
      margin-top:22px;
      background:#fff;
      border:1px solid #e3eaf6;
      padding:22px;
      box-shadow:0 14px 36px rgba(15,33,64,.05);
    }

    .funeng-page .recommend-more-head h3 {
      margin:0 0 16px;
      font-size:26px;
      color:#13233d;
      font-weight:900;
    }

    .funeng-page .recommend-more-grid {
      display:grid;
      grid-template-columns:repeat(6,1fr);
      gap:14px;
    }

    .funeng-page .recommend-thumb {
      aspect-ratio:16/9;
      overflow:hidden;
      background:#edf3fb;
    }

    .funeng-page .recommend-thumb > div {
      width:100%;
      height:100%;
      background-size:cover;
      background-position:center;
      transition:transform .35s ease;
    }

    .funeng-page .recommend-thumb:hover > div {
      transform:scale(1.06);
    }

    @media (max-width: 1100px){
      .funeng-page .recommend-layout {
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto;
      }
      .funeng-page .recommend-card-large {
        grid-column:1/3;
        grid-row:auto;
        min-height:420px;
      }
      .funeng-page .recommend-card-wide {
        grid-column:1/3;
      }
      .funeng-page .recommend-more-grid {
        grid-template-columns:repeat(3,1fr);
      }
    }

    @media (max-width: 720px){
      .funeng-page #cases.cases {
        padding:56px 0 !important;
      }
      .funeng-page .recommend-layout {
        grid-template-columns:1fr;
        gap:16px;
      }
      .funeng-page .recommend-card, .funeng-page .recommend-card-large, .funeng-page .recommend-card-wide {
        grid-column:auto;
        min-height:330px;
      }
      .funeng-page .recommend-card-small {
        min-height:300px;
      }
      .funeng-page .recommend-content {
        left:22px;
        right:22px;
        bottom:22px;
      }
      .funeng-page .recommend-content h3 {
        font-size:24px;
      }
      .funeng-page .recommend-stats {
        grid-template-columns:1fr;
        gap:9px;
      }
      .funeng-page .recommend-more {
        padding:16px;
      }
      .funeng-page .recommend-more-grid {
        grid-template-columns:1fr 1fr;
      }
    }

  

.funeng-page .recommend-card-topimg {
  background:#fff;
  border:1px solid #e7edf7;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(15,33,64,.06);
}
.funeng-page .recommend-card-topimg .recommend-img-top {
  width:100%;
  height:220px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.funeng-page .recommend-card-small.recommend-card-topimg .recommend-img-top {
  height:208px;
}
.funeng-page .recommend-card-wide.recommend-card-topimg .recommend-img-top {
  height:210px;
}
.funeng-page .recommend-card-topimg .recommend-body {
  padding:22px 24px 24px;
}
.funeng-page .recommend-card-topimg h3 {
  margin:10px 0 10px;
  color:#162540;
  font-size:24px;
  line-height:1.3;
  font-weight:900;
}
.funeng-page .recommend-card-topimg p {
  margin:0 0 16px;
  color:#667790;
  font-size:15px;
  line-height:1.8;
  font-weight:600;
}
.funeng-page .recommend-kicker-light {
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#edf4ff;
  color:#0b63e5;
  font-size:13px;
  font-weight:800;
}
.funeng-page .recommend-card-topimg .recommend-tags {
  gap:10px;
}
.funeng-page .recommend-card-topimg .recommend-tags span {
  background:#f5f8fd;
  border:1px solid #e4ecf7;
  color:#5d6e86;
}
.funeng-page .recommend-card-topimg .recommend-mask, .funeng-page .recommend-card-topimg .recommend-content {
  display:none !important;
}



.funeng-page #target {
  padding: 62px 0 !important;
}
.funeng-page .target-head-new {
  margin-bottom: 22px !important;
}
.funeng-page .target-section-desc {
  font-size: 15px !important;
  line-height: 1.75 !important;
  max-width: 760px !important;
}
.funeng-page .target-grid-redesign {
  gap: 18px !important;
}
.funeng-page .target-card-redesign {
  border-radius: 20px !important;
  padding: 22px 22px 20px !important;
  min-height: auto !important;
  box-shadow: 0 12px 28px rgba(18,39,76,.05) !important;
}
.funeng-page .target-card-redesign::before {
  height: 4px !important;
}
.funeng-page .target-card-top {
  margin-bottom: 12px !important;
}
.funeng-page .target-no {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  font-size: 20px !important;
}
.funeng-page .target-card-type {
  padding: 6px 11px !important;
  font-size: 12px !important;
}
.funeng-page .target-card-redesign h3 {
  font-size: 28px !important;
  margin-bottom: 8px !important;
}
.funeng-page .target-card-redesign > p {
  font-size: 15px !important;
  line-height: 1.72 !important;
  min-height: 54px !important;
  margin-bottom: 12px !important;
}
.funeng-page .target-info-block {
  padding-top: 10px !important;
  margin-top: 10px !important;
}
.funeng-page .target-info-label {
  margin-bottom: 8px !important;
  font-size: 13px !important;
}
.funeng-page .target-tags {
  gap: 8px !important;
}
.funeng-page .target-tags span {
  padding: 6px 10px !important;
  font-size: 12px !important;
}
@media (max-width: 980px){
  .funeng-page .target-card-redesign h3 {
    font-size: 25px !important;
  }
  .funeng-page .target-card-redesign > p {
    min-height: auto !important;
  }
}



.funeng-page #target {
  padding: 64px 0 !important;
  background: linear-gradient(180deg, #f4f8ff 0%, #eef4fb 100%) !important;
}
.funeng-page .target-style-head {
  display:block !important;
  margin-bottom: 28px !important;
}
.funeng-page .org-card-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.funeng-page .org-card {
  position:relative;
  background:#ffffff;
  border:1px solid #dbe6f5;
  border-radius:26px;
  padding:30px 34px 28px;
  min-height:245px;
  box-shadow:0 18px 42px rgba(18, 39, 76, .07);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.funeng-page .org-card::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:5px;
  background:linear-gradient(90deg, #1f6cff 0%, #ff7a1a 100%);
}
.funeng-page .org-card:hover {
  transform:translateY(-4px);
  box-shadow:0 24px 52px rgba(18, 39, 76, .10);
  border-color:#cad8ec;
}
.funeng-page .org-badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 16px;
  border-radius:999px;
  background:#edf4ff;
  border:1px solid #d7e6ff;
  color:#0b63e5;
  font-size:14px;
  font-weight:900;
  margin-bottom:20px;
}
.funeng-page .org-card h3 {
  margin:0 0 14px;
  color:#13233d;
  font-size:34px;
  line-height:1.18;
  font-weight:900;
  letter-spacing:-.7px;
}
.funeng-page .org-card p {
  margin:0;
  color:#61728a;
  font-size:17px;
  line-height:1.85;
  font-weight:650;
  max-width:96%;
}
.funeng-page .org-tags {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.funeng-page .org-tags span {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 15px;
  border-radius:999px;
  background:#f5f8fd;
  border:1px solid #e0e8f4;
  color:#61738e;
  font-size:14px;
  font-weight:800;
}
@media (max-width: 980px){
  .funeng-page .org-card-grid {
    grid-template-columns:1fr;
  }
}
@media (max-width: 640px){
  .funeng-page #target {
    padding:54px 0 !important;
  }
  .funeng-page .org-card {
    padding:24px 22px;
    min-height:auto;
  }
  .funeng-page .org-card h3 {
    font-size:28px;
  }
  .funeng-page .org-card p {
    font-size:15px;
  }
  .funeng-page .org-tags span {
    font-size:13px;
    padding:7px 12px;
  }
}



.funeng-page #cases .recommend-card-topimg {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid #e4ebf5 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  min-height: auto !important;
  box-shadow: 0 14px 34px rgba(15,33,64,.06) !important;
}

.funeng-page #cases .recommend-card-topimg .recommend-img-top {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 210px !important;
  min-height: 210px !important;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1 !important;
}

.funeng-page #cases .recommend-card-topimg .recommend-body {
  position: relative !important;
  display: block !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3 !important;
  padding: 22px 24px 24px !important;
  background: #ffffff !important;
  color: #13233d !important;
}

.funeng-page #cases .recommend-card-topimg .recommend-kicker-light {
  position: relative !important;
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 0 12px !important;
  padding: 7px 13px !important;
  border-radius: 999px !important;
  background: #edf4ff !important;
  border: 1px solid #dbe8ff !important;
  color: #0b63e5 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.funeng-page #cases .recommend-card-topimg h3 {
  display: block !important;
  margin: 0 0 10px !important;
  color: #13233d !important;
  font-size: 24px !important;
  line-height: 1.32 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

.funeng-page #cases .recommend-card-topimg p {
  display: block !important;
  margin: 0 0 16px !important;
  color: #667790 !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  font-weight: 600 !important;
  text-shadow: none !important;
  max-width: none !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}

.funeng-page #cases .recommend-card-topimg .recommend-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 0 !important;
}

.funeng-page #cases .recommend-card-topimg .recommend-tags span {
  display: inline-flex !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  background: #f5f8fd !important;
  border: 1px solid #e4ecf7 !important;
  color: #5d6e86 !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
}

.funeng-page #cases .recommend-card-topimg .recommend-mask, .funeng-page #cases .recommend-card-topimg > .recommend-content {
  display: none !important;
}

.funeng-page #cases .recommend-card-wide.recommend-card-topimg {
  grid-column: 1 / 3 !important;
}

@media (max-width: 1100px){
  .funeng-page #cases .recommend-card-wide.recommend-card-topimg {
    grid-column: 1 / 3 !important;
  }
}

@media (max-width: 720px){
  .funeng-page #cases .recommend-card-wide.recommend-card-topimg {
    grid-column: auto !important;
  }
  .funeng-page #cases .recommend-card-topimg .recommend-img-top {
    height: 190px !important;
    min-height: 190px !important;
  }
}



.funeng-page #cases.cases {
  padding: 62px 0 !important;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%) !important;
}
.funeng-page .case-fixed-head {
  text-align:center;
  margin-bottom:28px;
}
.funeng-page .case-fixed-head .section-title {
  display:inline-block;
  position:relative;
}
.funeng-page .case-fixed-head .section-title::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  width:54px;
  height:4px;
  border-radius:999px;
  background:#ff7a1a;
  transform:translateX(-50%);
}
.funeng-page .case-fixed-top {
  display:grid;
  grid-template-columns: 1.65fr .85fr;
  gap:22px;
  align-items:stretch;
}
.funeng-page .case-main-fixed {
  position:relative;
  min-height:500px;
  overflow:hidden;
  background:#101828;
}
.funeng-page .case-main-img, .funeng-page .case-small-img, .funeng-page .case-wide-img {
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.funeng-page .case-main-img {
  position:absolute;
  inset:0;
}
.funeng-page .case-main-mask {
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.76), rgba(0,0,0,.28) 55%, rgba(0,0,0,.02));
}
.funeng-page .case-main-content {
  position:absolute;
  left:34px;
  right:34px;
  bottom:34px;
  z-index:2;
  color:#fff;
}
.funeng-page .case-main-content span, .funeng-page .case-small-body span, .funeng-page .case-wide-body span {
  display:inline-flex;
  align-items:center;
  width:fit-content;
  padding:7px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
}
.funeng-page .case-main-content span {
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  margin-bottom:12px;
}
.funeng-page .case-main-content h3 {
  margin:0 0 10px;
  color:#fff;
  font-size:34px;
  line-height:1.22;
  font-weight:900;
}
.funeng-page .case-main-content p {
  margin:0;
  color:rgba(255,255,255,.9);
  font-size:15px;
  line-height:1.8;
  font-weight:600;
}
.funeng-page .case-main-stats {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:22px;
}
.funeng-page .case-main-stats div {
  padding:14px 16px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
}
.funeng-page .case-main-stats strong {
  display:block;
  color:#fff;
  font-size:30px;
  line-height:1;
  font-weight:900;
  margin-bottom:7px;
}
.funeng-page .case-main-stats em {
  display:block;
  color:rgba(255,255,255,.86);
  font-size:13px;
  line-height:1.5;
  font-style:normal;
  font-weight:600;
}
.funeng-page .case-side-fixed {
  display:grid;
  gap:22px;
}
.funeng-page .case-small-fixed, .funeng-page .case-wide-fixed {
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid #e4ebf5;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(15,33,64,.06);
}
.funeng-page .case-small-img {
  height:190px;
  flex:0 0 auto;
}
.funeng-page .case-small-body, .funeng-page .case-wide-body {
  position:relative;
  display:block;
  background:#fff;
  padding:20px 22px 22px;
  color:#13233d;
}
.funeng-page .case-small-body span, .funeng-page .case-wide-body span {
  background:#edf4ff;
  border:1px solid #dbe8ff;
  color:#0b63e5;
  margin-bottom:12px;
}
.funeng-page .case-small-body h3, .funeng-page .case-wide-body h3 {
  display:block;
  margin:0 0 9px;
  color:#13233d;
  font-size:22px;
  line-height:1.32;
  font-weight:900;
}
.funeng-page .case-small-body p, .funeng-page .case-wide-body p {
  display:block;
  margin:0;
  color:#667790;
  font-size:14.5px;
  line-height:1.75;
  font-weight:600;
}
.funeng-page .case-wide-fixed {
  margin-top:22px;
}
.funeng-page .case-wide-img {
  height:250px;
}
.funeng-page .case-wide-body {
  padding:24px 26px 26px;
}
.funeng-page .case-wide-body h3 {
  font-size:28px;
}
.funeng-page .case-wide-tags {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.funeng-page .case-wide-tags i {
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:#f5f8fd;
  border:1px solid #e4ecf7;
  color:#5d6e86;
  font-size:13px;
  font-style:normal;
  font-weight:700;
}
.funeng-page .case-gallery-fixed {
  margin-top:22px;
  background:#fff;
  border:1px solid #e4ebf5;
  border-radius:24px;
  padding:20px;
  box-shadow:0 14px 34px rgba(15,33,64,.05);
}
.funeng-page .case-gallery-fixed h3 {
  margin:0 0 14px;
  color:#13233d;
  font-size:24px;
  font-weight:900;
}
.funeng-page .case-gallery-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}
.funeng-page .case-gallery-grid div {
  aspect-ratio:16/9;
  background-size:cover;
  background-position:center;
  border-radius:12px;
}
@media (max-width:1100px){
  .funeng-page .case-fixed-top {
    grid-template-columns:1fr;
  }
  .funeng-page .case-main-fixed {
    min-height:430px;
  }
  .funeng-page .case-side-fixed {
    grid-template-columns:repeat(2,1fr);
  }
  .funeng-page .case-gallery-grid {
    grid-template-columns:repeat(3,1fr);
  }
}
@media (max-width:720px){
  .funeng-page .case-side-fixed {
    grid-template-columns:1fr;
  }
  .funeng-page .case-main-fixed {
    min-height:430px;
  }
  .funeng-page .case-main-content {
    left:22px;
    right:22px;
    bottom:24px;
  }
  .funeng-page .case-main-content h3 {
    font-size:26px;
  }
  .funeng-page .case-main-stats {
    grid-template-columns:1fr;
  }
  .funeng-page .case-gallery-grid {
    grid-template-columns:1fr 1fr;
  }
}



.funeng-page #cases.cases {
  padding: 70px 0 76px !important;
  background: radial-gradient(circle at 50% 0%, rgba(11,99,229,.08), transparent 34%),
              linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%) !important;
}
.funeng-page .case-showcase-head {
  text-align:center;
  margin-bottom:34px;
}
.funeng-page .case-showcase-head .section-title {
  display:inline-block;
  position:relative;
  margin-bottom:22px !important;
}
.funeng-page .case-showcase-head .section-title::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  width:54px;
  height:4px;
  border-radius:999px;
  background:#ff7a1a;
  transform:translateX(-50%);
}
.funeng-page .case-showcase-head p {
  margin:0;
  color:#6b7a90;
  font-size:17px;
  font-weight:600;
  line-height:1.7;
}
.funeng-page .case-showcase-grid {
  display:grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: 230px 230px 300px;
  gap:22px;
}
.funeng-page .case-showcase-main, .funeng-page .case-showcase-small, .funeng-page .case-showcase-wide {
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:#101828;
  box-shadow:0 18px 42px rgba(15,33,64,.13);
}
.funeng-page .case-showcase-main {
  grid-row: 1 / 3;
}
.funeng-page .case-showcase-side {
  grid-column:2;
  grid-row:1 / 3;
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:22px;
}
.funeng-page .case-showcase-wide {
  grid-column:1 / 3;
  grid-row:3;
}
.funeng-page .case-showcase-img {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:transform .42s ease;
}
.funeng-page .case-showcase-main:hover .case-showcase-img, .funeng-page .case-showcase-small:hover .case-showcase-img, .funeng-page .case-showcase-wide:hover .case-showcase-img {
  transform:scale(1.04);
}
.funeng-page .case-showcase-mask {
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(5,10,20,.76), rgba(5,10,20,.36) 45%, rgba(5,10,20,.08));
}
.funeng-page .case-showcase-wide-mask {
  background:linear-gradient(90deg, rgba(5,10,20,.78), rgba(5,10,20,.48) 42%, rgba(5,10,20,.10));
}
.funeng-page .case-showcase-content {
  position:absolute;
  left:34px;
  right:34px;
  bottom:30px;
  z-index:2;
  color:#fff;
}
.funeng-page .case-line-label {
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:15px;
  font-weight:800;
  margin-bottom:12px;
}
.funeng-page .case-line-label::before {
  content:"";
  width:4px;
  height:20px;
  border-radius:999px;
  background:#ff7a1a;
  flex:0 0 auto;
}
.funeng-page .case-showcase-content h3, .funeng-page .case-showcase-small-content h3, .funeng-page .case-showcase-wide-content h3 {
  margin:0 0 10px;
  color:#fff;
  font-weight:900;
  letter-spacing:-.4px;
  text-shadow:0 4px 14px rgba(0,0,0,.24);
}
.funeng-page .case-showcase-content h3 {
  font-size:34px;
  line-height:1.22;
}
.funeng-page .case-showcase-content p, .funeng-page .case-showcase-small-content p, .funeng-page .case-showcase-wide-content p {
  margin:0;
  color:rgba(255,255,255,.90);
  font-weight:600;
  text-shadow:0 2px 10px rgba(0,0,0,.22);
}
.funeng-page .case-showcase-content p {
  max-width:680px;
  font-size:15px;
  line-height:1.8;
}
.funeng-page .case-showcase-stats {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:24px;
  max-width:720px;
}
.funeng-page .case-showcase-stats div {
  padding:16px 18px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(8px);
  border-radius:8px;
}
.funeng-page .case-showcase-stats strong {
  display:block;
  color:#fff;
  font-size:34px;
  line-height:1;
  font-weight:900;
  margin-bottom:8px;
}
.funeng-page .case-showcase-stats span {
  display:block;
  color:rgba(255,255,255,.86);
  font-size:13px;
  line-height:1.45;
  font-weight:600;
}
.funeng-page .case-showcase-small-content {
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  z-index:2;
}
.funeng-page .case-showcase-small-content h3 {
  font-size:25px;
  line-height:1.25;
}
.funeng-page .case-showcase-small-content p {
  font-size:14px;
  line-height:1.68;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.funeng-page .case-showcase-tags {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.funeng-page .case-showcase-tags span {
  display:inline-flex;
  align-items:center;
  padding:7px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  font-size:13px;
  line-height:1;
  font-weight:700;
  backdrop-filter:blur(6px);
}
.funeng-page .case-showcase-wide-content {
  position:absolute;
  left:34px;
  right:34px;
  bottom:30px;
  z-index:2;
  max-width:720px;
}
.funeng-page .case-showcase-wide-content h3 {
  font-size:34px;
  line-height:1.22;
}
.funeng-page .case-showcase-wide-content p {
  font-size:16px;
  line-height:1.78;
}
@media (max-width:1100px){
  .funeng-page .case-showcase-grid {
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
  .funeng-page .case-showcase-main, .funeng-page .case-showcase-side, .funeng-page .case-showcase-wide {
    grid-column:auto;
    grid-row:auto;
  }
  .funeng-page .case-showcase-main {
    min-height:440px;
  }
  .funeng-page .case-showcase-side {
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
  }
  .funeng-page .case-showcase-small {
    min-height:260px;
  }
  .funeng-page .case-showcase-wide {
    min-height:300px;
  }
}
@media (max-width:720px){
  .funeng-page #cases.cases {
    padding:56px 0 !important;
  }
  .funeng-page .case-showcase-side {
    grid-template-columns:1fr;
  }
  .funeng-page .case-showcase-main {
    min-height:500px;
  }
  .funeng-page .case-showcase-content, .funeng-page .case-showcase-wide-content {
    left:22px;
    right:22px;
    bottom:24px;
  }
  .funeng-page .case-showcase-content h3, .funeng-page .case-showcase-wide-content h3 {
    font-size:26px;
  }
  .funeng-page .case-showcase-stats {
    grid-template-columns:1fr;
    gap:8px;
  }
  .funeng-page .case-showcase-small-content {
    left:20px;
    right:20px;
  }
}



.funeng-page .case-moments-wrap {
  margin-top:24px;
  padding:28px 30px 32px;
  border-radius:18px;
  background:#ffffff;
  border:1px solid #dfe8f4;
  box-shadow:0 12px 32px rgba(17, 38, 70, .06);
}
.funeng-page .case-moments-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.funeng-page .case-moments-head h3 {
  margin:0;
  font-size:22px;
  line-height:1.2;
  color:#112241;
  font-weight:900;
}
.funeng-page .case-moments-head p {
  margin:0;
  color:#6b7a90;
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}
.funeng-page .case-moments-grid {
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:16px;
}
.funeng-page .case-moment-item {
  height:138px;
  border-radius:16px;
  background-size:cover;
  background-position:center;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);
  transition:transform .25s ease, box-shadow .25s ease;
}
.funeng-page .case-moment-item:hover {
  transform:translateY(-3px);
  box-shadow:0 14px 26px rgba(15, 33, 64, .14), inset 0 0 0 1px rgba(255,255,255,.22);
}
@media (max-width:1200px){
  .funeng-page .case-moments-grid {
    grid-template-columns:repeat(3, 1fr);
  }
}
@media (max-width:720px){
  .funeng-page .case-moments-wrap {
    padding:22px 18px 24px;
  }
  .funeng-page .case-moments-head {
    display:block;
  }
  .funeng-page .case-moments-head h3 {
    margin-bottom:10px;
  }
  .funeng-page .case-moments-grid {
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
  }
  .funeng-page .case-moment-item {
    height:110px;
    border-radius:12px;
  }
}



.funeng-page #process .process {
  display:grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap:16px !important;
}
.funeng-page #process .step {
  min-height: 215px !important;
  padding:20px 18px !important;
  border-radius:18px !important;
}
.funeng-page #process .step h3 {
  font-size:20px !important;
  margin:12px 0 8px !important;
}
.funeng-page #process .step p {
  font-size:14px !important;
  line-height:1.72 !important;
}
@media (max-width:1180px){
  .funeng-page #process .process {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .funeng-page #process .step {
    min-height:auto !important;
  }
}
@media (max-width:640px){
  .funeng-page #process .process {
    grid-template-columns:1fr !important;
  }
}



.funeng-page #process .process {
  display:grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap:18px !important;
}
.funeng-page #process .step {
  min-height: 210px !important;
  padding:22px 20px !important;
  border-radius:18px !important;
}
.funeng-page #process .step h3 {
  font-size:21px !important;
  margin:12px 0 8px !important;
}
.funeng-page #process .step p {
  font-size:14.5px !important;
  line-height:1.75 !important;
}
@media (max-width:1100px){
  .funeng-page #process .process {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .funeng-page #process .step {
    min-height:auto !important;
  }
}
@media (max-width:640px){
  .funeng-page #process .process {
    grid-template-columns:1fr !important;
  }
}



.funeng-page #cases.cases {
  padding: 70px 0 76px !important;
  background: radial-gradient(circle at 50% 0%, rgba(11,99,229,.08), transparent 34%),
              linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%) !important;
}
.funeng-page .case-showcase-head {
  text-align:center;
  margin-bottom:34px;
}
.funeng-page .case-showcase-head .section-title {
  display:inline-block;
  position:relative;
  margin-bottom:22px !important;
}
.funeng-page .case-showcase-head .section-title::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  width:54px;
  height:4px;
  border-radius:999px;
  background:#ff7a1a;
  transform:translateX(-50%);
}
.funeng-page .case-showcase-head p {
  margin:0;
  color:#6b7a90;
  font-size:17px;
  font-weight:600;
  line-height:1.7;
}
.funeng-page .case-showcase-grid {
  display:grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: 230px 230px 300px auto;
  gap:22px;
}
.funeng-page .case-showcase-main, .funeng-page .case-showcase-small, .funeng-page .case-showcase-wide {
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:#101828;
  box-shadow:0 18px 42px rgba(15,33,64,.13);
}
.funeng-page .case-showcase-main { grid-row:1 / 3; }
.funeng-page .case-showcase-side {
  grid-column:2;
  grid-row:1 / 3;
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:22px;
}
.funeng-page .case-showcase-wide {
  grid-column:1 / 3;
  grid-row:3;
}
.funeng-page .case-showcase-img {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:transform .42s ease;
}
.funeng-page .case-showcase-main:hover .case-showcase-img, .funeng-page .case-showcase-small:hover .case-showcase-img, .funeng-page .case-showcase-wide:hover .case-showcase-img { transform:scale(1.04); }
.funeng-page .case-showcase-mask {
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(5,10,20,.80), rgba(5,10,20,.42) 45%, rgba(5,10,20,.12));
}
.funeng-page .case-showcase-wide-mask {
  background:linear-gradient(90deg, rgba(5,10,20,.82), rgba(5,10,20,.54) 42%, rgba(5,10,20,.14));
}
.funeng-page .case-showcase-content {
  position:absolute;
  left:34px;
  right:34px;
  bottom:30px;
  z-index:2;
  color:#fff;
}
.funeng-page .case-line-label {
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:15px;
  font-weight:800;
  margin-bottom:12px;
}
.funeng-page .case-line-label::before {
  content:"";
  width:4px;
  height:20px;
  border-radius:999px;
  background:#ff7a1a;
  flex:0 0 auto;
}
.funeng-page .case-showcase-content h3, .funeng-page .case-showcase-small-content h3, .funeng-page .case-showcase-wide-content h3 {
  margin:0 0 10px;
  color:#fff;
  font-weight:900;
  letter-spacing:-.4px;
  text-shadow:0 4px 14px rgba(0,0,0,.24);
}
.funeng-page .case-showcase-content h3 { font-size:34px; line-height:1.22; }
.funeng-page .case-showcase-content p, .funeng-page .case-showcase-small-content p, .funeng-page .case-showcase-wide-content p {
  margin:0;
  color:rgba(255,255,255,.90);
  font-weight:600;
  text-shadow:0 2px 10px rgba(0,0,0,.22);
}
.funeng-page .case-showcase-content p { max-width:680px; font-size:15px; line-height:1.8; }
.funeng-page .case-showcase-stats {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:24px;
  max-width:720px;
}
.funeng-page .case-showcase-stats div {
  padding:16px 18px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(8px);
  border-radius:8px;
}
.funeng-page .case-showcase-stats strong {
  display:block;
  color:#fff;
  font-size:34px;
  line-height:1;
  font-weight:900;
  margin-bottom:8px;
}
.funeng-page .case-showcase-stats span {
  display:block;
  color:rgba(255,255,255,.86);
  font-size:13px;
  line-height:1.45;
  font-weight:600;
}
.funeng-page .case-showcase-small-content {
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  z-index:2;
}
.funeng-page .case-showcase-small-content h3 { font-size:25px; line-height:1.25; }
.funeng-page .case-showcase-small-content p {
  font-size:14px;
  line-height:1.68;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.funeng-page .case-showcase-tags {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.funeng-page .case-showcase-tags span {
  display:inline-flex;
  align-items:center;
  padding:7px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  font-size:13px;
  line-height:1;
  font-weight:700;
  backdrop-filter:blur(6px);
}
.funeng-page .case-showcase-wide-content {
  position:absolute;
  left:34px;
  right:34px;
  bottom:30px;
  z-index:2;
  max-width:720px;
}
.funeng-page .case-showcase-wide-content h3 { font-size:34px; line-height:1.22; }
.funeng-page .case-showcase-wide-content p { font-size:16px; line-height:1.78; }
.funeng-page .case-moments-wrap {
  grid-column:1 / 3;
  grid-row:4;
  padding:28px 30px 32px;
  border-radius:18px;
  background:#ffffff;
  border:1px solid #dfe8f4;
  box-shadow:0 12px 32px rgba(17, 38, 70, .06);
}
.funeng-page .case-moments-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.funeng-page .case-moments-head h3 {
  margin:0;
  font-size:24px;
  line-height:1.2;
  color:#112241;
  font-weight:900;
}
.funeng-page .case-moments-head p {
  margin:0;
  color:#6b7a90;
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}
.funeng-page .case-moments-grid {
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:16px;
}
.funeng-page .case-moment-item {
  height:138px;
  border-radius:16px;
  background-size:cover;
  background-position:center;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);
  transition:transform .25s ease, box-shadow .25s ease;
}
.funeng-page .case-moment-item:hover {
  transform:translateY(-3px);
  box-shadow:0 14px 26px rgba(15, 33, 64, .14), inset 0 0 0 1px rgba(255,255,255,.22);
}
@media (max-width:1100px){
  .funeng-page .case-showcase-grid { grid-template-columns:1fr; grid-template-rows:auto; }
  .funeng-page .case-showcase-main, .funeng-page .case-showcase-side, .funeng-page .case-showcase-wide, .funeng-page .case-moments-wrap { grid-column:auto; grid-row:auto; }
  .funeng-page .case-showcase-main { min-height:440px; }
  .funeng-page .case-showcase-side { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .funeng-page .case-showcase-small { min-height:260px; }
  .funeng-page .case-showcase-wide { min-height:300px; }
  .funeng-page .case-moments-grid { grid-template-columns:repeat(3, 1fr); }
}
@media (max-width:720px){
  .funeng-page #cases.cases { padding:56px 0 !important; }
  .funeng-page .case-showcase-side { grid-template-columns:1fr; }
  .funeng-page .case-showcase-main { min-height:500px; }
  .funeng-page .case-showcase-content, .funeng-page .case-showcase-wide-content { left:22px; right:22px; bottom:24px; }
  .funeng-page .case-showcase-content h3, .funeng-page .case-showcase-wide-content h3 { font-size:26px; }
  .funeng-page .case-showcase-stats { grid-template-columns:1fr; gap:8px; }
  .funeng-page .case-moments-wrap { padding:22px 18px 24px; }
  .funeng-page .case-moments-head { display:block; }
  .funeng-page .case-moments-head h3 { margin-bottom:10px; }
  .funeng-page .case-moments-grid { grid-template-columns:repeat(2, 1fr); gap:12px; }
  .funeng-page .case-moment-item { height:110px; border-radius:12px; }
}



.funeng-page #cases .case-showcase-mask {
  background: linear-gradient(to top, rgba(5,10,20,.66), rgba(5,10,20,.24) 44%, rgba(5,10,20,.04)) !important;
  transition: background .32s ease !important;
}
.funeng-page #cases .case-showcase-wide-mask {
  background: linear-gradient(90deg, rgba(5,10,20,.68), rgba(5,10,20,.38) 42%, rgba(5,10,20,.06)) !important;
}
.funeng-page #cases .case-showcase-main:hover .case-showcase-mask, .funeng-page #cases .case-showcase-small:hover .case-showcase-mask, .funeng-page #cases .case-showcase-wide:hover .case-showcase-mask {
  background: linear-gradient(to top, rgba(5,10,20,.82), rgba(5,10,20,.48) 48%, rgba(5,10,20,.14)) !important;
}
.funeng-page #cases .case-showcase-wide:hover .case-showcase-wide-mask {
  background: linear-gradient(90deg, rgba(5,10,20,.84), rgba(5,10,20,.54) 44%, rgba(5,10,20,.14)) !important;
}


.funeng-page #cases .case-showcase-content {
  bottom: 26px !important;
}
.funeng-page #cases .case-line-label {
  font-size: 12px !important;
  margin-bottom: 8px !important;
  opacity: .92 !important;
  transition: all .28s ease !important;
}
.funeng-page #cases .case-line-label::before {
  height: 15px !important;
  width: 3px !important;
}
.funeng-page #cases .case-showcase-content h3 {
  font-size: 25px !important;
  line-height: 1.24 !important;
  margin-bottom: 8px !important;
  transition: all .28s ease !important;
}
.funeng-page #cases .case-showcase-content p {
  font-size: 13px !important;
  line-height: 1.65 !important;
  max-width: 620px !important;
  opacity: .88 !important;
  transition: all .28s ease !important;
}
.funeng-page #cases .case-showcase-stats {
  margin-top: 16px !important;
  gap: 8px !important;
  max-width: 600px !important;
  transition: all .28s ease !important;
}
.funeng-page #cases .case-showcase-stats div {
  padding: 10px 12px !important;
  border-radius: 6px !important;
}
.funeng-page #cases .case-showcase-stats strong {
  font-size: 25px !important;
  margin-bottom: 5px !important;
  transition: all .28s ease !important;
}
.funeng-page #cases .case-showcase-stats span {
  font-size: 11.5px !important;
  line-height: 1.35 !important;
}


.funeng-page #cases .case-showcase-small-content {
  bottom: 18px !important;
}
.funeng-page #cases .case-showcase-small-content h3 {
  font-size: 19px !important;
  line-height: 1.26 !important;
  margin-bottom: 6px !important;
  transition: all .28s ease !important;
}
.funeng-page #cases .case-showcase-small-content p {
  font-size: 12.5px !important;
  line-height: 1.55 !important;
  opacity: .86 !important;
  -webkit-line-clamp: 1 !important;
  transition: all .28s ease !important;
}
.funeng-page #cases .case-showcase-tags {
  gap: 7px !important;
  margin-top: 10px !important;
  transition: all .28s ease !important;
}
.funeng-page #cases .case-showcase-tags span {
  padding: 5px 10px !important;
  font-size: 11.5px !important;
}


.funeng-page #cases .case-showcase-wide-content {
  bottom: 24px !important;
  max-width: 620px !important;
}
.funeng-page #cases .case-showcase-wide-content h3 {
  font-size: 25px !important;
  line-height: 1.24 !important;
  margin-bottom: 8px !important;
  transition: all .28s ease !important;
}
.funeng-page #cases .case-showcase-wide-content p {
  font-size: 13px !important;
  line-height: 1.65 !important;
  opacity: .88 !important;
  transition: all .28s ease !important;
}


.funeng-page #cases .case-showcase-main:hover .case-line-label, .funeng-page #cases .case-showcase-small:hover .case-line-label, .funeng-page #cases .case-showcase-wide:hover .case-line-label {
  font-size: 14px !important;
  opacity: 1 !important;
}
.funeng-page #cases .case-showcase-main:hover .case-showcase-content h3 {
  font-size: 33px !important;
}
.funeng-page #cases .case-showcase-main:hover .case-showcase-content p {
  font-size: 15px !important;
  opacity: 1 !important;
}
.funeng-page #cases .case-showcase-main:hover .case-showcase-stats {
  margin-top: 22px !important;
  max-width: 720px !important;
}
.funeng-page #cases .case-showcase-main:hover .case-showcase-stats div {
  padding: 16px 18px !important;
}
.funeng-page #cases .case-showcase-main:hover .case-showcase-stats strong {
  font-size: 34px !important;
}
.funeng-page #cases .case-showcase-small:hover .case-showcase-small-content h3 {
  font-size: 25px !important;
}
.funeng-page #cases .case-showcase-small:hover .case-showcase-small-content p {
  font-size: 14px !important;
  opacity: 1 !important;
  -webkit-line-clamp: 2 !important;
}
.funeng-page #cases .case-showcase-small:hover .case-showcase-tags {
  margin-top: 16px !important;
}
.funeng-page #cases .case-showcase-wide:hover .case-showcase-wide-content h3 {
  font-size: 34px !important;
}
.funeng-page #cases .case-showcase-wide:hover .case-showcase-wide-content p {
  font-size: 16px !important;
  opacity: 1 !important;
}


.funeng-page #cases .case-moments-wrap {
  margin-top: 6px !important;
}
@media (max-width: 720px){
  .funeng-page #cases .case-showcase-content h3, .funeng-page #cases .case-showcase-main:hover .case-showcase-content h3, .funeng-page #cases .case-showcase-wide-content h3, .funeng-page #cases .case-showcase-wide:hover .case-showcase-wide-content h3 {
    font-size: 24px !important;
  }
  .funeng-page #cases .case-showcase-stats {
    grid-template-columns: 1fr !important;
  }
}



.funeng-page #cases .case-showcase-content, .funeng-page #cases .case-showcase-small-content, .funeng-page #cases .case-showcase-wide-content {
  overflow: hidden !important;
}

.funeng-page #cases .case-line-label {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.funeng-page #cases .case-showcase-content h3, .funeng-page #cases .case-showcase-small-content h3, .funeng-page #cases .case-showcase-wide-content h3 {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}


.funeng-page #cases .case-showcase-content p, .funeng-page #cases .case-showcase-small-content p, .funeng-page #cases .case-showcase-wide-content p {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  max-width: 100% !important;
}


.funeng-page #cases .case-showcase-main:hover .case-showcase-content p, .funeng-page #cases .case-showcase-small:hover .case-showcase-small-content p, .funeng-page #cases .case-showcase-wide:hover .case-showcase-wide-content p {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
}


.funeng-page #cases .case-showcase-content {
  left: 30px !important;
  right: 30px !important;
  bottom: 28px !important;
}
.funeng-page #cases .case-showcase-small-content {
  left: 22px !important;
  right: 22px !important;
  bottom: 20px !important;
}
.funeng-page #cases .case-showcase-wide-content {
  left: 30px !important;
  right: 30px !important;
  bottom: 28px !important;
  max-width: 760px !important;
}

.funeng-page #cases .case-showcase-content h3 {
  font-size: 24px !important;
}
.funeng-page #cases .case-showcase-small-content h3 {
  font-size: 18px !important;
}
.funeng-page #cases .case-showcase-wide-content h3 {
  font-size: 24px !important;
}
.funeng-page #cases .case-showcase-content p, .funeng-page #cases .case-showcase-wide-content p {
  font-size: 12.5px !important;
}
.funeng-page #cases .case-showcase-small-content p {
  font-size: 12px !important;
}


.funeng-page #cases .case-showcase-main:hover .case-showcase-content h3 {
  font-size: 30px !important;
}
.funeng-page #cases .case-showcase-small:hover .case-showcase-small-content h3 {
  font-size: 22px !important;
}
.funeng-page #cases .case-showcase-wide:hover .case-showcase-wide-content h3 {
  font-size: 30px !important;
}
.funeng-page #cases .case-showcase-main:hover .case-showcase-content p, .funeng-page #cases .case-showcase-wide:hover .case-showcase-wide-content p {
  font-size: 14px !important;
}
.funeng-page #cases .case-showcase-small:hover .case-showcase-small-content p {
  font-size: 13px !important;
}


.funeng-page #cases .case-showcase-stats {
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  max-width: 620px !important;
}
.funeng-page #cases .case-showcase-stats strong, .funeng-page #cases .case-showcase-stats span {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.funeng-page #cases .case-showcase-stats span {
  font-size: 11px !important;
}
.funeng-page #cases .case-showcase-main:hover .case-showcase-stats {
  max-width: 680px !important;
}


.funeng-page #cases .case-showcase-tags {
  flex-wrap: nowrap !important;
  overflow: hidden !important;
}
.funeng-page #cases .case-showcase-tags span {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}


@media (max-width: 720px){
  .funeng-page #cases .case-showcase-content h3, .funeng-page #cases .case-showcase-main:hover .case-showcase-content h3, .funeng-page #cases .case-showcase-wide-content h3, .funeng-page #cases .case-showcase-wide:hover .case-showcase-wide-content h3 {
    font-size: 22px !important;
  }
  .funeng-page #cases .case-showcase-small-content h3, .funeng-page #cases .case-showcase-small:hover .case-showcase-small-content h3 {
    font-size: 20px !important;
  }
  .funeng-page #cases .case-showcase-stats {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
}



.funeng-page #cases .case-showcase-small .case-showcase-small-content {
  overflow: visible !important;
}


.funeng-page #cases .case-showcase-small .case-showcase-small-content h3 {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  max-width: 100% !important;
  font-size: 19px !important;
  line-height: 1.28 !important;
}


.funeng-page #cases .case-showcase-small .case-showcase-small-content p {
  white-space: normal !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  max-width: 100% !important;
  font-size: 12.5px !important;
  line-height: 1.58 !important;
}


.funeng-page #cases .case-showcase-small:hover .case-showcase-small-content h3 {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  font-size: 22px !important;
  line-height: 1.28 !important;
}

.funeng-page #cases .case-showcase-small:hover .case-showcase-small-content p {
  white-space: normal !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  font-size: 13.5px !important;
  line-height: 1.62 !important;
}


.funeng-page #cases .case-showcase-small .case-showcase-tags {
  flex-wrap: wrap !important;
  overflow: visible !important;
  gap: 7px !important;
}
.funeng-page #cases .case-showcase-small .case-showcase-tags span {
  white-space: nowrap !important;
}


.funeng-page #cases .case-showcase-small-content {
  left: 22px !important;
  right: 22px !important;
  bottom: 18px !important;
}



.funeng-page .qly-teacher-section {
  padding: 78px 0 !important;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%) !important;
}
.funeng-page .qly-teacher-head {
  display:block !important;
  margin-bottom:28px !important;
}
.funeng-page .qly-teacher-head p {
  max-width:860px;
  margin-top:12px;
  color:#64748b;
  font-size:16px;
  line-height:1.8;
  font-weight:600;
}
.funeng-page .qly-featured-teacher {
  display:grid;
  grid-template-columns: 390px 1fr;
  gap:0;
  background:#ffffff;
  border:1px solid #dfe8f4;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 22px 58px rgba(17,38,70,.10);
  margin-bottom:26px;
}
.funeng-page .qly-featured-photo {
  position:relative;
  min-height:430px;
  overflow:hidden;
  background:#edf4ff;
}
.funeng-page .qly-featured-photo > div {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}
.funeng-page .qly-featured-photo::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(7,25,54,.42), rgba(7,25,54,.02) 58%);
}
.funeng-page .qly-featured-photo span {
  position:absolute;
  left:24px;
  bottom:24px;
  z-index:2;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#0b63e5;
  font-size:13px;
  font-weight:900;
}
.funeng-page .qly-featured-info {
  padding:42px 46px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.funeng-page .qly-featured-kicker {
  display:inline-flex;
  width:fit-content;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(11,99,229,.10), rgba(255,122,26,.12));
  color:#0b63e5;
  font-size:13px;
  font-weight:900;
  margin-bottom:16px;
}
.funeng-page .qly-featured-info h3 {
  margin:0 0 10px;
  color:#13233d;
  font-size:42px;
  line-height:1.12;
  font-weight:900;
  letter-spacing:-1px;
}
.funeng-page .qly-featured-role {
  color:#0b63e5;
  font-size:18px;
  line-height:1.6;
  font-weight:850;
  margin-bottom:18px;
}
.funeng-page .qly-featured-info p {
  margin:0;
  color:#52637b;
  font-size:16px;
  line-height:1.95;
  font-weight:600;
}
.funeng-page .qly-featured-points {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin:22px 0 18px;
}
.funeng-page .qly-featured-points div {
  padding:15px 14px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid #e5edf8;
}
.funeng-page .qly-featured-points strong {
  display:block;
  color:#13233d;
  font-size:13px;
  font-weight:900;
  margin-bottom:6px;
}
.funeng-page .qly-featured-points span {
  display:block;
  color:#5d6d85;
  font-size:13px;
  line-height:1.65;
  font-weight:600;
}
.funeng-page .qly-teacher-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
}
.funeng-page .qly-teacher-card {
  background:#fff;
  border:1px solid #e3ebf7;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 16px 34px rgba(16,24,40,.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.funeng-page .qly-teacher-card:hover {
  transform:translateY(-5px);
  box-shadow:0 22px 48px rgba(16,24,40,.11);
  border-color:rgba(11,99,229,.22);
}
.funeng-page .qly-teacher-img {
  height:205px;
  position:relative;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.funeng-page .qly-teacher-img::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(7,25,54,.45), rgba(7,25,54,.03) 56%);
}
.funeng-page .qly-teacher-img span {
  position:absolute;
  left:16px;
  bottom:16px;
  z-index:2;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#0b63e5;
  font-size:12px;
  font-weight:900;
}
.funeng-page .qly-teacher-body {
  padding:20px 22px 22px;
}
.funeng-page .qly-teacher-body h4 {
  margin:0 0 6px;
  color:#13233d;
  font-size:24px;
  line-height:1.25;
  font-weight:900;
}
.funeng-page .qly-teacher-role {
  color:#0b63e5;
  font-size:14px;
  line-height:1.55;
  font-weight:800;
  margin-bottom:12px;
}
.funeng-page .qly-teacher-body p {
  margin:0 0 14px;
  color:#5d6d85;
  font-size:14px;
  line-height:1.78;
  font-weight:550;
  min-height:76px;
}
.funeng-page .qly-teacher-tags {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.funeng-page .qly-teacher-tags span {
  padding:6px 10px;
  border-radius:999px;
  background:#f6f9ff;
  border:1px solid #e8eef7;
  color:#5d6d85;
  font-size:12px;
  font-weight:700;
}
.funeng-page .qly-featured-info .qly-teacher-tags span {
  padding:7px 12px;
  font-size:13px;
}
@media (max-width:1100px){
  .funeng-page .qly-featured-teacher {
    grid-template-columns:1fr;
  }
  .funeng-page .qly-featured-photo {
    min-height:360px;
  }
  .funeng-page .qly-featured-points {
    grid-template-columns:1fr;
  }
  .funeng-page .qly-teacher-grid {
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}
@media (max-width:640px){
  .funeng-page .qly-featured-info {
    padding:28px 22px;
  }
  .funeng-page .qly-featured-info h3 {
    font-size:32px;
  }
  .funeng-page .qly-featured-photo {
    min-height:300px;
  }
  .funeng-page .qly-teacher-grid {
    grid-template-columns:1fr;
  }
}



.funeng-page .qly-teacher-card .qly-teacher-img {
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  background-size: cover !important;
  background-position: center !important;
}


.funeng-page .qly-featured-photo {
  aspect-ratio: auto !important;
}
@media (max-width:640px){
  .funeng-page .qly-teacher-card .qly-teacher-img {
    height:auto !important;
    aspect-ratio:1 / 1 !important;
  }
}




.funeng-page .qly-featured-photo {
  background:#ffffff !important;
  overflow:hidden !important;
}
.funeng-page .qly-featured-photo::before, .funeng-page .qly-featured-photo::after, .funeng-page .qly-teacher-img::before, .funeng-page .qly-teacher-img::after {
  content:none !important;
  display:none !important;
  background:none !important;
}
.funeng-page .qly-featured-photo .qly-photo-wrap {
  position:absolute !important;
  inset:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#ffffff !important;
}
.funeng-page .qly-featured-photo .qly-photo-wrap img {
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  object-position:center center !important;
  display:block !important;
  background:#ffffff !important;
}
.funeng-page .qly-teacher-card .qly-teacher-img {
  aspect-ratio:1 / 1 !important;
  height:auto !important;
  position:relative !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:hidden !important;
  background:#ffffff !important;
  border-bottom:1px solid rgba(13,39,80,.06) !important;
}
.funeng-page .qly-teacher-card .qly-teacher-img img {
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center top !important;
  display:block !important;
  background:#ffffff !important;
  filter:none !important;
  mix-blend-mode:normal !important;
}
.funeng-page .qly-teacher-card .qly-teacher-img span, .funeng-page .qly-featured-photo span {
  position:absolute !important;
  left:16px !important;
  bottom:16px !important;
  z-index:3 !important;
  background:rgba(255,255,255,.96) !important;
  color:#0b63e5 !important;
  border:1px solid rgba(11,99,229,.10) !important;
  box-shadow:0 8px 22px rgba(13,39,80,.08) !important;
}



.funeng-page .services-visual-grid {
  perspective: 1200px;
}
.funeng-page .service-visual-card {
  position:relative;
  cursor:pointer;
  transform-style:preserve-3d;
  transition:
    transform .34s cubic-bezier(.2,.8,.2,1),
    box-shadow .34s ease,
    border-color .34s ease,
    background .34s ease !important;
}
.funeng-page .service-visual-card::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  pointer-events:none;
  opacity:0;
  background:linear-gradient(135deg, rgba(11,99,229,.12), rgba(255,122,26,.12));
  transition:opacity .32s ease;
  z-index:1;
}
.funeng-page .service-visual-card:hover {
  transform:translateY(-8px) rotateX(1.2deg) !important;
  box-shadow:0 28px 60px rgba(15,35,68,.14) !important;
  border-color:rgba(11,99,229,.25) !important;
}
.funeng-page .service-visual-card:hover::before {
  opacity:1;
}
.funeng-page .service-visual-image {
  position:relative;
  overflow:hidden;
  height:188px !important;
  background-size:cover !important;
  background-position:center !important;
  transition:height .34s ease;
}
.funeng-page .service-visual-image::after {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(7,25,54,.44), rgba(7,25,54,.08) 58%, rgba(7,25,54,0));
  opacity:.72;
  transition:opacity .32s ease, background .32s ease;
}
.funeng-page .service-visual-card:hover .service-visual-image::after {
  opacity:1;
  background:
    linear-gradient(to top, rgba(7,25,54,.62), rgba(7,25,54,.16) 58%, rgba(7,25,54,.04));
}
.funeng-page .service-visual-card .service-visual-image {
  transition:transform .38s ease, filter .38s ease;
}
.funeng-page .service-visual-card:hover .service-visual-image {
  filter:saturate(1.08) contrast(1.04);
}
.funeng-page .service-visual-body {
  position:relative;
  z-index:2;
  transition:transform .32s ease;
}
.funeng-page .service-visual-card:hover .service-visual-body {
  transform:translateY(-2px);
}
.funeng-page .service-visual-body .tag {
  transition:transform .28s ease, background .28s ease, color .28s ease;
}
.funeng-page .service-visual-card:hover .tag {
  transform:translateY(-2px);
  background:#0b63e5 !important;
  color:#ffffff !important;
}
.funeng-page .service-visual-card h3 {
  transition:color .28s ease, transform .28s ease;
}
.funeng-page .service-visual-card:hover h3 {
  color:#0b4ec4 !important;
  transform:translateX(2px);
}
.funeng-page .service-visual-card p {
  transition:color .28s ease;
}
.funeng-page .service-visual-card:hover p {
  color:#4d5f78 !important;
}
.funeng-page .service-mini-tags span {
  transition:
    transform .24s ease,
    background .24s ease,
    border-color .24s ease,
    color .24s ease;
}
.funeng-page .service-visual-card:hover .service-mini-tags span {
  background:#eef5ff !important;
  border-color:#d8e8ff !important;
  color:#0b63e5 !important;
}
.funeng-page .service-visual-card:hover .service-mini-tags span:nth-child(1) { transform:translateY(-2px); }
.funeng-page .service-visual-card:hover .service-mini-tags span:nth-child(2) { transform:translateY(-2px); transition-delay:.03s; }
.funeng-page .service-visual-card:hover .service-mini-tags span:nth-child(3) { transform:translateY(-2px); transition-delay:.06s; }


.funeng-page .org-card, .funeng-page .qly-teacher-card, .funeng-page .case-showcase-main, .funeng-page .case-showcase-small, .funeng-page .case-showcase-wide, .funeng-page .step {
  will-change: transform;
}
.funeng-page .org-card {
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
}
.funeng-page .org-card:hover {
  transform:translateY(-7px) !important;
  box-shadow:0 24px 52px rgba(17,38,70,.12) !important;
  border-color:rgba(11,99,229,.22) !important;
}
.funeng-page .qly-teacher-card {
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
}
.funeng-page .qly-teacher-card:hover {
  transform:translateY(-7px) !important;
  box-shadow:0 24px 52px rgba(16,24,40,.13) !important;
}
.funeng-page .qly-teacher-card .qly-teacher-img img {
  transition:transform .36s ease;
}
.funeng-page .qly-teacher-card:hover .qly-teacher-img img {
  transform:scale(1.035);
}
.funeng-page #process .step {
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease !important;
}
.funeng-page #process .step:hover {
  transform:translateY(-7px) !important;
  box-shadow:0 18px 40px rgba(16,24,40,.10) !important;
}
.funeng-page #process .step:hover .step-num {
  transform:scale(1.12) rotate(-3deg) !important;
}


@keyframes qlyFadeUpSoft{
  from{ opacity:0; transform:translateY(20px); }
  to{ opacity:1; transform:translateY(0); }
}
.funeng-page .service-visual-card, .funeng-page .org-card, .funeng-page .qly-teacher-card, .funeng-page .case-moments-wrap, .funeng-page .process-wrap {
  animation:qlyFadeUpSoft .7s ease both;
}
.funeng-page .service-visual-card:nth-child(2), .funeng-page .org-card:nth-child(2), .funeng-page .qly-teacher-card:nth-child(2) { animation-delay:.06s; }
.funeng-page .service-visual-card:nth-child(3), .funeng-page .org-card:nth-child(3), .funeng-page .qly-teacher-card:nth-child(3) { animation-delay:.12s; }
.funeng-page .service-visual-card:nth-child(4), .funeng-page .org-card:nth-child(4), .funeng-page .qly-teacher-card:nth-child(4) { animation-delay:.18s; }
.funeng-page .service-visual-card:nth-child(5), .funeng-page .qly-teacher-card:nth-child(5) { animation-delay:.24s; }
.funeng-page .service-visual-card:nth-child(6), .funeng-page .qly-teacher-card:nth-child(6) { animation-delay:.30s; }

@media (max-width: 768px){
  .funeng-page .service-visual-image {
    height:210px !important;
  }
  .funeng-page .service-visual-card:hover {
    transform:translateY(-5px) !important;
  }
}


.funeng-page .nav {
  display: none;
}

.funeng-page .btn,
.funeng-page .form button {
  text-decoration: none;
}

.funeng-page .form button {
  font-family: inherit;
}
