@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Noto+Sans+TC:wght@300;400;500;700&display=swap");
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

html {
  font-size: 16px;
}

body {
  font-family: "Lato", "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
}
body.season1 {
  background: url("s1/img/kv_bg.png") center/cover fixed;
}
body.season2 {
  background: url("s2/img/all_bg.png") center/cover fixed;
}
body.season3 {
  background: url("s3/img/kv_bg.jpg") center/cover fixed;
}
body.season4 {
  background: url("img/mainbg.jpg") center/cover fixed;
}

a {
  color: inherit;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
}
.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background: #fff linear-gradient(120deg, #fff, #ddd);
  font-size: 0.95rem;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  -webkit-transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms, -webkit-transform 240ms, -webkit-box-shadow 240ms;
}
.fix_aside .fx_item.is_primary {
  background: #1d2a72 -webkit-gradient(linear, left top, right top, color-stop(1%, #1d59bc), color-stop(99%, #1b1464));
  background: #1d2a72 linear-gradient(90deg, #1d59bc 1%, #1b1464 99%);
  color: #fff2;
}
.fix_aside .fx_item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/arrow_top.png") center/contain no-repeat;
}

.g_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
}
.season1 .g_header {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.12)), color-stop(10%, rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, right top, color-stop(1%, #1d59bc), color-stop(99%, #1b1464));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(90deg, #1d59bc 1%, #1b1464 99%);
}
.season2 .g_header {
  background: rgba(161, 194, 209, 0.9);
}
.season3 .g_header {
  background: -webkit-gradient(linear, left top, left bottom, from(#0E1354), to(rgba(14, 19, 84, 0)));
  background: linear-gradient(#0E1354, rgba(14, 19, 84, 0));
}
.g_header.is_active {
  background-color: #1d59bc;
}
.g_header.is_active .header_menu {
  height: 0;
}
.g_header .header_top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  color: #fff;
  height: 52px;
  -webkit-transition: height 100ms;
  transition: height 100ms;
  overflow: hidden;
}
.g_header .header_logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0.5rem 1.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}
.g_header .site_switch {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding-top: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g_header .site_switch .sw_item a {
  display: block;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem 1rem 0 0;
}
.g_header .site_switch .sw_item a:hover {
  color: inherit;
  text-decoration: none;
}
.g_header .site_switch .sw_item.is_active a {
  background-color: #F49C00;
}
.g_header .header_menu {
  position: relative;
  overflow: hidden;
}
.g_header .menu_btn {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.g_header .menu_btn .icon {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 4px;
  margin-top: -2px;
  background-color: #000;
}
.g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.g_header .menu_btn .icon::before {
  top: -200%;
}
.g_header .menu_btn .icon::after {
  bottom: -200%;
}
.g_header .menu_btn.sty_white {
  border-color: #fff;
}
.g_header .menu_btn.sty_white .icon, .g_header .menu_btn.sty_white .icon::before, .g_header .menu_btn.sty_white .icon::after {
  background-color: #fff;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@-webkit-keyframes nav_highlighter {
  0% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  100% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
}
@keyframes nav_highlighter {
  0% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  100% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
}
.g_header .nav_item.is_highlight {
  position: relative;
  overflow: hidden;
}
.g_header .nav_item.is_highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#ffc578), to(#ff787c));
  background: linear-gradient(90deg, #ffc578, #ff787c);
  -webkit-animation: nav_highlighter 3s linear infinite;
          animation: nav_highlighter 3s linear infinite;
}
.g_header .nav_item.is_highlight a {
  color: #ffc578;
}
.g_header .nav_item.is_highlight a:hover {
  color: #fccf00;
}
.g_header .nav_item a {
  display: block;
  padding: 1.25rem 1rem;
  font-size: 1.125em;
  line-height: 1;
}
.g_header .nav_link {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.g_header .nav_link:hover {
  color: #fccf00;
  text-decoration: none;
}

@-webkit-keyframes scale {
  0% {
    left: 0;
    top: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    left: 2%;
    top: 3%;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}

@keyframes scale {
  0% {
    left: 0;
    top: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    left: 2%;
    top: 3%;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
    opacity: 0.05;
  }
  50% {
    -webkit-transform: rotate(-180deg) scale(0.8 1.2);
            transform: rotate(-180deg) scale(0.8 1.2);
    opacity: 0.02;
  }
  100% {
    -webkit-transform: rotate(-360deg) scale(1);
            transform: rotate(-360deg) scale(1);
    opacity: 0.05;
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
    opacity: 0.05;
  }
  50% {
    -webkit-transform: rotate(-180deg) scale(0.8 1.2);
            transform: rotate(-180deg) scale(0.8 1.2);
    opacity: 0.02;
  }
  100% {
    -webkit-transform: rotate(-360deg) scale(1);
            transform: rotate(-360deg) scale(1);
    opacity: 0.05;
  }
}
@-webkit-keyframes float {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(8px, 16px);
            transform: translate(8px, 16px);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(8px, 16px);
            transform: translate(8px, 16px);
  }
}
.all_content {
  position: relative;
  z-index: 2;
  margin-top: 109px;
}

.g_kv {
  position: relative;
}
.season1 .g_kv .desktop {
  height: calc(100vh - 56px);
}
.season1 .g_kv .desktop .img {
  width: 100%;
  height: 100%;
  background: url("s1/img/kv_main.png") center/contain no-repeat;
}
.season1 .g_kv .desktop .tit {
  position: absolute;
  left: 29.1666666667%;
  top: 20%;
  width: 42.1875%;
}
.season1 .g_kv .desktop .tit img {
  width: 100%;
}
.season2 .g_kv .desktop .img {
  width: 100%;
  padding-top: 56.25%;
  background: url("s2/img/kv_bg.png") center/contain no-repeat;
}
.season2 .g_kv .desktop .tit {
  position: absolute;
  left: 50%;
  top: 0%;
  width: 50%;
}
.season2 .g_kv .desktop .tit img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.season3 .g_kv .desktop .bg {
  width: 100%;
  padding-top: 56.25%;
}
.season3 .g_kv .desktop .kv_tit {
  position: absolute;
  left: 0;
  top: -2%;
  width: 69.375%;
}
.season3 .g_kv .desktop .kv_icons {
  position: absolute;
  left: 5.2083333333%;
  top: 31.25%;
  width: 48.9583333333%;
}
.season4 .g_kv .desktop .bg {
  width: 100%;
  height: 50vw;
}
.season4 .g_kv .desktop .kv_sub,
.season4 .g_kv .desktop .kv_tit {
  position: absolute;
  left: 5vw;
  width: 43.75%;
}
.season4 .g_kv .desktop .kv_sub {
  top: 9%;
}
.season4 .g_kv .desktop .kv_tit {
  top: 18%;
}

.main_content {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.main_content .sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.main_content .sc_title .tit {
  border-bottom: 2px solid currentColor;
  padding: 0.75rem 1.5rem;
  font-size: 2rem;
  font-weight: 400;
  color: #1d59bc;
}

.sc_intro {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.sc_intro .intro_wrap {
  padding: 2rem;
  border-radius: 1rem;
  background-color: #f7f7f7;
}
.sc_intro .intro_wrap .parag {
  margin: 0 auto;
  max-width: 60rem;
}
.sc_intro .intro_wrap p {
  font-size: 1.25rem;
  line-height: 1.6;
}
.sc_intro .intro_wrap p:last-child {
  margin-bottom: 0;
}

.expert_cnt {
  padding-bottom: 3rem;
}
.expert_cnt .item {
  position: relative;
  height: 400px;
}
.expert_cnt .item a {
  display: block;
}
.expert_cnt .item a:hover .imgs::before {
  opacity: 0.5;
}
.expert_cnt .item a:hover .imgs img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.expert_cnt .item .imgs {
  position: relative;
  overflow: hidden;
}
.expert_cnt .item .imgs::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background-image: linear-gradient(120deg, #ff787c, #ffc578);
  opacity: 0.1;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.expert_cnt .item .imgs::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 40%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
.expert_cnt .item .imgs img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.expert_cnt .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 23;
  width: 100%;
  height: 35%;
  padding-top: 4rem;
}
.expert_cnt .item .tit {
  border-left: 6px solid #ffc578;
  width: 100%;
  height: 100%;
  padding: 0 1.5rem 1rem;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
.season3 .expert_cnt .item {
  height: auto;
}
.season3 .expert_cnt .item .imgs {
  padding-top: 66.6666666667%;
}
.season3 .expert_cnt .item .imgs img {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}
.season3 .expert_cnt .item .text {
  height: auto;
}
.expert_cnt .slick-dots {
  bottom: -25px;
  padding: 0 0.5rem;
  line-height: 1;
}
.expert_cnt .slick-dots li {
  margin: 0;
}
.expert_cnt .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.support_content {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(0, 0, 0, 0.2)), color-stop(99%, rgba(0, 0, 0, 0.6)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 1%, rgba(0, 0, 0, 0.6) 99%);
  color: #fff;
}
.season2 .support_content {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(0, 0, 0, 0.2)), color-stop(99%, rgba(0, 0, 0, 0.6)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 1%, rgba(0, 0, 0, 0.6) 99%);
}
.season3 .support_content {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(14, 19, 84, 0.6)), color-stop(99%, rgba(14, 19, 84, 0.9)));
  background-image: linear-gradient(180deg, rgba(14, 19, 84, 0.6) 1%, rgba(14, 19, 84, 0.9) 99%);
}
.support_content section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.support_content .sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 1em;
  padding: 0.75rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.support_content .sc_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(1%, #ffc578), color-stop(99%, #ff787c));
  background-image: linear-gradient(90deg, #ffc578 1%, #ff787c 99%);
}
.support_content .sc_title .tit {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
  font-size: 2rem;
  font-weight: 400;
  color: #ffc578;
}
.support_content .sc_title .outlink {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 1rem;
}
.support_content .sc_title .outlink a {
  display: inline-block;
  border-radius: 2rem;
  border: 1px solid currentColor;
  padding: 0.5rem 1.25rem;
  color: #ffc578;
}
.support_content .sc_title .outlink a:hover {
  background-color: #ffc578;
  color: #1b1464;
  text-decoration: none;
}

.season1 .sc_prs {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #1d59bc), color-stop(99%, #1b1464));
  background-image: linear-gradient(180deg, #1d59bc 1%, #1b1464 99%);
}
.season2 .sc_prs {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #009fd1), color-stop(99%, #a1c2d1));
  background-image: linear-gradient(180deg, #009fd1 1%, #a1c2d1 99%);
}
.pr_cnt .items {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pr_cnt .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  margin-bottom: 2rem;
  padding: 0 0.75rem;
  width: 33.33%;
}
.pr_cnt .item a {
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.3;
}
.pr_cnt .item .bg {
  width: 100%;
  padding-top: 67%;
  border-radius: 4px;
  background-image: linear-gradient(-135deg, #ffc578 1%, #ff787c 99%);
}
.pr_cnt .item .img_wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  -webkit-transform: translate(-4px, -4px);
          transform: translate(-4px, -4px);
  overflow: hidden;
}
.pr_cnt .item .img {
  width: 100%;
  height: 100%;
  background: #1a2b82 center/cover no-repeat;
}
.pr_cnt .item .tit {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 23;
  padding: 4rem 1rem 1rem;
  width: 100%;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}
.pr_cnt .item a:hover {
  color: #ffc578;
}
.pr_cnt .item a:hover .img_wrap {
  -webkit-transform: translate(-10px, -10px);
          transform: translate(-10px, -10px);
}

.row_banner img {
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.19);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.19);
}

/*
.sc_active {}
.active_cnt {
    .items {
        display: flex;
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    .item {
        flex: 0 0 33%;
        margin: .5rem 0;
        padding: 0 .5rem;
    }
    .wrap {
        padding: 6px;
        background-image: $gradient_2;
        a {
            position: relative;
            display: block;
            padding: 1rem;
            font-size: 1.25rem;
            line-height: 1.1;
            color: #000;
            &:hover {
                text-decoration: none;
                color: $kv1a;
                &::after {
                    width: 0;
                }
                .date {
                    color: darken($kv2b, 12);
                }
            }
            &::after {
                content: '';
                position: absolute;
                right: 0;
                top: 0;
                z-index: 0;
                width: 100%;
                height: 100%;
                background-color: #fff;
                transition: width 300ms;
            }
        }
        .date,
        .tit {
            position: relative;
            z-index: 2;
        }
        .date {
            color: $kv2b;
        }
        .tit {
            margin-top: .5rem;
            font-size: 1.5rem;
            font-weight: 700;
            height: (1.5rem*1.1*3);
        }
    }
}
*/
.sc_industry {
  background-color: #fff;
}
.sc_industry.wht_bg {
  background-color: #fff;
  color: #000;
}
.sc_industry.wht_bg .sc_title::after {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(1%, #ffc578), color-stop(99%, #ff787c));
  background-image: linear-gradient(-90deg, #ffc578 1%, #ff787c 99%);
}
.sc_industry.wht_bg .sc_title .tit {
  color: #ff787c;
}

.left_side {
  float: left;
  padding-right: 1rem;
  width: calc(100% - 336px);
  overflow-x: hidden;
}

.news_cnt .item {
  margin: 0 1rem 0.75rem;
  padding: 2px;
  background-image: linear-gradient(120deg, #ff787c, #ffc578);
}
.news_cnt .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  -webkit-transition: background 400ms;
  transition: background 400ms;
}
.news_cnt .item .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
}
.news_cnt .item .img img {
  width: 160px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_cnt .item .tit {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.3;
}
.news_cnt .item a:hover {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
}

.right_side {
  float: right;
  max-width: 100%;
  width: 336px;
}

.spot_cnt {
  margin-top: 1rem;
}
.spot_cnt .side_tit {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(1%, #ffc578), color-stop(99%, #ff787c));
  background-image: linear-gradient(-90deg, #ffc578 1%, #ff787c 99%);
  color: #fff;
}
.spot_cnt .side_tit,
.spot_cnt .item {
  padding: 0.5rem;
}
.spot_cnt .item {
  border-bottom: 1px solid #ddd;
}
.spot_cnt .item a {
  display: block;
  line-height: 1.3;
}
.spot_cnt .item a:hover {
  color: #ff787c;
}

.sc_resources .sc_title {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 2rem;
}
.sc_resources .sc_title .tit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 1em;
}
.sc_resources .sc_title .after {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  font-size: 1.25rem;
}
.sc_resources .reu_wrap {
  position: relative;
  padding: 1rem 0;
}
.sc_resources .reu_title {
  display: inline-block;
  margin-left: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ffc578;
  font-size: 1.5rem;
  line-height: 1;
  color: #ffc578;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.6);
}
.sc_resources .reu_item {
  display: block;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background-color: #fff;
  color: #000;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}
.sc_resources .reu_item:hover {
  color: #ffc578;
  background-color: #1d59bc;
}

.wh_cnt .row {
  margin-left: -10px;
  margin-right: -10px;
}
.wh_cnt .col_wrap {
  padding-left: 10px;
  padding-right: 10px;
  margin: 0.5rem 0;
}
.wh_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.wh_cnt .item {
  padding: 5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
}
.wh_cnt .item .reu_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  height: 100%;
  font-size: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wh_cnt .before_icon,
.wh_cnt .name {
  display: inline-block;
  vertical-align: middle;
}
.wh_cnt .before_icon {
  width: 48px;
}
.wh_cnt .before_icon img {
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}
.wh_cnt .name {
  margin-left: 12px;
  width: calc(100% - 60px);
  font-size: 1rem;
  line-height: 1.3;
}
.wh_cnt .reu_item:hover .before_icon img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.vd_cnt .row {
  margin-left: -10px;
  margin-right: -10px;
}
.vd_cnt .col_wrap {
  padding-left: 10px;
  padding-right: 10px;
}
.vd_cnt .item {
  margin-top: 4px;
  margin-bottom: 1rem;
}
.vd_cnt .item a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.vd_cnt .item a:hover {
  color: #ffc578;
  text-decoration: none;
}
.vd_cnt .item a:hover .vd_img img {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.vd_cnt .item a:hover .vd_img::before {
  opacity: 1;
}
.vd_cnt .vd_img {
  position: relative;
  border-radius: 0.75rem;
  padding-top: 56.25%;
  background: center/cover no-repeat;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.29);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.29);
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  overflow: hidden;
}
.vd_cnt .vd_img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: rgba(29, 89, 188, 0.6);
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.vd_cnt .vd_img::after {
  content: "";
  position: absolute;
  left: 76.5%;
  top: 58.5%;
  z-index: 3;
  width: 68px;
  height: 68px;
  background: url("https://www.digitimes.com.tw/seminar/High_Tech_Fleet/img/icon/ic_play.svg") no-repeat;
}
.vd_cnt .vd_txt {
  margin-top: 0.33rem;
  font-size: 1.125rem;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rer_cnt .item {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rer_cnt .item a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.rer_cnt .item .left {
  border: 4px solid #ffc578;
  padding: 2rem;
  border-radius: 0.75rem;
  background-color: #fff;
  font-size: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60%;
          flex: 1 1 60%;
}
.rer_cnt .item .before_icon,
.rer_cnt .item .name {
  display: inline-block;
  vertical-align: middle;
}
.rer_cnt .item .before_icon {
  width: 100px;
}
.rer_cnt .item .name {
  margin-left: 16px;
  width: calc(100% - 130px);
  font-size: 1.125rem;
  line-height: 1.2;
}
.rer_cnt .item .name .b {
  display: inline-block;
  background-color: #f08200;
  padding: 0.5rem 1rem;
  font-weight: 700;
}
.rer_cnt .item .name .t {
  padding-left: 0.5rem;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  width: 24em;
  color: #000;
}
.rer_cnt .item .right {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
  padding-left: 1.5rem;
}
.rer_cnt .item .cta .bttn {
  position: relative;
  display: block;
  border-radius: 4rem;
  background-color: #ff6e72;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.rer_cnt .item .cta .bttn .bttn_in {
  position: relative;
  z-index: 2;
  bottom: 6px;
  border-radius: 4rem;
  padding: 0.75em 0 1em;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 2px rgba(27, 20, 100, 0.5);
  -webkit-transition: bottom 200ms;
  transition: bottom 200ms;
  background-image: linear-gradient(120deg, #ffc578 1%, #ff787c 99%);
}
.rer_cnt .item .cta .bttn .bttn_in .l2 {
  margin-top: 0.25rem;
  font-size: 1.75rem;
}
.rer_cnt .item .cta .bttn:hover {
  text-decoration: none;
}
.rer_cnt .item .cta .bttn:hover div {
  bottom: 0;
}

.g_footer {
  padding: 1rem 0;
  background-color: #fff;
  color: #000;
}
.g_footer .link {
  text-decoration: underline;
}
.g_footer .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px -10px;
}
.g_footer .logo {
  padding: 0 10px;
}
.g_footer .logo a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  padding-top: 50%;
  background: center/contain no-repeat;
}
.g_footer .logo a:hover {
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.19);
}

.modal .modal-body {
  padding: 30px 45px;
}
.modal .form_tit {
  text-align: center;
  margin-bottom: 2rem;
}
.modal .form_tit .h2 span {
  font-weight: 700;
  color: #1d59bc;
}
.modal .form_tit .tip {
  margin-top: 6px;
}
.modal .form_tit .tip span {
  color: #e50012;
}
.modal .form-group > label {
  width: 8.5em;
}
.modal .form-group.must_true {
  position: relative;
}
.modal .form-group.must_true::after {
  content: "*";
  position: absolute;
  left: -0.25rem;
  top: 0.5rem;
  color: #e50012;
  line-height: 1;
  font-size: 1.5rem;
}
.modal .special_form_block .spec_checks {
  padding: 0.5rem 0;
}
.modal .special_form_block .check_item {
  display: inline-block;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.modal .special_form_block .check_label {
  margin-bottom: 0;
  margin-left: 0.33rem;
  cursor: pointer;
}
.modal .main_button {
  position: relative;
  display: inline-block;
  margin-top: 1em;
  padding: 1em 2em;
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, #ffc578), color-stop(99%, #ff787c));
  background: linear-gradient(90deg, #ffc578 1%, #ff787c 99%);
  color: #fff;
  font-size: 1.625em;
  line-height: 1.1;
  border-radius: 1.5em;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.modal .main_button .text {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.29);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.modal .main_button:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

@media (max-width: 767px) {
  .g_header.is_active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .g_header .header_top {
    position: relative;
    overflow-x: auto;
  }
  .g_header .header_logo {
    display: none;
  }
  .g_header .site_switch {
    padding-left: 10px;
    padding-right: 10px;
  }
  .g_header .site_switch .sw_item {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .g_header .site_switch .sw_item.is_active {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .g_header .site_switch .sw_item a {
    border-radius: 0.5rem 0.5rem 0 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .g_header .header_menu {
    padding: 10px;
  }
  .g_header .nav_cnt {
    position: absolute;
    left: -10px;
    top: 100%;
    width: calc(100% + 20px);
    display: block;
    background: -webkit-gradient(linear, left top, right top, color-stop(1%, #1d59bc), color-stop(99%, #1b1464));
    background: linear-gradient(90deg, #1d59bc 1%, #1b1464 99%);
  }
  .g_header .nav_item {
    width: 50%;
    margin: 0 auto;
    text-align: center;
  }
  .g_header .nav_item a {
    padding: 1rem 1.5rem;
  }

  .all_content {
    margin-top: 52px;
  }

  .sc_intro .intro_wrap {
    padding: 1rem;
  }
  .sc_intro .intro_wrap p {
    font-size: 1rem;
  }

  .expert_cnt .intro {
    display: block;
  }
  .expert_cnt .intro .intro_left {
    padding-right: 0;
  }
  .expert_cnt .intro .intro_right {
    margin-top: 0.5rem;
  }
  .expert_cnt .ext_says .ext_item {
    width: 100%;
    padding: 0;
  }
  .expert_cnt .ext_says .ext_item::before {
    left: 1rem;
  }
  .expert_cnt .ext_says .ext_item::after {
    right: 1rem;
  }
  .expert_cnt .ext_says .ext_item .wrap {
    padding-top: 60px;
    border-radius: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .expert_cnt .ext_says .ext_item .wrap .img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .expert_cnt .ext_says .ext_item .wrap .words {
    width: 100%;
  }
  .expert_cnt .js_slide_fade .item .text {
    height: auto;
  }

  .pr_cnt .items {
    display: block;
  }
  .pr_cnt .item {
    width: 336px;
    margin-left: auto;
    margin-right: auto;
  }
  .pr_cnt .item a {
    display: block;
  }
  .pr_cnt .item .img img {
    width: 336px;
    height: 252px;
  }

  .news_cnt .items {
    display: block;
  }
  .news_cnt .item {
    margin-left: 0;
    width: 100%;
  }

  .left_side,
.right_side {
    float: none;
    width: 100%;
  }

  .left_side {
    padding-right: 0;
  }

  .banner_cnt {
    width: 336px;
    margin: 0 auto;
  }

  .sc_resources {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #1d59bc), color-stop(99%, #1b1464));
    background-image: linear-gradient(180deg, #1d59bc 1%, #1b1464 99%);
  }
  .sc_resources .sc_title {
    display: block;
    padding-bottom: 1rem;
  }
  .sc_resources .sc_title .tit {
    padding-right: 0;
    padding-bottom: 0.5rem;
  }
  .sc_resources .sc_title .after {
    line-height: 1.3;
  }

  .wh_cnt .items {
    display: block;
  }
  .wh_cnt .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 5px 0;
  }

  .rer_cnt .item {
    display: block;
  }
  .rer_cnt .item .left {
    text-align: center;
  }
  .rer_cnt .item .before_icon {
    width: 100px;
  }
  .rer_cnt .item .name {
    display: block;
    margin-left: 0;
    width: 100%;
  }
  .rer_cnt .item .name .b {
    margin-top: 1rem;
  }
  .rer_cnt .item .name .t {
    text-align: left;
    width: 100%;
  }
  .rer_cnt .item .name .t br {
    display: none;
  }
  .rer_cnt .item .right {
    margin-top: 1.5rem;
    padding-left: 0;
  }
  .rer_cnt .item .cta .bttn .bttn_in {
    padding: 1rem;
    font-size: 1rem;
  }
  .rer_cnt .item .cta .bttn .bttn_in .l2 {
    font-size: 1.25rem;
  }

  .fix_aside {
    right: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fix_aside .fx_item {
    margin: 0 0.5em;
  }
}