@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+TC:wght@100..900&display=swap");
.layer {
  margin: 0 auto;
}
@media all and (min-width: 1169px) {
  .layer {
    width: 1168px;
  }
}
@media all and (min-width: 769px) and (max-width: 1168px) {
  .layer {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .layer img {
    display: block;
    width: 1234px;
    max-width: none;
  }
}
@media all and (min-width: 769px) {
  .layer .btn {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .layer {
    width: 90%;
  }
  .layer .editor_content {
    margin-bottom: 38px;
  }
  .layer .btn {
    margin: 0 auto;
  }
  .layer .btn span {
    color: #ffffff;
    margin-right: 12px;
  }
}

.popup-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.popup-wrap.active {
  opacity: 1;
  pointer-events: all;
}
.popup-wrap .pipeline-popup {
  position: absolute;
  right: 0;
  border-radius: 50px 0 0 50px;
  z-index: 10;
  background-color: #000000;
  height: 100vh;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(25, 161, 174, 0.5019607843);
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(25, 161, 174, 0.5019607843);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.popup-wrap .pipeline-popup img {
  display: block;
  width: 1234px;
  max-width: none;
}
@media all and (max-width: 768px) {
  .popup-wrap .pipeline-popup {
    top: 60px;
    padding: 75px 0 90px;
    width: 95%;
  }
}
.popup-wrap .pipeline-popup .btn {
  margin: 50px auto 0;
  min-height: 52px;
}
@media all and (max-width: 768px) {
  .popup-wrap .pipeline-popup .btn {
    display: none;
  }
}
.popup-wrap .pipeline-popup .icon-close-wrap {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 75px;
}
.popup-wrap .pipeline-popup .icon-close-wrap .icon-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 25%;
  right: 7%;
}
.popup-wrap .pipeline-popup .icon-close-wrap .icon-close::before, .popup-wrap .pipeline-popup .icon-close-wrap .icon-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 40px;
  background-color: #ffffff;
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: 50px;
}
.popup-wrap .pipeline-popup .icon-close-wrap .icon-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.popup-wrap .pipeline-popup .icon-close-wrap .icon-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media all and (max-width: 768px) {
  .popup-wrap .pipeline-popup .editor_content {
    overflow: auto;
  }
  .popup-wrap .pipeline-popup .editor_content::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}