/* 重置样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 根字体设置 */
html {
  font-size: 26.667vw;
  margin: 0 auto;
  -ms-touch-action: none;
  height: 100%;
}
body {
  font-size: 0.12rem;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
em,
i,
b {
  font-style: normal;
  font-weight: normal;
}
a {
  text-decoration: none;
}
.pr {
  position: relative;
}
.pa {
  position: absolute;
}
/* 容器样式 */
.container {
  background: url(../images/bg.jpg) no-repeat center top;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-size: 100% 100%;
  position: relative;
  padding: 0.2rem 0;
}
.logo {
  margin: 0 0 0 0.2rem;
}
.logo img {
  width: 1.69rem;
  height: 0.62rem;
  background-size: 100% auto;
}
.btn_cont {
  width: 3.1rem;
  margin: 0.3rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.btn_cont .btn {
  width: 100%;
  background: #fcfaff;
  padding: 0.12rem 0;
  border-radius: 0.5rem;
  color: #333333;
  font-size: 0.19rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn_cont .btn:before {
  content: "";
  width: 0.27rem;
  height: 0.27rem;
  margin-right: 0.1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn_cont .Google_Play:before {
  background-image: url(../images/google-play-icon.png);
}
.btn_cont .App_Store:before {
  background-image: url(../images/apple-icon.png);
}
.btn_cont .Apk_Download:before {
  background-image: url(../images/apk_icon.png);
}
.btn_cont .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.footer {
  display: flex;
  justify-content: center;
  color: #fff;
}
.footer a {
  color: #fff;
  text-decoration: underline;
  margin-left: 0.05rem;
}
/* Contact us样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.67rem;
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.15rem 0.2rem 0.2rem 0.2rem;
}

.modal-header {
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.14rem;
  height: 0.14rem;
  background: url(../images/close.png) no-repeat center;
  background-size: 100% auto;
  cursor: pointer;
}

.modal-header .title {
  color: #000000;
  font-size: 0.17rem;
}
.modal-content {
  padding: 0.3rem 0.2rem 0.1rem 0.2rem;
}
.modal-content p {
  font-size: 0.14rem;
  color: #d048e0;
  text-decoration: underline;
  position: relative;
  margin-left: 0.15rem;
  margin-bottom: 0.3rem;
  text-indent: 0.35rem;
}

.modal-content p.email::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  background: url(../images/email_icon.png) no-repeat center;
  background-size: contain;
}

.modal-content p.phone::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  background: url(../images/phone_icon.png) no-repeat center;
  background-size: contain;
}
