* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Microsoft YaHei', Arial, sans-serif;
line-height: 1.8;
color: #333;
background: #f5f5f5;
padding: 20px;
}
.container {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
header {
text-align: center;
margin-bottom: 30px;
border-bottom: 1px solid #eee;
padding-bottom: 20px;
}
h1 {
color: #1a5fb4;
margin-bottom: 10px;
font-size: 28px;
}
.intro {
color: #666;
font-size: 16px;
margin-bottom: 30px;
text-align: center;
}
.method {
margin-bottom: 30px;
padding: 20px;
border-left: 4px solid #1a5fb4;
background: #f9f9f9;
}
/* 新增扩展阅读样式 */
.extended-reading {
margin: 40px 0;
padding: 25px;
background: #f0f7ff;
border-radius: 8px;
border-top: 3px solid #1a5fb4;
}
.extended-reading h2 {
color: #1a5fb4;
margin-bottom: 20px;
font-size: 20px;
border-bottom: 1px dashed #ccc;
padding-bottom: 10px;
}
.extended-reading ul {
padding-left: 25px;
}
.extended-reading li {
margin-bottom: 12px;
}
.extended-reading a {
color: #1a5fb4;
text-decoration: none;
}
.extended-reading a:hover {
text-decoration: underline;
color: #0f488a;
}
h2 {
color: #1a5fb4;
margin-bottom: 15px;
font-size: 22px;
}
p {
margin-bottom: 15px;
text-align: justify;
}
.steps {
margin: 20px 0;
padding-left: 20px;
}
.steps li {
margin-bottom: 10px;
}
code {
background: #eee;
padding: 2px 6px;
border-radius: 3px;
font-family: Consolas, monospace;
color: #d70077;
}
.tip {
background: #e7f4fe;
padding: 15px;
border-radius: 5px;
margin: 20px 0;
border-left: 4px solid #1a5fb4;
}
footer {
margin-top: 50px;
text-align: center;
padding-top: 20px;
border-top: 1px solid #eee;
color: #666;
font-size: 14px;
}
.links {
margin: 15px 0;
}
.links a {
color: #1a5fb4;
text-decoration: none;
margin: 0 15px;
}
.links a:hover {
text-decoration: underline;
}
.copyright {
margin-top: 20px;
color: #999;
}
