1+ <!DOCTYPE html>
2+ < html lang ="zh-CN ">
3+
4+ < head >
5+ < meta charset ="UTF-8 ">
6+ < meta name ="viewport " content ="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no ">
7+ < meta name ="color-scheme " content ="light ">
8+ < meta name ="description " content ="OpenList使用条款 ">
9+ < meta name ="keywords " content ="OpenList,使用条款,Terms ">
10+ < title > OpenList 使用条款</ title >
11+ < style >
12+ * {
13+ font-family : JetBrains Mono, Noto Sans SC, "Apple Color Emoji" , "Segoe UI Emoji" , "Noto Color Emoji" , system-ui, -apple-system, emoji, monospace;
14+ font-feature-settings : "liga" off, "calt" off !important ;
15+ -webkit-font-smoothing : antialiased !important ;
16+ text-rendering : optimizeLegibility !important
17+ }
18+
19+ html ,
20+ body ,
21+ root {
22+ margin : 0 auto;
23+ min-width : 100dvw ;
24+ max-width : 100dvw ;
25+ width : 100dvw ;
26+ height : 100dvh ;
27+ min-height : 100dvh ;
28+ max-height : 100dvh
29+ }
30+
31+ : root {
32+ --border : # DDDDDD ;
33+ --primary : # 3F51B5 ;
34+ --secondary : # F50057 ;
35+ --text-light : # 666666 ;
36+ --text : # 333333 ;
37+ }
38+
39+ .container {
40+ max-width : 900px ;
41+ margin : 0 auto;
42+ }
43+
44+ header {
45+ background : # 3f51b5 ;
46+ border-radius : 1rem ;
47+ box-shadow : 0px 0px .5rem 0px # 000000 ;
48+ color : white;
49+ margin : 1.5rem 0 2rem 0 ;
50+ padding : 1rem 0 ;
51+ text-align : center;
52+ }
53+
54+ .header-content {
55+ max-width : 75% ;
56+ margin : 0 auto;
57+ }
58+
59+ h1 {
60+ font-size : 3rem ;
61+ font-weight : 700 ;
62+ margin : 0 ;
63+ padding : 1rem ;
64+ }
65+
66+ .subtitle {
67+ font-size : 1.5rem ;
68+ margin : 0 ;
69+ }
70+
71+ .last-updated {
72+ font-style : italic;
73+ margin : .5rem 0 ;
74+ text-align : right;
75+ }
76+
77+ .policy-container {
78+ border-radius : 1rem ;
79+ box-shadow : 0px 0px .5rem 0px # 000000 ;
80+ padding : 1rem 2rem ;
81+ position : relative;
82+ overflow : hidden;
83+ }
84+
85+ .policy-container ::before {
86+ content : "" ;
87+ position : absolute;
88+ top : 0 ;
89+ left : 0 ;
90+ width : .3rem ;
91+ height : 100% ;
92+ background : var (--primary );
93+ }
94+
95+ h3 {
96+ color : var (--primary );
97+ font-size : 1.5rem ;
98+ }
99+
100+ .divider {
101+ height : 1px ;
102+ background : var (--border );
103+ }
104+
105+ .callout {
106+ background : var (--primary-light );
107+ border-left : 4px solid var (--primary );
108+ padding : 20px ;
109+ border-radius : .4rem ;
110+ margin : 30px 0 ;
111+ }
112+
113+ a {
114+ color : var (--primary );
115+ text-decoration : none;
116+ transition : color 0.2s ;
117+ font-weight : 500 ;
118+ }
119+
120+ a : hover {
121+ color : var (--secondary );
122+ text-decoration : underline;
123+ }
124+
125+ b {
126+ font-weight : 700 ;
127+ color : # 2c387e ;
128+ }
129+
130+ footer {
131+ text-align : center;
132+ margin-top : 2rem ;
133+ padding : 2rem 0 ;
134+ }
135+
136+ @media (max-width : 768px ) {
137+ .container {
138+ max-width : 90% ;
139+ }
140+
141+ .policy-container {
142+ padding : 25px 20px 25px 25px ;
143+ }
144+ }
145+ </ style >
146+ </ head >
147+
148+ < body >
149+ < div class ="container ">
150+ < header >
151+ < div class ="header-content ">
152+ < h1 > 使用条款</ h1 >
153+ < p class ="subtitle "> 请在使用我们的服务前仔细阅读以下条款和条件</ p >
154+ </ div >
155+ </ header >
156+ < div class ="policy-container ">
157+ < p class ="last-updated "> 最后更新: 2025年6月14日</ p >
158+ < p > 欢迎使用本服务。请在使用前仔细阅读以下条款。使用本服务即表示您同意遵守本使用条款。</ p >
159+ < h3 > 条款内容</ h3 >
160+ < div class ="divider "> </ div >
161+ < ul >
162+ < li > 本服务仅供合法用途,用户不得利用本服务从事任何违法活动。</ li >
163+ < li > 用户应自行承担因使用本服务而产生的所有风险和责任。</ li >
164+ < li > 我们有权在不提前通知的情况下,随时修改、暂停或终止本服务。</ li >
165+ < li > 本服务按"现状"提供,不对其可用性、准确性或适用性作任何明示或暗示的保证。</ li >
166+ < li > 如有任何疑问,请随时联系我们。</ li >
167+ </ ul >
168+ < h3 > AGPL 授权声明</ h3 >
169+ < div class ="divider "> </ div >
170+ < div class ="callout ">
171+ 本软件受
172+ < a href ="https://www.gnu.org/licenses/agpl-3.0.html " target ="_blank ">
173+ GNU Affero General Public License v3.0 (AGPL-3.0)
174+ </ a >
175+ 许可协议保护。您可以自由使用、修改和分发本软件,
176+ 但必须遵守 AGPL-3.0 的相关条款,包括在分发和提供服务时公开源代码。
177+ 详情请参阅上述链接。
178+ </ div >
179+ </ div >
180+ < footer >
181+ < p > © OpenListTeam - All Rights Reserved.</ p >
182+ </ footer >
183+ </ div >
184+ </ body >
185+
186+ </ html >
0 commit comments