/* 基础CSS样式 */

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
body {
    font-family: "微软雅黑", Arial, sans-serif;
    line-height: 1.6;
    background-image: url('../images/index_background.png');
    background-size: cover; /* 使图片覆盖整个背景 */
    background-position: center; /* 图片居中显示 */
    background-repeat: no-repeat; /* 不重复平铺 */
    background-attachment: fixed; /* 图片固定，不随页面滚动 */
    color: #333;
    min-height: 100vh;
}

/* 容器样式 */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 选中文字的高亮颜色 */
::selection {
    background-color: #4caf50;
    color: white;
}

::-moz-selection {
    background-color: #4caf50;
    color: white;
}

::-webkit-selection {
    background-color: #4caf50;
    color: white;
}