初始化Affiliate站群:4个静态网站(MT4工具、家庭服务器、科技资讯、PT下载),每个站5页+CSS
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>关于我们 - PT下载指南</title>
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<a href="index.html" class="logo"><div class="logo-icon">⬇️</div>PT下载指南</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">首页</a></li>
|
||||
<li><a href="qbittorrent.html">qBittorrent</a></li>
|
||||
<li><a href="pt-sites.html">PT站介绍</a></li>
|
||||
<li><a href="tips.html">做种技巧</a></li>
|
||||
<li><a href="about.html" class="active">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container-narrow">
|
||||
<div class="tutorial-content">
|
||||
<h1>关于PT下载指南</h1>
|
||||
<h2>我们是谁</h2>
|
||||
<p>PT下载指南是一个专注于PT下载入门和qBittorrent配置的技术博客。我们帮助新手快速入门PT世界,打造私人高清资源库。</p>
|
||||
<h2>内容原则</h2>
|
||||
<ul>
|
||||
<li><strong>合规第一</strong> - 只介绍合法的PT下载方式,不提供盗版资源</li>
|
||||
<li><strong>实用导向</strong> - 每篇教程都经过实际配置验证</li>
|
||||
<li><strong>新手友好</strong> - 从零基础开始,循序渐进</li>
|
||||
</ul>
|
||||
<div class="alert alert-warning"><strong>⚠️ 免责声明</strong><p style="margin-top:8px;">本网站教程仅供学习交流,请遵守当地版权法规。我们不提供任何盗版资源下载,也不对用户使用PT站的行为负责。</p></div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer"><div class="footer-inner"><div><h4>⬇️ PT下载指南</h4><p style="font-size:14px;">PT下载入门。</p></div><div><h4>快速导航</h4><ul><li><a href="qbittorrent.html">qBittorrent</a></li><li><a href="pt-sites.html">PT站介绍</a></li><li><a href="tips.html">做种技巧</a></li></ul></div><div><h4>关于</h4><ul><li><a href="about.html">关于我们</a></li></ul></div></div><div class="footer-bottom"><p>© 2026 PT下载指南</p></div></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,411 @@
|
||||
/* ===== 全局样式 ===== */
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
:root {
|
||||
--primary: #2563eb;
|
||||
--primary-dark: #1d4ed8;
|
||||
--secondary: #64748b;
|
||||
--success: #10b981;
|
||||
--warning: #f59e0b;
|
||||
--danger: #ef4444;
|
||||
--bg: #f8fafc;
|
||||
--card-bg: #ffffff;
|
||||
--text: #1e293b;
|
||||
--text-light: #64748b;
|
||||
--border: #e2e8f0;
|
||||
--code-bg: #1e293b;
|
||||
--code-text: #e2e8f0;
|
||||
--shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
--shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
|
||||
--radius: 12px;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
a { color: var(--primary); text-decoration: none; }
|
||||
a:hover { text-decoration: underline; }
|
||||
|
||||
/* ===== 导航栏 ===== */
|
||||
.navbar {
|
||||
background: var(--card-bg);
|
||||
border-bottom: 1px solid var(--border);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
.navbar-inner {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
height: 64px;
|
||||
}
|
||||
.logo {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
color: var(--text);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
.logo-icon {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background: linear-gradient(135deg, var(--primary), #8b5cf6);
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: white;
|
||||
font-size: 18px;
|
||||
}
|
||||
.nav-links { display: flex; gap: 24px; list-style: none; }
|
||||
.nav-links a {
|
||||
color: var(--text-light);
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
.nav-links a:hover, .nav-links a.active {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* ===== Hero区域 ===== */
|
||||
.hero {
|
||||
background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
|
||||
color: white;
|
||||
padding: 60px 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.hero h1 {
|
||||
font-size: 36px;
|
||||
font-weight: 800;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.hero p {
|
||||
font-size: 18px;
|
||||
opacity: 0.9;
|
||||
max-width: 600px;
|
||||
margin: 0 auto 24px;
|
||||
}
|
||||
.hero-badges {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 12px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.hero-badge {
|
||||
background: rgba(255,255,255,0.15);
|
||||
backdrop-filter: blur(10px);
|
||||
padding: 6px 16px;
|
||||
border-radius: 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* ===== 容器 ===== */
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
.container-narrow {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
/* ===== 区块标题 ===== */
|
||||
.section-title {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.section-subtitle {
|
||||
color: var(--text-light);
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
/* ===== 卡片网格 ===== */
|
||||
.card-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
||||
gap: 20px;
|
||||
}
|
||||
.card {
|
||||
background: var(--card-bg);
|
||||
border-radius: var(--radius);
|
||||
padding: 24px;
|
||||
box-shadow: var(--shadow);
|
||||
transition: all 0.3s;
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
.card:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
.card-icon {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 24px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.card-icon.blue { background: #dbeafe; color: #2563eb; }
|
||||
.card-icon.green { background: #d1fae5; color: #059669; }
|
||||
.card-icon.orange { background: #fed7aa; color: #ea580c; }
|
||||
.card-icon.purple { background: #ede9fe; color: #7c3aed; }
|
||||
.card-icon.red { background: #fee2e2; color: #dc2626; }
|
||||
.card h3 {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.card p {
|
||||
color: var(--text-light);
|
||||
font-size: 14px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.card-meta {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
font-size: 12px;
|
||||
color: var(--text-light);
|
||||
}
|
||||
.card-meta span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
/* ===== 教程页面 ===== */
|
||||
.tutorial-header {
|
||||
background: var(--card-bg);
|
||||
border-radius: var(--radius);
|
||||
padding: 32px;
|
||||
margin-bottom: 24px;
|
||||
box-shadow: var(--shadow);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
.tutorial-header h1 {
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.tutorial-meta {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
color: var(--text-light);
|
||||
font-size: 14px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.tutorial-meta span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
.difficulty {
|
||||
padding: 2px 10px;
|
||||
border-radius: 12px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.difficulty.easy { background: #d1fae5; color: #059669; }
|
||||
.difficulty.medium { background: #fef3c7; color: #d97706; }
|
||||
.difficulty.hard { background: #fee2e2; color: #dc2626; }
|
||||
|
||||
.tutorial-content {
|
||||
background: var(--card-bg);
|
||||
border-radius: var(--radius);
|
||||
padding: 32px;
|
||||
box-shadow: var(--shadow);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
.tutorial-content h2 {
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
margin: 32px 0 16px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 2px solid var(--border);
|
||||
}
|
||||
.tutorial-content h2:first-child { margin-top: 0; }
|
||||
.tutorial-content h3 {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
margin: 24px 0 12px;
|
||||
}
|
||||
.tutorial-content p {
|
||||
margin-bottom: 16px;
|
||||
color: #334155;
|
||||
}
|
||||
.tutorial-content ul, .tutorial-content ol {
|
||||
margin: 12px 0 16px 24px;
|
||||
}
|
||||
.tutorial-content li {
|
||||
margin-bottom: 8px;
|
||||
color: #334155;
|
||||
}
|
||||
|
||||
/* 代码块 */
|
||||
.code-block {
|
||||
background: var(--code-bg);
|
||||
color: var(--code-text);
|
||||
padding: 16px 20px;
|
||||
border-radius: 8px;
|
||||
overflow-x: auto;
|
||||
margin: 16px 0;
|
||||
font-family: 'Consolas', 'Monaco', monospace;
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.code-block .comment { color: #64748b; }
|
||||
.code-block .keyword { color: #c084fc; }
|
||||
.code-block .string { color: #86efac; }
|
||||
|
||||
/* 提示框 */
|
||||
.alert {
|
||||
padding: 16px 20px;
|
||||
border-radius: 8px;
|
||||
margin: 16px 0;
|
||||
border-left: 4px solid;
|
||||
}
|
||||
.alert-info {
|
||||
background: #eff6ff;
|
||||
border-color: #3b82f6;
|
||||
color: #1e40af;
|
||||
}
|
||||
.alert-warning {
|
||||
background: #fffbeb;
|
||||
border-color: #f59e0b;
|
||||
color: #92400e;
|
||||
}
|
||||
.alert-danger {
|
||||
background: #fef2f2;
|
||||
border-color: #ef4444;
|
||||
color: #991b1b;
|
||||
}
|
||||
.alert-success {
|
||||
background: #f0fdf4;
|
||||
border-color: #22c55e;
|
||||
color: #166534;
|
||||
}
|
||||
.alert strong { display: block; margin-bottom: 4px; }
|
||||
|
||||
/* 步骤 */
|
||||
.step {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
margin: 24px 0;
|
||||
}
|
||||
.step-number {
|
||||
flex-shrink: 0;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background: var(--primary);
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
}
|
||||
.step-content { flex: 1; }
|
||||
.step-content h4 {
|
||||
font-size: 17px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
/* 表格 */
|
||||
.table-wrap {
|
||||
overflow-x: auto;
|
||||
margin: 16px 0;
|
||||
}
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 14px;
|
||||
}
|
||||
th, td {
|
||||
padding: 12px 16px;
|
||||
text-align: left;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
th {
|
||||
background: #f1f5f9;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
}
|
||||
tr:hover { background: #f8fafc; }
|
||||
|
||||
/* ===== 对比表格 ===== */
|
||||
.compare-table {
|
||||
background: var(--card-bg);
|
||||
border-radius: var(--radius);
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
.compare-table table { margin: 0; }
|
||||
.compare-table .recommended {
|
||||
background: #f0fdf4;
|
||||
}
|
||||
.compare-table .recommended td:first-child {
|
||||
font-weight: 700;
|
||||
color: #166534;
|
||||
}
|
||||
|
||||
/* ===== 底部 ===== */
|
||||
.footer {
|
||||
background: #1e293b;
|
||||
color: #94a3b8;
|
||||
padding: 40px 20px;
|
||||
margin-top: 60px;
|
||||
}
|
||||
.footer-inner {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr 1fr;
|
||||
gap: 40px;
|
||||
}
|
||||
.footer h4 {
|
||||
color: white;
|
||||
font-size: 16px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.footer ul { list-style: none; }
|
||||
.footer li { margin-bottom: 8px; }
|
||||
.footer a { color: #94a3b8; font-size: 14px; }
|
||||
.footer a:hover { color: white; }
|
||||
.footer-bottom {
|
||||
max-width: 1200px;
|
||||
margin: 32px auto 0;
|
||||
padding-top: 24px;
|
||||
border-top: 1px solid #334155;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/* ===== 响应式 ===== */
|
||||
@media (max-width: 768px) {
|
||||
.nav-links { display: none; }
|
||||
.hero h1 { font-size: 28px; }
|
||||
.hero p { font-size: 16px; }
|
||||
.card-grid { grid-template-columns: 1fr; }
|
||||
.footer-inner { grid-template-columns: 1fr; gap: 24px; }
|
||||
.tutorial-content { padding: 20px; }
|
||||
.tutorial-header { padding: 20px; }
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>PT下载指南 - qBittorrent配置/PT站入门/资源下载</title>
|
||||
<meta name="description" content="PT下载入门指南,qBittorrent配置优化,PT站邀请获取,做种技巧,打造私人下载库。">
|
||||
<meta name="keywords" content="PT下载,qBittorrent,PT站,做种,下载机,NAS下载">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<a href="index.html" class="logo"><div class="logo-icon">⬇️</div>PT下载指南</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html" class="active">首页</a></li>
|
||||
<li><a href="qbittorrent.html">qBittorrent</a></li>
|
||||
<li><a href="pt-sites.html">PT站介绍</a></li>
|
||||
<li><a href="tips.html">做种技巧</a></li>
|
||||
<li><a href="about.html">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<section class="hero">
|
||||
<h1>⬇️ PT下载入门指南</h1>
|
||||
<p>qBittorrent配置、PT站入门、做种技巧,打造私人高清资源库</p>
|
||||
<div class="hero-badges">
|
||||
<span class="hero-badge">🔧 qBittorrent</span>
|
||||
<span class="hero-badge">📺 PT站介绍</span>
|
||||
<span class="hero-badge">🌱 做种技巧</span>
|
||||
<span class="hero-badge">💾 NAS下载</span>
|
||||
</div>
|
||||
</section>
|
||||
<div class="container">
|
||||
<h2 class="section-title">🔥 热门教程</h2>
|
||||
<div class="card-grid">
|
||||
<a href="qbittorrent.html" style="text-decoration:none;color:inherit;"><div class="card"><div class="card-icon blue">🔧</div><h3>qBittorrent配置</h3><p>下载安装、参数优化、WebUI设置、RSS自动下载,打造7x24下载机</p><div class="card-meta"><span>⏱️ 20分钟</span><span>📊 入门</span></div></div></a>
|
||||
<a href="pt-sites.html" style="text-decoration:none;color:inherit;"><div class="card"><div class="card-icon green">📺</div><h3>PT站介绍</h3><p>主流PT站分类、特点对比、邀请获取方式,新手入门指南</p><div class="card-meta"><span>⏱️ 10分钟</span><span>📊 入门</span></div></div></a>
|
||||
<a href="tips.html" style="text-decoration:none;color:inherit;"><div class="card"><div class="card-icon orange">🌱</div><h3>做种技巧</h3><p>分享率提升、做种优化、魔力值获取,PT站生存指南</p><div class="card-meta"><span>⏱️ 15分钟</span><span>📊 进阶</span></div></div></a>
|
||||
</div>
|
||||
<h2 class="section-title">💡 什么是PT?</h2>
|
||||
<div class="alert alert-info"><strong>PT(Private Tracker)</strong>是私有BT站点,需要注册才能下载。和公开BT不同,PT站要求保持分享率(下载量/上传量),做种时间越长,账号等级越高。PT站的资源质量高、速度快、无广告,是影音爱好者的首选。</div>
|
||||
<h2 class="section-title">📊 PT vs 公开BT</h2>
|
||||
<div class="table-wrap">
|
||||
<table>
|
||||
<tr><th>对比项</th><th>PT站</th><th>公开BT</th></tr>
|
||||
<tr><td>资源质量</td><td>⭐⭐⭐⭐⭐ 高清、无水印</td><td>⭐⭐⭐ 参差不齐</td></tr>
|
||||
<tr><td>下载速度</td><td>⭐⭐⭐⭐⭐ 做种人多</td><td>⭐⭐ 看运气</td></tr>
|
||||
<tr><td>广告</td><td>无</td><td>多</td></tr>
|
||||
<tr><td>注册难度</td><td>需要邀请</td><td>开放</td></tr>
|
||||
<tr><td>做种要求</td><td>有分享率要求</td><td>无</td></tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer"><div class="footer-inner"><div><h4>⬇️ PT下载指南</h4><p style="font-size:14px;line-height:1.8;">PT下载入门,qBittorrent配置,做种技巧。</p></div><div><h4>快速导航</h4><ul><li><a href="qbittorrent.html">qBittorrent</a></li><li><a href="pt-sites.html">PT站介绍</a></li><li><a href="tips.html">做种技巧</a></li></ul></div><div><h4>关于</h4><ul><li><a href="about.html">关于我们</a></li></ul></div></div><div class="footer-bottom"><p>© 2026 PT下载指南 | 仅供学习交流,请遵守版权法规</p></div></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>PT站介绍 - 主流PT站对比/邀请获取 | PT下载指南</title>
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<a href="index.html" class="logo"><div class="logo-icon">⬇️</div>PT下载指南</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">首页</a></li>
|
||||
<li><a href="qbittorrent.html">qBittorrent</a></li>
|
||||
<li><a href="pt-sites.html" class="active">PT站介绍</a></li>
|
||||
<li><a href="tips.html">做种技巧</a></li>
|
||||
<li><a href="about.html">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container-narrow">
|
||||
<div class="tutorial-header"><h1>📺 PT站介绍</h1><div class="tutorial-meta"><span>⏱️ 10分钟</span><span class="difficulty easy">入门</span><span>📝 持续更新</span></div></div>
|
||||
<div class="tutorial-content">
|
||||
<h2>📊 主流PT站分类</h2>
|
||||
<div class="table-wrap">
|
||||
<table>
|
||||
<tr><th>类型</th><th>代表站点</th><th>特点</th></tr>
|
||||
<tr><td><strong>综合站</strong></td><td>MT、TTG、CHD</td><td>资源全面,电影/剧集/音乐都有</td></tr>
|
||||
<tr><td><strong>电影站</strong></td><td>HDSky、HDHome</td><td>高清电影为主,质量高</td></tr>
|
||||
<tr><td><strong>剧集站</strong></td><td>TVChaos、BeyondHD</td><td>美剧/英剧/日剧</td></tr>
|
||||
<tr><td><strong>音乐站</strong></td><td>RED、Orpheus</td><td>无损音乐,FLAC/DSD</td></tr>
|
||||
<tr><td><strong>动漫站</strong></td><td>U2、DMHY</td><td>动漫资源,字幕组发布</td></tr>
|
||||
</table>
|
||||
</div>
|
||||
<h2>🎫 邀请获取方式</h2>
|
||||
<ol>
|
||||
<li><strong>开放注册</strong> - 部分站点在节日(如元旦、春节)开放注册</li>
|
||||
<li><strong>朋友邀请</strong> - 找已经在PT站的朋友要邀请码</li>
|
||||
<li><strong>面试入站</strong> - 部分大站需要面试,测试PT知识</li>
|
||||
<li><strong>其他站晋升</strong> - 在小站积累数据,申请大站邀请</li>
|
||||
<li><strong>官方渠道</strong> - 关注PT站的Twitter/Telegram,偶尔发邀请</li>
|
||||
</ol>
|
||||
<div class="alert alert-warning" style="margin-top:24px;"><strong>⚠️ 新手建议</strong><ul style="margin-top:8px;"><li>先从容易进的小站开始,积累做种经验</li><li>不要买邀请,容易被骗,而且违反站规</li><li>进站后先看规则,避免被ban</li><li>保持做种,分享率是生存之本</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer"><div class="footer-inner"><div><h4>⬇️ PT下载指南</h4><p style="font-size:14px;">PT下载入门。</p></div><div><h4>快速导航</h4><ul><li><a href="qbittorrent.html">qBittorrent</a></li><li><a href="pt-sites.html">PT站介绍</a></li><li><a href="tips.html">做种技巧</a></li></ul></div><div><h4>关于</h4><ul><li><a href="about.html">关于我们</a></li></ul></div></div><div class="footer-bottom"><p>© 2026 PT下载指南</p></div></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,56 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>qBittorrent配置优化 - 下载机设置 | PT下载指南</title>
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<a href="index.html" class="logo"><div class="logo-icon">⬇️</div>PT下载指南</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">首页</a></li>
|
||||
<li><a href="qbittorrent.html" class="active">qBittorrent</a></li>
|
||||
<li><a href="pt-sites.html">PT站介绍</a></li>
|
||||
<li><a href="tips.html">做种技巧</a></li>
|
||||
<li><a href="about.html">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container-narrow">
|
||||
<div class="tutorial-header"><h1>🔧 qBittorrent配置优化</h1><div class="tutorial-meta"><span>⏱️ 20分钟</span><span class="difficulty easy">入门</span><span>✅ 实测验证</span></div></div>
|
||||
<div class="tutorial-content">
|
||||
<h2>📥 安装方式</h2>
|
||||
<div class="table-wrap">
|
||||
<table>
|
||||
<tr><th>平台</th><th>安装方式</th><th>推荐度</th></tr>
|
||||
<tr><td>Windows</td><td>官网下载安装包</td><td>⭐⭐⭐⭐</td></tr>
|
||||
<tr><td>Linux</td><td>apt install qbittorrent-nox</td><td>⭐⭐⭐⭐⭐</td></tr>
|
||||
<tr><td>Docker</td><td>linuxserver/qbittorrent</td><td>⭐⭐⭐⭐⭐</td></tr>
|
||||
<tr><td>NAS</td><td>飞牛OS/群晖应用商店</td><td>⭐⭐⭐⭐</td></tr>
|
||||
</table>
|
||||
</div>
|
||||
<h2>⚙️ 关键配置</h2>
|
||||
<div class="step"><div class="step-number">1</div><div class="step-content"><h4>连接设置</h4><p>监听端口:随机选择一个高位端口(如45678),在路由器上做端口映射</p></div></div>
|
||||
<div class="step"><div class="step-number">2</div><div class="step-content"><h4>速度限制</h4><p>上传限制:设为带宽的80%,不要跑满,避免影响其他设备</p></div></div>
|
||||
<div class="step"><div class="step-number">3</div><div class="step-content"><h4>WebUI</h4><p>开启WebUI,设置用户名密码,远程管理下载任务</p></div></div>
|
||||
<div class="step"><div class="step-number">4</div><div class="step-content"><h4>RSS自动下载</h4><p>配置RSS订阅,自动下载追更的剧集和资源</p></div></div>
|
||||
<h2>🐳 Docker部署示例</h2>
|
||||
<div class="code-block">docker run -d \
|
||||
--name=qbittorrent \
|
||||
-e PUID=1000 -e PGID=1000 \
|
||||
-e TZ=Asia/Shanghai \
|
||||
-e WEBUI_PORT=8080 \
|
||||
-p 8080:8080 -p 6881:6881 -p 6881:6881/udp \
|
||||
-v /path/to/config:/config \
|
||||
-v /path/to/downloads:/downloads \
|
||||
--restart unless-stopped \
|
||||
lscr.io/linuxserver/qbittorrent:latest</div>
|
||||
<div class="alert alert-success" style="margin-top:24px;"><strong>✅ PT站专用设置</strong><ul style="margin-top:8px;"><li>关闭DHT、PEX、LSD(PT站禁止)</li><li>开启"自动添加tracker"</li><li>做种时间设为无限</li><li>分享率限制设为无限</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer"><div class="footer-inner"><div><h4>⬇️ PT下载指南</h4><p style="font-size:14px;">PT下载入门。</p></div><div><h4>快速导航</h4><ul><li><a href="qbittorrent.html">qBittorrent</a></li><li><a href="pt-sites.html">PT站介绍</a></li><li><a href="tips.html">做种技巧</a></li></ul></div><div><h4>关于</h4><ul><li><a href="about.html">关于我们</a></li></ul></div></div><div class="footer-bottom"><p>© 2026 PT下载指南</p></div></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>做种技巧 - 分享率提升/PT生存指南 | PT下载指南</title>
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<a href="index.html" class="logo"><div class="logo-icon">⬇️</div>PT下载指南</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">首页</a></li>
|
||||
<li><a href="qbittorrent.html">qBittorrent</a></li>
|
||||
<li><a href="pt-sites.html">PT站介绍</a></li>
|
||||
<li><a href="tips.html" class="active">做种技巧</a></li>
|
||||
<li><a href="about.html">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container-narrow">
|
||||
<div class="tutorial-header"><h1>🌱 做种技巧与分享率提升</h1><div class="tutorial-meta"><span>⏱️ 15分钟</span><span class="difficulty medium">进阶</span><span>💡 实用技巧</span></div></div>
|
||||
<div class="tutorial-content">
|
||||
<h2>📈 分享率提升方法</h2>
|
||||
<div class="card-grid">
|
||||
<div class="card"><div class="card-icon blue">⚡</div><h3>下载热门资源</h3><p>刚发布的热门资源下载的人多,做种上传快,容易提升分享率</p></div>
|
||||
<div class="card"><div class="card-icon green">🌙</div><h3>长期做种</h3><p>保持下载机7x24运行,老资源也有人下载,积少成多</p></div>
|
||||
<div class="card"><div class="card-icon orange">🎁</div><h3>免费种</h3><p>关注站点的Freeleech活动,下载不计流量,上传全算</p></div>
|
||||
<div class="card"><div class="card-icon purple">💎</div><h3>上传资源</h3><p>自己发布资源,首发上传量高,还能获得魔力值奖励</p></div>
|
||||
</div>
|
||||
<h2>⚙️ 做种优化设置</h2>
|
||||
<ul>
|
||||
<li><strong>做种数量</strong> - 同时做种数设为100+,不要限制</li>
|
||||
<li><strong>做种时间</strong> - 设为无限,不要自动停止做种</li>
|
||||
<li><strong>上传速度</strong> - 不要限制上传,跑满带宽</li>
|
||||
<li><strong>磁盘缓存</strong> - 调大缓存,减少硬盘IO</li>
|
||||
<li><strong>连接数</strong> - 全局连接数设为500+</li>
|
||||
</ul>
|
||||
<h2>🏆 魔力值获取</h2>
|
||||
<p>大部分PT站有魔力值系统,可以兑换邀请、提升等级:</p>
|
||||
<ul>
|
||||
<li>做种时间越长,魔力值越多</li>
|
||||
<li>做种体积越大,魔力值越多</li>
|
||||
<li>发布资源获得额外魔力值</li>
|
||||
<li>参与站点活动获得魔力值</li>
|
||||
</ul>
|
||||
<div class="alert alert-danger" style="margin-top:24px;"><strong>🔴 禁止行为</strong><ul style="margin-top:8px;"><li>禁止作弊(刷上传、共享账号)</li><li>禁止交易邀请</li><li>禁止泄露站点资源</li><li>违反规则会被ban号,所有做种清零</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer"><div class="footer-inner"><div><h4>⬇️ PT下载指南</h4><p style="font-size:14px;">PT下载入门。</p></div><div><h4>快速导航</h4><ul><li><a href="qbittorrent.html">qBittorrent</a></li><li><a href="pt-sites.html">PT站介绍</a></li><li><a href="tips.html">做种技巧</a></li></ul></div><div><h4>关于</h4><ul><li><a href="about.html">关于我们</a></li></ul></div></div><div class="footer-bottom"><p>© 2026 PT下载指南</p></div></footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user