/* 全局样式 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a; /* 深色背景 */
    color: #ffffff; /* 白色文字 */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: #00ffcc; /* 科技感的青色 */
    text-decoration: none;
}

a:hover {
    color: #ff6600; /* 悬停时的橙色 */
}

/* 头部样式 */
header {
    background: linear-gradient(to right, #333333, #1a1a1a); /* 渐变背景 */
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #00ffcc; /* 科技感边框 */
}

header h1 {
    font-size: 36px;
    margin: 0;
    color: #00ffcc; /* 科技感标题 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* 文字阴影 */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    font-size: 18px;
    font-weight: bold;
}

/* 主要内容区域 */
section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: #262626; /* 深灰色背景 */
    border-radius: 10px; /* 圆角 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* 阴影 */
}

section h2 {
    font-size: 28px;
    color: #00ffcc; /* 科技感标题 */
    border-bottom: 2px solid #00ffcc; /* 标题下划线 */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

section p {
    font-size: 16px;
    line-height: 1.8;
}

section ul {
    padding-left: 20px;
}

section ul li {
    margin-bottom: 10px;
}

/* 图片展示区域 */
.gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img {
    width: 32%;
    border-radius: 10px;
    border: 2px solid #00ffcc; /* 科技感边框 */
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05); /* 悬停时放大 */
}

/* 视频演示区域 */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 比例 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #00ffcc; /* 科技感边框 */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 下载按钮样式 */
.download-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00ffcc; /* 科技感青色 */
    color: #1a1a1a; /* 深色文字 */
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase; /* 大写字母 */
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #ff6600; /* 悬停时的橙色 */
    color: #ffffff;
}

/* 常见问题样式 */
dl dt {
    font-weight: bold;
    color: #00ffcc; /* 科技感青色 */
    margin-top: 15px;
}

dl dd {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* 页脚样式 */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    border-top: 2px solid #00ffcc; /* 科技感边框 */
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

footer a {
    color: #00ffcc;
}

footer a:hover {
    color: #ff6600;
}