feat:增加隐私政策链接、页面、cookie弹框

This commit is contained in:
spylecym 2023-07-21 11:56:26 +08:00
parent 40f18764b9
commit 3a834ae90d
21 changed files with 362 additions and 14 deletions

View File

@ -983,3 +983,26 @@ footer{
.hide{
display: none;
}
#cookieConsent{
display: none;
width: 100%;
height: 180px;
background-color: rgba(0,0,0,.8);
position: fixed;
bottom: 0;
z-index: 9999;
color: #dfe4e8;
padding: 40px 50px;
box-sizing: border-box;
text-align: center;
}
#agreeButton{
width: 130px;
position: absolute;
right: 80px;
bottom: 50px;
}
#cookie_a{
color: #dfe4e8;
text-decoration-line: underline;
}

0
public/site/css/privacy.css vendored Normal file
View File

View File

@ -41,6 +41,9 @@
<li class="submenu-pop-item" onclick="changeMenu()">
<a class="txt-4001418 txt-sub" href="../en/help.html">Help Center</a>
</li>
</ol>
</li>
<li class="nav-ul-item">
@ -333,9 +336,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -172,6 +172,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>
@ -282,9 +285,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -414,6 +414,9 @@
>Help Center</a
>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../en/price.html"
@ -2259,13 +2262,16 @@
>Download Center</a
>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a
class="txt-4001624 txt"
href="../en/help.html"
>Help Center</a
>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -14,6 +14,11 @@
</head>
<body>
<div id="layout">
<!-- 同意cookie弹框 -->
<div id="cookieConsent">
<p>We use cookies (including third-party cookies) for security, technical, analytical and marketing purposes in order to enable our website to serve you properly, to improve security and to operate more efficiently in order to provide you with a better website experience. By continuing to browse this website, you are consenting to the use of cookies; for more information on how we use cookies, please see our <a href="../en/privacy.html" id="cookie_a">《Privacy Policy》</a></p>
<button id="agreeButton" class="btn btn-primary" >agree</button>
</div>
<!-- 页头区域 -->
<header class="head">
<div class="nav">
@ -146,6 +151,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>
@ -467,9 +475,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
</li>
<li class="footer-r-item">
@ -505,6 +516,27 @@
</body>
<script src="../js/common.js"></script>
<script>
// cookie弹框
document.addEventListener('DOMContentLoaded', function() {
console.log("aaa");
let cookieConsent = document.getElementById('cookieConsent');
let agreeButton = document.getElementById('agreeButton');
// 检查localStorage中的同意状态
let hasConsented = sessionStorage.getItem('cookieConsent');
if (!hasConsented) {
cookieConsent.style.display = 'block';
}
agreeButton.addEventListener('click', handleAgreeButtonClick);
function hideCookieConsent() {
cookieConsent.style.display = 'none';
}
function handleAgreeButtonClick() {
// 存储同意状态到localStorage
sessionStorage.setItem('cookieConsent', 'true');
hideCookieConsent();
}
});
/* 功能卡片切换函数 */
const tabs = document.querySelector('.card-ul');
const funImg = document.querySelector('#home_pic2');

View File

@ -41,6 +41,9 @@
<li class="submenu-pop-item" onclick="changeMenu()">
<a class="txt-4001418 txt-sub" href="../en/help.html">Help Center</a>
</li>
</ol>
</li>
<li class="nav-ul-item">
@ -128,6 +131,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001624 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>

View File

@ -241,6 +241,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>
@ -715,9 +718,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -0,0 +1,87 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DooTask</title>
<meta name="google" value="notranslate">
<meta name="description" content="DooTask是一款轻量级的开源在线项目任务管理工具提供各类文档协作工具、在线思维导图、在线流程图、项目管理、任务分发、即时IM文件管理等工具。助力团队高效推进项目让工作更简单。">
<meta name="keywords" content="中国 DooTask 开源在线项目 任务管理工具 任务管理 轻量级 海豚有海 团队协作">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="../img/favicon.ico">
<link rel="stylesheet" href="../css/privacy.css">
<link rel="stylesheet" href="../css/common.css">
</head>
<body>
<header class="head">
<div class="nav">
<div class="nav-layout">
<a href="../en/index.html" class="logo">
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo">
<i class="dootask txt-7002027">DooTask</i>
</a>
<ul class="nav-ul">
<li class="nav-ul-item">
<a class="txt-4001620 txt nav-product" href="../en/product.html">Product</a>
</li>
<li class="nav-ul-item">
<a class="txt-4001620 txt nav-solutions" href="../en/solutions.html">Solutions</a>
</li>
<li class="nav-ul-item">
<i class="txt-4001620 txt nav-support" id="support-txt" onclick="showMenuPopHandle()">
Support
<img src="../img/vector.svg" alt="Support" class="nav-vector" id="drop-down-svg">
</i>
<ol class="submenu-pop" id="submenu-pop">
<li class="submenu-pop-item" onclick="changeMenu()">
<a class="txt-4001418 txt-sub" href="../en/download.html">Download Center</a>
</li>
<li class="submenu-pop-item" onclick="changeMenu()">
<a class="txt-4001418 txt-sub" href="../en/help.html">Help Center</a>
</li>
</ol>
</li>
<li class="nav-ul-item">
<a class="txt-4001620 txt nav-price" href="../en/price.html">Pricing</a>
</li>
<li class="nav-ul-item">
<a class="txt-4001620 txt nav-about" href="../en/about.html">About Us</a>
</li>
</ul>
<div class="nav-r">
<div class="lang" id="lang-img">
<img src="../img/lang-select.svg" alt="Language switch" onclick="shouLangPopHandle()">
<ul class="lang-pop" id="lang-pop">
<li class="lang-pop-item" onclick="changeLanguage('zh')">
<i class="lang-txt">简体中文</i>
</li>
<li class="lang-pop-item" onclick="changeLanguage('en')">
<i class="lang-txt" >English</i>
</li>
</ul>
</div>
<i class="nav-r-icon theme_dark" onclick="setTheme('light')">
<img src="../img/light.svg" alt="Brighter theme">
</i>
<i class="nav-r-icon theme_light" onclick="setTheme('dark')">
<img src="../img/drak.svg" alt="Dark theme">
</i>
<a href="https://github.com/kuaifan/dootask">
<i class="nav-r-icon">
<img src="../img/github.svg" alt="github">
</i>
</a>
<i class="line-1"></i>
<span class="get-started">
<a href="https://www.dootask.com/manage/dashboard">
<button class="btn btn-primary" >Try Now</button>
</a>
</span>
</div>
<div class="menuBtn">
<img id="menuBtn" src="../img/menu.svg" alt="Menu">
</div>
</div>
</div>
</header>
</body>
</html>

View File

@ -418,6 +418,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>
@ -578,9 +581,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -133,6 +133,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/help.html">Help Center</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../en/price.html">Pricing</a>
@ -285,9 +288,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/download.html">Download Center</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../en/help.html">Help Center</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../en/privacy.html">Privacy Policy</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -147,6 +147,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="./site/zh/help.html">帮助中心</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="./site/zh/privacy.html">隐私政策</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="./site/zh/price.html">服务价格</a>
@ -470,6 +473,9 @@
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="./zh/help.html">帮助中心</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -162,6 +162,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../zh/price.html">服务价格</a>
@ -331,9 +334,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/download.html">下载中心</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -172,6 +172,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/help.html">隐私政策</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../zh/price.html">服务价格</a>
@ -280,9 +283,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/download.html">下载中心</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -210,6 +210,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../zh/price.html">服务价格</a>
@ -686,9 +689,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/download.html">下载中心</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -14,6 +14,11 @@
</head>
<body>
<div id="layout">
<!-- 同意cookie弹框 -->
<div id="cookieConsent">
<p>为使我们的网站可以正常向您提供服务、提高安全性并更高效地运作以给您带来更好的网站使用体验我们将使用Cookie包括第三方Cookie以作为安全、技术、分析与营销之用。继续浏览本网站即表示您同意使用cookie。更多有关我们如何使用 Cookie的信息请参阅我们的 <a href="../zh/privacy.html" id="cookie_a">《隐私政策》</a></p>
<button id="agreeButton" class="btn btn-primary" >同意</button>
</div>
<!-- 页头区域 -->
<header class="head">
<div class="nav">
@ -145,6 +150,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../zh/price.html">服务价格</a>
@ -465,9 +473,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/download.html">下载中心</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
</li>
<li class="footer-r-item">
@ -503,6 +514,27 @@
</body>
<script src="../js/common.js"></script>
<script>
// cookie弹框
document.addEventListener('DOMContentLoaded', function() {
console.log("aaa");
let cookieConsent = document.getElementById('cookieConsent');
let agreeButton = document.getElementById('agreeButton');
// 检查localStorage中的同意状态
let hasConsented = sessionStorage.getItem('cookieConsent');
if (!hasConsented) {
cookieConsent.style.display = 'block';
}
agreeButton.addEventListener('click', handleAgreeButtonClick);
function hideCookieConsent() {
cookieConsent.style.display = 'none';
}
function handleAgreeButtonClick() {
// 存储同意状态到localStorage
sessionStorage.setItem('cookieConsent', 'true');
hideCookieConsent();
}
});
/* 功能卡片切换函数 */
const tabs = document.querySelector('.card-ul');
const funImg = document.querySelector('#home_pic2');

View File

@ -128,6 +128,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../zh/price.html">服务价格</a>

View File

@ -242,6 +242,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../zh/price.html">服务价格</a>
@ -716,9 +719,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/download.html">下载中心</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -0,0 +1,87 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DooTask</title>
<meta name="google" value="notranslate">
<meta name="description" content="DooTask是一款轻量级的开源在线项目任务管理工具提供各类文档协作工具、在线思维导图、在线流程图、项目管理、任务分发、即时IM文件管理等工具。助力团队高效推进项目让工作更简单。">
<meta name="keywords" content="中国 DooTask 开源在线项目 任务管理工具 任务管理 轻量级 海豚有海 团队协作">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="../img/favicon.ico">
<link rel="stylesheet" href="../css/privacy.css">
<link rel="stylesheet" href="../css/common.css">
</head>
<body>
<header class="head">
<div class="nav">
<div class="nav-layout">
<a href="../zh/index.html" class="logo">
<img id="logo" src="../img/light/logo.svg" alt="DooTask,Logo">
<i class="dootask txt-7002027">DooTask</i>
</a>
<ul class="nav-ul">
<li class="nav-ul-item">
<a class="txt-4001620 txt nav-product" href="../zh/product.html">产品</a>
</li>
<li class="nav-ul-item">
<a class="txt-4001620 txt nav-solutions" href="../zh/solutions.html">解决方案</a>
</li>
<li class="nav-ul-item">
<i class="txt-4001620 txt nav-support" id="support-txt" onclick="showMenuPopHandle()">
支持
<img src="../img/vector.svg" alt="支持" class="nav-vector" id="drop-down-svg">
</i>
<ol class="submenu-pop" id="submenu-pop">
<li class="submenu-pop-item" onclick="changeMenu()">
<a class="txt-4001418 txt-sub" href="../zh/download.html">下载中心</a>
</li>
<li class="submenu-pop-item" onclick="changeMenu()">
<a class="txt-4001418 txt-sub" href="../zh/help.html">帮助中心</a>
</li>
</ol>
</li>
<li class="nav-ul-item">
<a class="txt-4001620 txt nav-price" href="../zh/price.html">服务价格</a>
</li>
<li class="nav-ul-item">
<a class="txt-4001620 txt nav-about" href="../zh/about.html">关于我们</a>
</li>
</ul>
<div class="nav-r">
<div class="lang" id="lang-img">
<img src="../img/lang-select.svg" alt="语言切换" onclick="shouLangPopHandle()">
<ul class="lang-pop" id="lang-pop">
<li class="lang-pop-item" onclick="changeLanguage('zh')">
<i class="lang-txt">简体中文</i>
</li>
<li class="lang-pop-item" onclick="changeLanguage('en')">
<i class="lang-txt" >English</i>
</li>
</ul>
</div>
<i class="nav-r-icon theme_dark" onclick="setTheme('light')">
<img src="../img/light.svg" alt="明亮主题">
</i>
<i class="nav-r-icon theme_light" onclick="setTheme('dark')">
<img src="../img/drak.svg" alt="暗黑主题">
</i>
<a href="https://github.com/kuaifan/dootask">
<i class="nav-r-icon">
<img src="../img/github.svg" alt="github">
</i>
</a>
<i class="line-1"></i>
<span class="get-started">
<a href="https://www.dootask.com/manage/dashboard">
<button class="btn btn-primary" >立即体验</button>
</a>
</span>
</div>
<div class="menuBtn">
<img id="menuBtn" src="../img/menu.svg" alt="菜单">
</div>
</div>
</div>
</header>
</body>
</html>

View File

@ -418,6 +418,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../zh/price.html">服务价格</a>
@ -580,9 +583,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/download.html">下载中心</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
</li>
<li class="footer-r-item">

View File

@ -133,6 +133,9 @@
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="drawer-item" onclick="changeMenu()">
<a class="txt-4001620 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
<div class="drawer-item" onclick="closeDraweHandle()">
<a class="txt-4001620 txt" href="../zh/price.html">服务价格</a>
@ -286,9 +289,12 @@
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/download.html">下载中心</a>
</li>
<li class="footer-ol-item">
<li class="footer-ol-item mb-16">
<a class="txt-4001624 txt" href="../zh/help.html">帮助中心</a>
</li>
<li class="footer-ol-item">
<a class="txt-4001624 txt" href="../zh/privacy.html">隐私政策</a>
</li>
</ol>
</li>
<li class="footer-r-item">