@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  background: #000;
  min-height: 100vh;
}

/* 页面容器 - 居中布局 */
.page-container {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}
.page-container .bg-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 右上角在线客服 */
.customer-service {
  position: fixed;
  top: 80px;
  right: 5px;
  z-index: 1000;
  text-decoration: none;
}
.customer-service img {
  width: 100px;
  height: 100px;
}

/* 底部下载区域 */
.download-section {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  z-index: 1000;
}
.download-section img {
  width: 100%;
  height: auto;
  display: block;
}/*# sourceMappingURL=style.css.map */