/* 组件容器 */
		.ql-lunbo-one {
			position: relative;
			width: 100%;
			height: auto; /* 高度由图片决定，或者设为 100vh */
			background: #fafafa;
			overflow: hidden;
		}

		/* Swiper 容器 */
		.qlbd-swiper-1 {
			width: 100%;
			height: 100%;
		}

		/* Slide 样式 */
		.qlbd-swiper-1 .swiper-slide {
			background: #fff;
			display: flex;
			justify-content: center;
			align-items: center;
		}

		/* 图片样式：强制宽度100%，高度自适应或固定 */
		.qlbd-swiper-1 .swiper-slide img {
			display: block;
			width: 100%;
			height: auto; /* 如果需要固定高度，可以设为 height: 600px; object-fit: cover; */
			object-fit: cover;
		}

		/* 左右箭头：大一点，半透明 */
		.qlbd-swiper-1 .qlbdswiper-button-next1,
		.qlbd-swiper-1 .qlbdswiper-button-prev1 {
			color: #ffffff;
			width: 50px;
			height: 50px;
			background-color: rgba(0, 0, 0, 0.3); /* 深色半透明背景，更适合大图 */
			border-radius: 50%;
			transition: all 0.3s;
		}

		.qlbd-swiper-1 .qlbdswiper-button-next1:hover,
		.qlbd-swiper-1 .qlbdswiper-button-prev1:hover {
			background-color: var(--ql-color-primary);
		}

		.qlbd-swiper-1 .qlbdswiper-button-next1::after,
		.qlbd-swiper-1 .qlbdswiper-button-prev1::after {
			font-size: 20px;
		}

		/* 分页器：长条形 */
		.qlbd-swiper-1 .swiper-pagination-bullet {
			background: rgba(255, 255, 255, 0.5); /* 白色半透明，适合深色图片 */
			width: 40px;
			height: 4px;
			border-radius: 2px;
			opacity: 1;
			transition: all 0.3s;
		}

		.qlbd-swiper-1 .swiper-pagination-bullet-active {
			background: #ffffff; /* 激活变纯白 */
			width: 40px;
		}