@import url(./normailize.css);
.body {
  max-width: 450px;
  margin: 0 auto;
  background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

header {
  background: url(../img/header.png) no-repeat;
  height: 74px;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

header img {
  height: 62px;
}

.content {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.more {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  line-height: 48px;
  color: #fff;
  font-style: 16px;
  font-weight: 700;
  height: 48px;
  border-radius: 5px;
  background: linear-gradient(to bottom, #ff5cfd, #534aff);
}
.more:active {
  background: linear-gradient(to bottom, #534aff, #ff5cfd);
}
.content_text h2 {
  text-align: center;
  text-decoration: underline;
}

.content_text {
  color: #fff;
  text-indent: 20px;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
}

.game-item {
  width: 33.3%;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}

.game-item:last-child {
  margin-bottom: 0;
}

.game-item img {
  width: 100%;
  height: 100%;
  background: #fff;
  object-fit: cover;
  border-radius: 10px;
}

.intro {
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.intro_content {
  background: linear-gradient(to bottom, #444, #131313);
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

footer {
  height: 190px;
  width: 100%;
  background: #494949;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer img {
  height: 50px;
}

footer .link {
  width: 60%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.link_a {
  font-size: 14px;
}

.link_a a {
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.link_a a:last-child {
  margin-bottom: 0;
}
footer p {
  font-size: 14px;
  color: #fff;
  text-align: center;
}

/* detail.html */
.game_info {
  position: relative;
  width: 100%;
  height: 212px;
  border-radius: 10px;
  overflow: hidden;
}
.game_info_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(10px);
}
.game_info_detail {
  display: flex;
  align-items: center;
  position: relative;
  margin: 10px;
}
.game_info_detail_left {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #fff;
}
.game_info_detail_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game_info_detail_right {
  margin-left: 20px;
}
.game_info_detail_right_name {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.game_info_btn {
  position: relative;
  margin: 80px auto 0;
  width: 70%;
  height: 40px;
  background: linear-gradient(to bottom, #ff5cfd, #534aff);
  line-height: 40px;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  -webkit-animation: wobble 3s linear infinite backwards;
  animation: wobble 3s linear infinite backwards;
}

.game_info_detail_right_rate {
  color: #fff;
  height: auto;
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.rating-star {
  width: 12px;
  height: 12px;
  font-size: 12px;
  position: relative;
  margin-right: 5px;
}

.full-star:before {
  color: #d97dff;
  content: "\2605";
  position: absolute;
  left: 0;
  overflow: hidden;
}

.empty-star:before {
  content: "\2605";
  position: absolute;
  left: 0;
  overflow: hidden;
}

.half-star:before {
  color: #d97dff;
  content: "\2605";
  width: 100%;
  position: absolute;
  left: 0;
  overflow: hidden;
}

.half-star:after {
  content: "\2605";
  position: absolute;
  width: 100%;
  left: 50%;
  text-indent: -50%;
  overflow: hidden;
}

@-webkit-keyframes wobble {
  26% {
    transform: translateZ(0);
  }
  29% {
    transform: translate3d(-10%, 0, 0) rotate(-5deg);
  }
  35% {
    transform: translate3d(10%, 0, 0) rotate(3deg);
  }
  42% {
    transform: translate3d(-5%, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(5%, 0, 0) rotate(2deg);
  }
  54% {
    transform: translate3d(-2%, 0, 0) rotate(-1deg);
  }
  60% {
    transform: translateZ(0);
  }
}
@keyframes wobble {
  26% {
    transform: translateZ(0);
  }
  29% {
    transform: translate3d(-10%, 0, 0) rotate(-5deg);
  }
  35% {
    transform: translate3d(10%, 0, 0) rotate(3deg);
  }
  42% {
    transform: translate3d(-5%, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(5%, 0, 0) rotate(2deg);
  }
  54% {
    transform: translate3d(-2%, 0, 0) rotate(-1deg);
  }
  60% {
    transform: translateZ(0);
  }
}
.recommend {
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #848484;
  margin-top: 20px;
}

.recommend_title {
  font-size: 15px;
  color: #fff;
  margin-bottom: 10px;
}

.recommend_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.recommend_list_pic {
  width: 20%;
  padding: 5px;
  box-sizing: border-box;
  aspect-ratio: 1;
}

.recommend_list_pic img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #fff;
}
.row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}
.row_text {
  width: 25%;
  text-align: right;
  margin-right: 20px;
}
.row_text span:first-child {
  color: #c12c1f;
  margin-right: 5px;
}
.row_text span:last-child {
  color: #eee;
  font-size: 14px;
  font-weight: 700;
}
.row_input {
  flex: 1;
  height: 40px;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 5px;
}
.row_input input,
.row_input textarea {
  outline: none;
  border: 0;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  margin: 0;
  box-sizing: border-box;
  border-radius: 10px;
}
.row_textarea {
  height: 100px;
}
.row_input textarea {
  resize: none;
}

.box_btn {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: #6c216d;
  line-height: 40px;
  cursor: pointer;
  margin: 30px auto;
}

.box_btn:hover {
  background: #4a0c4b;
}
.box_btn:active {
  background: #4a0c4b;
}

.loading_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.loading {
  width: 30px;
  height: 30px;
  border: 2px solid #000;
  border-top-color: transparent;
  border-radius: 100%;

  animation: circle infinite 0.75s linear;
}

@keyframes circle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.finish {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
}

.finish_text {
  font-size: 20px;
  font-weight: 700;
  color: #ffff;
}
.finish_btn {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: #a6559d;
  line-height: 40px;
  cursor: pointer;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .main-content {
    width: 95%;
  }
  .row_text {
    width: 35%;
  }
}
.hidden {
  display: none;
}
.content_contact {
  color: #fff;
}

.ads{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
