html,
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow: scroll;
  overflow-x: hidden; /* 禁用横向滚动 */
  max-width: 100vw; /* 限制最大宽度 */
}

::-webkit-scrollbar {
  display: none;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f86c34;
  outline: none;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #e55b2c;
}

button.mobile {
  background: #fff;
  color: #f86c34;
}

.topic-h1 {
  display: none;
}

/* 微信提示页面样式 */
.wechat-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wechat-content {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  bottom: 26vh;
}

.wechat-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid rgba(248, 108, 52, 0.1);
  border-radius: 50%;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
}

.wechat-arrow {
  margin-bottom: 30px;
  animation: spiralBounce 2.5s infinite ease-in-out;
  transform-origin: center center;
  filter: drop-shadow(0 4px 8px rgba(248, 108, 52, 0.3));
  z-index: 10;
  position: relative;
}

@keyframes spiralBounce {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(5px, -5px) scale(1.1);
  }
  50% {
    transform: translate(10px, -10px) scale(1.15);
  }
  75% {
    transform: translate(5px, -5px) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.wechat-text p {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
  font-weight: 500;
  line-height: 1.5;
}

/* 公用header */
.common-header {
  width: 100vw;
  height: 88px;
  background-color: rgba(21, 21, 27, 1);
}

.common-header-content {
  width: 100%;
  height: 88px;
  max-width: 1200px;
  margin-left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-ribbon-menu-tabs {
  position: absolute;
  height: auto;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 999999;
  display: none;
  text-align: center;
}

.ribbon-menu-tab:hover,
.phone-ribbon-menu-tabs:hover {
  color: #fff;
}

.phone-ribbon-header-menu {
  display: none;
}

.common-header-logo {
  width: auto;
  height: 56px;
  cursor: pointer;
}

.ribbon {
  width: auto;
  height: 100%;
  display: flex;
  column-gap: 40px;
}

.ribbon-menu-tabs {
  width: auto;
  height: 100%;
  display: flex;
}

.ribbon-menu-tab {
  width: 88px;
  height: 100%;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 88px;
  text-align: center;
  cursor: pointer;
}

.ribbon-menu-tab.active {
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

.header-download {
  width: 128px;
  height: 40px;
  margin: auto 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.header-download-logo {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.header-download span {
  color: #fff;
}

/* 主内容区下载按钮容器 */
.main-download-buttons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* 主内容区Android下载按钮样式 */
.main-android-download-container {
  position: relative;
  display: inline-block;
}

.main-android-download {
  width: 264px;
  height: 60px;
  margin: 0;
  border-radius: 30px;
  background-color: #fff;
  color: #f86c34;
  /* border: 2px solid #f86c34; */
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.main-android-download:hover {
  background-color: #f8f8f8;
}

.android-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  color: #f86c34;
}

.main-android-download span {
  color: #f86c34;
  font-size: 20px;
}

.main-qr-code-popup {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  /* background: #fff;
  border: 2px solid #f86c34; */
  border-radius: 12px;
  /* padding: 20px; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  text-align: center;
  min-width: 200px;
}

.main-android-download-container:hover .main-qr-code-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.main-qr-code-image {
  /* width: 180px;
  height: 180px; */
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 8px;
}

.main-qr-code-text {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}

/* 添加箭头指向按钮 */
/* .main-qr-code-popup::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f86c34;
} */

/* 首页的内容区 */
#acceleration-engine,
#stable-module,
#synchronous-module,
#magnanimity-module,
#footer-download-module,
#consultation-module,
#support-game-module {
  display: none;
}

/* 支持游戏 */
.consultation-module,
.support-game-module {
  width: 100vw;
  height: auto;
  background: #010101;
}

.consultation-content,
.support-game-content {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.consultation-content .consultation-title,
.support-game-content .support-game-title {
  font-size: 40px;
  color: #fff;
  background: #010101;
  margin: 0 0 0 14px;
  padding: 40px 0 0 0;
}

.consultation-list {
  width: 100%;
  margin-top: 16px;
}

.game-content-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 26px;
  row-gap: 40px;
  margin-top: 16px;
}

.consuit-item {
  width: calc(100% - 32px);
  height: auto;
  border-bottom: 1px solid  rgba(255, 255, 255, 0.2);
  padding: 22px 16px;
  cursor: pointer;
}

.consuit-item:hover {
  background: rgba(248,108,52,0.10);
}

.game-content-item {
  width: calc((100% / 6) - 22px);
  background: rgba(248, 108, 52, 0.10);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.game-content-item:hover {
  transform: translateY(-10px);
}

.consuit-item-name {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consuit-item-title {
  display: -webkit-box; /* 将元素设置为弹性盒子 */
  -webkit-box-orient: vertical; /* 设置内容垂直排列 */
  -webkit-line-clamp: 2; /* 限制显示的行数 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */
  line-height: 1.5; /* 设置行高（可选） */
  max-height: 3em; /* 最大高度为两行（行高 × 行数） */
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin: 12px 0 0 0;
}

.consuit-item-time {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.game-content-item img {
  width: 100%;
  aspect-ratio: 2 / 3; 
}

.game-content-item div {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 16px 10px;
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis;
}

.consuit-paginator,
.game-content-paginator {
  width: fit-content;
  margin: 0 auto;
  padding: 40px 0 118px 0;
  display: flex;
  column-gap: 8px;
}

.consuit-paginator-pages,
.game-paginator-pages {
  position: relative;
  max-width: 144px;
  display: flex;
  column-gap: 8px;
  overflow-x: hidden;
}

.consuit-paginator-prev,
.consuit-paginator-next,
.game-paginator-prev,
.game-paginator-next,
.paginator-item {
  min-width: 30px;
  width: 30px;
  height: 30px;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.50);
  background: rgba(248,108,52,0.20);
  text-align: center;
  line-height: 30px;
  border-radius: 6px;
  cursor: pointer;
}

.paginator-item {
  position: absolute;
  top: 0;
}

.consuit-paginator-prev:not(.disabled):hover,
.consuit-paginator-next:not(.disabled):hover,
.game-paginator-prev:not(.disabled):hover,
.game-paginator-next:not(.disabled):hover,
.paginator-item:hover,
.paginator-item.active {
  color: #fff;
  background: rgba(248,108,52,0.50);
}

.consuit-paginator-next.disabled,
.consuit-paginator-prev.disabled,
.game-paginator-next.disabled,
.game-paginator-prev.disabled {
  cursor: no-drop;
  color: rgba(255,255,255,0.50);
  background: rgba(248,108,52,0.20);
}

/* 资讯 */

/* 首屏 */
.acceleration-engine {
  position: relative;
  width: 100vw;
  height: 1780px;
  background-color: rgba(20, 20, 23, 1);
  overflow: hidden;
}

.engine-scroll {
  width: 100vw;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* 水平居中 */
  animation: scrollUp linear infinite;
  animation-duration: 40s; /* 假设图片高度为 100px，则 10s 内滚动 100px */
}

.engine-scroll img {
  width: 100%;
  height: auto;
}

@keyframes scrollUp {
  from {
    transform: translateY(0) translateX(-50%);
  }
  to {
    transform: translateY(-300px) translateX(-50%); /* 移动到第一张图片的高度 */
  }
}

/* 上半部分 */
.engine-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 900px;
  background: linear-gradient(
    rgba(20, 20, 23, 1),
    rgba(20, 20, 23, 0.85),
    rgba(1, 1, 1, 1)
  );
}

.engine-top-content-title {
  width: 867px;
  height: auto;
  margin-top: 227px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.engine-download {
  width: 264px;
  height: 60px;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-sizing: border-box;
}

.engine-download::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3); /* 白色波纹颜色 */
  transform: translate(-50%, -50%);
  opacity: 1;
  border-radius: 50%;
  animation: ripple 1.5s infinite;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 420px; /* 设置为大于按钮实际宽度的值，以确保覆盖整个按钮 */
    height: 420px;
    opacity: 0;
  }
}

.windows-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  color: #fff;
}

.engine-download span {
  font-size: 20px;
  color: #fff;
}

/* 下半部分 */
.engine-bottom {
  position: absolute;
  top: 900px;
  left: 0;
  width: 100vw;
  height: 880px;
  /* background: linear-gradient(
    rgba(20, 20, 23, 0.98),
    rgba(1, 1, 1, 1)
  ); */
  background: rgba(1, 1, 1, 1);
}

.engine-bottom-sports {
  width: 1200px;
  height: auto;
  margin-top: 20px;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* 精细调整 畅快游戏 */
.stable-module {
  width: 100vw;
  height: auto;
  background: rgba(1, 1, 1, 1);
  padding: 80px 0 57px 0;
}

.stable {
  width: 1200px;
  height: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* 超高性价比 福利不停 */
.synchronous-module {
  width: 100vw;
  height: auto;
  background: rgba(1, 1, 1, 1);
  padding: 57px 0 57px 0;
}

.synchronous {
  width: 1200px;
  height: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* 海量游戏 免费加速 */
.magnanimity-module {
  width: 100vw;
  height: auto;
  background: rgba(1, 1, 1, 1);
  padding: 57px 0 57px 0;
}

.magnanimity {
  width: 1200px;
  height: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* 无限可能 免费下载 */
.footer-download-module {
  width: 100vw;
  height: auto;
  background: rgba(1, 1, 1, 1);
  padding: 60px 0 60px 0;
  position: relative;
}

.footer-download {
  width: 1200px;
  height: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

.footer-download-btn {
  width: 264px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  margin: auto 0;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(50vw - 500px);
  overflow: hidden;
}

.footer-download-logo {
  width: 30px;
  height: 30px;
  margin-top: 2px;
}

.footer-download-btn span {
  color: #fff;
}

/* 底部 IPO */
.footer-module {
  background-color: rgba(24, 24, 24, 1);
  padding: 53px 0 49px 0;
}

.footer-content {
  width: 1200px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.footer-content-img {
  display: flex;
  align-items: center;
}

.footer-content-logo {
  width: auto;
  height: 40px;
}

.footer-content-title {
  width: 289px;
  height: auto;
  margin-left: 16px;
}

.footer-text {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-advice {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 28px;
}

.footer-protocol {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.footer-protocol span {
  cursor: pointer;
}

.copy-column {
  margin-top: 40px;
}

.copyright {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.permit {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 16px;
}
