@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@import 'reset.css';
.cookie-confirm {
  background-color: #D8D8D8;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.cookie-confirm .cc-btn-close {
  position: absolute;
  top: 5px;
  right: 20px;
}
.cookie-confirm .cc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 20px;
}
.cookie-confirm .cc-wrap .cc-txt {
  color: #454545;
}
.cookie-confirm .cc-wrap .cc-txt .cc-link {
  font-size: inherit;
  color: #004DA1;
  text-decoration: underline;
  display: block;
}
.cookie-confirm .cc-wrap .cc-btn {
  width: 80px;
  text-align: center;
  height: 40px;
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  margin-right: 30px;
  background-color: #F9BE00;
  border-radius: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 769px) {
  .cookie-confirm .cc-wrap .cc-txt {
    line-height: 26px;
  }
  .cookie-confirm .cc-wrap .cc-btn:hover {
    background-color: #F99100;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
  }
}
@media screen and (max-width: 768px) {
  .cookie-confirm .cc-wrap .cc-txt {
    font-size: 14px;
    line-height: 22px;
  }
}
body, body * {
  font-family: "Noto Sans TC", "microsoft jhenghei", Verdana, Arial, sans-serif;
}

body {
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
}
body * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body header {
  background: -webkit-gradient(linear, right top, left top, from(rgb(83, 55, 50)), to(rgb(54, 36, 33)));
  background: linear-gradient(to left, rgb(83, 55, 50) 0%, rgb(54, 36, 33) 100%);
  padding: 17px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}
body header .game__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
body header .game__name img {
  height: 100%;
  vertical-align: top;
  border-radius: 8px;
}
body header .main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
body header .main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
body header .main-nav a:hover, body header .main-nav a.active {
  color: #ffe696;
}
body header .user-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body header .user-panel--logged-in, body header .user-panel--logged-out {
  text-align: center;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  color: #fff;
  background-color: #F9BE00;
  border-radius: 8px;
  text-decoration: none;
  padding: 0 20px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
body header .user-panel--logged-in:hover, body header .user-panel--logged-out:hover {
  background-color: #F99100;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
body header .user-panel--logged-in a, body header .user-panel--logged-out a {
  text-decoration: none;
  color: #fff;
}
body header .user-panel .user-panel__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 14px;
}
body header .menu-toggle {
  display: none;
}
@media screen and (max-width: 900px) {
  body header {
    padding: 10px 24px;
  }
  body header .main-nav,
  body header .user-panel {
    display: none;
  }
  body header .menu-toggle {
    display: block;
  }
  body header .menu-toggle .close {
    display: none;
  }
  body header .menu-toggle.active .close {
    display: block;
  }
  body header .menu-toggle.active .default {
    display: none;
  }
}
body aside {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateX(340px);
          transform: translateX(340px);
  -webkit-transition: opacity 0.3s 0.1s, -webkit-transform 0.3s;
  transition: opacity 0.3s 0.1s, -webkit-transform 0.3s;
  transition: opacity 0.3s 0.1s, transform 0.3s;
  transition: opacity 0.3s 0.1s, transform 0.3s, -webkit-transform 0.3s;
}
body aside.active {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  z-index: 999;
}
body aside .aside-block {
  width: 100%;
  max-width: 340px;
  padding-top: 15px;
  background-color: #fff;
  height: calc(100% - 84px);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
body aside .aside-block .user-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body aside .aside-block .user-panel--logged-in {
  text-align: center;
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  color: #fff;
  background-color: #F9BE00;
  border-radius: 8px;
  text-decoration: none;
  padding: 0 20px;
}
body aside .aside-block .user-panel--logged-in a {
  text-decoration: none;
  color: #fff;
}
body aside .aside-block .user-panel--logged-out {
  color: #1e1e1e;
  font-size: 18px;
  text-decoration: none;
  position: absolute;
  width: 40px;
  bottom: 100px;
  right: 0;
  left: 0;
  margin: auto;
}
body aside .aside-block .user-panel__name {
  color: #1e1e1e;
  padding: 25px 20px;
  background-color: #F4F4F4;
}
body aside .aside-block .main-nav a {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  font-size: 18px;
  gap: 20px;
  text-decoration: none;
  color: #1e1e1e;
}
@media screen and (max-width: 1000px) {
  body aside {
    top: 60px;
    height: calc(100% - 60px);
  }
}
body footer {
  background-color: #362422;
  border-top: 3px solid #814D35;
  -webkit-box-shadow: 0 -2px 0 0 #5B2B03;
          box-shadow: 0 -2px 0 0 #5B2B03;
  position: relative;
  z-index: 5;
}
body footer .wrap {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body footer .wrap .footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}
body footer .wrap .footer__logos a {
  display: inline-block;
  height: 100%;
}
body footer .wrap .footer__logos a img {
  vertical-align: top;
  height: 100%;
}
body footer .wrap .footer__company-info {
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
}
body footer .wrap .footer__company-info .footer__company span {
  display: block;
}
body footer .wrap .footer__warnings li {
  padding-left: 12px;
  position: relative;
  color: #fff;
  line-height: 1.6;
  font-size: 12px;
}
body footer .wrap .footer__warnings li:after {
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
body footer .wrap .footer__rating {
  width: 45px;
}
body footer .wrap .footer__rating img {
  vertical-align: top;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  body footer .wrap {
    width: 97%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 10px;
  }
  body footer .wrap .footer__rating {
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
  }
  body footer .wrap .footer__logos {
    width: 100%;
    height: 40px;
  }
  body footer .wrap .footer__warnings {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  body footer .wrap .footer__company-info {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  body footer .wrap .footer__company-info .footer__company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
body .float-button__top {
  position: fixed;
  right: 20px;
  bottom: 150px;
  width: 45px;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
}
body .float-button__top:hover {
  opacity: 1 !important;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
body .float-button__top img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body .float-button__top {
    bottom: 20px;
  }
}

article.page__download {
  min-height: 1000px;
}
article.page__download .download__top {
  background: url(../Images/header-bg-3.jpg) no-repeat center top;
  height: 204px;
}
article.page__download .download__top .top__pd-bg {
  display: none;
}
article.page__download .download__content {
  background: #fff url(../Images/inner-bg.jpg) no-repeat center top;
}
article.page__download .download__content .download__wrap {
  width: 97%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  overflow: unset;
}
article.page__download .download__content .download__wrap .download__header {
  padding: 60px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 170px;
  margin: auto;
}
article.page__download .download__content .download__wrap .download__header img {
  width: 100%;
  vertical-align: top;
}
article.page__download .download__content .download__wrap .download__file-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3);
  grid-template-columns: repeat(3, calc((100% - 20px) / 3));
  gap: 10px;
  margin-bottom: 30px;
}
article.page__download .download__content .download__wrap .download__file-group .download__file {
  background-color: #F9F9F9;
  border-radius: 8px;
  position: relative;
  padding: 30px;
  overflow: hidden;
}
article.page__download .download__content .download__wrap .download__file-group .download__file .file__image {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 170px;
  width: 45%;
}
article.page__download .download__content .download__wrap .download__file-group .download__file .file__image img {
  width: 100%;
  vertical-align: top;
}
article.page__download .download__content .download__wrap .download__file-group .download__file dl {
  color: #015864;
  line-height: 1.4;
}
article.page__download .download__content .download__wrap .download__file-group .download__file dl dt {
  font-size: 25px;
  font-weight: 500;
}
article.page__download .download__content .download__wrap .download__file-group .download__file dl dd {
  font-size: 20px;
  color: #027383;
  margin-top: 10px;
}
article.page__download .download__content .download__wrap .download__file-group .download__file a {
  background-color: #f9be00;
  color: #1e1e1e;
  font-size: 16px;
  height: 40px;
  text-decoration: none;
  line-height: 40px;
  display: block;
  border-radius: 20px;
  max-width: 214px;
  text-align: center;
  margin-top: 30px;
  margin: 30px auto 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
article.page__download .download__content .download__wrap .download__file-group .download__file a:hover {
  background-color: #F99100;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
article.page__download .download__content .download__wrap .download__note-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
article.page__download .download__content .download__wrap .download__note-group .download__note {
  border-radius: 10px;
  background-color: #F9F9F9;
  overflow: hidden;
}
article.page__download .download__content .download__wrap .download__note-group .download__note .note__title {
  background-color: #027383;
  font-size: 18px;
  color: #f9f9f9;
  padding: 20px 25px;
  font-weight: 500;
}
article.page__download .download__content .download__wrap .download__note-group .download__note .note__content {
  font-size: 18px;
  padding: 20px 25px;
}
article.page__download .download__content .download__wrap .download__note-group .download__note .note__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px auto;
  grid-template-columns: 100px auto;
  color: #000;
  line-height: 2;
}
article.page__download .download__content .download__wrap .download__note-group .download__note .note__item span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #1e1e1e;
}
@media screen and (max-width: 1024px) {
  article.page__download .download__top {
    height: unset;
    background: unset;
  }
  article.page__download .download__top .top__pd-bg {
    display: block;
    width: 100%;
  }
  article.page__download .download__top .top__pd-bg img {
    width: 100%;
    vertical-align: top;
  }
}