/* style/version.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

/* 头部样式 */
header {
    background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d);
    color: white;
    padding: 20px 0;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 导航菜单 */
nav {
    background-color: #222;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #b21f1f;
    color: #ffd700;
}

/* 版本介绍内容板块 */
.version-section {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.version-box {
    background-color: white;
    border-radius: 10px; /* 小圆角 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.version-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(178, 31, 31, 0.2);
    border-color: #ffffff;
}

.section-title {
    font-size: 1.8em;
    color: #b21f1f;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.version-box:hover .section-title {
    border-bottom-color: #b21f1f;
}

.section-content p {
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px dashed #f0f0f0;
    transition: all 0.2s ease;
}

.section-content p:hover {
    background-color: #f9f9f9;
    padding-left: 8px;
}

.section-content p:last-child {
    border-bottom: none;
}

/* 页脚 */
footer {
    background-color: #222;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

footer p {
    margin: 5px 0;
}