<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * åŒ—äº¬å&nbsp;†æ&nbsp;ˆçŸ©é˜µç§‘æŠ€æœ‰é™å…¬å¸å®˜ç½‘ - å“åº”å¼æ&nbsp;·å¼è¡¨
 */

/* å¤§å±å¹•æ˜¾ç¤ºå™¨ (1200px ä»¥ä¸Š) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* ç¬”è®°æœ¬ç”µè„‘ (992px åˆ° 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

/* å¹³æ¿ç”µè„‘ (768px åˆ° 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image {
    order: -1;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ç§»åŠ¨è®¾å¤‡ (767px ä»¥ä¸‹) */
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .header-inner {
    height: 70px;
  }
  
  .logo img {
    height: 35px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 30px;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav.active {
    transform: translateX(0);
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
    align-items: center;
  }
  
  .nav-item {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
  }
  
  .hero {
    min-height: 500px;
    padding-top: 100px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cases-filter {
    flex-wrap: wrap;
  }
  
  .filter-btn {
    margin-bottom: 10px;
  }
  
  .cases-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-links {
    margin-bottom: 20px;
  }
}

/* å°å±å¹•ç§»åŠ¨è®¾å¤‡ (576px ä»¥ä¸‹) */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .about-content h2 {
    font-size: 1.6rem;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto 15px;
  }
} </pre></body></html>