.home {
  background-color: var(--backColor);
  color: #fff;
}

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

.home .box .left {
  width: 60%;
}

.home .box .right {
  width: calc(40% - 40px);
}

.home .box .right h2 {
  font-size: var(--title);
}

.home .box .right .p {
  display: block;
  margin-top: 40px;
  font-size: 14px;
  line-height: 2;
}

.home .box .right .p::after {
  content: "_";
  margin-top: 20px;
  display: block;
}

.home .box .right .span {
  margin-top: 80px;
  display: block;
  font-size: 20px;
}

@media screen and (max-width: 600px) {
  .home .box {
    flex-direction: column;
  }
  .home .box .left {
    width: 100%;
  }
  .home .box .right {
    width: 100%;
    text-align: center;
  }
  .home .box .right .p {
    margin-top: 20px;
  }
  .home .box .right .span {
    margin-top: 20px;
  }
}

.ours {
  background-color: var(--backColor);
  color: #fff;
}

.ours .title {
  text-align: center;
  font-size: var(--title);
}

.ours .title img {
  width: 100px;
}

.ours .content {
  margin-top: 80px;
  line-height: 3;
  text-align: center;
}

.ours .content img {
  width: 50%;
}

@media screen and (max-width: 600px) {
  .ours .content {
    line-height: 2;
    margin-top: 20px;
  }
  .ours .content img {
    width: 100%;
  }
}

.original {
  background-color: #eae6e3;
  text-align: center;
}

.original .title {
  font-size: var(--title);
  font-weight: bold;
}

.original .content {
  margin-top: 40px;
  line-height: 3;
}

@media screen and (max-width: 600px) {
  .original .content {
    line-height: 2;
    margin-top: 20px;
  }
}

.fashion {
  background-color: #373737;
  color: #fff;
  text-align: center;
}

.fashion .title {
  font-size: var(--title);
  font-weight: bold;
}

.fashion .content {
  display: flex;
  margin: 40px;
  justify-content: space-between;
}

.fashion .content .item {
  display: flex;
  width: 30%;
  justify-content: center;
  flex-direction: column;
  line-height: 3;
}

.fashion .content .item img {
  border-radius: 10px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}

@media screen and (max-width: 600px) {
  .fashion .content {
    margin: 10px 0;
  }
  .fashion .content .item {
    line-height: 2;
    font-size: 10px;
  }
}

.life {
  text-align: center;
  background: #fff;
}

.life .title {
  font-size: var(--title);
  font-weight: bold;
}

.life .sub {
  width: 30%;
  margin: 0 auto;
  display: block;
  margin-top: 40px;
}

.life .content {
  display: flex;
  margin: 40px;
  justify-content: space-between;
}

.life .content .item {
  width: 30%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 3;
}

.life .content .item .slide {
  padding-bottom: 80% !important;
}

.life .content .item .slide:hover img {
  transform: translate(-50%, -50%) scale(1.2);
  transition: 0.5s;
}

.life .content .item .slide:hover span {
  font-size: 18px;
  transition: 0.5s;
}

.life .content .item .slide img {
  border-radius: 10px;
  transition: 0.5s;
}

.life .content .item .slide span {
  position: absolute;
  white-space: nowrap;
  transition: 0.5s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.life .content .item .slide span::before {
  content: "<";
  margin-right: 20px;
}

.life .content .item .slide span::after {
  content: ">";
  margin-left: 20px;
}

@media screen and (max-width: 600px) {
  .life .sub {
    width: 100%;
    margin-top: 20px;
  }
  .life .content {
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
  }
  .life .content .item {
    width: calc(50% - 10px);
    margin: 5px;
  }
}
