body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #EACABB;
}

/* 顶部横条样式 */
.top-bar {
  width: 100%;
  background-color: #FFFFFF;
  color: #000;
  text-align: center;
  padding: 10px 0;
  font-size: 18px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display:flex;
  justify-content: space-between;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* 让页面内容避免被顶部横条遮挡 */
.homeContent {
  margin-top: 70px;
}

.ad-container {
  text-align: center;
  margin: 70px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
  padding: 15px;
}

@media (max-width: 640px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    /* 移动端每行2个图片 */
  }
}

@media (min-width: 640px) and (max-width: 960px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    /* 移动端每行2个图片 */
  }
}

@media (min-width: 960px) and (max-width: 1280px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    /* 移动端每行2个图片 */
  }
}

@media (min-width: 1280px) and (max-width: 1500px) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
    /* 移动端每行2个图片 */
  }
}

.gallery img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  cursor: pointer;
  /* 鼠标移到图片上变为手指图标 */
}

.bottominfo {
  text-align: center;
  color: #aaaaaa;
  font-size: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #303030;
}

.neckItem {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  color: #000;
  font-weight: 700;
  background-color: #FFFFFF;
  border-radius: 15px;
}

.content {
  flex: 1;
  padding-top: 16px;
  font-weight: 400;
  font-size: 14px;
  color: #000000CC;
  line-height: 26px;
  text-align: left;
  font-style: normal;
}
.span {
  margin-bottom: 20px;
}
.all-div {
  width: 100%;
  background: #EACABB;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

}

.all {
  background: #EACABB;
  width: 1200px;
  margin: 0 auto;
  padding: 24px 0 84px 0;
  flex: 1;
}
.footer {
  width: 1200px;
  height: 71px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-div {
  width: 100%;
  background: #FFFFFF;
}
.title-1A62EE {
  font-weight: bold;
  font-size: 32px;
  color: #000000;
  line-height: 38px;
  text-align: left;
  margin-top: 60px;
  margin-left: 15px;
}

@media only screen and (max-width:768px) {
  body {
    margin: 0px;
  }

  html {
    margin: 0px;
  }

  .all {
    flex: 1;
    width: 100%;
    padding: 30px 16px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    display: flex;
    width: 100%;
    height: 71px;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    flex-direction: column;
    justify-content: space-evenly;
  ;
  }
}

.bottominfo {
  text-align: center;
  color: #000;
  font-size: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #FFFFFF
}

.divlb{
  text-align: center;
  width: 100%;
  font-weight: bold;
  color: #000;
  font-size: 18px;
}

.typeTitle{
  color: #000;
}

#gameIframe {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 95%;
  background-color: #FFFFFF;
  display:flex;
  border: none;
  z-index: 2;
}