* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: url('/img/bg.png') top center no-repeat;
  background-size: contain;
  min-height: 100vh;
}
.game-container {
  padding: 0.4rem;
}
.game-container .title-container {
  padding: 0 0 0.1rem 0;
}
.game-container .title {
  font-size: 0.48rem;
  color: #3D3D3D;
}
.game-container .sub-title {
  padding: 0.05rem 0 0;
  font-size: 0.28rem;
  font-weight: 500;
  color: rgba(61, 61, 61, 0.6);
}
.game-container .loading {
  display: flex;
  padding: 15% 0;
  align-items: center;
  justify-content: center;
  font-size: 0.32rem;
  color: #999;
  flex-direction: column;
}
.game-container .loading .svg {
  animation: rotate 1s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.game-container .skeleton-container .skeleton-item {
  margin: 0.4rem 0 0;
  width: 6.72rem;
}
.game-container .skeleton-container .skeleton-item .skeleton-img {
  width: 6.72rem;
  height: 3.8rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 2s infinite;
  border-radius: 0.08rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.game-container .skeleton-container .skeleton-item .skeleton-info {
  display: flex;
  padding: 0.2rem 0 0;
  justify-content: space-between;
}
.game-container .skeleton-container .skeleton-item .skeleton-info .skeleton-title {
  width: 80%;
  height: 0.3rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 2s infinite;
  margin-bottom: 0.1rem;
  border-radius: 0.04rem;
}
.game-container .skeleton-container .skeleton-item .skeleton-info .skeleton-meta {
  width: 10%;
  height: 0.3rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 2s infinite;
  border-radius: 0.04rem;
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.game-container .item-box {
  margin: 0.4rem 0 0;
}
.game-container .item-box .item {
  width: 6.72rem;
}
.game-container .item-box .img-box {
  width: 6.72rem;
  height: 3.8rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  background: url('/img/loading.png') no-repeat;
  background-size: cover;
  border-radius: 0.08rem;
}
.game-container .item-box .img-box .img {
  width: 6.72rem;
  height: 3.8rem;
  border-radius: 0.08rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}
.game-container .item-box .item-title {
  padding: 0.1rem 0 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.2rem 0 0;
}
.game-container .item-box .item-title .icon {
  margin: 0 0.1rem 0 0;
  width: 16px;
  height: 16px;
}
.game-container .item-box .item-title .main-title {
  display: flex;
  flex: 1;
  align-items: flex-start;
}
.game-container .item-box .item-title .main-title .info {
  font-size: 0.28rem;
  line-height: 1.5;
  color: #0A0A0A;
}
.game-container .item-box .item-title .total-box {
  display: flex;
}
.game-container .item-box .item-title .total-box .size {
  font-size: 0.24rem;
  color: #3D3D3D;
}
.game-container .like-box {
  display: flex;
  flex-direction: column;
  padding: 0.2rem 0;
  align-items: center;
  font-size: 0.28rem;
  margin: 0.6rem 0 0;
  border-radius: 7.6px;
  background: rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  border: 0.76px solid #FFFFFF;
  backdrop-filter: blur(76px);
  box-shadow: 0px 1.52px 9.88px 0px #ddd;
}
.game-container .like-box p {
  padding: 0.05rem 0;
}
