/* 轮播图 */
        .hero-slider {
            margin-top: 30px;
            position: relative;
            height: 450px;
            overflow: hidden;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: none;
            align-items: center;
        }
        
        .slide.active {
            display: flex;
        }
        
        .slide-content {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 30px;
            max-width: 600px;
            margin-left: 50px;
            border-radius: 8px;
        }
        
        .slide-title {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .slide-desc {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
        }
        
        .slider-dot.active {
            background-color: white;
        }
        
        /* 新闻模块 - 左侧大图 + 右侧文字列表 */
        .news-section {
            margin: 50px 0;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary);
        }
        
        .section-title {
            font-size: 1.8rem;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
        }
        
        .more-link {
            color: var(--gray);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .more-link:hover {
            color: var(--primary);
        }
        
        .more-link i {
            margin-left: 5px;
        }
        
        .news-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        
        .featured-news {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .featured-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .featured-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--secondary);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .featured-content {
            padding: 25px;
        }
        
        .featured-date {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .featured-date i {
            margin-right: 5px;
        }
        
        .featured-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .featured-title a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .featured-title a:hover {
            color: var(--primary);
        }
        
        .featured-excerpt {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .news-list {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .news-list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .news-list-title {
            font-size: 1.3rem;
            color: var(--primary);
        }
        
        .news-items {
            list-style: none;
        }
        
        .news-item {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-item-date {
            color: var(--gray);
            font-size: 0.85rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .news-item-date i {
            margin-right: 5px;
            font-size: 0.8rem;
        }
        
        .news-item-title {
            font-size: 1rem;
            margin-bottom: 0;
            line-height: 1.4;
        }
        
        .news-item-title a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .news-item-title a:hover {
            color: var(--primary);
        }
        
        /* 服务板块 */
        .services-section {
            background-color: var(--light-orange);
            padding: 60px 0;
            margin: 50px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-icon {
            font-size: 50px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .service-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .service-desc {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* 统计数据 */
        .stats-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 60px 0;
            margin: 50px 0;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1.1rem;
        }
        
        /* 快速链接 */
        .quick-links {
            margin: 50px 0;
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .link-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
        }
        
        .link-icon {
            font-size: 40px;
            color: var(--primary);
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .link-content h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .link-content p {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }