* {
  margin: 0;
  padding: 0;
  touch-action: pan-y pan-x;
}

a {
  text-decoration: none;
}

.min-width {
  width: 1200px;
  margin: 0 auto;
}

.container {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(270deg, #020202 0%, #222 49.5%, #020202 91.5%);
  color: #fff;
  box-sizing: border-box;
  padding-bottom: 28px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 120px;
  background: #110F0E;
  padding: 0 calc((100% - 1200px) / 2);
  box-sizing: border-box;
}

.header .header-left {
  display: flex;
  align-items: center;
}

.header .header-left .logo {
  width: 280px;
  height: 66px;
  margin-right: 15px;
}

.header .header-left .header-left-info {
  height: 66px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header .header-left .header-left-info .text-img {
  width: 343px;
  height: 25px;
}

.header .header-left .header-left-info .title {
  font-size: 34px;
  font-weight: 600;
}

.header .header-left .header-left-info .title span {
  color: #FF0004;
}

.header .header-right {
  width: 280px;
  height: 50px;
}

.first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 407px; */
  margin-top: 30px;
}

.first .left {
  width: 385px;
  border-radius: 11px;
  border: 0.55px solid #FAF6C6;
  background: linear-gradient(270deg, #282828 0%, #414141 47.51%, #282828 100%);
  position: relative;
  padding: 58px 12px 0;
}

.first .left .title-icon {
  width: 220px;
  height: 36px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.first .left .wire-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.first .left .wire-item:last-child {
  margin-bottom: 0;
}

.first .left .wire-item .wire-item-text {
  width: 270px;
  height: 38px;
  border-radius: 5px;
  background-color: #181411;
  font-size: 15px;
  font-weight: 400;
  line-height: 38px;
  text-align: center;
}

.first .left .wire-item .wire-item-btn {
  border-radius: 5px;
  background: var(--Linear, linear-gradient(180deg, #FFF6D8 0%, #F1C21A 100%));
  width: 97px;
  height: 38px;
  line-height: 38px;
  text-align: center;
}

.first .left .wire-item .wire-item-btn span {
  font-weight: 700;
  font-size: 15px;
  background: var(--Linear, linear-gradient(180deg, #464646 0%, #161616 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.first .left .tips {
  margin-top: 18px;
  font-size: 12px;
  line-height: 2;
  text-align: center;
}

.first .left .tips span {
  color: #3C93FF;
}

.first .right {
  width: 775px;
  padding: 10px;
  border-radius: 10px;
  border: 0.5px solid var(--Linear, #FAF6C6);
  background: #2A2A2A;
  box-sizing: border-box;
}

.first .right .banner {
  width: 100%;
  height: 300px;
}

.first .right .title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #F9EDAE;
}

.first .right .subtitle {
  font-weight: 500;
  font-size: 14px;
  margin-top: 15px;
}

.second {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  margin-top: 40px;
  height: 150px;
  border-radius: 10px;
  background: linear-gradient(180deg, #262525 0%, #161616 100%);
}

.second .second-item {
  position: relative;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.second .second-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75px;
  height: 45px;
  opacity: 0.4;
  background: var(--Linear, linear-gradient(180deg, #FAF6C6 0%, #F3D05B 100%));
}

.second .second-item img {
  width: 45px;
  height: 45px;
  margin-bottom: 14px;
}

.second .second-item .second-item-text {
  font-size: 18px;
}

.third {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  border: 0.9px solid var(--Linear, #FAF6C6);
  margin-top: 57px;
  padding: 45px;
  box-sizing: border-box;
}

.third .top-icon {
  position: absolute;
  width: 648px;
  height: 34px;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
}

.third .game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.third .game-item img {
  width: 150px;
  height: 115px;
  margin-bottom: 10px;
}

.third .game-item .game-item-text {
  font-size: 22px;
}

.copyright {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  margin-top: 17px;
}