/* --- 基础样式重置 --- */
		* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
			-webkit-tap-highlight-color: transparent;
		}

		body {
			font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
			background-color: #f4f7f9;
			color: #333;
			line-height: 1.5;
		}

		a {
			text-decoration: none;
			color: inherit;
		}

		ul {
			list-style: none;
		}

		img {
			max-width: 100%;
			display: block;
		}

		/* --- 顶部导航优化：ZIXUN 与 搜索框左右结构 --- */
		.header-top {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 10px 15px;
			background: #fff;
			gap: 15px;
		}

.logo {
    display: flex;          /* 关键：启用弹性布局 */
    align-items: center;    /* 垂直居中对齐 */
    gap: 2px;               /* 设置“ZI”和“XUN”之间的间距，根据需要调整 */
    cursor: pointer;
}

.logo h2 {
    margin: 0;              /* 清除标题默认的外边距，防止对齐错位 */
    font-size: 20px;        /* 统一字体大小 */
    font-weight: 900;       /* 加粗，符合 Logo 质感 */
    letter-spacing: -0.5px; /* 紧凑一点更有设计感 */
}

		.search-wrapper {
			flex: 1;
			max-width: 600px;
		}

		.search {
			display: flex;
			align-items: center;
			background: #f1f3f5;
			border-radius: 10px;
			padding: 8px 12px;
		}

		.search input {
			flex: 1;
			border: none;
			background: transparent;
			outline: none;
			font-size: 14px;
		}

		.search_btn img {
			width: 16px;
			opacity: 0.5;
		}

		.nav-container {
			background: rgba(255, 255, 255, 0.9);
			backdrop-filter: blur(10px);
			border-bottom: 1px solid rgba(0, 0, 0, 0.05);
			position: sticky;
			top: 0;
			z-index: 1000;
		}

		.nav-links {
			display: flex;
			width: 100%;
			overflow-x: auto;
			white-space: nowrap;
			padding: 10px 15px;
			gap: 20px;
			-webkit-overflow-scrolling: touch;
		}

		.nav-links::-webkit-scrollbar {
			display: none;
		}

		.nav-links li {
			font-size: 15px;
			font-weight: 600;
			color: #666;
			flex-shrink: 0;
		}

		/* --- 轮播图样式 (Type 5) --- */
		.banner-container {
			padding: 15px;
			max-width: 1200px;
			margin: 0 auto;
		}

		.swiper-wrapper {
			display: flex;
			overflow-x: auto;
			scroll-snap-type: x mandatory;
			border-radius: 16px;
			gap: 0;
			-webkit-overflow-scrolling: touch;
		}

		.swiper-wrapper::-webkit-scrollbar {
			display: none;
		}

		.banner-item {
			min-width: 100%;
			scroll-snap-align: start;
			position: relative;
			height: 200px;
			overflow: hidden;
		}

		.banner-item img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.banner-title {
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			padding: 30px 15px 15px;
			background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
			color: #fff;
			font-size: 16px;
			font-weight: bold;
		}

		/* --- 原有内容区域样式保持不变 --- */
		.wrap1,
		.wrap2,
		.wrap4 {
			padding: 0 15px;
			max-width: 1200px;
			margin: 0 auto;
		}

		h1 {
			font-size: 20px;
			margin: 25px 0 15px;
			font-weight: 800;
			display: flex;
			align-items: center;
		}

		h1::before {
			content: '';
			width: 4px;
			height: 18px;
			background: #007bff;
			margin-right: 10px;
			border-radius: 2px;
		}

		.block1 {
			background: #fff;
			border-radius: 16px;
			overflow: hidden;
			margin-bottom: 15px;
			box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
		}

		.block1_img img {
			width: 100%;
			height: 200px;
			object-fit: cover;
		}

		.block1_text {
			padding: 15px;
		}

		.t_13 {
			font-size: 17px;
			font-weight: bold;
			margin-bottom: 8px;
			line-height: 1.3;
		}

		.t_14 {
			font-size: 14px;
			color: #777;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			overflow: hidden;
		}

		.block2 {
			display: grid;
			grid-template-columns: 1fr;
			gap: 12px;
			margin-bottom: 20px;
		}

		.block2_item {
			background: #fff;
			padding: 12px;
			border-radius: 12px;
			display: flex;
			flex-direction: column;
		}

		#life_block1 {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 10px;
		}

		#life_block1 .item {
			background: #fff;
			border-radius: 12px;
			overflow: hidden;
			padding-bottom: 10px;
		}

		#life_block1 .item img {
			height: 100px;
			object-fit: cover;
		}

		/* Healthy 布局 */
		#healthy_block2 .block2_item a {
			display: flex;
			gap: 15px;
		}

		.healthy-text-wrap {
			flex: 1;
		}

		.healthy-img-wrap {
			width: 110px;
			height: 75px;
			flex-shrink: 0;
		}

		.healthy-img-wrap img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			border-radius: 8px;
		}

		/* 桌面端适配 */
		@media (min-width: 768px) {
			.header-top {
				padding: 15px 40px;
			}

			.banner-item {
				height: 400px;
			}

			.block2 {
				grid-template-columns: repeat(3, 1fr);
			}

			#life_block1 {
				grid-template-columns: repeat(6, 1fr);
			}

			.block1 {
				display: flex;
			}

			.block1_img,
			.block1_text {
				flex: 1;
			}
		}

		.footer {
			text-align: center;
			padding: 30px 15px;
			background: #fff;
			margin-top: 40px;
		}

		.fp {
			display: flex;
			justify-content: center;
			gap: 15px;
			font-size: 12px;
			color: #999;
		}

		.goup {
			position: fixed;
			right: 15px;
			bottom: 20px;
			background: #fff;
			width: 40px;
			height: 40px;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
			cursor: pointer;
		}