body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: rgb(236, 236, 236);
}

.els {
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    background-color: rgb(242, 242, 242);
}

.gameCanvasClass {
    padding: 12px;
    border-radius: 15px;
}

.panel {
    left: 350px;
}

.control {
    margin: 10px 0;
}

input[type="range"] {
    width: 150px;
}

.xnt {
    box-shadow: 6px 6px 6px #a9aaac, -6px -6px 6px #ffffff;
}

.xnt-select {
    box-shadow: 6px 6px 6px #ffffff, -6px -6px 6px #a9aaac;
}

.xnt-btn {
    box-shadow: 3px 3px 3px #a9aaac, -3px -3px 3px #ffffff
}

.xnt-btn:hover {
    box-shadow: 3px 3px 3px #ffffff, -3px -3px 3px #A6D4DA;
    color: white;
    background: linear-gradient(to right, #B5E4E9, #00A3B0);
}

.xnt-blue {
    box-shadow: 3px 3px 3px #ffffff, -3px -3px 3px #A6D4DA;
    color: white;
    background: linear-gradient(to right, #B5E4E9, #00A3B0);
}

.xnt-btn:active {
    box-shadow: 3px 3px 3px #a9aaac, -3px -3px 3px #ffffff;
}

.gameCanvasBorder {
    padding: 12px;
    border-radius: 15px;
    background-color: rgb(230, 230, 230);
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.custom-hr {
    height: 2px;
    /* 控制横线的粗细 */
    background-color: rgb(120, 120, 120);
    /* 控制横线的颜色 */
    border: none;
    /* 去除默认的边框 */
    margin-bottom: 0px;
    margin-top: 18px;
}

.black-color {
    color: rgba(0, 0, 0, 0.8);
}

.pClass {
    margin-bottom: 0px;
    margin-top: 16px;
    font-size: 19px;
    font-family: Tahoma;
}

.custom-icon {
    font-size: 24px;
    /* 图标大小 */
    color: gray;
    /* 图标颜色 */
}

.font-size {
    font-size: 16px;
    font-family: Tahoma;
}

.remarks {
    display: flex;
    /* 使用 flexbox */
    flex-direction: column;
    /* 垂直排列子元素 */
    align-items: center;
    /* 水平居中子元素 */
    margin-top: 100px;
}

@media screen and (max-width: 1366px) {
    .els {
        margin-top: 8px;
        transform: scale(0.74);
        /* 缩放容器 */
        transform-origin: top;
        /* 设置缩放原点 */
    }
}

.hidden-number {
	color: transparent !important;
	background: transparent !important;
	transition: color 0.3s ease !important;
	cursor: default;
	cursor: pointer !important;  /* 添加手型光标 */

}

.hidden-number:hover {
	/* 根据你的背景颜色调整这里的文字颜色 */
	/* 如果背景是深色，可以用浅色文字 */
	color: #f0f0f0 !important;
}