@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

body {
  scroll-behavior: smooth;
  width: 100vw;
  height: 110vh;
}

.container {
  max-width: 100vw;
  height: 110vh;
  -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@font-face {
  font-family: 'oli_font';
  src: url('../font/oli_font.ttf') format('truetype');
  font-weight: 900;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 10vh;
  background-color: #D3F1FA;
  display: flex;
  justify-content: space-around;
  align-items: center;
  opacity: 0;
  transition: all 0.5s;
  z-index: 10;
  will-change: opacity;
}

.dot {
  transition: top 0.3s;
  height: 10px;
  width: 10px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.header a,
.header h2 {
  color: black;
  text-decoration: none;
  font-size: 2em;
  font-family: "oli_font";
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header a:hover {
  transform: scale(1.4);
}

.header h2 {
  padding: 5px 20px;
  font-size: 2.5em;
  border: 2px solid black;
  border-radius: 30px;
}

.title {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -5vh);
  font-size: 7em;
  font-family: "oli_font";
  z-index: 2;
}

.box {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: url("../img/produce/bg.jpg") center no-repeat;
  background-size: cover;
}

@keyframes cube {
  0% {
    transform: translateY(0);
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-20px);
    transform: scale(1.1);
    opacity: 0.6;
  }

  100% {
    transform: translateY(0);
    transform: scale(1);
    opacity: 0.8;
  }
}

.title_cube {
  position: absolute;
  width: 10vw;
  height: 10vw;
  font-family: "oli_font";
  font-size: 5em;
  background-color: #fff;
  border-radius: 10%;
  background-color: rgba(209, 244, 251);
  box-shadow: 20px 20px 60px #afcdd4,
    -20px -20px 60px #edffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s;
  z-index: 2;
}


.title_cube:hover {
  background-color: rgba(200, 185, 156, 0.5);
  cursor: pointer;
}

.title_cube:nth-child(1) {
  top: 30vh;
  left: 7.5vw;
  animation: cube 6s ease-in-out infinite;
}

.title_cube:nth-child(2) {
  top: 50vh;
  left: 30vw;
  animation: cube 5s ease-in-out infinite;
}

.title_cube:nth-child(3) {
  top: 28vh;
  left: 55vw;
  animation: cube 4s ease-in-out infinite;
}

.title_cube:nth-child(4) {
  top: 40vh;
  left: 80vw;
  animation: cube 6s ease-in-out infinite;
}

.to__move {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.move_box {
  position: absolute;
  top: 0;
  transition: all 0.3s;
  background-color: rgba(233, 241, 220, 0.95);
  padding-left: 8vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.move_box:nth-child(1) {
  right: 0;
  width: 75vw;

}

.move_box:nth-child(2) {
  right: 0;
  width: 55vw;
}

.move_box:nth-child(3) {
  left: 0;
  width: 53vw;
}

.move_box:nth-child(4) {
  left: 0;
  width: 75vw;
}

.move_box_item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.title_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 10vh;
  color: #61663d;
  margin-bottom: 3vh;
}

.title_box .name {
  font-size: 3em;
  font-family: "oli_font";
}

.title_box .line {
  width: 70%;
  height: 2px;
  background-color: #61663d;
  margin-left: 2em;
}

.content_box {
  width: 100%;
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 5vh;
  overflow: hidden;
}

.content_box img {
  height: 30vh;
}

.content_box_text {
  width: 25vh;
  height: 30vh;
  background-color: #c6c9ae;
  margin-right: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  font-family: "oli_font";
  padding: 0 2vh;
}

.content_box_text h2 {
  font-size: 2em;
  font-family: "oli_font";
  text-align: center;
  letter-spacing: 2px;
  font-weight: bolder;
  color: rgb(97, 102, 61);
}

.content_box_text p {
  font-size: 1.5em;
  line-height: 1.3;
  letter-spacing: 10px;
  font-family: "oli_font";
  text-align: center;
  letter-spacing: 2px;
  color: rgb(97, 102, 61);
}

@keyframes img_warp {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.img_wrap_box {
  display: flex;
  justify-content: start;
  align-items: center;
  animation: img_warp 30s linear infinite;
}

.img_wrap_box:hover {
  animation-play-state: paused;
}

.img_wrap_box img {
  width: 30vw;
  height: 30vh;
  margin-right: 5vh;
}

.img_wrap_box img:hover {
  border-radius: 5vh;
}

.content_box_text_two {
  height: 35vh;
  width: 75vh;

}

.content_box_text_two h2 {
  font-size: 3em;
  color: rgb(97, 102, 61);
}

.content_box_text_two p {
  font-size: 2em;
  /* 字间距 */
  color: rgb(97, 102, 61);
  letter-spacing: 10px;
}


.title_box_two {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 10vh;
  color: #61663d;
}

.left_title,
.right_title {
  font-size: 3em;
  font-family: "oli_font";
  height: 8vh;
  margin-right: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.left_title:hover,
.right_title:hover {
  cursor: pointer;
}

.line_end {
  width: 100%;
  height: 2px;
  background-color: rgb(97, 102, 61);
}

.name_two {
  color: rgb(97, 102, 61);
}

.swap_with_two {
  transform: translateY(-5vh);
  width: 100%;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 5vh;
  overflow: hidden;
}


.left_wrap,
.right_wrap {
  position: absolute;
  left: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  animation: img_warp 30s linear infinite;
}

.left_wrap:hover,
.right_wrap:hover {
  animation-play-state: paused;
}

.left_wrap img,
.right_wrap img {
  width: 30vw;
  height: 30vh;
  margin-right: 5vh;
}

.left_wrap img:hover,
.right_wrap img:hover {
  border-radius: 5vh;
}

.right_wrap {
  opacity: 0;
}

.content_box_text_three h2 {
  font-size: 3em;
  color: rgb(97, 102, 61);
}

.content_box_text_three p {
  font-size: 3vh;
  line-height: 1.3;
  letter-spacing: 10px;
  color: rgb(97, 102, 61);
}

.content_box_three {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.line_two {
  margin-left: 5%;
  width: 75%;
  height: 2px;
  background-color: rgb(97, 102, 61);
}

.content_box_three img {
  height: 35vh;
}

.content_box_three img:hover {
  transform: scale(1.1);
}

.content_box_text_three {
  width: 35vh;
  height: 35vh;
  background-color: #c6c9ae;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  font-family: "oli_font";
}

.move_box_item_three_part_two {
  margin-top: 5vh;
  display: flex;
  justify-content: space-around;
  align-items: start;
  height: 70vh;
  width: 100%;
}

.move_box_item_left,
.move_box_item_right {
  width: 50%;
}

.move_box_item_left {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.move_box_item_right {
  height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.move_box_item_right img {
  width: 35vh;
}

.line_three {
  width: 35vh;
  height: 2px;
  background-color: rgb(97, 102, 61);
}

.move_box_item_left p {
  margin-top: 2vh;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 100%;
  font-size: 3vh;
  line-height: 3;
  font-family: "oli_font";
  writing-mode: vertical-lr;
  color: rgb(97, 102, 61);
}

.move_box_item_three_part_three {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line_four {
  width: 75%;
  margin-left: 5%;
  height: 2px;
  background-color: rgb(97, 102, 61);
}

.part_three_content {
  width: 100%;
  height: 26.5vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 4vh;
}

.part_three_content p {
  padding-top: 2vh;
  background-color: rgb(198, 201, 174);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75vh;
  height: 26.5vh;
  font-size: 3vh;
  color: rgb(97, 102, 61);
  line-height: 2.2em;
  font-family: "oli_font";
  writing-mode: vertical-lr;
}

.part_three_img_box {
  width: 75vh;
  height: calc(75vh / 1.9);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.part_three_img_box img {
  width: calc(75vh / 2.1);
  height: calc(75vh / 2.1 / 2);
}

.item_box_four {
  transform: translate(0, -18vh);
  width: 80%;
  height: 70vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.content_box_four {
  height: 36vh;
  width: calc(100% / 4);
  background-color: rgb(198, 201, 174);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  font-family: "oli_font";
}

.content_box_four h2 {
  font-size: 4vh;
  color: rgb(97, 102, 61);
  padding-top: 2vh;
}

.content_box_four p {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vh;
  width: 100%;
  height: 75%;
  font-size: 3vh;
  color: rgb(97, 102, 61);
  padding-top: 2vh;
  writing-mode: vertical-lr;
  line-height: 1.5;
}

.item_box_four img:nth-child(2) {
  height: 36vh;
}

.item_box_four img:nth-child(3),
.item_box_four img:nth-child(4) {
  width: calc(100% / 2.1);
}

.move_box_otem_three_part_four {
  height: 50vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 10vh;
  color: #61663d;
  font-size: large;
}

.title_one,
.title_two {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.title_one:hover,
.title_two:hover {
  cursor: pointer;
}

.base_line {
  margin-top: 1vh;
  width: 80%;
  height: 2px;
  background-color: rgb(97, 102, 61);
}


.swap_box {
  transform: translateY(-2vh);
  width: 90%;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 5vh;
  overflow: hidden;
}

.left_wrap_box,
.right_wrap_box {
  position: absolute;
  left: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  animation: img_warp 30s linear infinite;
}

.left_wrap_box img,
.right_wrap_box img {
  width: 30vw;
  height: 30vh;
  margin-right: 5vh;
}

.right_wrap_box {
  opacity: 0;
}