
.banner-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.banner-slides {
    width: 100%;
    height: auto;
}
.banner-slide {
    display: none;
    width: 100%;
    height: auto;
}
.banner-slide.active {
    display: block;
}
.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s;
}
.banner-dot.active {
    background-color: #ffffff;
}
@media screen and (max-width: 768px) {
    .banner-dot {
        width: 8px;
        height: 8px;
    }
    .banner-dots {
        bottom: 10px;
        gap: 8px;
    }
}





/* 父容器需要相对定位，作为文字的定位基准 */
.banner-slide {
    position: relative; 

}

/* 图片铺满 */
.banner-slide img {

    object-fit: cover; /* 防止图片变形 */
}

/* 文字浮层样式 */
.slide-text {
    position: absolute;
    /* 控制文字位置，这里示例为左下角 */
    left: 10%;
    bottom: 20%;
    color: #fff; /* 白色字体 */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7); /* 增加阴影防止看不清 */
    max-width: 80%; /* 防止文字太宽 */
	top:25%;
}

.slide-text h2 {
    font-size: 48px;

}

.slide-text p {
    font-size: 18px;
	padding-top: 10px;

}



	  /* 容器设置：让三个项横向排列小图标 */
        .features-container {
            display: flex;

            gap: 60px;               /* 每个项之间的间距 */
            padding-top: 390px;

            font-family: "Microsoft YaHei", sans-serif;
        }
	
						   /* 单个特性项 */
        .feature-item {
            text-align: center;
            width: 120px;
			margin-top: -350px;
        }

        /* 外层圆圈：负责布局和边框 */
        .icon-wrapper {
            width: 80px;
            height: 80px;
            border: 2px solid rgba(255, 255, 255, 0.8); /* 白色半透明边框，更柔和 */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px; /* 上下间距，左右自动居中 */
            position: relative;
            transition: all 0.3s ease; /* 添加悬停动画过渡 */
            box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* 轻微阴影增加质感 */
        }

        /* 悬停效果：放大并加深边框 */
        .icon-wrapper:hover {
            transform: scale(1.1);
        }

        /* 图标样式：这里使用伪元素或直接放SVG/图片都可以 */
        /* 如果你用 FontAwesome 图标库，可以这样写：
           .icon-wrapper i { font-size: 32px; color: #333; }
        */

        /* 模拟图标样式（使用背景色块代替，实际项目中替换为图标） */
        .icon-symbol {
            font-size: 32px;
            color: #fff;
            font-weight: bold;
        }

        /* 文字样式 */
        .feature-text {
            font-size: 18px;
            color: #fff;
            letter-spacing: 1px;
            font-weight: 500;
        }