.innovative-banner {
  background: url(../image/bg.jpg) no-repeat center center;
  background-size: 100% 100%;
  justify-content: flex-start;
  /* padding: 0 12.55%; */
  width: 100%;
  height: auto;
}

.banner-content {
  padding: 20% 0 13.7%;
}

.banner-text {
  font-size: 16px;
  color: #212529;
  line-height: 24px;
}

.banner-input {
  width: 628px;
  height: 84px;
  border-radius: 84px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0px 20px 90px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.banner-input input {
  border: transparent;
  width: 500px;
  height: 80px;
  margin-left: 35px;
  background: transparent;
  outline: none;
  color: #212529;
  font-size: 18px;
  font-weight: 600;
}

.banner-input img {
  width: 54px;
  margin-left: 15px;
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
}
.banner-input .search-box {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0px 3px 16px 0px rgba(153, 155, 168, 0.5);
  background: #fff;
  position: absolute;
  top: 88px;
  left: 0;
  padding: 16px 0;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}
.banner-input .search-box ul li {
  padding: 12px 16px;
  color: #727781;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.banner-input .search-box ul li:hover {
  background: #e4dcfd;
  color: #212529;
  transition: all 0.3s;
}

.no-data {
  padding: 3% 16px 0;
  color: #727781;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  display: none;
  padding-top: 80px;
}

.games-container {
  width: 100%;
  margin: 80px auto;
  /* padding: 0 10%; */
  box-sizing: border-box;
  text-align: center;
}
.games-container .more {
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  margin-top: 40px;
  padding: 16px 32px;
  border-radius: 20px;
  background: #e4dcfd;
}
.games-container .more:hover {
  background: #d6cfee;
  transition: all 0.3s;
}

.games-container .more a {
  color: #7a52f4;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.games-container .more img {
  width: 16px;
  margin-left: 8px;
  vertical-align: inherit;
  transition: all 0.3s;
  position: relative;
  top: 2px;
}

.games-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.games-btn span {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid #cfdbd5;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  background-size: 15% auto;
}

.games-listBox {
  width: 100%;

  overflow: hidden;
}

.games-list {
  margin-top: 32px;
  overflow: hidden;
}
.games-list ul {
  content: "";
  display: table;
  clear: both;
}

.games-list li {
  margin-bottom: 24px;
}

.games-list li .item-box {
  border: 1px solid #cfdbd5;
  border-radius: 12px;
  padding-bottom: 24px;
  overflow: hidden;
  cursor: pointer;
}
.games-list li .item-box:hover {
  border: 1px solid rgba(122, 82, 244, 0.6);
  transition: all 0.3s;
}

.list-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.list-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s;
}
.games-list li .item-box:hover .list-img img {
  transform: scale(1.03);
  transition: all 0.3s;
}

.games-list li .item-box:hover .list-img .list-btn {
  opacity: 1;
  transition: all 0.3s;
}

.list-img .list-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
}

.list-img .list-btn span {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-block;
  padding: 13px 24px;
  text-align: center;
  border-radius: 84px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0px 20px 90px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  color: #000000;
  font-size: 14px;
  font-weight: bold;
}
.list-img .list-btn span:hover {
  background: #f7f5fe;
  transition: all 0.3s;
}
.list-img .list-btn span img {
  width: 7px;
  margin-left: 8px;
  vertical-align: baseline;
}

.games-list li h6 {
  color: #212529;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}

#search-result {
  display: none;
}

@media only screen and (max-width: 768px) {
  .innovative-banner {
  }

  .banner-content,
  .banner-input {
    width: 100%;
  }
  .banner-text {
    font-size: 14px;
  }
  .banner-input {
    height: 64px;
  }
  .banner-input input {
    width: 67%;
    height: 60px;
  }
  .banner-input img {
    top: 5px;
    right: 7px;
  }

  .games-container {
    width: 100%;
    margin: 40px 0;
  }

  .title {
    font-size: 20px;
  }

  .games-btn span {
    margin-top: 15px;
    width: 24px;
    height: 24px;
  }
  .no-data {
    font-size: 20px;
    padding-top: 40px;
  }

  .banner-input .search-box {
    top: 68px;
  }

  .games-list li {
    margin-bottom: 15px;
  }
  .games-list li:nth-child(odd) {
    padding-right: 7px;
  }
  .games-list li:nth-child(even) {
    padding-left: 7px;
  }
}
