/* print.css - 打印样式（全局加载，media="print"） */

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .header,
  .footer,
  .banner,
  .back-to-top,
  .mobile-menu-toggle,
  .banner-arrow,
  .banner-dots,
  .page-sidebar,
  .article-sidebar,
  .btn,
  .pagination,
  .tag {
    display: none !important;
  }

  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .article-wrap,
  .page-content,
  .card,
  .contact-info-card,
  .contact-form-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }

  a {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  table {
    page-break-inside: avoid;
  }

  .article-content,
  .service-detail,
  .about-content {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
  }
}
