

.poc{ width:98%; min-height:660px; margin:0 auto; position:relative; padding-top:3%;}
        /* 轮播容器 */
        .swiper-container {
            width:100%;height:auto;
            margin: 0 auto;
            position: relative;
            border-radius: 0px; overflow:hidden; 
       
        }

        .swiper {
            width: 100%;
            height: auto; margin:0 auto; padding-bottom:5%;
        }

        /* 幻灯片样式 */
        .swiper-slide {
           
            overflow: hidden; height:auto; padding-bottom:0%; padding-top:0%;
            transition: transform 0.3s ease; 
        }
		.swiper-slide h2{ width:auto; line-height:60px; font-size:1.6rem; text-align:center; margin:0 auto; margin-bottom:0%; position:relative; z-index:100;}

        /* 图片样式 */
        .swiper-slide img {
           width:100%;
            height:auto;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        /* 悬停放大效果 */
        .swiper-slide:hover img {
            transform: scale(1.05);
        }

        /* 自定义导航按钮 */
        .swiper-button-prev,
        .swiper-button-next {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: #ffffff;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .swiper-button-prev:after,
        .swiper-button-next:after {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        /* 分页器圆点 */
        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: rgba(0, 0, 0, 0.6);
            opacity: 1;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            width: 24px;
            border-radius: 5px;
            background: #007aff;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .swiper-button-prev,
            .swiper-button-next {
                width: 36px;
                height: 36px;
            }
            
            .swiper-button-prev:after,
            .swiper-button-next:after {
                font-size: 14px;
            }
        }

