/* 全螢幕樣式 */
#layer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 半透明背景顏色 */
  z-index: 150;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 訊息樣式背景 */
.layer-containerCh{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../img/page.png");
  border-radius: 10px;
  width: 400px;
  height: 255px;
  z-index: 999;
}

.layer-containerEn{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../img/pageEn.png");
  border-radius: 10px;
  width: 400px;
  height: 255px;
}

/* 搶先試用 */
.CheckItOut {
  position: absolute; /* 加入絕對定位 */
  top: 10px;
  right: 10px;
  display: inline-block;
  padding: 0.8em;
  /* background-color: #000000; */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  width: 150px;
  height: 125px;
  cursor: pointer;
}


/* 關閉鈕 */
.close-button {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}