/* 西安VR全景拍摄服务网站 - 响应式样式 */

/* ========== 平板设备 ========== */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .section-title h2 {
    font-size: 32px;
  }
}

/* ========== 手机设备 ========== */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 14px;
  }

  /* 导航栏调整 */
  header {
    padding: 15px 0;
  }

  /* 按钮适配 */
  .btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
  }

  .btn-large {
    padding: 12px 25px;
    font-size: 16px;
  }

  /* 卡片布局 */
  .card-grid {
    grid-template-columns: 1fr;
  }

  /* 轮播图 */
  .banner-content {
    padding: 20px;
  }

  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 14px;
  }

  /* 表单 */
  .form-group {
    margin-bottom: 15px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 14px;
    padding: 10px;
  }

  /* 案例展示 */
  .case-item {
    margin-bottom: 20px;
  }

  /* 文章列表 */
  .article-item {
    padding: 15px;
  }

  /* 悬浮按钮 */
  .floating-phone {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* ========== 小屏手机 ========== */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .banner-content h1 {
    font-size: 20px;
    line-height: 1.4;
  }

  .logo {
    font-size: 16px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* 两列布局转单列 */
  .two-columns {
    grid-template-columns: 1fr;
  }

  /* 面包屑简化 */
  .breadcrumb {
    padding: 10px 0;
  }

  .breadcrumb-inner {
    padding: 0 10px;
  }

  .breadcrumb a {
    font-size: 12px;
  }

  /* 页脚简化 */
  footer {
    padding: 40px 0 20px;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .keyword-watermark {
    font-size: 10px;
  }
}

/* ========== 大屏设备优化 ========== */
@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }

  .section-title h2 {
    font-size: 42px;
  }
}

/* ========== 横屏手机 ========== */
@media (max-width: 768px) and (orientation: landscape) {
  .banner-content h1 {
    font-size: 20px;
  }

  .banner-content p {
    font-size: 12px;
  }

  section {
    padding: 30px 0;
  }
}

/* ========== 打印样式 ========== */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  header,
  footer,
  .floating-phone,
  .particles-bg {
    display: none;
  }

  a {
    text-decoration: underline;
    color: #000;
  }
}
