/* 响应式样式 */

/* 平板设备 (768px - 1023px) */
@media screen and (max-width: 1023px) {
    /* 导航栏 */
    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 90px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -2px 0 4px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* 轮播图 */
    .banner {
        height: 400px;
    }
    
    .carousel-caption h2 {
        font-size: 28px;
    }
    
    .carousel-caption p {
        font-size: 16px;
    }
    
    /* 产品网格 */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 公司介绍 */
    .intro-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-image {
        order: -1;
    }
    
    /* 团队展示 */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 联系信息 */
    .info-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 产品详情 */
    .product-detail {
        flex-direction: column;
    }
}

/* 移动设备 (767px 以下) */
@media screen and (max-width: 767px) {
    /* 导航栏 */
    .navbar .container {
        padding: 15px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* 轮播图 */
    .banner {
        height: 300px;
    }
    
    .carousel-caption {
        bottom: 30px;
        left: 30px;
    }
    
    .carousel-caption h2 {
        font-size: 24px;
    }
    
    .carousel-caption p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    /* 产品网格 */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* 公司介绍 */
    .intro-image img {
        height: 250px;
    }
    
    /* 发展历程 */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
    }
    
    /* 团队展示 */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* 联系信息 */
    .info-content {
        grid-template-columns: 1fr;
    }
    
    /* 底部信息 */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* 产品详情模态框 */
    .modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 20px;
    }
    
    /* 页面标题 */
    .page-header h1 {
        font-size: 24px;
    }
    
    /* 公司简介 */
    .about-summary h2,
    .products-showcase h2,
    .development-history h2,
    .team-showcase h2,
    .contact-form-section h2 {
        font-size: 24px;
    }
    
    /* 产品分类筛选 */
    .filters {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* 小屏幕移动设备 (480px 以下) */
@media screen and (max-width: 480px) {
    /* 轮播图 */
    .banner {
        height: 250px;
    }
    
    .carousel-caption {
        bottom: 20px;
        left: 20px;
    }
    
    .carousel-caption h2 {
        font-size: 20px;
    }
    
    .carousel-caption p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    /* 公司介绍 */
    .intro-image img {
        height: 200px;
    }
    
    /* 产品展示 */
    .product-item img {
        height: 150px;
    }
    
    /* 联系表单 */
    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 8px;
    }
    
    /* 按钮 */
    .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}