/* 全屏轮播图样式 */
        .fullscreen-swiper {
            width: 100%;
            height: 100%;
            margin-bottom: 40px;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1; /* 确保在普通内容层 */
			overflow: hidden;
        }
        
        .fullscreen-swiper .swiper-slide {
            position: relative;
            overflow: hidden;
        }
        
        .fullscreen-swiper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .swiper-caption {
    position: absolute;
    bottom: 0; /* 调整到底部 */
    left: 0;
    width: 100%; /* 全宽背景 */
    padding: 25px 10%;
    color: white;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.05) 100%); /* 渐变背景 */
   
    
    box-sizing: border-box;
}
 
.swiper-caption h3 {
    font-size: 2.2em; /* 适当缩小字号 */
    margin-bottom: 8px;
}
 
.swiper-caption p {
    font-size: 1.2em;
    opacity: 0.9;
}
        
        /* 画廊容器 */
        .gallery-container {
            max-width: 1200px;
            margin: 40px auto 0;
            position: relative;
            z-index: 2; /* 高于全屏轮播 */
        }
        
        .gallery-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 2.2em;
            position: relative;
            padding-bottom: 15px;
        }
        
        .gallery-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px; 
            background: linear-gradient(90deg, #3498db, #9b59b6);
        }
        
        .date-info {
            text-align: center;
            margin-bottom: 30px;
            color: #7f8c8d;
            font-size: 0.9em;
        }
         
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .gallery-item {
            cursor: pointer;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            background: white;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-item p {
            padding: 15px;
            text-align: center;
            background: white;
            margin: 0;
            font-weight: 500;
            color: #2c3e50;
            border-top: 1px solid #eee;
            font-size: 18px;
        }
        
        /* 弹窗样式 - 最高层级 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%; 
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000; /* 确保最高 */
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        
        .modal-content {
            position: relative;
            width: 90%;
            max-width: 1000px;
            height: 95vh;
            border-radius: 12px;
            overflow: hidden;
        } 
        
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 32px;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            z-index: 1010; /* 高于弹窗内容 */
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.5);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            line-height: 1;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .close-btn:hover {
            color: white;
            background: rgba(0, 0, 0, 0.8);
            transform: rotate(90deg);
        }
        
        .modal-swiper {
            width: 100%;
            height: 100%;
        }
        
        .modal-swiper .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            position: relative;
        }
        
        .modal-swiper img {
            max-width: 100%;
            max-height: calc(90vh - 100px);
            object-fit: contain;
            border-radius: 8px;
        }
        
        .modal-swiper .slide-title {
            margin-top: 20px;
            text-align: center;
            font-size: 1.2em;
            color: white;
            padding: 10px 20px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 20px;
            max-width: 80%;
        }
        
        /* 导航按钮通用样式 */
        .swiper-button-next, 
        .swiper-button-prev {
            color: white;
            background: rgba(0, 0, 0, 0.4);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: all 0.3s ease; 
        }
        
        .swiper-button-next:after, 
        .swiper-button-prev:after {
            font-size: 24px;
            font-weight: bold;
        }
        
        .swiper-button-next:hover, 
        .swiper-button-prev:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: scale(1.1);
        }
        
        .swiper-pagination-bullet {
            background: white;
            opacity: 0.6;
            width: 10px;
            height: 10px;
        }
        
        .swiper-pagination-bullet-active {
            background: #3498db;
            opacity: 1;
        }
.pro-downs{margin-top: 30px;}
.pro-downs a{background: #cfa972;color: #fff;border-radius: 5px;padding: 13px 20px;font-size: 16px;}
.pro-desb {font-size: 18px;padding: 15px 0px 0px 0px;color: #000;}
.pro-h3 {font-size: 22px;padding: 10px 0px 10px 0px;color: #000;}

.strongs p{line-height: 38px;font-size: 18px;}
