@charset "UTF-8";
*:focus {
  outline: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-optimize-contrast;
  image-rendering: -ms-optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

[v-cloak] {
  display: none;
}

.bgColor {
  background: #fff url(../images/bg.jpg) no-repeat top center;
  background-size: cover;
  overflow-x: hidden;
}

.main1200 {
  width: 1200px;
  margin: 0 auto;
  height: auto;
}

.head-content {
  position: relative;
  padding: 0 0 120px 0;
  box-sizing: border-box;
}

.lang-switch {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 100;
  display: inline-flex;
  border: 3px solid #FFFFFF;
  overflow: hidden;
  width: 100px;
  height: 32px;
  padding: 2px 0;
  box-sizing: border-box;
}

.lang-switch-fixed {
  display: inline-flex;
  border: 1px solid #58504E;
  border-radius: 20px;
  overflow: hidden;
  background-color: #dddddd;
  margin-left: auto;
}

.lang-btn {
  padding: 0 4px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #ffffff;
  font-weight: normal;
  background: transparent;
  line-height: 21px;
  margin: 0 3px;
}

.lang-btn.active {
  background-color: #FFFFFF;
  color: #3E3D59;
  width: 29px;
}

.content-infos {
  position: relative;
}

.content-main {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.unbound-video-area {
  position: relative;
  cursor: pointer;
}

.unbound-video-area .playBtn {
  width: 87px;
  height: 87px;
  background: url(../images/play.png) no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  transition: all 0.5s;
}

.unbound-video-area .playBtn:hover {
  background: url(../images/play2.png) no-repeat;
}

.movied-class {
  width: 710px;
  height: 400px;
}

.movied-class video {
  width: 720px;
  height: 397px;
  border: 5px solid #E2CE90;
}

.content-steam-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 30px 0 0;
}

.content-steam-info .steam-sale-tit {
  font-weight: bold;
  font-size: 43px;
  color: #FFFFFF;
  margin-bottom: 15px;
  height: 60px;
  line-height: 60px;
}

.content-footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 150px 0 0;
}

.content-footer-info .phone-text {
  width: 100%;
  display: flex;
  align-items: center;
  /* 横线与文字垂直居中对齐 */
  gap: 16px;
  /* 横线与文字之间的间距（可调整） */
}

.content-footer-info .phone-text .line {
  flex: 1;
  /* 关键：占满父容器剩余宽度 */
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
}

.content-footer-info .phone-text p {
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  white-space: nowrap;
}

.content-footer-info .dev-logos {
  display: flex;
  flex-direction: row;
  margin: 20px 0 0;
}

.content-footer-info .dev-logos img {
  margin-left: 20px;
}

.content-footer-info .dev-logos img.dev-logo1 {
  height: 32px;
}

.content-footer-info .dev-logos img.dev-logo2 {
  height: 29px;
}

.content-footer-info .dev-logos img.dev-logo3 {
  height: 34px;
}

.footer-content {
  width: 100%;
  background: #0F0E0D;
}

.footer {
  padding: 25px 0;
  box-sizing: border-box;
}

.footer .footerLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer .footerLogo a img.softstar {
  display: block;
  width: 116px;
  opacity: 0.5;
  transition: all 0.5s;
}

.footer .footerLogo a img.devLogo {
  display: block;
  width: 111px;
  opacity: 0.5;
  transition: all 0.5s;
}

.footer .footerLogo a img.fkLogo {
  display: block;
  width: 124px;
  opacity: 0.5;
  transition: all 0.5s;
}

.footer .footerLogo a img.wxLogo {
  display: block;
  width: 89px;
  opacity: 0.5;
  transition: all 0.5s;
}

.footer .footerLogo a {
  display: block;
  transition: all 0.5s;
}

.footer .footerLogo a:hover img {
  opacity: 1;
}

.footer .footerLogo img {
  margin: 0 25px;
}

.footer .explain p {
  color: #393938;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
}

.footer .explain p .ICP {
  color: #FFFFFF;
}

/*  ============= 弹窗样式 =============  */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1500px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.active .modal-content {
  transform: scale(1);
}

.close-modal {
  z-index: 99993;
  position: absolute;
  top: 50px;
  right: -120px;
  width: 49px;
  height: 49px;
  cursor: pointer;
  background: transparent url("../images/colse.png") no-repeat 50% 50%;
  opacity: 0.8;
  filter: alpha(opacity=100);
  border-radius: 0 0 0 4px;
  transition: all 0.5s;
}

.close-modal:hover {
  opacity: 1;
}

#modal-video {
  width: 100%;
  height: auto;
  border: none;
  border: 10px solid #E2CE90;
}

/*  ============= 弹窗样式 end =============  */
