* {
  margin: 0;
  padding: 0;
  font-family: "Microsoft YaHei UI";
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #666;
}

.home {
  position: relative;
  box-sizing: border-box;
  /* padding: 0 20px 30px; */
  width: 422px;
  margin: 0 auto;
  background: url('../images/bg.png') no-repeat top center;
  background-size: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 15px;
}

/* .logo img{
  width: 336px;
} */

.bg_music {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bg_music a {
  font-size: 16px;
  color: #fff;
}

.bg_music img {
  margin-left: 5px;
  width: 30px;
  height: 30px;
  animation: rotate 1.5s linear infinite;
}

.running {
  animation-play-state: running !important;
}

.paused {
  animation-play-state: paused !important;
}

.flyerSimulator {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.preScreen {
  box-sizing: border-box;
  width: 100%;
  height: 570px;
  position: relative;
}

.swiper-slide {
  box-sizing: border-box;
  padding: 0 20px;
}

.swiper-button {
  width: 50px;
  height: 160px;
  background: #ffffff;
  position: absolute;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  right: -105px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
  padding: 20px 0;
}

.swiper-button>div {
  position: initial;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  padding: 17px;
  margin: 8px auto;
}

.swiper-button .swiper-button-prev {
  background: url("../images/arrow.svg") no-repeat center center;
}

.swiper-button .swiper-button-next {
  background: url("../images/arrow.svg") no-repeat center center;
  transform: rotate(180deg);
}

.swiper-button span {
  font-size: 18px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
}

.unscrambleSwiper {
  height: 100%;
}

.house {
  position: absolute;
  z-index: 999;
  bottom: 0;
  left: 0;
}


.blue-bg {
  position: absolute;
  left: 5px;
  top: 20px;
}

.white_bg {
  position: absolute;
  top: 16px;
  right: -4px;
}

.contentArea {
  height: 100%;
  border-radius: 15px;
  background: url('../images/bg2.png') no-repeat top center;
  text-align: center;
}

.mainTitle {
  margin: 0 auto;
  width: 340px;
}

.subTitle{
  margin: 46px 168px 11px 0;
}

.content1 {
  display: inherit;
  margin: 0 auto;
  width: 100%;
  position: relative;
  top: -23px;
  z-index: -1;
}

.policy-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 17px;
}

.policy-list li {
  width: 320px;
  height: 58px;
  background: #ffffff;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
}

.policy-list span {
  width: 162px;
  display: inline-block;
}

/* 底部 */

.footer {
  box-sizing: border-box;
  padding: 20px 0 10px;
  width: 100%;
  background-color: #a38c09;
  color: #fff;
  font-size: 18px;
}

.footer a {
  color: #ffffff;
}

.foot-list {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.foot-list li {
  width: calc((100% - 20px) / 3);
  text-align: center;
}

.foot-infor {
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
}

.foot-infor a {
  color: #ffffff;
}

.p5 {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 620px) {
  .swiper-button {
    display: none;
  }
}

