@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
body {
  font-family: 'Noto Sans TC', 'Heiti TC', 'Microsoft JhengHei',  Helvetica, Arial, serif;
  overflow-x: hidden;
  color: #393939;
}

::-webkit-scrollbar {
  width: 5px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background-color: #f2f2f2;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 1.6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 1.6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: #acacac;
  border-radius: 3px;
  margin: 0 auto;
}

@-webkit-keyframes floatNvda {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes floatNvda {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes floatAmd {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes floatAmd {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes lightNvda {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  81% {
    opacity: 1;
  }
  82% {
    opacity: 0.6;
  }
  83% {
    opacity: 1;
  }
  84% {
    opacity: 0.4;
  }
  85% {
    opacity: 1;
  }
  93% {
    opacity: 0.4;
  }
  94% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lightNvda {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  81% {
    opacity: 1;
  }
  82% {
    opacity: 0.6;
  }
  83% {
    opacity: 1;
  }
  84% {
    opacity: 0.4;
  }
  85% {
    opacity: 1;
  }
  93% {
    opacity: 0.4;
  }
  94% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes lightAmd {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  25.5% {
    opacity: 0.6;
  }
  26% {
    opacity: 1;
  }
  26.5% {
    opacity: 0.6;
  }
  27% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lightAmd {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  25.5% {
    opacity: 0.6;
  }
  26% {
    opacity: 1;
  }
  26.5% {
    opacity: 0.6;
  }
  27% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

img {
  width: 100%;
  height: auto;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.visual-bg {
  position: relative;
  background-image: url(../imgs/webp/visual-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #393939;
  background-size: 2440px;
}

.visual-wrapper {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 640px;
  overflow: hidden;
}

.visual-content {
  position: absolute;
  right: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
}

.visual-content .title-holder {
  width: 500px;
}

.visual-content span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 24px;
  background-image: -webkit-gradient(linear, left top, right top, from(#2e3192), to(#29abe2));
  background-image: linear-gradient(to right, #2e3192 0%, #29abe2 100%);
  padding: 0px 5px 0px 10px;
  margin-bottom: 15px;
}

.stage, .nvda, .amd {
  position: absolute;
}

.stage {
  left: calc(50% + 100px);
  bottom: 100px;
  width: 400px;
}

.nvda {
  left: calc(50% - 90px);
  bottom: 100px;
  width: 600px;
  -webkit-animation-name: floatNvda;
          animation-name: floatNvda;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.nvda .light {
  -webkit-animation-name: lightNvda;
          animation-name: lightNvda;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.amd {
  left: calc(50% + 120px);
  bottom: 30px;
  width: 600px;
  -webkit-animation-name: floatAmd;
          animation-name: floatAmd;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.amd .light {
  -webkit-animation-name: lightAmd;
          animation-name: lightAmd;
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.nvda .light, .amd .light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
}

.scroll-down {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 100%;
  height: 35px;
  background-image: url(../imgs/webp/scroll-down.webp);
  background-position: center;
  background-repeat: no-repeat;
}

.left-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
}

.right-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
}

.section-1-bg {
  position: relative;
  background-image: url(../imgs/webp/section-1-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0px;
}

.section-title-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
  padding-bottom: 60px;
}

.type-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 400px;
  min-height: 500px;
  padding: 30px;
  margin: 30px auto 80px;
  z-index: 1;
}

.type-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100% + 50px);
  z-index: 0;
}

.type-gamer:before {
  top: 0;
  background-color: #e02b70;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.type-gamer .type-title h3 {
  color: #42021c;
}

.type-creator {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.type-creator:before {
  bottom: 0;
  background-color: #32ccc4;
  -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

.type-creator .type-title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.type-creator .type-title h3 {
  color: #04473f;
}

.type-creator .type-content {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.type-creator .type-content p {
  margin-bottom: 0;
}

.type-creator .type-imgs-wrapper {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.type-title {
  position: relative;
  z-index: 5;
}

.type-title span {
  position: absolute;
  right: 30px;
  font-size: 72px;
  line-height: 1;
  font-family: 'Bebas Neue', cursive;
  color: #fff;
  opacity: 0.7;
}

.type-title h3 {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  margin-top: 35px;
  margin-left: 30px;
  margin-bottom: 15px;
}

.type-content {
  position: relative;
  width: 100%;
  font-size: 20px;
  color: #fff;
  letter-spacing: 1px;
}

.type-imgs-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}

.type-imgs-wrapper .img-holder {
  position: absolute;
  -webkit-box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.35);
          box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.35);
}

.type-imgs-wrapper .img-holder:nth-child(1) {
  position: relative;
  width: calc(100% + 50px);
}

.type-imgs-wrapper .img-holder:nth-child(2) {
  width: 50%;
}

.type-imgs-wrapper .img-holder:nth-child(3) {
  width: 40%;
}

.type-gamer .type-imgs-wrapper .img-holder:nth-child(1) {
  top: 0px;
  left: -50px;
}

.type-gamer .type-imgs-wrapper .img-holder:nth-child(2) {
  top: calc(100% - 40px);
  left: calc(100% - 210px);
}

.type-gamer .type-imgs-wrapper .img-holder:nth-child(3) {
  top: calc(100% - 70px);
  left: calc(100% - 80px);
}

.type-creator .type-title {
  margin-top: 15px;
}

.type-creator .type-imgs-wrapper .img-holder:nth-child(1) {
  -webkit-transform: translate(30px, -30px);
          transform: translate(30px, -30px);
}

.type-creator .type-imgs-wrapper .img-holder:nth-child(2) {
  bottom: -40px;
  left: 10px;
}

.type-creator .type-imgs-wrapper .img-holder:nth-child(3) {
  bottom: 30px;
  left: -90px;
}

.section-border {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 10px;
  background-image: url(../imgs/webp/section-1-border.webp);
  background-position: center;
  background-repeat: no-repeat;
}

.section-2-bg {
  position: relative;
  background-image: url(../imgs/webp/section-2-bg.webp);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: auto;
  padding: 60px 0px;
}

.keyword-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
}

.keyword-wrapper.wrapper-r .img-wrapper {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.keyword-wrapper.wrapper-r .text-wrapper {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.keyword-wrapper .img-wrapper {
  padding: 0px 30px;
}

.keyword-wrapper .img-holder {
  position: relative;
  z-index: 1;
}

.keyword-wrapper .img-holder:before {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80%;
  height: 80%;
  background-color: #cccccc;
  z-index: 0;
}

.keyword-wrapper .img-holder img {
  position: relative;
  -webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}

.keyword-wrapper .text-wrapper {
  padding: 0px 30px;
}

.keyword-wrapper .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-weight: bold;
  margin-bottom: 15px;
}

.keyword-wrapper h4 {
  font-size: 26px;
  font-family: 'Bebas Neue', cursive;
  font-style: italic;
  color: #18b7a7;
  margin-right: 15px;
}

.keyword-wrapper h4 span {
  font-size: 38px;
}

.keyword-wrapper h3 {
  font-size: 52px;
  font-weight: bold;
}

.keyword-wrapper .description {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #555;
}

.keyword-wrapper .link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.keyword-wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  color: #d4145a;
  font-size: 16px;
  text-decoration: underline;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.keyword-wrapper a:hover {
  color: #f53a7f;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.keyword-wrapper a:hover .link-badge {
  background-color: #f53a7f;
}

.keyword-wrapper .link-badge {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #fff;
  font-size: 14px;
  background-color: #d4145a;
  padding: 6px 16px 6px 8px;
  margin-right: 10px;
  -webkit-clip-path: polygon(0 0%, 90% 0, 100% 50%, 90% 100%, 0 100%);
          clip-path: polygon(0 0%, 90% 0, 100% 50%, 90% 100%, 0 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.box-wrapper {
  position: relative;
  margin-bottom: 80px;
}

.box-wrapper:after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 96%;
  height: 96%;
  -webkit-clip-path: polygon(100px 0%, 100% 0, 100% 100%, 0 100%, 0% 100px);
          clip-path: polygon(100px 0%, 100% 0, 100% 100%, 0 100%, 0% 100px);
  background-color: #c6c6c6;
}

.box-arrow {
  position: absolute;
  top: 30px;
  left: 0;
  width: 210px;
  height: 30px;
  background-image: url(../imgs/webp/box-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.box-holder {
  position: relative;
  background-color: #565656;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-clip-path: polygon(100px 0%, 100% 0, 100% 100%, 0 100%, 0% 100px);
          clip-path: polygon(100px 0%, 100% 0, 100% 100%, 0 100%, 0% 100px);
  padding: 3px;
  z-index: 1;
}

.box-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 100px 50px 50px;
  margin: 0 auto;
  background-color: #f3f3f3;
  background-image: url(../imgs/webp/box-bg.webp);
  background-position: center;
  -webkit-clip-path: polygon(98px 0%, 100% 0, 100% 100%, 0 100%, 0% 98px);
          clip-path: polygon(98px 0%, 100% 0, 100% 100%, 0 100%, 0% 98px);
  z-index: 1;
}

.box-inner .title-holder {
  position: relative;
  margin-top: 30px;
  margin-bottom: 15px;
}

.box-inner .title-holder span {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 68px;
  font-family: 'Bebas Neue', cursive;
  color: #ccc;
  line-height: 1.5;
}

.box-inner .title-holder h3 {
  position: relative;
  font-size: 38px;
  font-weight: bold;
  color: #2a2a2a;
}

.box-inner h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.box-inner .link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.box-inner .link-wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 18px;
  color: #fff;
  padding: 4px 80px 6px 70px;
  -webkit-clip-path: polygon(0 0%, 96% 0, 100% 50%, 96% 100%, 0 100%);
          clip-path: polygon(0 0%, 96% 0, 100% 50%, 96% 100%, 0 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #2e3192), to(#29abe2));
  background-image: linear-gradient(to right, #2e3192 30%, #29abe2 100%);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
}

.box-inner .link-wrapper a:hover {
  color: #00e1ff;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 52.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.backtotop {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 100%;
  height: 35px;
  background-image: url(../imgs/webp/backtotop.webp);
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

@media (hover: hover) {
  .keyword-wrapper a:hover {
    color: #f53a7f;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  .keyword-wrapper a:hover .link-badge {
    background-color: #f53a7f;
  }
  .box-inner .link-wrapper a:hover {
    color: #00e1ff;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .backtotop:hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
/*# sourceMappingURL=style.css.map */