/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Microsoft YaHei", "SimHei", Arial, sans-serif;
  background-color: #161a1d;
  background-image: url('/2026051801/pc/default/images/top-bg.jpg');
  background-repeat: no-repeat;
  background-position: top center;
}

.wrapper {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  position: relative;
  margin: 0 auto;
  background: url('/2026051801/pc/default/images/bottom-bg.jpg') no-repeat bottom center;
}

/* 页面容器 */
.container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* 适龄提示 */
.age-warning {
  position: absolute;
  top: 474px;
  left: 940px;
  width: 64px;
  height: 82px;
  background: url('/2026051801/pc/default/images/age.png') no-repeat 0 0;
  z-index: 9;
}



/* Header */
.header {
  height: 450px;
}

.logo {
  position: absolute;
  left: 40px;
  top: 4px;
  margin: 0;
  padding: 0;
  width: 208px;
  height: 120px;
}

.logo a {
  display: block;
  width: 208px;
  height: 120px;
}

.logo img {
  display: block;
  border: none;
  width: 100%;
  height: 100%;
}

.official-btn {
  position: absolute;
  right: 40px;
  top: 20px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 6px 16px;
  border: 1px solid #dad4b3;
  color: #dad4b3;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 6px;
}

/* 按钮区域 */
.btn-section {
  width: 940px;
  height: 324px;
  margin-bottom: 20px;
  overflow: hidden;
  background-image: url('/2026051801/pc/default/images/juanzhou.png');
  background-size: cover;
  background-position: center;
}

.video-btn {
  width: 480px;
  height: 210px;
  float: left;
  margin: 55px 0 0 72px;
  cursor: pointer;
  text-indent: -9999px;
  background: url('/2026051801/pc/default/images/video-btn.png') no-repeat 0 0;
}

.download-btns {
  width: 280px;
  margin: 64px 76px 0 0;
  float: right;
}

.download-btn {
  width: 100%;
  height: 81px;
  margin-bottom: 20px;
  cursor: pointer;
  text-indent: -9999px;
}

.android {
  background: url('/2026051801/pc/default/images/download-btn.png') no-repeat 0 0;
}

.android:hover {
  background-position: -280px 0;
}

.ios {
  background: url('/2026051801/pc/default/images/download-btn.png') no-repeat 0 -81px;
}

.ios:hover {
  background-position: -280px -81px;
}

.download-btn:last-child {
  margin-bottom: 0;
}

.title {
  width: 100%;
  text-align: center;
  margin-bottom: 34px;
}

.title img {
  width: 584px;
  height: 56px;
  display: block;
  margin: 0 auto;
}

.title p {
  font-size: 16px;
  color: #8b8a84;
  margin-top: 18px;
}

/* 3D轮播图 */
.carousel-section {
  margin-bottom: 50px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 440px;
  perspective: 1200px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 410px;
  transform-style: preserve-3d;
}

.carousel-item {
  position: absolute;
  width: 720px;
  height: 410px;
  left: 50%;
  top: 50%;
  margin-left: -360px;
  margin-top: -205px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 1;
  border: 1px solid #74694f;
}

/* 中间大图 */
.carousel-item.active {
  opacity: 1;
  transform: translateZ(0) scale(1);
  z-index: 10;
  width: 720px;
  height: 410px;
  margin-left: -360px;
  margin-top: -205px;
}

/* 左侧小图 */
.carousel-item.prev {
  opacity: 0.6;
  transform: translateX(-280px) scale(0.7);
  z-index: 5;
  width: 500px;
  height: 320px;
  margin-left: -200px;
  margin-top: -160px;
}

/* 右侧小图 */
.carousel-item.next {
  opacity: 0.6;
  transform: translateX(280px) scale(0.7);
  z-index: 5;
  width: 500px;
  height: 320px;
  margin-left: -300px;
  margin-top: -160px;
}

/* 轮播箭头 */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* 轮播指示器 */
.carousel-indicators {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.carousel-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #6f6a45;
  margin: 0 8px;
  cursor: pointer;
}

.carousel-indicator.active {
  background: #6f6a45;
}

/* TAB切换 */
.tab-section {
  margin-bottom: 20px;
}

.tab-container {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background-color: rgba(69, 82, 89, 0.3);
  border: 1px solid #47505b;
}

.tab-nav {
  width: 140px;
  float: right;
}

.tab-item {
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 18px;
  color: #b2bac4;
  cursor: pointer;
  border-bottom: 1px solid #525f5b;
  border-left: 1px solid #525f5b;
}

.tab-item.active {
  color: #fff;
  font-weight: bold;
  background: url('/2026051801/pc/default/images/job-active-btn.png') no-repeat 0 0;
}

.tab-content {
  width: 850px;
  height: 340px;
  float: left;
  display: none;
}

.tab-content.active {
  display: block;
}

.job-content {
  padding: 40px 0 0 40px;
  overflow: hidden;
}

.job-content h3 {
  display: block;
  width: 240px;
  height: 130px;
  float: left;
  margin-right: 36px;
  margin-bottom: 30px;
}

.job-content h3 img {
  width: 100%;
  height: 100%;
}

.job-desc {
  width: 500px;
  margin-top: 20px;
  float: left;
}

.job-desc strong {
  font-size: 18px;
  font-weight: bold;
  color: #dadcd5;
  margin-bottom: 10px;
  display: block;
}

.job-desc p {
  font-size: 14px;
  color: #dadcd5;
  line-height: 1.6;
}

.job-desc p.yellow {
  color: #b5a06a;
  margin-top: 6px;
}



.job-skill {
  clear: both;
}

.job-skill li {
  display: inline-block;
  float: left;
  width: 180px;
  height: 120px;
  margin-right: 16px;
  border: 1px solid #3f4448;
}

.job-skill li img {
  width: 100%;
  height: 100%;
}

/* 图片展示区域 */
.gallery-section {
  margin-top: 50px;
  margin-bottom: 20px;
}

.gallery-container {
  position: relative;
  overflow: hidden;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  width: 22px;
  height: 31px;
  cursor: pointer;
  z-index: 10;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
}

.gallery-prev {
  left: 0;
  background-image: url('/2026051801/pc/default/images/jt-prev.png');
}

.gallery-next {
  right: 0;
  background-image: url('/2026051801/pc/default/images/jt-next.png');
}

.gallery-wrapper {
  width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-inner {
  width: 300%;
  overflow: hidden;
  transition: margin-left 0.5s;
}

.gallery-item {
  width: 270px;
  height: 150px;
  float: left;
  margin-right: 20px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #465761;
}

.gallery-item img {
  width: 100%;
  height: 100%;
}

/* 图片预览弹窗 */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.image-modal.show {
  display: block;
}

.image-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}

.image-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -258px;
  margin-left: 480px;
  width: 40px;
  height: 40px;
  background: url('/2026051801/pc/default/images/close.png') no-repeat center center;
  background-size: contain;
  cursor: pointer;
  text-indent: -9999px;
}

/* 视频弹窗 */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.video-modal.show {
  display: block;
}

.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 960px;
  height: 450px;
  background-color: #000;
}

.video-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -250px;
  margin-left: 460px;
  width: 40px;
  height: 40px;
  background: url('/2026051801/pc/default/images/close.png') no-repeat center center;
  background-size: contain;
  cursor: pointer;
  text-indent: -9999px;
}

/* 底部按钮区域 */
.bottom-btns {
  width: 1000px;
  margin: 60px auto;
  text-align: center;
  font-size: 0;
}

.bottom-btn {
  width: 280px;
  height: 81px;
  margin: 0 50px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  cursor: pointer;
  text-indent: -9999px;
}

/* Footer - 版权信息 */
.footer {
  width: 100%;
  padding: 24px 0;
  font-size: 14px;
  background-color: #040505;
  color: #46494b;
  text-align: center;
}

.footer .copyright{
    width: 1000px;
    margin: 0 auto;
}

.footer .copyright p {
  margin-bottom: 10px;
}

.footer .copyright p:last-child {
  margin-bottom: 0;
}

.footer .copyright a {
  color: #88949b;
  text-decoration: none;
  margin: 0 4px;
}

.footer .copyright a:hover {
  color: #fff;
}


/* 下载弹窗 */
.download-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.download-modal.show {
  display: block;
}

.download-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 440px;
  background: url('/2026051801/pc/default/images/pop-bg.jpg') no-repeat 0 0;
  padding: 30px;
  box-sizing: border-box;
}

.download-close {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -260px;
  margin-left: 310px;
  width: 40px;
  height: 40px;
  background: url('/2026051801/pc/default/images/close.png') no-repeat center center;
  background-size: contain;
  cursor: pointer;
  text-indent: -9999px;
}

/* 安卓下载弹窗内容 */
.android-modal .download-content h3 {
  font-size: 16px;
  color: #09111f;
  margin-bottom: 15px;
  font-weight: bold;
}

.android-modal .download-content h3 span {
  color: #d16516;
}



.android-modal .qr-code {
  text-align: center;
  margin: 30px auto;
}

.android-modal .qr-code img {
  width: 200px;
  height: 200px;
}

.android-modal .download-link {
  color: #c41e3a;
  font-size: 14px;
  word-break: break-all;
}

/* iOS下载弹窗内容 */
.ios-modal .ios-note {
  color: #c41e3a;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}

.ios-modal .ios-steps {
  display: flex;
  justify-content: space-between;
}

.ios-modal .step {
  width: 45%;
}

.ios-modal .step h4 {
  font-size: 14px;
  color: #09111f;
  margin-bottom: 10px;
  font-weight: normal;
  line-height: 1.6;
}

.ios-modal .step h4 span {
  font-weight: bold;
}



.ios-modal .step img {
  width: 150px;
  height: 150px;
}

.ios-modal .ios-contact {
  font-size: 14px;
  color: #616e80;
  margin-top: 50px;
  text-align: left;
}

.ios-modal .ios-contact span {
  font-weight: bold;
}

/* 适龄提示弹窗 */
.age-modal .age-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 440px;
  background: url('/2026051801/pc/default/images/pop-bg.jpg') no-repeat 0 0;
  padding: 30px 40px;
  box-sizing: border-box;
  overflow-y: auto;
}

.age-modal .age-content h3 {
  text-align: center;
  font-size: 20px;
  color: #09111f;
  font-weight: bold;
  margin-bottom: 20px;
}

.age-modal .age-section {
  margin-bottom: 15px;
}

.age-modal .age-section p {
  font-size: 13px;
  color: #09111f;
  line-height: 1.6;
  margin-bottom: 8px;
}

.age-modal .age-section p:last-child {
  margin-bottom: 0;
}

/* 浮动窗口 */
.float-window {
  position: fixed;
  right: 4px;
  bottom: 10px;
  width: 138px;
  height: 350px;
  background: url('/2026051801/pc/default/images/float_code.jpg') no-repeat center center;
  background-size: cover;
  z-index: 999;
}

.float-close {
  position: absolute;
  top: -30px;
  right: -15px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: url('/2026051801/pc/default/images/close.png') no-repeat center center;
  background-size: contain;
  cursor: pointer;
  text-indent: -9999px;
}

.float-content img {
  width: 100%;
  height: 100%;
}

/* IE8兼容处理 */
@media screen\9 {

  /* IE8不支持transform和perspective，降级为普通轮播 */
  .carousel-container {
    perspective: none;
  }

  .carousel-wrapper {
    transform-style: flat;
  }

  .carousel-item {
    display: none;
    width: 100% !important;
    height: 400px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    position: relative;
    opacity: 1;
    transform: none;
  }

  .carousel-item.active {
    display: block;
  }

  .carousel-item.prev,
  .carousel-item.next {
    display: none;
  }

  .carousel-indicators {
    margin-left: -50%;
  }

  .gallery-inner {
    transition: none;
  }

  .image-content,
  .video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -400px;
    margin-top: -225px;
  }
}