/* 平板设备适配样式 */

/* 定义平板设备断点 */
@media screen and (min-width: 768px) {
  /* 全局字体和间距调整 */
  body {
    font-size: 16px; /* 基础字体增大 */
  }
  
  /* 通用字体大小调整 */
  .tablet-text-lg {
    font-size: 18px !important;
  }
  
  .tablet-text-xl {
    font-size: 20px !important;
  }
  
  .tablet-text-2xl {
    font-size: 24px !important;
  }
  
  /* 通用间距调整 */
  .tablet-padding-lg {
    padding: 20px !important;
  }
  
  .tablet-margin-lg {
    margin: 20px !important;
  }
  
  /* 网格布局调整 - 3列改为5列 */
  .tablet-grid-5 {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
  }
  
  /* 按钮和图标调整 */
  .tablet-icon-lg {
    font-size: 40px !important;
    width: 40px !important;
    height: 40px !important;
  }
  
  .tablet-button-lg {
    padding: 12px 24px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
  }
  
  /* 卡片和容器调整 */
  .tablet-card-lg {
    padding: 20px !important;
    border-radius: 12px !important;
  }
  
  /* 视频播放器控件调整 */
  .tablet-video-controls {
    font-size: 18px !important;
  }
  
  .tablet-video-controls .van-icon {
    font-size: 36px !important;
  }
  
  /* 导航栏调整 */
  .tablet-nav {
    height: 70px !important;
  }
  
  .tablet-nav .van-tabbar-item {
    font-size: 16px !important;
  }
  
  .tablet-nav .van-icon {
    font-size: 28px !important;
  }
}

/* 大平板和桌面设备 (1024px+) */
@media screen and (min-width: 1024px) {
  /* 网格布局进一步调整 - 5列改为6列 */
  .desktop-grid-6 {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
  }
  
  /* 字体进一步增大 */
  .desktop-text-xl {
    font-size: 22px !important;
  }
  
  .desktop-text-2xl {
    font-size: 28px !important;
  }
}
