:root {
  --baseMargin: 300px;
  --loonathemeColor: #ff9700;
  --baseMainHeight: 60px;
  --progress: 0.8431860993044822;
}

html {
  font-size: 10px;
}

body {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  padding-top: 6rem; /* 确保header不会遮挡页面内容 */
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 4rem;
  }
}


.shop-button {
  border: 1px solid transparent;
  transition: background-color 0.3s;
  border-radius: 30px;
  padding: 8px 24px;
  background-color: var(--loonathemeColor);
  cursor: pointer;

  font-weight: bold;
  font-size: 3.2rem;
  color: #fff;
  line-height: 3.2rem;
  transition: color 0.3s;
}

nav .shop-button {
  color: white !important;
  font-size: 1.6rem;
  line-height: 1.6rem;
}

@media screen and (max-width: 768px) {
  .shop-button {
    padding: 6px 16px;
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
  
  nav .shop-button {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}

/* header nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* 确保header在最顶层 */
}

nav {
  background-color: #fff;
  color: #333;
}

nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  nav ul {
    width: 100%;
    padding: 0;
  }
}

nav ul li {
  list-style: none;
  line-height: 60px;
  height: 60px;
  width: 125px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.4rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

nav ul li a img {
  width: 125px;
}

@media screen and (max-width: 768px) {
  nav ul li {
    width: auto;
    line-height: 4rem;
    height: 40px;
  }

  nav ul li a {
    font-size: 1.2rem;
  }

  nav ul li a img {
    max-width: 60px;
  }
}

#jump-english {
  font-weight: bold;
  color: #333;
  text-decoration: underline;
}

a#jump-english:hover {
  color: var(--loonathemeColor);
}

/* main */
main {
  margin-bottom: 30px;
}


main h1 {
  text-align: center;
  margin-top: 50px;
  font-size: 3.6rem;
}

@media screen and (max-width: 768px) {
  main h1 {
    font-size: 2.5rem;
  }
}

main article {
  width: 50%;
  margin: 0 auto;
  padding: 20px;
}
@media screen and (max-width: 1600px) {
  main article {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  main article {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  main article {
    width: 80%;
  }
}

main article p {
  font-size: 1.5rem;
  line-height: 3.2rem;
  text-align: justify;
  text-justify: inter-word;
}
@media screen and (max-width: 768px) {
  main article p {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
  
}

.home-show {
  position: relative;
  margin-bottom: 0;
}

.home-img {
  display: block;
  width: 100vw; /* 使用视口宽度单位 */
  height: auto;
  object-fit: cover; /* 确保图片按比例填充，可能会裁剪图片的某些部分以适应容器 */
  max-width: 100%; /* 防止图片宽度超过其父容器的宽度 */
}

.home-info {
  position: absolute;
  top: 15%; /* 调整这些值以改变文字的位置 */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.home-info h1 {
  text-align: left;
  font-size: 6rem;
  line-height: 8rem;
  color: rgb(255, 255, 255);
  margin: 0;
}

.home-info h1::before {
  content: "超有趣的宠物机器人";
  white-space: pre;
}

@media screen and (max-width: 1024px) {
  .home-info h1 {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .home-info h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}


.home-funny {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/assets/funny-bg.png);
}

.home-funny-info {
  display: flex;
  margin: 0 auto;
  max-width: 1440px;
  gap: 50px;
}

.home-funny-info__item {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.home-funny-info__item .left {
  padding-left: 50px;
}

.home-funny-info__item .left img {
  max-width: 100%;
  border-radius: 10px;
}

.home-funny-info__item .left h1 {
  color: rgb(255, 255, 255);
  text-align: left;
  margin-bottom: 50px;
}

.home-funny-info__item .right img {
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .home-funny-info__item .left h1 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .home-funny-info {
    flex-direction: column;
    gap: 10px;
  }

  .home-funny-info__item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home-funny-info__item .left {
    padding-left: 0;
  }

  .home-funny-info__item .left img {
    max-width: 100vw;
    border-radius: 0;
    object-fit: cover;
  }

  .home-funny-info__item .left h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .home-funny-info__item .right img {
    max-width: 100vw;
    object-fit: cover;
  }
}


.home-img-wall-title h1 {
  color: #333;
  text-align: center;
  font-size: 5rem;
  margin-top: 100px;
}

.home-img-wall-title h1::before {
  content: "Loona, 宠物 玩伴 朋友 家人";
  white-space: pre;
}

@media screen and (max-width: 768px) {
  .home-img-wall-title h1 {
    font-size: 2.5rem;
    margin-top: 50px;
  }
}

.home-img-wall {
  /* 页面居中 */
  margin: 0 auto;
  width: 70vw;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 0 100px;
  place-items: center;
}

.home-img-wall .box {
  width: calc((70vw - 40px) / 3);
  height: calc((70vw - 40px) / 3);
  background-color: #fff;
  position: relative;
  transition: 1s;
}
@media screen and (max-width: 1024px) {
  .home-img-wall {
    width: 90vw;
  }
  .home-img-wall .box {
    width: calc((90vw - 20px) / 3);
    height: calc((90vw - 20px) / 3);
  }
}


@media screen and (max-width: 768px) {
  .home-img-wall {
    width: 100vw;
    gap: 10px;
    padding: 0;
  }
  
  .home-img-wall .box {
    width: calc((100vw - 20px) / 3);
    height: calc((100vw - 20px) / 3);
  }
}

.home-img-wall .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.home-img-wall .box:nth-child(3n + 1) {
  transform: translate(-250px, 0) scale(0);
}
.home-img-wall .box:nth-child(3n + 2) {
  transform: translate(0, 250px) scale(0);
}
.home-img-wall .box:nth-child(3n + 3) { 
  transform: translate(250px, 0) scale(0);
}
.home-img-wall .box.active {
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width: 1024px) {
  .home-img-wall .box:nth-child(3n + 1) {
    transform: translate(-150px, 0) scale(0);
  }
  .home-img-wall .box:nth-child(3n + 2) {
    transform: translate(0, 150px) scale(0);
  }
  .home-img-wall .box:nth-child(3n + 3) { 
    transform: translate(150px, 0) scale(0);
  }
  .home-img-wall .box.active {
    transform: translate(0, 0) scale(1);
  }
}

@media screen and (max-width: 768px) {
  .home-img-wall .box:nth-child(3n + 1) {
    transform: translate(-50px, 0) scale(0);
  }
  .home-img-wall .box:nth-child(3n + 2) {
    transform: translate(0, 50px) scale(0);
  }
  .home-img-wall .box:nth-child(3n + 3) { 
    transform: translate(50px, 0) scale(0);
  }
  .home-img-wall .box.active {
    transform: translate(0, 0) scale(1);
  }
}

.home-push-pull-title h1 {
  color: #333;
  text-align: center;
  font-size: 5rem;
  margin-top: 80px;
}

.home-push-pull-title h1::before {
  content: "不止有趣，聪明且智慧";
  white-space: pre;
}

.home-push-pull-box {
  display: block;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .home-push-pull-box {
    width: 90%;
  }
}

.home-push-pull-box ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 98px;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .home-push-pull-box ul {
    padding: 0 0 20px;
  }
}

.home-push-pull-box ul li {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 10px;
  cursor: pointer;
  width: 20%;
  height: auto;
  overflow: hidden;
  position: relative;
  transition: width 0.3s;
  margin-right: 11px;
}

.home-push-pull-box ul li:last-child{
  margin-right: 0;
}

.home-push-pull-box ul li.active {
  width: 100%;
}

.home-push-pull-box ul li.active .mask {
  opacity: 0;
}

.home-push-pull-box ul li .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.home-push-pull-box ul li img {
  max-width: 100%;
  border-style: none;
  vertical-align: top;
  object-fit: cover;
  height: 30vw;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .home-push-pull-box ul li img {
    height: 40vw;
  }
}

@media screen and (max-width: 768px) {
  .home-push-pull-title h1 {
    font-size: 2.5rem;
    margin-top: 50px;
  }

  .home-push-pull-box {
    width: 100%;
  }
  
  .home-push-pull-box ul li img {
    height: 50vw;
  }
}

.home-feature-box {
  display: flex;
  justify-content: space-between;
  width: 68%;
  margin: 80px auto 0;
}
@media screen and (max-width: 1800px) {
  .home-feature-box {
    width: 90%;
  }
}

@media screen and (max-width: 1024px) {
  .home-feature-box {
    width: 100%;
    margin: 20px auto;
  }
}

.home-feature-box .text {
  width: 36%;
}

@media screen and (max-width: 1024px) {
  .home-feature-box .text {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.home-feature-box .text .left {
  margin-right: 20px;
}

@media screen and (max-width: 1024px){
  .home-feature-box .text .left {
    padding-left: 10px;
  }
}

.home-feature-box .text h5 {
  font-size: 3rem;
  font-weight: 500;
  color: var(--loonathemeColor);
  line-height: 3rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .home-feature-box .text h5 {
    margin: 10px 0;
  }
}

@media screen and (max-width: 768px){
  .home-feature-box .text h5 {
    font-size: 2rem;
    line-height: 2rem;
    margin: 5px 0 10px 0;
  }
}

.home-feature-box .text h3 {
  font-size: 4rem;
  font-weight: 500;
  color: var(--loonathemeColor);
  line-height: 6rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .home-feature-box .text h3 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .home-feature-box .text h3 {
    font-size: 3vw;
    line-height: 4vw;
  }
}

@media screen and (max-width: 768px) {
  .home-feature-box .text h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2rem;
    margin: 5px 0 10px 0;
  }
}


.home-feature-box .text h5 + h3 {
  color: #2e2e2e;
}

@media screen and (max-width: 768px) {
  .home-feature-box .text h5 + h3 {
    display: none;
  }
}

.home-feature-box .text p {
  font-size: 2rem;
  color: #666666;
  line-height: 3.2rem;
  text-align: justify;
  text-justify: inter-word;
}
@media screen and (max-width: 1300px) {
  .home-feature-box .text p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .home-feature-box .text p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 820px) {
  .home-feature-box .text p {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}

@media screen and (max-width: 768px) {
  .home-feature-box .text p {
    font-size: 2vw;
    line-height: 4vw;
    text-align: justify;
    text-justify: inter-word;
  }
}

.home-feature-box .media {
  flex: 1;
  width: 80%;
  height: 100%;
  overflow: hidden;
}

.home-feature-box .media img {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.ai-swiper-top {
  background-color: white;
}
.ai-swiper-container {
  margin-left: 16%;
  padding: 109px 0;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 768px) {
  .ai-swiper-container {
    margin: 0;
    padding: 20px 0;
  }
  
}

.ai-swiper-container h3 {
  font-size: 5rem;
  line-height: 7rem;
  font-weight: 700;
  color: #1f1e1e;
}

@media screen and (max-width: 768px) {
  .ai-swiper-container h3 {
    font-size: 2.5rem;
    line-height: 3rem;
    text-align: center;
    margin-top: 30px;
  }
}

.ai-swiper-container .ai-swiper {
  margin-top: 49px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .ai-swiper-container .ai-swiper .slide-content p {
    font-size: 9px;
  }
}
@media screen and (max-width: 768px) {
  .ai-swiper-container .ai-swiper {
    margin-top: 0;
  }
}

.game-swiper-top {
  background-color: white;
}
.game-swiper-container {
  padding: 80px 0;
  overflow: hidden;
}
.game-swiper-container h1 {
  color: #333;
  text-align: center;
  font-size: 5rem;
  margin-bottom: 80px;
}
.game-swiper-container h1::before {
  content: "妙趣横生，无穷无尽";
  white-space: pre;
}

@media screen and (max-width: 768px) {
  .game-swiper-container {
    padding: 20px 0;
  }

  .game-swiper-container h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}



.chip-show {
  position: relative;
  height: 200vh;
  transform: scale(var(--progress, 0.8));
  opacity: var(--progress, 0.8);
  transition: all 0.2s;
}

.chip-show .sticky {
  position: -webkit-sticky;
  position: sticky;
  top: var(--baseMainHeight);
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .chip-show .sticky {
    top: 40px;
  }
}

.chip-show .sticky .media-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.chip-show .sticky .media-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chip-show .sticky .media-wrapper .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(225, 225, 225, 0.35);
}

.chip-show .chip-content {
  position: relative;
  height: 100%;
  z-index: 3;
  text-align: center;
}

.chip-show .chip-content ul {
  list-style: none;
  position: relative;
  padding: 15vh 0;
  margin: 0;
}

.chip-show .chip-content ul li {
  color: #fff;
  transition: transform 0.8s, opacity 0.8s;
}

.chip-show .chip-content ul li:first-of-type {
  padding-bottom: 60px;
}

.chip-show .chip-content ul li h2 {
  font-size: 6rem;
  font-weight: 500;
  line-height: 6rem;
  color: #2b2b2b;
}

@media screen and (max-width: 768px) {
  .chip-show .chip-content ul li h2 {
    font-size: 5rem;
    line-height: 5rem;
  }
}

.chip-show .chip-content ul li p {
  font-size: 3.6rem;
  line-height: 3.6rem;
  color: #2b2b2b;
  text-align: center;
}

.chip-show .chip-content ul li #number-counter {
  font-size: 10rem;
  font-weight: bold;
  color: #2b2b2b;
  line-height: 6.8rem;
  margin: 24px 0 24px;
}
@media screen and (max-width: 1024px) {
  .chip-show .chip-content ul li #number-counter {
    font-size: 8rem;
    line-height: 6rem;
    margin: 10px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .chip-show .chip-content ul li p {
    font-size: 3rem;
    line-height: 4.5rem;
  }

  .chip-show .chip-content ul li #number-counter {
    font-size: 6rem;
    line-height: 6rem;
    margin: 10px 0 10px;
  }
}
@media screen and (max-width: 600px) {
  .chip-show .chip-content ul li p {
    font-size: 2rem;
    line-height: 2rem;
  }

  .chip-show .chip-content ul li #number-counter {
    font-size: 4rem;
    line-height: 4rem;
    margin: 10px 0 10px;
  }
}

.home-app-top {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .home-app-top {
    padding: 40px 0;
  }
}

.home-app-container {
  width: 68%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .home-app-container {
    width: 90%;
  }
}

.home-app-container li {
  list-style: none;
}

.home-app-content {
  position: relative;
  padding: 68px;
  background: #fff;
  border-radius: 29px;
  margin-bottom: 50px;
  transform: translateY(200px);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
@media screen and (max-width: 1600px) {
  .home-app-content {
    padding: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .home-app-content {
    padding: 20px;
  }

  .home-app-content .shop-button {
    font-size: 2rem;
    line-height: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .home-app-content {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 530px) {
  .home-app-content .shop-button {
    width: 60px;
    height: 15px;
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
}

.home-app-content.visible {
  transform: translateY(0);
  opacity: 1;
}

.home-app-content-info {
  display: flex;
  justify-content: space-between;
}

.home-app-content-info > div {
  width: 50%;
}

.home-app-content-info div {
  flex: 1;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .home-app-content-info > div {
    margin-right: 5px;
  }
}

.home-app-content-info div h3 {
  margin: 0;
  font-size: 4rem;
  font-weight: bold;
  color: #000000;
  line-height: 6rem;
}
@media screen and (max-width: 1600px) {
  .home-app-content-info div h3 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .home-app-content-info div h3 {
    font-size: 2rem;
    line-height: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .home-app-content-info div h3 {
    font-size: 2rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 530px) {
  .home-app-content-info div h3 {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}

.home-app-content-info div p {
  margin-top: 20px;
  font-size: 2.6rem;
  color: #666666;
  line-height: 3.2rem;
}
@media screen and (max-width: 1600px) {
  .home-app-content-info div p {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .home-app-content-info div p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .home-app-content-info div p {
    margin-top: 10px;
    font-size: 1.5rem;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 530px) {
  .home-app-content-info div p {
    margin-top: 10px;
    font-size: 9px;
    line-height: 15px;
  }
}

.home-app-content-info div .shop-button {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .home-app-content-info div .shop-button {
    margin-top: 0;
  }
}

.home-app-content-info img {
  width: 40%;
  height: 100%;
  object-fit: cover;
}

.home-app-content-info .img-wrapper {
  margin-right: 66px;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .home-app-content-info .img-wrapper {
    margin-right: 10px;
  }
}

.home-app-content-info .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-app-content .icon-list {
  display: grid;
  row-gap: 35px;
  column-gap: 50px;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  margin-top: 15px;
}

.home-app-content ul {
  list-style: none;
  padding: 0;
}

.home-app-content .icon-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-app-content .icon-list li img {
  width: 148px;
  height: 148px;
}

.home-app-content .icon-list li p {
  font-size: 2.6rem;
  color: #666666;
  font-family: SlatePro;
  text-align: center;
  line-height: 3rem;
}

@media screen and (max-width: 1024px) {
  .home-app-content .icon-list li img {
    width: 100px;
    height: 100px;
  }
  .home-app-content .icon-list li p {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .home-app-content .icon-list li img {
    width: 70px;
    height: 70px;
  }
  
  .home-app-content .icon-list li p {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
@media screen and (max-width: 530px) {
  .home-app-content .icon-list li img {
    width: 50px;
    height: 50px;
  }
  
  .home-app-content .icon-list li p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.home-app-content > h3 {
  text-align: center;
  font-size: 5rem;
  font-weight: 500;
  color: #000000;
  line-height: 6rem;
  margin: 0;
}
@media screen and (max-width: 1600px) {
  .home-app-content > h3 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .home-app-content > h3 {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
}

@media screen and (max-width: 768px) {
  .home-app-content > h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 530px) {
  .home-app-content > h3 {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

.home-app-content > p {
  text-align: center;
  margin-top: 20px;
  font-size: 2.6rem;
  color: #666666;
  line-height: 3.2rem;
}
@media screen and (max-width: 1600px) {
  .home-app-content > p {
    font-size: 2rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .home-app-content > p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .home-app-content > p {
    margin-top: 10px;
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 530px) {
  .home-app-content > p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.home-cpu-icon-top {
  padding: 75px 0 111px;
}
@media screen and (max-width: 768px) {
  .home-cpu-icon-top {
    padding: 60px 0 40px;
  }
}

.home-cpu-icon-container {
  width: 68%;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .home-cpu-icon-container {
    width: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .home-cpu-icon-container {
    width: 100%;
  }
}

.home-cpu-icon-container p {
  font-size: 3rem;
  color: #666666;
  line-height: 4.5rem;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .home-cpu-icon-container p.mobile {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .home-cpu-icon-container p.pc {
    display: none;
  }
  
  .home-cpu-icon-container p.mobile {
    font-size: 1.8rem;
    line-height: 2.3rem;
    width: 100%;
  }
}

.home-cpu-icon-container .cpu-icon-list {
  display: grid;
  row-gap: 58px;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  width: 85%;
  margin: 90px auto;
}

@media screen and (max-width: 768px) {
  .home-cpu-icon-container .cpu-icon-list {
    gap: 20px;
    margin: 20px auto;
  }
}

.home-cpu-icon-container ul {
  list-style: none;
  padding: 0;
}

.home-cpu-icon-container .cpu-icon-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.home-cpu-icon-container .cpu-icon-list li img {
  width: auto;
  height: auto;
  margin-bottom: 19px;
}

.home-cpu-icon-container .cpu-icon-list li p {
  color: #000000;
  white-space: nowrap;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .home-cpu-icon-container .cpu-icon-list li img {
    width: 60px;
    height: 60px;
  }

  .home-cpu-icon-container .cpu-icon-list li p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}

@keyframes iconsAnimationed {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.d1 {
  animation-delay: 0.1s !important;
}
.d2 {
  animation-delay: 0.2s !important;
}
.d3 {
  animation-delay: 0.3s !important;
}
.d4 {
  animation-delay: 0.4s !important;
}
.d5 {
  animation-delay: 0.5s !important;
}
.d6 {
  animation-delay: 0.6s !important;
}
.d7 {
  animation-delay: 0.7s !important;
}
.d8 {
  animation-delay: 0.8s !important;
}
.d9 {
  animation-delay: 0.9s !important;
}
.home-cpu-icon-animation {
  animation: iconsAnimationed 0.5s ease-out;
  -webkit-animation: iconsAnimationed 0.5s ease-out;
  animation-fill-mode: forwards;
}



.home-specs-top {
  padding-bottom: 80px;
}
.home-specs-container {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .home-specs-container {
    width: 95%;
  }
}

.home-specs-container h2 {
  font-size: 5rem;
  font-weight: 500;
  color: #141414;
  line-height: 6rem;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .home-specs-container h2 {
    font-size: 3rem;
    line-height: 4.5rem;
    margin-bottom: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 600px) {
  .home-specs-container h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

.home-specs-container .info {
  display: grid;
  row-gap: 50px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .home-specs-container .info {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}

.home-specs-container .info ul {
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .home-specs-container .info ul {
    margin: 0;
  }
}

.home-specs-container .info .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .home-specs-container .info .item {
    margin-bottom: 20px;
  }
}

.home-specs-container .info .item .title {
  font-size: 2rem;
  color: #292929;
  line-height: 2.4rem;
  width: 25%;
  margin-right: 50px;
}
@media screen and (max-width: 1300px) {
  .home-specs-container .info .item .title {
    margin-right: 0;
    width: 25%;
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .home-specs-container .info .item .title {
    width: 20%;
    margin: 0 20px 0 20px;
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 600px) {
  .home-specs-container .info .item .title {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}

.home-specs-container .info .item .desc {
  flex: 1;
  font-size: 2rem;
  color: #666666;
  line-height: 2.4rem;
  padding-right: 30px;
}
@media screen and (max-width: 1300px) {
  .home-specs-container .info .item .desc {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .home-specs-container .info .item .desc {
    font-size: 1.8rem;
    line-height: 2.4rem;
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .home-specs-container .info .item .desc {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}

.home-buy-top {
  margin:  0;
}
.home-buy-container {
  width: 68%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px){
  .home-buy-container {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .home-buy-container {
    width: 90%;
  }
}

.home-buy-container .content {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.home-buy-container .content div {
  flex: 1;
}

.home-buy-container .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-buy-container .content .text-wrapper {
  width: 50%;
  padding: 68px 63px;
}
@media screen and (max-width: 1730px) {
  .home-buy-container .content .text-wrapper {
    padding: 30px 0 30px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .home-buy-container .content .text-wrapper {
    padding: 20px 0 20px 20px;
  }
}

.home-buy-container .content .text-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-buy-container .content .text-wrapper .icon {
  width: 46px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .home-buy-container .content .text-wrapper .icon {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .home-buy-container .content .text-wrapper .icon {
    width: 35px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 400px) {
  .home-buy-container .content .text-wrapper .icon {
    width: 30px;
  }
}

.home-buy-container .content .text-wrapper h3 {
  margin: 0;
  white-space: nowrap;
  font-size: 5rem;
  color: #202020;
  line-height: 5.5rem;
  font-weight: 600;
}
@media screen and (max-width: 1366px) {
  .home-buy-container .content .text-wrapper h3 {
    font-size: 2.8rem;
    line-height: 3.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .home-buy-container .content .text-wrapper h3 {
    font-size: 3rem;
    line-height: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .home-buy-container .content .text-wrapper h3 {
    font-size: 3rem;
    line-height: 4.5rem;
  }
}
@media screen and (max-width: 600px) {
  .home-buy-container .content .text-wrapper h3 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
@media screen and (max-width: 400px) {
  .home-buy-container .content .text-wrapper h3 {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

.home-buy-container .content .text-wrapper p {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 3rem;
  font-family: SlatePro;
  color: #666666;
  line-height: 3.4rem;
}
@media screen and (max-width: 1366px) {
  .home-buy-container .content .text-wrapper p {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .home-buy-container .content .text-wrapper p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .home-buy-container .content .text-wrapper .shop-button {
    margin-top: 0;
    width: 80px;
    height: 20px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  .home-buy-container .content .text-wrapper p {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
}
@media screen and (max-width: 768px) {
  .home-buy-container .content .text-wrapper p {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 3rem;
  }

  .home-buy-container .content .text-wrapper .shop-button {
    margin-top: 0;
    width: 120px;
    height: 40px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .home-buy-container .content .text-wrapper p {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }

  .home-buy-container .content .text-wrapper .shop-button {
    margin-top: 0;
    width: 80px;
    height: 20px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 400px) {
  .home-buy-container .content .text-wrapper p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .home-buy-container .content .text-wrapper .shop-button {
    margin-top: 0;
    width: 60px;
    height: 15px;
    font-size: 1.2rem;
  }
}

/* footer */
footer {
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0 0 20px 0;
  }
}

.footer-box {
  /* padding: 0 !important; */
  max-width: 1230px;
  margin: 0 auto;
}

.footer-content {
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .footer-content {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
  }
}

.footer-content__item {
  flex: 1;
  text-align: left;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .footer-content__item {
    text-align: center;
    padding: 0 5px;
  }
}

.footer-content__item h4 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .footer-content__item h4 {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}

.footer-content__item ul {
  padding: 0;
  margin: 0;
}

.footer-content__item ul li {
  list-style: none;
  padding: 0;
  line-height: 2.5rem;
}
.footer-content__item ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
}
@media screen and (max-width: 768px) {
  .footer-content__item ul li a {
    font-size: 1.2rem;
  }
}

.footer-content__item dl {
  padding: 0;
  margin: 0;
}

.footer-content__item dl dt {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

/* 前面有dd的dt设置margin-top为10px */
.footer-content__item dl dd + dt {
  margin-top: 15px;
}

.footer-content__item dl dd {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

.footer-content__item p {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

.footer-content__item form {
  margin-top: 5px;
}

/* 增大form下的input输入框 */
.footer-content__item form input {
  width: 75%;
  height: 20px;
  padding: 0 10px;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .footer-content__item form input {
    width: 50%;
    margin-right: 5px;
  }
}

.footer-content__item .icon-link {
  margin-top: 20px;
}

.footer-content__item .icon-link ul {
  display: flex;
  justify-content: flex-start;
}

.footer-content__item .icon-link ul li {
  margin-right: 5px;
}


.footer-divider ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.footer-divider li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  flex-direction: column;
}

li.li-go-top {
  cursor: pointer;
  width: 20%;
}
@media screen and (max-width: 1024px) {
  li.li-go-top {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  li.li-go-top {
    width: 50%;
  }
}

.li-go-top p {
  margin-top: 0;
}

hr {
  border: none;
  height: 1px;
  background-color: #333; /* 下划线颜色 */
  position: absolute;
  width: 100%;
}

.footer-divider li img {
  width: 50px; /* 根据需要调整图片大小 */
  height: auto;
  z-index: 1; /* 确保图片在下划线之上 */
}
@media screen and (max-width: 768px) {
  .li-go-top p {
    font-size: 1.2rem;
  }
  .footer-divider li img {
    width: 32px;
  }
}

.footer-bottom ul {
  list-style: none;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer-bottom ul {
    padding: 0;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
}

.footer-bottom li p {
  text-align: left;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .footer-bottom li p {
    text-align: center;
    font-size: 1rem;
  }
}

.footer-bottom a {
  text-decoration: none;
  color: #333;
}

.footer-bottom a:hover {
  color: rgba(0, 0, 0, 0.384);
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 20%;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 80%;
  }
}

.modal-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.modal-content ul {
  list-style: none;
  padding: 0;
}

.modal-content .shop-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-content .shop-list li {
  display: flex;
}

.shop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.modal-content .shop-item img {
  width: 50px;
  height: 50px;
}

.modal-content .shop-item p {
  font-size: 1.4rem;
  color: rgb(112, 112, 112);
  font-weight: 500;
  margin-top: 0.5rem;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  color: #aaa;
  float: right;
  font-size: 2.8rem;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
