/* ===== 新增HTML页面样式 ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background: #f5f7fa;
    }
    
    /* 导航栏样式 */
    .main-header {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    /* 默认隐藏移动端菜单元素 */
    .mobile-top-breadcrumb,
    .mobile-menu {
      display: none;
    }
    
    .header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.5rem;
      font-weight: bold;
      text-decoration: none;
      color: white;
    }
    
    .logo-icon {
      font-size: 2rem;
    }
    
    .main-nav {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
    }
    
    .nav-list {
      list-style: none;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      padding: 0.5rem;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .nav-list li {
      margin: 0 0.5rem;
    }
    
    .nav-list a {
      color: white;
      text-decoration: none;
      padding: 0.5rem 1rem;
      display: block;
      border-radius: 5px;
      transition: all 0.3s;
    }
    
    .nav-list a:hover,
    .nav-list a.active {
      background: rgba(255,255,255,0.2);
    }
    
    /* 连中标记样式 */
     .winning-streak {
      color: #e20e0e;
      font-weight: bold;
      background: linear-gradient(135deg, #e20e0e 0%, #e20e0e 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      /*text-shadow: 0 0 10px rgba(255, 38, 0, 0.8);*/
      font-size: 0.9rem;
      font-weight: 800;
      margin-right: 4px;
      display: inline-block;
      animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
      0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
      }
      50% {
        opacity: 0.9;
        text-shadow: 0 0 20px rgba(255, 215, 0, 1);
      }
    }
    
    /* 预测按钮样式 */
    .btn-prediction {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 6px 12px;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
      text-decoration: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .btn-prediction:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .btn-prediction:active {
      transform: translateY(0);
    }
    
    .btn-outline-primary.btn-prediction {
      border-width: 2px;
    }
    
    .btn-primary.btn-prediction {
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

/* Hero区域 */
    .hero {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 3rem 5%;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }
    
    .cta-button {
      display: inline-block;
      background: white;
      color: #667eea;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    
    .subtitle {
      margin-top: 1.5rem;
      font-size: 0.9rem;
      opacity: 0.8;
    }
    
    /* 容器 */
    .section {
      padding: 3rem 5%;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* 轮播图样式 */
    .carousel-container {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .carousel-items {
      display: flex;
      transition: transform 0.5s ease-in-out;
      will-change: transform;
    }

    .carousel-item {
      flex: 0 0 100%;
      min-width: 100%;
      padding: 2rem;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* 轮播控制按钮 */
    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.8);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.5rem;
      color: #667eea;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .carousel-control:hover {
      background: white;
      color: #764ba2;
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-control-prev {
      left: 10px;
    }

    .carousel-control-next {
      right: 10px;
    }

    /* 轮播指示器 */
    .carousel-indicators {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      background: white;
      width: 24px;
      border-radius: 6px;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
      .carousel-container {
        margin: 0 1rem;
      }
      
      .carousel-item {
        padding: 1.5rem;
      }
      
      .carousel-control {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
      }
      
      .indicator {
        width: 10px;
        height: 10px;
      }
      
      .indicator.active {
        width: 20px;
      }
    }
    
    /* 移动端响应式设计（优化版） */
    @media (max-width: 768px) {
      /* 手机端顶部面包屑导航 */
      .mobile-top-breadcrumb {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 0.8rem 1rem;
        position: sticky;
        top: 0;
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }
      
      .mobile-top-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.1rem;
        font-weight: bold;
        text-decoration: none;
        color: white;
      }
      
      .mobile-top-logo img {
        width: 40px;
        height: 40px;
      }
      
      .mobile-menu-toggle {
        background: none;
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 0.3rem;
        border-radius: 4px;
        transition: background 0.3s;
      }
      
      .mobile-menu-toggle:hover {
        background: rgba(255,255,255,0.2);
      }
      
      /* 手机端菜单 */
      .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(102, 126, 234, 0.98);
        z-index: 1002;
        padding: 5rem 1rem 1rem;
        backdrop-filter: blur(10px);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
      }
      
      .mobile-menu.active {
        transform: translateX(0);
      }
      
      .mobile-menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
      }
      
      .mobile-menu-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
      }
      
      .mobile-menu-list li {
        width: 100%;
        max-width: 250px;
      }
      
      .mobile-menu-list a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 10px;
        background: rgba(255,255,255,0.1);
        text-align: center;
        font-size: 1.1rem;
        transition: background 0.3s;
      }
      
      .mobile-menu-list a:hover,
      .mobile-menu-list a.active {
        background: rgba(255,255,255,0.2);
      }
      
      /* 隐藏桌面端头部 */
      .main-header {
        display: none;
      }
      
      .header-top {
        padding: 0;
        position: relative;
        flex-direction: column;
        gap: 0;
      }
      
      .logo {
        font-size: 1.2rem;
      }
      
      .main-nav {
        display: none !important;
        position: relative;
      }
      
      .mobile-menu-toggle {
        display: block !important;
        position: absolute;
        right: 1rem;
        top: 0.5rem;
        z-index: 1001;
      }
      
      .main-nav.active {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(102, 126, 234, 0.98);
        z-index: 1000;
        padding: 5rem 1rem 1rem;
        backdrop-filter: blur(10px);
      }
      
      .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }
      
      .nav-list li {
        margin: 0.5rem 0;
      }
      
      .nav-list a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        border-radius: 10px;
        background: rgba(255,255,255,0.1);
        width: 200px;
        text-align: center;
      }
      
      .prediction-grid,
      .process-grid,
      .features-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      
      .section {
        padding: 2rem 0.5rem;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
      }
      
      .section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
      }
      
      /* 移动端内容区域优化 - 铺满整个屏幕 */
      .main-content {
        padding: 0.5rem 0.3rem !important;
        margin: 0 !important;
        overflow-x: hidden;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-height: calc(100vh - 60px); /* 减去顶部导航高度 */
      }
      
      .container {
        max-width: 100%;
        padding: 0 0.5rem;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
      }
      
      /* 让所有section铺满屏幕 */
      .section {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
        border-radius: 0;
      }
      
      /* Hero区域铺满屏幕 */
      .hero {
        padding: 2rem 0.5rem !important;
        margin: 0 !important;
        width: 100% !important;
        border-radius: 0;
        min-height: 200px;
      }
      
      /* 卡片容器铺满 */
      .latest-results-card,
      .algorithm-selection-card {
        margin: 0.5rem 0 !important;
        width: 100% !important;
        border-radius: 0;
        box-sizing: border-box;
      }
      
      /* 表格容器铺满 */
      .results-table {
        margin: 0.5rem 0 !important;
        width: 100% !important;
        border-radius: 0;
      }
      
      /* 表格容器允许横向滚动 */
      .results-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        margin: 0.5rem 0;
      }
      
      /* 优化结果展示区域的移动端显示 */
      
      /* 开奖历史表格移动端优化 */
      .results-table {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0.5rem 0;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      }
      
      .results-table table {
        width: 100%;
        min-width: 600px; /* 确保表格在移动端有足够宽度 */
        border-collapse: collapse;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        font-size: 0.8rem;
      }
      
      .results-table th,
      .results-table td {
        padding: 0.3rem 0.5rem;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.8rem;
        line-height: 1.4;
      }
      
      .results-table th {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        font-weight: 600;
        font-size: 0.75rem;
        padding: 0.8rem 0.3rem;
      }
      
      .results-table tr:hover {
        background-color: #f8f9ff;
        transition: background-color 0.2s ease;
      }
      
      /* 开奖号码显示优化 */
      .result-numbers {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        flex-wrap: wrap;
      }
      
      .result-ball {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 50%;
        font-size: 0.7rem;
        font-weight: bold;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin: 0.1rem;
      }
    }
  
    
    /* 移动端表格优化 */
    @media (max-width: 768px) {
      /* 手机端按钮样式调整 */
      .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
        margin: 0.1rem;
      }
      
      .prediction-buttons-grid .btn-sm {
        padding: 0.3rem 0.4rem;
        font-size: 0.7rem;
      }
      
      .results-table .label2 {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        margin: 0.1rem;
      }
      
      .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
      }
      .results-table {
        margin: 0.5rem 0;
        border-radius: 6px;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }
      
      .results-table th,
      .results-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
        min-width: auto;
      }
      
      .results-table th {
        padding: 0.8rem 0.3rem;
        font-size: 0.75rem;
      }
      
      .result-ball {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
      }
      
      .result-numbers {
        gap: 0.2rem;
        flex-wrap: nowrap;
        justify-content: center;
      }
      
      .label2 {
        font-size: 0.7rem !important;
        padding: 3px 4px !important;
      }
    }
    
    @media (max-width: 480px) {
      .results-table {
        margin: 0.3rem 0;
        border-radius: 4px;
      }
      
      .results-table th,
      .results-table td {
        padding: 0.5rem 0.2rem;
        font-size: 0.75rem;
      }
      
      .results-table th {
        padding: 0.6rem 0.2rem;
        font-size: 0.7rem;
      }
      
      .result-ball {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
      }
      
      .label2 {
        font-size: 0.65rem !important;
        padding: 2px 3px !important;
      }
      
      .section {
        padding: 1.5rem 0.3rem;
      }
      
      .main-content {
        padding: 0.3rem !important;
      }
      
      .container {
        padding: 0 0.3rem;
      }
      
      .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
      }
    }
    
    /* 360px以下极小屏幕优化 */
    @media (max-width: 360px) {
      .section {
        padding: 1rem 0.2rem;
      }
      
      .main-content {
        padding: 0.2rem !important;
      }
      
      .container {
        padding: 0 0.2rem;
      }
      
      .results-table {
        margin: 0.2rem 0;
      }
      
      .results-table th,
      .results-table td {
        padding: 0.4rem 0.1rem;
        font-size: 0.7rem;
      }
      
      .result-ball {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
      }
      
      .section-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
      }
      
      .label2 {
        font-size: 0.6rem !important;
        padding: 1px 2px !important;
      }
      
      /* 确保表格在极小屏幕上的滚动效果 */
      .results-table::-webkit-scrollbar {
        height: 4px;
      }
      
      .results-table::-webkit-scrollbar-thumb {
        background: #667eea;
        border-radius: 2px;
      }
    }
      .results-table table {
        min-width: 600px;
        width: 100%;
        font-size: 0.9rem;
      }
      
      .results-table th,
      .results-table td {
        padding: 0.8rem 0.5rem;
        white-space: nowrap;
      }
      
      /* 调整按钮组在移动端的显示 */
      .btn-prediction {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
        min-width: auto;
      }
      
      /* 优化最新开奖结果区域的移动端布局 */
      .result-numbers {
        flex-wrap: wrap;
        gap: 0.3rem;
        justify-content: center;
      }
      
      .result-ball {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
        min-width: 30px;
      }
      
      .label2 {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        margin: 0.1rem;
      }
      
      /* 移动端字体大小调整 */
      h1, h2, h3, h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
      
      h1 { font-size: 1.8rem; }
      h2 { font-size: 1.5rem; }
      h3 { font-size: 1.3rem; }
      h4 { font-size: 1.1rem; }
      
      /* 确保所有容器都使用box-sizing: border-box */
      * {
        box-sizing: border-box;
      }
      
      /* 移动端滚动条优化 */
      ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
      }
      
      ::-webkit-scrollbar-thumb {
        background: rgba(102, 126, 234, 0.5);
        border-radius: 3px;
      }
      
      /* Hero区域移动端样式 */
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
  

    

    
    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 3rem;
      color: #333;
    }
    
    /* 预测卡片 */
    .prediction-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }
    
    .prediction-card {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(102, 126, 234, 0.1);
    }
    
    .prediction-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    }
    
    .prediction-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    }
    
    .prediction-title {
      font-size: 1.4rem;
      color: #667eea;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(102, 126, 234, 0.1);
    }
    
    .trend-badge {
      padding: 0.4rem 1rem;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: all 0.3s;
    }
    
    .trend-badge:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .trend-up {
      background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
      color: #2e7d32;
    }
    
    .trend-down {
      background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
      color: #e65100;
    }
    
    .trend-stable {
      background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      color: #1565c0;
    }
    
    .prediction-desc {
      color: #666;
      margin-bottom: 2rem;
      line-height: 1.8;
      font-size: 1rem;
    }
    
    .number-display {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 2rem 0;
      flex-wrap: wrap;
    }
    
    .number-ball {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .number-ball:hover {
      transform: scale(1.2) rotate(10deg);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
    }
    
    .prediction-meta {
      display: flex;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid #eee;
      font-size: 0.9rem;
      color: #999;
    }
    
    .accuracy {
      color: #4caf50;
      font-weight: bold;
    }
    
    /* 开奖结果表格 - 完全自适应方案 */
      
      /* 基础表格样式 */
      .table {
        width: 100%;
        margin-bottom: 1rem;
        background-color: transparent;
        border-collapse: collapse;
        table-layout: fixed;
      }
      
      .table th,
      .table td {
        padding: 0.75rem;
        vertical-align: middle;
        border: 1px solid #e9ecef;
        text-align: center;
        word-break: break-word;
        overflow-wrap: break-word;
      }
      
      .table thead th {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        font-weight: 600;
        border-bottom: 2px solid #dee2e6;
        position: sticky;
        top: 0;
        z-index: 10;
      }
      
      .table tbody tr:nth-child(even) {
        background-color: #f8f9ff;
      }
      
      .table tbody tr:hover {
        background-color: #e3f2fd;
        transform: translateX(2px);
        transition: all 0.2s ease;
      }
      
      .text-center {
        text-align: center !important;
      }
      
      /* 开奖历史表格容器 - 完全自适应 */
      .results-table {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 1rem 0;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        background: white;
        position: relative;
      }
      
      .results-table::before {
        content: "← 滑动查看完整表格 →";
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        background: #667eea;
        color: white;
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        white-space: nowrap;
        display: none;
      }
      
      /* 开奖号码显示优化 */
      .result-numbers {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        flex-wrap: wrap;
        min-height: 40px;
      }
      
      .result-ball {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 50%;
        font-size: 0.9rem;
        font-weight: bold;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
      }
      
      .result-ball:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
      }
      
      /* 移动端完全自适应方案 */
      @media (max-width: 1024px) {
        .table {
          min-width: 100%;
          table-layout: auto;
        }
        
        .results-table::before {
          display: block;
        }
      }
      
      @media (max-width: 768px) {
        .table {
          min-width: 100%;
          font-size: 0.85rem;
          table-layout: auto;
        }
        
        .table th,
        .table td {
          padding: 0.6rem 0.4rem;
          white-space: normal;
          word-break: break-word;
          overflow: visible;
        }
        
        .result-ball {
          width: 28px;
          height: 28px;
          font-size: 0.8rem;
        }
        
        .result-numbers {
          gap: 0.2rem;
          flex-wrap: wrap;
          justify-content: center;
        }
        
        .label2 {
          font-size: 0.75rem !important;
          padding: 0.2rem 0.5rem !important;
        }
        
        /* 表格列宽优化 - 确保所有列都能显示 */
        .table th:nth-child(1),
        .table td:nth-child(1) {
          width: 15%;
          min-width: 70px;
          max-width: 90px;
        }
        
        .table th:nth-child(2),
        .table td:nth-child(2) {
          width: 35%;
          min-width: 150px;
          max-width: 180px;
        }
        
        .table th:nth-child(3),
        .table td:nth-child(3) {
          width: 25%;
          min-width: 100px;
          max-width: 120px;
        }
        
        .table th:nth-child(4),
        .table td:nth-child(4) {
          width: 25%;
          min-width: 90px;
          max-width: 110px;
        }
        
        /* 确保表格容器有足够的滚动空间 */
        .results-table {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          margin: 0 -1rem;
          padding: 0 1rem;
          width: calc(100% + 2rem);
        }
        
        .results-table table {
          min-width: 100%;
        }
      }
      
      @media (max-width: 480px) {
        .table {
          min-width: 100%;
          font-size: 0.8rem;
          table-layout: auto;
        }
        
        .table th,
        .table td {
          padding: 0.5rem 0.3rem;
          white-space: normal;
          word-break: break-word;
          overflow: visible;
        }
        
        .result-ball {
          width: 24px;
          height: 24px;
          font-size: 0.7rem;
        }
        
        /* 优化表格列宽，确保所有列都能显示 */
        .table th:nth-child(1),
        .table td:nth-child(1) {
          width: 15%;
          min-width: 60px;
          max-width: 80px;
        }
        
        .table th:nth-child(2),
        .table td:nth-child(2) {
          width: 35%;
          min-width: 120px;
          max-width: 150px;
        }
        
        .table th:nth-child(3),
        .table td:nth-child(3) {
          width: 25%;
          min-width: 80px;
          max-width: 100px;
        }
        
        .table th:nth-child(4),
        .table td:nth-child(4) {
          width: 25%;
          min-width: 80px;
          max-width: 100px;
        }
        
        /* 确保表格容器有足够的滚动空间 */
        .results-table {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          margin: 0 -1rem;
          padding: 0 1rem;
          width: calc(100% + 2rem);
        }
        
        .results-table table {
          min-width: 100%;
        }
        
        /* 滚动条优化 */
        .results-table::-webkit-scrollbar {
          height: 6px;
        }
        
        .results-table::-webkit-scrollbar-track {
          background: #f1f1f1;
          border-radius: 3px;
        }
        
        .results-table::-webkit-scrollbar-thumb {
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          border-radius: 3px;
        }
        
        .results-table::-webkit-scrollbar-thumb:hover {
          background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
        }
      }
      
      /* 确保表格内容不会被裁剪 */
      .table td {
        overflow: visible;
        text-overflow: clip;
      }
      
      /* 添加滚动提示 */
      .results-table::after {
        content: "滑动查看完整表格";
        position: absolute;
        top: -30px;
        right: 10px;
        background: rgba(102, 126, 234, 0.9);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.7rem;
        animation: scrollHint 2s infinite;
        display: none;
      }
      
      @keyframes scrollHint {
        0%, 100% { opacity: 0.7; transform: translateX(0); }
        50% { opacity: 1; transform: translateX(-5px); }
      }
      
      @media (max-width: 768px) {
        .results-table::after {
          display: block;
        }
      }
      
      /* 超小屏幕特殊处理 */
      @media (max-width: 360px) {
        .table {
          min-width: 550px;
          font-size: 0.75rem;
        }
        
        .table th,
        .table td {
          padding: 0.4rem 0.2rem;
        }
        
        .result-ball {
          width: 22px;
          height: 22px;
          font-size: 0.65rem;
        }
        
        .label2 {
          font-size: 0.65rem !important;
          padding: 0.1rem 0.3rem !important;
        }
      }
    .results-table {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      margin-bottom: 2rem;
      border: 1px solid rgba(102, 126, 234, 0.1);
    }
    
    .results-table table {
      width: 100%;
      border-collapse: collapse;
    }
    
    .results-table th {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 1.2rem;
      text-align: center;
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .results-table td {
      padding: 1.2rem;
      text-align: center;
      border-bottom: 1px solid rgba(102, 126, 234, 0.1);
      transition: all 0.3s;
    }
    
    .results-table tr:hover {
      background: rgba(102, 126, 234, 0.05);
      transform: scale(1.01);
    }
    
    .result-numbers {
      display: flex;
      justify-content: center;
      gap: 0.8rem;
      align-items: center;
    }
    
    .result-ball {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1rem;
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .result-ball:hover {
      transform: scale(1.3) rotate(15deg);
      box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
    }
    
    /* 大结果球 */
    .result-ball.large {
      width: 70px;
      height: 70px;
      font-size: 1.8rem;
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
    
    .size-badge, .parity-badge {
      padding: 0.5rem 1.2rem;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .size-badge:hover, .parity-badge:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .size-big {
      background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
      color: #c62828;
      border: 2px solid rgba(198, 40, 40, 0.2);
    }
    
    .size-small {
      background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
      color: #2e7d32;
      border: 2px solid rgba(46, 125, 50, 0.2);
    }
    
    .parity-odd {
      background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
      color: #e65100;
      border: 2px solid rgba(230, 81, 0, 0.2);
    }
    
    .parity-even {
      background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      color: #1565c0;
      border: 2px solid rgba(21, 101, 192, 0.2);
    }
    
    /* 服务流程 */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }
    
    .process-item {
      text-align: center;
      padding: 2rem;
      background: white;
      border-radius: 15px;
      box-shadow: 0 3px 15px rgba(0,0,0,0.08);
      transition: all 0.3s;
    }
    
    .process-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    }
    
    .process-number {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin: 0 auto 1rem;
    }
    
    .process-item h3 {
      margin-bottom: 0.5rem;
      color: #333;
    }
    
    .process-item p {
      color: #666;
      font-size: 0.95rem;
    }
    
    /* 服务优势 */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    
    .feature-card {
      background: white;
      border-radius: 15px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 3px 15px rgba(0,0,0,0.08);
      transition: all 0.3s;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    }
    
    .feature-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    
    .feature-card h3 {
      margin-bottom: 1rem;
      color: #333;
    }
    
    .feature-card p {
      color: #666;
      line-height: 1.8;
    }
    
    /* 客户评价 */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    
    .testimonial-card {
      background: white;
      border-radius: 15px;
      padding: 2rem;
      box-shadow: 0 3px 15px rgba(0,0,0,0.08);
      position: relative;
    }
    
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 1rem;
      left: 1.5rem;
      font-size: 4rem;
      color: #667eea;
      opacity: 0.2;
      font-family: Georgia, serif;
    }
    
    .testimonial-content {
      margin-bottom: 1.5rem;
      color: #666;
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      font-weight: bold;
    }
    
    .author-info h4 {
      margin-bottom: 0.2rem;
      color: #333;
    }
    
    .author-info p {
      color: #999;
      font-size: 0.9rem;
    }
    
    /* FAQ */
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
    }
    
    .faq-item {
      background: white;
      border-radius: 10px;
      margin-bottom: 1rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      overflow: hidden;
    }
    
    .faq-question {
      padding: 1.5rem;
      font-weight: bold;
      color: #667eea;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
    }
    
    .faq-question:hover {
      background: #f8f9ff;
    }
    
    .faq-answer {
      padding: 0 1.5rem 1.5rem;
      color: #666;
      line-height: 1.8;
      border-top: 1px solid #f0f0f0;
    }
    
    /* 联系表单 */
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      background: white;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: #333;
      font-weight: 500;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    .submit-button {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .submit-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    }
    
    /* 页脚 */
    .main-footer {
      background: #2c3e50;
      color: white;
      padding: 3rem 5% 1rem;
    }
    
    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }
    
    .footer-section h3 {
      margin-bottom: 1rem;
      color: #fff;
    }
    
    .footer-section ul {
      list-style: none;
    }
    
    .footer-section ul li {
      margin-bottom: 0.5rem;
    }
    
    .footer-section a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-section a:hover {
      color: #fff;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #34495e;
      color: #95a5a6;
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .social-links a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #34495e;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s;
    }
    
    .social-links a:hover {
      background: #667eea;
      transform: translateY(-3px);
    }
    

    
    /* 动画效果 */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .fade-in-up {
      animation: fadeInUp 0.6s ease-out;
    }
    
    /* 统计数据样式 */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }
    
    .stat-card {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
      border-radius: 20px;
      padding: 2.5rem;
      text-align: center;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(102, 126, 234, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    
    .stat-card:hover::before {
      transform: scaleX(1);
    }
    
    .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: #667eea;
      margin-bottom: 0.8rem;
      text-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
      transition: all 0.3s;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .stat-card:hover .stat-number {
      transform: scale(1.1);
      text-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
    }
    
    .stat-label {
      color: #666;
      font-size: 1rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    /* 移动端优化：统计卡片一行两个 */
    @media (max-width: 768px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
      }
      
      .stat-card {
        padding: 1.5rem;
        border-radius: 15px;
      }
      
      .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
      }
      
      .stat-label {
        font-size: 0.9rem;
      }
    }
    
    /* 小屏手机优化 */
    @media (max-width: 480px) {
      .stats-grid {
        gap: 0.8rem;
      }
      
      .stat-card {
        padding: 1.2rem;
      }
      
      .stat-number {
        font-size: 1.8rem;
      }
      
      .stat-label {
        font-size: 0.8rem;
      }
    }
    
    /* 数字动画效果增强 */
    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }
    
    .pulse-animation {
      animation: pulse 2s ease-in-out infinite;
    }
    
    /* 数字发光效果 */
    .glow-effect {
      box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    }
    
    /* 预测结果标签样式 */
    .prediction-result {
      display: inline-block;
      padding: 0.8rem 2rem;
      border-radius: 30px;
      font-size: 1.2rem;
      font-weight: 700;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
      margin: 0.5rem;
    }
    
    .prediction-result:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
    }
    
    /* 预测结果标签变体 */
    .prediction-result.success {
      background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
      box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    }
    
    .prediction-result.warning {
      background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
      box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    }
    
    .prediction-result.danger {
      background: linear-gradient(135deg, #f44336 0%, #da190b 100%);
      box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
    }
    
    /* 移动端适配样式 */
    .latest-results-card {
      background: #f8f9ff;
      padding: 1.5rem;
      border-radius: 15px;
      margin-bottom: 2rem;
    }
    
    .section-subtitle {
      text-align: center;
      margin-bottom: 1.5rem;
      color: #667eea;
      font-size: 1.25rem;
    }
    
    .result-display {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    .result-operator {
      font-size: 1.2rem;
      color: #999;
      margin: 0 0.2rem;
    }
    
    .total-ball {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
    }
    
    .algorithm-selection-card {
      background: #f8f9ff;
      padding: 1.5rem;
      border-radius: 15px;
      margin-bottom: 2rem;
    }
    
    .algorithm-buttons-group,
    .type-buttons-group {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    
    .prediction-buttons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    
    /* 移动端响应式适配 */
    @media (max-width: 768px) {
      /* 预测卡片、服务优势、客户评价和服务流程移动端优化：一行两个 */
      .prediction-grid,
      .features-grid,
      .testimonials-grid,
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
      }
      
      /* 服务流程卡片移动端优化 */
      .process-item {
        padding: 1.5rem;
        border-radius: 12px;
      }
      
      .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto 0.8rem;
      }
      
      .process-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
      }
      
      .process-item p {
        font-size: 0.9rem;
        line-height: 1.6;
      }
      
      /* 客户评价卡片移动端优化 */
      .testimonial-card {
        padding: 1.5rem;
        border-radius: 12px;
      }
      
      .testimonial-content {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
      }
      
      .testimonial-author h4 {
        font-size: 1rem;
      }
      
      .testimonial-author p {
        font-size: 0.8rem;
      }
      
      /* 服务优势卡片移动端优化 */
      .feature-card {
        padding: 1.5rem;
        border-radius: 12px;
      }
      
      .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
      }
      
      .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
      }
      
      .feature-card p {
        font-size: 0.9rem;
        line-height: 1.6;
      }
      
      .prediction-card {
        padding: 1rem;
        border-radius: 15px;
        /* 限制卡片高度，使其更紧凑 */
      }
      
      .prediction-header {
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
      }
      
      .prediction-title {
        font-size: 1rem;
      }
      
      .prediction-desc {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
      }
      
      .number-display {
        font-size: 1.3rem;
      }
      
      /* 减少组合统计和验证结果区域的内边距 */
      .prediction-card > div[style*="padding:"] {
        padding: 0.8rem !important;
        margin: 0.6rem 0 !important;
      }
      
      .prediction-card > div[style*="display: grid"] {
        gap: 0.6rem !important;
      }
      
      .prediction-meta {
        font-size: 0.8rem;
      }
      
      .latest-results-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
      }
      
      .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
      }
      
      .result-display {
        gap: 0.3rem;
        flex-direction: column;
        align-items: center;
      }
      
      .result-operator {
        font-size: 1rem;
        margin: 0.2rem 0;
      }
      
      .result-ball {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
      }
      
      .total-ball {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
      
      .algorithm-selection-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
      }
      
      .algorithm-buttons-group,
      .type-buttons-group {
        gap: 0.3rem;
        margin-bottom: 1rem;
      }
      
      .prediction-buttons-grid {
        grid-template-columns: repeat(3, 1fr); /* 修改为一行显示3个按钮 */
        gap: 0.3rem;
      }
      
      .btn-sm {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
      }
      
      .size-badge,
      .parity-badge {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
      }
    }
    
    /* 超小屏幕适配 */
    @media (max-width: 480px) {
      /* 预测卡片、服务优势、客户评价和服务流程卡片超小屏幕优化 */
      .prediction-grid,
      .features-grid,
      .testimonials-grid,
      .process-grid {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
      }
      
      /* 服务流程卡片超小屏幕进一步优化 */
      .process-item {
        padding: 1.2rem;
        border-radius: 10px;
      }
      
      .process-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0 auto 0.6rem;
      }
      
      .process-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
      }
      
      .process-item p {
        font-size: 0.8rem;
        line-height: 1.5;
      }
      
      /* 客户评价卡片超小屏幕进一步优化 */
      .testimonial-card {
        padding: 1.2rem;
        border-radius: 10px;
      }
      
      .testimonial-content {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 1rem;
      }
      
      .testimonial-author h4 {
        font-size: 0.9rem;
      }
      
      .testimonial-author p {
        font-size: 0.75rem;
      }
      
      /* 服务优势卡片进一步优化 */
      .feature-card {
        padding: 1.2rem;
        border-radius: 10px;
      }
      
      .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.6rem;
      }
      
      .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
      }
      
      .feature-card p {
        font-size: 0.8rem;
        line-height: 1.5;
      }
      
      .prediction-card {
        padding: 1rem;
        border-radius: 12px;
      }
      
      .prediction-header {
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
      }
      
      .prediction-title {
        font-size: 1rem;
      }
      
      .prediction-desc {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
      }
      
      .number-display {
        font-size: 1.3rem;
      }
      
      /* 减少组合统计和验证结果区域的内边距 */
      .prediction-card > div[style*="padding:"] {
        padding: 0.6rem !important;
        margin: 0.4rem 0 !important;
      }
      
      .prediction-card > div[style*="display: grid"] {
        gap: 0.5rem !important;
      }
      
      .prediction-meta {
        font-size: 0.75rem;
      }
      
      .result-display {
        flex-direction: column;
        gap: 0.2rem;
      }
      
      .prediction-buttons-grid {
        grid-template-columns: repeat(2, 1fr); /* 超小屏幕一行显示2个按钮 */
      }
      
      .algorithm-buttons-group,
      .type-buttons-group {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
      }
      
      .btn-sm {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
      }
    }
    
    /* 横向开奖结果布局 - 手机端保持电脑布局但缩小尺寸 */
    .result-display-horizontal {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .result-row {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: nowrap;
      align-items: center;
    }
    
    .result-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      min-width: 50px;
    }
    
    .result-label {
      font-size: 0.7rem;
      color: #666;
      font-weight: 500;
    }
    
    /* 手机端开奖结果球体大小调整 */
    .result-display-horizontal .result-ball {
      width: 28px;
      height: 28px;
      font-size: 0.8rem;
    }
    
    .result-display-horizontal .total-ball {
      width: 32px;
      height: 32px;
      font-size: 0.9rem;
    }
    
    /* 手机端大小单双徽章调整 */
    .result-display-horizontal .size-badge,
    .result-display-horizontal .parity-badge {
      font-size: 0.7rem;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
    }
    
    /* 手机端横向布局适配 */
    @media (max-width: 768px) {
      .result-display-horizontal {
        gap: 0.3rem;
      }
      
      .result-row {
        gap: 0.3rem;
      }
      
      .result-item {
        min-width: 45px;
        gap: 0.2rem;
      }
      
      .result-label {
        font-size: 0.65rem;
      }
      
      .result-display-horizontal .result-ball {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
      }
      
      .result-display-horizontal .total-ball {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
      }
      
      .result-display-horizontal .size-badge,
      .result-display-horizontal .parity-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
      }
    }
    
    @media (max-width: 480px) {
      .result-row {
        gap: 0.2rem;
      }
      
      .result-item {
        min-width: 40px;
      }
      
      .result-label {
        font-size: 0.6rem;
      }
      
      .result-display-horizontal .result-ball {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
      }
      
      .result-display-horizontal .total-ball {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
      }
      
      .result-display-horizontal .size-badge,
      .result-display-horizontal .parity-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
      }
      
      /* 超小屏幕开奖历史表格样式调整 */
      .results-table {
        margin: 0.3rem 0;
      }
      
      .results-table table {
        font-size: 0.7rem;
      }
      
      .results-table th,
      .results-table td {
        padding: 0.2rem 0.3rem;
      }
      
      .results-table .result-ball {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        margin: 0.05rem;
      }
      
      .results-table .label2 {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
        margin: 0.05rem;
      }
      
      /* 超小屏幕按钮样式调整 */
      .btn-sm {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
        margin: 0.05rem;
      }
      
      .prediction-buttons-grid .btn-sm {
        padding: 0.3rem 0.4rem;
        font-size: 0.7rem;
      }
      
      /* 超小屏幕标题和间距调整 */
      .section-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
      }
      
      .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
      }
      
      .main-content {
        padding: 0.3rem 0.2rem;
      }
      
      .latest-results-card,
      .algorithm-selection-card {
        padding: 0.8rem;
        margin-bottom: 1rem;
      }
      
      /* 超小屏幕算法按钮组调整 */
      .algorithm-buttons-group,
      .type-buttons-group {
        gap: 0.2rem;
        margin-bottom: 0.8rem;
      }
      
      .prediction-buttons-grid {
        gap: 0.2rem;
        margin-bottom: 0.8rem;
      }
    }
    
    /* 原有PHP样式增强 */
    .label2 {
      display: inline-block;
      padding: 0.4em 1em;
      font-size: 90%;
      font-weight: 700;
      line-height: 1.5;
      color: #fff;
      text-align: center;
      white-space: nowrap;
      vertical-align: baseline;
      border-radius: 20px;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      margin: 0.2rem;
    }
    
    .label2:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    .badge-danger {
      background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    }
    
    .badge-primary {
      background: linear-gradient(135deg, #007bff 0%, #0069d9 100%);
    }
    
    .badge-success {
      background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    }
    
    .badge-warning {
      background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    }
    
    .lsz {
      font-size: 80%;
    }
    
    .table-responsive {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    /* 整合后的主容器样式 */
    .main-content {
      background: white;
      border-radius: 15px;
      padding: 2rem;
      margin: 2rem 0;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    /* 原有网站的一些样式调整 */
    .card {
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      margin-bottom: 2rem;
    }
    
    .card-header {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border-radius: 15px 15px 0 0 !important;
    }
    
    .table {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .table thead th {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
    }
    
    .table tbody tr {
      transition: all 0.3s;
    }
    
    .table tbody tr:hover {
      background: #f8f9ff;
      transform: translateY(-2px);
    }
    
    .btn {
      border-radius: 20px;
      padding: 0.5rem 1.5rem;
      margin: 0.25rem;
      transition: all 0.3s;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border: none;
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    }
    
    .btn-outline-primary {
      border-color: #667eea;
      color: #667eea;
    }
    
    .btn-outline-primary:hover {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-color: #667eea;
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    }