From 1cb974c662f362e0815d926891f766f5cfd2ceae Mon Sep 17 00:00:00 2001 From: ZhuRui Date: Tue, 25 Aug 2026 16:54:53 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E6=96=B0=E9=97=BB?= =?UTF-8?q?=E8=B5=84=E8=AE=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- about.html | 1 + assets/css/news.css | 316 ++++++++++++++++++++++++++++++++++++ assets/js/main.js | 5 + hangye/hangye.html | 297 +++++++++++++++++++++++++++++++++ index.html | 1 + news/news.html | 297 +++++++++++++++++++++++++++++++++ register.html | 1 + stadium-reserve.html | 1 + stadium-reserve/detail.html | 1 + tournament.html | 1 + updatelog/updatelog.html | 297 +++++++++++++++++++++++++++++++++ 11 files changed, 1218 insertions(+) create mode 100644 assets/css/news.css create mode 100644 hangye/hangye.html create mode 100644 news/news.html create mode 100644 updatelog/updatelog.html diff --git a/about.html b/about.html index c1d949b..339333f 100644 --- a/about.html +++ b/about.html @@ -38,6 +38,7 @@ 场馆预订 场馆管理 六羽赛事 + 新闻资讯 关于我们 场馆入驻 diff --git a/assets/css/news.css b/assets/css/news.css new file mode 100644 index 0000000..478c30c --- /dev/null +++ b/assets/css/news.css @@ -0,0 +1,316 @@ +/* 新闻资讯页面样式(资讯中心 / 行业资讯 / 更新日志) */ + +.news-page { + background-color: #fff; +} + +/* 顶部 banner:复用站点 .banner 结构,图片通过 .banner__bg 填充 */ +.news-page .banner { + width: 100%; + height: 400px; + position: relative; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + background-image: none; + overflow: hidden; +} +.news-page .banner__bg { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + object-fit: cover; + display: block; + z-index: 0; +} +.news-page .banner__body { + position: relative; + z-index: 1; + color: #fff; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; +} +.news-page .banner__body__title { + font-size: 46px; + font-weight: bold; + line-height: 1.2; + letter-spacing: 6px; +} +.news-page .banner__body__sub { + margin-top: 14px; + font-size: 18px; +} + +/* 内容容器 */ +.news-main { + display: flex; + justify-content: center; + padding-bottom: 80px; +} +.news-main__inner { + width: 1200px; +} + +/* 顶部导航栏(tabs + 面包屑) */ +.news-main .nav_all { + margin-top: 30px; + display: flex; + align-items: center; + justify-content: space-between; + overflow: hidden; +} +.news-main .nav_all .nav { + list-style: none; + margin: 0; + padding: 0; + display: flex; + flex-wrap: wrap; +} +.news-main .nav_all .nav li { + list-style: none; + padding: 10px 30px; + color: #666; + font-size: 16px; + cursor: pointer; + margin-right: 10px; + border-radius: 50px; + transition: all 0.2s; +} +.news-main .nav_all .nav li a { + display: inline-block; + color: inherit; + text-decoration: none; +} +.news-main .nav_all .nav li.active { + background: #eb662b; + color: #fff; +} +.news-main .nav_all .nav li:hover { + background: #eb662b; + color: #fff; +} +.news-main .nav_all .buzou { + color: #666; + font-size: 14px; +} +.news-main .nav_all .buzou a { + color: #666; + text-decoration: none; +} +.news-main .nav_all .buzou a:hover { + color: #eb662b; +} + +/* 内容区:左侧列表 + 右侧悬浮热文 */ +.news-main .neirong { + margin-top: 20px; + display: flex; + align-items: flex-start; +} +.news-main .neirong .zuo { + flex: 1; + min-width: 0; +} + +/* 简介卡片 */ +.news-main .zuo .jieshao { + background: #f0f1f1; + border-radius: 6px; + padding: 30px; + margin-bottom: 10px; +} +.news-main .zuo .jieshao .name { + font-weight: bold; + color: #1a2026; + font-size: 24px; +} +.news-main .zuo .jieshao .nr { + color: #1a2026; + font-size: 14px; + margin-top: 20px; + text-align: left; +} + +/* 条目列表 */ +.news-main .xwzx { + text-align: left; +} +.news-main .xwzx ul { + list-style: none; + margin: 0; + padding: 0; +} +.news-main .xwzx li { + list-style: none; + border-bottom: 1px solid #ebebeb; + padding: 30px 0; +} +.news-main .xwzx .kuang { + display: flex; +} +.news-main .xwzx .kuang .img { + flex: 0 0 245px; + width: 245px; + height: 154px; + border-radius: 4px; + overflow: hidden; + background: #eceff1; +} +.news-main .xwzx .kuang .img img { + width: 100%; + height: 100%; + object-fit: cover; + display: block; +} +.news-main .xwzx .kuang .nrs { + flex: 1; + min-width: 0; + padding: 0 20px; + color: #1a2026; + display: flex; + flex-direction: column; +} +.news-main .xwzx .kuang .nrs a { + text-decoration: none; +} +.news-main .xwzx .kuang .nrs .name { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + font-size: 20px; + color: #1a2026; +} +.news-main .xwzx .kuang .nrs .name:hover { + color: #eb662b; +} +.news-main .xwzx .kuang .nrs .nr { + font-size: 14px; + color: #505050; + margin-top: 16px; + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; +} +.news-main .xwzx .kuang .nrs .mingchen { + font-size: 12px; + color: #505050; + margin-top: auto; + padding-top: 20px; +} +.news-main .xwzx .kuang .nrs .time { + color: #bcbec0; + font-size: 12px; + margin-left: 50px; +} + +/* 分页 */ +.news-main .pages { + margin-top: 50px; + text-align: center; +} +.news-main .pages ul { + list-style: none; + margin: 0; + padding: 0; +} +.news-main .pages ul li { + display: inline-block; + border: 1px solid #ddd; + border-radius: 4px; + padding: 8px 16px; + margin: 0 4px; + cursor: pointer; + transition: all 0.2s; +} +.news-main .pages ul li a { + color: #1a2026; + text-decoration: none; +} +.news-main .pages ul li.active { + background: #eb662b; + border-color: #eb662b; +} +.news-main .pages ul li.active a { + color: #fff; +} +.news-main .pages ul li:hover { + background: #eb662b; + border-color: #eb662b; +} +.news-main .pages ul li:hover a { + color: #fff; +} + +/* 右侧悬浮热文推荐 */ +.news-main .neirong .you { + position: sticky; + top: 90px; + width: 350px; + flex: 0 0 350px; + margin-left: 30px; + text-align: left; +} +.news-main .myNew { + border-radius: 10px; + border: 1px solid #ebebeb; + padding: 20px; + background: #fff; +} +.news-main .myNew .title { + padding: 5px 10px; + border-left: 4px solid #eb662b; + font-weight: bold; + color: #505050; + font-size: 18px; + margin-bottom: 8px; +} +.news-main .myNew .tuwz { + display: flex; + margin-top: 16px; +} +.news-main .myNew .tuwz .img { + flex: 0 0 112px; + width: 112px; +} +.news-main .myNew .tuwz .img img { + width: 112px; + height: 70px; + object-fit: cover; + border-radius: 4px; + display: block; + background: #eceff1; +} +.news-main .myNew .tuwz .info { + flex: 1; + min-width: 0; + margin-left: 12px; +} +.news-main .myNew .tuwz .info a { + text-decoration: none; +} +.news-main .myNew .tuwz .info .nr { + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + color: #1a2026; + font-size: 14px; + line-height: 22px; +} +.news-main .myNew .tuwz .info .nr:hover { + color: #eb662b; +} +.news-main .myNew .tuwz .info .time { + color: #999; + font-size: 12px; + margin-top: 4px; +} diff --git a/assets/js/main.js b/assets/js/main.js index 598e708..6823423 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -52,6 +52,11 @@ jquery__WEBPACK_IMPORTED_MODULE_0___default()(function () { case '/about.html': targetName = 'about'; break; + case '/news/news.html': + case '/hangye/hangye.html': + case '/updatelog/updatelog.html': + targetName = 'news'; + break; } } else if (hash) { switch (hash) { diff --git a/hangye/hangye.html b/hangye/hangye.html new file mode 100644 index 0000000..7393c03 --- /dev/null +++ b/hangye/hangye.html @@ -0,0 +1,297 @@ + + + + + + + 行业资讯-六个羽友 + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ + +
+
+
+
行业资讯
+
聚焦体育场馆行业数字化趋势、运营干货与智能硬件应用,助力场馆经营者洞察方向。
+
+
+ +
+ +
+
+
+ + +
+
+
+
+ + + + diff --git a/index.html b/index.html index fbe9a5d..0d548aa 100644 --- a/index.html +++ b/index.html @@ -42,6 +42,7 @@ 场馆预订 场馆管理 六羽赛事 + 新闻资讯 关于我们 场馆入驻 diff --git a/news/news.html b/news/news.html new file mode 100644 index 0000000..7e4fef4 --- /dev/null +++ b/news/news.html @@ -0,0 +1,297 @@ + + + + + + + 资讯中心-六个羽友 + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ + +
+
+
+
六个羽友
+
国内专业的订场约球与赛事管理平台,帮助众多运动场馆提升数字化运营能力。
+
+
+ +
+ +
+
+
+ + +
+
+
+
+ + + + diff --git a/register.html b/register.html index 7b6d4be..ff135f7 100644 --- a/register.html +++ b/register.html @@ -38,6 +38,7 @@ 场馆预订 场馆管理 六羽赛事 + 新闻资讯 关于我们 场馆入驻 diff --git a/stadium-reserve.html b/stadium-reserve.html index 6ed7c76..991e4cb 100644 --- a/stadium-reserve.html +++ b/stadium-reserve.html @@ -37,6 +37,7 @@ 场馆预订 场馆管理 六羽赛事 + 新闻资讯 关于我们 场馆入驻 diff --git a/stadium-reserve/detail.html b/stadium-reserve/detail.html index 75e4c86..3ec9c25 100644 --- a/stadium-reserve/detail.html +++ b/stadium-reserve/detail.html @@ -37,6 +37,7 @@ 首页 场馆预订 场馆管理 + 新闻资讯 关于我们 场馆入驻 diff --git a/tournament.html b/tournament.html index 8e3f32a..0fb1b39 100644 --- a/tournament.html +++ b/tournament.html @@ -41,6 +41,7 @@ 场馆预订 场馆管理 六羽赛事 + 新闻资讯 关于我们 场馆入驻 diff --git a/updatelog/updatelog.html b/updatelog/updatelog.html new file mode 100644 index 0000000..f197508 --- /dev/null +++ b/updatelog/updatelog.html @@ -0,0 +1,297 @@ + + + + + + + 更新日志-六个羽友 + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ + +
+
+
+
更新日志
+
记录六个羽友平台各版本的升级内容与新增功能,帮助用户及时了解产品动态。
+
+
+ +
+ +
+
+
+ + +
+
+
+
+ + + +