
	  /* 容器设置：让三个项横向排列小图标 */
        .features-container0 {
            display: flex;

            gap: 60px;               /* 每个项之间的间距 */


            font-family: "Microsoft YaHei", sans-serif;
        }
	
						   /* 单个特性项 */
        .feature-item0 {
            text-align: center;


        }

        /* 外层圆圈：负责布局和边框 */
        .icon-wrapper0 {
            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); /* 轻微阴影增加质感 */
			color:#000
        }

        /* 悬停效果：放大并加深边框 */
        .icon-wrapper0:hover {
            transform: scale(1.1);
        }

        /* 图标样式：这里使用伪元素或直接放SVG/图片都可以 */
        /* 如果你用 FontAwesome 图标库，可以这样写：
           .icon-wrapper i { font-size: 32px; color: #333; }
        */

        /* 模拟图标样式（使用背景色块代替，实际项目中替换为图标） */
        .icon-symbol0 {
            font-size: 32px;
            color: #fff;
            font-weight: bold;
        }

        /* 文字样式 */
        .feature-text0 {
            font-size: 18px;
            color: #fff;
            letter-spacing: 1px;
            font-weight: 500;
        }
.icon-img {
    filter: brightness(0);            /* 直接变黑 */
}
.nav-tab.active .icon-img  {
    filter: brightness(0) invert(1);            /* 直接变黑 */
}
.nav-tabs { display:flex; justify-content:center; gap:0px; padding:30px 0;  }
.nav-tab { padding:10px 10px; cursor:pointer;  font-size:20px; flex: 1;  }
.nav-tab.active { background:#28a745; color:#fff; }
.icon0{ align-content: center;}
.content { display:flex; max-width:1400px; margin-top: -20px; }
.left img { width:100%; height:600px; object-fit:cover; }
.right { flex:1; padding:20px 50px 0px 50px; background: url(/mc/img/hguanggao.jpg) no-repeat center / cover; height: 600px; }
.right h2 { font-size:26px; margin-bottom:20px; color: #fff; }
.right p { color:#fff; line-height:1.8; }
