/* 基本样式 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'Tilt Warp';   /*字体名称*/
  src: url('./assets/css/Tilt Warp Regular_zitidi.com.ttf');       /*字体源文件*/
}
body {
  font-family: Arial, sans-serif;
}
#pc_container {
  display: none;
}
.bg_container_pc {
  min-width: 1250px;
  height: 920px;
  background-image: url('./assets/bg@2x.webp');
  background-size: cover; /* 图片覆盖整个页面 */
  background-repeat: no-repeat; /* 禁止重复 */
  background-attachment: fixed; /* 固定背景图 */
}
/* 头部样式 */
.pc_header {
  height: 60px;
  width: 230px;
  background-image: url('./assets/PClogo.png');
  background-size: cover; /* 图片覆盖整个页面 */
  background-repeat: no-repeat; /* 禁止重复 */
 }
/* 主体内容样式 */
.container_pc {
  width: 1250px;
  margin: 0 auto;
  padding-top: 100px;
  display: flex;
  justify-content: space-around;
}
.left_pc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.headline_pc {
  font-family: Tilt Warp;
  font-weight: 400;
  font-size: 70px;
  color: #FFFFFF;
  line-height: 80px;
  margin-top: 12%;
  letter-spacing: 4px;
}
.h1_name {
  color:#BF94FF;
  font-family: Tilt Warp;
  font-size: 70px;
}
.btn_pc {
  display: flex;
  margin-top: 100px;
}
.app_pc {
  height: 60px;
  width: 190px;
  background-image: url('./assets/appbtn@2x.png');
  background-size: cover; /* 图片覆盖整个页面 */
  background-repeat: no-repeat; /* 禁止重复 */
  margin-right: 50px;
}
.google_pc {
  height: 60px;
  width: 190px;
  background-image: url('./assets/googlebtn@2x.png');
  background-size: cover; /* 图片覆盖整个页面 */
  background-repeat: no-repeat; /* 禁止重复 */
}
.right_pc {
  height: 712px;
  width: 350px;
  background-image: url('./assets/show@2x.png');
  background-size: contain; /* 图片覆盖整个页面 */
  background-repeat: no-repeat; /* 禁止重复 */
}
#pc_footer {
  width: 100%;
  min-width: 1250px;
  height: 180px;
  background: #000000;
  color: #fff;
  /* padding-left: 29.4%;
  padding-right: 28%; */
  padding-top: 30px 0;
  display: flex;
  justify-content: center;
   flex-direction: column;
}
.footer_container_pc {
  width: 1250px;
  display: flex;
  justify-content: space-around;
  padding-top: 21px;
  margin: 0 auto;
}
.about_us_pc, .contact_us_pc, .download_pc {
  font-family: Alibaba PuHuiTi, Alibaba PuHuiTi;
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
}
.footer_title_pc {
  margin-bottom: 14px;
  font-family: Alibaba PuHuiTi, Alibaba PuHuiTi;
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
}
.footer_tip_pc {
  font-family: PingFang TC, PingFang TC;
  font-weight: 400;
  font-size: 13px;
  color: #999999;
}
.end_tip_pc {
  text-align: center;
  margin-top: 9px;
  /* padding: 9px 0; */
  align-self: center;
  width: 100%;
}
.user_agree_pc {
  margin-bottom: 10px;
}
.user_agree_pc, .privacy_policy_pc {
  cursor: pointer;
 }
.app_store_pc {
  width: 140px;
  height: 30px;
  background-image: url('./assets/appstore@2x.png');
  background-size: cover; /* 图片覆盖整个页面 */
  background-repeat: no-repeat; /* 禁止重复 */
  margin-bottom: 10px;
}
.google_pay_pc {
  width: 140px;
  height: 30px;
  background-image: url('./assets/googleplay.png');
  background-size: cover; /* 图片覆盖整个页面 */
  background-repeat: no-repeat; /* 禁止重复 */
}
/* 响应式布局 */
@media (max-width: 1320px) {
  .headline_pc {
    font-size : 65px;
    line-height: 80px;
  }
  .h1_name {
    font-size : 65px;
  }
  .app_pc {
    height: 58px;
    width: 185px;
    background-image: url(./assets/appbtn@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 45px;
  }
  .google_pc{  
    height: 58px;
    width: 185px;
    background-image: url(./assets/googlebtn@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
}