#preLoader2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* 默认隐藏 */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7); /* 添加半透明背景 */
}

#gameContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  display: none;
  z-index: 1001;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding-bottom: 55px;
}
@media (min-width: 2000px) {
  #gameContainer {
    width: 1200px;
    height: 800px;
  }
  .gameContainer{
    width: 450px !important;
    height: 750px !important;
    max-height: 90vh !important;
  }
}
@media (min-width: 1400px) {
  #gameContainer {
    width: 800px;
    height: 550px;
  }
  .gameContainer{
    width: 550px !important;
    height: 700px !important;
    max-height: 90vh !important;
  }
}
@media (max-width: 768px) {
  #gameContainer {
    padding-bottom: 75px;
  }
  .gameContainer{
    padding-bottom: 45px !important;
    max-height: 90vh !important;
  }
  #gameName{
    font-size: 20px;
  }
}
#gameFrame {
  width: 100%;
  height: 100%;
  border: none;
}
.gameDivHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
}
#gameName {
  color: #333;
}
