File size: 2,292 Bytes
ef2444b
1d8c915
ef2444b
1d8c915
 
ef2444b
1d8c915
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ef2444b
 
 
1d8c915
 
 
ef2444b
1d8c915
 
 
ef2444b
1d8c915
 
 
 
 
ef2444b
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>IPTV ζ–‡δ»ΆζœεŠ‘ε™¨</title>
    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: "Microsoft YaHei", sans-serif;
        }
        body {
            background: #f5f5f5;
            padding: 40px 20px;
            text-align: center;
        }
        .container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .desc {
            color: #7f8c8d;
            margin-bottom: 30px;
        }
        .button {
            display: inline-block;
            padding: 14px 28px;
            margin: 10px;
            background: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 16px;
            transition: 0.3s;
        }
        .button:hover {
            background: #2980b9;
        }
        .file-list {
            text-align: left;
            margin-top: 25px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        .file-item {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        .file-item a {
            color: #2c3e50;
            text-decoration: none;
        }
        .file-item a:hover {
            color: #3498db;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>πŸ“Ί IPTV θ‡ͺεŠ¨ι‡‡ι›†ζœεŠ‘ε™¨</h1>
        <p class="desc">ε·²θ‡ͺεŠ¨ι‡‡ι›†γ€εŽ»ι‡γ€ζŽ’εΊη”Ÿζˆ IPTV 源</p>

        <a class="button" href="/files/">πŸ“‚ ζ΅θ§ˆε…¨ιƒ¨ζ–‡δ»Ά</a>
        <a class="button" href="/files/tv.txt">πŸ“„ 打开 tv.txt</a>
        <a class="button" href="/files/tv.m3u">🎬 打开 tv.m3u</a>

        <div class="file-list">
            <div class="file-item"><a href="/files/tv.txt">βœ… tv.txt - 标准IPTV源</a></div>
            <div class="file-item"><a href="/files/tv.m3u">βœ… tv.m3u - 播放器专用源</a></div>
        </div>
    </div>
</body>
</html>