@charset "utf-8";
/*===============================================================*/
/*  PixNote - Pixel Art Sketchbook
/*  (c) 2026 Zeta Digital Lab
/*  http://zetalive.com
/*  Licensed under MIT License - see LICENSE file for details
/*===============================================================*/
:root {
  --tran: transparent;
  --light: #FFF;
  --light10: #FFFFFF1A;
  --light20: #FFFFFF33;
  --light30: #FFFFFF4D;
  --light40: #FFFFFF66;
  --light50: #FFFFFF80;
  --light60: #FFFFFF99;
  --light70: #FFFFFFB3;
  --light80: #FFFFFFCC;
  --light90: #FFFFFFE6;
  --dark: #000;
  --dark10: #0000001A;
  --dark14: #00000024;
  --dark20: #00000033;
  --dark30: #0000004D;
  --dark40: #00000066;
  --dark50: #00000080;
  --dark60: #00000099;
  --dark70: #000000B3;
  --dark80: #000000CC;
  --dark90: #000000E6;
  --color_bg: #EEE;
  --color_game: #BBB;
  --color_btn: #B54900;
  --color_red: #CC3300;
  --color_pad: #663366;
  --color_lamp: #2196F3;
  --color_success: #27C24C;
}
@font-face {
  font-family: f04b;
  src: url('../fonts/f04b.ttf');
  font-weight: normal;
  font-style: normal;
}
* {
  -webkit-tap-highlight-color: transparent;
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
  background-color: var(--color_bg);
  color: var(--dark);
  font-family: "Arial", "Microsoft YaHei", "PingFang SC", "SimSun";
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  overflow: hidden;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.none {
  display: none;
}
.hidden {
  visibility: hidden;
}
.btn {
  cursor: pointer;
}
.act {
  pointer-events: none;
}
.font_space {
  word-spacing: -14px;
}
.flip_x {
  transform: scaleX(-1);
}
.ex_bo {
  background-color: var(--light20);
  box-shadow: inset 0 0 0 1px var(--dark20), 0 1px 0 0 var(--light40);
}
aside {
  position: absolute;
}
aside .plug_color-hexInput,
aside .plug_color-hexSpan,
aside .btn_color .btn {
  font-family: f04b;
}
.game {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  background-color: var(--color_game);
  border-radius: 6px;
  box-shadow: -16px 16px 24px 0 var(--dark40), 0 20px 12px -16px var(--dark80), inset -1px 1px 2px 0 var(--light40), inset 1px -1px 2px 0 var(--dark40);
}
.game .canvas {
  margin: 8px;
  padding: 4px;
  background-color: var(--light40);
  border-radius: 3px;
  box-shadow: 0 0 0 1px var(--dark10);
}
.game .canvas .box {
  position: relative;
  border-radius: 3px;
  border: 8px solid var(--dark);
  background-image: url(../img/bg_a.gif);
  overflow: hidden;
}
.game .canvas .box .mask {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 2px 0 2px var(--dark20);
  pointer-events: none;
}
.game .canvas .box #grid {
  position: absolute;
  width: 256px;
  height: 256px;
  background-image: linear-gradient(180deg, var(--dark14) 1px, transparent 0), linear-gradient(90deg, var(--dark14) 1px, transparent 0), linear-gradient(180deg, var(--light20) 1px, transparent 0), linear-gradient(90deg, var(--light20) 1px, transparent 0);
  pointer-events: none;
}
.game .canvas .box #pen {
  position: absolute;
  border: 1px solid var(--dark);
  box-shadow: inset 0 0 0 1px var(--light);
}
.game .canvas .box #pen span {
  display: block;
  position: absolute;
  width: 16px;
  height: 6px;
  border: 1px solid var(--dark60);
  box-shadow: inset 0 0 0 1px var(--light);
  border-radius: 3px;
  transform: rotate(-45deg);
}
.game .canvas .box #pixelCanvas {
  display: block;
  border-radius: 2px;
  background-size: 256px auto !important;
  background-repeat: no-repeat !important;
  box-shadow: inset 0 0 0 1px var(--light40), 0 0 0 2px var(--dark);
}
.game .canvas .box #menu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  padding-bottom: 0;
  background-color: var(--color_bg);
  box-shadow: inset 0 2px 0 0 var(--dark);
}
.game .canvas .box #menu ul {
  flex: 1;
  display: flex;
  --h: 20px;
}
.game .canvas .box #menu ul .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: var(--h);
  margin: 2px 1px;
  padding-bottom: 2px;
  background-color: var(--light);
  clip-path: polygon(0 1px, 1px 1px, 1px 0, calc(100% - 1px) 0, calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 100%, 1px 100%, 1px calc(100% - 1px), 0 calc(100% - 1px));
  box-shadow: inset 0 0 0 1px var(--dark), inset 0 -3px 0 0 var(--dark30);
  overflow: hidden;
}
.game .canvas .box #menu ul .hr {
  display: inline-block;
  padding: 0;
  margin: 0 2px;
  width: 1px;
  height: calc(var(--h) + 4px);
  border: 0;
  background-color: var(--dark);
}
.game .canvas .box #menu ul .pen_size {
  padding-left: 0;
  padding-right: 0;
  background: var(--color_btn);
}
.game .canvas .box #menu ul .pen_size select {
  appearance: none;
  display: inline-block;
  height: 36px;
  padding: 0 16px;
  border: none;
  background: transparent;
  font-family: f04b;
  font-size: 16px;
  line-height: 1;
  color: var(--light);
  zoom: 0.5;
  cursor: pointer;
}
.game .canvas .box #menu ul .pen_size select option {
  background: var(--color_btn);
}
.game .canvas .box #menu ul .pen_size select option[selected] {
  background: var(--color_pad);
}
.game .canvas .box #menu ul .picker {
  flex: 1;
}
.game .canvas .box .warn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark40);
}
.game .canvas .box .warn .warn_mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.game .canvas .box .warn .cont {
  padding: 8px 16px;
  background: var(--light);
  color: var(--color_red);
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
}
.game .canvas .box .warn .cont span {
  display: block;
  color: var(--dark);
  font-size: 14px;
}
.game .canvas .game_info {
  margin-top: 8px;
  margin-left: 2px;
  font-family: f04b;
  font-size: 16px;
  line-height: 1;
  zoom: 0.5;
}
.game .line {
  width: 100%;
  height: 2px;
  border-top: 1px solid var(--dark20);
  border-bottom: 1px solid var(--light30);
}
.game .lamp {
  width: 12px;
  height: 6px;
  margin-left: auto;
  margin-top: 8px;
  background: var(--color_lamp);
  background-image: linear-gradient(90deg, var(--tran), var(--dark30));
  border-radius: 2px 0 0 2px;
  box-shadow: inset -4px 0 2px 0 var(--light40), inset 1px 2px 1px 0 var(--dark20);
}
.game .lamp.act {
  background: var(--color_success);
}
.game .btn_main {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  width: 100%;
}
.game .btn_main .btn_left {
  --rad: 8px;
  --ma: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 136px;
  height: 136px;
  border-radius: 50%;
}
.game .btn_main .btn_left .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 42px;
  height: 42px;
  border: none;
  background-color: var(--color_pad);
  box-shadow: 0 3px 1px 0 var(--dark20), 0 6px 4px 1px var(--dark20), 0 -1px 1px 0 var(--light20);
}
.game .btn_main .btn_left .btn::after {
  content: "";
  position: absolute;
  border-radius: calc(var(--rad) / 2);
}
.game .btn_main .btn_left .btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: calc(100% - 24px);
  height: var(--ma);
  border-top: 1px solid var(--light20);
  border-bottom: 1px solid var(--light20);
  filter: drop-shadow(0px 2px 0 var(--dark));
}
.game .btn_main .btn_left .btn_c {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: var(--color_pad);
}
.game .btn_main .btn_left .btn_c span {
  position: absolute;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark10);
  box-shadow: inset 0 -2px 4px 0px var(--light20), inset 0 2px 4px 0px var(--dark30);
}
.game .btn_main .btn_left #up {
  top: var(--ma);
  border-radius: var(--rad) var(--rad) 0 0;
}
.game .btn_main .btn_left #up::after {
  width: calc(100% - 4px);
  height: calc(100% - 2px);
  margin-top: var(--ma);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0, rgba(255, 255, 255, 0) 70%);
  box-shadow: inset 0px 3px 2px 1px var(--light20);
}
.game .btn_main .btn_left #down {
  bottom: var(--ma);
  border-radius: 0 0 var(--rad) var(--rad);
}
.game .btn_main .btn_left #down::after {
  width: calc(100% - 4px);
  height: calc(100% - 2px);
  margin-bottom: var(--ma);
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0, rgba(255, 255, 255, 0) 70%);
  box-shadow: inset 0px -3px 2px 1px var(--light20);
}
.game .btn_main .btn_left #left {
  left: var(--ma);
  border-radius: var(--rad) 0 0 var(--rad);
}
.game .btn_main .btn_left #left::after {
  width: calc(100% - 2px);
  height: calc(100% - 4px);
  margin-left: var(--ma);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0, rgba(255, 255, 255, 0) 70%);
  box-shadow: inset 3px 0 2px 1px var(--light20);
}
.game .btn_main .btn_left #left::before {
  transform: rotate(270deg);
}
.game .btn_main .btn_left #right {
  right: var(--ma);
  border-radius: 0 var(--rad) var(--rad) 0;
}
.game .btn_main .btn_left #right::after {
  width: calc(100% - 2px);
  height: calc(100% - 4px);
  margin-right: var(--ma);
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0.15) 0, rgba(255, 255, 255, 0) 70%);
  box-shadow: inset -3px 0 2px 1px var(--light20);
}
.game .btn_main .btn_left #right::before {
  transform: rotate(90deg);
}
.game .btn_main .btn_left.up_press #up::after {
  margin-top: 0 !important;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.up_press #up::before {
  margin-top: -4px;
}
.game .btn_main .btn_left.up_press #left,
.game .btn_main .btn_left.up_press #right {
  border-bottom: 2px solid var(--dark60);
}
.game .btn_main .btn_left.up_press #left::after,
.game .btn_main .btn_left.up_press #right::after {
  margin-top: -4px;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.up_press #left::before,
.game .btn_main .btn_left.up_press #right::before {
  margin-top: -4px;
}
.game .btn_main .btn_left.up_press #down {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
  border-bottom: 2px solid var(--dark60);
}
.game .btn_main .btn_left.up_press #down::after {
  margin-bottom: 12px !important;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 70%) !important;
}
.game .btn_main .btn_left.up_press #down::before {
  margin-top: -4px;
}
.game .btn_main .btn_left.up_press .btn_c {
  margin-top: -2px;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.down_press #down::after {
  margin-bottom: 0 !important;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.down_press #down::before {
  margin-top: 4px;
}
.game .btn_main .btn_left.down_press #left,
.game .btn_main .btn_left.down_press #right {
  border-top: 2px solid var(--dark60);
}
.game .btn_main .btn_left.down_press #left::after,
.game .btn_main .btn_left.down_press #right::after {
  margin-top: 4px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.down_press #left::before,
.game .btn_main .btn_left.down_press #right::before {
  margin-top: 4px;
}
.game .btn_main .btn_left.down_press #up {
  border-top: 2px solid var(--dark60);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.down_press #up::after {
  margin-top: 12px !important;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 70%) !important;
}
.game .btn_main .btn_left.down_press #up::before {
  margin-top: 4px;
}
.game .btn_main .btn_left.down_press .btn_c {
  margin-top: 2px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.down_press .btn_vertical {
  box-shadow: inset 0 -1px 0 var(--dark05), inset 0 2px 0 var(--dark05);
}
.game .btn_main .btn_left.left_press #left::after {
  margin-left: 0 !important;
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.left_press #left::before {
  margin-left: -4px;
}
.game .btn_main .btn_left.left_press #up,
.game .btn_main .btn_left.left_press #down {
  border-right: 2px solid var(--dark60);
}
.game .btn_main .btn_left.left_press #up::after,
.game .btn_main .btn_left.left_press #down::after {
  margin-left: -4px;
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.left_press #up::before,
.game .btn_main .btn_left.left_press #down::before {
  margin-left: -4px;
}
.game .btn_main .btn_left.left_press #right {
  border-right: 2px solid var(--dark60);
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.left_press #right::after {
  margin-right: 12px !important;
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 70%) !important;
}
.game .btn_main .btn_left.left_press #right::before {
  margin-right: 4px;
}
.game .btn_main .btn_left.left_press .btn_c {
  margin-left: -2px;
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.left_press .btn_horizontal {
  box-shadow: inset 1px 0 0 var(--dark05), inset -2px 0 0 var(--dark05);
}
.game .btn_main .btn_left.right_press #right::after {
  margin-right: 0 !important;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.right_press #right::before {
  margin-right: -2px;
}
.game .btn_main .btn_left.right_press #up,
.game .btn_main .btn_left.right_press #down {
  border-left: 2px solid var(--dark60);
}
.game .btn_main .btn_left.right_press #up::after,
.game .btn_main .btn_left.right_press #down::after {
  margin-left: 4px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.right_press #up::before,
.game .btn_main .btn_left.right_press #down::before {
  margin-left: 4px;
}
.game .btn_main .btn_left.right_press #left {
  border-left: 2px solid var(--dark60);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.right_press #left::after {
  margin-left: 12px !important;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 70%) !important;
}
.game .btn_main .btn_left.right_press #left::before {
  margin-left: 2px;
}
.game .btn_main .btn_left.right_press .btn_c {
  margin-left: 2px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 70%) !important;
}
.game .btn_main .btn_left.right_press .btn_horizontal {
  box-shadow: inset -1px 0 0 var(--dark05), inset 2px 0 0 var(--dark05);
}
.game .btn_main .btn_right {
  display: flex;
  margin-top: 32px;
  margin-right: -8px;
  padding: 4px;
  border-radius: 32px;
  transform: rotate(-45deg);
}
.game .btn_main .btn_right .btn_g {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 48px;
  height: 48px;
  margin: 4px;
  border-radius: 50%;
  background: var(--color_btn);
  box-shadow: -3px 4px 2px 0 var(--dark10);
  font-family: f04b;
  font-size: 16px;
  line-height: 1;
  color: var(--dark60);
  text-shadow: 0 -1px 0 var(--dark20), 0 1px 0 var(--light20);
}
.game .btn_main .btn_right .btn_g::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  border-radius: 50%;
  background-image: linear-gradient(180deg, var(--light20), var(--dark30));
  box-shadow: 0 -6px 8px -1px var(--light70), 0px 4px 4px 2px var(--dark40), inset 0 3px 2px -3px var(--light60), inset 0 -2px 2px -1px var(--dark20);
}
.game .btn_main .btn_right .btn_g.btn_press {
  filter: brightness(90%);
  box-shadow: inset 0 0 2px 2px var(--dark20);
}
.game .btn_main .btn_right .btn_g.btn_press::after {
  box-shadow: none;
}
.game .btn_main .btn_s {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 20px;
  left: 160px;
  width: 64px;
  transform: rotate(-45deg);
}
.game .btn_main .btn_s .btn_g {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 20px;
  height: 20px;
  background-image: linear-gradient(0deg, var(--light40), var(--dark20));
  border-radius: 50%;
}
.game .btn_main .btn_s .btn_g::before {
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  background-color: var(--color_game);
  background-image: linear-gradient(180deg, var(--light20), var(--dark20));
  box-shadow: 0 0 0 1px var(--dark40);
}
.game .btn_main .btn_s .btn_g::after {
  content: "";
  position: absolute;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  background-image: linear-gradient(180deg, var(--dark20), var(--light40));
}
.game .btn_main .btn_s .btn_g span {
  display: inline-block;
  margin-top: 64px;
  font-family: f04b;
  font-size: 16px;
  line-height: 1;
  color: var(--color_pad);
  zoom: 0.5;
}
.game .btn_main .btn_s .btn_g.btn_press::before {
  filter: brightness(80%);
}
.game .btn_main .btn_s .btn_g.btn_press::after {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
.game .btn_set {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 40px;
  margin: 16px;
}
.game .btn_set .btn_g {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 36px;
  height: 16px;
  margin: 0 8px;
  background-image: linear-gradient(0deg, var(--light40), var(--dark20));
  border-radius: 8px;
}
.game .btn_set .btn_g::before {
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 6px;
  background-color: var(--color_game);
  background-image: linear-gradient(180deg, var(--dark20), var(--dark60));
  box-shadow: inset 0 0 0 1px var(--dark40);
}
.game .btn_set .btn_g::after {
  content: "";
  position: absolute;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 var(--light20), inset 0 -2px 0 var(--dark30);
}
.game .btn_set .btn_g span {
  display: inline-block;
  margin: 0;
  margin-top: 64px;
  font-family: f04b;
  font-size: 16px;
  line-height: 1;
  color: var(--color_pad);
  zoom: 0.5;
}
.game .btn_set .btn_g.btn_press::before {
  filter: brightness(95%);
}
.game .btn_set .btn_g.btn_press::after {
  box-shadow: none;
}
.game .fig {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 16px;
  width: 100%;
  height: 40px;
  pointer-events: none;
}
.game .fig span {
  display: inline-block;
  width: 4px;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  box-shadow: inset 2px 2px 0 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 0 rgba(255, 255, 255, 0.6);
}
.game .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 16px;
  bottom: 24px;
  width: 32px;
  height: 24px;
  border-radius: 4px;
  border-top: 1px solid var(--dark20);
  border-left: 1px solid var(--dark20);
  border-right: 1px solid var(--light40);
  border-bottom: 1px solid var(--light40);
  overflow: hidden;
}
.game .copyright span {
  width: 48px;
  font-family: f04b;
  font-size: 16px;
  line-height: 1;
  color: var(--light60);
  text-shadow: 1px 1px 0 var(--dark60);
  zoom: 0.5;
}
.game .speaker {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  position: absolute;
  right: 16px;
  bottom: 24px;
  width: 24px;
}
.game .speaker li {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--dark60);
  box-shadow: 1px 1px 0 0 var(--light30), inset 1px 1px 0 0 var(--dark);
}
.save_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background: var(--color_game);
}
.save_img .tape {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 224px;
  height: 224px;
  overflow: hidden;
}
.save_img .tape span {
  display: inline-block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../img/frame.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.save_img .tape img {
  width: 128px;
  background-size: 128px auto !important;
  background-repeat: no-repeat !important;
  box-shadow: inset 0 0 0 1px var(--dark20);
}
.save_img .btn_g {
  display: flex;
  width: 296px;
  margin-top: 40px;
}
.save_img .btn_g .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin: 8px;
  padding-bottom: 2px;
  background-color: var(--light);
  font-family: f04b;
  font-size: 16px;
  line-height: 1;
  color: var(--dark);
  clip-path: polygon(0 2px, 2px 2px, 2px 0, calc(100% - 2px) 0, calc(100% - 2px) 2px, 100% 2px, 100% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 100%, 2px 100%, 2px calc(100% - 2px), 0 calc(100% - 2px));
  box-shadow: inset 0 0 0 2px var(--dark), inset 0 -6px 0 0 var(--dark30);
}
.save_img .btn_g #dwonimg {
  background-color: var(--color_success);
  color: var(--light);
}
.win_help {
  display: none;
  position: absolute;
  z-index: 99;
  width: 296px;
  height: 558px;
  border-radius: 8px;
  background: var(--dark20);
}
.win_help div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 296px;
  height: 296px;
  font-family: f04b;
  font-size: 32px;
  line-height: 1;
  text-shadow: 2px 2px 0 var(--light), -2px -2px 0 var(--light), 2px -2px 0 var(--light), -2px 2px 0 var(--light);
}
.win_help span {
  position: absolute;
  display: inline-block;
  padding: 4px 8px;
  background: var(--light);
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px var(--dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
  filter: drop-shadow(0 2px 0 var(--dark));
}
.win_help span::before {
  content: "";
  position: absolute;
  border: 8px solid;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: -14px;
  border-color: var(--light) transparent transparent transparent;
}
.win_help span.help_down::before {
  top: -14px;
  bottom: auto;
  border-color: transparent transparent var(--light) transparent;
  filter: drop-shadow(0 -1px 0 var(--dark));
}
.win_help span.help_left::before {
  left: auto;
  right: -14px;
  bottom: auto;
  top: 50%;
  transform: translate(0%, -50%);
  border-color: transparent transparent transparent var(--light);
}
.win_help span.help_right::before {
  left: -14px;
  bottom: auto;
  top: 50%;
  transform: translate(0%, -50%);
  border-color: transparent var(--light) transparent transparent;
}
.copyright {
  position: absolute;
  bottom: 16px;
  color: var(--color_game);
  font-size: 12px;
}
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: var(--color_bg);
  color: var(--color_pad);
  font-weight: 900;
}
.loading span {
  font-weight: 300;
}
.animsition-loading-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: var(--w);
  height: 12px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 100;
}
.animsition-loading-strip::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 16px;
  background: var(--color_btn);
  animation: loading_l 1.2s linear infinite;
}
.animsition-loading-strip:before {
  content: '';
  position: absolute;
  height: 12px;
  background: var(--color_pad);
  animation: loading_r 1.2s linear infinite;
}
@keyframes loading_l {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
@keyframes loading_r {
  0% {
    left: 95%;
    right: 0;
  }
  25% {
    left: 25%;
    right: 25%;
  }
  50% {
    left: 0;
    right: 95%;
  }
  75% {
    left: 25%;
    right: 25%;
  }
  100% {
    left: 95%;
    right: 0;
  }
}
