/* 1. 统一 box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}
*{
    margin: 0;
    padding: 0;
}

/* 2. 设置默认字体和背景 */
body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    color: #333;
}
body,html{
    width: 100%;
    height: 100%;
}

/* 3. 设置链接颜色，去除下划线 */
a {
    text-decoration: none;
    color: inherit; /* 让链接继承父元素的颜色 */
}

a:hover {
    text-decoration: underline; /* 鼠标悬停时显示下划线 */
}

/* 4. 使图片适应其容器 */
img {
    max-width: 100%; /* 让图片最大宽度为容器宽度 */
    height: auto;
}
img {
    max-width: 100%;
    -webkit-user-drag: none; /* 禁止拖动 */
    user-drag: none;
    -webkit-user-select: none; /* 禁止选择 */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* 现代浏览器 */
}
/* 5. 统一按钮样式 */
button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

/* 6. 统一表单元素样式 */
input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    border: 1px solid #ccc;
    padding: 8px;
    margin: 5px 0;
}

/* 7. 统一表格样式 */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.page-box{
    width: 100%;
    height: 100%;
    max-width: 550px;
    margin: 0 auto;
}
.page-img{
    width: 100%;
    margin: 0 auto;
}
.page-img img{
    width: 100%;
    display: block;
    margin: 0 auto;
}

.bottom-box{
    width: 100%;
    max-width: 550px;
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 99;
}
.bottom-box img{
    width: 100%;
    display: block;
    margin: 0 auto;
}