        .section-title {
            text-align: center;
            margin-bottom: 30px;
            font-size:32px;
            color: #333;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: #0b81de;
            margin: 10px auto 0;
        }

        .image-gallery {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: #fff;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .gallery-img-container {
            position: relative;
            height: 350px;
            overflow: hidden;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }

        .img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 20px 15px 10px;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .img-overlay {
            opacity: 1;
        }

        .img-title {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .img-desc {
            font-size: 12px;
            opacity: 0.9;
        }

        .gallery-info {
            padding: 15px;
        }

        .gallery-category {
            display: inline-block;
            font-size: 18px;
            color: #0b81de;
            margin-bottom: 8px;
        }

        .gallery-text {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
		.more a{
        width: 128px;
        font-size: 14px;
        line-height: 36px;
			}

        @media (max-width: 768px) {
            .image-gallery {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 15px;
            }
            
            .gallery-img-container {
                height: 350px;
            }
            
            .section-title {
                font-size: 24px;
            }
   

        @media (max-width: 480px) {
            .image-gallery {
                grid-template-columns: 1fr;
            }
			
			 /* 全屏轮播容器 */
        .fullscreen-carousel {
            position: relative;
            width: 100vw; /* 视口宽度 */
            height: 100vh; /* 视口高度 */
            overflow: hidden;
        }

        /* 轮播列表 */
        .carousel-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s ease-in-out;
        }

        /* 轮播项 */
        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持比例并覆盖整个区域 */
        }

        /* 图片叠加文字 */
        .carousel-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            padding: 0 20px;
            max-width: 800px;
        }

        .carousel-title {
            font-size: 4vw; /* 使用视口单位，响应式字体 */
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .carousel-desc {
            font-size: 1.5vw;
            margin-bottom: 30px;
            text-shadow: 0 1px 5px rgba(0,0,0,0.5);
        }

        .carousel-btn {
            padding: 12px 30px;
            background-color: rgba(255,255,255,0.9);
            color: #333;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background-color: white;
            transform: translateY(-2px);
        }

        /* 半透明遮罩，增强文字可读性 */
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.3);
            z-index: 1;
        }

        /* 导航按钮 */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255,255,255,0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 3;
        }

        .carousel-nav:hover {
            background-color: rgba(255,255,255,0.4);
        }

        .prev {
            left: 30px;
        }

        .next {
            right: 30px;
        }

        /* 指示器 */
        .carousel-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color: white;
            transform: scale(1.3);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .carousel-nav {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .prev {
                left: 15px;
            }
            
            .next {
                right: 15px;
            }
            
            .carousel-indicators {
                bottom: 20px;
            }
            
            .carousel-title {
                font-size: 6vw;
            }
            
            .carousel-desc {
                font-size: 3vw;
                margin-bottom: 20px;
            }
            
            .carousel-btn {
                padding: 10px 24px;
                font-size: 14px;
            }
   
 

        /* 轮播图容器 */
        .carousel {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* 轮播图列表 */
        .carousel-list {
            display: flex;
            width: 100%;
            height: 500px;
            transition: transform 0.5s ease-in-out;
        }

        /* 轮播项 */
        .carousel-item {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 图片上的文字内容 */
        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
        }

        .carousel-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .carousel-desc {
            font-size: 16px;
            opacity: 0.9;
            max-width: 800px;
        }

        /* 导航按钮 */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(255,255,255,0.3);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-control:hover {
            background-color: rgba(255,255,255,0.6);
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        /* 指示器 */
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color: white;
            width: 30px;
            border-radius: 6px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .carousel-list {
                height: 350px;
            }
            
            .carousel-title {
                font-size: 20px;
            }
            
            .carousel-desc {
                font-size: 14px;
            }
            
            .carousel-control {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .carousel-list {
                height: 250px;
            }
            
            .carousel-caption {
                padding: 20px 15px;
            }
            
            .carousel-desc {
                display: none; /* 小屏幕隐藏描述文字 */
            }
            
            .carousel-control {
                width: 36px;
                height: 36px;
            }
    

