index.html 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>kakaxi-1☆★☆优质电视直播源仓库</title>
  8. <style>
  9. /* 基本样式 */
  10. body, html {
  11. margin: 0;
  12. padding: 0;
  13. font-family: 'Roboto', sans-serif;
  14. background-color: #121212;
  15. color: #e0e0e0;
  16. line-height: 1.6;
  17. }
  18. h1, h2, h3, p {
  19. margin: 0;
  20. padding: 0;
  21. }
  22. a {
  23. text-decoration: none;
  24. color: #4CAF50;
  25. }
  26. /* 全局样式 */
  27. .container {
  28. width: 90%;
  29. margin: 0 auto;
  30. max-width: 1200px;
  31. }
  32. /* 头部 */
  33. header {
  34. background: linear-gradient(135deg, #333, #555);
  35. padding: 50px 0;
  36. color: #fff;
  37. text-align: center;
  38. }
  39. header .avatar {
  40. width: 180px;
  41. height: 180px;
  42. border-radius: 50%;
  43. object-fit: cover;
  44. margin-bottom: 20px;
  45. transition: transform 0.3s ease;
  46. }
  47. header .avatar:hover {
  48. transform: scale(1.1);
  49. }
  50. header h1 {
  51. font-size: 3rem;
  52. color: #fff;
  53. margin-bottom: 15px;
  54. letter-spacing: 2px;
  55. }
  56. header p {
  57. font-size: 1.2rem;
  58. max-width: 800px;
  59. margin: 0 auto;
  60. color: #ddd;
  61. line-height: 1.8;
  62. }
  63. /* 关于我们部分 */
  64. #about {
  65. background-color: #181818;
  66. padding: 60px 30px;
  67. text-align: center;
  68. color: #fff;
  69. }
  70. #about h2 {
  71. font-size: 2.5rem;
  72. margin-bottom: 20px;
  73. font-weight: 500;
  74. }
  75. #about p {
  76. font-size: 1.2rem;
  77. max-width: 800px;
  78. margin: 0 auto;
  79. }
  80. /* 服务部分 */
  81. #services {
  82. padding: 60px 30px;
  83. background-color: #1a1a1a;
  84. }
  85. #services h2 {
  86. font-size: 2.5rem;
  87. text-align: center;
  88. color: #fff;
  89. margin-bottom: 40px;
  90. }
  91. .card-container {
  92. display: flex;
  93. flex-wrap: wrap;
  94. gap: 20px;
  95. justify-content: space-between;
  96. }
  97. .card {
  98. background-color: #222;
  99. border-radius: 15px;
  100. box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  101. width: 22%;
  102. padding: 20px;
  103. color: #fff;
  104. transition: transform 0.3s ease, box-shadow 0.3s ease;
  105. }
  106. .card:hover {
  107. transform: translateY(-10px);
  108. box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
  109. }
  110. .card img {
  111. width: 100%;
  112. border-radius: 10px 10px 0 0;
  113. margin-bottom: 15px;
  114. }
  115. .card h3 {
  116. font-size: 1.5rem;
  117. margin-top: 10px;
  118. color: #4CAF50;
  119. }
  120. .card p {
  121. font-size: 1rem;
  122. color: #ddd;
  123. }
  124. .card button {
  125. background-color: #4CAF50;
  126. color: #fff;
  127. border: none;
  128. padding: 12px 20px;
  129. border-radius: 5px;
  130. font-size: 1rem;
  131. cursor: pointer;
  132. margin-top: 15px;
  133. transition: background-color 0.3s ease;
  134. }
  135. .card button:hover {
  136. background-color: #45a049;
  137. }
  138. /* 说明部分 */
  139. #description ul {
  140. list-style-type: disc;
  141. padding-left: 20px;
  142. max-width: 800px;
  143. margin: 0 auto;
  144. }
  145. #description ul li {
  146. font-size: 1.2rem;
  147. margin-bottom: 10px;
  148. color: #bbb;
  149. }
  150. /* 鸣谢部分 */
  151. #acknowledgements ul {
  152. list-style-type: none;
  153. padding-left: 0;
  154. max-width: 800px;
  155. margin: 0 auto;
  156. }
  157. #acknowledgements ul li {
  158. font-size: 1.2rem;
  159. margin-bottom: 10px;
  160. color: #bbb;
  161. position: relative;
  162. padding-left: 30px;
  163. }
  164. #acknowledgements ul li::before {
  165. content: "❤";
  166. position: absolute;
  167. left: 0;
  168. color: #f44336;
  169. font-size: 1.5rem;
  170. }
  171. /* 更新日志部分 */
  172. #updates ul {
  173. list-style-type: none;
  174. padding-left: 0;
  175. max-width: 800px;
  176. margin: 0 auto;
  177. }
  178. #updates ul li {
  179. font-size: 1.2rem;
  180. margin-bottom: 10px;
  181. color: #bbb;
  182. }
  183. /* 页脚样式 */
  184. footer {
  185. background-color: #121212;
  186. color: #fff;
  187. text-align: center;
  188. padding: 30px 0;
  189. }
  190. footer p {
  191. font-size: 1rem;
  192. }
  193. /* 响应式设计 */
  194. @media (max-width: 768px) {
  195. .card-container {
  196. flex-direction: column;
  197. align-items: center;
  198. }
  199. .card {
  200. width: 80%;
  201. margin-bottom: 20px;
  202. }
  203. }
  204. </style>
  205. </head>
  206. <body>
  207. <!-- 头部部分 -->
  208. <header>
  209. <div class="container">
  210. <img src="https://live.kakaxi-1.ink/LOGO/kakaxi.jpg" alt="your avatar" class="avatar">
  211. <h1>欢迎来到kakaxi-1的网站</h1>
  212. <p>长期维护的电视直播源仓库,提供中国大部分电视频道的直播源,帮助您在数字时代蓬勃发展。</p>
  213. </div>
  214. </header>
  215. <!-- 关于我们部分 -->
  216. <section id="about">
  217. <h2>关于</h2>
  218. <p>我们致力于分享免费的优质电视直播源,帮助用户方便快捷地收看各种频道。通过我们的 GitHub 仓库,您可以获得最新的电视直播源列表,并学习如何在各种设备上配置和使用这些源。</p>
  219. </section>
  220. <!-- 服务部分 -->
  221. <section id="services">
  222. <h2>服务</h2>
  223. <div class="card-container">
  224. <div class="card">
  225. <h3>主源地址</h3>
  226. <p>M3U格式大部分需要IPV6网络支持,部分需要代理。</p>
  227. <a href="https://github.com/kakaxi-1/IPTV/blob/main/ipv6.m3u" target="_blank"><button>了解更多</button></a>
  228. </div>
  229. <div class="card">
  230. <h3>EPG地址</h3>
  231. <p>通用版,需网络支持。</p>
  232. <a href="https://github.com/kakaxi-1/IPTV/blob/main/.github/workflows/epg.yml" target="_blank"><button>了解更多</button></a>
  233. </div>
  234. <div class="card">
  235. <h3>副源地址</h3>
  236. <p>TXT格式IPV4网络支持,自动更新。</p>
  237. <a href="https://github.com/kakaxi-1/IPTV/blob/main/ipv4.txt" target="_blank"><button>了解更多</button></a>
  238. </div>
  239. <div class="card">
  240. <h3>LOGO地址</h3>
  241. <p>PNG格式TVLOGO地址,不断完善中。</p>
  242. <a href="https://github.com/kakaxi-1/IPTV/tree/main/LOGO" target="_blank"><button>了解更多</button></a>
  243. </div>
  244. </div>
  245. </section>
  246. <!-- 说明、鸣谢、更新日志部分 -->
  247. <section id="description">
  248. <h2>说明</h2>
  249. <ul>
  250. <li>仅供学习,切勿用于商业或非法传播。</li>
  251. <li>部分内容严禁中国大陆用户使用!</li>
  252. <li>可能随时失效,定期关注更新。</li>
  253. <li>所有文件均托管在GitHub,由项目发起人公益维护。</li>
  254. </ul>
  255. </section>
  256. <section id="acknowledgements">
  257. <h2>特别鸣谢</h2>
  258. <ul>
  259. <li>❤ 感谢所有贡献者和支持者。</li>
  260. <li>❤ 感谢GitHub提供的平台支持。</li>
  261. </ul>
  262. </section>
  263. <section id="updates">
  264. <h2>更新日志</h2>
  265. <ul>
  266. <li>2024-09-06 影视轮播改名斗鱼轮播,并详细化。</li>
  267. <li>2024-08-23 部分频道ipv6没有新加入地方组播iptv。</li>
  268. </ul>
  269. </section>
  270. <!-- 页脚 -->
  271. <footer>
  272. <p>&copy; 2024 kakaxi-1. All rights reserved.</p>
  273. </footer>
  274. </body>
  275. </html>