section {
  position: relative;
}

.liner_tagset-s {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.liner_tagset-s .tagouter {
  margin: 5px 0;
  text-align: center;
}

.liner_tagset-s .tag {
  width: 235px;
  height: 40px;
  margin: 0 -1px;
  padding: 9px 0;
  display: inline-block;
  background-image: url(../img/butter_short/butter_4.svg);
  background-size: 100% 100%;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  user-select: none;
  position: relative;
}

.liner_tagset-s .tag::before {
  content: '';
  width: 7%;
  height: 100%;
  background-image: url(../img/butter_short/butter_1.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-45%, 0%);
  transition: .3s;
  opacity: 0;
}

.liner_tagset-s .tag::after {
  content: '';
  width: 7%;
  height: 100%;
  background-image: url(../img/butter_short/butter_3.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(45%, 0%);
  transition: .3s;
  opacity: 0;
}

.liner_tagset-s .tag:hover {
  color: #fff;
  background-image: url(../img/butter_short/butter_2.svg);
  transform-origin: center;
}

.liner_tagset-s .tag.active {
  color: #fff;
  background-image: url(../img/butter_short/butter_2.svg);
}

.liner_tagset-s .tag.active::before, .liner_tagset-s .tag.active::after {
  opacity: 1;
}

.liner_tagset-m {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.liner_tagset-m .tagouter {
  margin: 5px 0;
  text-align: center;
}

.liner_tagset-m .tag {
  width: 322px;
  height: 36.5px;
  margin: 0 -1px;
  padding: 8px 0;
  display: inline-block;
  background-image: url(../img/butter_long/butter_4.svg);
  background-size: 100% 100%;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  user-select: none;
  position: relative;
}

.liner_tagset-m .tag.black {
  background-image: url(../img/butter_long/butter_5.svg);
}

.liner_tagset-m .tag.black:hover {
  color: #000;
}

.liner_tagset-m .tag.black.active {
  color: #000;
}

.liner_tagset-m .tag::before {
  content: '';
  width: 5%;
  height: 100%;
  background-image: url(../img/butter_long/butter_1.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-48%, 0%);
  transition: .3s;
  opacity: 0;
}

.liner_tagset-m .tag::after {
  content: '';
  width: 5%;
  height: 100%;
  background-image: url(../img/butter_long/butter_3.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(45%, 0%);
  transition: .3s;
  opacity: 0;
}

.liner_tagset-m .tag:hover {
  color: #fff;
  background-image: url(../img/butter_long/butter_2.svg);
  transform-origin: center;
}

.liner_tagset-m .tag.active {
  color: #fff;
  background-image: url(../img/butter_long/butter_2.svg);
}

.liner_tagset-m .tag.active::before, .liner_tagset-m .tag.active::after {
  opacity: 1;
}

.to_top_div {
  position: relative;
  text-align: center;
}

.to_top_div .to_btn {
  cursor: pointer;
}

.to_top_div .to_btn img {
  transition: .3s;
}

.to_top_div .to_btn:hover img {
  transform: scale(0.95) translateY(-12px);
}

.to_top_div .o5 {
  width: 30px;
}

.big_tittle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.big_tittle .left {
  width: 100px;
  margin-right: 40px;
  transform: rotate(180deg);
  transform-origin: center;
}

.big_tittle .left .p4 {
  animation: rrr 1s 0s 1;
}

.big_tittle .left .p3 {
  animation: rrr 1s .25s 1;
}

.big_tittle .left .p2 {
  animation: rrr 1s .5s 1;
}

.big_tittle .left .p1 {
  animation: rrr 1s .75s 1;
}

.big_tittle .right {
  width: 100px;
  margin-left: 40px;
  transform-origin: center;
}

.big_tittle .right .p4 {
  animation: rrr 1s 0s 1;
}

.big_tittle .right .p3 {
  animation: rrr 1s .25s 1;
}

.big_tittle .right .p2 {
  animation: rrr 1s .5s 1;
}

.big_tittle .right .p1 {
  animation: rrr 1s .75s 1;
}

@media screen and (max-width: 768px) {
  .big_tittle .left,
  .big_tittle .right {
    width: 70px;
  }
  .big_tittle .left {
    margin-right: 20px;
  }
  .big_tittle .right {
    margin-left: 20px;
  }
  .big_tittle span {
    max-width: calc(100% - 180px);
  }
}

@media screen and (max-width: 450px) {
  .big_tittle .left,
  .big_tittle .right {
    width: 40px;
  }
  .big_tittle .left {
    margin-right: 15px;
  }
  .big_tittle .right {
    margin-left: 15px;
  }
  .big_tittle span {
    max-width: calc(100% - 100px);
  }
}

@keyframes rrr {
  0% {
    opacity: 0.1;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.1;
  }
}

#kv {
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 11;
}

#kv.active .pic .bg2,
#kv.active .pic .bg3 {
  animation: o0 1s .6s both;
}

#kv.active .pic .bg4 {
  animation: product_show 1s 1.6s both, float 5s 2.6s 1;
}

#kv.active .text {
  animation: o1 .7s 2s both;
}

#kv .pic {
  width: 100%;
  position: relative;
}

#kv .pic img {
  width: 100%;
  display: block;
}

#kv .pic .bg2,
#kv .pic .bg3 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

#kv .pic .bg4 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
}

#kv .text {
  width: 30%;
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

#kv .text > h1 {
  line-height: 0;
}

#kv .text .title {
  width: 300px;
}

@keyframes o0 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes o1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes product_show {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media screen and (max-width: 1023px) {
  #kv .pic {
    width: 150%;
    margin-right: 0;
    transform: translateX(-33%);
  }
  #kv .text {
    width: 80%;
    margin: auto;
    padding: 50px 0;
    position: relative;
    left: 0;
    top: 0;
    transform: translateY(0);
  }
  #kv .text .title {
    width: 280px;
  }
}

@media screen and (max-width: 768px) {
  #kv .text {
    width: 90%;
  }
  #kv .text .title {
    width: 200px;
  }
}

#bg_color {
  overflow: hidden;
  background-color: #e6e6e6;
  position: relative;
}

#bg_color #bg_grid {
  width: 100%;
  height: 100%;
  background-image: url(../img/bg/bg_white.svg);
  background-size: 100%;
  background-repeat: repeat-y;
  background-position: 0 0;
  position: absolute;
  top: 0;
  left: 0;
  filter: invert(100%);
}

#bg_color #bg_grid.w {
  filter: invert(0%);
}

#side_nav {
  height: 100vh;
  position: fixed;
  right: 20px;
  top: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  display: none;
}

#side_nav.active {
  display: flex;
}

#side_nav .bar {
  width: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

#side_nav .bar.bar-t {
  padding-bottom: 10px;
  justify-content: flex-start;
}

#side_nav .bar.bar-b {
  padding-top: 10px;
  justify-content: flex-end;
}

#side_nav .bar.bar-b img {
  transform: rotate(180deg);
}

#side_nav .main_nav {
  min-height: 250px;
  text-align: right;
  color: #a7a7a7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#side_nav .main_nav.w > li.active .sub_nav {
  display: block;
}

#side_nav .main_nav.w > li.active .sub_nav > li.active, #side_nav .main_nav.w > li.active .sub_nav > li:hover {
  color: #fff;
}

#side_nav .main_nav > li {
  margin: 5px 0;
  cursor: pointer;
}

#side_nav .main_nav > li > button > .num,
#side_nav .main_nav > li > .num {
  width: 30px;
  margin-right: 0;
  margin-left: auto;
  opacity: .5;
}

#side_nav .main_nav > li > button > p,
#side_nav .main_nav > li > p {
  margin-top: 5px;
  line-height: 1.2;
  position: relative;
  display: none;
}

#side_nav .main_nav > li > button > p span,
#side_nav .main_nav > li > p span {
  vertical-align: top;
  display: inline-block;
}

#side_nav .main_nav > li > button > p img,
#side_nav .main_nav > li > p img {
  width: 10px;
  display: inline-block;
  vertical-align: middle;
  filter: grayscale(100);
  position: absolute;
  bottom: 3px;
  right: -2px;
  transform: translateX(100%);
}

#side_nav .main_nav > li .sub_nav {
  display: none;
}

#side_nav .main_nav > li .sub_nav > li {
  transition: .15s;
  margin: 0;
}

#side_nav .main_nav > li .sub_nav > li:hover {
  color: #000;
  transform: scale(1.05);
  transform-origin: right center;
}

#side_nav .main_nav > li.active > button > .num,
#side_nav .main_nav > li.active > .num {
  opacity: 1;
  display: block;
}

#side_nav .main_nav > li.active > button > p,
#side_nav .main_nav > li.active > p {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  color: #2fdace;
  background: #2fdace;
  background: linear-gradient(to right, #2fdace 0%, #5bc6e9 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#side_nav .main_nav > li.active > button > p img,
#side_nav .main_nav > li.active > p img {
  bottom: 5px;
  filter: grayscale(0);
}

#side_nav .main_nav > li.active .sub_nav {
  display: block;
}

#side_nav .main_nav > li.active .sub_nav > li.active {
  color: #000;
}

#side_nav .main_nav > li:hover > .num {
  opacity: 1;
  display: block;
}

#side_nav .main_nav > li:hover > p {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  color: #2fdace;
  background: #2fdace;
  background: linear-gradient(to right, #2fdace 0%, #5bc6e9 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#side_nav .main_nav > li:hover > p img {
  bottom: 5px;
  filter: grayscale(0);
}

@media screen and (max-width: 768px) {
  #side_nav {
    display: none;
  }
  #side_nav.active {
    display: none;
  }
}

#spec {
  height: 300vh;
  position: relative;
}

#spec .hook {
  position: absolute;
}

#spec .hook.hook1 {
  top: 0;
}

#spec .hook.hook2 {
  top: 50vh;
}

#spec .hook.hook3 {
  top: 100vh;
}

#spec .hook.hook4 {
  top: 150vh;
}

#spec .hook.hook5 {
  top: 200vh;
}

#spec_page {
  width: 100%;
  height: 100vh;
  position: relative;
  transition: .5s ease-out;
}

#spec_page::before {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #e6e6e6 50%, rgba(230, 230, 230, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#spec_page .to {
  width: 40px;
  position: absolute;
  cursor: pointer;
}

#spec_page .to .cls-2,
#spec_page .to .cls-3 {
  transition: .15s;
}

#spec_page .to:hover .cls-2 {
  opacity: 1;
}

#spec_page .to:hover .cls-3 {
  fill: #2fdace;
}

#spec_page .to.to_prev {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

#spec_page .to.to_next {
  top: 50%;
  right: 5%;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center;
}

#spec_page .arrow_bg {
  width: 18%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/spec_arrow_bg.svg);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

@keyframes arrow_bg {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% -100vh;
  }
}

#spec_page .inner {
  height: 100%;
  position: relative;
  z-index: 2;
}

#spec_page .tagset {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#spec_page .tagset .tag {
  width: 175px;
  margin: 0 10px;
  padding: 7px;
  border: 1px solid #a8a8a8;
  color: #a8a8a8;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  user-select: none;
}

#spec_page .tagset .tag:hover {
  color: #000000;
  border: 1px solid #2fdace;
}

#spec_page .tagset .tag.active {
  color: #000000;
  border: 1px solid #2fdace;
}

#spec_page .spec_title {
  margin: 20px 0;
}

#spec_page .spec_info {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

#spec_page .spec_info .spec_img {
  width: 56%;
  max-width: 630px;
}

#spec_page .spec_info .spec_line {
  width: 56%;
  max-width: 630px;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: .5s;
}

#spec_page .spec_info .spec_line.spec_mo {
  opacity: 0;
}

#spec_page .spec_info .spec_line.active {
  opacity: 1;
}

#spec_page .spec_info .spec_line.active.spec_mo {
  opacity: 0;
}

#spec_page .spec_info .spec_text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .5s;
}

#spec_page .spec_info .spec_text.active {
  opacity: 1;
}

#spec_page .spec_info .spec_text > li {
  width: 20%;
  position: absolute;
}

#spec_page .spec_info .spec_text.spec_text1 > li:nth-child(1) {
  top: 27%;
  left: 3%;
}

#spec_page .spec_info .spec_text.spec_text1 > li:nth-child(2) {
  top: 58.5%;
  left: 3%;
}

#spec_page .spec_info .spec_text.spec_text1 > li:nth-child(3) {
  top: 16%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text1 > li:nth-child(4) {
  top: 38%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text1 > li:nth-child(5) {
  top: 69%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text2 > li:nth-child(1) {
  top: 7%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text2 > li:nth-child(2) {
  top: 12%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text2 > li:nth-child(3) {
  top: 56%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text2 > li:nth-child(4) {
  top: 22%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text2 > li:nth-child(5) {
  top: 43%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text2 > li:nth-child(6) {
  top: 56%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text2 > li:nth-child(7) {
  top: 82%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text3 > li:nth-child(1) {
  top: 12.5%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text3 > li:nth-child(2) {
  top: 17.5%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text3 > li:nth-child(3) {
  top: 88%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(1) {
  top: 12.5%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(2) {
  top: 22%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(3) {
  top: 28%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(4) {
  top: 34%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(5) {
  top: 40%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(6) {
  top: 50%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(7) {
  top: 60%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(8) {
  top: 65%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(9) {
  top: 72%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(10) {
  top: 83%;
  left: 2%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(11) {
  top: 46%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(12) {
  top: 50%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(13) {
  top: 74.2%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(14) {
  top: 80%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(15) {
  top: 90%;
  right: 0%;
}

#spec_page .spec_info .spec_text.spec_text4 > li:nth-child(16) {
  top: 84%;
  right: 0%;
}

@media screen and (max-width: 1366px) {
  #spec_page .spec_info .spec_text > li h6 {
    font-size: 14px;
  }
}

@media screen and (max-width: 1023px) {
  #spec_page .to {
    display: none;
  }
  #spec_page .tagset {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
  }
  #spec_page .tagset .tag {
    width: calc(50% - 10px);
    margin: 5px;
  }
  #spec_page .spec_info {
    height: 40%;
    min-height: auto;
  }
  #spec_page .spec_info .spec_img,
  #spec_page .spec_info .spec_line {
    width: auto;
    max-width: none;
  }
  #spec_page .spec_info .spec_line.active {
    opacity: 1;
  }
  #spec_page .spec_info .spec_line.active.spec_mo {
    opacity: 1;
  }
  #spec_page .spec_info .spec_line.active.spec_pc {
    opacity: 0;
  }
  #spec_page .spec_info .spec_text {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    position: absolute;
    top: auto;
    bottom: 0;
    transform: translateY(100%);
    counter-reset: num;
  }
  #spec_page .spec_info .spec_text > li {
    width: 33%;
    margin-bottom: 15px;
    vertical-align: top;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    display: flex;
    align-items: flex-start;
  }
  #spec_page .spec_info .spec_text > li h6 {
    flex: 1;
  }
  #spec_page .spec_info .spec_text > li::before {
    counter-increment: num;
    content: counter(num);
    margin-right: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid #000;
  }
}

@media screen and (max-width: 768px) {
  #spec_page::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #e6e6e6 50%, rgba(230, 230, 230, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #spec_page .spec_info {
    height: 40%;
  }
  #spec_page .arrow_bg {
    width: 30%;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 600px) {
  #spec_page .spec_info .spec_text {
    overflow: auto;
    max-height: 35vh;
  }
  #spec_page .spec_info .spec_text > li {
    width: 50%;
    margin-bottom: 10px;
  }
  #spec_page .spec_info .spec_text > li::before {
    counter-increment: num;
    content: counter(num);
    margin-right: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border-radius: 20px;
    border: 1px solid #000;
  }
}

#tune {
  padding-top: 10%;
  position: relative;
}

#tune .tune_bg1 {
  position: absolute;
  width: 7%;
  top: 5%;
  left: 10%;
}

#tune .tune_bg2 {
  position: absolute;
  width: 4%;
  top: calc(5% + 50px);
  left: 9%;
}

@media screen and (max-width: 768px) {
  #tune .tune_bg1 {
    left: 4%;
  }
  #tune .tune_bg2 {
    left: 4%;
  }
}

@media screen and (max-width: 600px) {
  #tune .tune_bg1,
  #tune .tune_bg2 {
    display: none;
  }
}

#way_title {
  width: 100%;
  position: relative;
  transition: .5s ease-out;
}

#way_title .top_ul {
  padding-left: 30px;
}

#way {
  height: 250vh;
  position: relative;
}

#way .hook {
  position: absolute;
}

#way .hook.hook1 {
  top: 0;
  height: 50vh;
}

#way .hook.hook2 {
  top: 50vh;
  height: 50vh;
}

#way .hook.hook3 {
  top: 100vh;
  height: 50vh;
}

#way .hook.hook4 {
  top: 150vh;
  height: 50vh;
}

#way .hook.hook5 {
  top: 200vh;
  height: 50vh;
}

#way .hook.hook6 {
  top: 250vh;
  height: 50vh;
}

#way_page {
  height: 100vh;
  position: relative;
  z-index: 1;
}

#way_page .way_bg1 {
  width: 7%;
  min-width: 40px;
  position: absolute;
  top: 5%;
  left: 4%;
}

#way_page .way_bg2 {
  width: 4%;
  min-width: 40px;
  position: absolute;
  bottom: -2%;
  right: 6%;
  opacity: .7;
}

#way_page .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#way_page .liner_tagset-s {
  padding-top: 5%;
  margin-bottom: 50px;
}

#way_page .way_infobox {
  flex: 1;
  width: 100%;
  position: relative;
}

#way_page .way_infobox .way_info {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#way_page .way_infobox .way_info .pic {
  width: 58%;
}

#way_page .way_infobox .way_info .text {
  width: 42%;
}

#way_page .way_infobox .way_info .pic {
  padding-right: 3%;
  transform: scale(1.2);
  transform-origin: center right;
}

#way_page .way_infobox .way_info .text {
  position: relative;
}

#way_page .way_infobox .way_info .text .in {
  position: absolute;
  bottom: 50%;
  left: 0;
  transform: translateY(50%);
}

#way_page .way_infobox .way_info .way_info_title {
  margin-bottom: 30px;
}

@media screen and (max-width: 1440px) {
  #way_page .way_infobox .way_info .pic {
    transform: scale(1.2);
  }
}

@media screen and (max-width: 768px) {
  #way_page .liner_tagset-s {
    padding-top: 30px;
    margin-bottom: 20px;
  }
  #way_page .way_infobox .way_info {
    flex-direction: column;
    justify-content: center;
  }
  #way_page .way_infobox .way_info .pic,
  #way_page .way_infobox .way_info .text {
    width: 100%;
  }
  #way_page .way_infobox .way_info .pic {
    height: 30%;
    transform: scale(1);
    text-align: center;
  }
  #way_page .way_infobox .way_info .text {
    flex: 1;
  }
}

@media screen and (max-width: 600px) {
  #way_page .way_bg2 {
    display: none;
  }
}

#overclocking {
  position: relative;
}

#overclocking_page .top {
  margin-bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#overclocking_page .top .text {
  width: 100%;
}

#overclocking_page .top .logo {
  width: 30%;
  max-width: 200px;
}

#overclocking_page .itembox {
  margin-top: 7%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#overclocking_page .itembox .item {
  width: 28%;
  text-align: center;
}

#overclocking_page .itembox .item img {
  max-width: 200px;
  margin-bottom: 20px;
}

#overclocking_page .itembox .item h4 {
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  #overclocking_page .top {
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
  }
  #overclocking_page .top .text {
    width: 100%;
  }
  #overclocking_page .top .logo {
    width: 250px;
  }
  #overclocking_page .itembox {
    margin-top: 50px;
    flex-wrap: wrap;
  }
  #overclocking_page .itembox .item {
    width: 100%;
    margin-bottom: 30px;
  }
  #overclocking_page .itembox .item img {
    max-width: 150px;
  }
}

#overclocking_swiper .itembox {
  width: 100%;
  position: relative;
  min-height: 500px;
  margin: 30px auto;
  overflow: hidden;
}

#overclocking_swiper .itembox .item {
  position: absolute;
  left: 50%;
  top: 0;
  width: 60%;
  background: #e7e7e7;
  height: 500px;
  box-sizing: border-box;
  transform: translateX(-50%) rotateY(0deg);
  transition: all 0.5s;
  z-index: 2;
}

#overclocking_swiper .itembox .item.leftbox {
  left: 0;
  background: #dddddd;
  transform: perspective(4000px) translateX(-66%) rotateY(-55deg);
  transform-origin: right center;
  z-index: 0;
}

#overclocking_swiper .itembox .item.rightbox {
  background: #dddddd;
  transform: perspective(4000px) translateX(49.8%) rotateY(55deg);
  transform-origin: left center;
  z-index: 1;
}

#overclocking_swiper .itembox .item .inner {
  padding: 30px;
  display: flex;
  align-items: center;
  height: 100%;
}

#overclocking_swiper .itembox .item .inner .img {
  width: 60%;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

#overclocking_swiper .itembox .item .inner .text {
  width: 40%;
  padding: 20px;
  box-sizing: border-box;
}

#overclocking_swiper .contorl {
  text-align: center;
  user-select: none;
}

#overclocking_swiper .contorl .to {
  width: 30px;
  margin: 0 50px;
  filter: grayscale(100);
  cursor: pointer;
  transition: .3s;
}

#overclocking_swiper .contorl .to:hover {
  filter: grayscale(0);
}

#overclocking_swiper .contorl .to.to_right {
  transform: rotate(180deg);
}

@media screen and (max-width: 1023px) {
  #overclocking_swiper .itembox {
    min-height: auto;
  }
  #overclocking_swiper .itembox .item {
    width: 90%;
    position: relative;
    height: auto;
  }
  #overclocking_swiper .itembox .item.leftbox, #overclocking_swiper .itembox .item.rightbox {
    display: none;
    transform: none;
  }
  #overclocking_swiper .itembox .item .inner .img {
    width: 40%;
  }
  #overclocking_swiper .itembox .item .inner .text {
    width: 60%;
  }
}

@media screen and (max-width: 600px) {
  #overclocking_swiper .itembox {
    min-height: auto;
  }
  #overclocking_swiper .itembox .item {
    width: 90%;
    position: relative;
    height: auto;
  }
  #overclocking_swiper .itembox .item.leftbox, #overclocking_swiper .itembox .item.rightbox {
    display: none;
    transform: none;
  }
  #overclocking_swiper .itembox .item .inner {
    flex-wrap: wrap;
  }
  #overclocking_swiper .itembox .item .inner .img,
  #overclocking_swiper .itembox .item .inner .text {
    width: 100%;
  }
}

#cooling_page {
  position: relative;
}

#cooling_page .top {
  margin-bottom: 10%;
}

#cooling_page .cooling_bg1 {
  width: 50%;
  min-width: 40px;
  position: absolute;
  top: 30%;
  left: 0;
}

#cooling_page .itembox {
  margin-top: 7%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#cooling_page .itembox .item {
  width: 28%;
  text-align: center;
}

#cooling_page .itembox .item img {
  max-width: 200px;
  margin-bottom: 20px;
}

#cooling_page .itembox .item h4 {
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  #cooling_page .top {
    margin-bottom: 50px;
  }
  #cooling_page .itembox {
    margin-top: 50px;
    flex-wrap: wrap;
  }
  #cooling_page .itembox .item {
    width: 100%;
    margin-bottom: 30px;
  }
  #cooling_page .itembox .item img {
    max-width: 150px;
  }
}

#oneclick {
  height: 200vh;
  position: relative;
}

#oneclick .hook {
  position: absolute;
}

#oneclick .hook.hook1 {
  top: 0;
  height: 50vh;
}

#oneclick .hook.hook2 {
  top: 50vh;
  height: 50vh;
}

#oneclick_page {
  height: 100vh;
}

#oneclick_page .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#oneclick_page .liner_tagset-s {
  margin-bottom: 50px;
}

#oneclick_page .oneclick_infobox {
  flex: 1;
  width: 100%;
  position: relative;
}

#oneclick_page .oneclick_infobox .oneclick_info {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#oneclick_page .oneclick_infobox .oneclick_info .pic {
  width: 50%;
  transform-origin: center right;
  position: relative;
}

#oneclick_page .oneclick_infobox .oneclick_info .pic .bg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  transform-origin: center;
  z-index: 0;
}

#oneclick_page .oneclick_infobox .oneclick_info .pic .front {
  position: relative;
  z-index: 1;
}

#oneclick_page .oneclick_infobox .oneclick_info .text {
  width: 35%;
  position: relative;
}

#oneclick_page .oneclick_infobox .oneclick_info .text .in {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #oneclick_page .liner_tagset-s {
    padding-top: 30px;
    margin-bottom: 20px;
  }
  #oneclick_page .oneclick_infobox .oneclick_info {
    flex-direction: column;
  }
  #oneclick_page .oneclick_infobox .oneclick_info .pic {
    flex: 1;
    order: 2;
    width: 80%;
    z-index: 0;
  }
  #oneclick_page .oneclick_infobox .oneclick_info .text {
    flex: 1;
    order: 1;
    width: 100%;
    z-index: 1;
  }
}

@media screen and (max-width: 500px) {
  #uefi_title {
    padding-top: 50px;
  }
}

#uefi_page {
  position: relative;
}

#uefi_page .uefi_bg1 {
  width: 10%;
  min-width: 40px;
  position: absolute;
  top: -10%;
  left: 2%;
}

#uefi_page .liner_tagset-s {
  margin-bottom: 50px;
}

#uefi_page .adv,
#uefi_page .ez {
  padding: 2% 0;
  display: none;
  animation: show_adv_ez 0.5s both;
}

#uefi_page .adv.active,
#uefi_page .ez.active {
  display: block;
}

#uefi_page .top_text {
  margin-bottom: 50px;
}

#uefi_page .uefi_infobox {
  flex: 1;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#uefi_page .uefi_infobox .pic {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 2% 30px 0;
  background-color: whitesmoke;
}

#uefi_page .uefi_infobox .pic .img {
  width: 100%;
  padding-bottom: 35%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#uefi_page .uefi_infobox .text {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#uefi_page .uefi_infobox .text .item.c30 {
  width: 31%;
  margin: 20px 0;
}

#uefi_page .uefi_infobox .text .item.c50 {
  width: 48%;
  margin: 20px 0;
}

@keyframes show_adv_ez {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  #uefi_page .liner_tagset-s {
    padding-top: 30px;
    margin-bottom: 20px;
  }
  #uefi_page .uefi_infobox .text .item.c30 {
    width: 48%;
    margin: 20px 0;
  }
  #uefi_page .uefi_infobox .text .item.c50 {
    width: 48%;
    margin: 20px 0;
  }
}

@media screen and (max-width: 600px) {
  #uefi_page .uefi_bg1 {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  #uefi_page .uefi_infobox .text .item.c30 {
    width: 100%;
    margin: 10px 0;
  }
  #uefi_page .uefi_infobox .text .item.c50 {
    width: 100%;
    margin: 10px 0;
  }
}

#core_title {
  padding-top: 10%;
}

#core {
  height: 500vh;
  position: relative;
}

#core .hook {
  position: absolute;
}

#core .hook.hook1 {
  top: 5%;
  height: 100vh;
}

#core .hook.hook2 {
  top: 100vh;
  height: 100vh;
}

#core .hook.hook3 {
  top: 200vh;
  height: 100vh;
}

#core .hook.hook4 {
  top: 300vh;
  height: 100vh;
}

#core .hook.hook5 {
  top: 400vh;
  height: 100vh;
}

#core .hook.hook6 {
  top: 500vh;
  height: 100vh;
}

#core_page {
  width: 100%;
  height: 100vh;
  margin-top: 5%;
  position: relative;
}

#core_page .core_bg1 {
  width: 50%;
  min-width: 40px;
  position: absolute;
  top: 30%;
  left: 0;
}

#core_page .core_bg2 {
  width: 2.2%;
  min-width: 30px;
  position: absolute;
  bottom: 7%;
  right: 8.8%;
}

#core_page .core_bg3 {
  width: 1.4%;
  min-width: 15px;
  position: absolute;
  bottom: 10%;
  right: 7%;
}

#core_page .inner {
  position: relative;
  height: 100%;
}

#core_page .pic {
  width: 50%;
  max-width: 920px;
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: top right;
}

#core_page .pic img {
  transform: translate(12%, -12%);
}

#core_page .pic .light1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .3s;
}

#core_page .pic .light1.active {
  opacity: 1;
}

#core_page .pic .light2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .3s;
}

#core_page .pic .light2.active {
  opacity: 1;
}

#core_page .pic .linelight1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: calc(60% - 85px);
  right: 28%;
}

#core_page .pic .linelight1 .info {
  width: 170px;
  position: relative;
  z-index: 1;
}

#core_page .pic .linelight1 .info img {
  width: 100%;
  transform: none;
}

#core_page .pic .linelight1 .line1 {
  width: 48%;
  height: 16%;
  top: -6%;
  left: 10%;
  border-bottom: #2fdace 2px solid;
  border-right: #2fdace 2px solid;
  position: absolute;
  transform: skew(-22deg);
}

#core_page .pic2 {
  width: 100%;
  max-width: 1400px;
  height: 65%;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
}

#core_page .pic2 img {
  margin: auto;
  display: block;
}

#core_page .pic2 .light {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 30px));
  opacity: 0;
  transition: .3s;
}

#core_page .pic2 .light.active {
  transform: translate(-50%, -50%);
  opacity: 1;
}

#core_page .text_block1 {
  width: 37%;
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
}

#core_page .text_block2 {
  width: 37%;
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
}

#core_page .text_block3 {
  width: 80%;
  position: absolute;
  top: 12%;
  right: 10%;
  transform: translateY(-50%);
  display: flex;
}

#core_page .text_block3 h3 {
  width: 400px;
}

#core_page .text_block3 h6 {
  flex: 1;
}

@media screen and (max-width: 1280px) {
  #core_page .pic .linelight1 .line1 {
    top: -3%;
  }
}

@media screen and (max-width: 1023px) {
  #core_page .pic .linelight1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: auto;
    bottom: calc(-15% - 160px);
    right: 28%;
  }
  #core_page .pic .linelight1 .info {
    width: 170px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  #core_page .pic .linelight1 .info img {
    width: 100%;
    transform: none;
  }
  #core_page .pic .linelight1 .line1 {
    width: 30%;
    height: 70%;
    top: auto;
    bottom: 160px;
    left: 21%;
    border-top: none;
    border-right: #2fdace 2px solid;
    border-bottom: #2fdace 2px solid;
    position: absolute;
    transform: skew(-10deg);
  }
  #core_page .text_block3 {
    width: 90%;
    right: 5%;
    flex-wrap: wrap;
  }
  #core_page .text_block3 h3 {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  #core_page .core_bg2 {
    width: 1.5%;
    min-width: 15px;
    bottom: 5%;
    right: 8.2%;
  }
  #core_page .core_bg3 {
    width: 1.6%;
    min-width: 15px;
    bottom: 8%;
    right: 5.5%;
  }
  #core_page .pic {
    width: 60%;
    max-width: 360px;
  }
  #core_page .pic img {
    transform: translate(12%, -5%);
  }
  #core_page .pic .linelight1 {
    bottom: calc(-15% - 180px);
  }
  #core_page .text_block1 {
    width: 100%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  #core_page .text_block2 {
    width: 100%;
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

#design_title {
  padding-top: 10%;
  position: relative;
}

#design_title .design_bg1 {
  width: 5%;
  position: absolute;
  top: 70%;
  left: 15%;
}

#design_title .design_bg2 {
  width: 5%;
  min-width: 40px;
  position: absolute;
  top: 80%;
  left: 13%;
}

#design_title .inner {
  display: flex;
  justify-content: flex-end;
}

#design_title .inner > div {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #design_title {
    padding-top: 150px;
    padding-bottom: 50px;
  }
  #design_title .inner > div {
    width: 100%;
  }
  #design_title .design_bg2 {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  #design_title .design_bg1 {
    display: none;
  }
}

#design {
  height: 300vh;
  position: relative;
}

#design .hook {
  position: absolute;
}

#design .hook.hook1 {
  top: 0;
  height: 50vh;
}

#design .hook.hook2 {
  top: 50vh;
  height: 50vh;
}

#design .hook.hook3 {
  top: 100vh;
  height: 50vh;
}

#design .hook.hook4 {
  top: 150vh;
  height: 50vh;
}

#design + .to_top_div {
  padding-top: 7%;
}

#design_page {
  height: 100vh;
  position: relative;
}

#design_page .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#design_page .pic {
  width: 55%;
  position: relative;
}

#design_page .pic .fan_f {
  width: 100%;
  left: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#design_page .right {
  width: 45%;
  min-height: 400px;
}

#design_page .right .control {
  margin-bottom: 30px;
  margin-left: -10px;
}

#design_page .right .control .control_btn {
  width: 55px;
  margin-right: 8px;
  display: inline-block;
  cursor: pointer;
}

#design_page .right .control .control_btn .f {
  display: none;
}

#design_page .right .control .control_btn .t {
  display: block;
}

#design_page .right .control .control_btn.active .t, #design_page .right .control .control_btn:hover .t {
  display: none;
}

#design_page .right .control .control_btn.active .f, #design_page .right .control .control_btn:hover .f {
  display: block;
}

#design_page .info {
  width: 100%;
  padding-top: 30px;
  display: none;
  opacity: 0;
}

#design_page .info.active {
  display: block;
}

@keyframes textShow {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  #design_page .inner {
    flex-direction: column;
  }
  #design_page .pic {
    width: 100%;
    height: 40%;
    text-align: center;
  }
  #design_page .pic img {
    max-width: none;
    margin: auto;
  }
  #design_page .pic .fan_f {
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  #design_page .right {
    width: 100%;
    height: 60%;
  }
  #design_page .right .control {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 0;
    text-align: center;
  }
  #design_page .right .control .control_btn {
    width: 50px;
    margin-right: 10px;
    display: inline-block;
    cursor: pointer;
    filter: grayscale(100);
  }
  #design_page .right .control .control_btn.active {
    filter: grayscale(0);
  }
}

#build {
  padding-top: 10%;
}

#robust_title {
  width: 100%;
  position: relative;
  transition: .5s ease-out;
}

#robust_title .top_ul {
  padding-left: 30px;
}

#robust {
  height: 200vh;
  position: relative;
}

#robust .hook {
  position: absolute;
}

#robust .hook.hook1 {
  top: 0;
  height: 50vh;
}

#robust .hook.hook2 {
  top: 50vh;
  height: 50vh;
}

#robust_page {
  height: 100vh;
  position: relative;
  z-index: 1;
}

#robust_page .robust_bg1 {
  width: 4%;
  min-width: 20px;
  position: absolute;
  top: 5%;
  left: 10%;
}

#robust_page .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#robust_page .liner_tagset-m {
  padding-top: 5%;
  margin-bottom: 50px;
}

#robust_page .robust_infobox {
  flex: 1;
  width: 100%;
  position: relative;
}

#robust_page .robust_infobox .robust_info {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#robust_page .robust_infobox .robust_info .pic,
#robust_page .robust_infobox .robust_info .text {
  width: 50%;
}

#robust_page .robust_infobox .robust_info .pic {
  padding-left: 3%;
  position: relative;
}

#robust_page .robust_infobox .robust_info .pic .cover {
  position: absolute;
  top: 0;
  right: 0;
}

#robust_page .robust_infobox .robust_info .text {
  position: relative;
}

#robust_page .robust_infobox .robust_info .text .in {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#robust_page .robust_infobox .robust_info .robust_info_title {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #robust_page .liner_tagset-m {
    padding-top: 30px;
    margin-bottom: 10px;
  }
  #robust_page .robust_infobox .robust_info {
    flex-direction: column;
    justify-content: center;
  }
  #robust_page .robust_infobox .robust_info .pic,
  #robust_page .robust_infobox .robust_info .text {
    width: 100%;
  }
  #robust_page .robust_infobox .robust_info .pic {
    order: 1;
    height: 30%;
    padding-left: 0;
    text-align: center;
  }
  #robust_page .robust_infobox .robust_info .pic .cover {
    right: 50%;
    transform: translateX(50%);
  }
  #robust_page .robust_infobox .robust_info .text {
    order: 2;
    flex: 1;
  }
}

@media screen and (max-width: 600px) {
  #robust_page .robust_bg1 {
    display: none;
  }
}

#optimem_title {
  width: 100%;
  position: relative;
  transition: .5s ease-out;
}

@media screen and (max-width: 500px) {
  #optimem_title {
    padding-top: 50px;
  }
}

#optimem {
  height: 200vh;
  position: relative;
}

#optimem .hook {
  position: absolute;
}

#optimem .hook.hook1 {
  top: 0;
  height: 50vh;
}

#optimem .hook.hook2 {
  top: 50vh;
  height: 50vh;
}

#optimem_page {
  height: 100vh;
  position: relative;
  z-index: 1;
}

#optimem_page ul {
  padding-left: 30px;
}

#optimem_page .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#optimem_page .liner_tagset-s {
  padding-top: 5%;
  padding-left: 0;
  margin-bottom: 50px;
}

#optimem_page .optimem_infobox {
  flex: 1;
  width: 100%;
  position: relative;
}

#optimem_page .optimem_infobox .optimem_info {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#optimem_page .optimem_infobox .optimem_info .pic,
#optimem_page .optimem_infobox .optimem_info .text {
  width: 50%;
}

#optimem_page .optimem_infobox .optimem_info .pic {
  padding-right: 3%;
  position: relative;
}

#optimem_page .optimem_infobox .optimem_info .pic .cover {
  position: absolute;
  top: -30px;
  left: 0;
  opacity: 0;
  transition: .3s;
}

#optimem_page .optimem_infobox .optimem_info .pic .cover.active {
  top: 0;
  opacity: 1;
}

#optimem_page .optimem_infobox .optimem_info .text {
  position: relative;
}

#optimem_page .optimem_infobox .optimem_info .text .in {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #optimem_page .liner_tagset-s {
    padding-top: 30px;
    margin-bottom: 20px;
  }
  #optimem_page .optimem_infobox .optimem_info {
    flex-direction: column;
    justify-content: center;
  }
  #optimem_page .optimem_infobox .optimem_info .pic,
  #optimem_page .optimem_infobox .optimem_info .text {
    width: 100%;
  }
  #optimem_page .optimem_infobox .optimem_info .pic {
    height: 30%;
    padding-right: 0;
    text-align: center;
  }
  #optimem_page .optimem_infobox .optimem_info .pic .cover {
    left: 50%;
    transform: translateX(-50%);
  }
  #optimem_page .optimem_infobox .optimem_info .text {
    flex: 1;
  }
}

#storage {
  width: 100%;
  position: relative;
  transition: .5s ease-out;
}

#storage .storage_bg1 {
  width: 50%;
  min-width: 70px;
  position: absolute;
  top: 80%;
  left: 0;
}

#storage .storage_bg2 {
  width: 4%;
  min-width: 20px;
  position: absolute;
  top: 80%;
  right: 10%;
}

#storage .inner {
  display: flex;
  align-items: center;
}

#storage .text {
  width: 50%;
  padding-right: 5%;
}

#storage .picouter {
  width: 50%;
  margin-top: 5%;
  text-align: center;
}

#storage .picouter .pic {
  margin: auto;
  display: inline-block;
  position: relative;
}

#storage .picouter .m2_cover {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  #storage .inner {
    flex-wrap: wrap;
  }
  #storage .text {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }
  #storage .picouter {
    width: 100%;
  }
}

#connectivity_title {
  width: 100%;
  position: relative;
  transition: .5s ease-out;
}

#connectivity_title .top_ul {
  padding-left: 30px;
}

#connectivity {
  height: 350vh;
  position: relative;
}

#connectivity .hook {
  position: absolute;
}

#connectivity .hook.hook1 {
  top: 0;
  height: 50vh;
}

#connectivity .hook.hook2 {
  top: 50vh;
  height: 50vh;
}

#connectivity .hook.hook3 {
  top: 100vh;
  height: 50vh;
}

#connectivity .hook.hook4 {
  top: 150vh;
  height: 50vh;
}

#connectivity .hook.hook5 {
  top: 200vh;
  height: 50vh;
}

#connectivity .hook.hook6 {
  top: 250vh;
  height: 50vh;
}

#connectivity_page {
  height: 100vh;
  position: relative;
  z-index: 1;
}

#connectivity_page .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#connectivity_page .liner_tagset-s {
  padding-top: 5%;
  margin-bottom: 50px;
}

#connectivity_page .connectivity_infobox {
  flex: 1;
  width: 100%;
  position: relative;
}

#connectivity_page .connectivity_infobox .connectivity_info {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#connectivity_page .connectivity_infobox .connectivity_info .pic,
#connectivity_page .connectivity_infobox .connectivity_info .text {
  width: 50%;
}

#connectivity_page .connectivity_infobox .connectivity_info .pic {
  padding-right: 3%;
  position: relative;
  transform-origin: center right;
}

#connectivity_page .connectivity_infobox .connectivity_info .pic.hide {
  display: none;
}

#connectivity_page .connectivity_infobox .connectivity_info .pic .cover {
  position: absolute;
  top: 0;
  left: 0;
}

#connectivity_page .connectivity_infobox .connectivity_info .text {
  position: relative;
}

#connectivity_page .connectivity_infobox .connectivity_info .text.w100per {
  width: 100%;
  text-align: center;
}

#connectivity_page .connectivity_infobox .connectivity_info .text.w100per .in {
  width: 100%;
}

#connectivity_page .connectivity_infobox .connectivity_info .text .in {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#connectivity_page .connectivity_infobox .connectivity_info .box {
  margin-top: 40px;
}

#connectivity_page .connectivity_infobox .connectivity_info .box .it {
  margin: 10px 10px 10px 0;
  padding: 10px 20px;
  border: 1px solid #2fdace;
  display: inline-block;
}

#connectivity_page .connectivity_infobox .connectivity_info .ch {
  width: 67%;
}

#connectivity_page .connectivity_infobox .connectivity_info .connectivity_info_title {
  margin-bottom: 30px;
}

@media screen and (max-width: 1440px) {
  #connectivity_page .connectivity_infobox .connectivity_info .pic {
    transform: scale(1.2);
  }
}

@media screen and (max-width: 1023px) {
  #connectivity_page .liner_tagset-s {
    padding-top: 30px;
    margin-bottom: 20px;
  }
  #connectivity_page .connectivity_infobox .connectivity_info {
    flex-direction: column;
    justify-content: center;
  }
  #connectivity_page .connectivity_infobox .connectivity_info .pic,
  #connectivity_page .connectivity_infobox .connectivity_info .text {
    width: 100%;
  }
  #connectivity_page .connectivity_infobox .connectivity_info .pic {
    height: 30%;
    padding-right: 0;
    text-align: center;
    transform: none;
  }
  #connectivity_page .connectivity_infobox .connectivity_info .pic .cover {
    left: 50%;
    transform: translateX(-50%);
  }
  #connectivity_page .connectivity_infobox .connectivity_info .text {
    flex: 1;
  }
}

#details {
  position: relative;
}

#details .details_bg1 {
  width: 100%;
  max-height: none;
  position: absolute;
  top: 0;
  left: 0;
}

#audio_title {
  width: 100%;
  position: relative;
  transition: .5s ease-out;
}

#audio_title .top_ul {
  padding-left: 30px;
}

#audio_page {
  position: relative;
  z-index: 1;
}

#audio_page .liner_tagset-m {
  padding-top: 5%;
  margin-bottom: 50px;
}

#audio_page .audio_infobox {
  width: 100%;
  position: relative;
}

#audio_page .audio_infobox .audio_info {
  display: none;
}

#audio_page .audio_infobox .audio_info.active {
  display: block;
}

#audio_page .audio_infobox .audio_info1 .text {
  display: none;
  align-items: center;
}

#audio_page .audio_infobox .audio_info1 .text .in {
  width: 100%;
}

#audio_page .audio_infobox .audio_info1 .text.active {
  display: flex;
}

#audio_page .audio_infobox .audio_info1 .text1 .itembox {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#audio_page .audio_infobox .audio_info1 .text1 .itembox .item {
  margin: 20px 0;
}

#audio_page .audio_infobox .audio_info1 .text2 .in {
  display: flex;
  align-items: center;
}

#audio_page .audio_infobox .audio_info1 .text2 .in .t {
  width: 50%;
  padding-right: 30px;
}

#audio_page .audio_infobox .audio_info1 .text2 .in .t img {
  margin: 20px 0;
}

#audio_page .audio_infobox .audio_info1 .text2 .in .pic {
  width: 50%;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound {
  margin-bottom: 50px;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .player {
  background: url("../img/pic_hear_difference.png") center top no-repeat;
  width: 100%;
  padding-bottom: 50%;
  margin: 30px 0;
  overflow: hidden;
  /* margin-top: -150px; */
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .play-btn {
  background: url("../img/ai/play-icon.png") center top no-repeat;
  height: 150px;
  width: 180px;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .play-btn div {
  background: url("../img/ai/play-icon-play.png") center no-repeat;
  background-color: rgba(0, 0, 0, 0.6);
  height: 145px;
  width: 145px;
  border-radius: 100%;
  margin: 3px auto 0 auto;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .play-btn div.pause {
  background-image: url("../img/ai/play-icon-pause.png");
  display: none;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .switch-btn {
  margin-bottom: 20px;
  border: 3px solid #fff;
  width: 200px;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px auto 0 auto;
  text-align: center;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .switch-btn div {
  width: 50%;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  font-family: "Xolonium", sans-serif;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .switch-btn .active {
  background: #fff;
  color: #000;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .caption {
  max-width: 800px;
  display: flex;
  padding: 0 20px;
  margin: 0 auto 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .caption p {
  font-weight: lighter;
  position: relative;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .caption p:before {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 5px;
  background: red;
  margin-right: 20px;
  content: '';
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .caption p.background:before {
  background: #666;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .caption p.voice:before {
  background: #a200ff;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .caption p.speech:before {
  background: #70e2ff;
}

#audio_page .audio_infobox .audio_info1 .text3 .sound .note-platform {
  font-weight: lighter;
  max-width: 1100px;
  margin: -50px auto 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

#audio_page .audio_infobox .audio_info1 .control {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#audio_page .audio_infobox .audio_info1 .control .to_prev,
#audio_page .audio_infobox .audio_info1 .control .to_next {
  width: 30px;
  margin: 0 40px;
  filter: grayscale(100);
  transition: .3s;
  cursor: pointer;
  opacity: .5;
}

#audio_page .audio_infobox .audio_info1 .control .to_prev:hover,
#audio_page .audio_infobox .audio_info1 .control .to_next:hover {
  opacity: 1;
  filter: grayscale(0);
}

#audio_page .audio_infobox .audio_info1 .control .to_next {
  transform: rotate(180deg);
}

#audio_page .audio_infobox .audio_info2 h4 {
  margin-bottom: 50px;
}

#audio_page .audio_infobox .audio_info2 .item {
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
}

#audio_page .audio_infobox .audio_info2 .item .pic {
  width: 250px;
}

#audio_page .audio_infobox .audio_info2 .item h6 {
  flex: 1;
  margin-left: 20px;
}

#audio_page .audio_infobox .audio_info3 .itembox {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

#audio_page .audio_infobox .audio_info3 .itembox .item {
  width: 33%;
  padding: 20px;
}

@media screen and (max-width: 1023px) {
  #audio_page .liner_tagset-m {
    padding-top: 30px;
    margin-bottom: 20px;
  }
  #audio_page .audio_infobox .audio_info1 .text1 .itembox {
    margin-top: 30px;
    flex-wrap: wrap;
  }
  #audio_page .audio_infobox .audio_info1 .text1 .itembox .item {
    width: 100%;
    margin: 20px 0;
  }
  #audio_page .audio_infobox .audio_info1 .text2 .in {
    display: flex;
    flex-wrap: wrap;
  }
  #audio_page .audio_infobox .audio_info1 .text2 .in .t {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
  #audio_page .audio_infobox .audio_info1 .text2 .in .pic {
    width: 100%;
  }
  #audio_page .audio_infobox .audio_info2 h4 {
    margin-bottom: 50px;
  }
  #audio_page .audio_infobox .audio_info2 .item {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
  }
  #audio_page .audio_infobox .audio_info2 .item .pic {
    width: 100%;
    text-align: center;
  }
  #audio_page .audio_infobox .audio_info2 .item h6 {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
  #audio_page .audio_infobox .audio_info3 .itembox {
    margin-top: 30px;
  }
  #audio_page .audio_infobox .audio_info3 .itembox .item {
    width: 100%;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  #audio_page .audio_infobox .audio_info1 .text1 .itembox .item {
    margin: 10px 0;
  }
}

#person {
  position: relative;
}

#person .person_bg1 {
  width: 5%;
  position: absolute;
  top: -20%;
  right: 12%;
}

#person .person_bg2 {
  width: 5%;
  min-width: 40px;
  position: absolute;
  top: -10%;
  right: 14%;
}

@media screen and (max-width: 600px) {
  #person .person_bg1,
  #person .person_bg2 {
    display: none;
  }
}

#person_page {
  position: relative;
  z-index: 1;
}

#person_page .liner_tagset-m {
  padding-top: 5%;
  margin-bottom: 50px;
}

#person_page .person_infobox {
  width: 100%;
  position: relative;
}

#person_page .person_infobox .person_info {
  display: none;
}

#person_page .person_infobox .person_info.active {
  display: block;
}

#person_page .person_infobox .person_info1 .in {
  display: flex;
  align-items: center;
}

#person_page .person_infobox .person_info1 .in .t {
  width: 50%;
}

#person_page .person_infobox .person_info1 .in .pic {
  width: 50%;
  position: relative;
}

#person_page .person_infobox .person_info1 .in .pic .fcolor {
  position: relative;
  z-index: 1;
}

#person_page .person_infobox .person_info1 .in .pic #bcolor {
  position: absolute;
  width: 8%;
  height: 50%;
  top: 5%;
  left: 28%;
  transform: skewY(40deg);
  transform-origin: top;
}

#person_page .person_infobox .person_info1 .in .pic #bcolor.rainbow {
  background: linear-gradient(0deg, #c83232 0%, #329632 25%, #3232c8 50%, #329632 75%, #c83232 100%);
  animation: rainbow 3s 1;
}

#person_page .person_infobox .person_info1 .in .pic #bcolor.breathing {
  animation: breathing 3s 1;
}

#person_page .person_infobox .person_info1 .in .pic #bcolor.strobing {
  animation: strobing 1.5s 1;
}

#person_page .person_infobox .person_info1 .in .pic #bcolor.cycle {
  animation: cycle 3s 1;
}

#person_page .person_infobox .person_info1 .in .pic #bcolor.music {
  animation: cycle 3s 1, music 3s 1;
}

#person_page .person_infobox .person_info1 .in .pic #bcolor.smart {
  animation: cpu 3s 1;
}

#person_page .person_infobox .person_info1 .in .itembox {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

#person_page .person_infobox .person_info1 .in .itembox .item {
  width: 20%;
  padding-right: 15px;
  margin: 20px 0;
  text-align: center;
}

#person_page .person_infobox .person_info1 .in .itembox .item img {
  width: 100%;
  max-width: 90px;
  margin-bottom: 10px;
}

#person_page .person_infobox .person_info1 #colorpicker {
  margin-bottom: -7%;
  display: none;
}

#person_page .person_infobox .person_info2 .in {
  display: flex;
  align-items: center;
}

#person_page .person_infobox .person_info2 .in .pic {
  width: 50%;
  transform-origin: center right;
  position: relative;
}

#person_page .person_infobox .person_info2 .in .pic .cover {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: as 1s both;
}

#person_page .person_infobox .person_info2 .in .t {
  width: 50%;
  padding-left: 30px;
}

#person_page .person_infobox .person_info2 .in .r {
  animation: run 5s 1;
}

@keyframes breathing {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes strobing {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
}

@keyframes rainbow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes cycle {
  0% {
    background-color: red;
  }
  2% {
    background-color: red;
  }
  10.3% {
    background-color: orange;
  }
  18.6% {
    background-color: yellow;
  }
  26.9% {
    background-color: #b0ff00;
  }
  35.2% {
    background-color: #00db4a;
  }
  43.5% {
    background-color: #00ffd9;
  }
  51.8% {
    background-color: #00deff;
  }
  60.1% {
    background-color: #0093ff;
  }
  68.4% {
    background-color: #0023ff;
  }
  76.7% {
    background-color: #8e00ff;
  }
  85% {
    background-color: #e100ff;
  }
  93.3% {
    background-color: #ff008b;
  }
  100% {
    background-color: red;
  }
}

@keyframes music {
  0% {
    opacity: 1;
  }
  10% {
    opacity: .3;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: .3;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: .3;
  }
}

@keyframes cpu {
  0% {
    background-color: red;
  }
  30% {
    background-color: yellow;
  }
  60% {
    background-color: green;
  }
  90% {
    background-color: yellow;
  }
}

@keyframes run {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes as {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 1023px) {
  #person_page .person_infobox .person_info1 .in {
    flex-wrap: wrap;
  }
  #person_page .person_infobox .person_info1 .in .t {
    width: 100%;
    margin-bottom: 30px;
    padding-left: 0;
  }
  #person_page .person_infobox .person_info1 .in .pic {
    width: 100%;
  }
  #person_page .person_infobox .person_info2 .in {
    flex-wrap: wrap;
  }
  #person_page .person_infobox .person_info2 .in .pic {
    width: 100%;
  }
  #person_page .person_infobox .person_info2 .in .t {
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
  }
}

/* ------------ armoury ----------- */
.person_info3 .hd_armoury_area {
  padding-top: 50px;
}

.person_info3 .hd_armoury_filter {
  width: 100%;
  max-width: 255px;
}

.person_info3 .hd_armoury_filter button {
  border: 2px solid #2fdace;
  padding: 14px 15px;
  margin-bottom: 20px;
  width: 100%;
  cursor: pointer;
}

.person_info3 .hd_armoury_filter button.hd_active {
  background: linear-gradient(to bottom, #2fdace 0%, #5bc6e9 80%);
}

.person_info3 .hd_armoury_filter button h4 {
  color: #2fdace;
  margin-bottom: 0;
  font-size: 1.125em;
  transition: color .25s ease;
}

.person_info3 .hd_armoury_filter button h4 {
  padding-bottom: 0;
}

.person_info3 .hd_armoury_filter button:hover h4 {
  color: #2fdace;
}

.person_info3 .hd_armoury_filter button.hd_active h4 {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.person_info3 .hd-sec-armoury .fright {
  width: calc(100% - 255px);
  padding-left: 20px;
}

.person_info3 .hd_armoury_content {
  width: 100%;
}

.person_info3 .hd_armoury_content li {
  height: 0;
  opacity: 0;
  visibility: none;
}

.person_info3 .hd_armoury_content li.hd_active {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.person_info3 .hd_armoury_content figure {
  width: 100%;
  height: 0;
  padding-bottom: 55.2857%;
  background: 0 0 no-repeat;
  background-size: contain;
}

.person_info3 .hd_armoury_content .owl-dots {
  width: 100%;
  position: absolute;
  top: 100%;
  margin: 10px 0;
  text-align: center;
}

.person_info3 .hd_armoury_content .owl-dots.disabled {
  display: none;
}

.person_info3 .hd_armoury_content .owl-dot {
  display: inline-block;
  vertical-align: top;
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: #333333;
  margin: 5px;
}

.person_info3 .hd_armoury_content .owl-dot.active {
  background: #2fdace;
}

.person_info3 .hd-sec-armoury .hd_btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.125em;
  font-weight: bold;
  color: #2fdace;
  border: 1px solid #2fdace;
  background-clip: padding-box;
  border-radius: 7px;
  margin: 50px 0 0;
  position: relative;
  transition: color .25s ease;
}

.person_info3 .hd-sec-armoury .hd_btn:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
}

.person_info3 .hd-sec-armoury .hd_btn:hover {
  color: #2fdace;
}

@media screen and (max-width: 768px) {
  .person_info3 .hd_armoury_filter {
    width: 100%;
    max-width: none;
  }
  .person_info3 .hd-sec-armoury .fright {
    width: 100%;
    max-width: none;
    padding-left: 0;
  }
}

#scroll_down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  position: fixed;
  bottom: 100px;
  left: 20px;
  opacity: .6;
  z-index: 10;
  display: none;
}

#scroll_down.active {
  display: inline-flex;
}

#scroll_down img {
  width: 15px;
  margin-left: 10px;
  animation: godown 2s 1;
}

@media screen and (max-width: 768px) {
  #scroll_down {
    display: none;
  }
  #scroll_down.active {
    display: none;
  }
}

@keyframes godown {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

#diy_title {
  width: 100%;
  position: relative;
  transition: .5s ease-out;
}

#diy_title .top_ul {
  padding-left: 30px;
}

#diy {
  position: relative;
}

#diy .hook {
  position: absolute;
}

#diy .hook.hook1 {
  top: 0;
  height: 50vh;
}

#diy .hook.hook2 {
  top: 50vh;
  height: 50vh;
}

#diy .hook.hook3 {
  top: 100vh;
  height: 50vh;
}

#diy_page {
  position: relative;
  z-index: 1;
}

#diy_page .diy_bg1 {
  width: 40%;
  min-width: 70px;
  position: absolute;
  top: 70vh;
  right: 0;
}

#diy_page .liner_tagset-m {
  padding-top: 5%;
  margin-bottom: 70px;
}

#diy_page .diy_infobox {
  width: 100%;
  position: relative;
}

#diy_page .diy_infobox .diy_info1 {
  display: none;
}

#diy_page .diy_infobox .diy_info1.active {
  display: block;
}

#diy_page .diy_infobox .diy_info1 .itembox {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
}

#diy_page .diy_infobox .diy_info1 .itembox .item {
  width: 24%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

#diy_page .diy_infobox .diy_info1 .itembox .item h5 {
  min-height: 60px;
}

#diy_page .diy_infobox .diy_info1 .itembox .item .in {
  flex: 1;
  padding: 40px 30px;
  background-color: #000;
}

#diy_page .diy_infobox .diy_info1 .itembox .item .in .pic {
  max-width: 150px;
  margin: 0 auto 30px;
  position: relative;
}

#diy_page .diy_infobox .diy_info1 .itembox .item .in .pic .cover {
  position: absolute;
  top: 0;
  left: 0;
}

#diy_page .diy_infobox .diy_info1 .itembox .item .in .pic .cover.rapid {
  animation: as2 0.25s 1;
  animation-iteration-count: 20;
}

#diy_page .diy_infobox .diy_info1 .itembox .item .in .pic .cover.slow {
  animation: as3 2s 1;
  animation-iteration-count: 2.5;
}

#diy_page .diy_infobox .diy_info1 .itembox .item .in .pic .cover.Hyperslow {
  animation: as4 8s 1;
  animation-iteration-count: 1;
}

#diy_page .diy_infobox .diy_info2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}

#diy_page .diy_infobox .diy_info2.active {
  display: flex;
}

#diy_page .diy_infobox .diy_info2.active .cover {
  animation: as 1s both;
}

#diy_page .diy_infobox .diy_info2 .pic,
#diy_page .diy_infobox .diy_info2 .text {
  width: 50%;
}

#diy_page .diy_infobox .diy_info2 .pic {
  transform-origin: center right;
  position: relative;
}

#diy_page .diy_infobox .diy_info2 .pic .cover {
  position: absolute;
  top: 0;
  left: 0;
}

#diy_page .diy_infobox .diy_info2 .text {
  position: relative;
}

#diy_page .diy_infobox .diy_info2 .text .in {
  padding-left: 50px;
}

#diy_page .diy_infobox .diy_info2 .diy_info_title {
  margin-bottom: 30px;
}

#diy_page .diy_infobox .diy_info3 {
  display: none;
}

#diy_page .diy_infobox .diy_info3.active {
  display: block;
}

#diy_page .diy_infobox .diy_info3 .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

#diy_page .diy_infobox .diy_info3 .itembox .item {
  width: 48%;
  margin-top: 90px;
  display: flex;
  align-items: flex-start;
}

#diy_page .diy_infobox .diy_info3 .itembox .item .pic {
  width: 120px;
  margin-right: 30px;
}

#diy_page .diy_infobox .diy_info3 .itembox .item .text {
  flex: 1;
}

#diy_page .diy_infobox .diy_info3 .learnmoreline {
  margin-top: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#diy_page .diy_infobox .diy_info3 .learnmoreline h6 {
  width: 120px;
  margin: 0 20px;
  padding: 0;
  cursor: pointer;
  text-align: center;
}

#diy_page .diy_infobox .diy_info3 .learnmoreline::before, #diy_page .diy_infobox .diy_info3 .learnmoreline::after {
  content: '';
  flex: 1;
  height: 1px;
  display: block;
  transition: .3s;
}

#diy_page .diy_infobox .diy_info3 .learnmoreline::before {
  background: linear-gradient(to right, transparent 0%, #2fdace 50%, transparent 100%);
  background-size: 200%;
  background-position-x: 100%;
}

#diy_page .diy_infobox .diy_info3 .learnmoreline::after {
  background: linear-gradient(to left, transparent 0%, #2fdace 50%, transparent 100%);
  background-size: 200%;
  background-position-x: 0%;
}

#diy_page .diy_infobox .diy_info3 .learnmoreline:hover::before {
  background-position-x: 0%;
}

#diy_page .diy_infobox .diy_info3 .learnmoreline:hover::after {
  background-position-x: 100%;
}

@keyframes as {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes as2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes as3 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes as4 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 1023px) {
  #diy_page .liner_tagset-m {
    padding-top: 30px;
    margin-bottom: 20px;
  }
  #diy_page .diy_infobox .diy_info1 .itembox {
    padding-top: 20px;
    flex-wrap: wrap;
  }
  #diy_page .diy_infobox .diy_info1 .itembox .item {
    width: 48%;
    margin-top: 50px;
  }
  #diy_page .diy_infobox .diy_info2 {
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
  }
  #diy_page .diy_infobox .diy_info2 .pic,
  #diy_page .diy_infobox .diy_info2 .text {
    width: 100%;
  }
  #diy_page .diy_infobox .diy_info2 .pic {
    width: 100%;
    padding-right: 0;
    text-align: center;
    transform: none;
  }
  #diy_page .diy_infobox .diy_info2 .pic .cover {
    left: 50%;
    transform: translateX(-50%);
  }
  #diy_page .diy_infobox .diy_info2 .text {
    width: 100%;
    margin-top: 30px;
  }
  #diy_page .diy_infobox .diy_info2 .text .in {
    padding-left: 0;
  }
  #diy_page .diy_infobox .diy_info3 .itembox .item {
    width: 100%;
    margin-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  #diy_page .diy_infobox .diy_info1 .itembox {
    padding-top: 20px;
    flex-wrap: wrap;
  }
  #diy_page .diy_infobox .diy_info1 .itembox .item {
    width: 100%;
    margin: 40px auto 0;
  }
  #diy_page .diy_infobox .diy_info1 .itembox .item h5 {
    min-height: auto;
  }
  #diy_page .diy_infobox .diy_info1 .itembox .item .in {
    margin-top: 15px;
    padding: 30px;
  }
  #diy_page .diy_infobox .diy_info1 .itembox .item .in .pic {
    max-width: 80px;
  }
  #diy_page .diy_infobox .diy_info3 .itembox .item {
    margin-top: 40px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  #diy_page .diy_infobox .diy_info3 .itembox .item .pic {
    width: 100px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #diy_page .diy_infobox .diy_info3 .itembox .item .text {
    width: 100%;
    flex: auto;
  }
}

#diy_more {
  padding: 3% 0;
  display: none;
}

#diy_more.active {
  display: block;
}

#diy_more .inner {
  width: 100%;
  max-width: 1920px;
  margin: auto;
}

#diy_more .inner .top {
  display: flex;
}

#diy_more .inner .top .item {
  width: 50%;
  padding: 30px;
}

#diy_more .inner .bottom {
  display: flex;
  flex-wrap: wrap;
}

#diy_more .inner .bottom .item {
  width: 25%;
  padding: 30px;
}

#diy_more .inner .bottom .item img {
  max-width: 120px;
  max-height: 120px;
  margin-bottom: 20px;
}

#diy_more .inner .bottom .item h6 {
  margin-bottom: 10px;
}

@media screen and (max-width: 1280px) {
  #diy_more .inner .bottom .item {
    width: 25%;
  }
}

@media screen and (max-width: 1023px) {
  #diy_more .inner .top {
    flex-wrap: wrap;
  }
  #diy_more .inner .top .item {
    width: 100%;
    padding: 30px;
  }
  #diy_more .inner .bottom {
    margin-top: 30px;
  }
  #diy_more .inner .bottom .item {
    padding: 15px;
  }
}

@media screen and (max-width: 768px) {
  #diy_more .inner {
    padding: 0;
  }
  #diy_more .inner .bottom .item {
    width: 50%;
  }
}
/*# sourceMappingURL=index.css.map */