#app {
  position: relative;
}

#app .content {
  position: relative;
}

#app .content .main-box {
  display: flex;
  justify-content: space-between;
  padding: 0 72px;
}

#app .content .main-box .l-box-1 {
  margin-left: 36px;
  color: #324e40;
  animation: move 0.5s ease-in 1;
}

#app .content .main-box .l-box-1 p {
  font-size: 48px;
}

#app .content .main-box .l-box-2 {
  margin-left: 36px;
  color: #324e40;
  animation: move 0.5s ease-in 1;
  display: none;
}

#app .content .main-box .l-box-2 p {
  font-size: 18px;
  width: 440px;
}

#app .content .main-box .l-box-2 .show-box {
  display: flex;
}

#app .content .main-box .l-box-2 .box {
  width: 360px;
  height: 220px;
  border-radius: 12px;
  margin-right: 48px;
  margin-top: 48px;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#app .content .main-box .l-box-2 .box .title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
}

#app .content .main-box .l-box-2 .box .desc {
  font-size: 14px;
  color: #8688f2;
  margin-top: 16px;
}

#app .content .main-box .l-box-2 .box img {
  width: 160px;
  border-radius: 8px;
}

#app .content .main-box .l-box-3 {
  margin-left: 36px;
  color: #324e40;
  display: none;
  animation: move 0.5s ease-in 1;
}

#app .content .main-box .l-box-3 a {
  font-size: 48px;
  display: block;
  cursor: pointer;
}

#app .content .main-box .l-box-3 a:hover {
  color: white;
}

#app .content .main-box .r-box {
  display: flex;
  color: #fff;
  white-space: nowrap;
  align-items: center;
  margin-right: 48px;
}

#app .content .main-box .r-box img {
  width: 150px;
}

#app .content .main-box .r-box .choose-box {
  margin-left: 48px;
  font-size: 24px;
}

#app .content .main-box .r-box .choose-box p {
  cursor: pointer;
}

#app .content .main-box .r-box .choose-box p:nth-of-type(2) {
  margin-top: 24px;
}

#app .content .main-box .r-box .choose-box .active {
  color: #324e40;
}

#app .animation-box {
  position: absolute;
  bottom: 28px;
  overflow: hidden;
}

#app .animation-box .container {
  display: flex;
  white-space: nowrap;
  width: 100vw;
}

#app .animation-box .mask1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background-color: rgba(241, 196, 213, 0.8);
  z-index: 2;
}

#app .animation-box .mask2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background-color: rgba(241, 196, 213, 0.8);
  z-index: 2;
}

@keyframes move {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
