* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #f7f8fa;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}
.page-header {
    padding: 20px 0;
    text-align: center;
}
.page-header h1 {
    font-size: 26px;
    color: #222;
    font-weight: 700;
}
.summary {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.summary p {
    margin-bottom: 15px;
    color: #444;
}
.related-links {
    color: #666;
}
.related-links a {
    margin: 0 8px;
    color: #0066cc;
    text-decoration: none;
}
.related-links a:hover {
    text-decoration: underline;
}
.article-list {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.article-list h2 {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}
.article-list ul {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    width: 48%;
}
.article-list li {
    padding: 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article-list a {
    color: #333;
    text-decoration: none;
}
.article-list a:hover {
    color: #0066cc;
}
.img-group {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.img-group h2 {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}
.img-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ========== 游戏图片：固定尺寸 + 不变形 + 优化体验 ========== */
.img-list img {
    width: 146px !important;   /* 固定宽度 */
    height: 80px !important;    /* 固定高度 */
    object-fit: cover;          /* 自动裁剪不变形 */
    border-radius: 6px;
    background: #f0f0f0;       /* 图片加载前底色 */
    transition: all 0.2s ease;  /* hover微动效果 */
}
.img-list img:hover {
    transform: scale(1.05);     /* 鼠标悬浮轻微放大 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ========== 玩家靓照：固定尺寸 + 竖版比例 ========== */
.user-photo img {
    width: 177px !important;   /* 固定宽度 */
    height: 220px !important;   /* 固定高度 */
    object-fit: cover;
    border-radius: 6px;
    background: #f0f0f0;
    transition: all 0.2s ease;
}
.user-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* 友情链接样式 */
.friend-link {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.friend-link h2 {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}
.friend-link .link-item {
    display: inline-block;
    margin: 6px 10px;
}
.friend-link .link-item a {
    color: #0066cc;
    text-decoration: none;
}
.friend-link .link-item a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}
@media(max-width:768px){
    .article-list ul{
        width:100%;
    }
    .img-list img{
        width:48% !important;
        height: 90px !important;
    }
    .user-photo img{
        width:48% !important;
        height: 180px !important;
    }
}