AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## 添加分页样式 使用thinkphp自带的page分页,无需重写page.class, 直接添加css样式即可。直接使用thinkphp自带的分页,然后在html添加 `<div class="Pagination">{$page}</div>` 在添加css样式即可 ~~~ .Pagination a:hover,.current{background-color: #f54281;border: 1px solid #f54281;color: #ffffff; } .Pagination{float: right;height: auto;_height: 45px; line-height: 20px;margin-right: 15px;_margin-right: 5px; color:#565656;margin-top: 10px;_margin-top: 20px; clear:both;} .Pagination a,.Pagination span{ font-size: 14px;text-decoration: none;display: block;float: left;color: #565656;border: 1px solid #ccc;height: 34px;line-height: 34px;margin: 0 2px;width: 34px;text-align: center;} ~~~ 效果很不错 ![](https://box.kancloud.cn/2015-12-16_56712f13c742a.png)