 /* 完全复用首页CSS，完整代码见下方统一样式 */
        * {margin: 0; padding: 0; box-sizing: border-box; font-family: "微软雅黑", "宋体", sans-serif;}
        body {color: #333; background: #FFF9E8;}
        .container {width: 1200px; margin: 0 auto;}
        .header {
	background: #009900;
	padding: 12px 0;
	border-bottom: 3px solid #008F35;
}
        .nav {display: flex; justify-content: space-between; align-items: center;}
        .logo {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
}
        .nav-menu a {color: #fff; margin: 0 10px; text-decoration: none; font-size: 15px; white-space: nowrap;}
        .nav-menu a:hover {color: #FFE680;}
        .try-btn {background: #FF9900; color: #fff; padding: 6px 14px; border-radius: 3px; text-decoration: none; border: 1px solid #E68A00;}
        .func-bar {background: #F5F0D7; padding: 8px 0; border-bottom: 1px solid #D8D0B0;}
        .func-inner {display: flex; align-items: center;}
        .search-box {padding: 4px; border: 1px solid #CCC; width: 220px; margin-right: 15px;}
        .func-btn {margin-right: 10px; color: #008F35; cursor: pointer;}
        .section {padding: 45px 0; background: #fff; margin-bottom: 15px; border: 1px solid #E8E0C0; border-radius: 5px;}
        .section-title {text-align: center; margin-bottom: 35px; font-size: 26px; color: #00B040; position: relative;}
        .section-title::after {content: ''; width: 70px; height: 2px; background: #008F35; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);}
        .bread {margin: 15px 0; font-size: 14px; color: #666;}
        .bread a {color: #008F35; text-decoration: none;}
        .list-item {padding: 20px; border-bottom: 1px dashed #E0D8B8;}
        .list-item h3 {font-size: 18px; color: #008F35; margin-bottom: 10px;}
        .list-item h3 a {color: #008F35; text-decoration: none;}
        .list-item h3 a:hover {text-decoration: underline;}
        .list-item p {font-size: 14px; color: #666;}
        .footer {background: #008F35; color: #fff; padding: 35px 0; text-align: center;}
        .footer p {margin: 8px 0; font-size: 14px;}
        @media (max-width: 1200px) {.container {width: 95%;}}
        


@media (max-width: 768px) {
  /* 替换 display: none，改为适配手机端的展示 */
  .nav-menu {
    display: flex;    /* 恢复显示 */
    flex-direction: column; /* 竖向排列 */
    width: 100%;      /* 占满宽度 */
    padding: 10px 0;  /* 内边距 */
  }

  .nav-menu a {
    display: block;   /* 每个链接独占一行 */
    margin: 5px 0;    /* 调整间距 */
  }
  .func-bar {
    display: block;   /* 恢复显示 */
    padding: 10px;    /* 调整内边距 */
  }
  .func-inner {
    flex-wrap: wrap;  /* 换行 */
    gap: 8px;         /* 元素间距 */
  }

  .search-box {
    width: 100%;      /* 搜索框占满宽度 */
    margin-right: 0;  /* 取消右侧间距 */
  }
}