.body {
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  position: relative;
}
section {
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.page1 {
  background: linear-gradient(32deg, #FFE5BF, #FFFAF0);
}
.page1 .midContent {
  position: absolute;
  top: 0;
  left: 50%;
  width: 580px;
  height: 100vh;
  margin-left: -290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}
.page1 .midContent .midTop {
  padding-top: 50px;
  width: 240px;
}
.page1 .midContent .midTop .topNum {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  height: 65px;
}
.page1 .midContent .midTop .topHeartBox {
  width: 80px;
  height: 70px;
  position: relative;
}
.page1 .midContent .midTop .topNum .topHeart {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 50px;
  animation: 1s topHeart;
  animation-iteration-count: infinite;
}
@keyframes topHeart {
  0% {
    top: 0;
    left: 0;
    width: 80px;
    height: 70px;
  }
  100% {
    top: 10px;
    left: 10px;
    width: 60px;
    height: 50px;
  }
}
.page1 .midContent .midTop .topTxt {
  box-sizing: border-box;
  width: 100%;
  line-height: 44px;
  border: 1px solid #949494;
  border-radius: 22px;
  text-align: center;
  margin-top: 8px;
}
.page1 .midWebNameBox {
  position: absolute;
  left: 50%;
  top: 350px;
  width: 580px;
  height: 140px;
  margin-left: -290px;
  border-radius: 10px;
  animation: 2s midWebNameBox;
  animation-fill-mode: forwards;
  transition-timing-function: linear;
}
.page1 .midWebNameBox .midInfo {
  margin-top: 70px;
  width: 100%;
}
@keyframes midWebNameBox {
  0% {
    top: 0;
    transform: rotate(0deg);
  }
  100% {
    top: 350px;
    transform: rotate(1080deg);
  }
}
.page1 .midWebNameBox .midWebName {
  animation: 1s midWebName;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
  transition-timing-function: linear;
}
.page1 .midWebNameBox .midWebName img {
  width: 100%;
}
@keyframes midWebName {
  0% {
    width: 100%;
    margin-left: 0%;
    margin-top: 0%;
  }
  15% {
    width: 110%;
    margin-top: -3%;
    margin-left: -5%;
  }
  30% {
    width: 100%;
    margin-left: 0%;
    margin-top: 0%;
  }
  45% {
    width: 110%;
    margin-top: -3%;
    margin-left: -5%;
  }
  60% {
    width: 100%;
    margin-left: 0%;
    margin-top: 0;
  }
  85% {
    width: 110%;
    margin-top: -3%;
    margin-left: -5%;
  }
  100% {
    margin-top: 0%;
    margin-left: 0%;
    width: 100%;
  }
}
.page1 .midWebNameBox .midWebName .midName {
  animation: 2s midName;
  animation-delay: 5s;
  animation-iteration-count: infinite;
}
@keyframes midName {
  0% {
    transform: rotate(10deg);
  }
  10% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.page1 .midBtn {
  position: absolute;
  bottom: 50px;
  z-index: 9;
  width: 450px;
  height: 216px;
  opacity: 0;
}
.page1 .midBtn .btnTop,
.page1 .midBtn .btnBottom {
  width: 450px;
  line-height: 96px;
  text-align: center;
  background-size: 450px 96px;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 600;
}
.page1 .midBtn .btnTop {
  background-image: url(../img/btn_denglu.png);
}
.page1 .midBtn .btnBottom {
  background-image: url(../img/btn_zhuce.png);
  margin-top: 24px;
}
.page1 .imgLeft {
  position: absolute;
  top: 20px;
  left: 0;
  width: 41%;
  animation: 5s imgLeft;
}
@keyframes imgLeft {
  0% {
    top: 0px;
    left: -20%;
    width: 30%;
    opacity: 0.3;
  }
  100% {
    top: 20px;
    left: 0;
    width: 41%;
    opacity: 1;
  }
}
.page1 .imgLeft .imgLeftC {
  animation: 3s imgLeftC;
  animation-delay: 8s;
  animation-iteration-count: infinite;
}
@keyframes imgLeftC {
  0% {
    margin-left: -50px;
    opacity: 0.5;
  }
  100% {
    margin-left: 0;
    opacity: 1;
  }
}
.page1 .imgRight {
  position: absolute;
  top: 50px;
  right: 0;
  width: 50%;
  animation: 5s imgRight;
}
@keyframes imgRight {
  0% {
    top: 0px;
    right: -20%;
    width: 30%;
    opacity: 0.3;
  }
  100% {
    top: 50px;
    right: 0;
    width: 50%;
    opacity: 1;
  }
}
.page1 .imgRight .imgRightC {
  animation: 3s imgRightC;
  animation-delay: 8s;
  animation-iteration-count: infinite;
}
@keyframes imgRightC {
  0% {
    margin-left: 5%;
    opacity: 0.5;
  }
  100% {
    margin-left: 0%;
    opacity: 1;
  }
}
.page2 {
  background-image: url(../img/by_jiangli.png);
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.page2 .top {
  width: 1400px;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page2 .top .leftOne {
  width: 260px;
  height: 555px;
  animation: 2s leftOne;
}
.page2 .top .leftOne .leftOneImg {
  width: 100%;
}
@keyframes leftOne {
  0% {
    margin-top: -1055px;
  }
  100% {
    margin-top: 0;
  }
}
.page2 .top .rightYear {
  width: 897px;
  height: 384px;
  animation: 5s rightYear;
}
.page2 .top .rightYear .rightYearImg {
  width: 100%;
}
@keyframes rightYear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page2 .bottom {
  width: 1438px;
  height: 300px;
  background: rgba(255, 255, 255, 0.64);
  margin-bottom: 50px;
}
.page2 .bottom .newData {
  font-weight: 400;
  font-size: 48px;
  color: #8E633D;
  width: 100%;
  text-align: center;
  line-height: 100px;
}
.page2 .bottom .dataInfo {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.page2 .bottom .dataInfo .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #C9C9C9;
  width: 33%;
}
.page2 .bottom .dataInfo .info:nth-child(3) {
  border: none;
}
.page2 .bottom .dataInfo .info span:nth-child(1), .page2 .bottom .dataInfo .info div:nth-child(1) {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 80px;
  color: #DB2F24;
}
.page2 .bottom .dataInfo .info span:nth-child(2) {
  font-family: Malgun Gothic;
  font-weight: 400;
  font-size: 24px;
  color: #917248;
  line-height: 80px;
}
.page3 {
  background-image: url(../img/bg_xiaoxi.png);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.page3 .leftPhone {
  width: 590px;
  height: 845px;
  background-image: url(../img/img_phone.png);
  background-size: 590px 845px;
  position: relative;
}
.page3 .leftPhone .leftPhoneImg {
  position: absolute;
  top: 10px;
  left: -5px;
  width: 565px;
  height: 800px;
  animation: 3s leftPhoneImg;
  /* animation-delay: 8s; */
  animation-iteration-count: infinite;
}
@keyframes leftPhoneImg {
  0% {
    opacity: 0.3;
    top: 10px;
    left: -5px;
    width: 565px;
    height: 800px;
  }
  100% {
    opacity: 1;
    top: 0px;
    left: -15px;
    width: 605px;
    height: 830px;
  }
}
.page3 .leftPhone .leftMsg1 {
  position: absolute;
  top: -82px;
  left: 95px;
  width: 96px;
  height: 82px;
  /*transform: rotate(30deg);*/
  animation: 3s leftMsg1;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  opacity: 0;
}
@keyframes leftMsg1 {
  0% {
    top: 0;
    left: 193px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  80% {
    top: -82px;
    left: 95px;
    width: 96px;
    height: 82px;
    opacity: 1;
  }
  100% {
    top: -82px;
    left: 95px;
    width: 96px;
    height: 82px;
    opacity: 1;
  }
}
.page3 .leftPhone .leftPhoneTxt {
  width: 100%;
  position: absolute;
  bottom: 50px;
  left: 0;
  color: #000000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.page3 .leftPhone .leftPhoneTxt .txtTop {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 20px;
}
.page3 .leftPhone .leftPhoneTxt .txtTop span:nth-child(1) {
  font-weight: 700;
  font-size: 150px;
}
.page3 .leftPhone .leftPhoneTxt .txtTop span:nth-child(2) {
  font-weight: 600;
  font-size: 60px;
}
.page3 .leftPhone .leftPhoneTxt .txtTop span:nth-child(3) {
  font-weight: 500;
  font-size: 40px;
}
.page3 .txtButton {
  width: 450px;
  line-height: 96px;
  margin-top: 20px;
  text-align: center;
  background-size: 450px 96px;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 600;
  background-image: url(../img/btn_denglu.png);
}
.page3 .rightPeople {
  width: 816px;
  height: 970px;
  position: relative;
  margin-left: 180px;
}
.page3 .rightPeople .rightPeopleImg {
  width: 816px;
  height: 970px;
}
.page3 .rightPeople .rightTop {
  position: absolute;
  top: 34px;
  left: -180px;
  width: 456px;
  height: 321px;
}
.page3 .rightPeople .rightMsg1 {
  position: absolute;
  top: 510px;
  left: -125px;
  width: 96px;
  height: 82px;
  animation: 3s rightMsg1;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  opacity: 0;
}
@keyframes rightMsg1 {
  0% {
    top: 589px;
    left: -30px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  80% {
    top: 510px;
    left: -125px;
    width: 96px;
    height: 82px;
    opacity: 1;
  }
  100% {
    top: 510px;
    left: -125px;
    width: 96px;
    height: 82px;
    opacity: 1;
  }
}
@keyframes rightMsg11 {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  20% {
    transform: rotate(10deg);
    opacity: 1;
  }
  40% {
    transform: rotate(0deg);
    opacity: 1;
  }
  60% {
    transform: rotate(10deg);
    opacity: 1;
  }
  80% {
    transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}
.page3 .rightPeople .rightMsg2 {
  position: absolute;
  top: 365px;
  left: -90px;
  width: 132px;
  height: 114px;
  animation: 3s rightMsg2;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  opacity: 0;
}
@keyframes rightMsg2 {
  0% {
    top: 479px;
    left: 42px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  80% {
    top: 365px;
    left: -90px;
    width: 132px;
    height: 114px;
    opacity: 1;
  }
  100% {
    top: 365px;
    left: -90px;
    width: 132px;
    height: 114px;
    opacity: 1;
  }
}
.page3 .rightPeople .rightMsg3 {
  position: absolute;
  top: 450px;
  left: 100px;
  width: 70px;
  height: 58px;
  animation: 3s rightMsg3;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  opacity: 0;
}
@keyframes rightMsg3 {
  0% {
    top: 507px;
    left: 90px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  80% {
    top: 450px;
    left: 100px;
    width: 70px;
    height: 58px;
    opacity: 1;
  }
  100% {
    top: 450px;
    left: 100px;
    width: 70px;
    height: 58px;
    opacity: 1;
  }
}
@keyframes rightMsg33 {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  20% {
    transform: rotate(10deg);
    opacity: 1;
  }
  40% {
    transform: rotate(0deg);
    opacity: 1;
  }
  60% {
    transform: rotate(10deg);
    opacity: 1;
  }
  80% {
    transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}
.page4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../img/bg_xingqiu.png);
  position: relative;
}
.page4 .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page4 .title .titleTop {
  width: 637px;
  height: 27px;
  margin-top: 25%;
  animation: 8s titleTop;
  /* animation-delay: 0s; */
  /* animation-iteration-count: infinite; */
}
@keyframes titleTop {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page4 .title .titleBottom {
  width: 948px;
  height: 171px;
  margin-top: 10%;
  animation: 4s titleBottom;
  /* animation-delay: 0s; */
  /* animation-iteration-count: infinite; */
}
@keyframes titleBottom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page4 .icons {
  margin-top: 5%;
  width: 1200px;
  height: 350px;
  position: relative;
}
.page4 .animateTouxiang {
  /* 动画设置 */
  -webkit-animation: slide-in-blurred-bottom 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-blurred-bottom 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2024-6-28 14:3:3
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-blurred-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-blurred-bottom {
  0% {
    -webkit-transform: scaleY(0) scaleX(0);
    transform: scaleY(0) scaleX(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleY(1) scaleX(1);
    transform: scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slide-in-blurred-bottom {
  0% {
    -webkit-transform: scaleY(0) scaleX(0);
    transform: scaleY(0) scaleX(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleY(1) scaleX(1);
    transform: scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
.page4 .img_touxiang1 {
  width: 84px;
  height: 101px;
  position: absolute;
  top: 75px;
  left: 55%;
}
.page4 .img_touxiang2 {
  width: 88px;
  height: 100px;
  position: absolute;
  top: 148px;
  left: 30%;
}
.page4 .img_touxiang3 {
  width: 150px;
  height: 134px;
  position: absolute;
  top: 175px;
  left: 75%;
}
.page4 .img_touxiang4 {
  width: 120px;
  height: 143px;
  position: absolute;
  top: 210px;
  left: 40%;
}
.page4 .img_touxiang5 {
  width: 103px;
  height: 118px;
  position: absolute;
  top: 260px;
  left: 55%;
}
.page4 .img_touxiang6 {
  width: 49px;
  height: 60px;
  position: absolute;
  top: 60px;
  left: 25%;
}
.page4 .img_touxiang7 {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 90px;
  left: 85%;
}
.page4 .img_touxiang8 {
  width: 49px;
  height: 61px;
  position: absolute;
  top: 205px;
  left: 0;
}
.page4 .img_touxiang9 {
  width: 49px;
  height: 60px;
  position: absolute;
  top: 140px;
  left: 14%;
}
.page4 .img_touxiang10 {
  width: 55px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -27px;
}
.page4 .img_touxiang11 {
  width: 73px;
  height: 62px;
  position: absolute;
  top: 70px;
  left: 66%;
}
.page4 .img_touxiang12 {
  width: 105px;
  height: 90px;
  position: absolute;
  top: 217px;
  right: 0;
}
.page4 .img_touxiang13 {
  width: 93px;
  height: 100px;
  position: absolute;
  top: 152px;
  left: 10%;
}
.page4 .img_1xingqiu {
  position: absolute;
  top: 500px;
  left: -300px;
}
.page4 .img_2xingqiu {
  position: absolute;
  top: 150px;
  left: 950px;
}
.page4 .img_3xingqiu {
  position: absolute;
  top: 100px;
  left: 120px;
  animation: 10s img_3xingqiu;
  animation-timing-function: linear;
  /* animation-delay: 0s; */
  animation-iteration-count: infinite;
}
@keyframes img_3xingqiu {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page5 {
  position: relative;
  background-image: url(../img/bg_zisexin.png);
  display: flex;
  align-items: center;
}
.page5 .img_kiss {
  width: 1356px;
  height: 974px;
  position: absolute;
  right: 0;
  bottom: 0;
  animation: 5s img_kiss;
  /* animation-delay: 0s; */
  /* animation-iteration-count: infinite; */
}
@keyframes img_kiss {
  0% {
    right: -1356px;
  }
  100% {
    right: 0;
  }
}
.page5 .page5Content {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 778px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page5 .page5Content .page5Top {
  width: 778px;
  height: 484px;
  background-image: url(../img/img_love.png);
  background-size: 778px 484px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: 4s page5Top;
  /* animation-delay: 1s; */
  /* animation-iteration-count: infinite; */
}
@keyframes page5Top {
  0% {
    margin-left: -900px;
  }
  100% {
    margin-left: 0px;
  }
}
.page5 .txtButton {
  width: 450px;
  line-height: 96px;
  margin-top: 20px;
  text-align: center;
  background-size: 450px 96px;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 600;
  background-image: url(../img/btn_zhuce.png);
  animation: 2s txtButton;
  /* animation-delay: 1s; */
  /* animation-iteration-count: infinite; */
}
@keyframes txtButton {
  0% {
    margin-top: 100vh;
  }
  100% {
    margin-top: 20px;
  }
}
.page6 {
  background-image: url(../img/bg_heiye.png);
  position: relative;
}
.page6 .page6Content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 986px;
  height: 240px;
  margin-top: -55px;
  margin-left: -493px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9;
  /* animation: 10s page6Content; */
  /* animation-delay: 1s; */
  /* animation-iteration-count: infinite; */
}
.page6 .titlre_ye {
  width: 986px;
  height: 149px;
  animation: 5s titlre_ye;
}
@keyframes titlre_ye {
  0% {
    opacity: 0;
    width: 986px;
    height: 149px;
  }
  79% {
    opacity: 0;
    width: 3944px;
    height: 596px;
  }
  85% {
    opacity: 0.5;
    width: 3944px;
    height: 596px;
  }
  90% {
    opacity: 1;
    width: 986px;
    height: 149px;
  }
  95% {
    opacity: 0.5;
    width: 3944px;
    height: 596px;
  }
  100% {
    opacity: 1;
    width: 986px;
    height: 149px;
  }
}
.page6 .titlre_yezi {
  width: 617px;
  height: 32px;
  margin-top: 40px;
  animation: 10s titlre_yezi;
}
@keyframes titlre_yezi {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page6 .img_nv3 {
  position: absolute;
  bottom: 0;
  left: calc(50% - 177px - 230px - 384px);
  width: 348px;
  z-index: 6;
  animation: 5s img_nv3;
  /* animation-delay: 1s; */
  /* animation-iteration-count: infinite; */
}
@keyframes img_nv3 {
  0% {
    left: -348px;
  }
  100% {
    left: calc(50% - 177px - 230px - 384px);
  }
}
.page6 .img_nv1 {
  width: 477px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 379px - 230px);
  z-index: 7;
  animation: 3s img_nv1;
  /* animation-delay: 1s; */
  /* animation-iteration-count: infinite; */
}
@keyframes img_nv1 {
  0% {
    left: -477px;
  }
  100% {
    left: calc(50% - 379px - 230px);
  }
}
.page6 .img_nan1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 460px;
  margin-left: -230px;
  z-index: 8;
  animation: 1s img_nan1;
  /* animation-delay: 1s; */
  /* animation-iteration-count: infinite; */
}
@keyframes img_nan1 {
  0% {
    bottom: -100vh;
  }
  100% {
    bottom: 0;
  }
}
.page6 .img_nv2 {
  position: absolute;
  bottom: 0;
  left: calc(50% + 333px);
  width: 366px;
  margin-left: -183px;
  z-index: 7;
  animation: 3s img_nv2;
  /* animation-delay: 1s; */
  /* animation-iteration-count: infinite; */
}
@keyframes img_nv2 {
  0% {
    left: 100%;
  }
  100% {
    left: calc(50% + 333px);
  }
}
.page6 .img_nv4 {
  position: absolute;
  bottom: 0;
  left: calc(50% + 333px + 280px);
  width: 610px;
  margin-left: -305px;
  animation: 5s img_nv4;
  /* animation-delay: 1s; */
  /* animation-iteration-count: infinite; */
}
@keyframes img_nv4 {
  0% {
    left: 130%;
  }
  100% {
    left: calc(50% + 333px + 280px);
  }
}
.page7 {
  position: relative;
  background-image: url(../img/bg_bingchuan.png);
}
.page7 .page7Content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 684px;
  height: 484px;
  margin-top: -242px;
  z-index: 9;
}
.page7 .page7Content .btnBottom {
  width: 450px;
  line-height: 96px;
  margin-top: 20px;
  text-align: center;
  background-size: 450px 96px;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 600;
  background-image: url(../img/btn_denglu.png);
  background-size: 100% 100%;
}
.page7 .img_xinqi {
  position: absolute;
  top: 0px;
  left: 0;
  width: 357px;
  height: 317px;
  z-index: 8;
  animation: 30s img_xinqi;
  /* animation-delay: 0s; */
  animation-iteration-count: infinite;
}
@keyframes img_xinqi {
  0% {
    top: -317px;
    left: -357px;
    opacity: 0.1;
  }
  25% {
    top: 180px;
    left: 20%;
    opacity: 1;
  }
  50% {
    top: 100px;
    left: 50%;
    opacity: 1;
  }
  75% {
    top: 220px;
    left: 75%;
    opacity: 1;
  }
  100% {
    top: -317px;
    left: 100%;
    opacity: 0;
  }
}
.page7 .img_qier {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 954px;
  height: 473px;
  z-index: 8;
  animation: 50s img_qier;
  /* animation-delay: 0s; */
  animation-iteration-count: infinite;
}
@keyframes img_qier {
  0% {
    left: -954px;
  }
  25% {
    left: 200px;
  }
  50% {
    left: 500px;
  }
  75% {
    left: 300px;
  }
  100% {
    left: -954px;
  }
}
.page8 {
  background-image: url(../img/bg_di.png);
  height: 370px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.page8 .btnBottom {
  width: 450px;
  line-height: 96px;
  margin-top: 20px;
  text-align: center;
  background-size: 450px 96px;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 600;
  background-image: url(../img/btn_zhuce.png);
  background-size: 100% 100%;
}
