body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* 让 body 充满整个视口高度 */
    overflow: hidden;
    background-color: black; /* 设置整个页面背景色为黑色 */
}

/* 使按钮始终悬浮在左上角 */
.floating-button {
    position: fixed; /* 使用fixed定位使按钮悬浮在视口上 */
    top: 20px;       /* 距离视口顶部10px */
    left: 20px;      /* 距离视口左边10px */
    width: 30px;     /* 按钮的宽度 */
    height: 30px;    /* 按钮的高度 */
    background-color: #007bff; /* 按钮背景色 */
    color: #fff;         /* 按钮文字颜色 */
    border: none;       /* 去掉按钮边框 */
    border-radius: 50%; /* 圆形按钮 */
    display: flex;      /* 使用flex布局以中心对齐SVG图标 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    cursor: pointer;    /* 鼠标悬停时显示为手指形状 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 添加阴影效果 */
}

/* 使按钮始终悬浮在左上角 */
.keybord_button {
    position: fixed; /* 使用fixed定位使按钮悬浮在视口上 */
    top: 20px;       /* 距离视口顶部10px */
    left: 100%;
    margin-left: -100px;
    width: 80px;     /* 按钮的宽度 */
    height: 30px;    /* 按钮的高度 */
    border: none;       /* 去掉按钮边框 */
    border-radius: 50%; /* 圆形按钮 */
    display: flex;      /* 使用flex布局以中心对齐SVG图标 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    cursor: pointer;    /* 鼠标悬停时显示为手指形状 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 添加阴影效果 */
    font-size: 12px;
    display: none;
}

.game_read_info {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

.game_read_info .content {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 100px;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 5px;
}

.game_read_info .content .title {
    width: 100%;
    height: 25px;
    line-height: 25px;
}

.game_read_info .content .remark {
    line-height: 25px;
    font-size: 14px;
    margin-top: 20px;
}

.floating-button svg {
    width: 24px; /* SVG图标的宽度 */
    height: 24px; /* SVG图标的高度 */
}

.floating-button:hover {
    background-color: #0056b3; /* 悬停时改变背景色 */
}

.square {
    width: 100vh; /* 设置正方形的宽度等于视口高度 */
    height: 100vh; /* 设置正方形的高度等于视口高度，保证正方形 */
    background-color: black; /* 设置整个页面背景色为黑色 */
}

.foot_buttons{
    width: 100%;
    height: 250px;
    top: 100vh;
    left: 0;
    margin-top: -250px;
    overflow: hidden;
    position: absolute;
    padding: 10px 10px;
}

.container {
    position: relative;
    width: 120px; /* 大圆形的宽度 */
    height: 120px; /* 大圆形的高度 */
}

.big-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.small-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: black;
    border-radius: 50%;
    transform: translate(-50%, -50%); /* 确保圆形居中 */
}

.ctrl_btn {
    background-color: #000;
    color: #fff;
}

.ctrl_btn_A {
    background-color: #cdc0ad;
    color: #fff;
	border-radius: 100px;
	width: 85px;
	height: 85px;
	font-weight: 700
}

.ctrl_btn_B {
    background-color: #cdc0ad;
    color: #fff;
	border-radius: 50px;
	width: 65px;
	height: 65px;
	font-weight: 700
}

* {
    box-sizing: border-box;
}

.GamePad_ab_buttons__WXKZA {
	display: flex;
	align-items: center;
	padding-top: 5px;
	width: 130px
}
