@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%;
    width: 100%;
  }
}

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

body .marketPlan {
  margin: 60px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .marketPlan .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px -15px;
  display: flex;
}

body .marketPlan .row .plan-left {
  min-width: 670px;
}

@media screen and (max-width: 767px) {
  body .marketPlan .row .plan-left {
    min-width: 100%;
  }
}

body .marketPlan .row .plan-left .plan-belif {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #333333;
  margin-bottom: 20px;
  line-height: normal;
}

body .marketPlan .row .plan-left .plan-p {
  font-size: 18px;
  font-weight: normal;
}

body .marketPlan .row .plan-right {
  width: 445px;
  height: 235px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  body .marketPlan .row .plan-right {
    width: 100%;
  }
}

body .marketPlan .row .plan-right .imgWrap img {
  width: 100%;
}

body .content {
  padding: 95px 0 0 0;
  position: relative;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
}

body .content .formular .contact {
  position: relative;
  z-index: 10;
}

body .content .formular .contact::before {
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(54deg, #12aaeb 0%, #0e80b0 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  body .content .formular .contact::before {
    width: 100%;
  }
}

body .content .formular .contact .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 130px 100px 125px 100px;
  max-width: 1610px;
  margin: auto;
  height: 100%;
}

@media screen and (max-width: 767px) {
  body .content .formular .contact .info {
    display: block;
    padding: 0;
  }
}

body .content .formular .contact .info::after {
  content: "";
  width: 50%;
  height: 100%;
  background: url(../img/index_02_introBanner.jpeg) no-repeat bottom center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

body .content .formular .contact .info .info_left {
  width: 30%;
  color: #fff;
  padding: 0 30px 0 0;
}

@media screen and (max-width: 767px) {
  body .content .formular .contact .info .info_left {
    width: 100%;
    padding: 10px;
  }
}

body .content .formular .contact .info .info_left .welcomeContact {
  margin-bottom: 20px;
}

body .content .formular .contact .info .info_left .contactP {
  line-height: 1.5;
  padding-bottom: 40px;
  max-width: 401px;
  border-bottom: 1px solid rgba(225, 225, 225, 0.3);
}

body .content .formular .contact .info .info_left .infoOMA {
  line-height: 2;
  padding: 35px 0 35px 23px;
}

body .content .formular .contact .info .info_left .infoOMA .OMAdetail .subtitle {
  position: relative;
  padding-bottom: 3px;
}

body .content .formular .contact .info .info_left .infoOMA .OMAdetail .detail {
  text-decoration: none;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

body .content .formular .contact .info .info_right {
  width: 70%;
}

@media screen and (max-width: 767px) {
  body .content .formular .contact .info .info_right {
    width: 100%;
  }
}

body .content .formular .contact .info .info_right .right-form {
  padding: 35px 40px 35px 58px;
  background-color: rgba(255, 255, 255, 0.95);
}

@media screen and (max-width: 767px) {
  body .content .formular .contact .info .info_right .right-form {
    padding: 0;
  }
}

body .content .formular .contact .info .info_right .right-form .required {
  height: 35px;
  padding-right: 35px;
  color: #12aaeb;
  position: relative;
  text-align: right;
  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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 10;
  margin-bottom: 20px;
}

body .content .formular .contact .info .info_right .right-form .required::before {
  content: "";
  width: 155px;
  height: 35px;
  background-color: rgba(226, 226, 255, 0.75);
  border-radius: 35px;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: -1;
}

body .content .formular .contact .info .info_right .right-form .formWrap .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  body .content .formular .contact .info .info_right .right-form .formWrap .name {
    display: block;
  }
}

body .content .formular .contact .info .info_right .right-form .formWrap .name .person, body .content .formular .contact .info .info_right .right-form .formWrap .name .company {
  width: calc( 50% - 16px);
  margin-right: 16px;
  border-bottom: 1px solid rgba(152, 152, 152, 0.35);
  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;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  body .content .formular .contact .info .info_right .right-form .formWrap .name .person, body .content .formular .contact .info .info_right .right-form .formWrap .name .company {
    width: 100%;
  }
}

body .content .formular .contact .info .info_right .right-form .formWrap .name .person .title fas, body .content .formular .contact .info .info_right .right-form .formWrap .name .company .title fas {
  margin-right: 5px;
}

body .content .formular .contact .info .info_right .right-form .formWrap .name .person .text, body .content .formular .contact .info .info_right .right-form .formWrap .name .company .text {
  width: calc( 100% - 120px);
  word-wrap: break-word;
}

body .content .formular .contact .info .info_right .right-form .formWrap .name .person .text input, body .content .formular .contact .info .info_right .right-form .formWrap .name .company .text input {
  margin-left: 20px;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #12aaeb;
  border: 0;
  background-color: transparent;
  outline: none;
}

body .content .formular .contact .info .info_right .right-form .formWrap .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  body .content .formular .contact .info .info_right .right-form .formWrap .tel {
    display: block;
  }
}

body .content .formular .contact .info .info_right .right-form .formWrap .tel .phone, body .content .formular .contact .info .info_right .right-form .formWrap .tel .email {
  width: calc( 50% - 16px);
  margin-right: 16px;
  border-bottom: 1px solid rgba(152, 152, 152, 0.35);
  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;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  body .content .formular .contact .info .info_right .right-form .formWrap .tel .phone, body .content .formular .contact .info .info_right .right-form .formWrap .tel .email {
    width: 100%;
  }
}

body .content .formular .contact .info .info_right .right-form .formWrap .tel .phone .title fas, body .content .formular .contact .info .info_right .right-form .formWrap .tel .email .title fas {
  margin-right: 5px;
}

body .content .formular .contact .info .info_right .right-form .formWrap .tel .phone .text, body .content .formular .contact .info .info_right .right-form .formWrap .tel .email .text {
  width: calc( 100% - 120px);
  word-wrap: break-word;
}

body .content .formular .contact .info .info_right .right-form .formWrap .tel .phone .text input, body .content .formular .contact .info .info_right .right-form .formWrap .tel .email .text input {
  margin-left: 20px;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #12aaeb;
  border: 0;
  background-color: transparent;
  outline: none;
}

body .content .formular .contact .info .info_right .right-form .formWrap .message {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-right: 16px;
}

body .content .formular .contact .info .info_right .right-form .formWrap .message .messageTitle fas {
  margin-right: 5px;
}

body .content .formular .contact .info .info_right .right-form .formWrap .message .text {
  width: 100%;
}

body .content .formular .contact .info .info_right .right-form .formWrap .message .text textarea {
  margin: 0px 5px 0px 0px;
  height: 210px;
  font-size: 16px;
  color: #12aaeb;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border: 1px solid #d7dbd8;
  outline: none;
  width: 100%;
}

body .content .formular .contact .info .info_right .right-form .formWrap .send {
  margin: 0 auto;
  margin-top: 20px;
  text-decoration: none;
  color: #fff;
  background-color: #12aaeb;
  width: 160px;
  height: 50px;
  border-radius: 50px;
  position: relative;
  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;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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=contact.css.map */