.top-banner {
	position: relative;
}

.top-banner img {
	display: block;
	width: 100%;
}

.top-banner .top-pagination {
	position: absolute;
	display: flex;
	width: auto;
	padding: 8px 10px;
	border-radius: 15px;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	background-color: rgba(19, 19, 19, .5);
}

.top-banner .swiper-pagination-bullet {
	margin: 0 6px !important;
}

.top-banner .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	background-color: rgba(255, 255, 255, .6);
	border-radius: 8px;
	transition: width .3s;
}

.top-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 30px;
	background-color: #fff;
}

.game-container {
  margin: 70px auto 20px;
  width: 1200px;
}

.game-container .game-title {
  position: relative;
  margin-bottom: 46px;
  padding-left: 16px;
  font-size: 28px;
  font-weight: bold;
  line-height: 38px;
  color: #414141;
}

.game-container .game-title::after {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  height: 26px;
  width: 4px;
  background-color: #1B7EEF;
}

.game-container .game-list {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(3, 384px);
  grid-gap: 28px 14px;
}

.game-container .game-item {
  transition: transform .3s;
  border-radius: .15rem;
  overflow: hidden;
}

.game-container .game-item:hover {
  transform: translateY(-.12rem);
}

.game-container .game-item a {
  display: block;
  width: 100%;
  height: 200px;
}

.game-container .game-item a img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .game-container {
    width: 100%;
  }
  
  .game-container .game-list {
    grid-template-columns: repeat(2, 384px);
    justify-content: space-around;
  }
}

@media screen and (max-width: 750px) {
  .banner-container .top-pagination {
    padding: .02rem .02rem;
    bottom: .1rem;
  }
  
  .banner-container .swiper-pagination-bullet {
    width: .1rem;
    height: .1rem;
  }
  
  .banner-container .swiper-pagination-bullet-active {
    width: .2rem !important;
  }
  
  .game-container {
    margin-top: .4rem;
    margin-bottom: .2rem;
  }
  
  .game-container .game-title {
    margin-bottom: .74rem;
    font-size: .36rem;
    text-align: center;
  }
  
  .game-container .game-title::after {
    left: 50%;
    top: unset;
    bottom: -.12rem;
    height: .08rem;
    width: .48rem;
    border-radius: .04rem;
  }
  
  .game-container .game-list {
    grid-template-columns: repeat(1, 6.62rem);
  }
  
  .game-container .game-item a {
    height: 3.45rem;
  }
}
