/* 基本页面设置 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../images/background1.jpg'); /* 使用你选择的背景图片 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* 确保文字在背景上可见 */
    line-height: 1.6;
}

/* 页头样式 */
header {
    background-color: rgba(51, 51, 51, 0.8); /* 深灰色背景 */
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 主内容区域样式 */
.content {
    margin: 30px auto;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景提高对比度 */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 标题样式 */
h1, h2 {
    color: #FFFFFF; /* 白色 */
}

/* 段落样式 */
p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* 有序列表样式 */
ol {
    margin-left: 20px;
    list-style-type: decimal;
}

/* 返回按钮样式 */
.btn-back {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333333; /* 深灰色背景 */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

/* 返回按钮悬停效果 */
.btn-back:hover {
    background-color: #555555; /* 稍微浅一点的灰色 */
}

/* 边距和响应式设计 */
@media (max-width: 768px) {
    .content {
        padding: 15px;
    }
    header {
        padding: 15px;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.5em;
    }
    p {
        font-size: 1em;
    }
}
