﻿.games-banner {
  background-image: url(../image/banner.jpg);
}
.new-games {
  padding-top: 58px;
  padding-bottom: 60px;
  min-height: 50vh;
  display: flex;
  flex-wrap: wrap;
}
.new-games .new-games_item {
  width: 590px;
  height: 390px;
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
  vertical-align: top;
  background-color: #eee;
  background-size: cover;
  transform: none;
  border-radius: 12px;
  overflow: hidden;
}
.new-games .new-games_item .games_text {
  width: 208px;
  padding: 26px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  text-align: left;
}
.new-games .new-games_item .games_text .game_icon {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.new-games .new-games_item .games_text .game_icon img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
}
.new-games .new-games_item .games_text .name {
  color: #fff;
  font-size: 26px;
  line-height: 34px;
  margin: 20px 0 6px;
}
.new-games .new-games_item .games_text .intro {
  color: #eee;
  padding-right: 10px;
  font-size: 13px;
  line-height: 18px;
}
.new-games .new-games_item:nth-child(odd) {
  margin-right: 20px;
}
