.layout {
  width: var(--page-width);
  margin: 0 auto;
}
.header-bar .placeholder {
  height: 90px;
}
.header-bar .header-box {
  height: 90px;
  background-color: var(--yellow);
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
}
.header-inner {
  width: var(--page-width);
  height: 100%;
  margin: 0 auto;
}
.header-inner .logo {
  height: 60px;
  width: 250px;
}
.header-inner .nav-item {
  padding: 0 20px;
  height: 50px;
  background: rgba(255, 255, 255, 0.69);
  border-radius: 50px;
  border: 1px solid #fea52b;
  margin-left: 10px;
}
.header-inner .nav-item .image {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}
.header-inner .nav-item p {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
}
.header-inner .nav-item:hover {
  background: rgba(255, 255, 255, 0.9);
}
.header-inner .nav-item.active {
  background: #ffffff;
}
.footer-bar .top .image {
  width: 1000px;
  height: 220px;
}
.footer-bar .footer-box {
  height: 183px;
  background: #ffd857;
}
.footer-bar .footer-box .top-nav {
  height: 110px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.footer-bar .footer-box .top-nav .nav-item {
  padding: 0 20px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #fea52b;
  margin-left: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
}
.footer-bar .footer-box .top-nav .nav-item:hover {
  background: #fea52b;
  color: white;
}
.footer-bar .footer-box .top-nav .nav-item.active {
  background: #fea52b;
  color: white;
}
.footer-bar .footer-box .top-nav .dian {
  font-size: 40px;
  color: white;
}
.go-top {
  width: 60px;
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  position: fixed;
  left: 50%;
  bottom: 25vh;
  z-index: 99;
  margin-left: 740px;
  cursor: pointer;
  display: none;
}
main {
  width: var(--page-width);
  margin: 0 auto;
}
.list-title {
  height: 60px;
  background: #ff5555;
  border-radius: 10px;
}
.list-title .image {
  height: 100%;
}
.company {
  background: #ffffff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
}
.game-item {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  background: white;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  font-size: 0;
  position: relative;
}
.game-item .image {
  border: 4px solid #ffffff;
  height: 100%;
  width: 100%;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.game-item .icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 70px;
  width: 70px;
  z-index: 1;
  border-top-right-radius: 20px;
}
.game-item:hover .shadow {
  opacity: 1;
}
.game-item .shadow {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 216, 87, 0.8);
  border: 4px solid #ffffff;
  border-radius: 20px;
  z-index: 100;
  opacity: 0;
  transition: 0.2s;
}
.game-item .shadow .text {
  width: 106px;
  height: 69px;
  font-size: 16px;
  font-family: Jost-SemiBold, Jost;
  font-weight: 600;
  color: #333333;
  line-height: 23px;
  text-align: center;
}
