@charset "utf-8";
/*-about page*/
.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: flex-end;
  margin-bottom: 30px;
}
.about-img img {
  max-width: 100%;
  height: auto;
  display: block;
}
.about-img {
   flex: 1 1 50%;
   flex-shrink: 0;
}
.about-text {
   flex: 1 1 50%;
   margin: 0 0 0 -120px;
   background: #fff;
   box-sizing: border-box;
   padding: 40px;
   border: 1px solid #007BC1;
}
.about-text h2 {
  font-size: 32px;
  margin: 0 0 16px;
  color: #000;
  line-height: 1;
  display: flex;
  font-weight: 800;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.about-text h2 span{
  color: #009ADD;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 37px;
}
.about-text .about-en {
  color: #202020;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  font-size: 55px;
}
.about-text .about-en:after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #F4BA1C;
    margin: 16px 0 24px;
    border-left: 30px solid #1692D3;
    flex-shrink: 0;
}
.ab_t{
    font-size: 20px;
    text-align: left;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.25em;
}
.ab_txt {
  line-height: 1.6;
  color: #666;
  box-sizing: border-box;
  font-size: 16px;
  margin: 0;
  letter-spacing: 0.02em;
}
.ab_t.colorfff,
.ab_txt.colorfff{
  color: #fff;
}
.about_highlight {
  margin: 0 auto 24px;
  text-align: center;
}

.about_highlight .t1 {
  font-size: 22px;
  color: #000;
  font-weight: bold;
  letter-spacing: 24px;
}

.about_highlight .t2 {
  font-size: 44px;
  font-weight: 800;
  color: #007BC1;
  line-height: 1.1;
  font-family: "Lato", sans-serif;
}
.about_highlight .t2:after{
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background: #009ADD;
    margin: 24px auto;
    visibility: visible;
}
.about_highlight .t2 span{
    display: block;
    color: #007BC1;
}
@media (max-width: 1000px) {
  .about-flex {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0 20px;
  }
    .about-img {
        flex: 1 1 100%;
    }
    .about-text {
        flex: 1 1 100%;
        margin: 0 auto;
        padding: 40px;
    }
    .about-text .about-en{
        font-size: 40px;
    }
  .about-text h2 {
    font-size: 22px;
  }
  .about-text p {
    font-size: 15px;
    margin:0 auto;
    /* padding: 40px; */
  }
  .about-desc {
    font-size: 15px;
    padding: 0;
  }
    .about_highlight .t1{
        font-size:18px;
        letter-spacing:0.5em;
    }
    .about_highlight .t2{
      font-size: 32px;
    }
}
/*-index brand*/
.brand_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* 每一個 Logo 卡片 */
.brand_item {
  width: 300px;
  height: 100px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border-radius: 6px;
}

/* 圖片不變形 */
.brand_item img {
  max-width: 90%;
  max-height: 70%;
  object-fit: contain;
}

/* ===== RWD ===== */

/* 平板 */
@media (max-width: 1024px) {
  .brand_wrap {
    gap: 20px;
  }
}

/* 手機 */
@media (max-width: 768px) {
  .brand_item {
    width: calc(50% - 12px);
    max-width: 300px;
  }
}

/* 小手機 */
@media (max-width: 480px) {
  .brand_item {
    width: 100%;
    max-width: 300px;
  }
}

/*index service*/
.hex_flow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

/* 外層控制排列 */
.hex_item {
  
}

/* 六角形本體 */
.hex_box {
  width: 252px;
  height: 260px; /* 252 * 1.15 視覺較穩 */
  background: linear-gradient(135deg, #00a0e9, #0077c8);
  clip-path: polygon(
    5% 25%,
    50% 0,
    95% 25%,
    95% 75%,
    50% 100%,
    5% 75%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  gap: 8px;
}

/* 數字 */
.hex_num {
  font-size: 64px;
  font-weight: 800;
  line-height: 0.8;
  /* margin-bottom: 12px; */
  font-family: "Lato", sans-serif;

  /* 描邊感 */
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.9);
  opacity: 0.5;
}

/* 虛線 */
.hex_line {
  width: 36px;
  border-bottom: 2px dotted rgba(255,255,255,.6);
  margin-top: 12px;
  font-size: 0;
}

/* 文字 */
.hex_txt {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}

/* ===== RWD ===== */

/* 平板：3 個一排 */
@media (max-width: 1200px) {
  .hex_item {
    width: 33.333%;
    display: flex;
    justify-content: center;
  }
}

/* 手機：2 個一排 */
@media (max-width: 768px) {
  .hex_item {
    width: 50%;
  }

  .hex_box {
    transform: scale(0.9);
  }
}

/* 小手機：1 個一排 */
@media (max-width: 480px) {
  .hex_item {
    width: 100%;
  }

  .hex_box {
    transform: scale(0.85);
  }
}

/*footer*/
.ic_mail{
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout01/common/siteinfo_mail_ic.png) no-repeat;
    width: 23px;
    height: 17px;
    margin-right: 8px;
}
.ic_fax{
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout01/common/siteinfo_fax_ic.png) no-repeat;
    width: 23px;
    height: 24px;
    margin-right: 8px;  
}
.ic_add{
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout01/common/siteinfo_add_ic.png) no-repeat;
    width: 23px;
    height: 24px;
    margin-right: 8px;
}
.site-info .ic-phone{
    font-size: 18px;
    width: 20px;
    color: #fff;
    margin-right: 5px;
    position: relative;
    top: 8px;
    display: inline-block;
}
.site-info .ic-envelope{
    font-size: 18px;
    width: 20px;
    color: #fff;
    margin-right: 5px;
    position: relative;
    top: 8px;
    display: inline-block;
}
.site-info .ic-fax{
    font-size: 18px;
    width: 20px;
    color: #fff;
    margin-right: 5px;
    position: relative;
    top: 8px;
    display: inline-block;
}
.site-info .ic-map-marker{
    font-size: 21px;
    width: 20px;
    color: #fff;
    margin-right: 5px;
    text-align: center;
    position: relative;
    top: 8px;
    display: inline-block;
}
/*------------ about-editor ------------*/
.row_{
    display: flex;
}
.about-editor .row_1{
    justify-content: space-between;
    align-items: flex-start; 
    margin-bottom: 70px;
}
.about-editor .about-title{
    color: #262626;
    font-size: 29px;
    font-family:Roboto;
    font-weight: 300;
    margin: 0;
}
.about-editor .about-title:after{
    content: '';
    background: #4F4F4F;
    height: 1px;
    width: 60px;
    display: block;
    margin-top: 20px;
    margin-bottom: 0;
}
.about-editor .row_2{
    margin-top: 40px;
}
.about-editor .row_2 .col{
    flex-basis:  50%;
    position: relative;
}
.about-editor .row_2 .txt_box{
    margin-top: 65px;
    border:solid 1px #4F4F4F;
    display: block;
    padding:50px;
    position: relative;
    margin-right: -100px;
    color: #000000;
    box-sizing: border-box;
}
.as_title{
    margin-bottom: 10px;
}
.as_txt{
    line-height: 2;
    padding-left: 35px;
}
.about-editor .row_2 .col1:after{
    content: '';
    display: block;
    position: absolute;
    width: 126px;
    background: #fff;
    height: 65px;
    right: -100px;
    bottom: 0;
    z-index: 3;
}
.about-editor .row_2 .col2{
    position: relative;
    z-index: 4;
    text-align: center;
}
.about-editor .row_3{
    align-items: flex-end;
}
.about-editor .row_3 .col{
    flex-basis:  50%;
}
.about-editor .row_3 .txt_box{
    margin-top: -65px;
    border:solid 1px #4F4F4F;
    display: block;
    padding:115px 50px 50px;
    position: relative;
    margin-left: -26px;
    color: #000000;
}
/*------------ service-editor ------------*/
.s_title{
    color: #FFFFFF;
    margin-bottom: 15px;
}
.s_txt{
    color: #ACACAC;
    margin-bottom: 40px;
}
.s_txt:last-child{
    margin-bottom: 0px;
}
.service-editor .row_{
    margin-bottom: 40px;
}
.service-editor .row_ .col1{
    width: 40%;
}
.service-editor .row_ .col2{
    width: 60%;
    padding:0px 30px;
}
/*------------ contact-editor ------------*/
.contact-editor{
    padding: 0 2%;
}
.contact-editor .col{
    float: left;
    padding: 0 2%;
}
.contact-editor .col1{
    width: 48%;
}
.contact-editor .col2{
    width: 52%;
}
.contact-map{
    box-shadow: 0 0 4px 0 rgba(0,0,0,0.25);
    border: 8px solid #fff;
}
.contact-map iframe{
    display: block;
    max-height: 100%;
}
.contact-info-list{
    color: #555;
    font-size: 14px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.contact-info-list li{
    position: relative;
    padding: 2px 0 2px 40px;
    margin: 8px 0;
    line-height: 25px;
}
.contact-info-list li.tel:before{
    font-family: 'icon-font' !important;
    content: "\ff001";
    font-size: 21px;
    position: absolute;
    left: 9px;
    top: 3px;
    color: #007BC1;
}
.contact-info-list li.fax:before{
    font-family: 'icon-font' !important;
    content: "\ff002";
    font-size: 21px;
    position: absolute;
    left: 9px;
    top: 3px;
    color: #007BC1;
}
.contact-info-list li.mail:before{
    font-family: 'icon-font' !important;
    content: "\ff003";
    font-size: 21px;
    position: absolute;
    left: 9px;
    top: 3px;
    color: #007BC1;
}
.contact-info-list li.addr:before{
    font-family: 'icon-font' !important;
    content: "\ff004";
    font-size: 24px;
    position: absolute;
    left: 13px;
    top: 3px;
    color: #007BC1;
}
/*------------ video-editor ------------*/
.video-editor .pic{
    float: left;
    margin-right: 25px;
}
/*------------ terms-editor ------------*/
.terms-editor{
    font-size: 15px;
    line-height: 2;
    /*max-width: 1045px;*/
    margin: 0 auto;
}
.terms-editor .title{
    color: #007BC1;
    font-size: 16px;
    margin: 0;
}
.terms-editor p{
    text-indent: 0em;
    margin: 0 0 50px;
}
.terms-editor .row{
    margin: 0 -27px;
}
.terms-editor .col{
    padding: 0 27px;
    width: 50%;
    float: left;
    box-sizing: border-box;
}
/*------------ index-editor ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1280px){
    .about-editor .row_2 .txt_box{
        padding:50px 90px 50px 50px;
    }
}
@media screen and (max-width: 1000px){
    .row_{
        display: block;
    }
    .about-editor .row_1 .col{
        margin-bottom: 20px;
    }
    .about-editor .row_1{
        margin-bottom: 40px;
    }
    .about-editor .row_2{
        margin-top: 20px;
    }
    .about-editor .row_2 .col1:after{
        display: none;
    }
    .about-editor .row_2 .col,.about-editor .row_3 .col{
        margin-bottom: 20px;
    }
    .about-editor .row_2 .txt_box,.about-editor .row_3 .txt_box{
        padding:0px;
        border:none;
        margin-right: 0px;
        margin-left: 0;
        margin-top: 0;
    }
    .about-editor .row_2 .col2{
        text-align: left;
    }
    .index-about-editor{
        padding: 0;
        height: auto;
    }
    .service-editor .row_ .col2,.service-editor .row_ .col1{
        width: 100%;
        margin-bottom: 20px;
    }
    .service-editor .row_ .col2{
        padding: 0
    }
    .contact-editor{
        padding: 0 2%;
    }
    .contact-editor .col{
        width: 100%;
        padding: 0;
    }
    .contact-map{
        height: 300px;
        margin-bottom: 1.8em;
    }
}
@media screen and (max-width: 767px){
    .terms-editor .row{
        margin: 0;
    }
    .terms-editor .col{
        padding: 0;
        width: 100%;
    }
    .contact-map{
        height: 200px;
    }
}
