/* ===== 全局 ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Microsoft YaHei", Arial, sans-serif; background: #f5f5f5; color: #333; }
a { text-decoration: none; color: #333; }
ul { list-style: none; }

/* ===== 开服列表头部 ===== */
.kfcsstitle {
display: flex;
background: #444;
color: #fff;
font-weight: bold;
text-align: center;
}
.kfcsstitle li { padding: 10px 5px; }

/* ===== 开服列表 ===== */
.kfgameopen {
display: flex;
background: #ffff00;
transition: background .3s;
text-align: center;
}
.kfgameopen:hover { background: #fff; }
.kfgameopen li { padding: 8px 5px; word-break: break-all; }

/* 宽度比例 */
.mc-kf { width: 17%; }   /* 名称 */
.ip-kf { width: 14%; }   /* IP */
.sj-kf { width: 12%; }   /* 时间 */
.xl-kf { width: 13%; }   /* 线路 */
.js-kf { width: 34%; }   /* 介绍 */
.qq-kf { width: 12%; }   /* QQ */
.xx-kf { width: 10%; }   /* 主页 */

/* ===== 攻略区块 ===== */
.gonglue { margin-top: 0px; }
.gonglue table { width: 100%; border-collapse: collapse; }
.gonglue th {
background: #f44336;
color: #fff;
padding: 10px;
}
.gonglue td {
vertical-align: top;
padding: 10px;
background: #fff;
border: 1px solid #eee;
}
.gonglue ul li {
padding: 6px 0;
border-bottom: 1px dashed #ddd;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

/* ===== 图文板块 ===== */
.tuwen-list {
    margin: 12px 10px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}

.section-title {
    font-size: 16px;
    color: #e60000;
    border-left: 4px solid #e60000;
    padding-left: 8px;
    margin-bottom: 10px;
    font-weight: bold;
}

.tuwen-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tuwen-list li {
    width: 32%;
    margin-bottom: 10px;
}

.tuwen-list .img-box {
    width: 100%;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
    background: #eee;
}

.tuwen-list .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tuwen-list .tw-title {
    font-size: 12px;
    line-height: 18px;
    color: #333;
    margin-top: 5px;
    height: 36px;
    overflow: hidden;
}
/* ===== 友情链接 ===== */
.friend-links {
    margin: 12px 10px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.link-list a {
    display: inline-block;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
    color: #333;
}

.link-list a:hover {
    background: #e60000;
    color: #fff;
}