     p {
         word-wrap: break-word; /* 允许长单词/URL换行 */
         word-break: break-all;
         max-width: 100%; /* 限制最大宽度为父容器宽度（避免溢出） */
         /* 可选：添加内边距让内容更美观 */
         padding: 5px 5px;
         margin: 0;
     }
     /* 分割线样式 */
     body {
         font-size: 100%;
         padding-bottom: 80px;
         margin-left: 10%;
         margin-right: 10%;
         max-width: 100%;
     }
     /* 下载内容样式 - 移动端优化边距 */
     .download-content {
         margin-left: 1rem;
         margin-top: -0.2rem;
         max-width: 100%;
     }
     /* 每个下载项的容器（新增），方便批量搜索处理 */
     .download-item {
         margin-bottom: 2px;
/*         margin-left: 10%;
         margin-right: 10%;*/
     }
     a:link {
         text-decoration: none;
         color: #0000EE;
     }
      /*未访问链接*/
     a:visited {
         text-decoration: none;
         color: #0000EE;
     }
      /*已访问链接 */
     a:hover {
         text-decoration: underline;
         color: #1a0dab;
     }
     /* 鼠标移动到链接上 */
     a:active {
         text-decoration: underline;
     }
     /* 鼠标点击时 */
     .center {
         text-align: center;
     }
     .text-link {
         font-size: 0.850em;
     }
     .bottom-text {
         position: fixed; /* 固定定位，相对于浏览器视口 */
         bottom: 0; /* 距离视口底部0像素 */
         left: 0; /* 距离视口左侧0像素 */
         /*right: 2%;*/
         width: 100%; /* 宽度占满整个视口 */
         padding: 12px 0; /* 上下内边距，优化显示 */
         background-color: #FFFFFF;
         border-top: 1px solid #808080;
     }
     .form-container {
         width: 90%; /* 限定容器宽度，效果更明显 */
         margin-left: -3%; /* 容器水平居中，方便看右对齐效果 */
         text-align: left;
     }
     .limit-more-text {
         margin-left: 1rem;
         margin-top: -0.2rem;
         max-width: 100%;
         display: -webkit-box;
         -webkit-box-orient: vertical;
         -webkit-line-clamp: 2; /* 最多3行 */
         overflow: hidden;
         /* 关键：用 max-height 精确封死高度 */
         line-height: 1.7em; /* 设定一个固定行高 */
         max-height: calc(1.6em * 3);
         color: #585858;