@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  font-family: "microsoft jhenghei", Arial, sans-serif;
  letter-spacing: 2px;
  font-size: 24px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  margin-bottom: 0.4em;
  line-height: initial;
}

img {
  border: 0;
}

.nav_holder {
  position: absolute;
  width: 100%;
  z-index: 999;
}
.nav_holder .logo-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .nav_holder {
    position: fixed;
    width: 100%;
    background: #005980;
  }
  .nav_holder .logo-sp {
    display: block;
    float: left;
  }
  .nav_holder .logo-sp::after {
    content: "";
    clear: both;
    display: block;
  }
  .nav_holder .logo-sp img {
    height: 50px;
    margin: 15px;
    display: block;
  }
  .nav_holder .nav-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 15px;
    top: 15px;
  }
  .nav_holder .nav-btn span {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 4px;
    background: white;
    position: absolute;
    transition: background 0.3s 0.3s;
    top: 23px;
  }
  .nav_holder .nav-btn span::before, .nav_holder .nav-btn span::after {
    content: "";
    display: block;
    position: absolute;
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: margin-top 0.3s 0.3s, transform 0.3s;
  }
  .nav_holder .nav-btn span::before {
    margin-top: -12px;
  }
  .nav_holder .nav-btn span::after {
    margin-top: 12px;
  }
  .nav_holder.active .nav-btn span {
    background: transparent;
    transition: background 0.3s;
  }
  .nav_holder.active .nav-btn span::before, .nav_holder.active .nav-btn span::after {
    margin-top: 0;
    transition: margin-top 0.3s, transform 0.3s 0.3s;
  }
  .nav_holder.active .nav-btn span::before {
    transform: rotate(45deg);
  }
  .nav_holder.active .nav-btn span::after {
    transform: rotate(-45deg);
  }
}

.nav {
  max-width: 1800px;
  padding: 0 15px;
}
.nav::after {
  content: "";
  display: block;
  clear: both;
}
.nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  float: right;
}
.nav ul li {
  float: left;
  margin-right: 2px;
}
.nav ul li:last-of-type {
  margin-right: 0;
}
.nav ul .sublayer {
  display: none;
}
.nav a {
  text-decoration: none;
  font-weight: bold;
  color: white;
  display: block;
  background: #005980;
  padding: 16px 10px 8px 10px;
}
.nav a:hover, .nav a.active {
  background: #e32c3e;
}
@media only screen and (max-width: 1199px) {
  .nav a {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 767px) {
  .nav {
    max-height: 0;
    overflow: hidden;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    padding: 0;
    width: 100%;
  }
  .nav ul {
    float: none;
  }
  .nav ul li {
    float: none;
    margin-right: 0;
  }
  .nav_holder .nav ul {
    padding-bottom: 15px;
  }
  .nav_holder .nav ul li {
    width: 200px;
    margin: 0 auto;
  }
  .nav_holder .nav a {
    background: transparent;
    padding: 8px 15px;
    font-size: 24px;
    position: relative;
    white-space: nowrap;
    font-weight: normal;
  }
  .nav_holder .nav a::before, .nav_holder .nav a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav_holder .nav a::before {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    left: -17px;
  }
  .nav_holder .nav a::after {
    left: -8px;
    border: 10px solid #005980;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
  }
  .nav_holder .nav a.active {
    color: #FFDA00;
  }
  .nav_holder .nav .sublayer {
    display: block;
  }
  .nav_holder .nav .sublayer a::before, .nav_holder .nav .sublayer a::after {
    display: none;
  }
  .nav_holder.active .nav {
    max-height: 500px;
  }
}

.breadcrumb-title {
  color: #005980;
  text-align: center;
  margin-top: -20px;
  margin-bottom: 50px;
  display: none;
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-title {
    display: block;
  }
}

.sp-hide {
  display: none;
}

.icon {
  width: 36px;
  height: 36px;
  display: inline-block;
}
.icon.clock {
  background: #fff url("../img/icons/clock.jpg") 0 0 no-repeat;
}
.icon.text {
  background: #fff url("../img/icons/text.jpg") 0 0 no-repeat;
}
.icon.peo {
  background: #fff url("../img/icons/peo.jpg") 0 0 no-repeat;
}

.btn {
  border: 0;
  font-size: 1.4em;
  font-family: "microsoft jhenghei", Arial, sans-serif;
  padding: 6px 24px;
  border-radius: 30px;
  font-weight: bold;
  background: #005980;
  color: white;
  display: inline-block;
  cursor: pointer;
}
.btn.revert {
  background: white;
  color: #005980;
  box-shadow: inset 0 0 0 3px #005980;
}
.btn.revert img {
  margin-right: 10px;
  margin-bottom: -6px;
}
.btn:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 1em;
  }
  .btn img {
    width: 26px;
    margin-bottom: -2px;
  }
}

.link {
  word-break: break-all;
  text-decoration: none;
  color: #005980;
}

.img-btn {
  display: inline-block;
}
.img-btn img {
  max-width: 100%;
  width: 100%;
}

.videos {
  margin-bottom: -80px;
}
.videos ul {
  list-style-type: none;
  margin: 0;
  padding: 0 15px;
  box-sizing: border-box;
}
.videos ul::after {
  content: "";
  display: block;
  clear: both;
}
.videos li {
  float: left;
  margin: 0 50px;
}
.videos li:first-of-type {
  float: none;
  margin: 0 auto;
  max-width: 656px;
}
.videos .video {
  padding-bottom: 80px;
}
.videos .content {
  margin-bottom: 40px;
}
.videos .inner {
  position: relative;
  border: 3px solid #005980;
  overflow: hidden;
}
.videos .cover {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.videos .cover img {
  max-width: 100%;
  display: block;
}
.videos .video_img img {
  display: block;
  max-width: 100%;
}
.videos .title {
  color: #005980;
  font-weight: bold;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.videos .title a {
  background: white;
  color: #005980;
  display: inline-block;
  text-decoration: none;
  font-size: 0.5em;
  border-radius: 24px;
  padding: 2px 10px;
  margin: 0 15px;
}
@media only screen and (max-width: 1599px) {
  .videos li {
    width: 48%;
    margin: 0 1%;
  }
  .videos .video_img img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .videos .cover {
    right: 15px;
    bottom: 15px;
  }
  .videos .cover img {
    width: 54px;
  }
  .videos .title {
    font-size: 24px;
    justify-content: center;
  }
  .videos .title a {
    font-size: 16px;
  }
  .videos li {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
}

.pager {
  text-align: center;
}
.pager ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.pager ul a {
  text-decoration: none;
  background: white;
  color: #005980;
  display: block;
  border-radius: 15px;
  padding: 0 6px;
  transition-duration: 0.3s;
}
.pager ul a:hover {
  background: #dedede;
}
.pager ul li {
  display: inline-block;
}
.pager ul li.disabled a {
  opacity: 0.5;
  background: white;
  cursor: no-drop;
}
.pager ul li.active a {
  background: #005980;
  color: white;
}

#gotop {
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 50px;
  right: 15px;
  z-index: 995;
  border-radius: 3px;
  background: #005980;
  padding: 3px;
  box-sizing: border-box;
  color: white;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}
#gotop.show {
  opacity: 1;
  visibility: visible;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  margin-top: 0;
  top: 0;
  right: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owl-theme .owl-dots .owl-dot {
  margin-bottom: 25px;
}
.owl-theme .owl-dots .owl-dot:last-of-type {
  margin-bottom: 0;
}
.owl-theme .owl-dots .owl-dot span {
  background: #9f9f9f;
  width: 15px;
  height: 15px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  box-shadow: 0 0 8px #9c9c9c;
  background: white;
}

#html5-watermark {
  display: none !important;
}

.slider {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  background: #005980;
  position: relative;
}
.slider .side {
  width: 20%;
  background: white;
  text-align: center;
  position: relative;
  position: absolute;
  z-index: 3;
  height: 100%;
}
.slider .side::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
  background: #005980;
  animation: slidershowcolor 0.8s 0.5s forwards linear;
}
@keyframes slidershowcolor {
  from {
    height: 0%;
    opacity: 0;
  }
  to {
    height: 100%;
    opacity: 1;
  }
}
.slider .side .logo {
  display: inline-block;
  margin: 0 30px;
  height: 28%;
  position: relative;
  z-index: 2;
}
.slider .side .logo::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.slider .side .logo img {
  max-width: 100%;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.slider .side .taiwan {
  position: relative;
  z-index: 180;
}
.slider .side .taiwan img {
  width: 50.9375vw;
}
.slider .owl-carousel {
  width: 100%;
}
.slider .owl-carousel .item .text {
  position: absolute;
  width: 28.75vw;
  top: 32.34146%;
  left: 22.1875vw;
}
.slider .owl-carousel .item .text img {
  max-width: 100%;
  width: auto;
  opacity: 0;
  margin-left: -15px;
}
.slider .owl-carousel .item .text img:first-of-type {
  margin-bottom: 8%;
}
.slider .owl-carousel .item .text img:nth-of-type(2) {
  margin-bottom: 4%;
}
.slider .owl-carousel.animateText .owl-item.active {
  display: inline-block;
}
.slider .owl-carousel.animateText .owl-item.active .item .text img {
  transition-duration: 0.3s;
  opacity: 1;
  margin-left: 0;
}
.slider .owl-carousel.animateText .owl-item.active .item .text img:first-of-type {
  transition-delay: 0.3s;
}
.slider .owl-carousel.animateText .owl-item.active .item .text img:nth-of-type(2) {
  transition-delay: 0.6s;
}
.slider .owl-carousel.animateText .owl-item.active .item .text img:last-of-type {
  transition-delay: 0.9s;
}
@media only screen and (max-width: 767px) {
  .slider {
    display: none;
  }
}

.slider_sp {
  width: 100%;
  display: none;
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  .slider_sp {
    display: block;
  }
  .slider_sp .owl-theme .owl-nav.disabled + .owl-dots {
    position: relative;
    height: auto;
    display: block;
    right: auto;
    margin: 30px 0;
  }
  .slider_sp .owl-theme .owl-dots .owl-dot {
    margin: 0 10px;
  }
  .slider_sp .owl-theme .owl-dots .owl-dot span {
    background: #005980;
  }
}

.photo-box, .video-box {
  list-style-type: none;
  margin: 0 -15px;
  padding: 0;
}
.photo-box::after, .video-box::after {
  content: "";
  display: block;
  clear: both;
}
.photo-box li, .video-box li {
  float: left;
  width: 33.3333%;
  padding: 0 15px;
  margin-bottom: 15px;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .photo-box li, .video-box li {
    width: 50%;
  }
}

.video-box li {
  width: 50%;
}
.video-box li a {
  display: block;
  position: relative;
}
.video-box li .cover {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.video-box li h2 {
  font-size: 1em;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .video-box li .cover {
    bottom: 15px;
    right: 15px;
  }
  .video-box li .cover img {
    width: 54px;
  }
}

.article {
  padding: 90px;
  background: white;
}
.article .title {
  color: #005980;
  text-decoration: none;
}
.article .tags .tag {
  line-height: 36px;
  display: inline-block;
  vertical-align: top;
  font-weight: bold;
  padding-bottom: 8px;
  margin-right: 16px;
}
.article .tags .tag .icon {
  vertical-align: top;
}
.article__header {
  border-bottom: 1px solid #005980;
  margin-bottom: 1em;
}
.article__content img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
  .article {
    padding: 30px;
    text-align: justify;
    word-break: break-all;
  }
  .article .title {
    font-size: 24px;
  }
  .article .tags {
    text-align: left;
  }
  .article .tags .tag {
    font-size: 16px;
  }
  .article__content {
    font-size: 18px;
  }
}
.list {
  position: relative;
}
.list .tabs ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -40px;
  left: 0;
}
.list .tabs ul::after {
  content: "";
  display: block;
  clear: both;
}
.list .tabs li {
  float: left;
  margin-right: 3px;
}
.list .tabs li .tab {
  background: white;
  color: #717171;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  display: block;
  height: 40px;
  line-height: 1.4em;
  padding: 0 30px;
  border-radius: 20px 20px 0 0;
  box-shadow: inset 0 -2px white;
}
.list .tabs li .tab.active {
  color: #e02e3a;
  height: 50px;
  margin-top: -10px;
}
.list .list-box {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
}
.list .list-box h2 {
  position: relative;
}
.list .list-box .title {
  font-size: 1.2em;
  display: block;
}
.list .list-box .title::before {
  content: "•";
  position: absolute;
  line-height: normil;
  left: -30px;
}
.list .list-box p {
  margin-top: 0;
}
.list .list-box.active {
  display: block;
}

@media only screen and (max-width: 1199px) {
  .list .tabs ul {
    top: -30px;
    white-space: nowrap;
    overflow-x: auto;
    width: 100%;
  }
  .list .tabs li {
    float: none;
    display: inline-block;
  }
  .list .tabs li .tab {
    font-size: 1em;
    height: 30px;
    padding: 0 15px;
    border-radius: 15px 15px 0 0;
  }
  .list .tabs li .tab.active {
    height: 40px;
  }
  .list .list-box .title {
    font-size: 24px;
  }
  .list .list-box .title::before {
    left: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .list .tabs::before {
    content: "";
    width: calc(100% + 30px);
    height: 40px;
    position: absolute;
    background: white;
    top: -50px;
    left: -15px;
  }
  .list .tabs ul {
    background: white;
    top: -50px;
  }
  .list .tabs li {
    margin-right: 0;
  }
  .list .tabs li .tab {
    height: 40px;
    line-height: 40px;
  }
  .list .list-box p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .list .tabs li .tab {
    padding: 0 8px;
    border-radius: 8px 8px 0 0;
  }
}
@media only screen and (max-width: 480px) {
  .list .tabs li {
    letter-spacing: 0;
    margin-right: -5px;
  }
}
.shadow {
  position: relative;
}
.shadow::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  background: #fff url("../img/shadow-new.jpg") 0 0 no-repeat;
  background-size: cover;
  width: 100%;
  z-index: -1;
  padding-bottom: 11.46497%;
  bottom: 0;
  transform: translateY(100%);
}

.main {
  background: #FFDA00;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.container {
  padding: 90px 15px;
  padding-bottom: 160px;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.action img {
  display: inline-block;
}
.action.center {
  text-align: center;
}
.action.right {
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .action.right .btn.revert {
    float: left;
  }
}

.footer {
  text-align: center;
  background: white;
  padding: 30px 0;
}
.footer img {
  max-width: 100%;
}

@media only screen and (max-width: 1599px) {
  .container {
    max-width: 1200px;
    width: 100%;
  }

  .footer {
    text-align: center;
  }
  .footer img {
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding-bottom: 60px;
  }
}
.fund-img {
  margin: -90px;
  max-width: calc( 100% + 180px );
  min-width: calc( 100% + 180px );
}
.fund-img.sp {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .fund-img {
    display: none;
  }
  .fund-img.sp {
    display: block;
    margin: -30px;
    max-width: calc( 100% + 60px );
    min-width: calc( 100% + 60px );
  }
}
.competition {
  position: relative;
}
.competition .list-box {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.competition .tabs {
  background: white;
  position: absolute;
  width: 100%;
  left: 0;
  top: 20px;
  padding: 8px 0;
}
.competition .tabs ul {
  max-width: 1570px;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-around;
}
.competition .tabs ul li {
  display: inline-block;
}
.competition .tabs ul li .tab {
  text-decoration: none;
  color: #727171;
  font-weight: bold;
  display: block;
}
.competition .tabs ul li .tab:hover {
  color: black;
}
.competition .tabs ul li .tab.active {
  color: #D00012;
}
@media only screen and (max-width: 1599px) {
  .competition .tabs ul li .tab {
    font-size: 20px;
  }
}
.competition .tab-content {
  display: none;
}
.competition .tab-content.active {
  display: block;
}
@media only screen and (max-width: 1599px) {
  .competition .tabs ul {
    max-width: 1170px;
  }
}
@media only screen and (max-width: 1199px) {
  .competition .tabs ul {
    max-width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    display: block;
  }
  .competition .tabs li {
    margin: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .competition .tabs {
    top: 120px;
    padding: 4px 0;
  }
}

[data-tab='interview'] > li {
  margin-bottom: 15px;
}
[data-tab='interview'] > li > div > a {
  text-decoration: none;
  display: inline-block;
  color: #005980;
  font-weight: bold;
  font-size: 1.4em;
  margin-left: -12px;
  position: relative;
}
[data-tab='interview'] > li > div > a + ul {
  padding: 0;
  margin: 0;
  margin-left: 6px;
  list-style-type: none;
  font-size: 24px;
  margin-bottom: 8px;
}
[data-tab='interview'] > li > div > a + ul li > span {
  display: inline-block;
  vertical-align: top;
}
[data-tab='interview'] > li > div > a + ul li > span:first-of-type {
  width: 110px;
  position: relative;
  white-space: nowrap;
}
[data-tab='interview'] > li > div > a + ul li > span:first-of-type::after {
  content: "-";
  position: absolute;
  right: -18px;
  top: 0;
}
[data-tab='interview'] > li > div > a + ul li > span:last-of-type {
  width: calc(100% - 130px);
  margin-left: 20px;
}
[data-tab='interview'] > li > div > a + ul li > span:last-of-type a {
  color: black;
  text-decoration: none;
}
[data-tab='interview'] > li > div > a + ul li > span:last-of-type a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1199px) {
  [data-tab='interview'] > li > div > a {
    font-weight: normal;
    font-size: 1em;
    margin-left: -10px;
  }
  [data-tab='interview'] > li > div > a > span {
    top: 5px;
  }
  [data-tab='interview'] > li + ul {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  [data-tab='interview'] > li > div > a + ul {
    font-size: 18px;
  }
  [data-tab='interview'] > li > div > a + ul li > span:first-of-type {
    width: 80px;
  }
  [data-tab='interview'] > li > div > a + ul li > span:last-of-type {
    width: calc(100% - 100px);
  }
}

/*# sourceMappingURL=master.css.map */
