/* 百度蜘蛛池专用样式 - 清爽SEO版 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}
body {
    background: #f5f5f5;
    color: #333;
    line-height: 1.7;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
}
.header {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 15px;
    gap: 15px;
}
.nav-logo {
    font-size: 18px;
    font-weight: bold;
    color: #c00;
    text-decoration: none;
}
.nav-item {
    color: #333;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
}
.nav-item:hover {
    background: #f2f2f2;
}
.article-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 12px;
}
.article-title {
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}
.article-info {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}
.article-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    word-break: break-all;
}
.article-content p {
    margin-bottom: 15px;
}
.page-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}
.page-btn {
    padding: 6px 12px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.page-btn.active {
    background: #c00;
    color: #fff;
    border-color: #c00;
}
.page-btn:hover {
    background: #eee;
}
.inner-link-box,
.multi-link-box,
.friend-link-box {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 12px;
}
.link-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #c00;
}
.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.link-item {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    padding: 3px 0;
}
.link-item:hover {
    color: #c00;
}
.footer {
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #999;
    background: #fff;
    border-radius: 8px;
}