@import url('base.css');

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}


header {
  width: 100%;
  height: 88px;
  background: #3f3f3f;
  border-radius:0 0 16px 16px;
}

header .header-hd {
  width: 1280px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 60px;
}

header .header-hd .h-l {
  display: flex;
  align-items: center;
}

header .header-hd .h-l .logo {
  display: block;
  width: 158px;
  height: 44px;
}

header .header-hd .h-l .logo img {
  width: 158px;
  height: 44px;
}

header .header-hd .h-l nav {
  display: flex;
  margin-left: 32px;
  margin-top: 4px;
}

header .header-hd .h-l nav a {
  display: block;
  height: 36px;
  line-height: 36px;
  /* background: #FFE8A2; */
  border-radius: 55px;
  padding: 0 16px;
  margin-right: 16px;
  color: #fff;
  font-size: 16px;
  font-family: M;
  text-transform: capitalize;
}

header .header-hd .h-l nav a:hover {
  background: #7125F5;
  color: #FFFFFF;
}

header .header-hd .h-r {
  position: relative;
  width: 253px;
  height: 36px;
  background: #FFFFFF;
  border-radius: 18px 18px 18px 18px;
}

header .header-hd .h-r input {
  width: 195px;
  height: 36px;
  background: #FFFFFF;
  padding-left: 16px;
  border-radius: 18px 18px 18px 18px;
  color: #999999;
  font-size: 14px;
  font-family: M;
}

header .header-hd .h-r input::placeholder {
  color: #999999;
  font-size: 14px;
  font-family: M;
}

header .header-hd .h-r button {
  position: absolute;
  right: 16px;
  top: 8px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

header .header-hd .h-r button img {
  width: 20px;
  height: 20px;
}

footer {
  width: 100%;
  height: auto;
  background: #3F3F3F;
  border-radius: 16px 16px 0 0;
  text-align: center;
  margin-top: 40px;
  /* margin-bottom: 40px; */
}

footer .f-c {
  margin-top: 32px;
  margin-bottom: 32px;
}

footer .f-c .f-c-t img {
  width: 158px;
  height: 44px;
}

footer .f-c .yinsi {
  margin-top: 12px;
}

footer .f-c .yinsi a {
  color: #FFFFFF;
  font-size: 16px;
  font-family: M;
  margin-right: 32px;
}

footer .f-c .yinsi a:hover {
  text-decoration: underline !important;
}

footer .f-c .copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: M;
  margin-top: 12px;
}

footer .f-c .share {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

footer .f-c .share a {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

footer .f-c .share a img {
  width: 24px;
  height: 24px;
}

footer .f-c .share a .pic2 {
  display: none;
}

footer .f-c .share a:hover .pic1 {
  display: none;
}

footer .f-c .share a:hover .pic2 {
  display: block;
}

.banner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}

.banner a {
  display: block;
  width: 376px;
  height: 270px;
  background: #FFFFFF;
  border-radius: 16px 16px 16px 16px;
  opacity: 1;
  border: 1px solid #F7CE50;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 8px;
  font-size: 0;
}

.banner a:nth-child(3n) {
  margin-right: 0;
}

.banner a .img1 {
  width: 100%;
  height: 202px;
  border-radius: 16px 16px 16px 16px;
  object-fit: cover;
}

.banner a .di {
  display: flex;
  margin-top: 8px;
  align-items: center;
  justify-content: space-between;
}

.banner a .di .di-l {
  display: flex;
  align-items: center;
}

.banner a .di .di-l .img2 {
  width: 44px;
  height: 44px;
  border-radius: 12px 12px 12px 12px;
  object-fit: cover;
  margin-right: 8px;
}

.banner a .di .di-l h2 {
  width: 248px;
  height: 40px;
  line-height: 20px;
  font-size: 16px;
  color: #333;
  font-family: S;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.banner a .di .di-r {
  width: 52px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: #F7CE50;
  border-radius: 14px 14px 14px 14px;
}

.banner a .di .di-r img {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.banner a:hover {
  background: #F7CE50;
}

.banner a:hover .di .di-r {
  background: #7125F5;
}

.popular {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  background: rgba(113, 37, 245, 0.1);
  border-radius: 24px 24px 24px 24px;
  padding: 0 10px 0 24px;
  margin-top: 24px;
}

.popular span {
  display: block;
  color: #7125F5;
  font-size: 18px;
  font-family: S;
  text-transform: capitalize;
}

.popular div {
  width: 28px;
  height: 28px;
  text-align: center;
  background: #7125F5;
  border-radius: 14px 14px 14px 14px;
}

.popular div img {
  width: 16px;
  height: 16px;
  margin-top: 6px;
}

.popular1 {
  margin-top: 0;
}

.center-m {
  display: grid;
  grid-template-columns: repeat(8, minmax(100px, 1fr));
  gap: 16px;
  margin-top: 15px;
}

.center-m li {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  border-radius: 16px;
}

.center-m li:nth-child(1) {
  grid-column: 2/4;
  grid-row: 1/3;
}

.center-m li:nth-child(2) {
  grid-column: 6/8;
  grid-row: 2/4;
}

.center-m li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.3s;
  border: 1px solid #F7CE50;
  border-radius: 16px;
}

.center-m li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.center-m li a h2 {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 33px;
  line-height: 33px;
  background: #F7CE50;
  border-radius: 0px 0px 15px 15px;
  color: #333333;
  font-size: 14px;
  font-family: M;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 2;
  padding: 0 7px;
  text-align: center;
}

.center-m li a:hover h2 {
  display: block;
}

.center-m1 {
  display: grid;
  grid-template-columns: repeat(10, minmax(100px, 1fr));
  gap: 16px;
  margin-top: 15px;
}

.center-m1 li {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  border-radius: 16px;
}

.center-m1 li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.3s;
  border: 1px solid #F7CE50;
  border-radius: 16px;
}

.center-m1 li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.center-m1 li a h2 {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 33px;
  line-height: 33px;
  background: #F7CE50;
  border-radius: 0px 0px 15px 15px;
  color: #333333;
  font-size: 14px;
  font-family: M;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 2;
  padding: 0 7px;
  text-align: center;
}

.center-m1 li a:hover h2 {
  display: block;
}

.newsGame {
  display: flex;
  flex-wrap: wrap;
}

.newsGame a {
  display: flex;
  align-items: center;
  width: 376px;
  background: #FFFFFF;
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #F7CE50;
  margin: 16px 16px 0 0;
  padding: 12px;
}

.newsGame a:nth-child(3n) {
  margin-right: 0;
}

.newsGame a img {
  width: 90px;
  height: 90px;
  border-radius: 16px 16px 16px 16px;
  object-fit: cover;
  margin-right: 12px;
}

.newsGame a .right {
  width: 250px;
}

.newsGame a .right h2 {
  color: #333333;
  font-size: 16px;
  font-family: S;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsGame a .right span {
  display: block;
  color: #999999;
  line-height: 16px;
  font-size: 14px;
  font-family: M;
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 8px;
}

.newsGame a:hover {
  background: #F7CE50;
}

.allGames {
  display: flex;
  flex-wrap: wrap;
}

.allGames a {
  position: relative;
  display: block;
  width: 131px;
  height: 131px;
  border: 1px solid #F7CE50;
  margin-top: 16px;
  margin-right: 16px;
  font-size: 0;
  border-radius: 16px;
}

.allGames a:nth-child(8n) {
  margin-right: 0;
}

.allGames a img {
  width: 131px;
  height: 131px;
  border-radius: 16px 16px 16px 16px;
  object-fit: cover;
}

.allGames a h2 {
  display: none;
  position: absolute;
  bottom: -2px;
  width: 131px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  background: #F7CE50;
  border-radius: 0px 0px 15px 15px;
  border: 1px solid #F7CE50;
  color: #333333;
  font-size: 14px;
  font-family: M;
  padding: 0 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.allGames a:hover h2 {
  display: block;
}

.loadGames {
  display: flex;
  flex-wrap: wrap;
}

.loadGames a {
  display: flex;
  align-items: center;
  width: 376px;
  background: #FFFFFF;
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #F7CE50;
  padding: 12px;
  margin: 16px 16px 0 0;
}

.loadGames a:nth-child(3n) {
  margin-right: 0;
}

.loadGames a .img1 {
  width: 90px;
  height: 90px;
  border-radius: 16px 16px 16px 16px;
  object-fit: cover;
  margin-right: 12px;
}

.loadGames a .l-m {
  width: 190px;
}

.loadGames a .l-m h2 {
  color: #333333;
  font-size: 16px;
  font-family: S;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.loadGames a .l-m span {
  display: block;
  color: #999999;
  line-height: 16px;
  font-size: 14px;
  font-family: M;
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 8px;
}

.loadGames a .l-r {
  width: 52px;
  height: 28px;
  background: #F7CE50;
  border-radius: 14px 14px 14px 14px;
  text-align: center;
  margin-left: 8px;
}

.loadGames a .l-r img {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.loadGames a:hover {
  background: #F7CE50;
}

.loadGames a:hover .l-r {
  background: #7125F5;
}

.no-results {
  margin-top: 50px;
  text-align: center;
}

.no-results img {
  width: 220px;
  height: 126px;
}

.no-results h2 {
  color: #333333;
  font-size: 16px;
  font-family: M;
}

.bread {
  width: 100%;
  height: 55px;
  line-height: 55px;
  background: rgba(247, 206, 80, 0.2);
  border-radius: 0px 0px 16px 16px;
}

.bread .bread-c {
  width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  color: #999999;
  font-size: 12px;
  font-family: M;
}

.bread .bread-c a {
  color: #999999;
  font-size: 12px;
  font-family: M;
}

.detail-t {
  display: flex;
  margin-top: 32px;
}

.detail-t .detail-t-l {
  width: 309px;
}

.detail-t .detail-t-l .img1 {
  width: 180px;
  height: 180px;
  border-radius: 16px 16px 16px 16px;
  object-fit: cover;
}

.detail-t .detail-t-l h2 {
  color: #333333;
  font-size: 20px;
  font-family: S;
  margin-top: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-t .detail-t-l .pingfen {
  display: flex;
  align-items: center;
  margin-top: 28px;
}

.detail-t .detail-t-l .pingfen .xing .layui-rate li i.layui-icon {
  font-size: 24px;
  color: #F6C944;
}

.detail-t .detail-t-l .pingfen span {
  color: #F6C944;
  font-size: 16px;
  font-family: S;
}

.detail-t .detail-t-m {
  text-align: center;
  margin-left: 24px;
}

.detail-t .detail-t-m .ad {
  width: 336px;
  height: 280px;
}

.detail-t .detail-t-m span {
  display: block;
  color: rgba(197, 197, 197, 0.8);
  font-size: 12px;
  font-family: M;
}

.detail-t .detail-t-r {
  width: 467px;
  height: 280px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px 16px 16px 16px;
  margin-left: 24px;
  padding: 35px 26px 0;
}

.detail-t .detail-t-r .tabnav {
  display: flex;
  width: 419px;
  height: 48px;
  background: #EEEEEE;
  border-radius: 6px 6px 6px 6px;
  padding: 3px;
}

.detail-t .detail-t-r .tabnav a {
  display: block;
  height: 42px;
  line-height: 42px;
  text-align: center;
  width: 50%;
  color: rgba(102, 102, 102, 0.4);
  font-size: 16px;
  font-family: M;
  border-radius: 6px 6px 6px 6px;
}

.detail-t .detail-t-r .tabnav .active {
  background: #fff;
}

.detail-t .detail-t-r ul li {
  display: flex;
  height: 20px;
  line-height: 20px;
  color: #666;
  font-size: 16px;
  font-family: M;
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-t .detail-t-r ul li span {
  display: block;
}

.detail-t .detail-t-r ul li span:nth-child(1) {
  color: #999999;
  margin-right: 8px;
}

.detail-t .detail-t-r .ios {
  display: none;
}

.good {
  display: flex;
  margin-top: 24px;
}

.good img {
  width: 24px;
  height: 24px;
}

.good .right {
  margin-left: 8px;
}

.good .right div {
  color: #666666;
  font-size: 14px;
  font-family: M;
}

.good .right span {
  display: block;
  color: #999999;
  font-size: 12px;
  font-family: M;
  margin-top: 6px;
}

.tags {
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.tags span {
  color: #999999;
  font-size: 16px;
  font-family: M;
}

.tags div {
  display: flex;
  align-items: center;
  margin-left: 16px;
}

.tags div a {
  display: block;
  height: 33px;
  border-radius: 48px 48px 48px 48px;
  opacity: 1;
  border: 1px solid #EEEEEE;
  line-height: 33px;
  text-align: center;
  color: #999999;
  font-size: 14px;
  font-family: M;
  padding: 0 12px;
  margin-right: 8px;
}

.tags div a:hover {
  background: #EEEEEE;
  text-decoration: underline !important;
}

.title {
  width: 100%;
  height: 48px;
  line-height: 48px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 24px 24px 24px 24px;
  margin-top: 32px;
  padding-left: 24px;
  color: #666666;
  font-size: 18px;
  font-family: S;
}

.screen {
  border-radius: 16px;
  margin-top: 16px;
}

.screen .swiper .swiper-wrapper .swiper-slide {
  width: auto !important;
  margin-right: 10px;
}

.screen .swiper .swiper-wrapper .swiper-slide:last-child {
  margin-right: 0;
}

.screen .swiper .swiper-wrapper .swiper-slide img {
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.screen .swiper .swiper-button-next,
.screen .swiper .swiper-button-prev {
  width: 56px;
  height: 56px;
}

.game-d {
  display: flex;
  margin-top: 16px;
}

.game-d .game-d-l {
  width: 836px;
}

.game-d .game-d-l .description {
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px 16px 16px 16px;
  padding: 24px 16px;
}

.game-d .game-d-l .description h2 {
  color: #666666;
  font-size: 18px;
  font-family: S;
}

.game-d .game-d-l .description .text {
  color: #999999;
  line-height: 24px;
  font-size: 16px;
  font-family: M;
  margin-top: 16px;
}

.game-d .game-d-l .getApp {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px 16px 16px 16px;
  padding: 16px;
  margin-top: 16px;
}

.game-d .game-d-l .getApp h2 {
  color: #666666;
  font-size: 18px;
  font-family: S;
}

.game-d .game-d-l .getApp .getApp-list {
  display: flex;
  margin-top: 12px;
}

.game-d .game-d-l .getApp .getApp-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 16px) / 2);
  height: 48px;
  line-height: 48px;
  border-radius: 24px 24px 24px 24px;
  border: 1px solid #EEEEEE;
  margin-right: 16px;
}

.game-d .game-d-l .getApp .getApp-list a:nth-child(2) {
  margin-right: 0;
}

.game-d .game-d-l .getApp .getApp-list a img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.game-d .game-d-l .getApp .getApp-list a .img2 {
  display: none;
}

.game-d .game-d-l .getApp .getApp-list a span {
  color: #666666;
  font-size: 18px;
  font-family: S;
}

.game-d .game-d-l .getApp .getApp-list a:hover {
  background: #7125F5;
}

.game-d .game-d-l .getApp .getApp-list a:hover .img1 {
  display: none;
}

.game-d .game-d-l .getApp .getApp-list a:hover .img2 {
  display: block;
}

.game-d .game-d-l .getApp .getApp-list a:hover span {
  color: #fff;
}

.game-d .game-d-l .gg {
  text-align: center;
  margin-top: 16px;
}

.game-d .game-d-l .gg .gg-p {
  width: 100%;
}

.game-d .game-d-l .gg span {
  display: block;
  color: rgba(197, 197, 197, 0.8);
  font-size: 12px;
  font-family: M;
}

.game-d .game-d-l .previous {
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px 16px 16px 16px;
  padding: 24px 16px;
  margin-top: 16px;
}

.game-d .game-d-l .previous h2 {
  color: #666666;
  font-size: 18px;
  font-family: S;
}

.game-d .game-d-l .previous .version a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #F1E9FE;
  border-radius: 8px 8px 8px 8px;
  padding: 16px;
  margin-top: 16px;
}

.game-d .game-d-l .previous .version a div span {
  display: block;
  color: #7125F5;
  font-size: 16px;
  font-family: S;
}

.game-d .game-d-l .previous .version a div span:nth-child(1) {
  margin-bottom: 10px;
}

.game-d .game-d-l .previous .version a img {
  width: 24px;
  height: 24px;
}

.game-d .game-d-l .previous .version a .img2 {
  display: none;
}

.game-d .game-d-l .previous .version a:hover {
  background: #7125F5;
}

.game-d .game-d-l .previous .version a:hover div span {
  color: #fff;
}

.game-d .game-d-l .previous .version a:hover .img1 {
  display: none;
}

.game-d .game-d-l .previous .version a:hover .img2 {
  display: block;
}

.game-d .game-d-l .previous .paging {
  text-align: center;
  margin-top: 16px;
}

.game-d .game-d-l .previous .paging ul {
  display: inline-block;
  overflow: hidden;
}

.game-d .game-d-l .previous .paging ul li {
  float: left;
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #EEEEEE;
  color: #666666;
  font-size: 16px;
  font-family: S;
  line-height: 32px;
  text-align: center;
  margin-left: 8px;
  cursor: pointer;
}

.game-d .game-d-l .previous .paging ul li:nth-child(2) {
  background: #7125F5;
  color: #fff;
}

.game-d .game-d-r {
  width: 300px;
  margin-left: 16px;
}

.game-d .game-d-r .gg2 {
  text-align: center;
}

.game-d .game-d-r .gg2 .gg2-p {
  width: 300px;
  height: 600px;
  background: #EEEEEE;
}

.game-d .game-d-r .gg2 span {
  display: block;
  color: rgba(197, 197, 197, 0.8);
  font-size: 12px;
  font-family: M;
}

.game-d .game-d-r .p-games {
  padding: 24px 16px;
  margin-top: 16px;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px 16px 16px 16px;
}

.game-d .game-d-r .p-games h2 {
  color: #666666;
  font-size: 18px;
  font-family: S;
}

.game-d .game-d-r .p-games .gameList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
}

.game-d .game-d-r .p-games .gameList a {
  display: block;
  width: 84px;
  height: 84px;
  border: 1px solid #F7CE50;
  margin: 8px 8px 0 0;
  border-radius: 16px;
}

.game-d .game-d-r .p-games .gameList a:nth-child(3n) {
  margin-right: 0;
}

.game-d .game-d-r .p-games .gameList a img {
  width: 84px;
  height: 84px;
  border-radius: 16px 16px 16px 16px;
  object-fit: cover;
}

.about {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px 16px 16px 16px;
  padding: 24px 16px;
  margin-top: 24px;
}

.about h2 {
  color: #666666;
  font-size: 18px;
  font-family: S;
  margin-bottom: 12px;
}

.about .about-c {
  color: #999999;
  line-height: 24px;
  font-size: 16px;
  font-family: M;
  margin-bottom: 16px;
}

.about input {
  width: 100%;
  height: 56px;
  background: #F5F5F5;
  border-radius: 8px 8px 8px 8px;
  color: #999999;
  font-size: 16px;
  font-family: M;
  padding-left: 16px;
  margin-bottom: 16px;
}

.about input::placeholder {
  color: #999999;
  font-size: 16px;
  font-family: M;
}

.about textarea {
  width: 100%;
  height: 164px;
  background: #F5F5F5;
  border-radius: 8px 8px 8px 8px;
  margin-bottom: 16px;
  color: #999999;
  font-size: 16px;
  font-family: M;
  padding-left: 16px;
  padding-top: 16px;
}

.about textarea::placeholder {
  color: #999999;
  font-size: 16px;
  font-family: M;
}

.about .service {
  color: #999999;
  font-size: 16px;
  font-family: M;
  margin-bottom: 16px;
}

.about .service a {
  color: #F7CE50;
}

.about button {
  width: 100%;
  height: 52px;
  background: #F7CE50;
  border-radius: 51px 51px 51px 51px;
  line-height: 52px;
  text-align: center;
  color: #333333;
  font-size: 18px;
  font-family: S;
  cursor: pointer;
}

.menuBtn {
  width: 30px;
  height: auto;
  display: none;
}

.searchLogo {
  width: 30px;
  height: auto;
  display: none;
}


@media screen and (max-width: 750px) {
  header .header-hd {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }

  header .header-hd .h-l {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }

  .main-container {
    width: 100%;
    padding: 0 10px;
  }

  .center-m1 {
    grid-template-columns: repeat(3, 1fr);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }


  .center-m1 li {
    width: 30%;
    height: 113px;
    /* border: 1px solid; */
    padding-bottom: 0;
  }

  .center-m1 li a img {
    height: 105px;
  }

  .center-m1 li a h2 {
    display: block;
  }

  .center-m1 li a {
    height: auto;
  }


  .menuBtn {
    display: block;
  }

  .searchLogo {
    display: block;
  }

  .searchBox {
    width: 100%;
  }

  .h-l {
    /* display: none; */
    position: inherit;
    padding: 0 10px;
  }

  .navDom {
    display: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 60px;
    display: flex;
    flex-wrap: wrap;
    background-color: #f6cd59;
    align-content: flex-start;
    padding-top: 50px;
  }

  header .header-hd .h-l nav {
    margin: 0;
    display: none;
    padding: 50px 10px;
  }

  .navDom a {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  header .header-hd .h-l nav a {
    margin-right: 0;
  }

  header .header-hd .searchBox {
    position: absolute;
    width: 100%;
    left: 0;
    top: 60px;
    display: none;
    background-color: #f6cd59;
    height: 100vh;
    padding-top: 50px;
  }

  header .header-hd .h-r {
    position: relative;
    width: 95%;
    height: 36px;
    background: #FFFFFF;
    border-radius: 18px 18px 18px 18px;
    margin: auto;

  }

  header {
    height: 60px;
    z-index: 999;
  }

  header .header-hd {
    height: 60px;
  }

  .allGames a {
    width: calc((100% - 20px)/3);
    height: 115px;
    margin-right: 10px;
  }

  .allGames a img {
    width: 100%;
    height: 100%;
  }

  .allGames {
    justify-content: flex-start;
  }

  .allGames a:nth-of-type(8n) {
    margin-right: 10px;
  }

  .allGames a:nth-of-type(3n) {
    margin-right: 0;
  }


  .banner a {
    width: 100%;
  }

  .newsGame a {
    width: 100%;
  }

  .newsGame a .right {
    width: 230px;
  }

}