* {
    margin: 0;
    padding: 0;
}

.game_width_layout {
    width: 800px;
    display: flex;
    justify-content: center;
}

#showLevel {
    color: #FFBE00;
    height: 50px;
    font-size: 40px;
    margin-top: 10px;
}

.btn_list {
    margin-top: 30px;
}

.btn_list_reset_game {
    background-color: #3B88FF1A;
    padding: 20px;
    color: #3B88FFFF;
    border-radius: 4px;
    margin-right: 20px;
}

.btn_list_level_again {
    margin-left: 20px;
    background-color: #5CC00C1A;
    padding: 20px;
    color: #5CC00CFF;
    border-radius: 4px;
}

.layout_help {
    display: flex;
    margin-top: 40px;
    text-align: start;
    width: 350px;
    background-color: #EF53501A;
    padding: 10px;
    color: #EF5350FF;
    border-radius: 4px;
}


footer{
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center; /* 水平居中 */
    -webkit-justify-content: center;
}
footer p{
    color: white;
}

.wedox-centered-ad {
    width: 800px;
    margin-top: 40px;
    display: flex;
    justify-content: center; /* 水平居中 */
    height: 50px;          /* 如果希望按钮在页面中央，可以设置父容器高度为视口高度 */
    text-align: center;     /* 备用，确保文本也居中 */
}

.wedox-ad-button {
    display: inline-block;
    padding: 0px 20px;     /* 内边距，使按钮看起来更饱满 */
    color: #fff;           /* 文本颜色 */
    background-color: #007BFF; /* 按钮背景颜色 */
    text-decoration: none; /* 去掉链接下划线 */
    border-radius: 5px;    /* 圆角边框 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 阴影效果 */
    transition: background-color 0.3s ease; /* 背景颜色过渡效果 */
    width: 200px;          /* 固定宽度 */
    height: auto;          /* 高度自适应 */
    text-align: center;    /* 按钮内文本居中 */
    line-height: 50px;      /* 行高，使文本垂直居中 */
}

.wedox-ad-button:hover {
    background-color: #0056b3; /* 鼠标悬停时改变背景颜色 */
}