* {
  margin: 0;
  padding: 0;
  font-size: 16px;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: overlay;
  position: relative;
  font-size: 14px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

a {
  text-decoration: none;
}

.ios-dialog {
  visibility: hidden;
  opacity: 0;
  width: 345px;
  height: 273px;
  background: #ffffff;
  border-radius: 20px;
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.ios-dialog .dialog-logo {
  height: 88px;
  width: 88px;
  margin-top: 50px;
}

.ios-dialog span {
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #999999;
  line-height: 22px;
  text-align: center;
  margin-top: 12px;
}

.ios-dialog .confirm-btn {
  width: 118px;
  height: 35px;
  background: #f3f3f3;
  border-radius: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  cursor: pointer;
}

body.show-dialog {
  overflow: hidden;
}

body.show-dialog::after {
  content: '';
  display: block;
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.show-dialog .ios-dialog {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 960px) {
  /* 换成2倍图 */
  html,
  body {
    overflow: auto;
  }
}

.container {
  position: relative;
  width: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 0.8rem;
  padding: 0 0.48rem;
}

.header .header-logo .text-logo {
  width: auto;
  height: 0.4rem;
}

.nav ul {
  display: flex;
  list-style: none;
}
.nav ul li {
  list-style-type: none;
  color: #000000;
}
.nav ul li a {
  color: inherit;
  font-size: 0.16rem;
}
.nav ul li + li {
  margin-left: 0.7rem;
}

.content-container {
  width: 100%;
  min-height: 8.79rem;
  background-color: #fff;
  background-size: 100% auto;
  background-image: url(../assets/bg.png);
  background-repeat: no-repeat;
  overflow: hidden;
}

.content {
  display: flex;
  margin-top: 1.5rem;
  margin-left: 3.76rem;
}
.content .left {
  margin-top: 1.07rem;
}
.download-btns .download-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 1.6rem;
  height: 0.6rem;
  padding: 0 0.35rem;
  border-radius: 0.12rem;
  font-size: 0.16rem;
  margin-top: 0.6rem;
  cursor: pointer;
}

.download-btns .download-btn + .download-btn {
  margin-left: 0.24rem;
}
.download-btns .download-btn.android {
  background-color: #000;
  color: #fff;
}
.download-btns .download-btn.ios {
  border: 2px solid #000000;
  background-color: #f5f5f5;
  color: #000;
}
.download-btns .download-btn:hover {
  opacity: 0.8;
}
.content .left .slogan {
  width: 6.11rem;
  height: 1.34rem;
}
.content .right .phone {
  width: 5.37rem;
  height: 5.38rem;
}

.footer {
  width: 100%;
  text-align: center;
  padding: 0.12rem 0.24rem;
}
.footer .line-1 {
  color: #666;
  font-size: 0.14rem;
}
.footer .line-2 {
  color: #999;
  font-size: 0.12rem;
  margin-top: 0.1rem;
}
.footer .line-2 a {
  color: inherit;
}
a:hover {
  color: #fa4ac1 !important;
}
