﻿       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "微软雅黑", sans-serif;
        }

        /* 页面背景 */
        body {
            background-color: #111;
            background-image: url(bj.png);
            background-size: cover;
            background-attachment: fixed;
            color: #fff;
        }

        /* 容器 */
        .container {
            width: 1200px;
            margin: 0 auto;
            background-color: rgba(0,0,0,0.85);
            padding: 20px;
            min-height: 100vh;
        }

        /* 头部 */
        .header {
            text-align: center;
            padding: 20px 0;
            border-bottom: 2px solid #c40000;
            margin-bottom: 20px;
        }

        .header h1 {
            color: #ffcc00;
            font-size: 42px;
            text-shadow: 0 0 10px #ff0000;
        }

        /* 导航 */
        .nav {
            background-color: #c40000;
            padding: 15px;
            text-align: center;
            margin-bottom: 20px;
        }

        .nav a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            margin: 0 20px;
            font-weight: bold;
        }

        .nav a:hover {
            color: #ffcc00;
        }

        /* 轮播广告 */
        .banner {
            height: 10px;
            background: url(https://img.icons8.com/color/1000/000000/fire-flame.png) center no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: #ffcc00;
            font-weight: bold;
            text-shadow: 0 0 15px #f00;
            margin-bottom: 30px;
        }

        /* 标题样式 */
        .title {
            font-size: 24px;
            color: #ffcc00;
            border-left: 5px solid #c40000;
            padding-left: 10px;
            margin-bottom: 15px;
        }

        /* 开服列表 */
        .server-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .server-item {
            width: 270px;
            background-color: #222;
            border: 1px solid #444;
            padding: 15px;
            text-align: center;
        }

        .server-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            margin-bottom: 10px;
        }

        .server-item h3 {
            color: #ffcc00;
            margin-bottom: 8px;
        }

        .server-item p {
            color: #ccc;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .server-item .btn {
            display: inline-block;
            background-color: #c40000;
            color: #fff;
            padding: 6px 15px;
            text-decoration: none;
            border-radius: 3px;
        }

        .server-item .btn:hover {
            background-color: #ff4400;
        }

        /* 资讯区域 */
        .news {
            background-color: #1a1a1a;
            padding: 20px;
            border: 1px solid #333;
        }

        .news-list {
            list-style: none;
        }

        .news-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #333;
        }

        .news-list li:last-child {
            border-bottom: none;
        }

        .news-list a {
            color: #eee;
            text-decoration: none;
            font-size: 16px;
        }

        .news-list a:hover {
            color: #ffcc00;
        }

        .news-list span {
            color: #888;
            float: right;
            font-size: 14px;
        }

        /* 底部版权 */
        .footer {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 14px;
            border-top: 1px solid #333;
            margin-top: 30px;
        }