@charset "UTF-8";
body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

body .TC {
  font-family: "Noto Sans TC","Noto Sans SC", "Noto Sans", "Source Sans Pro", "PingFang TC", "Microsoft YaHei";
}

body .btn-primary {
  color: #fff;
  background-color: #12aaeb;
  border-color: #12aaeb;
}

body .btn-primary:hover, body .btn-primary:focus, body .btn-primary:active:hover {
  color: #fff;
  background-color: #0e80b0;
  border-color: #0e80b0;
}

body a:link {
  color: #12aaeb;
}

body a:visited {
  color: #12aaeb;
}

body a:hover {
  color: #0e80b0;
}

body a:active {
  color: #0e80b0;
}

body .header {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  background-color: transparent;
}

@media screen and (max-width: 767px) {
  body .header {
    background: #fff;
  }
  body .header .header-content .header-link-item {
    color: #212529;
  }
}

body .header .header-top {
  padding: 0 30px;
  height: 40px;
  background-color: #ecf8fd;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  body .header .header-top {
    display: none;
  }
}

body .header .header-top-a {
  text-decoration: none;
  margin-right: 30px;
  pointer-events: none;
}

body .header .header-content {
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .header .header-content .scrolled {
  background-color: lightblue;
}

body .header .header-content .header-logo {
  width: 150px;
  background: 100%;
  cursor: pointer;
  height: 76px;
  margin-right: 10px;
}

body .header .header-content .header-link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  body .header .header-content .header-link {
    /*隱藏選單開始*/
    max-height: 0px;
    overflow: hidden;
    /*隱藏選單結束*/
    -webkit-transition: max-height 1.5s;
    transition: max-height 1.5s;
    margin-top: 1px;
    padding-left: 0;
    /*絕對定位疊在網頁上*/
    position: absolute;
    z-index: 100;
    /*header 80px+1px boder 線條*/
    top: 81px;
    left: 0;
    right: 0;
    /*left跟right寫0，呈現滿版*/
    background: #0F222B;
  }
}

body .header .header-content .header-link-item {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  margin-left: 40px;
  text-align: center;
  position: relative;
  font-weight: 500;
  color: #212529;
}

@media screen and (max-width: 767px) {
  body .header .header-content .header-link-item {
    float: none;
    border-bottom: 1px dashed #212529;
    margin-left: 0;
    color: #FFF;
  }
}

body .header .header-content .header-link-item a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

body .header .header-content .header-link-item a:hover {
  color: #12aaeb;
}

@media screen and (max-width: 767px) {
  body .header .header-content .header-link-item a {
    -webkit-transition: all .5s;
    transition: all .5s;
  }
}

body .header .header-content .showmenu {
  display: none;
}

@media screen and (max-width: 767px) {
  body .header .header-content .showmenu {
    display: block;
    float: right;
    margin: 1em;
  }
}

body .header .header-content .header-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  body .header .header-content .header-right {
    display: none;
  }
}

body .header .header-content .header-right .header-link-item {
  cursor: pointer;
  font-size: 18px;
  margin-right: 15px;
  text-align: center;
  position: relative;
  font-weight: 500;
  padding: 0 15px;
  min-width: 89px;
}

body .header .header-content .header-right .header-link-item a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

body .header .header-content .header-right .header-link-item a:hover {
  color: #12aaeb;
}

@media screen and (max-width: 767px) {
  body .header .header-content .menu-show {
    max-height: 500px;
  }
}

body .topBanner {
  padding-top: 120px;
}

body .topBanner .page-banner {
  position: relative;
}

body .topBanner .page-banner::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(18, 170, 235, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(18, 170, 235, 0.7));
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

body .topBanner .page-banner .page-banner-content {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #FFFFFF;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
}

body .topBanner .page-banner .page-banner-content .topBanner-topTitle {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
  max-width: 800px;
}

body .topBanner .page-banner .topBanner-img {
  height: 318px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  body .topBanner .page-banner .topBanner-img {
    height: 100%;
  }
}

body .topBanner .page-banner .topBanner-img img {
  width: 100%;
  vertical-align: middle;
  border-style: none;
}

body .cases-section {
  padding: 70px 0 90px 0;
  word-wrap: break-word;
}

body .cases-section .cases-area {
  max-width: 1610px;
  margin: auto;
  padding: 0 100px;
  height: 100%;
  word-wrap: break-word;
}

@media screen and (max-width: 767px) {
  body .cases-section .cases-area {
    padding: 0;
    max-width: 100%;
  }
}

body .cases-section .cases-area .cases-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  body .cases-section .cases-area .cases-content {
    display: block;
  }
}

body .cases-section .cases-area .cases-content .content-type-ul .btn-type-li {
  width: 160px;
  padding: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid rgba(176, 176, 176, 0.39);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  list-style: none;
  color: #12aaeb;
  text-align: center;
  vertical-align: middle\; body .cases-section .cases-area .cases-content .content-type-ul .btn-type-li;
}

body .cases-section .cases-area .cases-content .content-type-ul .btn-type-li :hover {
  border: 1px solid #12aaeb;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

body .moreload {
  word-wrap: break-word;
}

body .moreload .some-list {
  word-wrap: break-word;
}

body .moreload .some-list .cases-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 50px;
  margin-top: 50px;
}

body .moreload .some-list .cases-wrap .cases-box {
  width: 23%;
  margin: 0 2% 25px 0;
  padding: 0 0 55px 0;
  background-color: rgba(246, 246, 246, 0.8);
  position: relative;
  -webkit-transform: all 0.8s ease 0s;
          transform: all 0.8s ease 0s;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  body .moreload .some-list .cases-wrap .cases-box {
    width: 48%;
  }
}

body .moreload .some-list .cases-wrap .cases-box .box-img {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  margin-bottom: 25px;
}

body .moreload .some-list .cases-wrap .cases-box .box-img .img-wrap {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .moreload .some-list .cases-wrap .cases-box .box-img .img-wrap img {
  max-width: 100%;
  height: auto;
  border-style: none;
}

body .moreload .some-list .cases-wrap .cases-box .box-subtitle {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333333;
  margin-bottom: 12px;
  padding: 0 20px;
}

body .moreload .some-list .cases-wrap .cases-box .box-p {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #a7a7a7;
  padding: 0 20px;
}

body .readyPlan {
  background: #12aaeb;
  padding: 60px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  body .readyPlan {
    display: block;
  }
}

body .readyPlan .plan_title {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: normal;
  margin-right: 30px;
}

body .readyPlan .d-flex .contact-btn {
  color: #12aaeb;
  margin: 4px 6px;
}

body .readyPlan .d-flex .program-btn {
  margin: 4px 6px;
}

body .footer_full {
  border-top: solid 1px #dddddd;
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

body .footer_full .footer_box {
  max-width: 1110px;
  margin: 0 auto;
  padding: 40px 0 48px;
}

body .footer_full .footer_box .itembox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .footer_full .footer_box .itembox .footer_link-left {
  width: 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  body .footer_full .footer_box .itembox .footer_link-left {
    width: 100%;
  }
}

body .footer_full .footer_box .itembox .footer_link-left p, body .footer_full .footer_box .itembox .footer_link-left ul, body .footer_full .footer_box .itembox .footer_link-left li, body .footer_full .footer_box .itembox .footer_link-left ol, body .footer_full .footer_box .itembox .footer_link-left a {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  color: #333333;
}

body .footer_full .footer_box .itembox .footer_link-left .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 14px;
}

body .footer_full .footer_box .itembox .footer_link-center {
  width: 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  body .footer_full .footer_box .itembox .footer_link-center {
    width: 100%;
  }
}

body .footer_full .footer_box .itembox .footer_link-center p, body .footer_full .footer_box .itembox .footer_link-center ul, body .footer_full .footer_box .itembox .footer_link-center li, body .footer_full .footer_box .itembox .footer_link-center ol, body .footer_full .footer_box .itembox .footer_link-center a {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  color: #333333;
}

body .footer_full .footer_box .itembox .footer_link-center .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 14px;
}

body .footer_full .footer_box .itembox .footer_link-center .d-flex .footer_link-center-icon {
  margin-right: 20px;
  color: #12aaeb;
}

body .footer_full .footer_box .itembox .footer_link-right {
  width: 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  body .footer_full .footer_box .itembox .footer_link-right {
    display: none;
    width: 100%;
  }
}

body .footer_full .footer_box .itembox .footer_link-right p, body .footer_full .footer_box .itembox .footer_link-right ul, body .footer_full .footer_box .itembox .footer_link-right li, body .footer_full .footer_box .itembox .footer_link-right ol, body .footer_full .footer_box .itembox .footer_link-right a {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  color: #333333;
}

body .footer_full .footer_box .itembox .footer_link-right .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 14px;
}

body .footer_full .footer_box .Copyright {
  padding-top: 55px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  body .footer_full .footer_box .Copyright {
    display: block;
  }
}

body .footer_full .footer_box .Copyright p, body .footer_full .footer_box .Copyright ul, body .footer_full .footer_box .Copyright li, body .footer_full .footer_box .Copyright ol, body .footer_full .footer_box .Copyright a {
  list-style: none;
  text-decoration: none;
}

body .footer_full .footer_box .Copyright-right, body .footer_full .footer_box .Copyright-center, body .footer_full .footer_box .Copyright-left {
  margin-right: 20px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  color: #333333;
}

@media screen and (max-width: 767px) {
  body .footer_full .footer_box .Copyright-right, body .footer_full .footer_box .Copyright-center, body .footer_full .footer_box .Copyright-left {
    font-size: 12px;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=cases.css.map */