body {
  margin: 0;
  padding: 0;
  background-color: #121c27;
}

#app {
  width: 100%;
  height: 100%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
}

.dialog {
  display: none; /* 默认隐藏对话框 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色 */
  pointer-events: auto; /* 允许捕获点击事件 */
  z-index: 9999; /* 确保覆盖在所有其他内容上面 */
}

.dialog-content {
  width: 30vw;
  height: 30vw;
  position: fixed; /* 定位在屏幕中心 */
  left: 50%; /* 水平居中 */
  top: 50%; /* 垂直居中 */
  transform: translate(-50%, -50%); /* 移动到中心位置 */
  padding: 1.25rem; /* 内边距 */
  border-radius: 0.625rem; /* 圆角 */
  box-shadow: 0.3333vw 0.3333vw 0.4vw #4c8b96;
  background: linear-gradient(90deg, #2b4c58 0%, #4c8b96 100%);
}

.p-login {
  width: 100%;
  font-size: 8vw;
  color: #141e2a;
  font-weight: 700;
  list-style: none;
  margin: 0;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "myfont";
}

.dialog-content .dialog-btn-ios {
  width: 20%;
  height: 20%;
  background: transparent url("./assets/img/apple.png") no-repeat center/
    contain;
  text-align: center;
  position: absolute;
  top: 65%;
  left: 20%;
  transform: translate(-50%, -50%);
}

.dialog-content .dialog-btn-facebook {
  width: 20%;
  height: 20%;
  background: transparent url("./assets/img/facebook.png") no-repeat center/
    contain;
  text-align: center;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dialog-content .dialog-btn-guest {
  width: 20%;
  height: 20%;
  background: transparent url("./assets/img/guest.png") no-repeat center/
    contain;
  text-align: center;
  position: absolute;
  top: 65%;
  left: 80%;
  transform: translate(-50%, -50%);
}

.dialog-content {
  text-align: center;
  font-size: 4vw;
  font-family: "myfont";
}

.account-info {
  width: 100%;
  color: #141e2a;
  text-align: center;
  font-size: 5vw;
  line-height: 4.5vw;
  margin: 0;
  font-family: "myfont";
  margin-top: 1vw;
}

.dialog-content .dialog-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25vw;
  height: 5vw;
  line-height: 1;
  background: linear-gradient(90deg, #fcca16 0%, #ffe618 100%);
  border-radius: 2.6667vw;
  color: #2d4f5b;
  font-weight: bold;
  font-size: 3vw;
  font-family: "myfont";
}

#btn-logout {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0);
}

#btn-delete {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 0);
}

#btn-cancel {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, 0);
}

#dialog3-btn-confirm {
  width: 82%;
  height: 15%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 2.6667vw;
}

#dialog3-btn-cancel {
  width: 82%;
  height: 15%;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 2.6667vw;
  box-shadow: 0px 4px 8px 0px rgba(0, 133, 255, 0.18);
}
