 /* 特殊前缀 gp- 避免样式冲突 */
    .gp-wrapper *,
    .gp-wrapper *::before,
    .gp-wrapper *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .gp-wrapper {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', sans-serif;
      background-color: #f8fafd;
      color: #1b2b4b;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      padding: 0 1.25rem;
      --gp-primary: #1f4e8c;
      --gp-primary-light: #2e6ab0;
      --gp-accent: #e67e22;
      --gp-accent-soft: #fef2e6;
      --gp-soft-bg: #eef4fc;
      --gp-card-bg: #ffffff;
      --gp-text: #1b2b4b;
      --gp-text-soft: #3e5570;
      --gp-border: #d9e2ef;
      --gp-shadow: 0 8px 20px rgba(20, 40, 80, 0.06);
    }

    .gp-container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 2rem 0 3rem;
    }
.teachers {
    background-color: white;
    border: 0;
    border-radius: 0;
   
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0);
}
    .teachers h2,
    .teachers h2 a,
    .gp-wrapper h2,
    .gp-wrapper h3 {
        font-weight: 600;
        line-height: 1.3;
        color: #0d213b;
        text-align: left;
    }
        .teachers h2 a {
            font-size: 1.9rem;
        }
        .gp-wrapper h2 {
            font-size: 1.9rem;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
            position: relative;
            padding-bottom: 0.6rem;
        }

    .gp-wrapper h2::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 64px;
      height: 4px;
      background: var(--gp-accent);
      border-radius: 4px;
    }

.gp-wrapper .gp-section,.teachers {
    margin-bottom: 3.5rem;
}

    .gp-wrapper .gp-section-intro {
      font-size: 1.08rem;
      color: var(--gp-text-soft);
      max-width: 800px;
      margin-bottom: 2rem;
    }

    .gp-card {
      background: var(--gp-card-bg);
      border-radius: 24px;
      padding: 1.8rem 1.8rem;
      box-shadow: var(--gp-shadow);
      border: 1px solid var(--gp-border);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .gp-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 28px rgba(20, 40, 80, 0.08);
    }

    /* 痛点 */
    .gp-pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0 1rem;
    }

        .gp-pain-grid  figure{
      aspect-ratio: 3 / 4;
      background: #409eff;
      color: #fff;
      display: grid;
      place-items: center;
      border-radius: 8px;
      /* 防止内容撑开盒子破坏比例 */
      overflow: hidden;
    }
 .gp-pain-grid  figure img{ width: 100%;

 }
    

    /* 高考锚点 */
    .gp-exam-anchor {
      background: var(--gp-soft-bg);
      border-radius: 28px;
      padding: 2rem 2rem 1.8rem;
      margin: 1.8rem 0;
      border-left: 6px solid var(--gp-primary);
    }

    .gp-exam-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin: 1.2rem 0 0.8rem;
    }

    .gp-stat-item {
      flex: 1 1 140px;
    }

    .gp-stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--gp-primary);
      line-height: 1.2;
    }

    .gp-stat-label {
      font-size: 0.95rem;
      color: var(--gp-text-soft);
    }

    /* 章节脉络 */
    .gp-chapter-grid {
      display: grid;
      
      grid-template-columns: 1fr 1fr 1fr; /* 三列均分 */
  grid-template-rows: auto auto;  /* 两行 */

      gap: 1.4rem;
      margin: 1.8rem 0;
    }

    .gp-chapter-card {
      background: var(--gp-card-bg);
      border-radius: 22px;
      padding: 1.4rem 1.5rem 1.6rem;
      border: 1px solid var(--gp-border);
      box-shadow: var(--gp-shadow);
      display: flex;
      flex-direction: column;
    }

        .gp-chapter-card .gp-chapter-num {
            display: inline-block;
            background: var(--gp-primary);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.2rem 0.9rem;
            border-radius: 40px;
            margin-bottom: 0.9rem;
            align-self: flex-start;
            letter-spacing: 0.3px;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: white;
        }

    .gp-chapter-card p {
      color: var(--gp-text-soft);
      font-size: 1.1rem;
      margin-bottom: 1rem;
      flex: 1;
    }

    .gp-chapter-tag {
      font-size: 1rem;
      color: var(--gp-primary);
      font-weight: 500;
      border-top: 1px dashed var(--gp-border);
      padding-top: 0.7rem;
      margin-top: auto;
    }

    /* 方案分层 */
    .gp-plan-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.6rem;
      margin-top: 1.8rem;
    }

    .gp-plan-card {
      background: var(--gp-card-bg);
      border-radius: 24px;
      padding: 1.6rem 1.5rem 1.8rem;
      border: 1px solid var(--gp-border);
      box-shadow: var(--gp-shadow);
      display: flex;
      flex-direction: column;
    }

    .gp-plan-tag {
      display: inline-block;
      background: var(--gp-accent-soft);
      color: #b3540e;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.3px;
      padding: 0.25rem 0.9rem;
      border-radius: 20px;
      margin-bottom: 1rem;
      align-self: flex-start;
    }

    .gp-plan-card h3 {
      font-size: 1.3rem;
      margin-bottom: 0.6rem;
    }

    .gp-plan-card p {
      color: var(--gp-text-soft);
      font-size: 0.95rem;
      margin-bottom: 1.2rem;
      flex: 1;
    }

    .gp-plan-badge {
      font-size: 0.85rem;
      color: var(--gp-primary);
      font-weight: 500;
      border-top: 1px dashed var(--gp-border);
      padding-top: 0.8rem;
      margin-top: auto;
    }

    /* 各省特色 */
    .gp-region-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 1.2rem;
      margin: 1.5rem 0;
    }

    .gp-region-item {
      background: var(--gp-card-bg);
      border-radius: 18px;
      padding: 1.2rem 1.2rem;
      border-left: 5px solid var(--gp-primary-light);
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }

    .gp-region-item strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 0.3rem;
      color: var(--gp-primary);
    }

    .gp-region-item span {
      font-size: 0.92rem;
      color: var(--gp-text-soft);
    }

   

    /* FAQ */
    .gp-faq-list {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin-top: 1.8rem;
    }

    .gp-faq-item {
      background: var(--gp-card-bg);
      border-radius: 20px;
      padding: 1.5rem 1.8rem;
      border: 1px solid var(--gp-border);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    .gp-faq-item h3 {
      font-size: 1.15rem;
      margin-bottom: 0.7rem;
      color: var(--gp-primary);
      display: flex;
      gap: 0.5rem;
    }

    .gp-faq-item h3::before {
      content: 'Q';
      font-weight: 700;
      color: var(--gp-accent);
    }

    .gp-faq-item p {
      color: var(--gp-text-soft);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* 特征优点 */
    .gp-feature-points {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin: 2rem 0 1.5rem;
    }

    .gp-feature-points p {
      background: var(--gp-card-bg);
      border-radius: 40px;
      padding: 0.8rem 1.8rem;
      font-weight: 500;
      color: var(--gp-primary);
      border: 1px solid var(--gp-border);
      box-shadow: 0 2px 10px rgba(0,0,0,0.02);
      font-size: 1rem;
    }

    
   

    @media (max-width: 600px) {
      .gp-wrapper {
        padding: 0 1rem;
      }

      .gp-wrapper h2 {
        font-size: 1.6rem;
      }

      .gp-cta-card {
        flex-direction: column;
        text-align: center;
      }

      .gp-cta-text p {
        margin-left: auto;
        margin-right: auto;
      }

      .gp-feature-points p {
        width: 100%;
        text-align: center;
      }

         .gp-pain-grid {
   
      grid-template-columns: 1fr 1fr; /* 两列均分 */
  grid-template-rows: auto auto;  /* 两行 */
      
    }
        .gp-chapter-grid {
     
      grid-template-columns: 1fr 1fr; /* 两列均分 */
  grid-template-rows: auto auto  auto;  /* 两行 */
 
    }
    }

    .gp-highlight {
      color: var(--gp-primary);
      font-weight: 600;
    }

    .gp-small-note {
      font-size: 0.9rem;
      color: #6e8aa8;
      margin-top: 0.5rem;
    }