YXAlertText.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  6. <title>用户协议和隐私政策</title>
  7. <style>
  8. body {
  9. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  10. line-height: 1.5;
  11. margin: 0;
  12. display: flex;
  13. flex-direction: column;
  14. min-height: 100vh;
  15. color: #333;
  16. }
  17. .container {
  18. max-width: 600px;
  19. margin: auto;
  20. }
  21. .content {
  22. background-color: white;
  23. padding: 30px;
  24. border-radius: 12px;
  25. box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  26. }
  27. p {
  28. font-size: 16px;
  29. margin-bottom: 1.5em;
  30. text-align: justify;
  31. }
  32. a {
  33. color: #007AFF;
  34. text-decoration: none;
  35. }
  36. a:hover {
  37. text-decoration: underline;
  38. }
  39. .agree-btn {
  40. background-color: #4CAF50;
  41. color: white;
  42. border: none;
  43. padding: 15px 40px;
  44. border-radius: 25px;
  45. font-size: 18px;
  46. margin: 20px auto;
  47. display: block;
  48. cursor: pointer;
  49. transition: background-color 0.3s;
  50. }
  51. .agree-btn:hover {
  52. background-color: #45a049;
  53. }
  54. @media (max-width: 480px) {
  55. .content {
  56. padding: 20px;
  57. }
  58. p {
  59. font-size: 14px;
  60. }
  61. }
  62. </style>
  63. </head>
  64. <body>
  65. <div class="container">
  66. <div class="content">
  67. <p>欢迎使用永续绿建五恒 APP,我们非常重视您的隐私保护和个人信息保护,使用本软件的过程中我们会严格按照法律规定收集存储和使用您的个人信息,未经您的同意我们不会向第三方提供您的任何信息,您可以阅读<a href="https://app.yongxulvjian.com/#/ServiceAgreement">《用户协议》</a>和<a href="https://app.yongxulvjian.com/#/PrivacyPolicy">《隐私政策》</a>全文了解详细信息。如您同意,请点击“同意”开始接受我们的服务。</p>
  68. </div>
  69. </div>
  70. <script>
  71. function handleAgree() {
  72. // 这里可以添加同意后的处理逻辑
  73. alert('已同意用户协议和隐私政策');
  74. // window.location.href = 'homepage.html'; // 跳转到首页
  75. }
  76. </script>
  77. </body>
  78. </html>