* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}
body {
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}
a:hover {
    color: #ff6c00;
}
.container {
    width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
@media (max-width: 1002px) {
    .container { width: 100%; }
}

/* 顶部公告 */
.top-notice {
    background: #fff8e1;
    border: 1px solid #ffd700;
    padding: 8px 15px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
    border-radius: 4px;
}
.top-notice img {
    vertical-align: middle;
    margin-right: 5px;
}

/* 导航 */
.nav {
    background: #ff6c00;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}
.nav a {
    display: inline-block;
    padding: 12px 20px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}
.nav a:hover {
    background: #e56000;
}

/* 标题 */
.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #ff6c00;
    padding: 10px;
    border-left: 4px solid #ff6c00;
    background: #f9f9f9;
    margin: 20px 0 15px;
}

/* 开服表样式 */
.server-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-bottom: 20px;
    font-size: 14px;
}
.server-table th {
    background: #ff6c00;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}
.server-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px dashed #eee;
}
.server-table tr:hover td {
    background: #fff9f5;
}
.server-table .name {
    text-align: left;
    font-weight: 500;
}
.server-table a {
    color: #333;
}
.server-table a:hover {
    color: #ff6c00;
}

/* 标签列表样式 */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background: #fafafa;
    border-radius: 6px;
    margin-bottom: 20px;
}
.tag-list a {
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
}
.tag-list a:hover {
    background: #ff6c00;
    color: #fff;
    border-color: #ff6c00;
}

/* 攻略列表 */
.article-list {
    padding: 0 15px;
}
.article-list a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
}
.article-list time {
    color: #999;
    float: right;
}

/* 底部 */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #666;
    background: #fff;
    margin-top: 20px;
    border-top: 1px solid #eee;
}
.footer img {
    margin-bottom: 10px;
}
.footer a {
    margin: 0 5px;
}
.footer b {
    color: #ff0000;
}