﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.padding20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.padding40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.storeLinkButton {
  width: 300px;
  height: 240px;
  display: inline-block;
  border: 1px rgba(0, 0, 0, 0) solid;
}
.storeLinkButton:hover {
  border: 1px rgb(180, 180, 180) solid;
}
.storeLinkButton > a {
  text-decoration: none;
}
.storeLinkButton > a > img {
  width: 300px;
  position: relative;
  bottom: 15px;
}
.storeLinkButton > a > img:hover {
  scale: 1.02;
  bottom: 17px;
}
.storeLinkButton > a > span {
  color:rgb(99, 99, 99);
  text-decoration: none;
  position: relative;
  bottom: 30px;
}

.gameLinkButton {
  width: 200px;
  height: 200px;
  display: inline-block;
  border: 1px rgba(0, 0, 0, 0) solid;
}
.gameLinkButton:hover {
  border: 1px rgb(180, 180, 180) solid;
}
.gameLinkButton > a {
  text-decoration: none;
}
.gameLinkButton > a > img {
  width: 164px;
  position: relative;
  bottom: 0px;
}
.gameLinkButton > a > img:hover {
  scale: 1.02;
  bottom: 3px;
}
.gameLinkButton > a > span {
  color:rgb(99, 99, 99);
  text-decoration: none;
}

.border1px {
  border: 1px solid #3c3c3c;
}
.border1px > thead > tr > th {
  border: 1px solid #3c3c3c;
  padding: 4px 8px 4px 8px;
}
.border1px > tbody > tr > td {
  border: 1px solid #3c3c3c;
  padding: 4px 8px 4px 8px;
}

.aListContainer > div {
  display: inline-block;
  width: 160px;
  height: 160px;
  border: 1px rgba(0, 0, 0, 0) solid;
  margin-left: 10px;
  margin-right: 10px;
}
.aListContainer > div:hover {
  border: 1px rgb(180, 180, 180) solid;
}
.aListContainer > div > a {
  text-decoration: none;
}
.aListContainer > div > a > img {
  width: 128px;
  height: 128px;
  position: relative;
  bottom: 0px;
}
.aListContainer > div > a > img:hover {
  scale: 1.02;
  bottom: 2px;
}
.aListContainer > div > a > span {
  color:rgb(99, 99, 99);
  text-decoration: none;
}

.groupTitle {
  font-size: 24px;
  font-weight: 600;
}

.screenshotDiv {
  width: 1920px;
  height: 1080px;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
  border: none;
}
@media (max-width: 1920px) {
  .screenshotDiv {
    width: 1280px;
    height: 720px;
  }
}
@media (max-width: 1300px) {
  .screenshotDiv {
    width: 720px;
    height: 406px;
  }
}
.screenshotDiv > img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
.screenshotDiv > img.active {
  opacity: 1;
}
.screenshotDiv > button {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  transform: translateY(-50%);
  background: rgba(1, 1, 1, 0.1);
  border: none;
  cursor: pointer;
  z-index: 10; /* 确保按钮在图片上方 */
}
.screenshotDiv > button:hover {
  background: rgba(1, 1, 1, 0.3);
}
#screenshot_NextButton {
    right: 10px;
    background-image: url('/img/NextButton.png');
}
#screenshot_LastButton {
    left: 10px;
    background-image: url('/img/LastButton.png');
}

.contentDiv > div {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  text-align: center;
  box-sizing: border-box;
}
.contentDiv > div:last-child {
  margin-bottom: 0;
}
.contentDiv > div > h6 {
  color: #2f89bc;text-align: center;
  font-size: 22px;
}
.contentDiv > div > p {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
}