* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Hide the default scrollbar */
::-webkit-scrollbar {
  display: none;
}

.page {
  /* min-width: 1920px; */
  width: 100%;
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 92px;
  padding: 0 140px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}

.logo {
  color: #C2F3FF;
  text-align: center;
  font-family: "SF Pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 1000;
  line-height: normal;
  letter-spacing: 2px;
  padding: 16px 19px;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
}

.navList {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EAFBFF;
  text-align: center;
  font-family: "SF Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 510;
  line-height: 20px; /* 100% */
}

.navList > a {
  padding: 16px 19px;
  color: #EAFBFF;
  text-decoration: none;
  cursor: pointer;
}

.navList > a:hover {
  text-decoration: underline;
}

.pannel {
  width: 100%;
  height: 600px;
}

.pannel1 {
  width: 100%;
  overflow: hidden;
  height: 1080px;
  /* padding: 0 102px; */
  /* padding-left: 102px; */
  background: #413d9e url("./images/bg1.jpg") center/cover no-repeat;
}

.pannel1ContentWrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pannel1Content {
  width: 90%;
  max-width: 1920px;
  height: 100%;
  display: flex;
  align-items: center;
}

.pannel1Main {
  min-width: 1720px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mainText {
  width: 990px;
  margin-top: -264px;
}

.mainText > .mainTitle {
  width: 987px;
  margin-bottom: 20px;
}

.mainText > p {
  color: #fff;
  font-family: "SF Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px; /* 190% */
  opacity: 0.7;
}

.bookWrap {
  flex: 1;
  overflow: hidden;
}

.bookEffect {
  width: 1094px;
  height: 1094px;
  animation: shake 2s ease-in-out infinite;
  position: absolute;
  bottom: -104px;
  right: -226px;
}

.pannel2 {
  height: 1128px;
  background: #f9f9f9 url("./images/bg2.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pannel2Content {
  width: 80%;
  display: flex;
  justify-content: flex-end;
  padding-right: 10%;
}


.pannel2Main {
  width: 982px;
}

.pannel2Main > img {
  height: 84px;
  margin-bottom: 20px;
}

.pannel2Main > h4 {
  color: #5e59d9;
  font-family: "SF Pro";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 190.476% */
  margin-bottom: 32px;
}

.pannel2Main > .pannel2Desc {
  color: #6e60ff;
  font-family: "SF Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 188.889% */
  letter-spacing: 2px;
  opacity: 0.9;
}

.pannel2Desc > .pannel2Ul {
  padding-left: 20px;
}

.pannel3 {
  height: 1080px;
  padding: 100px 30px 0;
  background: #413d9e url("./images/bg1.jpg") right bottom / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: "SF Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 188.889% */
  letter-spacing: 2px;
  position: relative;
}

.pannel3Icon {
  height: 84px;
  margin-top: -200px;
}

.pannel3Title {
  height: 54px;
  margin: 16px 0 44px;
}

.iconText {
  display: flex;
  align-items: center;
  justify-content: center;

  > img {
    display: block;
    width: 26px;
    margin-right: 6px;
  }
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: rgba(255, 255, 255, 0.70);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  background: rgba(255, 255, 255, 0.10);
}

@keyframes shake{
  0%{
    transform: scale(.8);
    transform: translateY(12px);
  }
  50%{
    transform: scale(1);
    transform: translateY(-12px);
  }
  100%{
    transform: scale(.8);
    transform: translateY(12px);
  }
}