@charset "utf-8";
/* CSS Document */
body {
  --font-s01: 14px;
  --font-s02: 16px;
  --font-s03: 18px;
  --font-s04: 20px;
  --font-s05: 24px;
  --font-s06: 30px;
  --font-s07: 36px;
  --font-s08: 40px;
  --font-s09: 48px;
}
@media screen and (max-width: 700px) {
body {
  --font-s07: 34px;
  --font-s08: 36px;
  --font-s09: 38px;
}
}

.pageHeader{ width: 100%; margin:0 auto 0 auto; padding:0px 0 0px 0; position: relative; }
.pageHeader .box-2{ display: flex; justify-content: space-between; align-items: center; padding:0px 0 0px 0px; margin: 0px 0px 0px 0;}
.pageHeader h1{ width: 231px; padding:0 0px 0 0; margin:0 0px 0 40px; }
.pageHeader h1 img{ width: 100%; }
.pageHeader .menubox{ width: calc(100% - 231px - 40px); padding: 0px 0 0 0px; margin: 0px 0px 0px 0;
display: flex;
  justify-content: flex-end; align-items: flex-start; flex-wrap: wrap;  
}
.pageHeader .menubox nav{ width: auto; margin: 0px 0px 0px 0; padding:0; list-style: none; display: flex;
  justify-content: flex-end; align-items: center;}
.pageHeader .menubox .top_search a{ width: 62px; height:62px; background:#ff0002; display: flex;
  justify-content: center; align-items: center;}
.pageHeader .menubox .top_search a:before{
  content: ""; 
  width: 28px; height: 28px; display: block;
 background: url(../images/search.png) no-repeat center center;
    background-size: 100% auto;
}
@media screen and (max-width: 1330px) {
.pageHeader h1{ width: 200px; margin:0 0px 0 30px; }
.pageHeader .menubox{ width: calc(100% - 200px - 30px); }
}
@media screen and (max-width: 1200px) {
.pageHeader h1{ width: 180px; margin:0 0px 0 4%;}
.pageHeader .menubox{ width: calc(100% - 180px - 4%); }
}
@media screen and (max-width: 1100px) {
.pageHeader .menubox nav{ display:none; }
.pageHeader .menubox .top_search a{ margin: 0px 62px 0px 0;}
}
@media screen and (max-width: 500px) {
.pageHeader h1{ width: 170px; }
.pageHeader .menubox{ width: calc(100% - 170px - 4%); }
}

/* -search-*/
.search{ margin:10px 0 0px 0; width:100%; height:auto; overflow: hidden; 
 display: flex;
  justify-content: center; align-items: center; flex-wrap: nowrap;
}
.search form{ 
 display: flex;
  justify-content: center; align-items: center; flex-wrap: nowrap;
}
.search .box{ float:right; background: rgba(0,0,0,0.08); border: none; 
  display: flex;
  justify-content: center; align-items: center;}
.search .box .sbox{
  display: block;
  margin: 0;
  width: calc(100% - 50px);
  color: #666; font-weight: 600;
  line-height: 50px;
  height:50px;
  padding:0px 10px;
  border: none;
  outline: none;
  background:none;
}
.search .box .sbtn {
  background:url(../images/search.png) no-repeat #ff0002 center center;
  width:50px;
  height:50px; 
  display:block;
  margin:0px 0px 0px 0px;
  padding:0px;
  font: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* mobile menu */
.menu-btn {
  display: none;
  position: absolute;
  width: 62px; margin: 0 0 0 0px;
  height: 62px;
  background: #2166a9;
  transition: 0.5s;
  top: 0px;
  right:0px;

  padding: 0 0px; 
}
@media screen and (max-width: 1100px) {
.menu-btn {
    display: block;
  }
}
.menu-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.menu-btn span:nth-child(1) {
  top: calc(50% - 7px);
}
.menu-btn span:nth-child(3) {
  top: calc(50% + 7px);
}
.menu-btn.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
.menu-btn.active span:nth-child(2) {
  width: 0;
}
.menu-btn.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}

/* menu style */
section.menu {
  display: none;
  position: fixed;
  z-index: 98;
  top: 62px;
  left: 0;
  width: 100%;
  height: calc(100% - 62px);
  background: rgba(9, 154, 171, 0.95);
  transform: translateX(100%);
  opacity: 0;
  transition: 0.5s;
  overflow-y: auto;
}
section.menu.show {
  opacity: 1;
  transform: translateX(0);
}

.scrollbar-inner::-webkit-scrollbar {
  display: none;
}
.scrollbar-inner.scroll-content {
  max-height: calc(100vh - 100px) !important;
}
.scrollbar-inner > .scroll-element.scroll-y {
  width: 5px;
}
.scrollbar-inner > .scroll-element .scroll-bar {
  opacity: 0.8;
}

ul.main-list {
  width: 100%;
  color: #ffffff;
  margin: 0; padding: 0;
  list-style: none;
}
ul.main-list > li {
  position: relative;
  cursor: pointer;
  box-shadow: 0 1px rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}
ul.main-list > li.more::before {
  position: absolute;
  content: "";
  top: 25px;
  right: 20px;
  width: 12px;
  height: 8px;
  background: url(../images/icon-arrow-down-white.svg) no-repeat;
  opacity: 0.7;
  transition: 0.5s;
}
ul.main-list > li.more.active::before {
  transform: scale(-1);
}
ul.main-list > li > a {
  display: inline-block;
  padding: 15px 20px;
  font-size: 20px;
  color: #ffffff;
  transition: 0.5s;
}
ul.main-list > li > a:hover {
  color: #fff337;
}
ul.main-list > li.lan::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/lan03.png) no-repeat;
  background-size: 100% auto;
}

ul.sub-list {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0; padding: 0; list-style: none;
}
ul.sub-list > li {
  position: relative;
  cursor: pointer;
  padding: 0; margin: 0; list-style: none;
}
ul.sub-list > li + li {
  border-top: 1px solid rgba(255,255, 255, 0.1);
}
ul.sub-list > li.more::before {
  position: absolute;
  content: "";
  top: 20px;
  right: 20px;
  width: 12px;
  height: 8px;
  background: url(../images/icon-arrow-down-white.svg) no-repeat;
  opacity: 0.7;
  transition: 0.5s;
}
ul.sub-list > li.more.active::before {
  transform: scale(-1);
}
ul.sub-list > li > a {
  display: inline-block;
  padding: 15px 10px 15px 40px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.5s;
}
ul.sub-list > li > a:hover {
  color: #fff337;
}

ul.third-list {
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0; padding: 0; list-style: none;
}
ul.third-list > li + li {
  border-top: 1px solid #0b0b0b;
  cursor: pointer;
}
ul.third-list > li > a {
  display: block;
  padding: 15px 10px 15px 60px;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.5s;
}
ul.third-list > li > a:hover {
  color: #fff337;
}

/* banner */
.index-banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: auto;
  padding: 0px 0 0 0; 
  position: relative; 
}
.index-banner img {
  width: 100%;
}
.index-banner .for_PC {
  display: block;
  width: 100%;
}
.index-banner .for_mobile {
  display: none;
}
.index-banner .for_PC img, .index-banner .for_mobile img {
  width: 100%;
}

.index-banner .index-banner-slick {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.index-banner .index-banner-slick .slide_img {
  width: 100%;
  height: calc(100vh - 120px);
  margin: 0 0 0 0; padding: 0;
  background-size: cover;
  background-position: center bottom; 
}
.index-banner .index-banner-slick .slick-list, .index-banner .index-banner-slick .slick-track {
  height: 100%;
}

.index-banner .index-banner-slick .slick-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.index-banner .index-banner-slick .slick-dots {
  bottom: 0px;
  display: flex;
  justify-content: center;
}

.index-banner .index-banner-slick .slick-dots li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  width: auto;
  height: auto;
}

.index-banner .index-banner-slick .slick-dots li+li {
  margin-left: 15px;
}

.index-banner .index-banner-slick .slick-dots li button {
  background-color: #000;
  opacity: 0.2;
  display: block;
  width: 12px;
  height: 12px;
  border: none;
  padding: 0;
  border-radius: 50%;
}

.index-banner .index-banner-slick .slick-dots li.slick-active button {
  background-color: #deccac;
  opacity: 1;
}

.index-banner .index-banner-slick .slick-dots li button:before {
  font-size: 0;
}

.index-banner .slick-prev:before, .index-banner .slick-next:before { font-size: 0px; }
.index-banner .slick-prev{ top: calc(50% - 33px); left:1.5%; z-index: 9; border: none; width: 40px; height: 66px; 
display: flex; justify-content: center; background: url(../images/arrow_white02.png) no-repeat center center; 
  align-items: center; transform: rotate(-180deg) translateY(-1px);
}
.index-banner .slick-next{ top: calc(50% - 33px); right:1.5%; z-index: 9; border: none; width: 40px; height: 66px; 
display: flex; justify-content: center; background: url(../images/arrow_white02.png) no-repeat center center; 
  align-items: center;
}
.index-banner .slick-prev.slick-disabled:before,
.index-banner .slick-next.slick-disabled:before
{
    opacity: 1;
}
.index-banner .slick-prev:hover,
.index-banner .slick-prev:focus,
.index-banner .slick-next:hover,
.index-banner .slick-next:focus
{
    background: url(../images/arrow_white.png) no-repeat center center; 
}

@media only screen and (min-width: 0px) and (max-width: 899px) {
  .index-banner .for_PC {
    display: none;
  }
  .index-banner .for_mobile {
    display: block;
    width: 100%;
  }
}


/* page-banner */
.page-banner {
  background-size: cover;
  position: relative;
  width: 100%;
  height: 360px;
  margin-top: 0;
  padding: 0;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-banner .banner_ttbox {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
}
.page-banner .banner_ttbox h2{
  color: #fff;
  font-size: var(--font-s07);
  margin: 0 auto;
  text-shadow: 0 0 8px rgb(0 0 0 / 16%);
}
@media only screen and (min-width: 1024px) and (max-width: 1400px) {
.page-banner {
  height: 350px;
}
.page-banner .banner_ttbox {
  top: 40%;
}
}  
@media only screen and (min-width: 0px) and (max-width: 1024px) {
.page-banner {
  height: 40vh; 
}
.page-banner .banner_ttbox {
  top: 40%;
}
.page-banner .banner_ttbox h2{
  font-size: 30px;
}
}

/*分類*/
.classBox {
  margin: 50px 0 -30px 0;
  padding: 10px 0 0px 0;
  height: auto;
    overflow: hidden;
}
.unit_list{
  width: 100%; margin: 0px 0 0 0;
}
.unit_list ul{
  width: 100%; margin: 0; padding: 0; list-style: none;
  display: flex; justify-content: center; align-items: center;
}
.unit_list li{
  position: relative;
  margin: 0 10px 15px 10px;
  font-size: var(--font-s01);
  padding: 10px 15px;
  color: #888;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  font-weight: 600;
}
.unit_list li a {
  color: #888;
}
.unit_list li.active, .unit_list li:hover{
  background: #027bb8;
  color: #FFF;
}
.unit_list li:hover a{
  color: #FFF;
}
.unit_list li.active a{
  color: #FFF;
}
.mobile_list{
  width: 100%;
  float: left;
  justify-content: center;
  align-items: center;
  font-size: var(--font-s01);
  font-weight: 600;
  padding: 13px 10px;
  height: 55px;
  color: #fff;
  display: none;
  margin: 0px 0 0 0;
  position: relative;
  background: #027bb8;
}
.mobile_list:after {
  content: "\f078";
    font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  font-size: 16px;

    top: 20px;
    right: 20px;
    display: inline-block;
    position: absolute;
    transition: all 0.2s;
    z-index: 9;
  }
.mobile_list.active{
  background: #027bb8;
}
.mobile_list.active:after{
  -ms-transform: rotate(180deg);
   -webkit-transform: rotate(180deg);
   transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
.mobile_list{ display:flex; }
.mobilenav{ width: 100%; float: left; max-height: 0;overflow: hidden;transition: max-height 0.2s ease-out;}
.unit_list{
  margin: 0px 0 0 0;
}
.unit_list ul{
  background: #e5f4ff; flex-wrap: wrap; padding: 0px 0; margin: 0 0 0px 0;
}
.unit_list li{  
  margin: 0 0px;
  border: none;
  background-color: #eee;
  max-width:none; width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}
.unit_list li.active{
  display: none;
}
.unit_list li:hover{
  background: none;
}
.unit_list li a {
    color: #666; display: block; padding: 8px 10px; 
}
.unit_list li a:hover, .unit_list li:hover a {
    color: #0091ff;
}
}

/* SCROLL TO TOP */
.scrollToTop {
    display: none;
    position: fixed;
    right: 2%;
    bottom: 10%;
    border: none;
    background: none;
    z-index: 99;
}
/* top */
.pagetop{ width: 47px; height: 47px; background: #099aab; font-size: 15px;  
display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.pagetop:before{ content: ""; display: block; font-size: 13px;
content: "\f077" ; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #fff; }
@media only screen and (min-width: 0px) and (max-width: 1024px) {
.pagetop{ width: 42px; height: 42px; }
}

/* 定義區塊 */
.main_top{ height:auto; overflow: hidden; padding: 60px 0px 0px 0px; }
.box-1{ max-width:1365px; width: 90%; margin:0px auto; padding:0px 0;}
.box-2{ width: 100%; margin:0px auto; padding:0px 0;}

.m_color01 { background:#f5f6f7; }

.content { width: 100%; padding:0px 0 0px 0; display: flex;}
.left_content{ width: 320px; margin:0px; padding:70px 70px 70px 0px; height:auto; overflow: hidden; }
.right_content { width:calc(100% - 320px); margin:0px 0 0px 0; padding:70px 0px 70px 0px; float: left; }
@media screen and (max-width: 1280px) {
.left_content{ width: 280px; padding:70px 50px 70px 0px; }
.right_content { width:calc(100% - 280px); }
}
@media screen and (max-width: 900px) {
.left_content{ display: none;}
.right_content { width:100%;}
.right_content .title01 { justify-content: center; text-align: center;}
}
@media screen and (max-width: 768px) {
.left_content, .right_content{ padding:60px 0px;}
}

.padding01{ padding:150px 0px;}
@media screen and (max-width: 1366px) {
.padding01{ padding:100px 0px;}
}
@media screen and (max-width: 900px) {
.padding01{ padding:80px 0px;}
}
@media screen and (max-width: 768px) {
.padding01{ padding:60px 0px;}
}

.title01 {
  width: 100%;display: flex; justify-content: flex-start; align-items: center; 
}
.title01 h2 {
  position: relative;
  display: flex; justify-content: flex-start; align-items: center;
  font-size:var(--font-s09); margin:0; padding:0 0 0 0px; line-height:1; color: #000;
}

.title02{ font-size:var(--font-s06); color: #000; font-weight: 600; }
.title02 span{ font-size:var(--font-s05); color: #333; font-weight: 600; border-bottom: 2px solid #ff0002; }

.title03{ width:100%; display: flex; justify-content: flex-start; align-items: center; border-bottom: 1px rgba(0, 0, 0, 0.1) solid; margin:0 0 20px 0;}
.title03 .t01{ font-size:28px; color: #2166a9; font-weight:600; }
.title03 .t02{ font-size:var(--font-s04); color: #099aab; font-weight:600; padding:0 0 0 30px;}
@media screen and (max-width: 1024px) {
.title03{
  flex-wrap: wrap;
}
.title03 .t02{ width:100%; padding:0 0 0 0px;}
}

.user_editor{ width:100%; height:auto; overflow: hidden; position: static !important;}
.user_editor img{ max-width:100% !important; height:auto !important;  }
.line-height{ line-height:2;}

.listGrid-responsive {
    overflow-x: auto;
    margin:0px 0px 0px 0px;
}

.table01{
    font-size:var(--font-s02); 
}
.table01 td, .table01 th {
    padding: 5px; text-align: center;
}
.table01 tr:nth-child(odd){
    background: #f2fafc;
}

.table02{
}
@media screen and (max-width: 1024px) {
.table02 tr:nth-child(odd){
    display: flex;
  flex-wrap: wrap;
}
.table02 td:nth-child(2) {
    width:100%; text-align: center;
}
}

/* -首頁------------------------------------------------------------------------------------------------------*/
/* 首頁-about */
.ind_news {
    width: 100%;
    background: #f5f6f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ind_news .box-1 { display: flex; justify-content: flex-start; align-items: center; }
.ind_news .title01 { width:250px; }
.ind_news .news { width:calc(100% - 250px); }
@media screen and (max-width: 1000px) {
.ind_news .box-1 { flex-wrap: wrap; }
.ind_news .news { width:100%; margin: 40px auto 0px auto; }
}

/* 首頁-about */
.ind_about { width:100%; margin: 0px 0 0px 0; }
.ind_about .box-1{
  display: flex; justify-content: space-between; align-items: center;
}
.ind_about .txtbox{ width:52%; margin: 0px 0 0px 0;}
.ind_about .txtbox p{ width:100%; margin: 50px 0 0px 0; color:#313131; font-size:var(--font-s03); line-height:1.7;}

.ind_about .videobox{ width:48%; margin: -80px 0 0px 0; padding:0 0 0 75px;}
.ind_about .videobox .cer{ width:100%; }
.ind_about .videobox .cer ul{ width:100%; margin: 0px 0 0px 0; padding:0 0 0 0px; display: flex; justify-content: flex-end; align-items: center; list-style:none;}
.ind_about .videobox .cer ul li{ width:auto; margin: 0px 0 0px 45px; padding:0 0 0 0px; }
.ind_about .videobox .video{ width:100%;  margin: 50px 0 0px 0;}
.ind_about .videobox .video iframe{ width:100% !important; height: 420px !important; }

@media screen and (max-width: 1200px) {
.ind_about .videobox .cer ul li{ margin: 0px 0 0px 30px; }
.ind_about .videobox .cer ul li img{ height: 85px; }
}
@media screen and (max-width: 1000px) {
.ind_about .box-1{
  flex-wrap: wrap;
}
.ind_about .txtbox{ width:100%; margin: 0px 0 0px 0;}
.ind_about .videobox{ width:100%; margin: 0px 0 0px 0; padding:0 0 0 0px;}
.ind_about .videobox .cer ul{ justify-content: flex-start; margin: 60px 0 0px 0;}
.ind_about .videobox .cer ul li{ margin: 0px 30px 0px 0; }
}

/* 首頁-影片 */
.play-button {
   position: absolute;
   left: calc(50% - 30px);
   top: 50%;
   transform: translateY(-50%);
}
 .play-button__circle {
   width: 60px;
   height: 60px;
   background: linear-gradient(to right, rgba(245, 165, 38, 1) 0%, rgba(234, 84, 19, 1) 100%);
   border-radius: 100%;
}
 .play-button__arrow {
   position: absolute;
   width: 20px;
   height: 20px;
   color: #fff;
   left: calc(50% - 6.25px);
   top: 50%;
   transform: translateY(-50%);

   display: flex;
    justify-content: flex-start;
    align-items: center;
}
 .video-wrapper {
   position: relative;
   width: 100%; 
   cursor: pointer;
   border-right: none;
   margin: 30px 0 0px 0;
}
.ind_news_box li.video-wrapper:hover{
    box-shadow: none;
background: none;
border-right: none;
}
.video-wrapper video{
   width: 100%;
}

/* 首頁-pd */
.ind_pd_bg { width:100%; background: url(../images/ind_pd_bg.jpg) no-repeat top center; display: flex; justify-content: space-between; align-items:flex-start; overflow: hidden;}
.ind_pd_bg .txtbox{ width:26%; margin-left: calc(50% - 682px);}
.ind_pd_bg .txtbox p{ width:100%; margin: 30px 0 0px 0; color:#313131; font-size:var(--font-s03); line-height:1.7;}
.ind_pd_bg .pdbox{ width:55%; margin: 0px 1.5% 0px 0; padding:0 0 0 0px;}
.ind_pd_bg .pdbox ul{ width:100%; margin: 0px 0 0px 0; padding:0 0 0 0px; list-style:none;}
.ind_pd_bg .pdbox ul li{ width:100%; margin: 0px 18px; padding:0 0 0 0px; list-style:none;}
.ind_pd_bg .pdbox ul li .pic{ width:100%; box-shadow: 0px 0px 15px rgb(0 0 0 / 20%); overflow: hidden;}
.ind_pd_bg .pdbox ul li .pic img{ width:100%; 
transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.ind_pd_bg .pdbox ul li:hover .pic img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.ind_pd_bg .pdbox ul li p{ width:100%; font-size: var(--font-s03); color:#000; text-align: center; font-weight: 600; margin: 30px 0 0px 0;
overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ind_pd_bg .btn-box {
    margin: 40px 0 0px 0;
}
@media screen and (max-width: 1800px) {
.ind_pd_bg .pdbox{ width:59%; }
}
@media screen and (max-width: 1700px) {
.ind_pd_bg .txtbox{ width:29%;}
}
@media screen and (max-width: 1600px) {
.ind_pd_bg .pdbox{ width:62%; }
}
@media screen and (max-width: 1550px) {
.ind_pd_bg .txtbox{ width:30%; margin-left: 5%;}
.ind_pd_bg .pdbox{ width:60%; margin: 0px 5% 0px 0; padding:0 0 0 30px;}
}
@media screen and (max-width: 1100px) {
.ind_pd_bg { flex-wrap: wrap; padding:60px 0px 120px 0px;}
.ind_pd_bg .txtbox{ width:90%; margin-left: 5%; margin-right: : 5%;}
.ind_pd_bg .pdbox{ width:90%; margin: 50px 5% 0px 5%; padding:0 0 0 0px;}
.ind_pd_bg .pdbox ul{ width:calc(100% + 36px); margin: 0px -18px ; }
}
@media screen and (max-width: 600px) {
.ind_pd_bg .pdbox ul{ width:100%; margin: 0px 0px ; }
.ind_pd_bg .pdbox ul li{ margin: 0px 0px; }
}

.responsive .slick-prev:before, .responsive .slick-next:before { font-size: 0px; }
.responsive .slick-prev{ top: auto; bottom: -60px; left:20px; z-index: 9; border: none; width: 42px; height: 42px; 
display: flex; justify-content: center; background: url(../images/arrow_gray.png) no-repeat center center; border: 1px solid #ababab;
  align-items: center; transform: rotate(-180deg) translateY(-1px);
}
.responsive .slick-next{ top: auto; bottom: -61px; left:72px; z-index: 9; border: none; width: 42px; height: 42px; 
display: flex; justify-content: center; background: url(../images/arrow_gray.png) no-repeat center center; border: 1px solid #ababab;
  align-items: center;
}
.responsive .slick-prev.slick-disabled:before,
.responsive .slick-next.slick-disabled:before
{
    opacity: 1;
}
.responsive .slick-prev:hover,
.responsive .slick-prev:focus,
.responsive .slick-next:hover,
.responsive .slick-next:focus
{
    background: url(../images/arrow_blue.png) no-repeat center center; border: 1px solid #2166a9;
}

/* 首頁-qa */
.ind_qa_bg { width:100%; background: #f5f6f7; display: flex; justify-content: space-between; align-items: center;}
.ind_qa_bg .title01 {
  justify-content: space-between; 
}
.ind_qa_bg .title01 .btn-style02{
    padding: 6px 30px;
    font-size:var(--font-s02);
}

.cer02 { width:calc(100% + 36px); margin: 0px -18px; padding:0px 0 70px 0; }
.cer02.quality  {
    padding:70px 0 70px 0; 
}
.cer02 ul{ width:100%; margin: 40px 0px 0px 0px; padding:0px 0 0px 0; list-style: none;
display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cer02.quality ul{
display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; 
}
.cer02.quality ul:after {
    content: "";
    width:calc(100% / 4);
}
.cer02 ul li{ width:100%; margin: 0px 18px; padding:0px 0 0px 0; list-style: none;
}
.cer02.quality ul li{ width:calc(100% / 4 - 20px); margin: 0px 10px 30px 10px; padding:0px 0 0px 0; list-style: none;
}
.cer02 ul li a{ 
flex-wrap: nowrap;
display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #fff; position: relative; box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}
.cer02 ul li .picbox{ width:50%; padding:30px 30px;}
.cer02 ul li .picbox .pic{ width:100%; overflow: hidden;}
.cer02 ul li .picbox .pic img{ width:100%; 
transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.cer02 ul li:hover .pic img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.cer02 ul li .txtbox{ width:calc(100% - 50%); padding:50px 0px 0 0px; 
  display: flex; justify-content: flex-start; align-items: flex-start; flex-wrap: wrap; border-top:10px solid #2166a9;}

.cer02 ul li .txtbox .txt{ width:100%; padding:0px 0px 0 0;}
.cer02 ul li .txtbox .txt p{ width:100%; font-size: var(--font-s03); color: #000; line-height: 1.2; font-weight: 600;
}
.cer02 ul li .zoombox{ width:auto; padding:0px 0 0 0px;  position:absolute; bottom:0; right:0;}
.cer02 ul li .zoombox .btn{
  margin: 0px 0px; 
    padding: 0px 10px 0px 10px;
    min-height: 35px;
    min-width: 140px;
    text-align: center;
    text-decoration: none;
    color: #fff; font-weight: 700;
    font-size:var(--font-s03);
    background: #099aab;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-decoration:none !important;

  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.cer02 ul li .zoombox .btn a{
    color: #fff;
}
.cer02 ul li .zoombox .btn span{
    z-index: 2; padding: 0 5px 0 0px;
}
.cer02 ul li .zoombox .btn:hover:after, .cer02 ul li:hover .zoombox .btn:after {
    width: 100%; background-color: #2166a9;
}
.cer02 ul li .zoombox .btn:after {
    content: "";
    display: block;
    width: 35px;
    height: 100%;
    background-color: #2166a9;
    position: absolute;
    top: auto;
    left: 0px;
    bottom: 0px;
    z-index: 1;
   -webkit-transition: all .75s;
    -o-transition: all .75s;
    -moz-transition: all .75s;
    transition: all .75s
}
.cer02 ul li .zoombox i {
    width: 35px; z-index: 3;
}
.cer02 ul li .zoombox i:before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    background: #2166a9 url(../images/search02.png) no-repeat center center;
    background-size: 100% auto;
    z-index: 3;
}
@media screen and (max-width: 1366px) {
.cer02.quality ul:after {
    content: "";
    width:calc(100% / 3);
}
.cer02.quality ul li{ width:calc(100% / 3 - 20px);
}
}
@media screen and (max-width: 900px) {
.cer02.quality ul:after {
    content: "";
    width:calc(100% / 2);
}
.cer02.quality ul li{ width:calc(100% / 2 - 20px);
}
}
@media screen and (max-width: 768px) {
.cer02 ul li .txtbox{ padding:20px 0px 0 0px; }
.cer02.quality  {
    padding:60px 0 60px 0; 
}
}
@media screen and (max-width: 600px) {
.cer02 { width:100%; margin: 0px 0; }
.cer02 ul li{ margin: 0px 0px; }

.cer02.quality ul:after {
    content: "";
    width:100%;
}
.cer02.quality ul li{ width:100%; margin: 0px 0px 30px 0px;
}

}

.responsive02 .slick-prev:before, .responsive02 .slick-next:before { font-size: 0px; }
.responsive02 .slick-prev{ top: auto; bottom: -70px; left:20px; z-index: 9; border: none; width: 42px; height: 42px; 
display: flex; justify-content: center; background: url(../images/arrow_gray.png) no-repeat center center; border: 1px solid #ababab;
  align-items: center; transform: rotate(-180deg) translateY(-1px);
}
.responsive02 .slick-next{ top: auto; bottom: -71px; left:72px; z-index: 9; border: none; width: 42px; height: 42px; 
display: flex; justify-content: center; background: url(../images/arrow_gray.png) no-repeat center center; border: 1px solid #ababab;
  align-items: center;
}
.responsive02 .slick-prev.slick-disabled:before,
.responsive02 .slick-next.slick-disabled:before
{
    opacity: 1;
}
.responsive02 .slick-prev:hover,
.responsive02 .slick-prev:focus,
.responsive02 .slick-next:hover,
.responsive02 .slick-next:focus
{
    background: url(../images/arrow_blue.png) no-repeat center center; border: 1px solid #2166a9;
}

/* 首頁-pd */
.ind_pd_box { width:100%; background: #fff; overflow:hidden;}
.ind_pd_box .box-1{ position:relative; display: flex; flex-wrap: wrap; justify-content: space-between;}
.ind_pd_box .box-1 .pic{ width:100%; }
.ind_pd_box .box-1 .pic img{ width:100%; }
.ind_pd_box .box-1 .text_box{ background:#2c50a6; padding:40px 45px; margin: 0px 0 0px 0; margin: -80px 0 0px 0;}
.ind_pd_box .box-1 .text_box div{ width:430px; margin: 0px 0 0px 0; padding:0 0 0 0px; list-style: none; }
.ind_pd_box .box-1 .text_box h2{ color: rgba(255,255,255,0.4); font-size:var(--font-s05);}
.ind_pd_box .box-1 .text_box h3{ color: #fff; font-size:var(--font-s07); white-space:nowrap;}
.ind_pd_box .box-1 .btn-box{ padding: 0; margin: 28px 0 0px 0; 
    justify-content: flex-end; 
}
@media screen and (max-width: 1000px) {
.ind_pd_box .box-1 .text_box { width:100%; margin: 0px 0 0px 0; padding:3%;}
.ind_pd_box .box-1 .text_box div{ width:100%; }

}


.slider-nav .slick-dots {
  bottom: -85px; right: 270px; width: auto;
  display: flex;
  justify-content: flex-end;
}

.slider-nav .slick-dots li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  width: auto;
  height: auto;
}
.slider-nav .slick-dots li+li {
  margin-left: 15px;
}
.slider-nav .slick-dots li button {
   display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  background: none;
  text-indent: -9999px;
}
.slider-nav .slick-dots li.slick-active button {
  background: none;
}
.slider-nav .slick-dots a {
  width: 22px;
  height: 22px;
  margin: 0 5px;
  line-height: 24px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  border: none;
  background: none;
  color: #313131;
  font-size:var(--font-s03);
  font-weight: normal;
}
.slider-nav .slick-dots a:before{
content: "0"; 
}
.slider-nav .slick-dots .slick-active a {
  background: none;
  color: #2166a9;
  border: none;
  font-weight: 600;
}
.slider-nav .slick-dots a:hover {
  background: none;
}

.ind_pd_box .slick-prev:before, .ind_pd_box .slick-next:before { font-size: 0px; }
.ind_pd_box .slick-prev{ top: calc(50% - 21px); left:0px; z-index: 9; border: none; width: 42px; height: 42px; 
display: flex; justify-content: center; background: url(../images/arrow_gray.png) no-repeat center center rgba(0, 0, 0, 0.5); border: 1px solid #ababab;
  align-items: center; transform: rotate(-180deg) translateY(-1px);
}
.ind_pd_box .slick-next{ top: calc(50% - 21px); right:0px; z-index: 9; border: none; width: 42px; height: 42px; 
display: flex; justify-content: center; background: url(../images/arrow_gray.png) no-repeat center center rgba(0, 0, 0, 0.5); border: 1px solid #ababab;
  align-items: center;
}
.ind_pd_box .slick-prev.slick-disabled:before,
.ind_pd_box .slick-next.slick-disabled:before
{
    opacity: 1;
}
.ind_pd_box .slick-prev:hover,
.ind_pd_box .slick-prev:focus,
.ind_pd_box .slick-next:hover,
.ind_pd_box .slick-next:focus
{
    background: url(../images/arrow_blue.png) no-repeat center center rgba(255, 255, 255, 1); border: 1px solid #2166a9;
}

/* 首頁-cookie */
.cookie {
  position: fixed;
  bottom: 0;
  background: #20365c;
  width: 100%;
  padding: 30px 0px;
  color: rgba(255, 255, 255, 0.6);
  z-index: 9999;
  font-size: 15px;
}
.cookie .box-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.cookie .box-1 .txt{
  line-height: 1.8;
  padding: 0px 20px 0px 0px;
}
.cookie .box-1 .txt a {
  color: #fff;
  padding-right: 10px;
  text-decoration: underline;
}
.cookie .btn-style01{
  padding: 0px 40px 0px 40px;
    min-height: 40px; line-height: 40px;
    min-width: auto;
}
@media screen and (max-width: 1100px) {
.cookie {
  padding: 30px 0px;
}
.cookie .box-1 {
    flex-wrap: wrap;
  }
.cookie .box-1 .txt{
  padding: 0px 0px 10px 0px;
  width: 100%; text-align:center;
}
.cookie .box-1 .btn{
  width: 100%; text-align:center;
    display: flex;
  justify-content: center;
  align-items: center;
}
}

/* -公司介紹--------------------------------------------------------------------------------------------------*/
.about{ width:100%; margin: 40px 0 0px 0; padding:0 0 0 0px;}

.news_content { width: 100%; padding:0px 0 0px 0; display: flex; justify-content: flex-start; align-items: center; padding:70px 0px 70px 0px; }
.news_content02 { width: 100%; padding:0px 0 0px 0; display: block; padding:70px 0px 70px 0px; }
@media screen and (max-width: 768px) {
.news_content{ padding:60px 0px;}
}

.news_content .title01 { width:250px; }

.news { width:calc(100% - 250px); margin: 0px auto 0px auto; padding:0px 0 0px 0; }
.news ul{ width:100%; margin: 0px 0px 0px 0px; padding:0px 0 0px 0; list-style: none;  }
.news ul li{ width:100%; padding: 18px 20px 18px 20px; margin: 0 0 1px 0; list-style: none; font-size: var(--font-s01); line-height: 1.5; position:relative;
display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+25,ffffff+50,ffffff+75,ffffff+100&0+0,0.75+25,0.75+75,0+100 */
background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.75) 25%,rgba(255,255,255,0.75) 50%,rgba(255,255,255,0.75) 75%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
 }
.news ul li a{ width:100%; 
display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; 
 }
.news ul li .title_box{ width:calc(100% - 50px); display: flex; justify-content: flex-start; align-items: center;
}
.news ul li .title_box .date{ width:100px; color: #8a8685;
}
.news ul li .title_box p{ width:calc(100% - 100px); font-size:var(--font-s03); color: #000; padding: 0 0 0 15px; margin: 0; font-weight:600; }
.news ul li .icon{ width:50px; display: flex; justify-content: flex-end; align-items: center; 
}
.news ul li .icon:after{
  content: ""; margin: 0px 0 0px 0px; 
  width: 8px; height: 13px; display: block;
 background: url(../images/arrow_gray.png) no-repeat center center;
    background-size: 100% auto;
    transition: all 0.6s;
}
.news ul li:hover .title_box p{ color: #2166a9;}
.news ul li:hover .icon:after{
content: ""; margin: 0px 0 0px 0px; 
  width: 8px; height: 13px; display: block;
 background: url(../images/arrow_blue.svg) no-repeat center center;
    background-size: 100% auto;
    transform: translate(10px, 0);
}
@media screen and (max-width: 1000px) {
.news_content { flex-wrap: wrap; }
.news_content .title01 { width:100%; 
justify-content: center;
        text-align: center;
}
.news { width:100%; margin: 40px auto 0px auto; }
}
@media screen and (max-width: 600px) {
.news ul li .title_box{ flex-wrap: wrap;}
.news ul li .title_box .date{ width:100%;}
.news ul li .title_box p{ width:100%; padding: 0 0 0 0px;}
}

.news02 { width:100%; margin: 0px auto 40px auto; padding:0px 0 0px 0; }
.news02 .text_box{ width:100%; margin: 30px auto 30px auto; padding:30px 0 0px 0; border-top: 1px rgba(0,0,0,0.1) solid; }
.news02 .title{
    padding: 0px 0px;
    display: flex;
  flex-wrap: wrap;
}
.news02 .title h2{
    font-size: var(--font-s06); color: #000; 
    width: 100%;
    display: flex;
  justify-content: flex-start;
  align-items: center;
}
.news02 .title .date_box{
    margin: 0 0 15px 0; 
    display: flex;
  justify-content: flex-start;
  align-items: center;
}
.news02 .title .date_box li{
    display: block;
    margin: 0 10px 0px 0px;
    color: #8a8685;
}

/* -產品介紹--------------------------------------------------------------------------------------------------*/
.pd { width:100%; margin: 40px auto -40px auto; padding:0px 0 0px 0; }
.pd ul{ margin:0px 0 0px 0px; padding: 0px; width:100%; list-style:none;
display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
.pd ul:after {
    content: "";
    width:calc(100% / 3 - 28px);
}
.pd li{ margin:0px 0px 50px 0px; padding:0px 0px 0px 0px; width:calc(100% / 3 - 28px); list-style:none; transition: all 0.6s; }
.pd li a{ display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; }
.pd li .pic{ width:100%; position: relative; overflow: hidden; box-shadow: 0px 0px 15px rgb(0 0 0 / 20%); }
.pd li .pic img{ width:100%; margin: 0 0px -10px 0;
transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.pd li:hover .pic img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.pd li p {
    width: 100%;
    font-size: var(--font-s03);
    color: #000;
    text-align: center;
    font-weight: 600;
    margin: 15px 0 0px 0;
}
@media screen and (max-width: 1200px) {
.pd { margin: 40px auto -30px auto; }
.pd ul:after {
    content: "";
    width:calc(100% / 3 - 20px);
}
.pd li{ margin:0px 0px 40px 0px; width:calc(100% / 3 - 20px); }
}
@media screen and (max-width: 1000px) {
.pd { margin: 40px auto -20px auto; }
.pd ul:after {
    content: "";
    width:calc(100% / 2 - 15px);
}
.pd li{ margin:0px 0px 30px 0px; width:calc(100% / 2 - 15px); }
}
@media screen and (max-width: 580px) {
.pd ul:after {
    content: "";
    width:100%;
}
.pd li{ width:100%; }
}

.pd02 { width:100%; margin: 0px; padding:0px 0; height:auto; overflow: hidden;
display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.pd02 .right_img{
  width:45%;
  margin:0px 0px 0px 0px; padding:15px; list-style:none; background: #fff;

display: flex;
  justify-content: space-between;
  align-items: center;
  }
.pd02 .txtbox{ width:calc(100% - 45%); padding:0px 0 0 30px; 
display: flex; flex-direction:column; justify-content: space-between;
}
.pd02 .txtbox h2{ font-size: var(--font-s08); color: #000; margin: 0 0 30px 0; }
.pd02 .txtbox .topbox{ width:100%; }
.pd02 .txtbox .topbox p{ width:100%; font-size: var(--font-s03); color: #666; margin: 0 0 10px 0;}
@media screen and (max-width: 1400px) {
.pd02 .right_img{ width:50%; padding:10px; }
.pd02 .txtbox{ width:calc(100% - 50%); }
}
@media screen and (max-width: 1280px) {
.pd02 .txtbox h2{ font-size: 30px; margin: 0 0 20px 0;}
}
@media screen and (max-width: 1100px) {
.pd02 { flex-wrap: wrap; }
.pd02 .right_img{ width:100%; }
.pd02 .txtbox{ width:100%; padding:20px 0px 0 0; }
}

.pd03 { width:100%; margin: 30px 0px -30px 0px; padding:0px 0; height:auto; overflow: hidden; }
.pd03 h3{ width:100%; margin: 0px; padding:10px 20px; background: #2c50a6; text-align: center; color:#fff; font-size:var(--font-s03); }
.pd03 .user_editor{ width:100%; margin: 0px; padding:20px 20px; background: #fff; }

/* -產品照片-*/
.product-slick {
  width:100%; margin:0px 30px 0px 0px; padding:0px 0px 0px 0px; list-style:none; 
  }
.product-slick li{
  width:100%; margin:0px 0px 0px 0px; padding:0; list-style:none;
  }
.product-slick li img{
  width:100%;
  }
.product-nav {
  width: 100%;
  margin:0px; padding:0; list-style:none;
  height:auto; overflow: hidden;
}
.product-nav li {
  width:100%;
  margin:0px 10px 0px 0px; padding:0 0px;
  cursor: pointer;
}
.product-nav li img{
  width:100%; border: 1px solid rgba(0, 0, 0, 0.1);
  }
.product-nav .slick-prev:before, .product-nav .slick-next:before { font-size: 22px;}
.product-nav .slick-prev:before{ content: "\f053" ; font-family: 'Font Awesome 5 Free';
  font-weight: 900; color: #b2b2b2;
}
.product-nav .slick-next:before{ content: "\f054" ; font-family: 'Font Awesome 5 Free';
  font-weight: 900; color: #b2b2b2;
}
.product-nav .slick-prev{ top: 50%; left:0px; z-index: 9; 
display: flex; justify-content: center;
  align-items: center;
}
.product-nav .slick-next{ top: 50%; right:0px; z-index: 9; 
display: flex; justify-content: center;
  align-items: center;
}
.product-nav .slick-prev:hover,
.product-nav .slick-prev:focus,
.product-nav .slick-next:hover,
.product-nav .slick-next:focus
{
    color: #d51f27;
}
.product-nav .slick-prev:hover:before, .product-nav .slick-next:hover:before,
.product-nav .slick-prev:focus:before, .product-nav .slick-next:focus:before 
{ color: #b2b2b2; opacity: 1;}


.download-box {
    margin: 30px 0 20px 0;
    padding: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}
.download-box li {
    display: flex; justify-content:center; align-items: center;
    padding: 12px 30px;
    margin: 0px 10px 10px 0px;
    width: auto;
    background: #099aab;
    border-radius: 30px;
}
.download-box li a{
    display: flex; justify-content:center; align-items: center;
}
.download-box li:hover { background: #2166a9; }
.download-box li:last-child {
    margin-right: 0
}

.download-box em {
    font-size: var(--font-s02);
    color: #FFF; font-style: normal;
}
.download-box .icon{ color: #fff; padding: 0; margin: 0; display: flex; justify-content:flex-start; align-items: center;
 }
.download-box .icon i{ color: #FFF; padding: 0 10px 0 0; margin: 0; display: flex; justify-content: center; align-items: center;
    -webkit-transition: all .5s;
    transition: all .5s
 }
.download-box a:hover .icon i {
        -webkit-transform:scale(1.1);
        transform: scale(1.1)
    }

/* -聯絡我們--------------------------------------------------------------------------------------------------*/
.contact {
    margin: 0px; padding:70px 0 70px 0; display: flex; justify-content: space-between; align-items: flex-start;
}
.contact_form { width: calc(100% - 35%); margin: 0px; }
.contact_form .title01{ margin: 0px 0px 20px 0px; }
.contact_form p{ margin: 0px 0px 40px 0px; font-size:var(--font-s03);}
.contact_form .btn-box{  margin: 30px 0 0px 0; 
display: flex; 
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.contact_form .btn-box .btn-style03{
  margin: 0px 8px; 
}

.contact_info {
    margin: 0px;
    padding:0px 0 0px 50px;
    width:35%;
}
.contact_info .box {
    padding: 0px; background: #2c50a6; padding: 30px;
}
.contact_info .box h2{ font-size: var(--font-s06); color: #fff; margin: 0 0 15px 0; }
.contact_info .box h2 a{ color: #fff;}
.contact_info .box h3{ color: #fff; font-weight: normal;}
.contact_info .box p { padding: 0px 0px 15px 0px; margin: 0; color: rgba(255, 255, 255, 0.6);}
.contact_info .box p span{ color: #fff;}
.contact_info iframe{
    width:100% !important; height: 425px !important; 
}
@media screen and (max-width: 1250px) {
.contact_form { width: calc(100% - 40%);}
.contact_info {
    padding:0px 0 0px 40px;
    width:40%;
}
}
@media screen and (max-width: 1000px) {
.contact_form { width: calc(100% - 45%);}
.contact_info {
    width:45%;
}
}
@media screen and (max-width: 900px) {
.contact {
    flex-wrap: wrap;  
}
.contact .title01 { justify-content: center; text-align: center;}
.contact_form { width: 100%; margin: 0 0 0 0;}
.contact_info {
  padding:60px 0 0px 0px;
    width:100%;
}
}
@media screen and (max-width: 768px) {
.contact { padding:60px 0px;}
}

/* -隱私權條款------------------------------------------------------------------------------------------------*/
.privacy {  width:100%; margin: 0px auto 0px auto; padding:70px 0 70px 0; } 
.privacy .txtbox { width:100%; margin: 10px auto 30px auto; padding:0px 0 0px 0; color: #333; } 
@media screen and (max-width: 768px) {
.privacy { padding:60px 0px;}
}


/* -button---------------------------------------------------------------------------------------------------*/
.btn-box{ padding: 0; margin: 60px 0 0px 0; 
display: flex; 
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.btn-style01{
  margin: 0px 0px; 
    padding: 0px 20px 0px 20px;
    min-height: 60px; line-height: 60px;
    min-width: 250px;
    text-align: center;
    text-decoration: none;
    color: #fff; font-weight: 700;
    font-size:var(--font-s03);
    background: #099aab;
    border: 1px solid #2166a9;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration:none !important;

  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-style01 a{
    color: #fff;
}
.btn-style01 span{
    z-index: 2;
}
.btn-style01:hover:before {
    width: 100%; background-color: #2166a9;
}
.btn-style01:before {
    content: "";
    display: block;
    width: 8px;
    height: 100%;
    background-color: #2166a9;
    position: absolute;
    top: auto;
    left: 0px;
    bottom: 0px;
    z-index: 1;
   -webkit-transition: all .75s;
    -o-transition: all .75s;
    -moz-transition: all .75s;
    transition: all .75s
}

.btn-style02{
  margin: 0px 0px; 
    padding: 10px 60px 10px 60px;
    text-align: center;
    text-decoration: none;
    color: #fff; font-weight: 700;
    font-size:var(--font-s03);
    background: #099aab;
    border: 1px solid #2166a9;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration:none !important;

  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-style02 a{
    color: #fff;
}
.btn-style02 span{
    z-index: 2;
}
.btn-style02:hover:before {
    width: 100%; background-color: #2166a9;
}
.btn-style02:before {
    content: "";
    display: block;
    width: 8px;
    height: 100%;
    background-color: #2166a9;
    position: absolute;
    top: auto;
    left: 0px;
    bottom: 0px;
    z-index: 1;
   -webkit-transition: all .75s;
    -o-transition: all .75s;
    -moz-transition: all .75s;
    transition: all .75s
}

.btn-style03{
  margin: 0px 0px; 
    padding: 10px 60px 10px 60px;
    text-align: center;
    text-decoration: none;
    color: #fff; font-weight: 700;
    font-size:var(--font-s03);
    background: #099aab;
    border: 1px solid #2166a9;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration:none !important;

  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-style03 a{
    color: #fff;
}
.btn-style03 span{
    z-index: 2;
}
.btn-style03:hover{
    background-color: #2166a9;
}

.btn-style03.gray{
    background: #b1b1b2;
    border: 1px solid #9a9a9b;
}
.btn-style03.gray:hover{
    background-color: #7a7a7a;
}

/*頁碼*/
div.page {
  font-size: 15px; 
  padding: 0px;
  margin:40px 0px 0px 0px; text-align:center;
  width:100%; height:auto; overflow: hidden;

  display: flex;
    justify-content: center;
    align-items: center;
}
div.page a {
  padding: 0; margin: 5px; color: #888; background: #FFF; text-decoration: none; border-radius: 4px; 
  width: 30px; height: 30px; border: 1px solid #ddd;
  display: flex;
    justify-content: center;
    align-items: center;
}
div.page a:hover {
  color: #fff; background-color: #099aab; border: 1px solid #099aab;
}
div.page a.current {
  color: #fff; background: #099aab; border: 1px solid #099aab;
}
