/* css/css.css - 热血传奇复古风格样式表 */
* {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #f0f0f0;
    color: #333;
    background-image: url('/images/banner.jpg');
    background-attachment: fixed;
    background-size: cover;
    min-width: 1200px;
}

/* 顶部导航 */
.top-nav-container {
    width: 100%;
    padding: 15px 0;
}

.top-nav {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.top-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.top-nav li {
    position: relative;
}

.top-nav a {
    color: #FAFAD2; /* 黄白色导航文字 */
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 8px 15px;
    transition: all 0.3s;
    position: relative;
    border-radius: 4px;
}

.top-nav a:hover {
    color: #8b0000; /* 悬停暗红色 */
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* 主内容容器 */
.container {
    width: 1000px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* 页眉区域 */
.header {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
    border-bottom: 1px solid #ddd;
}

.header h1 {
    color: #8b0000;
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.header h1 span {
    display: block;
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

/* 主要内容区 */
.main-content {
    display: flex;
    padding: 10px;
}

.left-content {
    flex: 1;
    padding-right: 20px;
}

.right-nav {
    width: 247px;
}

/* 横幅图片 */
.banner {
    margin: 2mm 0;
    text-align: center;
}

.banner img {
    width: 978px;
    height: 98px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

/* 内容区块 */
.section {
    margin-bottom: 25px;
    border: 1px solid #ddd;
    background: linear-gradient(to bottom, #f9f9f9, #f0f0f0);
    padding: 15px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.section h2 {
    color: #8b0000;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.section p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.section .highlight {
    color: #8b0000;
    font-weight: bold;
}

/* 右侧导航按钮 */
.right-nav dl {
    margin-bottom: 5px;
}

.right-nav .bt1 {
    display: block;
    background: linear-gradient(to right, #8b0000, #5a0000);
    color: #ffd700;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    border: 1px solid #5a0000;
    transition: all 0.3s;
    border-radius: 3px;
}

.right-nav .bt1:hover {
    background: linear-gradient(to right, #a00000, #700000);
    color: #fff;
    text-shadow: 0 0 10px #ffd700;
    cursor: pointer;
}

.right-nav a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.right-nav img {
    width: 247px;
    height: 430px;
    border: 1px solid #ddd;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 下载按钮 */
.download-btn {
    text-align: center;
    margin: 20px 0;
}

.download-btn img {
    border: none;
}

/* 页脚 */
.footer-container {
    width: 100%;
    margin-top: 20px;
    padding: 25px 0;
}

.footer {
    width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 特殊文本 */
.red {
    color: #d9534f;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
}

/* 装备展示图片 */
.equip-img {
    width: 704px;
    margin: 10px 0;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}