@charset "utf-8";
/* CSS Document */
body {
  --font-f01: 13px;
  --font-f02: 14px;
  --font-f03: 15px;
  --font-f04: 16px;
  --font-f05: 17px;
  --font-f06: 18px;
  --font-f07: 20px;
  --font-f08: 22px;
  --font-f09: 24px;
  --font-f10: 26px;
  --font-f11: 28px;
  --font-f12: 30px;
  --font-f13: 32px;
  --font-f14: 34px;
  --font-f15: 36px;
  --font-f16: 38px;
  --font-f17: 40px;
  --font-f18: 42px;
  --font-f19: 44px;
  --font-f20: 46px;
  --font-f21: 48px;
  --font-f22: 50px;

  --color-c01: #1b4fd6;
  --color-c02: #20cf8e;
}
@media screen and (max-width: 1024px) {
  body {
  }
}
@media screen and (max-width: 768px) {
  body {
  }
}

.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; min-height: 110px;}
.pageHeader h1{ width: 138px; padding:0 0px 0 0; margin:-10px 0px 0 0; }
.pageHeader h1 img{ width: 100%; }
.pageHeader nav.menubox{ margin: 0px 0px 0px 0;  }

.pageHeader .lang{ margin:0 0px 0 0px; padding: 0 22px 0 22px; 
background: var(--color-c01); border-radius: 30px;
}
.pageHeader .lang .nav-active{ display: flex; justify-content: center; align-items: center; }
.pageHeader .lang .icon:before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../images/lang.png) no-repeat;
    background-size: 100% auto;
    display: block;
}
.pageHeader .lang .txt{ margin:0 0px 0 10px; }
.pageHeader .lang .nav-menu a {
    padding: 0px 0px 0px 0px;
    color: #fff;
    font-size: var(--font-f05);
    line-height: 42px;
}
.pageHeader .lang .nav-menu li li a{
    padding: 0px 30px;
    color: #666;
    font-size: var(--font-f03);
}
@media screen and (max-width: 1450px) {
.pageHeader h1{ width: 128px; }
.pageHeader .box-2{ min-height: 100px;}
.pageHeader .lang .nav-menu a {
    font-size: var(--font-f03);
}
.pageHeader .lang .nav-menu li li a{
    font-size: var(--font-f01);
}
}
@media screen and (max-width: 1300px) {
.pageHeader .box-2{ min-height: 90px;}
.pageHeader .lang{ padding: 5px; border-radius: 100%; }
.pageHeader .lang .txt{ display: none; }
.pageHeader .lang .icon {
    padding: 5px;
}
}
@media screen and (max-width: 1200px) {
.pageHeader .box-2{ width: 100%; padding: 0 80px 0 5%;}
.pageHeader nav.menubox{ display:none; }
.pageHeader .lang{ background: none; border-radius: 0px; border-left:1px solid rgba(0, 0, 0, 0.1); height: 90px; padding: 0 20px;
display: flex;
  justify-content: center;
  align-items: center;
}
.pageHeader .lang .icon:before {
    content: "";
    background: url(../images/lang02.png) no-repeat;
}
}
@media screen and (max-width: 1000px) {
.pageHeader h1{ width: 118px; }
.pageHeader .box-2{ min-height: 80px;}
.pageHeader .lang{ height: 80px; }
}
@media screen and (max-width: 600px) {
.pageHeader .box-2{ padding: 0 60px 0 5%;}
.pageHeader .lang{ padding: 0 10px;}
}

/* mobile menu */
.menu-btn {
  display: none;
  position: absolute;
  width: 80px; margin: 0 0 0 0px; 
  height: 90px;
  transition: 0.5s;
  top: 0px;
  right:0%;
  border-left:1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1200px) {
.menu-btn {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
.menu-btn {
  height: 80px;
}
}
@media screen and (max-width: 600px) {
.menu-btn {
  width: 60px; 
}
}
.menu-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 30px;
  height: 2px;
  background-color: #001871;
  border-radius: 2px;
  transition: 0.3s;
}
.menu-btn span:nth-child(1) {
  top: calc(50% - 8px);
}
.menu-btn span:nth-child(3) {
  top: calc(50% + 8px);
}
.menu-btn.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #001871;
}
.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: #001871;
}

/* menu style */
section.menu {
  display: none;
  position: fixed;
  z-index: 98;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100% - 90px);
  background-color: rgba(233, 238, 242, 0.95);
  transform: translateX(100%);
  opacity: 0;
  transition: 0.5s;
  overflow-y: auto;
}
@media screen and (max-width: 1000px) {
section.menu {
  top: 80px;
  height: calc(100% - 80px);
}
}
section.menu.show {
  opacity: 1;
  transform: translateX(0);
}

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

.scrollbar-inner .lang{ display: flex; justify-content: center; align-items: center; margin:20px 0px 0 0px; padding: 0 0 0 0px; position: relative;
}
.scrollbar-inner .lang:before {
    content: "";
    width: 1px;
    height: 26px;
    background: #888686;
    position: absolute; left: -20px;
}
.scrollbar-inner .lang li{ padding: 0 9px 0 0px; margin:0 0px 0 0; list-style: none; color: #fff; font-size:20px;
display: flex;
  justify-content: center; align-items: center; 
}
.scrollbar-inner .lang li a{ color: rgba(255, 255, 255, 0.7); }
.scrollbar-inner .lang li:hover a{ color: #c8161d;}
.scrollbar-inner .lang li.active a{ color: #fff;}
.scrollbar-inner .lang li:after {
    content: "";
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 0px 0 5px;
}
.scrollbar-inner .lang li:last-child:after { display: none;}

ul.main-list {
  width: 100%;
  color: #000;
  margin: 0; padding: 0;
  list-style: none;
  border-top:1px solid rgba(0, 0, 0, 0.1);
}
ul.main-list > li {
  position: relative;
  cursor: pointer;
  box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  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: 18px;
  color: #000;
  transition: 0.5s;
}
ul.main-list > li > a:hover {
  color: var(--color-c01);
}

ul.sub-list {
  display: none;
  background-color: rgba(138, 178, 214, 0.3);
  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(0,0, 0, 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: #333;
  transition: 0.5s;
}
ul.sub-list > li > a:hover {
  color: var(--color-c01);
}

ul.third-list {
  display: none;
  background-color: #82a9cb;
  margin: 0; padding: 0; list-style: none;
}
ul.third-list > li + li {
  border-top: 1px solid rgba(0,0, 0, 0.1);
  cursor: pointer;
}
ul.third-list > li > a {
  display: block;
  padding: 15px 10px 15px 60px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  transition: 0.5s;
}
ul.third-list > li > a:hover {
  color: var(--color-c01);
}


/* banner */
.Modern-Slider  {
  width: 100%; margin:0px auto; padding:0px 0;
}
.Modern-Slider .slick-list{
  overflow:visible !important;
}
.Modern-Slider .item {
  margin: 0; padding: 0; position:relative;
}

.Modern-Slider .item .img-fill, .Modern-Slider .item .img-fill a{
  width: 100%;
  height: auto; margin: 0; padding: 0;
  display: flex;
    justify-content: center;
  align-items: center;
}

.Modern-Slider .for_PC {
  width: 100%;
  height: auto;
  margin: 0 0 0 0; padding: 0;
  background-size: cover;
  background-position: center; 
}

.Modern-Slider .for_mobile {
  display: none;
}

.Modern-Slider .for_PC img, .Modern-Slider .for_mobile img {
  width: 100%; 
}
/*
.Modern-Slider .item.slick-active .img-fill .for_PC, .Modern-Slider .item.slick-active .img-fill .for_mobile  {
    -webkit-animation-name: zoomOut01;
    animation-name: zoomOut01;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes zoomOut01 {
    0% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -o-transform: scale(1.05);
        -ms-transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        
    }
}
*/ 

.Modern-Slider .slick-dots {
  bottom: 30px;
  display: flex;
  justify-content: center;
}

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

.Modern-Slider .slick-dots li+li {
  margin-left: 15px;
}

.Modern-Slider .slick-dots li button {
  width: 15px;
    height: 7px;
    color: transparent;
    background: #2c4d6e;
    opacity: .4;
    transition: all .3s ease;
    border-radius: 20px;
}
.Modern-Slider .slick-dots li.slick-active button {
  width: 30px;
    height: 7px;
    background: #1b4fd6;
    opacity: 1;
    transition: all .3s ease;
}
.Modern-Slider .slick-dots li button:before {
  font-size: 0;
}
@media screen and (max-width: 900px) {
.Modern-Slider .item .img-fill, .Modern-Slider .item .img-fill a{
  width: 100%;
  height: auto;
}
.Modern-Slider .for_PC {
  display: none;
}
.Modern-Slider .for_mobile {
  display: block; width: 100%; 
}
.Modern-Slider .slick-dots {
  bottom: 5px;
}
.Modern-Slider .slick-dots li button {
    padding: 3px;
}
}

/* page-banner */
.page-banner {
  width: 100%; position: relative;
}
.page-banner .box-1{
  position: absolute; top: 0;
  width: 100%;
  z-index: 3;
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-banner .for_PC{
  background-size: cover;
  position: relative;
  width: 100%;
  height: 400px;
  margin-top: 0;
  padding: 0;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;

  background-attachment: fixed;
}
.page-banner.safety .for_PC{
  height: 600px;
}
.page-banner .for_PC:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .3) -24.77%, transparent);
}
.page-banner .for_mobile{ display: none; }
.page-banner .banner_ttbox {
  width: 100%;
  display: flex;
  justify-content: center; align-items: center;
  flex-wrap: wrap;
  z-index: 2;
}
.page-banner .banner_ttbox .en {
  width: 100%; font-size:80px; margin:0; padding:0; font-weight: 600; color: #fff; text-align: center; z-index: 2;
}
.page-banner .banner_ttbox h2{
  color: #fff;
  letter-spacing: 3px;
  margin: 10px 0 0px 0;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
.page-banner .for_PC{ display: none; }
.page-banner .for_mobile{ display: block; position: relative;}
.page-banner .for_mobile:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .4) -24.77%, transparent);
}
.page-banner .for_mobile img{ width: 100%; }
}

/* 麵包屑 */
.bread-crumbs {
  width: 100%;
  margin: 0px auto  0px auto;
  display: flex;
  justify-content: center; align-items: center;
  z-index: 2;
}

.bread-crumbs li {
  display: inline-block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.bread-crumbs li a {
  color: rgba(255, 255, 255, 0.7);
}

.bread-crumbs li a:hover {
  text-decoration:underline;
}
.bread-crumbs li:after {
    display: inline-block;
    content: '\F285';
    font-size: 11px;
    font-family: bootstrap-icons ;
    margin: 0px 5px 0 5px;
}
.bread-crumbs li:last-child:after {
  display: none;
}

.bread-crumbs.style {
  width: 100%;
  margin: 40px auto  0px auto;
  display: flex;
}
.bread-crumbs.style li {
  color: #666;
}

.bread-crumbs.style li a {
  color: #666;
}

/* SCROLL TO TOP */
.scrollToTop {
    display: none;
    position: fixed;
    right: 2%;
    bottom: 12%;
    border: none;
    background: none;
    z-index: 99;
}
/* top */
.pagetop{ width: 47px; height: 47px; border-radius: 100%; background: #143d5b; 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: 12px;
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: 110px 0px 0px 0px; }
.main_top02{ height:110px; display: block; }
.box-1{ max-width:1200px; width: 90%; margin:0px auto; padding:0px 0;}
.box-2{ width: 90%; margin:0px auto; padding:0px 0;}
.box-3{ max-width:1355px; width: 90%; margin:0px auto; padding:0px 0;}
.box-4{ max-width:1500px; width: 100%; margin:0px auto; padding:0px 0;
display: flex; flex-wrap: wrap;
}
.box-5{ max-width:1000px; width: 90%; margin:0px auto; padding:0px 0;}
.box-6{ max-width:1500px; width: 90%; margin:0px auto; }
.hidden01{ height: auto; overflow: hidden;}
@media screen and (max-width: 1450px) {
.main_top{ padding: 100px 0px 0px 0px; }
.main_top02{ height:100px; }
}
@media screen and (max-width: 1300px) {
.main_top{ padding: 90px 0px 0px 0px; }
.main_top02{ height:90px; }
}
@media screen and (max-width: 1280px) {
.box-4{ width: 90%; }
}
@media screen and (max-width: 1000px) {
.main_top{ padding: 80px 0px 0px 0px; }
.main_top02{ height:80px; }
}

.font-1{ font-size: var(--font-f06); }
@media screen and (max-width: 1000px) {
.font-1{ 
    font-size: var(--font-f04);
}
}

.content { width: 100%; padding:0px 0 0px 0; display: flex;}
.mid_content { width: 100%;  margin: 50px 0 0px 0;}
.left_content{ width: 285px; margin:0px; padding:0px 30px 0px 0px; height:auto; overflow: hidden; }
.left_content h2{ width: 100%; margin:0px; padding:15px 0; font-size: var(--font-f06); color:#003281; 
display: flex; justify-content: flex-start; align-items: center;
}
.left_content h2:before {
    content: "";
    width: 18px;
    height: 21px;
    background: url(../images/date_butterfly.svg) no-repeat;
    display: block;
    background-size: 100% auto;
    margin:5px 6px 0px 0px;
}
.right_content { width:calc(100% - 285px); margin:0px 0 0px 0; padding:10px 0px 0px 40px; float: left; }
@media screen and (max-width: 1100px) {
.left_content{ width: 240px;}
.right_content { width:calc(100% - 240px); padding:0px 0px 0px 30px;}
}
@media screen and (max-width: 900px) {
.left_content{ display:none;}
.right_content { width:100%; padding:0px 0px 0px 0px;}
}

.user_editor{ width:100%; height:auto; overflow: hidden; position: static !important;}
.user_editor img{ max-width:100% !important; height:auto !important;  }
.user_editor .pic-box{ width:100%; border-top: 1px solid #DCDCDC; padding:40px 0 0 0;}
.user_editor video{ max-width:100% !important; height:auto !important;  }
.user_editor iframe{ width:100% !important; height:550px !important;  }
.line-height{ line-height:1.7;}
.text-center{ text-align:center;}
.text-left{ text-align:left !important;}
.text-right{ text-align:right !important;}
@media screen and (max-width: 600px) {
.user_editor iframe{ width:100% !important; height:350px !important;  }
}

.title01 {
  width: 100%; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; line-height: 1.3;
}
.title01 h2 {
  width: 100%; font-size:var(--font-f17); margin:0; padding:0; font-weight: normal; color: #333; text-align: center;
}
.title01.esgbook h2 {
  font-size:var(--font-f18); 
}
.title01 h3 {
  width: 100%; font-size:var(--font-f07); margin:0px 0 0px 0px; padding:0; font-weight: 600; color: #aaa; text-align: center;
}
.title01 h4 {
  width: 100%; font-size:var(--font-f08); margin:0px 0 10px 0px; padding:0; font-weight: normal; color: #333; text-align: center;
  font-family: 'Helvetica';
}

.title02 {
  width: 100%; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; line-height: 1.3;
  position: relative;
  margin:0 0 50px 0;
}
.title02 h2 {
  width: 100%; font-size:var(--font-f17); margin:0 0 10px 0; padding:0; font-weight: 600; color: var(--color-c01); text-align: center;
}
.title02::after {
    content: "";
    display: block;
    content: "";
    width: 1px;
    height: 50px;
    background-color: #bfbfbf;
}

.title03 {
  width: 100%; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; line-height: 1.3;
}
.title03 h2 {
  width: 100%; font-size:var(--font-f17); margin:0; padding:0; font-weight: 800; color: #333; text-align: center;
}

.title04 {
  width: 100%;display: flex; justify-content: flex-start; align-items: center;
}
.title04 h2 {
  position: relative;
  display: block;
  font-size:var(--font-f09); margin:0; padding:0; color: #001871;
}

.title05 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #DCDCDC;
    position: relative;
}
.title05 h2 {
    font-size: var(--font-f12);
    font-weight: normal;
    margin: 0;
    padding: 0;
    width: 100%;
}
.title05 .date {
    color: var(--color-c01);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: -10px 0 10px 0;
    padding: 0;
}
.title05:before {
    content: '';
    position: absolute;
    bottom: -1px;
    display: inline-block;
    width: 120px;
    height: 3px;
    left: 0;
    background-color: var(--color-c01);
}

.title06 {
  width: 100%;display: flex; justify-content: flex-start; align-items: flex-start;
}
.title06 h2 {
  position: relative;
  display: block;
  font-size:var(--font-f12); margin:0; padding:0; color: #000; font-weight: 600;
}

.title07 {
  width: 100%;display: flex; justify-content: flex-start; align-items: center;
}
.title07 h2 {
  position: relative;
  display: block;
  font-size:var(--font-f07); margin:0; padding:0; color: #000;
}

.title08 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0 0px 0;
    position: relative;
}
.title08 h3 {
    font-size: var(--font-f09);
    font-weight: normal;
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
}
.title08 h2 {
    font-size: var(--font-f17);
    font-weight: 600;
    margin: 0;
    padding: 0;
    width: 100%;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.title08.good .title { width: calc(100% - 140px);}
.title08 .date {
    color: var(--color-c01);
    font-size: 16px;
    padding: 3px 10px 3px 10px;
    color: #fff;
    background: var(--color-c01);
    border-radius: 30px;
    margin: 0 0 0px 10px;
}
@media screen and (max-width: 768px) {
.title08.good  h2{ flex-wrap: wrap;}
.title08.good .title { width: 100%;}
.title08.good .date {
    margin: 10px 0 0px 0px;
}
}

.title09 {
  width: 100%; display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; line-height: 1.3;
  position: relative;
  margin:0 0 0px 0;
}
.title09 h2 {
  width: 100%; font-size:var(--font-f09); margin:0px 0 0px 0; padding:0 0 0px 20px; font-weight: 500; color: #333; 
}
.title09:before {
    content: "";
    width: 5px;
    height: 23px;
    position: absolute;
    top: calc(50% - 10px);
    left: 0;
    display: block;
    background-color: var(--color-c01);
}

.title10 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0 20px 0;
}
.title10 h2 {
    font-size:var(--font-f17); color: var(--color-c01);
    font-weight: normal;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    width: 100%;
    text-align: center;
    position: relative;
    font-family: 'Microsoft JhengHei';
}
.title10 h2:before {
    content: "";
    width: 40px;
    height: 2px;
    display: block;
    background-color: var(--color-c01);
    position: absolute;
    bottom: 0;
    left: calc(50% - 20px);
}
.title10 h3 {
    font-size: var(--font-f09);
    font-weight: 500;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 1400px) {
.title01.esgbook h2 {
  font-size:var(--font-f17); 
}
}
@media screen and (max-width: 1000px) {
.title01 h2, .title02 h2 {
  font-size:var(--font-f12); 
}
.title01.esgbook h2 {
  font-size:var(--font-f12); 
}
.title01 h3 {
  font-size:var(--font-f04); 
}
.title01 h4 {
  font-size:var(--font-f07);
}
.title03 h2 {
  font-size:var(--font-f10);
}
.title08 h3 {
    font-size: var(--font-f07);
}
.title08 h2 {
  font-size: var(--font-f12);
}
.title09 h2 {
  font-size:var(--font-f08);
}
.title10 h2 {
    font-size:var(--font-f12);
}
}

.link_txt {
    text-decoration: none;
    background: linear-gradient(#1b4fd6, #1b4fd6) no-repeat 0 100%;
    background-size: 0 1px;
    transition: background-size .5s;
    color: var(--color-c01);
}
.link_txt:hover {
    background-size: 100% 1px;
}

.list01 {
    margin: 0px;
    padding: 0px;
}
.list01 ul{
    margin: 0px; padding: 0px 0px 0px 18px; list-style: none;
}
.list01 ul li{
    margin: 5px 0px 5px 0px; padding: 0px 0px 0px 18px; list-style: none;  position: relative;
}
.list01 ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-c01);
    border-radius: 100%;
    display: block;
    left: 1px;
    top: 14px;
    position: absolute;
}

.list02 {
    margin: 0px;
    padding: 0px;
    border-top: 1px solid #ddd;
}
.list02 ul{
    margin: 0px; padding: 0px 0px 0px 18px; list-style: none;
    counter-reset: my-awesome-counter;
}
.list02 ul li{
    margin: 0px 0px 0px 0px; padding: 18px 0px 18px 22px; list-style: none;  position: relative;
    counter-increment: my-awesome-counter;
    border-bottom: 1px solid #ddd;
}
.list02 ul li:before {
    content: counter(my-awesome-counter) ". ";
    position: absolute;
    left: 0px;
}

.bg-style01 { background:#e9eef2;}
.bg-style02 { background:#89b2d6;}
.bg-style03{ background: url(../images/news_title_bg.png) no-repeat #e9eef2 right; }
.bg-style04 {
background: linear-gradient(to bottom, #e9eef2 0%,#ffffff 55%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.bg-style05 { background:#f5f7f8;}

.space-style01{ padding:100px 0;}
.space-style02{ padding:120px 0;}
.space-style03{ padding:120px 0 0px 0;}
.space-style04{ padding:70px 0;}
@media screen and (max-width: 1000px) {
.space-style01{ padding:60px 0;}
.space-style02{ padding:60px 0;}
.space-style03{ padding:60px 0 0px 0;}
.space-style04{ padding:60px 0;}
}

.listGrid-responsive {
    overflow-x: auto;
    margin:0px 0px 0px 0px;
}
.table01{
  border-top: 1px solid #cbd5e1; font-size: var(--font-f06); line-height: 1.5;
}
.table01 td {
    text-align:center;
}
.table01 thead { padding: 20px 0px; }
.table01 thead td { font-weight: 700; padding: 10px 15px; background: #dde9f7; border-bottom: 1px solid #cbd5e1; border-right: 1px solid #cbd5e1; font-weight: 600;}
.table01 thead td:first-child{ border-left:1px solid #cbd5e1; }
.table01 thead td:last-child{ border-right:1px solid #cbd5e1; }
.table01 tbody  {
    border-left:1px solid #cbd5e1;
}
.table01 tbody tr {
    background:#FFF;
}
.table01 tbody td { font-weight: normal; color: #666; padding: 10px 15px; border-right:1px solid #cbd5e1; border-bottom: 1px solid #cbd5e1; font-size: var(--font-f04);}
.table01 tbody td:first-child{ border-left:1px solid #cbd5e1; }
.table01 tbody td:last-child{ border-right:1px solid #cbd5e1; }

.table01 tbody tr td:nth-child(even) {
    background:#e9eef2;
}

.table02{
  border-top: 1px solid #cbd5e1; font-size: var(--font-f06); line-height: 1.5;
}
.table02 td {
    text-align:center;
}
.table02 thead { padding: 20px 0px; }
.table02 thead td { font-weight: 700; padding: 10px 15px; background: #dde9f7; border-bottom: 1px solid #cbd5e1; border-right: 1px solid #cbd5e1; font-weight: 600;}
.table02 thead td:first-child{ border-left:1px solid #cbd5e1; }
.table02 thead td:last-child{ border-right:1px solid #cbd5e1; }
.table02 tbody  {
    border-left:1px solid #cbd5e1;
}
.table02 tbody tr {
    background:#FFF;
}
.table02 tbody td { font-weight: normal; color: #666; padding: 10px 15px; border-right:1px solid #cbd5e1; border-bottom: 1px solid #cbd5e1; font-size: var(--font-f04);}
.table02 tbody td:first-child{ border-left:1px solid #cbd5e1; }
.table02 tbody td:last-child{ border-right:1px solid #cbd5e1; }

.table02 tbody tr:nth-child(even) {
    background:#e9eef2;
}

.table03{
  border-top: 1px solid #cbd5e1; font-size: var(--font-f06); line-height: 1.5;
}
.table03 td {
    text-align:center;
}
.table03 thead { padding: 20px 0px; }
.table03 thead td { padding: 10px 15px; background: #dde9f7; border-bottom: 1px solid #cbd5e1; border-right: 1px solid #cbd5e1; font-weight: 600;}
.table03 thead td:first-child{ border-left:1px solid #cbd5e1; }
.table03 thead td:last-child{ border-right:1px solid #cbd5e1; }
.table03 tbody  {
    border-left:1px solid #cbd5e1;
}
.table03 tbody tr {
    background:#FFF;
}
.table03 tbody td { font-weight: normal; color: #666; padding: 10px 15px; border-right:1px solid #cbd5e1; border-bottom: 1px solid #cbd5e1; font-size: var(--font-f04);}
.table03 tbody td:first-child{ border-left:1px solid #cbd5e1; }
.table03 tbody td:last-child{ border-right:1px solid #cbd5e1; }
.table03 tbody tr:nth-child(even) {
    background:#e9eef2;
}

.table04{
  border-top: 1px solid #cbd5e1; line-height: 1.5;
}
.table04 td {
    text-align:center;
}
.table04 thead { padding: 10px 0px; }
.table04 thead td { padding: 10px 5px; background: #dde9f7; border-bottom: 1px solid #cbd5e1; border-right: 1px solid #cbd5e1; }
.table04 thead td:first-child{ border-left:1px solid #cbd5e1; }
.table04 thead td:last-child{ border-right:1px solid #cbd5e1; }
.table04 tbody  {
    border-left:1px solid #cbd5e1;
}
.table04 tbody tr {
    background:#FFF;
}
.table04 tbody td { font-weight: normal; color: #666; padding: 10px 15px; border-right:1px solid #cbd5e1; border-bottom: 1px solid #cbd5e1; font-size: var(--font-f04);}
.table04 tbody td:first-child{ border-left:1px solid #cbd5e1; }
.table04 tbody td:last-child{ border-right:1px solid #cbd5e1; }
.table04 tbody tr:nth-child(even) {
    background:#e9eef2;
}
.table04 .diagonal {
  position: relative;
}
.table04 .line {
  position: absolute;
  height: 40px; 
  top: 20px;
  bottom: 0;
  margin: auto;
  left: -60px;
  width: 180px;
  border-top: 1px solid #cbd5e1;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg); 
}
.table04 .line02 {
  position: absolute;
  height: 40px; 
  top: -20px;
  bottom: 0;
  margin: auto;
  left: -105px;
  width: 215px;
  border-top: 1px solid #cbd5e1;
  -webkit-transform: rotate(34deg);
  -ms-transform: rotate(34deg);
  transform: rotate(34deg); 
}

.table05 td {
}
.table05 thead { padding: 20px 0px; }
.table05 thead td { padding: 10px 15px; background: #dde9f7; border-bottom: 1px solid #cbd5e1; border-top: 1px solid #cbd5e1; border-right: 1px solid #cbd5e1; }
.table05 thead td:first-child{ border-left:1px solid #cbd5e1; }
.table05 thead td:last-child{ border-right:1px solid #cbd5e1; }
.table05 tbody  {
    border-left:1px solid #cbd5e1;
}
.table05 tbody tr {
    background:#FFF;
}
.table05 tbody td { font-weight: normal; color: #666; padding: 10px 15px; border-right:1px solid #cbd5e1; border-bottom: 1px solid #cbd5e1; font-size: var(--font-f04);}
.table05 tbody td:first-child{ border-left:1px solid #cbd5e1; }
.table05 tbody td:last-child{ border-right:1px solid #cbd5e1; }
.table05 tbody tr:nth-child(even) {
    background:#e9eef2;
}

.pageInNavWrap {
    padding: 0px;
    margin: 0px 0 0px 0;
}
.pageInNavWrap ul{
    margin: 0; padding: 0; list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.pageInNavWrap ul li {
  color: #888; 
    margin: 0 30px 0 0;
    padding: 0 0 0px 0;
}
.pageInNavWrap ul li a{
  color: #888; font-size: var(--font-f06); font-weight: 600;
  padding: 0 0 10px 0;

  background: linear-gradient(#1b4fd6, #1b4fd6) no-repeat 0 100%;
    background-size: 0 3px;
    transition: background-size .5s;
}
.pageInNavWrap ul li:hover a, .pageInNavWrap ul li a:focus, .pageInNavWrap ul li a:active{
    color: var(--color-c01);
    background-size: 100% 3px;
}

.album {  width:100%; margin: 20px auto 20px auto; padding:0px 0 0px 0; }
.album ul{ padding: 0; margin: 0px 0 0 0; list-style: none;
column-count: 3;
  column-gap: 20px;
 }
.album li{ margin:0px 0px 20px 0px; padding:0; width:100%; list-style:none;}
.album li .pic{ width: 100%; height: auto; overflow: hidden; }
.album li .pic img{ 
max-width: 100%;
  height: auto;
}
@media screen and (max-width: 800px) {
.album ul{ column-count: 2; column-gap: 10px;}
.album li{ margin:0px 0px 10px 0px; }
}

.album02 {  width:100%; margin: 20px auto 20px auto; padding:0px 0 0px 0; }
.album02 ul{ padding: 0; margin: 0px 0 0 0; list-style: none; 
display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
}
.album02 ul:after {
    content: "";
    width:calc(100% / 3 - 15px);
}
.album02 li{ margin:0px 0px 20px 0px; padding:0; width: calc(100% / 3 - 15px); list-style:none;}
.album02 li .pic{ width: 100%; height: auto; overflow: hidden; }
.album02 li .pic img{ 
max-width: 100%;
  height: auto;
}
@media screen and (max-width: 800px) {
.album02 ul:after {
    content: "";
    width:calc(100% / 2 - 5px);
}
.album02 li{ width: calc(100% / 2 - 5px); margin:0px 0px 10px 0px; }
}

/* 首頁 */
/* 最新消息 */
.ind_news { width:100%;}
.ind_news ul{ margin:0px 0 0px 0px; padding: 0px 0px 0px 0px; width:100%; list-style:none;}
.ind_news li{ margin:0px 0px 0px 0px; padding:60px 0px 60px 0px; width:100%; list-style:none; transition: all 0.6s;
  border-bottom: 1px solid #c2ceda; }
.ind_news li:hover:before{
    width: 100%;
    left: 0;
    right: auto;
}
.ind_news li:before {
content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-c02);
  position: absolute;
  right: 0;
  bottom: -1px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.ind_news li a{ display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: nowrap; }

.ind_news li .infobox {
    width: calc(100% - 140px);
    margin:0px 0px 0 0px;
    padding: 5px 0 5px 0px;
    display: flex;
  align-items: center;
}
.ind_news li .infobox .text{
    width: calc(100% - 59px); padding: 0px 60px 0px 0;
}
.ind_news li .date { 
    font-size: var(--font-f07);
    color: var(--color-c01);
    font-family: 'Helvetica';
    display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  width: 140px;
}
.ind_news li .date div{ 
    width: 100%;
}
.ind_news li .infobox .arrow{
    width: 59px; height: 59px; background: #cad6e4; border-radius: 100%; 
 display: flex;
  justify-content: center;
  align-items: center; transition: all 0.6s;
}
.ind_news li:hover .infobox .arrow{
    background: var(--color-c02); transform: translate(10px, 0px);
}
.ind_news li .infobox .arrow:before{ content: ""; display: block; background: url(../images/right-arrow-white.png) no-repeat center center; 
 width: 15px; height: 12px; background-size: 100% auto;}
.ind_news li .infobox .text h2 {
    width: 100%;
    font-size: var(--font-f10);
    color: #444;
    font-weight: 500;
    padding: 0; margin: 0 0 12px 0;
    line-height: 1.5;
}
.ind_news li .infobox .text .info {
    width: 100%;
    font-size: var(--font-f06);
    color: #666;
    font-weight: normal;
    padding: 0; margin: 0;
    line-height: 1.8;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media screen and (max-width: 1000px) {
.ind_news li .infobox .text{
    width: calc(100% - 45px); padding: 0px 30px 0px 0;
}
.ind_news li .infobox .text .info {
    font-size: var(--font-f04);
}
.ind_news li .infobox .text h2 {
    font-size: var(--font-f08);
}
.ind_news li .infobox .arrow{
    width: 45px; height: 45px;
}
}

@media screen and (max-width: 800px) {
.ind_news li .date { 
  width: 100%;
  flex-wrap: nowrap;
  text-align: left;
  justify-content: flex-start;
  font-size: var(--font-f06);
}
.ind_news li .date div{ 
    width: auto;
}
.ind_news li .date div:nth-child(2):before { 
    content: ".";
}
.ind_news li .pic {
    width: 100%;
    text-align: center;
    margin: 0px 0px 0px 0;
}
.ind_news li .pic img {
  width: 80%;
}
.ind_news li .pic .fly{ right: 3%; top: -30px;
}
.ind_news li a{ flex-wrap: wrap; }
.ind_news li .infobox {
    width:100%; 
    margin: 20px 0px 0px 0;
    padding: 0px 0 0px 0px;
}
.ind_news li .infobox .text{
    width:100%; padding: 0px 0px 0px 0;
}
.ind_news li .infobox .arrow{
    display:none;
}
}

/* 關於安基 */
.ind_about { width:100%; 
display: flex; 
    justify-content: space-between;
    align-items: center;
}
.ind_about .txt{ width:40%; padding: 0 5% 0 0; 
display: flex; 
    justify-content: flex-start; flex-wrap: wrap;
}
.ind_about.about01 .txt{ width:47%;}
.ind_about .txt p{ width:100%; 
    color: #666;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-height: 1.7;
}
.ind_about.about01 .txt .info{ width:100%;
    color: #666;
    line-height: 1.7;
}
.ind_about .txt .title01 {
  justify-content: flex-start; margin: 0 0 30px 0;
}
.ind_about .txt .title01 h2 {
  text-align: left;
}
.ind_about .txt .title01 h3 {
  text-align: left;
}
.ind_about .pic{ width:60%; }
.ind_about.about01 .pic{ width:53%;}
.ind_about .pic img{ width:100%; border-radius: 20px;}

@media screen and (max-width: 900px) {
.ind_about { flex-wrap: wrap;}
.ind_about .txt, .ind_about.about01 .txt{ width:100%; padding: 0 0 50px 0; }
.ind_about .pic, .ind_about.about01 .pic{ width:100%; }
}

/* 研發產品 */
.ind_rd_tt { width:100%; 
display: flex; 
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.ind_rd_tt .title01{
  max-width:1200px; width: 90%; display: flex; justify-content: flex-start; 
}
.ind_rd_tt .title01 h2 {
  text-align: left; z-index:3;
}

.ind_rd { width:100%; 
display: flex; 
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0 60px 0;
}
.ind_rd .pic{ width:auto; margin: 0px 0 0px 0; z-index:1; position:absolute;}
.ind_rd .pic img{ }
.ind_rd .txtbox{ width:960px; height: 550px; display:block; z-index:3; position: relative; }
.ind_rd .txtbox li{ padding: 0; margin: 0px 0 0px 0; list-style: none; display: flex; justify-content: flex-start; align-items: center; flex-wrap: nowrap; cursor: pointer;}
.ind_rd .txtbox li a{ display: flex; justify-content: flex-start; align-items: center; }
.ind_rd .txtbox li.style01 .name{ order: 2; margin: 0px 0 0px 20px;}
.ind_rd .txtbox li.style01 .infobox::before {
    left: auto;
    right: -12px;
    border-width: 10px 0px 10px 12px;
    border-color: transparent transparent transparent rgba(255,255,255,0.8);
}
.ind_rd .txtbox li.location01 { left: 635px; top: 145px;  z-index:3; position:absolute;}
.ind_rd .txtbox li.location02 { left: 754px; top: 353px; z-index:3; position:absolute;}
.ind_rd .txtbox li.location03 { left: -210px; top: 178px; z-index:3; position:absolute;}
.ind_rd .txtbox li .name{ border-radius: 100%; width: 121px; height : 121px; font-family: 'Helvetica'; font-weight: 600; font-size: var(--font-f08); color: #fff;
display: flex;  justify-content: center; align-items: center; margin: 0px 20px 0px 0;
  background: url(../images/rd_circle.png) no-repeat;
  background-size: 100% auto;
}
.ind_rd .txtbox li .name a{ color: #fff; margin: 0px; padding: 0px;}
.ind_rd .txtbox li .infobox{ border-radius: 20px; width: 355px; height : 130px; 
display: flex;  justify-content: flex-start; align-items: center; 
  background: rgba(255,255,255,0.8); position: relative; padding: 20px 30px; opacity: 0; transition: .5s ease;
}
.ind_rd .txtbox li:hover .infobox{ opacity: 1;}
.ind_rd .txtbox li .infobox p{ width: 100%;
    font-size: var(--font-f04); color: #444; 
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0px; padding: 0px;
}
.ind_rd .txtbox li .infobox p a{ color: #444; }
.ind_rd .txtbox li .infobox::before {
    content: " ";
    height: 0;
    position: absolute;
    top: calc(50% - 10px);
    left: -12px;
    width: 0;
    z-index: 1;
    border: medium solid white;
    border-width: 10px 12px 10px 0;
    border-color: transparent rgba(255,255,255,0.8) transparent transparent;
}
@media screen and (max-width: 1500px) {
.ind_rd { padding: 0 0 0px 0;}
.ind_rd .pic img{ height:550px;}
.ind_rd .txtbox{ width:800px; height: 550px; }
.ind_rd .txtbox li .infobox{ width: 330px; height : 110px; padding: 18px 18px;}
.ind_rd .txtbox li .name{ width: 105px; height : 105px; font-size: var(--font-f07);}

.ind_rd .txtbox li.location01 { left: 525px; top: 165px; }
.ind_rd .txtbox li.location02 { left: 622px; top: 340px; }
.ind_rd .txtbox li.location03 { top: 192px; }
}
@media screen and (max-width: 1280px) {
.ind_rd { 
    justify-content: space-between; padding: 0 0 5px 0;
}
.ind_rd .pic{ width:60%; margin: -50px 0 -5px -40%; order: 1; position:relative;}
.ind_rd .txtbox{ width:40%; height: auto; order: 2;}
.ind_rd .txtbox li{ margin: 15px 0 15px 0; }
.ind_rd .txtbox li.location01 { left: auto; top: auto; position:relative; }
.ind_rd .txtbox li.location02 { left: auto; top: auto; position:relative; }
.ind_rd .txtbox li.location03 { left: auto; top: auto; position:relative;}

.ind_rd .txtbox li .infobox{ opacity: 1;}
.ind_rd .txtbox li.style01 .name{ order: 1; margin: 0px 20px 0px 0;}
.ind_rd .txtbox li.style01 .infobox{ order: 2; }
.ind_rd .txtbox li.style01 .infobox::before {
    left: -12px;
    right: auto;
    border-width: 10px 12px 10px 0;
    border-color: transparent rgba(255,255,255,0.8) transparent transparent;
}
}
@media screen and (max-width: 1180px) {
.ind_rd .pic{ width:50%; margin: -50px 0 -5px -50%;}
.ind_rd .txtbox{ width:50%; }
}
@media screen and (max-width: 900px) {
.ind_rd .pic{ margin: -50px 0 -5px -90%; }
.ind_rd .txtbox{ width:60%;}
}
@media screen and (max-width: 750px) {
.ind_rd .txtbox li .name{ width: 100px; height : 100px; font-size: var(--font-f06);}
.ind_rd .txtbox li .infobox{ width: calc(100% - 100px); height : auto; background: rgba(255,255,255,0.8); opacity: 1;}
.ind_rd .txtbox li .infobox::before, .ind_rd .txtbox li.style01 .infobox::before{
    border-color: transparent rgba(255,255,255,0.8) transparent transparent;
}
.ind_rd .txtbox{ width:100%; }
}

/* 首頁-cookie */
.cookie {
  position: fixed;
  bottom: 0;
  background: rgba(59, 77, 119, 0.9);
  width: 100%;
  padding: 40px 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;
}
@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;
}
}

/* loading */
.loading_box {
    position: fixed !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #eaeff6;
    z-index: 99999 !important;
    animation-name: loader;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    overflow: hidden;
}
.loading_box .bg{
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/load_bg.jpg) no-repeat center center;
    background-size: 100% auto;
    animation: 1s fadeIn;
}
@keyframes fadeIn {
  50% {
    transform: translateY(0%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.loading_box .loader {
    box-sizing: border-box;
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
@keyframes loader {
    0% {}
    92% {
        opacity: 1
    }
    100% {
        visibility: hidden;
        opacity: 0
    }
}

.logo_box {
  width: 242px;
  height: 131px;
  position: relative;
  display: flex; justify-content: center; align-items: center;
}

.logo_box #st01 {
  position: absolute;
  left: 0; top: 0;

  animation: 2.5s fadeInUp;
}
@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.butter {
   position: absolute;
   top:0px;
   right: 0px;
   width: 342px;
   height: 131px;

   animation: fly 3s infinite;
}

@keyframes fly {
  0% {
    top: -20px;
    right: -60px;
  }
  100% {
    top: 0px;
    right: 0px;
  }
}

.butter .fly_body {
   position: absolute;
   top:-20px;
   right: -20px;
   width: 342px;
   height: 131px;
}

 .butter .fly {
   top:-20px;
   right: -20px;
   width: 342px;
   height: 131px;
   position: absolute;
}
 .butter .fly1 {
   top: 0px;
   right: 0px;
   z-index: 60;
   animation: butterfly1 0.8s infinite;
}
 .butter .fly2 {
   top: 0px;
   right: -50px;
   z-index: 40;
   animation-name: butterfly2;
   animation-duration: 1s;
   animation-iteration-count: infinite;
   width: 300px;
   height: 115px;
}

@keyframes butterfly1 {
  from {
     transform: translateY(0px) rotateX(0deg) translateX(0px) rotateZ(0deg) translateX(0px) translateY(0px);
  }
  to {
     transform: translateY(0px) rotateX(40deg) translateX(0px) rotateZ(0deg) translateX(0px) translateY(0px);
  }
}
 @keyframes butterfly2 {
  from {
     transform: translateY(0px) rotateX(0deg) translateX(0px) rotateZ(0deg) translateX(0px) translateY(0px);
  }
  to {
     transform: translateY(0px) rotateX(30deg) translateX(31px) rotateZ(15deg) translateX(-35px) translateY(-25px);
  }
}

/* -新藥研發--------------------------------------------------------------------------------------------------*/
.rd001 { width:100%; margin: 0px auto 0px auto; padding:0px 0 0px 0; }
.rd001 .bread-crumbs {
    justify-content: flex-start; padding: 30px 0 30px 0;
}
.rd001 .bread-crumbs li{
    color: #666;
}
.rd001 .bread-crumbs a {
    color: #666;
}
.rd001 .box-6{ padding:100px 0 120px 0; }
.rd001 .psbox{ width:100%; margin: 50px 0px 0px 0; }
.rd001 .psbox ul{ width:100%; margin: 0px; padding:0px 0 0px 0; list-style:none;
display: flex;
    justify-content: flex-end;
    align-items: center;
}
.rd001 .psbox ul li{ width:auto; margin: 0px 0px 0px 50px; padding:0px 0 0px 0; list-style:none;
display: flex;
    justify-content: flex-start;
    align-items: center;
}
.rd001 .psbox ul li .bar{ height:35px; width:40px; position:relative; display:block; background:#5eb2fc; z-index: 1;}
.rd001 .psbox ul li .bar.style02{ background:#cee7fe; }
.rd001 .psbox ul li .bar:after {
    content: "";
    position: absolute;
    right: -20px;
    top: -1px;
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 40% 50%, 0% 0%);
    width:35px;
    height: 37px;
    background: #fff;
}
.rd001 .psbox ul li p {
    margin: 0 0 0 10px; z-index: 3; font-weight: 600; font-family: 'Helvetica';
}
@media screen and (max-width: 1000px) {
.rd001 .box-6{ padding:40px 0 60px 0; }

.rd001 .psbox ul li p {
    font-size: var(--font-f01);
}
}
@media screen and (max-width: 800px) {
.rd001 .psbox ul li .bar{ height:18px; width:30px; }
.rd001 .psbox ul li .bar:after {
    right: -10px;
    width:25px;
    height: 20px;
}

.rd001 .psbox {
    margin: 30px 0px 0px 0;
}
.rd001 .psbox ul{ justify-content: flex-start; flex-wrap: wrap;}
.rd001 .psbox ul li{ width:100%; margin: 10px 0px 0px 0px; }
}

.rd002 { width:100%; margin: 0px auto 0px auto; padding:0px 0 0px 0; }
.rd002 .bread-crumbs {
    justify-content: flex-start; padding: 30px 0 30px 0;
}
.rd002 .bread-crumbs li{
    color: #666;
}
.rd002 .bread-crumbs a {
    color: #666;
}
.rd002 .title{
    margin: 0px auto 20px auto; padding:0px 0 0px 0; 
    display: flex;
  flex-wrap: wrap;
}
.rd002 .title h2{
    font-size: 70px; color: var(--color-c01); font-weight: 500; line-height: 1.5;
    width: 100%;
    display: flex;
  justify-content: flex-start;
  align-items: center;
}
.rd002 .title h2 img{
    max-width: 100%;
}
.rd002 .pagebanner {
  position: relative;
}
.rd002 .pagebanner .box{ width:100%; display: flex; justify-content: center; align-items: center; height: 650px; position: absolute; top: 0; padding: 0; margin:0; }
.rd002 .pagebanner .box-6{ max-width:1500px; width: 90%; margin:0px auto; }
.rd002 .pagebanner .for_PC{
  width: 100%; overflow: hidden;
}
.rd002 .pagebanner .for_PC img{
  width: 100%;
  height: 650px;
  margin-top: 0;
  padding: 0;
  background: center center no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;

  background-attachment: fixed;
}
.rd002 .pagebanner .for_mobile {
  display: none;
}
@media screen and (max-width: 1680px) {
.rd002 .pagebanner .for_PC img{
  height: 600px;
}
.rd002 .pagebanner .box{ height: 600px; }
}
@media screen and (max-width: 1366px) {
.rd002 .title h2{
    font-size: 60px; 
}
.rd002 .pagebanner .for_PC img{
  height: 550px;
}
.rd002 .pagebanner .box{ height: 550px; }
}
@media screen and (max-width: 1280px) {
.rd002 .title h2{
    font-size: 50px; 
}
.rd002 .pagebanner .for_PC img{
  height: 500px;
}
.rd002 .pagebanner .box{ height: 500px; }
}
@media screen and (max-width: 1024px) {
.rd002 .pagebanner .for_PC img{
  height: auto;
}
.rd002 .pagebanner .box{ height: auto; position: relative; background: #f5f7f8;}
.rd002 .title {
    margin: 0px auto 30px auto;
}
}
@media screen and (max-width: 800px) {
.rd002 .title h2{
    font-size: 30px; 
}
}

.rd003 {
    width: 100%; padding: 0px 0px 0px 0px; margin: 0px 0px 50px 0px; 
    box-shadow: 10px 10px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 5%;
    border-radius: 20px;
}
.rd003 .title01 h2{
    text-align: left;
}
.rd003 .txtbox {
    width: 100%;
    margin: 50px 0 0px 0px;
    padding: 0px 0;
    color: #666;
}

.rd004 {
    width: 100%; padding: 0px 0px 0px 0px; margin: 0px 0px 50px 0px;
    padding: 5%;
}
.rd004 .title01 h2{
    text-align: left;
}
.rd004 .txtbox {
    width: 100%;
    margin: 50px 0 0px 0px;
    padding: 0px 0;
    color: #666;
}

.rd005 { width:100%; margin: 0px auto 0px auto; padding:0px 0 0px 0; }
.rd005 ul{ margin:0px 0 0px 0px; padding: 0px; width:100%; list-style:none;
display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
.rd005 ul:after {
    content: "";
    width:calc(100% / 3 - 30px);
}
.rd005 li{ margin:0px 0px 50px 0px; padding:30px; width:calc(100% / 3 - 30px); list-style:none; transition: all 0.6s; 
background: #f5f7f8; border-radius: 10px; 
display: flex;
    justify-content: flex-start; flex-wrap: nowrap; 
 }
.rd005 li .icon{ width:40px; display: flex;
    justify-content: flex-start; }
.rd005 ul > li .info{ width:calc(100% - 40px); padding:5px 0px 0px 0px; color:#666;}
@media screen and (max-width: 1100px) {
.rd005 ul:after {
    content: "";
    width:calc(100% / 2 - 15px);
}
.rd005 li{ margin:0px 0px 30px 0px; width:calc(100% / 2 - 15px); }
}
@media screen and (max-width: 699px) {
.rd005 ul:after {
    content: "";
    width:100%;
}
.rd005 li{ margin:0px 0px 30px 0px; width:100%; }
}

.distanceBox {
    width: 100%;
    margin: 40px 0px 0px 0px; 
    font-family: 'Helvetica';
}

.distanceBox .topTitleBox {
    width: 100%;
}

.distanceBox .topTitleBox ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0; padding: 0;
    font-size: var(--font-f06);
    font-weight: 600;
}

.distanceBox .topTitleBox ul>li {
    width: calc((80% - 70px) / 7 );
    flex-shrink: 0;
    padding: 10px 20px;
    text-align: center;
    border-radius: 10px;
    background: var(--color-c01);
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 0px;
}
.distanceBox .topTitleBox ul>li.style01 {
    background: #fff;
    border: 5px solid #6600ff;
    color: #6600ff;
}
.distanceBox .topTitleBox ul>li.style02 {
    background: #fff;
    border: 5px solid #cc00ff;
    color: #cc00ff;
}
.distanceBox .topTitleBox ul>li.style03 {
    background: #fff;
    border: 5px solid #ff3c9d;
    color: #ff3c9d;
}
.distanceBox .topTitleBox ul>li:nth-child(3) {
    width: 20%;
}

.distanceBox .distanceList .distanceItem {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
    margin: 10px 0 0 0; padding: 0;
    font-size: var(--font-f06);
}
.distanceBox .distanceList .distanceItem >li {
    width: calc((80% - 70px) / 7 );
    flex-shrink: 0;
    padding: 15px 20px;
    text-align: center;
    border-radius: 10px;
    background: #f5f7f8;
    color: #333;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 0px;
}
.distanceBox .distanceList .distanceItem >li:nth-child(3) {
    width: 20%; font-size: 16px;
}
.distanceBox .distanceList .distanceItem >li:last-child {
    width: calc((80% - 10px) / 7 * 5 );
    background: none;
    padding: 0px;
    border-radius: 0px;
}
.distanceBox .progress{
  width: 100%;
  height: 70px;
  background: #fff;
  z-index: 5;
  border-radius: 0px;
}
.distanceBox .progress-bar {
    background: #5eb2fc;
    border-radius: 0;
    position: relative;

    width: 0;
   animation: progress 1.5s ease-in-out forwards;
}
.distanceBox .progress-bar.color01 {
    background: #cee7fe;
}
.distanceBox .progress-bar:after {
    content: "";
    position: absolute;
    right: -20px;
    top: -1px;
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 60% 50%, 0% 0%);
    width:50px;
    height: 72px;
    background: #cee7fe;
}
.distanceBox .progress-bar.color01:after {
    background: #fff;
}
.distanceBox .progressbar-active{
  animation-name: progress;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
 @keyframes progress {
   from {
     width: 0;
  }
   to {
     width: 100%;
  }
}
@media screen and (max-width: 1180px) {
.distanceBox .topTitleBox ul {
    font-size: var(--font-f04);
}
.distanceBox .distanceList .distanceItem {
    font-size: var(--font-f04);
}
}
@media screen and (max-width: 1000px) {
.distanceBox .topTitleBox ul>li {
    width: calc(100% / 6 ); padding: 10px 10px; margin: 0 5px 0 0px;
}
.distanceBox .topTitleBox ul>li:nth-child(1), .distanceBox .topTitleBox ul>li:nth-child(3) {
    display: none;
}
.distanceBox .distanceList .distanceItem >li {
    width: calc(100% / 6 ); padding: 10px 10px; margin: 0 5px 0 0px;
}
.distanceBox .distanceList .distanceItem >li:nth-child(1), .distanceBox .distanceList .distanceItem >li:nth-child(3) {
    display: none;
}
.distanceBox .distanceList .distanceItem >li:last-child {
    width: calc(100% - 100% / 6 + 20px );
}

.distanceBox .progress{
  height: 40px;
}
.distanceBox .progress-bar:after {
    content: "";
    right: -10px;
    width:40px;
    height: 42px;
}
}
@media screen and (max-width: 800px) {
.distanceBox .topTitleBox ul {
    font-size: var(--font-f01);
}
.distanceBox .distanceList .distanceItem {
    font-size: var(--font-f01);
}
.distanceBox .topTitleBox ul>li.style01 {
    border: 1px solid #6600ff;
}
.distanceBox .topTitleBox ul>li.style02 {
    border: 1px solid #cc00ff;
}
.distanceBox .topTitleBox ul>li.style03 {
    border: 1px solid #ff3c9d;
}

.distanceBox .progress{
  height: 27px;
}
.distanceBox .progress-bar:after {
    content: "";
    right: -10px;
    width:27px;
    height: 29px;
}
}
@media screen and (max-width: 400px) {
.distanceBox .topTitleBox ul>li {
    margin: 0 3px 0 0px; border-radius: 5px;
}
.distanceBox .distanceList .distanceItem >li {
    width: calc(100% / 6 ); margin: 0 3px 0 0px; border-radius: 5px;
}
.distanceBox .distanceList .distanceItem >li:last-child {
    width: calc(100% - 100% / 6 + 15px );
}
.distanceBox .topTitleBox ul {
    font-size: 11px;
}
.distanceBox .distanceList .distanceItem {
    font-size: 11px;
}
}

/* -永續發展--------------------------------------------------------------------------------------------------*/
.esg-banner {
  background-size: cover;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 0 0 100px 0;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;

  background-attachment: fixed;
}
.esg-banner .box{
  width: 70%;
  padding: 6% 0;
}
.esg-banner .box .banner_ttbox{
  width: 100%; 
}
.esg-banner .box .banner_ttbox .title01 h4, .esg-banner .box .banner_ttbox .title01 h2{
  z-index: 999; 
}
@media screen and (max-width: 1366px) {
.esg-banner .box{
  width: 90%;
}
}
@media screen and (max-width: 1000px) {
.esg-banner .box{
  width: 90%;
}
}

.esg-banner02 {
  background-size: cover;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 0 0 100px 0;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;

  background-attachment: fixed;
}
.esg-banner02 {
  padding: 110px 0 0px 0;
}
.esg-banner02 .box{
  width: 80%;
  padding: 6% 0;
}
.esg-banner02 .box .banner_ttbox{
  width: 100%; 
}
.esg-banner02 .box .banner_ttbox .title01 h4, .esg-banner02 .box .banner_ttbox .title01 h2{
  z-index: 999; 
}
@media screen and (max-width: 1366px) {
.esg-banner02 .box{
  width: 90%;
}
}
@media screen and (max-width: 1000px) {
.esg-banner02 .box{
  width: 90%;
}
}

#cursor-image {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  background: no-repeat center center;
  background-size: 100% auto;
  position: fixed;
  right: 0px; top: 0px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.hover-area {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.esg02 {
  width: 100%;
  margin: 40px 0 0 0;
  padding: 0;
  z-index: 5;
  position: relative;
}
.esg02 ul{
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.esg02 ul li{
  width:calc(100% / 2 - 50px);
  margin: 40px 0 40px 0;
  padding: 0;
  list-style: none;

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.esg02 .all{
  width: 280px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  z-index: 5;
}
.esg02 .hover-img {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0;
  right: 50px;
  top: -150px;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.esg02 ul li:hover .hover-img{
  opacity: 1;
}
.esg02 .hover-img img {
  width: 100%; border-radius: 100%;
}
.esg02 .icon{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 0 10px 0;
}
.esg02 .icon img{
  width: 50px;
}
.esg02 .en{
  width: 100%; text-align: center; font-family: 'Helvetica'; font-size: var(--font-f07); color: #666;
}
.esg02 .en a{
  color: #666;
}
.esg02 .name{
  width: 100%; text-align: center; font-size: var(--font-f11); font-weight: normal; color: #222;
}
.esg02 .name a{
  color: #222;
}
.esg02 .more{
  width: 100%; text-align: center; margin: 15px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.esg02 .more .line {
    overflow: hidden;
    margin-right: 10px;
    width: 60px;
    height: 2px;
    display: inline-block;
    position: relative;
}
.esg02 .more .line:after, .esg02 .more .line:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.esg02 .more .line:before {
    background: var(--color-c01);
    -webkit-transform: translate3d(-150%, 0, 0);
    transform: translate3d(-150%, 0, 0);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
.esg02 .more .line:after {
    background: #C8C8C8;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
.esg02 ul li:hover .more .line:before {
        -webkit-transform:translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

.esg02 ul li:hover .more .line:after {
        -webkit-transform: translate3d(150%,0,0);
        transform: translate3d(150%,0,0)
    }
.esg02 .more .read{
  font-size: var(--font-f03); color: #666; font-family: 'Helvetica'; margin:0;
}
.esg02 .more .read a{
  color: #666; 
}
.esg02 .right{
  width: 50%;
  margin: 80px 0 0 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
.esg02 .en{
  font-size: var(--font-f04); 
}
.esg02 .name{
  font-size: var(--font-f08); 
}
}
@media screen and (max-width: 800px) {
.esg02 ul li{
  width:100%;
}
}

.esg05 {
  width: 100%;
  margin: -120px 0 0 0;
  padding: 0 0 120px 0;
}
.esg05 .box{
  width: 80%;
  padding: 0 0;
  margin: 0 auto 0 auto;
}
.esg05 .box ul{
  width: 100%;
  padding: 0; margin: 0; list-style: none; 
}
.esg05 .box li{
  width: 100%;
  background: #fff;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  border-radius: 10px;
}
.esg05 .box li a{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.esg05 .box li:hover{
  background: var(--color-c01);
}
.esg05 .box li .icon{ width: 50px;
display: flex;
  justify-content: center;
  align-items: center;
}
.esg05 .box li:hover .icon .icon_download:before,
.esg05 .box li:hover .ttbox h2,
.esg05 .box li:hover .ttbox h3 { color:#fff; }
.esg05 .box li .ttbox{ padding: 0 50px 0 20px; width: calc(100% - 50px - 200px);}
.esg05 .box li .ttbox h2 {
    width: 100%;
    font-family: 'Helvetica';
    font-size: var(--font-f07);
    color: #666;
}
.esg05 .box li .ttbox h3 { margin: 0px; padding: 0px 0; color: #222;
    width: 100%;
    font-size: var(--font-f11);
    font-weight: normal;
}
.esg05 .box li .pic{ width: 200px;}
.esg05 .box li .pic img{ width: 100%; border-radius: 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;
}
.esg05 .box 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);
}
@media screen and (max-width: 1000px) {
.esg05 .box{
  width: 90%;
}
.esg05 .box li .ttbox h2 {
    font-size: var(--font-f04);
}
.esg05 .box li .ttbox h3 { 
    font-size: var(--font-f07);
}
}
@media screen and (max-width: 768px) {
.esg05 .box li{
  padding: 40px 30px;
  flex-wrap: wrap;
}
.esg05 .box li a{
  flex-wrap: wrap; 
}
.esg05 .box li .icon{ width: 100%;}
.esg05 .box li .ttbox{ padding: 20px 0px 30px 0px; width: 100%; text-align: center;}
.esg05 .box li .pic{ width: 100%; display: flex; 
    justify-content: center; }
.esg05 .box li .pic img{ width: 150px; }
}

.esg_book {
  width: 100%;
  margin: 40px 0 0 0;
  padding: 0;

  display: flex;
   justify-content: space-between;
}
.esg_book ul{
  width: 33%;
  padding: 0;
  list-style: none;
}
.esg_book .picbox{
  width: 33%;
}
.esg_book .pic {
  width: 100%;

  position: sticky;
  top: 110px;
}
.esg_book .pic img{
  width: 100%;
}
.esg_book ul li{
  width:100%;
  padding: 0;
  list-style: none;
  position: relative;
}
.esg_book ul li .all{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0px 0 50% 0;
}
.esg_book ul.right li .all{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 50% 0 0 0;
}
.esg_book ul li:before {
    content: "";
    display: block;
    width: 90%;
    height: 2px;
    background: #c2ceda;
    position: absolute;
    left: 0px;
    top: 45%;

    -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.esg_book ul.right li:before{
  left: auto; right: 0;
}
.esg_book li:hover:before{
    background: var(--color-c02);
}
.esg_book ul li .info{
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.esg_book ul li .icon {
    width: 100%;
}
.esg_book ul li .icon img {
    width: 100%;
    border-radius: 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;
}
.esg_book ul li:hover .icon img {
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
}
.esg_book ul li .name {
    width: 100%;
    text-align: center;
    font-size: var(--font-f09);
    font-weight: 600;
    margin: 10px 0 0 0;
    color: #333;

    transition: 0.8s;
    -moz-transition: 0.8s;
    -ms-transition: 0.8s;
    -o-transition: 0.8s;
}
.esg_book ul li .name a{
    color: #333;
}
.esg_book ul li:hover .name {
  margin: 35px 0 0 0;
}
@media screen and (max-width: 1366px) {
.esg_book ul li .info{
  width: 180px;
}
}
@media screen and (max-width: 1280px) {
.esg_book ul li .info{
  width: 150px;
}
}
@media screen and (max-width: 1000px) {
.esg_book {
  flex-wrap: wrap;
}
.esg_book .picbox {
  width: 100%; order: 1;
}
.esg_book .pic {
  width: 100%;

  position: relative;
  top: auto;
  display: flex;
  justify-content: center;
  
}
.esg_book .pic img{
  width: 80%;
}
.esg_book ul{
  width: 50%;
  order: 2;
}
.esg_book ul li:before {
    display: none;
}
.esg_book ul li .all{
  margin: 0px 0 50px 0; justify-content: center; padding: 0 10px;
}
.esg_book ul.right li .all{
  margin: 0px 0 50px 0; justify-content: center;
}
.esg_book ul li .name {
    font-size: var(--font-f06);
}
}

.welfare01 { width:100%; }
.welfare01 .bread-crumbs {
    justify-content: flex-start; padding: 30px 0 30px 0;
}
.welfare01 .bread-crumbs li{
    color: #666;
}
.welfare01 .bread-crumbs a {
    color: #666;
}

.welfare02 { width:100%; padding: 90px 0 120px 0; display: flex; justify-content: space-between; align-items: center;}
.welfare02.good_style { padding: 90px 0 0px 0; }
.welfare02 .info{ width:40%; padding: 0 0px 10px 0; position: relative;}
.welfare02 .info .title01 {
    justify-content: flex-start; text-align: left;
}
.welfare02 .info .title01 h2{
   letter-spacing: 2px; padding: 0 0px 10px 0;
}
.welfare02 .info .title01 h2, .welfare02 .info .title01 h4{
   text-align: left 
}
.welfare02 .info p{ width:100%; 
    margin-top: 20px;
    line-height: 1.8;
}
.welfare02 .info .line{ width:100%; padding: 0 0px 10px 0; border-bottom: 5px solid #c5d8e7;}
.welfare02 .info .contact-box { padding: 20px 0px 0 0;
    display: flex; justify-content: flex-start; font-size:var(--font-f07);
}
.welfare02 .info .contact-box i{
    color: var(--color-c02); padding: 0 0px 0 0px;
}
.welfare02 .info .contact-box span{
    padding: 0 0px 0 10px;
}
.welfare02 .info .btn-box {
    margin: 20px 0 0px 0;
    justify-content: flex-start;
}
.welfare02 .info .btn-box .btn-style01 {
    padding: 7px 40px 9px 40px;
    font-size: 16px;
}
.welfare02 .pic{ width:60%; padding: 0 0px 0 80px;}
.welfare02 .pic img{ width:100%; }
.welfare02 .pic .img-box {
    margin-bottom: -50px;
    position: relative;
}
.welfare02 .pic .img-box:before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 59.211%;
}
.welfare02 .pic .img-box img{
width: 100%;
    height: 100%;
        display: block;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
.welfare02 { flex-wrap: wrap; padding: 40px 0 40px 0;}
.welfare02.good_style { padding: 40px 0 40px 0; }
.welfare02 .info{ width:100%; order: 2; }
.welfare02 .pic{ width:100%; padding: 0px 0px 40px 0px; order: 1; text-align: center;}
.welfare02 .pic .img-box {
    margin: 0px auto;width: 80%;
}
.welfare02 .pic img{ width:80%; }
}
@media screen and (max-width: 600px) {
.welfare02 .pic .img-box {
  width: 100%;
}
.welfare02 .pic img{ width:100%; }
}

.welfare03 {
  width: 100%;
  margin: 0px 0 0 0;
  padding: 120px 0 120px 0;
}
.welfare03 .box{
  width: 100%;
  padding: 0 0;
  margin: 0 auto 0 auto;
  position: relative;
}
.welfare03 .box .slick--visual{
  width: 100%;
  padding: 0; margin: 0; list-style: none; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.welfare03 .box .slick-slide{
  width: 100%;
  background: #fff;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 50px;
  border-radius: 10px;
  height: auto;

  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
  position: relative;
}
.welfare03 .box .slick-slide .num {
    padding: 12px 20px;
    font-size:var(--font-f07);
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--color-c01);
    border-radius: 0px 0px 50px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 20px;
    -webkit-transition: background 0.5s, color 0.3s;
    transition: background 0.5s, color 0.3s;
    font-family: 'Helvetica';
}
.welfare03 .box .slick-center {
  transform: scale(1);
}
.welfare03 .box .slick-slide a{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.welfare03 .box .slick-slide:hover{
  background: var(--color-c01);
}
.welfare03 .box .slick-slide:hover .num {
    background: #fff; color: var(--color-c01);
}
.welfare03 .box .slick-slide:hover .icon .icon_download:before,
.welfare03 .box .slick-slide:hover .ttbox p,
.welfare03 .box .slick-slide:hover .ttbox info,
.welfare03 .box .slick-slide:hover .ttbox info font,
.welfare03 .box .slick-slide:hover .ttbox h3,
.welfare03 .box .slick-slide:hover .ttbox .date { color:#fff !important; }
.welfare03 .box .slick-slide .ttbox{ padding: 0 0px 0 50px; width: calc(100% - 200px);}
.welfare03 .box .slick-slide .ttbox .date {
    width: 100%;
    font-size: 16px;
    color: var(--color-c01);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0px 0 10px 0;
}
.welfare03 .box .slick-slide .ttbox h3 { margin: 0px; padding: 0px 0; color: #333;
    width: 100%;
    font-size: var(--font-f11);
    font-weight: 600;
}
.welfare03 .box .slick-slide .ttbox p, .welfare03 .box .slick-slide .ttbox .info {
    width: 100%;
    color: #666;
    font-size: var(--font-f06);
    margin: 10px 0 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.welfare03 .box .slick-slide .pic{ width: 200px;}
.welfare03 .box .slick-slide .pic img{ width: 100%; border-radius: 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;
}
.welfare03 .box .slick-slide: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);
}
@media screen and (max-width: 1366px) {
.welfare03 .box .slick-slide a{
  flex-wrap: wrap;
}
.welfare03 .box .slick-slide .icon{ width: 100%;}
.welfare03 .box .slick-slide .ttbox{ padding: 20px 0px 0px 0px; width: 100%; text-align: center;}
.welfare03 .box .slick-slide .ttbox .date {text-align: center; justify-content: center;}
.welfare03 .box .slick-slide .ttbox p, .welfare03 .box .slick-slide .ttbox .info {text-align: center;}
.welfare03 .box .slick-slide .pic{ width: 100%; display: flex; 
    justify-content: center; }
.welfare03 .box .slick-slide .pic img{ width: 150px; }
}
@media screen and (max-width: 1000px) {
.welfare03 {
  padding: 40px 0 40px 0;
}
.welfare03 .box .slick-slide .ttbox h2 {
    font-size: var(--font-f04);
}
.welfare03 .box .slick-slide .ttbox h3 { 
    font-size: var(--font-f07);
}
.welfare03 .box .slick-slide .num {
    padding: 8px 10px;
    font-size:var(--font-f05);
    line-height: 1;
}
}
@media screen and (max-width: 768px) {
.welfare03 .box .slick-slide{
  padding: 60px 20px 30px 20px; 
}
}

 .slick--visual__paging {
   letter-spacing: 3px;
   z-index: 2;
   font-family: 'Helvetica';
   font-weight: 600;
}
 .slick--visual__paging .slick-dots {
   bottom: 0px;
}
 .slick--visual__paging .slick-dots li {
   display: none;
   justify-content: space-between;
   color: #888;
   letter-spacing: 5px;
}
 .slick--visual__paging .slick-dots li.slick-active {
   display: flex;
}
 .slick--visual__paging .slick-dots li.slick-active span:first-of-type {
   color: var(--color-c01);
}
 .slick--visual {
}
 .slick--visual .slick-list, .slick--visual .slick-track {
   height: 100%;
}
 .slick--visual__etc {
   width: 30%; margin:80px auto 0 auto; position: relative;
}
 .slick--visual__etc .visual__arrows {
   display: flex;
   margin-bottom: 2rem;
   justify-content: space-between;
   font-size: var(--font-f04);
}
 .slick--visual__etc .visual-prev, .slick--visual__etc .visual-next {
   border: 0;
   background: none;
   font-size: var(--font-f05);
   cursor: pointer;
   outline: none;
   color: #ced3d6;
   position: absolute;
   padding: 15px;
}
 .slick--visual__etc .visual-prev {
   left: -50px; top: -27px;
}
 .slick--visual__etc .visual-next {
   right: -50px; top: -27px;
}
 .slick--visual__etc .visual-prev:hover, .slick--visual__etc .visual-next:hover {
   transform: scale(1.5);
}
 .slick--visual__etc .visual__progress {
   height: 4px;
   background-color: #fff;
   background-repeat: no-repeat;
   background-image: linear-gradient(to right, var(--color-c01), var(--color-c01));
   z-index: 2;
}
@media screen and (max-width: 1000px) {
 .slick--visual__etc {
   width: 50%; margin:60px auto 0 auto; 
}
}

.right01 { width:100%; padding: 120px 0 120px 0; }

.right01 .txt{ width:100%; 
    margin: 10px 0;
    line-height: 1.8;
}
.right01 .line{ width:100%; padding: 0 0px 20px 0; border-bottom: 5px solid #c5d8e7;}
.right01 .pic{ width:100%; margin: 40px 0px 20px 0; }
.right01 .pic img{ width:100%;  }
.right01 .title06 h2{ margin: 30px 0 30px 0;}
.right01 .txtbox01{ width:100%; margin: 20px 0 0 0;}
.right01 .txtbox01 .pbox{ width:100%; margin: 10px 0 0 0; }
.right01 .mt{ width:100%; margin: 80px 0px 0px 0; }
.right01 .txtbox01 .list01 ul {
    padding: 0px 0px 0px 0px;
}
@media screen and (max-width: 1000px) {
.right01 { padding: 40px 0 40px 0;}
}

.esg04{ margin:0px 0 0px 0px; width:100%; }
.esg04:last-child{ margin:0px 0 0px 0px; }
.esg04 .list{ margin:0px 0 0px 0px; width:100%; position: relative; display: flex; 
align-items: stretch;}
.esg04 .list .pic{ margin:0px 0 0px 0px; padding: 0; width:50%; 
order: 2;
}
.esg04 .list .pic img{ width:100%;}
.esg04:nth-child(2n+0) .list .pic{ order: 1; }
.esg04 .list .txtbox{ margin:0px 0 0px 0px; padding:40px 40px; width:50%; display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap;}
.esg04:nth-child(2n+0) .list .txtbox{ order: 2;}
.esg04 .list .txtbox .atxtbox{ width:100%;}
.esg04 .list .txtbox .atxtbox .title01 { justify-content: flex-start; margin:0px 0 20px 0px;}
.esg04 .list .txtbox .atxtbox .title01 h2 { text-align: left; font-size: var(--font-f13);}
.esg04 .list .txtbox .atxtbox .info { color:#666; line-height:1.8; }
.esg04 .list .txtbox .atxtbox .list01 ul {
    padding: 0px 0px 0px 0px;
}
@media screen and (max-width: 1280px) {
.esg04 .list{ flex-wrap: wrap; align-items: flex-start;}
.esg04 .list .pic{ width:100%; order: 1; }
.esg04 .list .txtbox{ width:100%; order: 2; padding:30px;}
}
@media screen and (max-width: 600px) {
.esg04 .list .txtbox{ padding:30px 20px; }
}

.esg06 { width:100%;}
.esg06 .title01 { justify-content: flex-start; margin:0px 0 20px 0px;}
.esg06 .title01 h2 { text-align: left; font-size: var(--font-f13);}
.esg06 .info { color:#666; line-height:1.8; }

/* -人力資源--------------------------------------------------------------------------------------------------*/
.career01 { width:100%; 
display: flex; 
    justify-content: space-between;
    align-items: center;
}
.career01 .txt{ width:47%; padding: 0 5% 0 0; 
display: flex; 
    justify-content: flex-start; flex-wrap: wrap;
}
.career01 .txt p{ width:100%; 
    color: #666;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-height: 1.7;
}
.career01 .txt .info{ width:100%; text-align: center;
    color: #666;
    line-height: 1.7;
}
.career01 .txt .icon_box{ width:100%;}
.career01 .txt .icon_box ul {
    width: 100%;
    margin: 40px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap;
}
.career01 .txt .icon_box li {
    width: calc(100% / 3 - 30px);
    margin: 15px 15px;
    padding: 20px 20px;
    list-style: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}
.career01 .txt .icon_box li:last-child {
    border-right: none;
}
.career01 .txt .icon_box li .icon {
    width: 100%; text-align: center;
}
.career01 .txt .icon_box li .icon img{
    width: 55px;
}
.career01 .txt .icon_box li .txt {
    width: 100%;
    padding: 0 0 0 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.career01 .txt .icon_box li .txt h3 {
    width: 100%;
    margin: 0 0 0px 0;
    padding: 0;
    color: #001871;
    text-align: center;
    font-size: var(--font-f07);
}
.career01 .txt .icon_box li .txt p {
    width: 100%;
    margin: 0px 0 0px 0;
    padding: 0 0 0 0;
    color: #666;
    text-align: center;
    font-size: var(--font-f03);
}

.career01 .txt .title01 {
  margin: 0 0 30px 0;
}

.career01 .pic{ width:53%; }
.career01 .pic img{ width:100%; border-radius: 20px;}

@media screen and (max-width: 1000px) {
.career01 .txt .icon_box li .txt h3 {
    font-size: var(--font-f05);
}
.career01 .txt .icon_box li .txt p {
    font-size: var(--font-f02);
}
}
@media screen and (max-width: 1024px) {
.career01 { flex-wrap: wrap;}
.career01 .txt{ width:100%; padding: 0 0 20px 0; }
.career01 .pic{ width:100%; }
}
@media screen and (max-width: 600px) {
.career01 .txt .icon_box li .icon img{
    width: 50px;
}
.career01 .txt .icon_box li {
    width: calc(100% / 3 - 10px);
    margin: 15px 5px;
    padding: 20px 10px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05);
}
}

.career02 {
width: 100%;
        margin: 0px;
        height: 400px;
        overflow: hidden;
        position: relative;
        display: block;
}
.career02 .bg{
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
      }
.career02 .bg:before{
content: "";
top: 0;
left: 0;
position: absolute; z-index: 1;
width: 100%; height: 100%;
background: linear-gradient(180deg, rgba(0, 0, 0, .1) -24.77%, transparent);
      }
.career02:hover .bg,
.career02:focus .bg {
        -ms-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
      }
.career02 .text_box{
  width:100%; height:100%; position:absolute; z-index: 2; top: 0; right:0;
}
.career02 .text_box .box-2{
  display: flex;
  justify-content: center; align-items: center; height:100%;
}
.career02 .text_box .text{ width:100%; text-align: center; }
.career02 .text_box .text .title02{ width:100%; text-align: center; justify-content: center;}
.career02 .text_box .text .more {
    padding: 0;
    margin: 30px 0 0px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1600px) {
.career02 {
height: 400px;
}
}
@media screen and (max-width: 1500px) {
.career02 {
height: 350px;
}
}
@media screen and (max-width: 980px) {
.career02 {
height: 280px;
}
}

.career03 {
  width: 100%;
  margin: 0px 0 0 0;
  padding: 120px 0 120px 0;
}
.career03 .box-3{
  padding: 0 0;
  margin: 0 auto 80px auto;
}
.career03 .top_info{
  width: 100%; text-align: center;
}
.career03 .box{
  width: 100%;
  padding: 0 0;
  margin: 0 auto 0 auto;
  position: relative;
}
.career03 .box .slick--visual{
  width: 100%;
  padding: 0; margin: 0; list-style: none; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.career03 .box .slick-slide{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 0px;
  height: auto;

  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
  position: relative;
}
.career03 .box .slick-center {
  transform: scale(1); 
}
.career03 .box .slick-slide a{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.career03 .box .slick-slide .info{ margin: 10px 0px 10px 0px; width: 100%; opacity:0; transition: 0.5s;}
.career03 .box .slick-slide.slick-current .info{
  opacity:1;
}
.career03 .box .slick-slide .pic{ width: 100%; overflow: hidden;}
.career03 .box .slick-slide .pic img{ width: 100%; opacity: 0.7;
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;
}
.career03 .box .slick-slide.slick-current .pic img{
  opacity: 1;
}
.career03 .box .slick-slide: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);
}
@media screen and (max-width: 1000px) {
.career03 {
  padding: 40px 0 40px 0;
}
.career03 .box-3{
  margin: 0 auto 40px auto;
}
}

.career04 {
  width: 100%;
  margin: 0px 0 0 0;
  padding: 120px 0 120px 0;
}
.career04 .box-3{
  padding: 0 0;
  margin: 0 auto 0px auto;
}
.career04 ul{
  padding: 0 0;
  margin: 0 auto 0px auto; list-style: none;
  display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.career04 li{
  padding: 0 0;
  margin: 40px 0 0px 0; list-style: none;

  width: calc(100% / 2 - 20px);
  background: #fff;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05);
  display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-radius: 10px;
    height: auto;
    position: relative;
}
.career04 li .icon{
  padding: 0 0; width: 75px;
  margin: 0 auto 0px auto; list-style: none;
}
.career04 li .icon img{
  width: 100%;
}
.career04 li .info{
  width: calc(100% - 75px); padding: 0 0 0 30px; line-height: 1.8;
}
.career04 li .info .tt01 {
    margin: 0px 0 5px 0;
    padding: 0px 0;
    color: #333;
    width: 100%;
    font-size: var(--font-f07);
    font-weight: 500;
}
.career04 li .info .tt02 {
    color: #666;
    width: 100%;
}
@media screen and (max-width: 1000px) {
.career04 {
  padding: 40px 0 40px 0;
}
.career04 li{
  flex-wrap: wrap;
}
.career04 li .info{
  width: 100%; padding: 10px 0 0 0px; text-align: center;
}
}
@media screen and (max-width: 600px) {
.career04 li{
  margin: 30px 0 0px 0; 
  width: 100%;
}
}

/* -投資人專區------------------------------------------------------------------------------------------------*/
.investor { width:100%; margin: 50px 0 0px 0; position:relative;}

.cata-sub-nav {
    padding: 0px;
    margin: 0 50px;
    /* Make this scrollable when needed */
    overflow-x: auto;
    /* We don't want vertical scrolling */
    overflow-y: hidden;
    /* Make an auto-hiding scroller for the 3 people using a IE */
    -ms-overflow-style: -ms-autohiding-scrollbar;
    /* For WebKit implementations, provide inertia scrolling */
    -webkit-overflow-scrolling: touch;
    /* We don't want internal inline elements to wrap */
    white-space: nowrap;
    /* Remove the default scrollbar for WebKit implementations */
}
.cata-sub-nav::-webkit-scrollbar {
        display: none;
    }
.cata-sub-nav ul {
    margin: 0;
        display: flex;
          -webkit-padding-start: 0px;
}
.cata-sub-nav li {
    display: inline-table;
    margin: 0 25px 10px 25px; 
    color: #888;
    font-size: var(--font-f06);
    font-weight: 600;    
} 
.cata-sub-nav li a{
    color: #888;
    padding: 0 0 10px 0;

    background: linear-gradient(#1b4fd6, #1b4fd6) no-repeat 0 100%;
    background-size: 0 3px;
    transition: background-size .5s;
} 
.cata-sub-nav li a:hover{
    color: var(--color-c01);
    background-size: 100% 3px;
} 
.cata-sub-nav li a.active{
    color: var(--color-c01);
    background-size: 100% 3px;
} 
.cata-sub-nav .arrow{

}
.cata-sub-nav .nav-prev {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0px;
    margin-top: 0px;
    color: #888;
}
.cata-sub-nav .nav-next {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0px;
    margin-top: -35px;
    color: #888;
}

.investor01 { width:100%; margin: 50px 0 0px 0;}
.investor01 h3{ width:100%; margin: 0px 0px 20px 0px; padding: 0px; font-size:var(--font-f07);}
.investor01 ul{ width:100%; margin: 0px 0; padding: 0px 0; list-style: none; 
display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.investor01 ul:after {
    content: "";
    width:calc(100% / 4 - 20px);
}
.investor01 li{ width:calc(100% / 4 - 20px); margin: 0px 10px 30px 10px; padding: 30px; list-style: none; border-radius: 10px;
transition: all 1s; box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05); background: #fff;
}
.investor01 li a{ 
display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.investor01 li:hover{ transition: all 1s;
    transform: scale(1.2); background:var(--color-c01);}
.investor01 li:hover .icon, .investor01 li:hover .txt p{ color: #fff;}
.investor01 li .icon_pdf{ width:100%; font-size:var(--font-f17); 
display: flex;
    justify-content: center;
    align-items: center;
}
.investor01 li .icon_pdf:before{ font-size:var(--font-f17); }
.investor01 li:hover .icon_pdf:before{ color: #fff;}
.investor01 li .txt{ width:100%; margin: 10px 0px 0px 0px; }
.investor01 li .txt p{ width:100%; color: #666; text-align:center; margin: 0px 0px 0px 0px;}
@media screen and (max-width: 1024px) {
.investor01 ul:after {
    width:calc(100% / 2 - 20px);
}
.investor01 li{ width:calc(100% / 2 - 20px);}
}

.investor02{ width:100%; margin: 50px 0px 0px 0px; padding:0; }
.investor02 .year{ width:100%; margin: 0; padding:28px 0; text-align: center; font-weight:600; color: var(--color-c04); font-size: var(--font-s06);
}
.investor02 .wrapper {
    position:relative;
    margin:0 auto 0px auto;
  padding:0px;
}

.investor02 .wrapper .nav{ margin: 0px; padding:0; display: flex;  justify-content: flex-start; align-items: center; }
.investor02 .wrapper .nav button{ margin:0 30px 30px 0; padding:0; outline: 0px; border: 0px; color: #888; padding: 0 0 10px 0; font-size:var(--font-f06); position:relative; font-weight:600;
background: linear-gradient(#1b4fd6, #1b4fd6) no-repeat 0 100%;
    background-size: 0 3px;
    transition: background-size .5s;
}
.investor02 .wrapper .nav button.active{ color: var(--color-c01); background-size: 100% 3px;}

.investor03{ width:100%; margin: 50px 0px 0px 0px; padding:0; }
.investor03 > ul{ width:100%; margin: 0px 0px 0px 0px; padding:0; list-style:none;}
.investor03 li{ width:100%; margin: 0px 0px 40px 0px; padding:0px 0px 35px 0px; list-style:none; 
  border-bottom: 1px solid #c2ceda;
}
.investor03 li .title{ width:100%; margin: 0px 0px 10px 0px; padding:0; font-size:var(--font-f07); font-weight:600; color:#003281; }
.investor03 > li > p{ width:100%; margin: 0px 0px 10px 0px; padding:0; color:#666;}
.investor03 li p i{ width:22px; color:#666;}

.download-box {
    margin: 0px 0 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}
.download-box ul{
    margin: 20px 0 0 0;
    padding: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}
.download-box .list {
    display: flex; justify-content:flex-start; align-items: center; flex-wrap: nowrap;
    margin: 0px 15px 10px 0px;
    border-radius: 30px; padding: 12px 35px;
    transition: all 1s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
}
.download-box .list:last-child {
    margin-right: 0
}

.download-box .list a {
    color: #666;
    width: calc(100% - 40px);
    margin: 0px 0 0 0;
    padding: 0px;
}
.download-box .icon{ width: 40px; color: #fff; padding: 0; margin: 0; display: flex; justify-content:flex-start; align-items: center;
 }
.download-box .icon .icon_pdf, .download-box .icon .icon_video{ width: 100%; color: var(--color-c01) ; padding: 0; margin: 0; display: flex; justify-content: center; align-items: center;
    -webkit-transition: all .5s;
    transition: all .5s;
    font-size:var(--font-f10);
 }
.download-box .list:hover {
        background: var(--color-c01); transition: all 1s;
    transform: scale(1.1);
    }
.download-box .list:hover .icon_pdf, .download-box .list:hover .icon_video {
        -webkit-transform:scale(1.1);
        transform: scale(1.1);
    }
.download-box .list:hover .icon_pdf:before, .download-box .list:hover .icon_video:before {
        color: #fff;
    }
.download-box .list:hover a{
        color: #fff;
    }
@media screen and (max-width: 1100px) {
.download-box .list {
    margin: 0px 15px 10px 0px;
    width: calc(100% / 3 - 15px);
}
}
@media screen and (max-width: 900px) {
.download-box .list {
    margin: 0px 15px 10px 0px;
    width: calc(100% / 2 - 15px);
}
}

.investor04{ width:100%; margin: 50px 0px 0px 0px; padding:0; }

.investor05{ width:100%; margin: 50px 0px 0px 0px; padding:0; }
.investor05 ul{ width:100%; margin: 0; padding:0px 0 0px 0; list-style: none;
display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.investor05 ul li{ width:calc(100% / 2 - 30px); margin: 0px 10px 30px 10px; padding: 30px; list-style: none; border-radius: 10px;
transition: all 1s; box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05); background: #fff;
}
.investor05 h3 {
    width: 100%;
    margin: 0px 0px 20px 0px;
    padding: 0px;
    font-size: var(--font-f07); font-weight: 600;
}
.investor05 p {
    width: 100%; 
    margin: 0px 0px 0px 0px;
    padding: 0px; line-height: 2; color: #666;
}
@media screen and (max-width: 800px) {
.investor05 ul{ flex-wrap: wrap;}
.investor05 ul li{ width:100%; margin: 0px 10px 30px 10px; }
}

.investor06{ width:100%; margin: 0px 0px 0px 0px; padding:0; }
.investor06 .txt{ width:100%; margin: 0px 0px 0px 0px; padding:20px 0px 0px 20px;  }

/* -最新消息--------------------------------------------------------------------------------------------------*/
.news01 { width:100%; margin: 0px auto 40px auto; padding:0px 0 0px 0; }
.news01 ul{ width:100%; margin: 0; padding:0px 0 0px 0; list-style: none;}
.news01 ul li{ width:100%; border-bottom: 1px solid #DCDCDC; padding: 20px 25px; margin: 0; list-style: none; font-size: 18px; line-height: 1.5; position:relative; 
display: flex; justify-content: flex-start; align-items: center; flex-wrap: nowrap;
}
.news01 ul li:hover:before{
    width: 100%;
    left: 0;
    right: auto;
}
.news01 ul li:before {
content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-c01);
  position: absolute;
  right: 0;
  bottom: -1px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.news01 ul li a{ display: flex; justify-content: flex-start; align-items: center; flex-wrap: nowrap;}
.news01 ul li .date{ width: 120px; font-size: 16px; color: var(--color-c01); display: flex; justify-content: flex-start; align-items: center;
}
.news01 ul li .date:after {
  content: '';
  width: 1px;
  height: 15px;
  background: #DCDCDC;
  margin: 0 0px 0px 20px;
}
.news01 ul li p{ width: calc(100% - 120px); color: #333; padding: 0 0 0 0px; margin: 0; font-size: var(--font-f06);}
@media screen and (max-width: 750px) {
.news01 ul li{ padding: 18px 15px;}
.news01 ul li a, .news01 ul li{ flex-wrap: wrap;}
.news01 ul li p{ width:100%; padding: 5px 0 0 0px;}
.news01 ul li .date:after {
  display: none;
}
}

/* -關於我們--------------------------------------------------------------------------------------------------*/
.histroy-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(100vh - 100px);
}
.histroy-block .left-box {
    width: 50%;
}
.histroy-block .left-box .page-banner {
  height: 100%;
}
.histroy-block .right-box {
    width: 50%; 
    overflow-y: scroll;
    height: calc(100vh - 200px);

    display: flex;
    justify-content: center;
    align-items: center;
}
.histroy-block .right-box::-webkit-scrollbar {
  display: none;
}
.timeline {
   width: 100%; 
   padding: 0; 
   margin: 0 0 50px 0;
}
.timeline h2{
   width: 100%; 
   padding: 0 0 0 45px; 
   margin: 0 0 30px 0;
   color: var(--color-c02);
   font-family: 'Helvetica';
   font-weight: 600;
   font-size: var(--font-f10);
   position: relative;
}
.timeline h2::before {
   content: '';
   position: absolute;
   left: 95px;
   width: 2px;
   background: var(--color-c02);
   height: 100%;
   z-index: 2;
   top: 30px;
}
 .timeline > ul {
   padding: 0 0 0px 0; margin: 0 0 0px 0; list-style: none; position: relative;
}
 .timeline .default-line {
   content: '';
   position: absolute;
   left: 95px;
   width: 2px;
   background: #bdc3c7;
   height: 100%;
   z-index: 2;
}
 .timeline .draw-line {
   width: 2px;
   height: 0;
   position: absolute;
   left: 95px;
   background: #20cf8e;
   z-index: 3;
}
 .timeline > ul > li.default-line.in-view::before, .timeline > ul > li.draw-line.in-view::before {
    content: "";
    display: none;
}
 .timeline > ul > li.default-line.in-view::after, .timeline > ul > li.draw-line.in-view::after  {
    content: "";
    display: none;
    background: none;
}
 .timeline > ul > li {
   list-style-type: none;
   position: relative;
   width: 2px;
   margin: 0px 0 50px 0;
   padding: 0px 0 45px 0;
   width: 100%;
   height: auto;

   background-image: linear-gradient(to right, rgba(209, 209, 209, 1) 33%, rgba(209, 209, 209, 0) 0%);
    background-position: bottom;
    background-size: 5px 1px;
    background-repeat: repeat-x;
    z-index: 1;
   

   display: flex;
  justify-content: flex-start; align-items: flex-start;
  flex-wrap: nowrap;
}
 .timeline > ul > li:last-child {
   background-image: none;
}
 .timeline > ul > li.in-view {
   transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
}
 .timeline > ul > li.in-view::before {
    content: "";
    position: absolute;
   left: 95px;
   top: 0;
   transform: translateX(-50%);
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background-color: #2ecc71;
   background-size: 20px 20px;
   background-repeat: no-repeat;
   background-position: center;
   transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
}
 .timeline > ul > li.in-view::after {
    content: "";
    width: 25px;
    height: 25px;
    background: no-repeat url(../images/circle.png) center;
    position: absolute;
    top: 7px;
    bottom: auto;
    left: 95px;
    right: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite;
}
 .timeline > ul > li::before {
   content: '';
   position: absolute;
   left: 96px;
   top: 0;
   transform: translateX(-50%);
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: inherit;
   background: #bdc3c7;
   transition: all 0.4s ease-in-out;
}
 .timeline .default-line:before {
   display: none;
}
.timeline .left{
   width: 130px;
   padding: 0px; position: relative;
   margin: -10px 0 0 0;
}
.timeline .left .title {
    font-weight: bold;
    font-size:var(--font-f10);
    letter-spacing: .5px;
    width: 100%;
    margin: 0 0 0 0; padding: 0;
}
.timeline .right{
   width: calc(100% - 130px);
   padding: 0px; margin: -10px 0 0 0;
}
 @-webkit-keyframes rotate {
   from {
     -webkit-transform: rotate(0deg) translate(-50%, -50%);
     transform: rotate(0deg) translate(-50%, -50%);
  }
   to {
     -webkit-transform: rotate(360deg) translate(-50%, -50%);
     transform: rotate(360deg) translate(-50%, -50%);
  }
}
 @keyframes rotate {
   from {
     -webkit-transform: rotate(0deg) translate(-50%, -50%);
     transform: rotate(0deg) translate(-50%, -50%);
  }
   to {
     -webkit-transform: rotate(360deg) translate(-50%, -50%);
     transform: rotate(360deg) translate(-50%, -50%);
  }
}
@media(max-width: 1300px) {
.histroy-block {
    height: calc(100vh - 90px);
}
.histroy-block .right-box {
    height: calc(100vh - 190px);
}
}
.timeline.award .list01 {
   margin:-7px 0 0px 0px;
}
.timeline.award .list01 ul {
    padding: 0px 0px 0px 0px;
}
.timeline.award .list01 li a {
    color: #333;
}
.timeline.award .list01 li a:hover {
    color: var(--color-c01);
}
.timeline.award .list01 li a span{
    color: var(--color-c01); border-bottom: 1px solid var(--color-c01); margin:0px 0 0px 10px;
}

.team { width:100%; margin: 0px auto 0px auto; padding:0px 0 0px 0; }
.team ul{ margin:0px 0 0px 0px; padding: 0px; width:100%; list-style:none;
display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
.team ul:after {
    content: "";
    width:calc(100% / 3 - 20px);
}
.team li{ margin:0px 0px 30px 0px; padding:20px; width:calc(100% / 3 - 20px); list-style:none; transition: all 0.6s; border-radius: 10px; border: 1px solid #c2ceda;
 }
.team li .pic{ width:100%; position: relative; overflow: hidden; 
border-radius: 10px;
}
.team li .pic img{ width:100%; 
border-radius: 10px;

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;
}
.team 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);
}
.team li .pic figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;

    display: flex;
  justify-content: center;
  align-items: center;
  
background: rgba(27,79,214,0.8); 
}
.team li:hover .pic figcaption {
  opacity: 1;
}
.team li:hover .pic figcaption .view { 
  opacity: 1;
}
.team li .pic figcaption .view{ 
  opacity: 0;
    display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
    margin: 0 18px;
    width: 82px; 
    height: 82px;
    line-height: 82px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1.2px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
}
.team li .pic figcaption .view { font-size:var(--font-s02); font-weight:600; }

.team ul > li .txtbox{ width:100%; padding:10px 0px 0px 0px; display: flex; flex-wrap: wrap; text-align:center;}
.team ul > li .txtbox .name{ width:100%; padding:5px 0px 0px 0px; font-size: var(--font-f08); font-weight:600; color:var(--color-c01); letter-spacing:1px; }
.team ul > li .txtbox .name{ font-size: var(--font-f05); }
.team ul > li .txtbox .position, .team.in ul > li .txtbox .position{ width:100%; font-size: var(--font-f05); color:#666;}
@media screen and (max-width: 1100px) {
.team ul:after {
    content: "";
    width:calc(100% / 2 - 15px);
}
.team li{ margin:0px 0px 30px 0px; width:calc(100% / 2 - 15px); }
}
@media screen and (max-width: 699px) {
.team ul:after {
    content: "";
    width:100%;
}
.team li{ margin:0px 0px 30px 0px; width:100%; }
}

.team02 { width:100%; margin: 0px; padding:0px 0 0px 0; display: flex;
  justify-content: space-between;
  align-items: flex-start; flex-wrap: nowrap;}
.team02 .pic{ width:30%;}
.team02 .pic img{ width:100%; }
.team02 .txtbox{ width:70%; margin: 0px; padding:0px 0 0px 50px; }
.team02 .txtbox .title05 { margin: 0px 0px 30px 0px; }
.team02 .txtbox .title05 h2{ letter-spacing:2px; }
.team02 .txtbox .title05 .position{ font-size: var(--font-f05); color:#666; margin: 0px 0px 5px 0px;}
.team02 .txtbox .title05:before {
    content: '';
    width: 100px;
}
.team02 .btn-box {
    justify-content: flex-end; margin: 30px 0px 0px 0px;
}
@media screen and (max-width: 1280px) {
.team02 .pic{ width:40%;}
.team02 .txtbox{ width:60%;  }
}
@media screen and (max-width: 700px) {
.team02 { flex-wrap: wrap;}
.team02 .pic{ width:100%; text-align:center; margin: 0px 0px 40px 0px;}
.team02 .pic img{ max-width:100%; width:auto;}
.team02 .txtbox{ width:100%; padding:0px 0 0px 0px;}
.team02 .btn-box {
    justify-content: center; 
}
}

.about01 .pic{ position: relative; }
.about01 .pic .icon{ width:100px; height:100px; background: var(--color-c01); border-radius: 10px; top: 7%; position: absolute; left: 35%; 
display: flex; justify-content: center; align-items: center;
}
.about01 .pic .icon.two{ top: 50%; left: auto; right:-8%;}
.about01 .pic .icon.three{ top: auto; bottom: 5%; left:43%;}
.about01 .pic .icon .med {
    content: "";
    width: 63px;
    height: 63px;
    background: url(../images/demo/about_icon01.png) no-repeat;
    background-size: 100% auto;
    display: block;
}
.about01 .pic .icon .res {
    content: "";
    width: 58px;
    height: 58px;
    background: url(../images/demo/about_icon02.png) no-repeat;
    background-size: 100% auto;
    display: block;
}
.about01 .pic .icon .care {
    content: "";
    width: 58px;
    height: 58px;
    background: url(../images/demo/healthcare.png) no-repeat;
    background-size: 100% auto;
    display: block;
}
@media screen and (max-width: 1000px) {
.about01 .pic .icon{ width:80px; height:80px;}
.about01 .pic .icon .med {
    content: "";
    width: 48px;
    height: 48px;
}
.about01 .pic .icon .res {
    content: "";
    width: 48px;
    height: 48px;
}
.about01 .pic .icon .care {
    content: "";
    width: 48px;
    height: 48px;
}
}
@media screen and (max-width: 600px) {
.about01 .pic .icon{ width:60px; height:60px;}
.about01 .pic .icon .med {
    content: "";
    width: 38px;
    height: 38px;
}
.about01 .pic .icon .res {
    content: "";
    width: 38px;
    height: 38px;
}
.about01 .pic .icon .care {
    content: "";
    width: 38px;
    height: 38px;
}
}

.about02 {
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; display: flex; justify-content: space-between; align-items: flex-start;
}
.about02 .left{
    width: 50%; padding:20px 0 0px 0;
    display: flex; justify-content:  flex-start; align-items: flex-start;
}
.about02 .ballbox{
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; 
    width: 450px;
  height: 450px;
  position: relative;
}
.about02 .ballbox .title{
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; 
    width: 100%; 
    font-size: var(--font-f08);
    font-weight: 500;
    text-align: center;
    top: 45%;
    position: absolute;
    z-index: 2;
}
.ball {
    background-color: rgba(0,0,0,0);
    border: 10px solid rgba(33, 135, 231, 0.5);
    opacity: .9;
    border-top: 5px solid rgba(0,0,0,0);
    border-left: 5px solid rgba(0,0,0,0);
    border-radius: 100%;
/*     box-shadow: 0 0 25px #2187e7; */
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    animation: spin-clockwise 5s infinite linear;
}

.ball1 {
    background-color: rgba(0,0,0,0);
    border: 7px solid rgba(33, 135, 231, 0.2);
    opacity: .9;
    border-top: 5px solid rgba(0,0,0,0);
    border-left: 5px solid rgba(0,0,0,0);
    border-radius: 100%;
/*     box-shadow: 0 0 15px #2187e7; */
    width: 80%;
    height: 80%;
    margin: 0 auto;
    position: absolute;
    top: 10%;
    left: 10%;
    animation: spin-counterclockwise 5.2s infinite linear;
}

.ball2 {
  margin: 0 auto;
  position: relative;
  top: -290px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  box-shadow: 5px 5px 20px #eee;
  width: 60%;
  height: 60%;
  position: absolute;
  top: 20%;
  left: 20%;
  animation: spin-clockwise 5.8s infinite linear;
}

@keyframes spin-clockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    };
}

@keyframes spin-counterclockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    };
}

.about02 .pie {
    margin: 30px 0px 0px -70px; padding:0px 0 0px 0; position: relative;
}
.about02 .pie li{
  width: 196px;
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; list-style: none; position: absolute;
}
.about02 .pie li:nth-child(1){
  top: -60px;
  left:-250px;
}
.about02 .pie li:nth-child(2){
  top: 50px;
  left:-70px;
}
.about02 .pie li:nth-child(3){
  top: 250px;
  left:-86px;
}
.about02 .pie li:nth-child(4){
  left:-260px;
  top: 335px;
}
.about02 .pie li:nth-child(5){
  left:-432px;
  top: 230px;
}
.about02 .pie li:before {
    content: "";
    display: block;
    width: 196px;
    height: 116px;
    background: url(../images/about_pie01.png) no-repeat;
    background-size: 100% auto;
    transform: rotate(1deg);
    z-index: 1;
}
.about02 .pie li:nth-child(2):before {
    content: "";
    background: url(../images/about_pie02.png) no-repeat;
    background-size: 100% auto;
    transform: rotate(64deg);
}
.about02 .pie li:nth-child(3):before {
    content: "";
    background: url(../images/about_pie03.png) no-repeat;
    background-size: 100% auto;
    transform: rotate(122deg);
}
.about02 .pie li:nth-child(4):before {
    content: "";
    background: url(../images/about_pie04.png) no-repeat;
    background-size: 100% auto;
    transform: rotate(182deg);
}
.about02 .pie li:nth-child(5):before {
    content: "";
    background: url(../images/about_pie05.png) no-repeat;
    background-size: 100% auto;
    transform: rotate(242deg);
}
.about02 .pie li .num {
    display: flex; justify-content: center; align-items: center; 
    font-size: var(--font-f22);
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Helvetica';
    font-weight: 800;
    z-index: 2;
    position: absolute;
    left: 40%;
    top:12%;
}
.about02 .pie li:nth-child(3) .num {
    left: 45%;
}
.about02 .pie li:nth-child(4) .num {
    top:18%;
}
.about02 .infobox{
    width: 50%;
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0px; 
}
.about02 .infobox ul{
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; list-style: none;
    counter-reset: line;
}
.about02 .infobox li{
    margin: 0px 0px 0px 0px; padding:15px 0 15px 0; list-style: none;
    border-bottom: 1px solid #c2ceda;
    display: flex; 
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.about02 .infobox li h2{ width: 100%; margin:0px 0px 10px 0px; padding:0px 0 0px 30px; font-size: var(--font-f09); color:var(--color-c01); font-weight: 500; position:relative;}
.about02 .infobox li h2:before {
  width: 22px;
  height: 22px;
  margin-right: 0.5em;
  background: var(--color-c01);
  border-radius: 50%;
  color: #fff;
  text-align:center;
  counter-increment: line;
  content: counter(line);
  display: flex; 
    justify-content: center;
    align-items: center;
    font-size: var(--font-f04); 
    position: absolute;
    left: 0; top: 4px;
    font-family: 'Helvetica';
}
.about02 .infobox li p{ width: 100%; margin:0px; padding:0px 0 0px 30px; font-size: var(--font-f05); color:#666; }
@media screen and (max-width: 1250px) {
.about02 .ballbox{
  width: 380px;
  height: 380px;
}
.about02 .pie {
    margin: 50px 0px 0px -35px;
}
.about02 .pie li{
  width: 150px;
}
.about02 .pie li:nth-child(1){
  top: -66px;
  left:-225px;
}
.about02 .pie li:nth-child(2){
  top: 25px;
  left:-85px;
}
.about02 .pie li:nth-child(3){
  top: 195px;
  left:-100px;
}
.about02 .pie li:nth-child(4){
  left:-240px;
  top: 255px;
}
.about02 .pie li:nth-child(5){
  left:-370px;
  top: 170px;
}
.about02 .pie li:before {
    content: "";
    width: 150px;
    height: 89px;
    transform: rotate(1deg);
}
.about02 .pie li:nth-child(2):before {
    content: "";
    transform: rotate(65deg);
}
.about02 .pie li:nth-child(3):before {
    content: "";
    transform: rotate(124deg);
}
.about02 .pie li:nth-child(4):before {
    content: "";
    transform: rotate(184deg);
}
.about02 .pie li:nth-child(5):before {
    content: "";
    transform: rotate(243deg);
}

.about02 .pie li .num {
    font-size: var(--font-f15);
}
.about02 .infobox li h2{ font-size: var(--font-f07); }
.about02 .infobox li h2:before {
    top: 1px;
}
.about02 .infobox li p{ font-size: var(--font-f04); }
}
@media screen and (max-width: 1000px) {
.about02 {
    flex-wrap: wrap;
}
.about02 .left{
    width: 100%; padding:20px 0 0px 0; margin: 0 0 0 -20px;
    justify-content:  center; 
}
.about02 .infobox{
    width: 100%;
    margin: 50px 0px 0px 0px;
}
}
@media screen and (max-width: 1000px) {
.about02 .ballbox .title{
    top: 40%;
}
}

.about03 {
    margin: 30px 0px 30px 0px; padding:0px 0 0px 0; display: flex; justify-content: space-between; align-items: center;
}
.about03 .abox01{
    width: 33.3%;
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; display: flex; justify-content: center; align-items: flex-start;
    order: 2;
}
.about03 .ballbox{
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; 
    width: 350px;
  height: 350px;
   display: flex; justify-content: center; align-items: center;
  position: relative;
  border-radius: 100%;
  background:  rgba(255, 255, 255, 0.99);
  box-shadow: 5px 5px 20px #eee;
  z-index: 1;
}
.about03 .ballbox .title{
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; 
    width: 100%; 
    font-size: var(--font-f08);
    font-weight: 800;
    text-align: center;
    top: 38%;
    position: absolute;
    z-index: 2;
}
.about03 .ballbox .title img{
    height: 60px; margin: 0px 0px 0px 20px;
}

.about03 .pie {
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; position: relative;
}
.about03 .pie li{
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; list-style: none; position: absolute; z-index: 3;
}
.about03 .pie li:nth-child(1){
  top: -50px;
  left:-225px;
}
.about03 .pie li:nth-child(2){
  top: 68px;
  left:-50px;
}
.about03 .pie li:nth-child(3){
  top: 250px;
  left:-100px;
}
.about03 .pie li:nth-child(4){
  top: 250px;
  left:-330px;
}
.about03 .pie li:nth-child(5){
  top: 68px;
  left:-400px;
}
.about03 .pie li:before {
    content: "精";
    width: 102px;
    height: 102px;
    background: #1b4fd6;
    border-radius: 100%;

    font-size: var(--font-f10);
    color: #fff;
    font-weight: 600;
    display: flex; justify-content: center; align-items: center;
}
.about03 .pie li:nth-child(2):before {
    content: "業";
    background: #117efe;
}
.about03 .pie li:nth-child(3):before {
    content: "信";
    background: #03e1ff;
}
.about03 .pie li:nth-child(4):before {
    content: "創";
    background: #20cf8e;
}
.about03 .pie li:nth-child(5):before {
    content: "凝";
    background: #009eff;
}
.about03 .abox02{
    width: 25.5%; order: 3;
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; display: flex; justify-content: flex-start; align-items: flex-start;
}
.about03 .abox03{
    width: 25.5%; order: 1;
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; display: flex; justify-content: flex-start; align-items: flex-start;
}
.about03 .infobox{
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; list-style: none;
    counter-reset: line;
}
.about03 .infobox li{
    margin: 0px 0px 0px 0px; padding:15px 0 15px 0; list-style: none;
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.about03 .infobox li h2{ width: auto; margin:0px 0px 10px 0px; padding:6px 20px 6px 20px; font-size: var(--font-f07); color:#fff; 
background:var(--color-c01); border-radius: 30px; display: flex; justify-content: center; align-items: center;
}
.about03 .infobox li h2.s02{ background:#03e1ff;}
.about03 .infobox li h2.s03{ background:#009eff;}
.about03 .infobox li h2.s04{ background:#20cf8e;}
.about03 .infobox li h2.s05{ background:#117efe;}
.about03 .infobox li h3{ width: 100%; margin:0px 0px 10px 0px; padding:0px 0 0px 0px; font-size: var(--font-f07); color:#444; font-family: 'Helvetica'; font-weight:800; text-align:center;}
.about03 .infobox li p{ width: 100%; margin:0px; padding:0px 0 0px 0px; font-size: var(--font-f04); color:#888; text-align:center;}
@media screen and (max-width: 1280px) {
.about03 .ballbox{
    width: 275px;
  height: 275px;
}
.about03 .pie li:before {
    width: 82px;
    height: 82px;
}
.about03 .pie li:nth-child(1){
  left:-180px;
}
.about03 .pie li:nth-child(2){
  top: 60px;
  left:-30px;
}
.about03 .pie li:nth-child(3){
  top: 220px;
  left:-80px;
}
.about03 .pie li:nth-child(4){
  top: 220px;
  left:-260px;
}
.about03 .pie li:nth-child(5){
  top: 60px;
  left:-320px;
}
}

@media screen and (max-width: 600px) {
.about03 .ballbox .title{
    top: 30%;
}
.about03 .ballbox{
    width: 230px;
  height: 230px;
}

.about03 .pie li:before {
    width: 62px;
    height: 62px;
}
.about03 .pie li:nth-child(1){
  top: -30px;
  left:-150px;
}
.about03 .pie li:nth-child(2){
  top: 60px;
  left:-20px;
}
.about03 .pie li:nth-child(3){
  top: 180px;
  left:-80px;
}
.about03 .pie li:nth-child(4){
  top: 180px;
  left:-200px;
}
.about03 .pie li:nth-child(5){
  top: 60px;
  left:-260px;
}

}

@media screen and (max-width: 1100px) {
.about03 {
    flex-wrap: wrap; margin: 100px 0px 30px 0px;
}
.about03 .abox01{
    width: 100%; order: 1; margin: 0px 0px 150px 0px; 
}
.about03 .abox02{
    width: 40%; order: 2;
}
.about03 .abox03{
    width: 40%; order: 3;
}
}
@media screen and (max-width: 600px) {
.about03 .abox02{
    width: 90%; 
}
.about03 .abox03{
    width: 90%; 
}
}

/* -聯絡我們--------------------------------------------------------------------------------------------------*/
.contact_box01 {
    margin: 0px 0px 0px 0px; padding:0px 0 0px 0; display: flex; justify-content: space-between; align-items: stretch;
}
.contact_box01 .left{
    margin: 0px 0px 0px 0px; padding:3% 6%; width: 45%;
}
.contact_box01 .left .welfare02 .info {
    width: 100%;
}
.contact_box01 .left .fab .fa-line {
    color: #2CCF54; font-size: var(--font-f05);
}
.contact_box01 .left .welfare02 {
    padding: 0px 0 0px 0;
}
.contact_box01 .left .welfare02 .info .contact-box span {
    font-size: var(--font-f04);
}
.contact_box01 .left .welfare02 .info .contact-box .list a{ display: flex; justify-content: flex-start; align-items: center; color:#333;}
.contact_box01 .left .con_pic {
    width: 100%; margin: 40px 0px 0px 0px; text-align: center;
}
.contact_box01 .left .con_pic img{
    width: 85%;
}
.contact_box01 .right{
    margin: 0px 0px 0px 0px; padding:3% 6% 3% 6%; width: 55%;
}
.contact_box01 .right .welfare02 {
    padding: 0px 0 0px 0;
}
.contact_box01 .right .welfare02 .info {
    width: 100%; padding: 0 0px 0px 0;
}
.contact_box01 .right .welfare02 .info .txt-box{
    width: 100%; display: flex; justify-content: flex-start; align-items:flex-end;
}
.contact_box01 .right .welfare02 .info .txt-box .title01 {
    width: auto;
}
.contact_box01 .right .welfare02 .info .txt-box .title01 h4 {
    font-size: var(--font-f07); 
}
.contact_box01 .right .welfare02 .info .txt-box .title01 h2 {
    font-size: var(--font-f13); white-space:nowrap;
}
.contact_box01 .right .welfare02 .info .txt-box .txt {
    padding:0px 0px 10px 30px; position: relative;
}
.contact_box01 .right .welfare02 .info .txt-box .txt .ps{
    color: #666; font-size: var(--font-f03); padding:4px 0px 0px 0px;
}
@media screen and (max-width: 1300px) {
.contact_box01 .left{
    padding:3% 4%; 
}
.contact_box01 .right{
    padding:3% 4%; 
}
}
@media screen and (max-width: 1024px) {
.contact_box01 {
    flex-wrap: wrap;
}
.contact_box01 .left{
    width: 100%;
}
.contact_box01 .left .con_pic {
    text-align: center;
}
.contact_box01 .left .con_pic img{
    width: 80%;
}
.contact_box01 .right{
    width: 100%;
}
}
@media screen and (max-width: 1024px) {
.contact_box01 .right .welfare02 .info .txt-box {
    flex-wrap: wrap;
}
.contact_box01 .right .welfare02 .info .txt-box .txt {
    padding: 0px 0px 10px 0px;
}
}

.contact_form { width: 100%; margin: 10px 0px 0px 0px; padding:0px 0px 0px 0;}
.contact_form p{ margin: 0px 0px 30px 0px; padding:0px 0 30px 0; font-size:var(--font-s04); border-bottom: 1px solid rgba(0,0,0,0.1); color:#666;}
.contact_form .btn-box{  margin: 0px 0 0px 0; 
display: flex; 
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.contact_form .btn-box .btn-style01, .contact_form .btn-box .btn-style02{
  margin: 0px 8px; 
}

.contact_info {
    margin: 0px;
    padding:0px 0 0px 50px;
    width:35%;
}
.contact_info .box {
    margin: 0px 0 0 0;
}
.contact_info .box .areaTitle {
    position: relative;
    display: block;
    font-size: var(--font-f07);
    font-weight: 500;
    padding-bottom: 22px;
    margin: 0px 0 20px 0;
    color: var(--color-c01);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.contact_info .box .areaTitle::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: var(--font-f07);
}
.contact_info .box p { padding: 0px 0px 11px 0px; margin: 0; color:  #666;}
.contact_info .box p i{ padding: 0px 10px 11px 0px; }
.contact_info .box p span{ color: #666;}
.contact_info .box p.add { margin: -15px 0px 0 0px; }


/* -隱私權條款------------------------------------------------------------------------------------------------*/
.privacy {  width:100%; margin: 0px auto 0px auto; padding:0px 0 0px 0; } 
.privacy .txtbox { width:100%; margin: 10px auto 30px auto; padding:0px 0 0px 0; color: #666; } 


/* -button---------------------------------------------------------------------------------------------------*/
.btn-box{ padding: 0; margin: 50px 0 0px 0; 
display: flex; 
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-style01{
  margin: 0px 0px; 
    padding: 9px 50px 11px 50px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: var(--font-f05);
    background: var(--color-c01);
    border: none;
    border-radius: 30px;
    -webkit-transition: all .2s;
    transition: all .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration:none !important;
    border: 1px solid var(--color-c01);
}
.btn-style01:hover{
    background: var(--color-c02);
    border: 1px solid var(--color-c02);
}
.btn-style01 a{
    color: #fff;
}

.btn-style02{
  margin: 0px 0px; 
    padding: 9px 50px 11px 50px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: var(--font-f05);
    background: #fff;
    border: none;
    border-radius: 30px;
    -webkit-transition: all .2s;
    transition: all .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration:none !important;
    border: 1px solid #333;
}
.btn-style02:hover{
    background: var(--color-c02);
    border: 1px solid var(--color-c02);
    color: #fff;
}
.btn-style02 a{
    color: #333;
}
@media screen and (max-width: 1000px) {
.btn-box{ margin: 30px 0 0px 0;}
.btn-style01{
    font-size: 15px;
}

.btn-style01{
    padding: 9px 30px 11px 30px;
}
.btn-style02{
  padding: 9px 30px 11px 30px;
}
}
@media screen and (max-width: 700px) {
.btn-style01{
    padding: 9px 30px 11px 30px;
}
.btn-style02{
  padding: 9px 30px 11px 30px;
}
}

.icon_pdf { 
  transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.icon_pdf:before { content: "\F756"; font-family: bootstrap-icons ; color: var(--color-c01); font-size:var(--font-f10); }
.icon_pdf:hover { transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
}
.icon_video:before { content: "\F4F1"; font-family: bootstrap-icons ; color: var(--color-c01); font-size:var(--font-f10); }
.icon_download:before { content: "\f019"; font-family: 'Font Awesome 5 Free'; font-weight: 900;  color: var(--color-c01); font-size:var(--font-f10); }
.icon_arrow:after{
  content: ""; margin: 0px 0 0px 0px; 
  width: 15px; height: 12px; display: block;
 background: url(../images/right-arrow-blue.png) no-repeat center center;
    background-size: 100% auto;
}
.icon_line:after{
  content: ""; margin: 0px 0 0px 0px; 
  width: 28px; height: 28px; display: block;
 background: url(../images/line.png) no-repeat center center;
    background-size: 100% auto;
}
.icon_chat:before { content: "\F249"; font-family: bootstrap-icons ; color: var(--color-c01); font-size:var(--font-f10); }

/*頁碼*/
div.page {
  font-family: 'Helvetica';
  font-size: 15px; 
  padding: 0px;
  margin:50px 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: 5px; 
  width: 30px; height: 30px; border: 1px solid #ddd;
  display: flex;
    justify-content: center;
    align-items: center;
}
div.page a:hover {
  color: #fff; background:var(--color-c01); border: 1px solid var(--color-c01);
}
div.page a.current {
  color: #fff; background:var(--color-c01); border: 1px solid var(--color-c01);
}

/*404*/
.e404box {
  width: 90%;
  max-width: 700px;
  background: #FFF;
  padding: 50px 30px;
  margin: 10% auto 0 auto;
  display: block;
  border-radius: 10px;
  -moz-box-shadow: 3px 3px 2px rgba(0%, 0%, 0%, 0.1);
  -webkit-box-shadow: 3px 3px 2px rgba(0%, 0%, 0%, 0.1);
  box-shadow: 0 0 40px rgba(0%, 0%, 0%, 0.1)
}

.e404 {
  width: 100%;
  display: block;
  padding: 0;
  height: auto;
  overflow: hidden;
  text-align: center;
}

.e404 .pic {
  width: 100%;
}

.e404 .pic img {
  width: 180px;
}

.e404 .textbox {
  width: 100%;
  margin: 10px 0px 0px 0px;
  height: auto;
  overflow: hidden;
}

.e404 .textbox dd {
  width: 100%;
  display: block;
  margin: 5px 0px;
  padding: 0;
  list-style: none
}

.e404 .textbox dd.error {
  font-family: 'Helvetica';
  font-size: var(--font-f17);
  font-weight: 700;
  color: var(--color-c01);
  margin: 25px 0 0;
  vertical-align: top
}

.e404 .textbox dd.text {
  font-size:var(--font-f04);
  color: #666;
}

.e404 .textbox dd.text a {
  color: var(--color-c01);
}

.e404 .textbox dd.topbtn {
  vertical-align: top;
  margin: 18px 0;
  display: flex; justify-content: center; align-items: center;
}
.e404 .textbox dd.topbtn .icon_arrow_right:before { margin:0px 0 0 8px;}
