/* style.css - APPINNOVA 官网主样式表 */

/* 全局基础样式 */
body {
  margin: 0;
  padding: 0;
  background: url(./image/background.jpg) no-repeat;
  background-size: 100% 100%;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  color: #222;
}

/* 顶部Banner区 */
.banner {
  position: relative;
  margin: 0 8vw 0.32rem 8vw;
  min-height: 9.8rem;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* 头部导航栏（放在banner内，z-index高） */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
 
  background: transparent;
  z-index: 10;
  width: 80%;
  padding: 0.4rem 6vw;
  height: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
}
.logo img {
    width: 4rem;
  height: 100%;
  max-height: 100%;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  height: auto;
}
.nav a {
  margin-left: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 1;
  transition: color 0.2s;
}
.nav a:hover {
  color: #4a90e2;
}

.banner-content {
  position: relative;
  z-index: 11;
  margin: 1.6rem 0 0 8vw;
  color: #fff;
  max-width: 5.8rem;
}
.banner-content h1 {
  font-size: 0.56rem;
  font-weight: bold;
  margin: 0 0 0.18rem 0;
  line-height: 1.2;
}
.banner-content p {
    font-size: 0.21rem;
    line-height: 1.4;
  margin: 0;
}

/* About Us 区块 */
.about-us {
  padding: 64px 8vw 32px 8vw;
  background: transparent;
  position: relative;
}
.about-us h2 {
  text-align: center;
  font-size: 0.5rem;
  margin-bottom: 0.36rem;
  font-weight: bold;
}
.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  flex-wrap: wrap;
}
.about-img {
  position: relative;
  min-width: 4.6rem;
  max-width: 6.4rem;
}
.about-img img:first-child {
  width: 100%;
}
.about-dot-blue {
  position: absolute;
  left: -32px; top: -32px;
  width: 32px;
}
.about-dot-white {
  position: absolute;
  right: -24px; bottom: -24px;
  width: 32px;
}
.about-text {
  font-size: 0.2rem;
  line-height: 1.8;
  max-width: 5.2rem;
  color: #222;
}

/* Company Environment 区块 */
.company-env {
  padding: 64px 8vw 32px 8vw;
  background: transparent;
  text-align: center;
}
.company-env h2 {
  font-size: 0.5rem;
  margin-bottom: 0.36rem;
  font-weight: bold;
}
.env-img {
  display: flex;
  justify-content: center;
}
.env-img img {
  width: 90%;
  max-width: 900px;
}

/* Our Game 区块 */
.our-game {
  padding: 64px 8vw 32px 8vw;
  background: transparent;
  text-align: center;
}
.our-game h2 {
  font-size: 0.5rem;
  margin-bottom: 0.36rem;
  font-weight: bold;
}
.game-content {
  display: flex;
  align-items: center;
  justify-content: center;
flex-direction: column;
}
.game-img img {
  width: 9rem;
}
.game-text {
  font-size: 0.2rem;
  line-height: 1.8;
  max-width: 9rem;
  color: #222;
  text-align: left;
}

/* 底部信息栏 */
.footer {
  position: relative;
  background: transparent;
  min-height: 1.8rem;
  margin-top: 0.48rem;
  padding-bottom: 0.32rem;
}
.footer-bg {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.footer-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 48px;
  color: #fff;
}
.footer-content p {
  margin: 0 0 16px 0;
  font-size: 0.2rem;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  margin-top: 0.08rem;
  margin-bottom: 0;
  height: auto;
}
.footer-links a {
  color: #fff;
  text-decoration: underline;
  font-size: 0.2rem;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.footer-dot-blue {
  position: absolute;
  left: 4vw; bottom: 24px;
  width: 32px;
  z-index: 2;
}
.footer-dot-white {
  position: absolute;
  right: 4vw; bottom: 24px;
  width: 32px;
  z-index: 2;
}

/* 响应式适配 */
/* @media (max-width: 900px) {
  .about-content, .game-content {
    flex-direction: column;
    gap: 0.24rem;
  }
  .banner-content {
    margin: 0.4rem 0 0 4vw;
    max-width: 9rem;
  }
  .env-img img {
    width: 98%;
  }
}
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.16rem 4vw 0 4vw;
  }
  .nav {
    margin-top: 0.08rem;
  }
  .banner-content h1 {
    font-size: 0.15rem;
  }
  .about-us, .company-env, .our-game {
    padding: 0.32rem 2vw 0.16rem 2vw;
  }
  .env-img img, .game-img img {
    border-radius: 0.12rem;
  }
}  */