/* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            scroll-behavior: smooth;
            background-color: #F9F5F0;
            font-family: system-ui, -apple-system, sans-serif;
            color: #374151;
            line-height: 1.6;
        }
        
        /* 容器样式 */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 颜色变量 */
        :root {
            --color-primary: #F59E0B;
            --color-primary-light: #fbbf24;
            --color-primary-dark: #d97706;
            --color-secondary: #f5f5f5;
            --color-accent: #ff6a0f;
            --color-neutral: #F9F5F0;
            --color-white: #ffffff;
            --color-gray-light: #f3f4f6;
            --color-gray: #9ca3af;
            --color-gray-dark: #4b5563;
            --color-black: #1f2937;
        }
        
        /* 通用样式类 */
        .btn {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 9999px;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 16px;
        }
        
        .btn-primary {
            background-color: var(--color-primary);
            color: var(--color-white);
        }
        
        .btn-primary:hover {
            background-color: #e69100;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-secondary {
            background-color: var(--color-secondary);
        }
        
        .section-accent {
            background-color: var(--color-accent);
            color: var(--color-white);
        }
        
        .text-center {
            text-align: center;
        }
        
        .title {
            font-size: 32px;
            font-weight: bold;
            color: var(--color-accent);
            margin-bottom: 16px;
        }
        
        .title-white {
            color: var(--color-white);
        }
        
        .title-underline {
            width: 80px;
            height: 4px;
            background-color: var(--color-primary);
            margin: 0 auto 24px;
        }
        
        .desc {
            max-width: 900px;
            margin: 0 auto;
            color: var(--color-gray-dark);
        }
        
        .desc-white {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .card {
            background-color: var(--color-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .text-shadow {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        /* 导航栏样式 */
        .navbar {
            position: fixed;
            width: 100%;
            z-index: 999;
            padding: 16px 0;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
        }
        
        .navbar-scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        
        .logo-icon {
            font-size: 32px;
            color: var(--color-primary);
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: var(--color-accent);
        }
        
        .nav-menu {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .nav-item {
            list-style: none;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--color-gray-dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--color-primary);
        }
        
        .menu-btn {
            display: none;
            font-size: 24px;
            color: var(--color-gray-dark);
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--color-white);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 16px;
        }
        
        .mobile-menu-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .mobile-menu-item {
            list-style: none;
            padding: 8px 0;
            border-bottom: 1px solid var(--color-gray-light);
        }
        
        .mobile-menu-link {
            text-decoration: none;
            color: var(--color-gray-dark);
            transition: color 0.3s ease;
        }
        
        .mobile-menu-link:hover {
            color: var(--color-primary);
        }
        
        /* 轮播样式 */
        .hero {
            padding-top: 70px;
        }
        
        .swiper {
            height: 80vh;
        }
        
        @media (min-width: 768px) {
            .swiper {
                height: 90vh;
            }
        }
        
        .swiper-slide {
            position: relative;
        }
        
        .slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            padding: 0 20px;
        }
        
        .slide-title {
            font-size: 48px;
            font-weight: bold;
            color: var(--color-white);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 16px;
        }
        
        .slide-desc {
            font-size: 20px;
            color: var(--color-white);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 32px;
            max-width: 800px;
        }
        
        .swiper-pagination {
            bottom: 32px;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--color-white);
        }
        
        /* 关于我们 */
        .about-content {
            display: grid;
            gap: 48px;
            align-items: center;
            margin-top: 32px;
        }
        
        @media (min-width: 768px) {
            .about-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .about-img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .about-title {
            font-size: 28px;
            font-weight: bold;
            color: var(--color-accent);
            margin-bottom: 16px;
        }
        
        .about-desc {
            margin-bottom: 32px;
            color: var(--color-gray-dark);
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 32px;
        }
        
        .feature-item {
            display: flex;
            gap: 12px;
        }
        
        .feature-icon {
            font-size: 24px;
            color: var(--color-primary);
            margin-top: 4px;
        }
        
        .feature-title {
            font-weight: bold;
            margin-bottom: 4px;
        }
        
        .feature-desc {
            font-size: 14px;
            color: var(--color-gray);
        }
        
        /* 环境展示 */
        .env-grid {
            display: grid;
            gap: 32px;
            margin-top: 32px;
        }
        
        @media (min-width: 768px) {
            .env-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (min-width: 1024px) {
            .env-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        
        .env-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        
        .env-content {
            padding: 24px;
        }
        
        .env-title {
            font-size: 24px;
            font-weight: bold;
            color: var(--color-accent);
            margin-bottom: 8px;
        }
        
        .env-desc {
            color: var(--color-gray-dark);
        }
        
        /* 资质图片滚动样式 - 核心修改部分 */
        .honor-swiper {
            width: 100%;
            height: 300px;
            margin: 32px auto;
        }
        
        .honor-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--color-white);
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .honor-img {
            max-width: 100%;
            max-height: 260px;
            object-fit: contain;
            border-radius: 4px;
        }
        
        .honor-caption {
            text-align: center;
            margin-top: 12px;
            font-weight: 500;
            color: var(--color-accent);
        }
        
        .honor-quote {
            max-width: 1200px;
            margin: 48px auto 0;
            padding: 32px;
            background-color: var(--color-white);
            border-radius: 8px;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            display: inline-block;
        }
        
        .quote-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-bottom: 24px;
        }
        
        .quote-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .quote-info {
            text-align: left;
        }
        
        .quote-title {
            font-size: 24px;
            font-weight: bold;
            color: var(--color-accent);
            margin-bottom: 4px;
        }
        
        .quote-subtitle {
            color: var(--color-gray);
        }
        
        .quote-text {
            font-style: italic;
            color: var(--color-gray-dark);
        }
        
        /* 日常活动 */
        .activity-grid {
            display: grid;
            gap: 24px;
            margin-top: 32px;
        }
        
        @media (min-width: 768px) {
            .activity-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (min-width: 1024px) {
            .activity-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .activity-img {
            width: 100%;
            height: 192px;
            object-fit: cover;
        }
        
        .activity-content {
            padding: 24px;
        }
        
        .activity-tag {
            display: inline-block;
            padding: 4px 12px;
            background-color: rgba(245, 158, 11, 0.1);
            color: var(--color-primary);
            border-radius: 9999px;
            font-size: 14px;
            margin-bottom: 12px;
        }
        
        .activity-title {
            font-size: 24px;
            font-weight: bold;
            color: var(--color-accent);
            margin-bottom: 8px;
        }
        
        .activity-desc {
            font-size: 14px;
            color: var(--color-gray);
        }
        
        /* 新闻资讯列表样式 - 修改为双列布局 */
        .news-list {
            margin-top: 64px;
            background-color: var(--color-white);
            border-radius: 8px;
            padding: 32px;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .news-title {
            font-size: 28px;
            font-weight: bold;
            color: var(--color-accent);
            margin-bottom: 24px;
            text-align: center;
        }
        
        /* 核心修改：将新闻列表改为双列网格布局 */
        .news-items {
            display: grid;
            gap: 24px;
            /* 平板及以上设备显示双列 */
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
        
        .news-item {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 16px;
            padding: 20px;
            border: 1px solid var(--color-gray-light);
            border-radius: 8px;
            align-items: flex-start;
            height: 100%;
        }
        
        /* 移除底部边框，改为卡片式边框 */
        .news-item:last-child {
            border-bottom: 1px solid var(--color-gray-light);
        }
        
        .news-date {
            background-color: var(--color-secondary);
            border-radius: 8px;
            padding: 12px 8px;
            text-align: center;
            height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .news-date-day {
            font-size: 22px;
            font-weight: bold;
            color: var(--color-accent);
            line-height: 1;
        }
        
        .news-date-month {
            font-size: 13px;
            color: var(--color-gray-dark);
            margin-top: 4px;
        }
        
        .news-content {
            overflow: hidden;
        }
        
        .news-heading {
            font-size: 17px;
            font-weight: bold;
            color: var(--color-accent);
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }
        
        .news-heading:hover {
            color: var(--color-primary);
        }
        
        .news-summary {
            font-size: 14px;
            color: var(--color-gray-dark);
            display: -webkit-box;
            -webkit-line-clamp: 3; /* 增加显示行数 */
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.5;
        }
        
        .news-more {
            text-align: center;
            margin-top: 32px;
        }
        
        .news-more-btn {
            display: inline-block;
            padding: 10px 24px;
            background-color: var(--color-primary);
            color: var(--color-white);
            border-radius: 9999px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        
        .news-more-btn:hover {
            background-color: #e69100;
        }
        
        /* 响应式调整 - 新闻列表 */
        @media (max-width: 767px) {
            .nav-menu {
                display: none;
            }
            
            .menu-btn {
                display: block;
            }
            
            .mobile-menu.show {
                display: block;
            }
            
            .slide-title {
                font-size: 32px;
            }
            
            .slide-desc {
                font-size: 16px;
            }
            
            .title {
                font-size: 24px;
            }
            
            /* 移动端新闻项改为单列 */
            .news-item {
                grid-template-columns: 80px 1fr;
                gap: 12px;
            }
            
            .news-date {
                height: 70px;
            }
            
            .news-date-day {
                font-size: 20px;
            }
            
            .news-summary {
                -webkit-line-clamp: 2; /* 移动端恢复2行 */
            }
            
            /* 移动端资质轮播高度调整 */
            .honor-swiper {
                height: 220px;
            }
        }
        
        /* 页脚 */
        .footer {
            background-color: #ff841a;
            color: var(--color-white);
            padding: 48px 0 24px;
        }
        
        .footer-content {
            display: grid;
            gap: 32px;
            margin-bottom: 32px;
        }
        
        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }
        
        .footer-desc {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 16px;
        }
        
        .footer-social {
            display: flex;
            gap: 16px;
        }
        
        .footer-social-link {
            color: rgba(255, 255, 255, 0.6);
            font-size: 24px;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        
        .footer-social-link:hover {
            color: var(--color-primary);
        }
        
        .footer-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 16px;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--color-primary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #374151;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        /* 返回顶部 */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--color-primary);
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            cursor: pointer;
            border: none;
            font-size: 20px;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #e69100;
        }