/* 页面特定样式 */
    .hero-section {
      background: linear-gradient(135deg, #f8faff 0%, #e6f0ff 100%);
      padding: 80px 0 60px;
      text-align: center;
      margin-bottom: 40px;
    }
    .hero-title {
      font-size: 36px;
      font-weight: 700;
      color: #1e2a3b;
      margin: 20px 0 16px;
    }
    .hero-desc {
      font-size: 18px;
      color: #64748b;
      margin-bottom: 32px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: #1a56db;
      color: #fff;
      padding: 12px 32px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s, transform 0.3s;
    }
    .btn-primary:hover {
      background: #1342b8;
      transform: translateY(-2px);
    }
    .btn-secondary {
      background: transparent;
      color: #1a56db;
      padding: 12px 32px;
      border: 2px solid #1a56db;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
    }
    .btn-secondary:hover {
      background: #1a56db;
      color: #fff;
      transform: translateY(-2px);
    }
    .hero-breadcrumb {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 20px;
    }
    .hero-breadcrumb a {
      color: #1a56db;
      text-decoration: none;
    }
    .hero-breadcrumb a:hover {
      text-decoration: underline;
    }
    .hero-breadcrumb .current {
      color: #1e2a3b;
      font-weight: 500;
    }
    .risk-section {
      padding: 60px 0;
      background: #f8faff;
    }
    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .risk-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px;
      margin-bottom: 24px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .risk-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(26,86,219,0.15);
    }
    .risk-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: #1e2a3b;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .risk-card h4 {
      font-size: 16px;
      font-weight: 600;
      color: #1e2a3b;
      margin: 20px 0 12px;
    }
    .risk-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }
    .risk-content {
      flex: 1;
    }
    .risk-list {
      list-style: none;
      padding: 0;
    }
    .risk-list li {
      padding: 8px 0;
      border-bottom: 1px solid #e2e8f0;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .risk-list li:last-child {
      border-bottom: none;
    }
    .risk-list li:before {
      content: "⚠️";
      flex-shrink: 0;
      margin-top: 2px;
    }
    .solution-list {
      list-style: none;
      padding: 0;
    }
    .solution-list li {
      padding: 8px 0;
      border-bottom: 1px solid #e2e8f0;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .solution-list li:last-child {
      border-bottom: none;
    }
    .solution-list li:before {
      content: "✅";
      flex-shrink: 0;
      margin-top: 2px;
    }
    .termination-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
    }
    .termination-table th,
    .termination-table td {
      padding: 12px;
      text-align: left;
      border-bottom: 1px solid #e2e8f0;
    }
    .termination-table th {
      background: #f8faff;
      font-weight: 600;
    }
    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-header h2 {
      font-size: 28px;
      font-weight: 700;
      color: #1e2a3b;
      margin-bottom: 12px;
    }
    .section-header p {
      font-size: 16px;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
    }
    
    /* 响应式设计 */
    @media (max-width: 1100px) {
      .container {
        max-width: 100%;
      }
      .hero-title {
        font-size: 32px;
      }
      .hero-desc {
        font-size: 16px;
      }
    }
    
    @media (max-width: 768px) {
      .hero-section {
        padding: 60px 0 40px;
      }
      .hero-actions {
        flex-direction: column;
        align-items: center;
      }
      .btn-primary,
      .btn-secondary {
        width: 200px;
        text-align: center;
      }
      .risk-card {
        padding: 24px;
      }
      .risk-card h3 {
        font-size: 18px;
      }
    }