article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family:'Noto Sans TC',  Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;    font-weight: 400;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
}

button:focus,
a:focus {  outline: none;}
a {  text-decoration: none;  color: #303031;}
a:hover {  text-decoration: none;  color: #303031;}
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

:root {
  --main-color: #3f3f3f;
  --sub-color:#E8C127;
  --yellow-color:#FFD25E;
  --gray-color: #F6F6F6;
  --text-color: #2a2a2a;
  --black-color:#000000;
  --bg:#E8EEF0;
}

.w1400 {
  max-width: 1366px;
  height: auto;
}

.content_block {
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
  position: relative;
  
}
.gotop{position: fixed;right: 1%;
  bottom: 90px;width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 998;
  justify-content: center;
  border-radius: 50%;
  color: var(--main-color);
  background-color: var(--white);
  border: 1px solid var(--main-color);
  transition: all .5s;
  animation: 2s arrowTop ease-out infinite;
}
@keyframes arrowTop {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  40% {
    transform: translateY(-20%)
  }

  60% {
    transform: translateY(-10%)
  }
}
.float{position: fixed;right: 1%;bottom: 150px;z-index: 998;}
.float .item a{width: 3rem;height: 3rem;background-color: #2a2a2af1;border-radius: 50%;color: var(--sub-color);display: flex; border: 1px solid #666;
  align-items: center;justify-content: center;margin-bottom: 10px;
}

/* 共用標題 */
.title-box{
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  padding: .8rem 0;
  z-index: 1;
  text-align: center;
}
.title-box .en{
  width: 100%;
  font-size: 18vw;
  padding: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  line-height: .8;
  text-transform: uppercase;
  color:transparent;
  font-weight: 700;
  opacity: .8;
  -webkit-text-stroke: 1px #C7D0E1;
  font-family: Arial;
}
.title-box h2{margin-top: -1rem; color: var(--main-color);position: relative;z-index: 1;}
.text-red{ color:#F28E00;font-size:15px;margin:0 5px;}
@media (min-width: 992px) {
  .title-box .en{font-size: 7vw;}
  .title-box h2{margin-top: -2rem;}
}
/* 共用按鈕 */
.blackbtn{
  background: var(--text-color);
  color: var(--white);
  padding: 0.5rem .8rem;
  transition: all .5s;
}
.blackbtn:hover {
  background: var(--sub-color);
  color: var(--white);
}
.mainbtn{
  background: var(--sub-color);
  color:var(--white);
  text-align: center;
  padding: 0.5rem .8rem;
  transition: all .5s;
}
.mainbtn:hover {
  background: var(--sub-color);
  color: var(--white);
}
.border-radius{ border-radius: 30px;}
.w120{width: 120px;}
.more,.submitBtn,.more:hover,.submitBtn:hover{background-color: var(--black-color);color: var(--white);}

@media (min-width: 992px) {
  .w1400 {
    margin:0 auto;
  }
 
  .title-box,.title-box-center{
    font-size: 2rem;
  }
  .title-box span {
    font-size: 1.125rem;
  } 
  
}
/* 共用頁尾 */

.page {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  margin: 2rem 0 0;

}

.page li a {
  width: 26px;
  font-size: 15px;
  text-align: center;
  line-height: 26px;
  height: 26px;
  display: block;
  margin: 0 5px;

}

.page li.active a {
  background-color: #eaeaea;
}

.page li a {
  border: 1px solid var(--gray);
}
.page li.prev a,
.page li.next a {
  border: none;width: auto;
  height: auto;
}

/* 手機漢堡選單 */

.menu-icon__cheeckbox {
  display: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  position: absolute;

  opacity: 0;
}
.menu-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: none;
  margin-bottom: 0;
}

.menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 12px;
}
.menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
  border-radius: 1px;
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}

.menu-icon span:first-of-type {
  top: 0;
}

.menu-icon span:last-of-type {
  bottom: 0;
}

.menu-icon__cheeckbox:checked~.menu-icon div span:first-of-type {
  transform: rotate(45deg);
  top: 4px;
}

.menu-icon__cheeckbox:checked~.menu-icon div span:last-of-type {
  transform: rotate(-45deg);
  bottom: 5px;
}
/* 手機漢堡選單end */
/* 主選單開始 */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  min-height: 60px;
  background: var(--white);
  border-top: 3px solid var(--sub-color);
  z-index: 1000;
}
.navbar-header{ width: 100%; }
.navbar-header .navbar-collapse {
  display: flex;
  flex-direction: column; 
  flex-wrap: wrap;
}
.nav li{flex:0 0 100%}
.nav li a{ color: var(--main-color); padding:.8rem 1rem;display: block;   position: relative;}

.nav li a:hover{
  color: var(--sub-color);font-weight: 500;
}
.nav li.active a {
  color: var(--sub-color);
  font-weight: 500;
}
.nav li.yellowbtn a{ background-color: var(--sub-color);color: var(--white);border-radius: 25px;    padding: .6rem 1.25rem;font-weight: 400;}
.nav li.yellowbtn a:before{display: none;}

@media (min-width: 992px) {
  .navbar.sticky .navbar-header {    border-bottom:none;    }
  
  .navbar-nav {    flex-direction: row;  }
  .lang{  position: absolute;top: .5rem;  right: 60px; justify-content: flex-end;margin-top: 0; width: 300px;}
  .nav li{flex:0 0 auto}
  .navbar-header .navbar-collapse{
    flex-direction:row;
    justify-content: center;
    flex:0 0 calc(100% -  240px);
  }
  .navbar-header .navbar-collapse ul{padding: 0 1rem;}
  .nav li a{ 
    padding: 1rem 1.2rem 0;
    display: block; 
  }
  .nav li.yellowbtn a{padding: .65rem 1.25rem;}
  .nav li a:before{
    content: "";
    position: absolute;
    width:0;
    height: 4px;
    background-color: var(--sub-color);
    left:  0;
    bottom: -1.1rem;
    margin: 0 auto;
    z-index: 1;
    transition: all .3s ease;
  }
  .nav li a.active:before,.nav li a:hover:before{color: var(--sub-color);width: 100%; }
}
@media (min-width: 1200px) {
  .navbar {min-height: 74px;}
  .navbar-header .navbar-collapse ul{padding: 0 1.6rem;}
 
}


/* 主選單結束 */
.logo {
  width: 220px;
  padding:.8rem 1rem;
  flex:0 0 220px
}
.logo a{width: 100%;height: 100%;display: block;}

@media (max-width: 1000px) {
  .menu-icon {
    display: block;
  }
 
  .navbar-collapse {
    overflow-y: auto;
    background-color: var(--white);
    height: calc(100vh - 60px);
    text-align: center;
    position: absolute;
    left: 0;
    top: -100vh;
    width: 100%;
    padding:1rem ;
    opacity: .5;
    transition: all .5s ease;
  }
   #menu-link:checked~.navbar-collapse {
     opacity: 1;
     top: 69px;
     visibility: visible;
   }
}
footer {
  padding:2rem 0 1rem;
  background:url(/frontEndPackage/images/bg2.png);
  margin: auto;
}
footer .title-box {color: var(--white);}
footer .text{text-align: center;color: var(--white);}
footer .text p{margin-bottom: 5px;}
.copyright{border-top: 1px solid #525252; }
.copyright .item,.copyright .item a{color: var(--sub-color);}
.copyright .item{padding:.5rem 1rem;margin-bottom: 5px;flex:0 0 100%}
.photonic-footer{width: 100%;text-align: center;font-size: 15px;
  color: #646464; }
.photonic-footer ul{display: flex;flex-wrap: wrap;justify-content: center;}
.photonic-footer li a{ color: #636363;padding: 3px;}
.photonic-footer li:not(:last-child) a:after{
  content:'/'
}
@media (min-width: 992px) {
  .logo {width: 240px;flex:0 0 240px}
  .copyright .item{flex:0 0 33.33%}
 
}


/* 首頁大圖內容 */
.banner-box {
  position: relative;
  margin-top: 69px;
}
.banner-box .slick-dots{position: absolute;bottom:10px;}
.banner-box .slick-dots li.slick-active button:before{ color: var(--sub-color);}
.banner-box.slick-dotted.slick-slider{margin-bottom: 0;}
@media (min-width: 992px) {
 .banner-box{margin-top: 74px; }
 
}

/* 首頁內容 服務項目*/
.home-service{ 
  background:  url(/frontEndPackage/images/bg.png);
  padding: 4rem 0 2.5rem;
  margin-top: -5px;
}

.servic-items {
  display: flex; 
  flex-wrap:wrap;
  justify-content: center; 
  text-align: center;
  margin-bottom: 3rem;
}
.servic-items .item{flex:0 0 50%;  margin-bottom: 1.5rem;}
.servic-items .item a{display: block;margin: auto; }
.servic-items .img{margin-bottom: 15px;max-width:230px ;margin: auto;padding: 10px;transition: all .3s ease-in;border-radius: 50%;border: 1px solid transparent; }
.servic-items .item .img:hover{ border: 1px solid #364664; transform: translateY(-15px);}
.servic-items .item .text{font-size: 1.125rem; font-weight: 500;position: relative;z-index: 1;}
.home-about{display: flex;flex-wrap: wrap;}
.home-about .title-box{margin-bottom: 0;padding: 0 1.5rem; }
.home-about .title-box .en{justify-content: flex-end;}
.home-about .item{flex:0 0 100%}
.home-about .item .img{background-size: cover;padding-bottom: 50%;}
.home-about .about-content{padding: 1rem 0;}
.home-about .item .text-box{background-color: var(--white);padding: 3rem 2rem 8.5rem; box-shadow: 0 0 15px rgba(0,0,0,.1);position: relative;}
.home-about .item .text-box:after{content:'';background: url(/frontEndPackage/images/line.png) repeat-x bottom center ;background-size: contain; width: 100%;padding-bottom: 89px;position: absolute;left: 0;bottom: 0;}
.home-about .item .text-box .title{padding-bottom: .6rem;}
.home-about .item .text-box .sub-title{color: var(--sub-color);font-size: 1.25rem;}
@media (min-width: 992px) {
  .servic-items {justify-content: space-between; }
  .servic-items .item{flex:0 0 20%;  }
  .home-about .item{flex:0 0 50%}
}





/* 內頁開始 */
/* 服務項目 */

.page-content{background: url(/frontEndPackage/images/bg.png) repeat;padding-bottom: 3rem;padding-top: 150px;}
.page-content .title-box .en{ color: #D7DAE0;font-size: 3.6rem;    -webkit-text-stroke: 0px;opacity: 1;text-transform:capitalize}
.breadcrumbs{display: flex;justify-content: flex-end;flex-wrap: wrap;padding: 1rem 0 .5rem;}
.breadcrumbs li a{ font-size: 13px;padding: 5px 0;}
.breadcrumbs li:not(:last-child) a::after {
  content:'/';margin: 0 5px;
}
@media (min-width: 992px) {
  .page-content  .title-box h2 { margin-top: -1rem;}
 
}


/* 成功案例 */
.case-items{ background: #2a2a2a;margin-bottom: 2rem;}
.case-items ul li a{color: var(--white);padding: .6rem 1rem;display:block;text-align: center;}
.case-items ul li.active a{background-color: var(--sub-color); color: #2a2a2a; }
.case-lists{display: flex;flex-wrap: wrap;}
.case-lists li{flex:0 0 50%;padding: 1rem;margin-bottom: 1rem;position: relative;}
.case-lists li .img{padding-bottom: 100%;width: 100%; background-size: contain; background-repeat: no-repeat;margin-bottom: 1rem;background-color: #ffffff;background-position: center;}
.case-lists li .text{text-align: center; font-size: 1.125rem;}


.slider-for, .slider-nav {
  width: 100%;
}
.slider-for .item, .slider-nav .item {
  padding-bottom:100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #ffffff;
  background-position: center;
}
.slider-nav .slick-slide {
  margin: 0 5px;
}
.page-content .content{padding: 3rem 0; }
.goback ul{display: flex;justify-content: center; align-items: center; padding-bottom: 3rem;}
.goback ul li.active a{ color: var(--main-color);  }
.goback a{ text-align: center ;padding: .6rem;  display: block;}
.goback .prev,.goback .next{margin: 0 5px;}
.cerify-code-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.verify-code {
  flex: 0 0 49%;
  width: 49%;}
  .verify-code-area {
    display: flex;
    align-items: center;
    flex: 1 0 49%;
    order: -1;
}
.verify-change-area a {
  margin-left: 5px;
  width: 50px;
  display: inline-flex;
  font-size: 14px;
}
@media (min-width: 992px){
  .case-lists li{flex:0 0 25%;}
  .slider-for, .slider-nav {
    max-width: 800px;
    margin: auto;
  }
 
}
.contact-cont .item {margin:0 15px;flex:0 0 calc(50% - 30px)}
.contact-cont .item img{margin-bottom: 15px;}
.contact-cont .item h3.title{ font-size: 18px;}
.contact-cont .item:last-child{position: relative;padding-bottom: 50%;margin-bottom: 1.5rem;flex:0 0 calc(100% - 30px);} 
.contact-cont .item iframe{position: absolute;left: 0;top: 0;height: 100%;width: 100%;}
@media (min-width: 992px) {
  .contact-box{width: 90%;margin-left: auto; margin-right: auto;}
  .contact-box .item{flex: 0 0 33.33%;}
}

