﻿@charset "UTF-8";
:root {
    --mg:#06a42d;
    --gary1:#555555;
    --lg:#95d8a3;
}
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC&display=swap");
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span {
  font-family: '微軟正黑體'; }

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold; }

a {
  -o-transition: all .4s ease;
  transition: all .4s ease;
  -moz-transition: all .4s ease;
  -webkit-transition: all .4s ease;
  text-decoration: none;
  cursor: pointer; }

ul {
  margin: 0;
  padding: 0; }
  ul li {
    list-style-type: none; }

p {
  font-size: 1rem; }

.line-height-normal {
  line-height: normal; }

.text-orange {
  color: #FF8249; }

.text-blue {
  color: #005e98; }

.text-green {
  color: #429400; }

.text-red {
  color: #ff0011; }

.text-gray {
  color: #777; }

.text-purple {
  color: #8c2da3; }

.text-bold {
  font-weight: bold; }

.text1 {
  font-size: 1rem; }

.text2 {
  font-size: 2rem; }

.text3 {
  font-size: 3rem; }

.text4 {
  font-size: 4rem; }

.text6 {
  font-size: 6rem; }

.text12 {
  font-size: 12px; }

.text13 {
  font-size: 13px !important; }

.text14 {
  font-size: 14px !important; }

.text16 {
  font-size: 16px !important; }

.text18 {
  font-size: 18px !important; }

.text22 {
  font-size: 22px; }

.text24 {
  font-size: 24px; }

.text26 {
  font-size: 26px; }

.text28 {
  font-size: 28px; }

.text32 {
  font-size: 32px; }

.text100 {
  font-size: 100px; }

.line-h38 {
  line-height: 38px; }

.w-100 {
  width: 100% !important; }

.w-80 {
  width: 80% !important; }

.w-60 {
  width: 60% !important; }

.w-50 {
  width: 50% !important; }

.w-25 {
  width: 25% !important; }

.w-min-50px {
  min-width: 50px !important; }

.w-80px {
  width: 80px !important; }

.w-120px {
  width: 120px !important; }

.w-175px {
  width: 175px !important;
  line-height: 30px !important; }

.w-222px {
  width: 222px !important;
  text-align: left; }

.w-320px {
  width: 320px !important;
  height: 64px; }

.w-400px {
  width: 400px !important; }

.w-100-img img {
  width: 100% !important; }

.h-100 {
  height: 100% !important; }

.h-80 {
  height: 80% !important; }

.h-75 {
  height: 75% !important; }

.h-60 {
  height: 60% !important; }

.h-50 {
  height: 50% !important; }

.h-25 {
  height: 25% !important; }

.h-45px {
  height: 45px !important; }

.h-72px {
  height: 72px !important; }

.h-120px {
  min-height: 120px !important; }

.h-138px {
  min-height: 138px !important; }

.h-170px {
  min-height: 170px !important; }

.h-175px {
  min-height: 175px !important; }

.h-195px {
  min-height: 195px; }

.h-214px {
  min-height: 214px; }

.h-240px {
  min-height: 240px !important; }

.h-320px {
  min-height: 320px !important; }

.h-400px {
  min-height: 400px !important; }

.over-text {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap; }

.over-2 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.over-3 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 80px; }

.over-4 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  height: 96px; }

.over-5 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  height: 110px; }

.over-6 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical; }

.number-items {
  counter-reset: num; }
  .number-items .number-list > li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px; }
    .number-items .number-list > li:before {
      counter-increment: num;
      content: counter(num) ".";
      font-size: 20px;
      font-style: italic;
      color: #dd5500;
      font-weight: bolder;
      position: absolute;
      top: -4px;
      left: 0; }

ul.circle {
  padding-left: 20px; }
  ul.circle > li {
    list-style-type: circle;
    margin-bottom: 10px; }

ul.decimal {
  padding-left: 20px; }
  ul.decimal > li {
    list-style-type: decimal;
    margin-bottom: 10px; }

ul.disc {
  padding-left: 20px; }
  ul.disc > li {
    list-style-type: disc;
    margin-bottom: 10px; }
    ul.disc > li a {
      display: block; }
      ul.disc > li a:hover {
        color: #dd5500;
        -webkit-text-decoration-line: underline;
        text-decoration-line: underline; }

ul.cjk {
  padding-left: 20px; }
  ul.cjk > li {
    list-style-type: cjk-ideographic;
    margin-bottom: 10px; }

.border-n {
  border: none !important; }

.border-tb {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000; }

.border-t-g {
  border-top: 1px solid #ddd; }

.border-r {
  border-right: 1px solid #ededed; }

.border-b {
  border-bottom: 1px solid #ccc; }

.border-b-g {
  border-bottom: 1px solid #ededed; }

.border-b-2b {
  border-bottom: 2px solid #0f51a3; }

.border-t-w {
  border-top: 1px solid #fff; }

.border-md-r {
  border-bottom: 1px solid #000; }

@media (min-width: 992px) {
  .border-md-r {
    border-right: 1px solid #000;
    border-bottom: none; } }

.border-back {
  position: relative; }
  .border-back span {
    background: #fff;
    padding: 0 10px;
    font-size: inherit;
    font-weight: inherit; }
  .border-back:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1; }

.underline {
  text-decoration: underline; }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

@media (max-width: 768px) {
  .btn-sm-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; } }

@media (min-width: 1200px) {
  .w-md-100 {
    width: 100% !important; }
  .w-md-80 {
    width: 80% !important; }
  .w-md-60 {
    width: 60% !important; }
  .w-md-50 {
    width: 50% !important; }
  .w-md-25 {
    width: 25% !important; }
  .w-md-80px {
    width: 80px !important; }
  .w-md-120px {
    width: 120px !important; }
  .w-md-175px {
    width: 175px !important;
    line-height: 40px !important; }
  .w-md-240px {
    width: 240px !important; }
  .w-md-320px {
    width: 320px !important;
    height: 64px; }
  .w-md-400px {
    width: 400px !important; } }

@media (max-width: 768px) {
  .w-sm-100 {
    width: 100% !important; }
  .w-sm-88 {
    width: 88% !important; }
  .w-sm-80 {
    width: 80% !important; }
  .w-sm-60 {
    width: 60% !important; }
  .w-sm-50 {
    width: 50% !important; }
  .w-sm-25 {
    width: 25% !important; }
  .w-sm-80px {
    width: 80px !important; }
  .w-sm-120px {
    width: 120px !important; }
  .w-sm-175px {
    width: 175px !important;
    line-height: 40px !important; }
  .w-sm-240px {
    width: 240px !important; }
  .w-sm-320px {
    width: 320px !important;
    height: 64px; }
  .w-sm-400px {
    width: 400px !important; } }
.just-sb{
  justify-content: space-between !important;
}


.customer-btn,
.return-custom-btn {
  background: #e62e04 none repeat scroll 0 0;
  border: medium none;
  color: #ffffff;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
  padding: 10px 30px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease-in 0s;
  -o-transition: all 300ms ease-in 0s;
  transition: all 300ms ease-in 0s;
  cursor: pointer;
  border-radius: 4px; }

.btn-custom01 {
  background: #aed5da;
  opacity: .8; }
  .btn-custom01:hover {
    color: #000;
    opacity: 1; }

.btn-custom02 {
  background: #fff;
  opacity: .8; }
  .btn-custom02:hover {
    color: #000;
    opacity: 1; }

.btn-custom0-sub {
  background: #ff0011;
  color: #fff;
  opacity: .8;
  padding: 7.5px 55px;
  border-radius: 0; }
  .btn-custom0-sub:hover {
    color: #fff;
    opacity: 1; }



.csr-album-modal .modal-content {
  background: none;
  border: none;
  border-radius: 0; }
  .csr-album-modal .modal-content .modal-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .csr-album-modal .modal-content .modal-header h5 {
      color: #fff;
      font-size: 27px; }
    .csr-album-modal .modal-content .modal-header button {
      color: #cdcdcd;
      font-size: 15px;
      text-shadow: none; }
      .csr-album-modal .modal-content .modal-header button:focus {
        outline: 0; }
  .csr-album-modal .modal-content .modal-body {
    background-color: #fff;
    padding: 2rem 2rem .5rem 2rem;
    overflow: hidden; }
    @media (max-width: 768px) {
      .csr-album-modal .modal-content .modal-body .album-slider-img {
        margin-bottom: 15px; } }
    .csr-album-modal .modal-content .modal-body .album-slider-img .img-wrap .img-item {
      padding-top: 68%; }
    .csr-album-modal .modal-content .modal-body .album-slider-img .slick-prev, .csr-album-modal .modal-content .modal-body .album-slider-img .slick-prev:focus, .csr-album-modal .modal-content .modal-body .album-slider-img .slick-prev:hover {
      left: -7.5px;
      width: 36px;
      height: 36px;
      background: url(../images/main_controls3.png) no-repeat; }
    .csr-album-modal .modal-content .modal-body .album-slider-img .slick-next, .csr-album-modal .modal-content .modal-body .album-slider-img .slick-next:focus, .csr-album-modal .modal-content .modal-body .album-slider-img .slick-next:hover {
      right: -7.5px;
      width: 36px;
      height: 36px;
      background: url(../images/main_controls3.png) -36px; }
    .csr-album-modal .modal-content .modal-body .album-slider-nav .img-wrap {
      margin-bottom: 30px;
      cursor: pointer; }
      .csr-album-modal .modal-content .modal-body .album-slider-nav .img-wrap .img-item {
        padding-top: 45%;
        margin-right: 5px; }
      .csr-album-modal .modal-content .modal-body .album-slider-nav .img-wrap:hover, .csr-album-modal .modal-content .modal-body .album-slider-nav .img-wrap.slick-current {
        position: relative;
        z-index: 1; }
        .csr-album-modal .modal-content .modal-body .album-slider-nav .img-wrap:hover:before, .csr-album-modal .modal-content .modal-body .album-slider-nav .img-wrap.slick-current:before {
          background: #f04c59;
          width: 100%;
          height: 100%;
          position: absolute;
          content: '';
          display: block;
          top: 6px;
          left: 5px;
          z-index: -1; }
    .csr-album-modal .modal-content .modal-body .album-slider-nav2 .img-wrap {
      margin-bottom: 15px;
      cursor: pointer; }
      .csr-album-modal .modal-content .modal-body .album-slider-nav2 .img-wrap .img-item {
        padding-top: 75%;
        margin: 0 5px; }
      .csr-album-modal .modal-content .modal-body .album-slider-nav2 .img-wrap:hover, .csr-album-modal .modal-content .modal-body .album-slider-nav2 .img-wrap.slick-current {
        position: relative;
        z-index: 1; }
        .csr-album-modal .modal-content .modal-body .album-slider-nav2 .img-wrap:hover:before, .csr-album-modal .modal-content .modal-body .album-slider-nav2 .img-wrap.slick-current:before {
          background: #f04c59;
          width: calc(100% - 10px);
          height: 100%;
          position: absolute;
          content: '';
          display: block;
          top: 3px;
          left: 8px;
          z-index: -1; }

.modal-backdrop.show {
  opacity: .7; }



.ml-0 {
  margin-left: 0px !important; }

.ml-10 {
  margin-left: 10px !important; }

.ml-15 {
  margin-left: 15px !important; }

.ml-20 {
  margin-left: 20px !important; }

.ml-30 {
  margin-left: 30px !important; }

.ml-40 {
  margin-left: 40px !important; }

.ml-48 {
  margin-left: 48px !important; }

.ml-50 {
  margin-left: 50px !important; }

.ml-60 {
  margin-left: 60px !important; }

.ml-70 {
  margin-left: 70px !important; }

.ml-80 {
  margin-left: 80px !important; }

.ml-90 {
  margin-left: 90px !important; }

.ml-100 {
  margin-left: 100px !important; }

/*------Margin right-------*/
.mr-0 {
  margin-right: 0px !important; }

.mr-10 {
  margin-right: 10px !important; }

.mr-15 {
  margin-right: 15px !important; }

.mr-20 {
  margin-right: 20px !important; }

.mr-30 {
  margin-right: 30px !important; }

.mr-40 {
  margin-right: 40px !important; }

.mr-50 {
  margin-right: 50px !important; }

.mr-60 {
  margin-right: 60px !important; }

.mr-70 {
  margin-right: 70px !important; }

.mr-80 {
  margin-right: 80px !important; }

.mr-90 {
  margin-right: 90px !important; }

.mr-100 {
  margin-right: 100px !important; }

/*------Margin Top-------*/
.mt-0 {
  margin-top: 0px !important; }

.mt-7 {
  margin-top: 7px !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-15 {
  margin-top: 15px !important; }

.mt-20 {
  margin-top: 20px !important; }

.mt-30 {
  margin-top: 30px !important; }

.mt-35 {
  margin-top: 35px !important; }

.mt-40 {
  margin-top: 40px !important; }

.mt-45 {
  margin-top: 45px !important; }

.mt-50 {
  margin-top: 50px !important; }

.mt-52 {
  margin-top: 52px !important; }

.mt-60 {
  margin-top: 60px !important; }

.mt-70 {
  margin-top: 70px !important; }

.mt-80 {
  margin-top: 80px !important; }

.mt-90 {
  margin-top: 90px !important; }

.mt-100 {
  margin-top: 100px !important; }

.mt-110 {
  margin-top: 110px !important; }

.mt-180 {
  margin-top: 180px !important; }

/*------Margin Bottom-------*/
.mb-0 {
  margin-bottom: 0px !important; }

.mb-5 {
  margin-bottom: 5px !important; }

.mb-7-5 {
  margin-bottom: 7.5px !important; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-25 {
  margin-bottom: 25px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-35 {
  margin-bottom: 35px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mb-58 {
  margin-bottom: 58px !important; }

.mb-60 {
  margin-bottom: 60px !important; }

.mb-70 {
  margin-bottom: 70px !important; }

.mb-80 {
  margin-bottom: 80px !important; }

.mb-83 {
  margin-bottom: 83px !important; }

.mb-85 {
  margin-bottom: 85px !important; }

.mb-90 {
  margin-bottom: 90px !important; }

.mb-100 {
  margin-bottom: 100px !important; }

.mtb-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important; }

/*------Padding all-------*/
.p-60 {
  padding: 60px !important; }

/*------Padding left-------*/
.pl-0 {
  padding-left: 0px !important; }

.pl-10 {
  padding-left: 10px !important; }

.pl-15 {
  padding-left: 15px !important; }

.pl-20 {
  padding-left: 20px !important; }

.pl-30 {
  padding-left: 30px !important; }

.pl-40 {
  padding-left: 40px !important; }

.pl-50 {
  padding-left: 50px !important; }

.pl-60 {
  padding-left: 60px !important; }

.pl-70 {
  padding-left: 70px !important; }

.pl-80 {
  padding-left: 80px !important; }

.pl-90 {
  padding-left: 90px !important; }

.pl-100 {
  padding-left: 100px !important; }

/*------Padding right-------*/
.pr-0 {
  padding-right: 0px !important; }

.pr-10 {
  padding-right: 10px !important; }

.pr-15 {
  padding-right: 15px !important; }

.pr-20 {
  padding-right: 20px !important; }

.pr-30 {
  padding-right: 30px !important; }

.pr-40 {
  padding-right: 40px !important; }

.pr-50 {
  padding-right: 50px !important; }

.pr-60 {
  padding-right: 60px !important; }

.pr-70 {
  padding-right: 70px !important; }

.pr-80 {
  padding-right: 80px !important; }

.pr-90 {
  padding-right: 90px !important; }

.pr-100 {
  padding-right: 100px !important; }

/*------Padding Left Right-------*/
.plr-0 {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.plr-15 {
  padding-left: 15px !important;
  padding-right: 15px !important; }

.plr-25 {
  padding-left: 25px !important;
  padding-right: 25px !important; }

.plr-35 {
  padding-left: 35px !important;
  padding-right: 35px !important; }

.plr-40 {
  padding-left: 40px !important;
  padding-right: 40px !important; }

.plr-45 {
  padding-left: 45px !important;
  padding-right: 45px !important; }

.plr-50 {
  padding-left: 50px !important;
  padding-right: 50px !important; }

.plr-80 {
  padding-left: 80px !important;
  padding-right: 80px !important; }

.plr-100 {
  padding-left: 100px !important;
  padding-right: 100px !important; }

/*------Padding Top-------*/
.pt-0 {
  padding-top: 0px !important; }

.pt-10 {
  padding-top: 10px !important; }

.pt-15 {
  padding-top: 15px !important; }

.pt-20 {
  padding-top: 20px !important; }

.pt-25 {
  padding-top: 25px !important; }

.pt-30 {
  padding-top: 30px !important; }

.pt-40 {
  padding-top: 40px !important; }

.pt-45 {
  padding-top: 45px !important; }

.pt-50 {
  padding-top: 50px !important; }

.pt-60 {
  padding-top: 60px !important; }

.pt-70 {
  padding-top: 70px !important; }

.pt-75 {
  padding-top: 75px !important; }

.pt-80 {
  padding-top: 80px !important; }

.pt-90 {
  padding-top: 90px !important; }

.pt-94 {
  padding-top: 94px !important; }

.pt-95 {
  padding-top: 95px !important; }

.pt-100 {
  padding-top: 100px !important; }

.pt-110 {
  padding-top: 110px !important; }

.pt-140 {
  padding-top: 140px !important; }

/*------Padding-------*/
.p-15 {
  padding: 15px !important; }

.p-50 {
  padding: 50px !important; }

.p-48 {
  padding: 48px !important; }

.p-40 {
  padding: 40px !important; }

.p-38 {
  padding: 38px !important; }

.p-30 {
  padding: 30px !important; }

/*------Padding Bottom-------*/
.pb-0 {
  padding-bottom: 0px !important; }

.pb-10 {
  padding-bottom: 10px !important; }

.pb-15 {
  padding-bottom: 15px !important; }

.pb-20 {
  padding-bottom: 20px !important; }

.pb-25 {
  padding-bottom: 25px !important; }

.pb-30 {
  padding-bottom: 30px !important; }

.pb-40 {
  padding-bottom: 40px !important; }

.pb-45 {
  padding-bottom: 45px !important; }

.pb-50 {
  padding-bottom: 50px !important; }

.pb-55 {
  padding-bottom: 55px !important; }

.pb-58 {
  padding-bottom: 58px !important; }

.pb-60 {
  padding-bottom: 60px !important; }

.pb-65 {
  padding-bottom: 65px !important; }

.pb-70 {
  padding-bottom: 70px !important; }

.pb-75 {
  padding-bottom: 75px !important; }

.pb-80 {
  padding-bottom: 80px !important; }

.pb-90 {
  padding-bottom: 90px !important; }

.pb-95 {
  padding-bottom: 95px !important; }

.pb-100 {
  padding-bottom: 100px !important; }

.pb-110 {
  padding-bottom: 110px !important; }

.pb-120 {
  padding-bottom: 120px !important; }

.pb-130 {
  padding-bottom: 130px !important; }

.pb-140 {
  padding-bottom: 140px !important; }

/*------Padding  Top Bottom-------*/
.ptb-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important; }

.ptb-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

.ptb-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important; }

.ptb-11 {
  padding-top: 11px !important;
  padding-bottom: 11px !important; }

.ptb-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important; }

.ptb-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important; }

.ptb-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.ptb-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important; }

.ptb-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important; }

.ptb-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important; }

.ptb-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important; }

.ptb-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important; }

.ptb-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important; }

.ptb-58 {
  padding-top: 58px !important;
  padding-bottom: 58px !important; }

.ptb-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important; }

.ptb-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important; }

.ptb-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important; }

.ptb-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important; }

.ptb-92 {
  padding-top: 92px !important;
  padding-bottom: 92px !important; }

.ptb-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important; }

.ptb-110 {
  padding-top: 110px !important;
  padding-bottom: 110px !important; }

.ptb-118 {
  padding-top: 118px !important;
  padding-bottom: 118px !important; }

.ptb-120 {
  padding-top: 120px !important;
  padding-bottom: 120px !important; }

.ptb-130 {
  padding-top: 130px !important;
  padding-bottom: 130px !important; }

.ptb-132 {
  padding-top: 132px !important;
  padding-bottom: 132px !important; }

.ptb-140 {
  padding-top: 140px !important;
  padding-bottom: 140px !important; }

.ptb-150 {
  padding-top: 150px !important;
  padding-bottom: 150px !important; }

.ptb-160 {
  padding-top: 160px !important;
  padding-bottom: 160px !important; }

.ptb-180 {
  padding-top: 180px !important;
  padding-bottom: 180px !important; }

.ptb-200 {
  padding-top: 200px !important;
  padding-bottom: 200px !important; }

.ptb-240 {
  padding-top: 240px !important;
  padding-bottom: 240px !important; }

@media (min-width: 768px) {
  .pl-md-0 {
    padding-left: 0 !important; }
  .pr-md-0 {
    padding-right: 0 !important; }
  .pl-md-30 {
    padding-left: 30px !important; }
  .mb-lg-100 {
    margin-bottom: 100px !important; } }

@media (max-width: 768px) {
  .mb-sm-30 {
    margin-bottom: 30px; } }

.header .pc-header .top-menu .logo {
  display: none; }
  @media (max-width: 991px) {
    .header .pc-header .top-menu .logo {
      display: block;
      height: 60px; }
      .header .pc-header .top-menu .logo img {
        width: 200px;
        padding: 10px 0 0 10px; } }

body{
  background-color: #f8f8f8;
}

@media (min-width: 991px) {
  
  
  .header-w{
    background-color: #ffffffcc;
    border-radius: 20px;
    padding-left: 65px;
    padding-right: 65px;
  }
  .header .pc-header .top-menu .collapse {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 75px;
    padding-left: 90px;
    padding-right: 85px;
    z-index: 99999;

  }
    .header .pc-header .top-menu .collapse .nav-items {
      position: relative; }
      .header .pc-header .top-menu .collapse .nav-items .nav-link {
        color: var(--mg);
        font-size: 18px;
        padding: 20px 25px;
        display: block;
        position: relative;
      }
      .header .pc-header .top-menu .collapse .nav-items:hover{
        background: #fff;
        border-radius: 20px;
      }
      .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul {
        position: absolute;
        width: 100%;
        background: #fff;
        top: 53px;
        left: 0;
        z-index: 1;
        display: none; 
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
      }
        .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul ul {
          width: 100%; }
          .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul ul li {
            padding: 0; } }
          @media (min-width: 991px) and (max-width: 990px) {
            .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul ul li {
              width: 100%; } }

@media (min-width: 991px) {
            .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul ul li a {
              color: var(--lg);
              font-weight: bolder;
              font-size: 17px;
              padding: 20px 25px;
              display: block; }
              .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul ul li a:hover {
                text-decoration: underline var(--mg);
              }
            }
      @media (min-width: 991px) and (max-width: 990px) {
        .header .pc-header .top-menu .collapse .nav-items .nav_mb_ul {
          position: relative;
          padding-top: 0px;
          margin-bottom: 0;
          list-style: none;
          width: 100%;
          float: none;
          top: initial;
          left: initial;
          z-index: 1;
          display: block; } }

@media (min-width: 991px) {
      .header .pc-header .top-menu .collapse .nav-items:hover .nav_mb_ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
    .header .pc-header .top-menu .collapse .top-icon-list .top-icon-link a {
      position: relative;
      display: block;
      padding: 15px;
      font-size: 18px; }
      .header .pc-header .top-menu .collapse .top-icon-list .top-icon-link a .bag-number {
        position: absolute;
        min-width: 20px;
        height: 20px;
        background: red;
        color: #fff;
        left: 75px;
        bottom: 5px;
        border-radius: 20px;
        font-size: 12px;
        padding: 2px;
        text-align: center;
        line-height: 16px; } }

@media (min-width: 1024px) {
  .header .pc-header .top-menu .has-hover {
    position: relative; }
    .header .pc-header .top-menu .has-hover:before {
      bottom: -6px;
      left: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-bottom-color: rgba(0, 54, 134, 0.9);
      border-width: 10px;
      margin-left: -10px;
      display: none;
      opacity: 0; }
    .header .pc-header .top-menu .has-hover .hover-wrap {
      position: absolute;
      width: 100vw;
      top: 33px;
      left: 60%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%);
      background: rgba(0, 54, 134, 0.9);
      z-index: 9;
      display: none;
      opacity: 0; } }
    @media (min-width: 1024px) and (min-width: 1200px) {
      .header .pc-header .top-menu .has-hover .hover-wrap {
        left: -95%; } }

@media (min-width: 1024px) {
      .header .pc-header .top-menu .has-hover .hover-wrap .hover-list {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 25px 0;
        border-bottom: 1px solid #fff; }
        .header .pc-header .top-menu .has-hover .hover-wrap .hover-list:last-child {
          border: none; }
        .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-title {
          padding-left: 15px;
          width: 15%;
          text-align: left; }
          .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-title h4 {
            color: #fff; }
          .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-title h5 {
            color: #529dff;
            font-weight: bolder; }
        .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun {
          width: 85%; }
          .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li {
            width: 20%;
            margin: 0; }
            .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li a {
              display: block;
              padding: 0 25px;
              border: none; }
              .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li a .img-wrap {
                margin-bottom: 15px; }
                .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li a .img-wrap .img-item {
                  padding-top: 60%; }
              .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li a h4 {
                color: #fff;
                margin-bottom: 0;
                text-align: left; }
              .header .pc-header .top-menu .has-hover .hover-wrap .hover-list .hover-list-meun ul li a:hover .img-item {
                -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=0, Color=#F8F8F8)";
                /*IE 8*/
                -moz-box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.7);
                /*FF 3.5+*/
                -webkit-box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.7);
                /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
                box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.7);
                /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
                filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color=#F8F8F8);
                /*IE 5.5-7*/ }
    .header .pc-header .top-menu .has-hover:hover .hover-wrap, .header .pc-header .top-menu .has-hover:hover:before {
      display: block;
      opacity: 1; } }
  @media (max-width: 991px) {
    .pc-header{display: none;}
  }


  .header .mo-header .top-menu .logo {
    display: none; }
    @media (max-width: 991px) {
      .header .mo-header .top-menu .logo {
        display: block;
        height: 60px; 
        padding: 5px;
      }
      .header .mo-header .top-menu .logo img {
        height: 100%;
        padding: 5px; 
      } 
    }

@media (min-width: 991px) {
  .mo-header{display: none;}
   }

.header .top-title {
  background-color: #005eac;
  height: 45px; }
  .header .top-title ul.marquee {
    display: block;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    position: relative;
    overflow: hidden;
    height: 45px;
    width: 100%; }
    .header .top-title ul.marquee li {
      position: absolute;
      top: -999em;
      display: block;
      white-space: nowrap;
      color: #fff;
      font-size: 20px;
      line-height: 45px;
      text-align: center;
      left: 0; }

.header .fixd-header {
  display: none; }
  .header .fixd-header .logo {
    width: 150px; }
    .header .fixd-header .logo img {
      width: 100%; }
  @media (min-width: 991px) {
    .header .fixd-header {
      background: #fff; }
      .header .fixd-header .nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        .header .fixd-header .nav .nav-items {
          font-size: 18px;
          color: #000;
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1;
          position: relative;
           }
          .header .fixd-header .nav .nav-items .nav-link {
            color: #fff;
            font-size: 18px;
            padding: 20px 30px;
            display: block;
            position: relative;
            white-space: nowrap; }
            .header .fixd-header .nav .nav-items:hover{
              background-color: var(--mg);
              border-radius: 20px;
            }
          .header .fixd-header .nav .nav-items .nav_mb_ul {
            position: absolute;
            width: 100%;
            background: var(--mg);
            top: 51px;
            left: 0;
            z-index: 1;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            display: none; 
            border-bottom-right-radius: 20px;
            border-bottom-left-radius: 20px;
          }
          .header .fixd-header .nav .nav-items .nav_mb_ul li{
            padding: 20px 30px;
          }
          .header .fixd-header .nav .nav-items .nav_mb_ul li a{
            color: var(--lg);
            font-size: 17px;

          }
          .header .fixd-header .nav .nav-items .nav_mb_ul li:hover a{
            text-decoration: underline #fff;
          }
            .header .fixd-header .nav .nav-items .nav_mb_ul .nav {
              width: 100%;
              max-width: 1200px;
              -ms-flex-pack: distribute;
              justify-content: space-around; }
              .header .fixd-header .nav .nav-items .nav_mb_ul .nav li {
                padding: 0; } }
            @media (min-width: 991px) and (max-width: 990px) {
              .header .fixd-header .nav .nav-items .nav_mb_ul .nav li {
                width: 100%; } }
  @media (min-width: 991px) {
                .header .fixd-header .nav .nav-items .nav_mb_ul .nav li a {
                  color: #333;
                  font-weight: bolder;
                  padding: 10px;
                  display: block; }
                  .header .fixd-header .nav .nav-items .nav_mb_ul .nav li a:hover {
                    color: #004098; }
                .header .fixd-header .nav .nav-items .nav_mb_ul .nav li:last-child a {
                  border: none; } }
  @media (min-width: 991px) {
          .header .fixd-header .nav .nav-items:hover .nav_mb_ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; }
        .header .fixd-header .nav .top-icon-list .top-icon-link a {
          position: relative;
          display: block;
          padding: 15px;
          font-size: 18px; }
          .header .fixd-header .nav .top-icon-list .top-icon-link a .bag-number {
            position: absolute;
            min-width: 20px;
            height: 20px;
            background: red;
            color: #fff;
            left: 75px;
            bottom: 5px;
            border-radius: 20px;
            font-size: 12px;
            padding: 2px;
            text-align: center;
            line-height: 16px; }
      .header .fixd-header.stick {
        display: block; } }
.fix-con{
  padding-left: 90px;
  padding-right: 75px;
}
.header .stick {
  padding-top: 35px;
  padding-bottom: 20px;
  position: fixed;
  background-color: #06a42dB3;
  width: 100%;
  top: 0;
  z-index: 1039;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=0, Color=#000000)";
  /*IE 8*/
  }

.header .top-icon-list {
  position: absolute;
  right: 10px;
  top: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .header .top-icon-list .top-icon-link .language {
    border: none; }
  .header .top-icon-list .top-icon-link a {
    display: block;
    padding: 10px;
    opacity: .5;
    color: #4c3d39; }
    .header .top-icon-list .top-icon-link a i {
      font-size: 24px;
      color: #4c3d39; }
      .header .top-icon-list .top-icon-link a i.fa-line {
        font-size: 28px; }
    .header .top-icon-list .top-icon-link a:hover {
      opacity: 1; }
    .header .top-icon-list .top-icon-link a .bag-number {
      position: absolute;
      min-width: 20px;
      height: 20px;
      background: red;
      color: #fff;
      right: 5px;
      bottom: 5px;
      border-radius: 20px;
      font-size: 12px;
      padding: 2px;
      text-align: center;
      line-height: 16px; }



@media (max-width: 991px) {
  .header .mo-header {
    position: fixed;
    width: 100%;
    height: 60px;
    z-index: 9999;
    background: #06a42dB3;
    top: 0;
    left: 0; }
    .header .mo-header .top-menu .search-input2 {
      position: absolute;
      right: 70px;
      top: 20px;
      z-index: 5; }
      .header .mo-header .top-menu .search-input2 i {
        color: #d2d2d2;
        font-size: 24px; }
    .header .mo-header .top-menu #search-input2 {
      position: absolute;
      width: 250px;
      top: 80px;
      right: 20px;
      z-index: 5; }
      .header .mo-header .top-menu #search-input2 .form-control {
        border-radius: 5rem;
        padding: .375rem 1rem; }
    .header .mo-header .top-menu .navbar-toggler {
      background-color: #fff;
      z-index: 9999;
      top: 12px;
      right: 12px; }
      .header .mo-header .top-menu .navbar-toggler .icon-bar {
        background-color: var(--mg); }
      .header .mo-header .top-menu .navbar-toggler.yes .icon-bar {
        background: 0 0; }
      .header .mo-header .top-menu .navbar-toggler.yes .icon-bar:first-child,
      .header .mo-header .top-menu .navbar-toggler.yes .icon-bar:last-child {
        background-color: #d2d2d2; }
    .header .mo-header .top-menu .navbar-collapse .nav li {
      margin-right: 0px; }
      .header .mo-header .top-menu .navbar-collapse .nav li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        color: #fff;
        padding: 10px 15px;
        border-bottom: 1px solid #fff; }
        .header .mo-header .top-menu .navbar-collapse .nav li a.collapsed .fa-chevron-up:before {
          content: "\f078"; }
    .header .mo-header .top-menu nav .navbar-collapse {
      overflow: auto;
      bottom: 0;
      position: fixed;
      top: 98px;
      overflow-y: auto;
      left: 0;
      right: 0;
      background: var(--mg);
      text-align: center;
      padding: 0;
      opacity: 0;
      -webkit-transform: translateX(-150%);
      -moz-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
      -o-transform: translateX(-150%);
      transform: translateX(-150%);
      -webkit-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, -webkit-transform .35s 0s;
      -o-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, -o-transform .35s 0s;
      -moz-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s, -moz-transform .35s 0s;
      transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, -webkit-transform .35s 0s;
      -o-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s;
      transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s;
      transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s, -webkit-transform .35s 0s;
      transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s, -webkit-transform .35s 0s, -moz-transform .35s 0s, -o-transform .35s 0s;
      z-index: 888; }
      .header .mo-header .top-menu nav .navbar-collapse.show {
        top: 60px;
        right: 0;
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        padding-bottom: 30px;
        -webkit-transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        -o-transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -o-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        -moz-transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -moz-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        -o-transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -webkit-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -moz-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01), -o-transform 0.35s cubic-bezier(0, 1.2, 0.8, 1.01); }
  .has-hover {
    display: none; } }



.kv_slider .img-wrap .img-item {
  padding-top: 750px; }
  .kv_slider .img-wrap .img-item .kv-word {
    text-align: center;
    top: 47%;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%); }
    .kv_slider .img-wrap .img-item .kv-word h3 {
      color: #fff;
      letter-spacing: 11px;
      font-size: 29px;
      margin-bottom: 13px; }
    .kv_slider .img-wrap .img-item .kv-word p {
      color: #fff;
      letter-spacing: 5px; }
.slick-dots{
  background-color: #f8f8f8;
  border-radius: 50px;
  padding: 15px 0px;
  width: 220px;
  left: calc(50% - 110px);
  bottom: -28px;
}
.slick-dots li button:before{
  top: -10px;
  background-color: #cccccc;
  height: 7px;
  width: 7px;
  border: unset;
  box-shadow:unset;
}
.slick-dots li.slick-active button:before{
  top: -10px;
  height: 7px;
  width: 40px;
  border: unset;
  background-color: #06a42d;
  box-shadow:unset;
}
.slick-dots li.slick-active{
  margin-right: 35px;
}


.title-img {
  margin-bottom: 30px; }
  .title-img h4 {
    font-size: 19px; }
  @media (max-width: 768px) {
    .title-img {
      margin-bottom: 0px; }
      .title-img .more-img {
        width: 10%; } }

.section01 {
  padding: 70px 0; }

.section02 {
  position: relative;
}
  @media (min-width: 992px) {
    .section02 {
      margin-bottom: 100px; } }
  .section02 h4 {
    font-size: 17px; }
  .section02 .section02-content {
    margin-bottom: 65px; }
    @media (max-width: 991px) {
      .section02 .section02-content {
        margin-bottom: 35px; } }
    .section02 .section02-content .news_slider {
      margin: 0 -15px; }
      .section02 .section02-content .news_slider .new-items {
        display: block;
        border-bottom: 1px solid #d2d2d2;
        margin: 5px;
        padding: 10px; }
        .section02 .section02-content .news_slider .new-items .img-wrap {
          margin-bottom: 20px; }
          .section02 .section02-content .news_slider .new-items .img-wrap .img-item {
            position: relative;
            padding-top: 80%;
            overflow: hidden; }
            .section02 .section02-content .news_slider .new-items .img-wrap .img-item img {
              width: 100%;
              height: 100%;
              -o-object-fit: cover;
              object-fit: cover;
              position: absolute;
              background-repeat: no-repeat;
              top: 50%;
              left: 50%;
              -webkit-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
              background-repeat: no-repeat;
              background-size: cover;
              background-position: center; }
        .section02 .section02-content .news_slider .new-items p {
          line-height: 18px;
          height: 36px;
          color: #1d1d20;
          margin-bottom: 0px; }
        .section02 .section02-content .news_slider .new-items span {
          font-size: 0.75rem;
          color: #a1a1a1;
          padding: 7.5px 0;
          display: block; }
        .section02 .section02-content .news_slider .new-items:hover {
          -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
          -webkit-transform: translateY(-2px);
          -ms-transform: translateY(-2px);
          transform: translateY(-2px); }
          .section02 .section02-content .news_slider .new-items:hover p {
            color: #004098; }
      .section02 .section02-content .news_slider.top-arrow .slick-prev {
        left: initial;
        right: 70px;
        top: -50px;
        outline: 0;
        width: 55px;
        height: 60px;
        z-index: 2;
        background: url(../images/main_controls.png) 17px 20px no-repeat;
        background-color: #ff0011;
        opacity: .5;
        -o-transition: all .4s ease;
        transition: all .4s ease;
        -moz-transition: all .4s ease;
        -webkit-transition: all .4s ease; }
        .section02 .section02-content .news_slider.top-arrow .slick-prev:focus, .section02 .section02-content .news_slider.top-arrow .slick-prev:hover {
          opacity: 1; }
        @media (max-width: 768px) {
          .section02 .section02-content .news_slider.top-arrow .slick-prev {
            background-color: #eee;
            top: -40px;
            zoom: .6; } }
      .section02 .section02-content .news_slider.top-arrow .slick-next {
        left: initial;
        right: 15px;
        top: -50px;
        outline: 0;
        width: 55px;
        height: 60px;
        z-index: 2;
        background: url(../images/main_controls-next.png) 17px 20px no-repeat;
        background-color: #ff0011;
        opacity: .5;
        -o-transition: all .4s ease;
        transition: all .4s ease;
        -moz-transition: all .4s ease;
        -webkit-transition: all .4s ease; }
        .section02 .section02-content .news_slider.top-arrow .slick-next:focus, .section02 .section02-content .news_slider.top-arrow .slick-next:hover {
          opacity: 1; }
        @media (max-width: 768px) {
          .section02 .section02-content .news_slider.top-arrow .slick-next {
            background-color: #eee;
            top: -40px;
            zoom: .6; } }

.section03 {
  margin-bottom: 60px; }
  @media (min-width: 992px) {
    .section03 {
      margin-bottom: 140px; } }
  .section03 .section03-title {
    padding: 70px 0 130px; }
    .section03 .section03-title h4 {
      font-family: "Noto Serif TC", serif;
      font-weight: 600;
      font-size: 21px;
      position: relative; }
      @media (max-width: 768px) {
        .section03 .section03-title h4 {
          overflow: hidden; } }
      .section03 .section03-title h4:before {
        position: absolute;
        content: '';
        display: block;
        background-image: url(../images/blue-point.png);
        width: 48px;
        height: 44px;
        left: -100px;
        top: 20px; }
        @media (max-width: 768px) {
          .section03 .section03-title h4:before {
            left: -25px;
            top: 60px; } }
      .section03 .section03-title h4:after {
        position: absolute;
        content: '';
        display: block;
        background-image: url(../images/red-point.png);
        width: 22px;
        height: 25px;
        right: -70px;
        top: -30px; }
        @media (max-width: 768px) {
          .section03 .section03-title h4:after {
            right: -20px; } }
    @media (max-width: 768px) {
      .section03 .section03-title {
        padding: 50px 0;
        overflow: hidden;
        position: relative; }
        .section03 .section03-title:before {
          position: absolute;
          content: '';
          display: block;
          background-image: url(../images/blue-point.png);
          width: 48px;
          height: 44px;
          left: -20px;
          bottom: -10px; }
        .section03 .section03-title:after {
          position: absolute;
          content: '';
          display: block;
          background-image: url(../images/red-point.png);
          width: 22px;
          height: 25px;
          right: -7px;
          top: 0px; } }
  .section03 .col-lg-6 .section03-items {
    position: relative;
    display: block;
    font-size: 0;
    width: 100% !important; }
    .section03 .col-lg-6 .section03-items .img-title {
      position: absolute;
      left: 0px;
      width: 200px;
      line-height: 90px;
      text-align: center;
      background: #36373b;
      -o-transition: all .4s ease;
      transition: all .4s ease;
      -moz-transition: all .4s ease;
      -webkit-transition: all .4s ease;
      position: absolute;
      top: 50%;
      -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
      transform: translate(0%, -50%); }
      .section03 .col-lg-6 .section03-items .img-title img {
        max-width: 100%;
        line-height: 1px;
        vertical-align: middle;
        width: initial;
        height: initial; }
      @media (max-width: 768px) {
        .section03 .col-lg-6 .section03-items .img-title {
          bottom: 0;
          top: initial;
          background: #ff0011;
          position: absolute;
          left: 50%;
          -webkit-transform: translate(-50%, 0%);
          -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
          zoom: .8; } }
    .section03 .col-lg-6 .section03-items img {
      max-width: 100%;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
    .section03 .col-lg-6 .section03-items:hover .img-title {
      background: #ff0011; }
  @media (max-width: 768px) {
    .section03 .col-lg-6.pr-lg-0, .section03 .col-lg-6.pl-lg-0 {
      padding: 0; } }

.section04 {
  margin-bottom: 110px;
  position: relative;
  background-image: url(../images/news-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0px 150px; }
  .section04::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 280px;
    background-color: #f0eff7;
    top: 255px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%); }
    @media (min-width: 1400px) {
      .section04::before {
        width: 1390px; } }
    @media (max-width: 768px) {
      .section04::before {
        height: 270px; } }
  @media (min-width: 992px) {
    .section04 {
      margin-bottom: 100px; } }
  .section04 .business_slider {
    margin-bottom: 60px; }
    @media (min-width: 992px) {
      .section04 .business_slider {
        margin-bottom: 140px; } }
    .section04 .business_slider.top-arrow .slick-prev {
      left: initial;
      right: 70px;
      top: -50px;
      outline: 0;
      width: 55px;
      height: 60px;
      z-index: 2;
      background-image: none;
      background-color: #ff0011;
      opacity: .5;
      -o-transition: all .4s ease;
      transition: all .4s ease;
      -moz-transition: all .4s ease;
      -webkit-transition: all .4s ease; }
      .section04 .business_slider.top-arrow .slick-prev:before {
        content: '';
        display: block;
        width: 16px;
        height: 30px;
        position: absolute;
        background-repeat: no-repeat;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background: url(../images/main_controls.png); }
      .section04 .business_slider.top-arrow .slick-prev:focus, .section04 .business_slider.top-arrow .slick-prev:hover {
        opacity: 1; }
      @media (max-width: 768px) {
        .section04 .business_slider.top-arrow .slick-prev {
          zoom: .6; } }
    .section04 .business_slider.top-arrow .slick-next {
      left: initial;
      right: 15px;
      top: -50px;
      outline: 0;
      width: 55px;
      height: 60px;
      z-index: 2;
      background-image: none;
      background-color: #ff0011;
      opacity: .5;
      -o-transition: all .4s ease;
      transition: all .4s ease;
      -moz-transition: all .4s ease;
      -webkit-transition: all .4s ease; }
      .section04 .business_slider.top-arrow .slick-next:before {
        content: '';
        display: block;
        width: 16px;
        height: 30px;
        position: absolute;
        background-repeat: no-repeat;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background: url(../images/main_controls.png) 16px; }
      .section04 .business_slider.top-arrow .slick-next:focus, .section04 .business_slider.top-arrow .slick-next:hover {
        opacity: 1; }
      @media (max-width: 768px) {
        .section04 .business_slider.top-arrow .slick-next {
          zoom: .6; } }
    .section04 .business_slider .business_slider_items {
      display: block;
      position: relative;
      margin: 5px;
      padding: 10px; }
      .section04 .business_slider .business_slider_items .img-item {
        padding-top: 75%;
        margin-bottom: 20px; }
        .section04 .business_slider .business_slider_items .img-item img {
          width: 98.5%;
          height: 98%;
          right: 0;
          bottom: 0;
          top: initial;
          left: initial;
          -webkit-transform: translate(0%, 0%);
          -ms-transform: translate(0%, 0%);
          transform: translate(0%, 0%); }
      .section04 .business_slider .business_slider_items .business_slider_items_title {
        position: absolute;
        top: 0px;
        left: 0px;
        display: inline-block;
        background-color: #ff0011;
        color: #fff;
        padding: 0px 10px;
        font-size: 12px;
        line-height: 22px; }
      .section04 .business_slider .business_slider_items p {
        padding-left: 1.5%;
        line-height: 18px;
        height: 36px;
        color: #1d1d20;
        margin-bottom: 20px;
        border-bottom: 1px solid #d2d2d2; }
      .section04 .business_slider .business_slider_items:hover {
        -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        transform: translateY(-3px); }
        .section04 .business_slider .business_slider_items:hover p {
          color: #004098; }
    .section04 .business_slider .slick-dots {
      bottom: -45px; }
      .section04 .business_slider .slick-dots li button:before {
        width: 10px;
        height: 10px;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: #d9d9d9;
        border: 2px solid #d9d9d9; }
      .section04 .business_slider .slick-dots li.slick-active button:before, .section04 .business_slider .slick-dots li:hover button:before {
        border: 2px solid #ff0011;
        background: #ff0011; }
      .section04 .business_slider .slick-dots li.slick-active button:before {
        border: 2px solid #ff0011;
        background: #ff0011;
        width: 10px;
        height: 10px; }

.section05 {
  margin-bottom: 110px; }
  @media (min-width: 992px) {
    .section05 {
      margin-bottom: 140px; } }
  .section05 .section05-title {
    padding: 70px 0 130px; }
    .section05 .section05-title h4 {
      font-family: "Noto Serif TC", serif;
      font-weight: 600;
      font-size: 21px;
      position: relative; }
      @media (max-width: 768px) {
        .section05 .section05-title h4 {
          overflow: hidden; } }
      .section05 .section05-title h4:before {
        position: absolute;
        content: '';
        display: block;
        background-image: url(../images/blue-point.png);
        width: 48px;
        height: 44px;
        left: -100px;
        top: 20px; }
        @media (max-width: 768px) {
          .section05 .section05-title h4:before {
            left: -25px;
            top: 60px; } }
      .section05 .section05-title h4:after {
        position: absolute;
        content: '';
        display: block;
        background-image: url(../images/red-point.png);
        width: 22px;
        height: 25px;
        right: -70px;
        top: -30px; }
        @media (max-width: 768px) {
          .section05 .section05-title h4:after {
            right: -20px; } }
    @media (max-width: 768px) {
      .section05 .section05-title {
        padding: 50px 0;
        overflow: hidden;
        position: relative; }
        .section05 .section05-title:before {
          position: absolute;
          content: '';
          display: block;
          background-image: url(../images/blue-point.png);
          width: 48px;
          height: 44px;
          left: -20px;
          bottom: -10px; }
        .section05 .section05-title:after {
          position: absolute;
          content: '';
          display: block;
          background-image: url(../images/red-point.png);
          width: 22px;
          height: 25px;
          right: -7px;
          top: 0px; } }
  .section05 .section05-banner {
    max-width: 1080px;
    position: relative; }
    .section05 .section05-banner .banner_slider .banner_slider_items {
      position: relative;
      padding-bottom: 80px; }
      .section05 .section05-banner .banner_slider .banner_slider_items .banner_slider_title {
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        text-align: center;
        background: url(../images/banner-title.png);
        width: 540px;
        height: 120px;
        padding: 20px 0;
        bottom: 0; }
        .section05 .section05-banner .banner_slider .banner_slider_items .banner_slider_title h1 {
          color: #fff;
          font-size: 36px; }
        .section05 .section05-banner .banner_slider .banner_slider_items .banner_slider_title h2 {
          color: #fff;
          font-size: 26px; }
        @media (max-width: 768px) {
          .section05 .section05-banner .banner_slider .banner_slider_items .banner_slider_title {
            width: 90%;
            height: 20%;
            background-size: 100% 100%;
            padding: 15px 0; }
            .section05 .section05-banner .banner_slider .banner_slider_items .banner_slider_title h1 {
              font-size: 24px; }
            .section05 .section05-banner .banner_slider .banner_slider_items .banner_slider_title h2 {
              font-size: 18px; } }
    .section05 .section05-banner .banner_slider .slick-prev {
      left: -50px;
      outline: 0;
      width: 65.5px;
      height: 125px;
      z-index: 2;
      background: url(../images/main_controls2.png) 0px 0 no-repeat;
      opacity: 1; }
      .section05 .section05-banner .banner_slider .slick-prev:hover {
        background: url(../images/main_controls2_h.png) 0px 0 no-repeat; }
    .section05 .section05-banner .banner_slider .slick-next {
      right: -50px;
      outline: 0;
      width: 65.5px;
      height: 125px;
      z-index: 2;
      background: url(../images/main_controls2.png) -65.5px 0 no-repeat;
      opacity: 1; }
      .section05 .section05-banner .banner_slider .slick-next:hover {
        background: url(../images/main_controls2_h.png) -65.5px 0 no-repeat; }
    .section05 .section05-banner .banner_slider .slick-dots {
      bottom: -45px; }
      .section05 .section05-banner .banner_slider .slick-dots li button:before {
        width: 10px;
        height: 10px;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: #d9d9d9;
        border: 2px solid #d9d9d9; }
      .section05 .section05-banner .banner_slider .slick-dots li.slick-active button:before, .section05 .section05-banner .banner_slider .slick-dots li:hover button:before {
        border: 2px solid #ff0011;
        background: #ff0011; }
      .section05 .section05-banner .banner_slider .slick-dots li.slick-active button:before {
        border: 2px solid #ff0011;
        background: #ff0011;
        width: 10px;
        height: 10px; }

.section06 {
  margin-bottom: 50px; }
  @media (max-width: 768px) {
    .section06 .title-img {
      margin-bottom: 50px; } }



.about-kv {
  padding-top: 630px;
  width: 100%;
  background-image: url(../images/ab-kv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }


  @media (max-width: 768px) {
    .about-kv {
      padding-top: 80%; } }

.ab-section1{
  margin-top: 60px;
  margin-bottom: 60px;
}
  @media (max-width: 768px){
    .ab-section1{
  margin-bottom: 0px;
}
  }
.ab-con{
  padding-bottom: 120px;
}
  @media (max-width: 768px){
    .ab-con{
  padding-bottom: 60px;
}
  }
.ab-con h3{
  color: var(--mg);
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 5px;
}
.ab-con p {
  font-size: 15px;
  color: #999;
  font-weight: bold;
  line-height: 2em;
  margin-bottom: 45px;
  letter-spacing: 5px;
}

.ab-con h4{
  color: #93573f;
  font-size: 18px;
  letter-spacing: 5px;

}

.about2-kv {
  padding-top: 630px;
  width: 100%;
  background-image: url(../images/ab2-kv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }


  @media (max-width: 768px) {
    .about2-kv {
      padding-top: 80%; } }

.faq-kv {
  padding-top: 630px;
  width: 100%;
  background-image: url(../images/faq-kv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }


  @media (max-width: 768px) {
    .faq-kv {
      padding-top: 80%; } }

.faq-con h3{
  position: relative;
}
.faq-con h3 span{
  color: var(--mg);
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 5px;
  background-color: #f8f8f8;
  padding-right: 25px;
}      
.faq-con h3:after{
  width: 100%;
  height: 1px;
  content: '';
  border-top: 1px solid var(--mg);
  position: absolute;
  top: 15px;
  left: 0px;
  z-index: -1;

}
.news-kv{
  padding-top: 630px;
  width: 100%;
  background-image: url(../images/news-kv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }


  @media (max-width: 768px) {
    .news-kv {
      padding-top: 80%; } }

@media (max-width: 768px) {
  .about2-section01, .about3-section01, .about4-section01 {
    margin-bottom: 120px; } }

.about-section01 {
  margin-bottom: 110px; }
  .about-section01 .about-section01-item {
    text-align: center;
    width: 720px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      .about-section01 .about-section01-item {
        width: 100%;
        padding-top: 120px; } }
    .about-section01 .about-section01-item h4 {
      font-family: "Noto Serif TC", serif;
      font-weight: 500;
      font-size: 25px;
      line-height: 36px;
      margin-bottom: 45px; }
    .about-section01 .about-section01-item p {
      letter-spacing: 1.2px;
      font-size: 16px;
      line-height: 36px;
      text-align: left; }

.about-section02 {
  margin-bottom: 110px;
  position: relative;
  background-image: url(../images/news-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  padding-top: 150px;
  z-index: 0; }
  @media (max-width: 768px) {
    .about-section02 {
      padding-top: 120px; } }
  .about-section02::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f1ede6;
    top: 60px;
    z-index: -1;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%); }
    @media (max-width: 768px) {
      .about-section02::before {
        top: 20px; } }
  .about-section02 .about-section02-item {
    position: relative;
    padding: 10px 0 20px 65px;
    border-bottom: 1px solid #e70012;
    margin-bottom: 75px; }
    .about-section02 .about-section02-item h5 {
      font-size: 19px;
      font-weight: bolder;
      margin-bottom: 30px; }
    .about-section02 .about-section02-item p {
      font-size: 16px;
      min-height: 96px; }
    .about-section02 .about-section02-item:before {
      position: absolute;
      content: '';
      display: block;
      width: 42px;
      height: 61px;
      top: 0;
      left: 0; }
  .about-section02 .about-section02-item01:before {
    background: url(../images/num01.png); }
  .about-section02 .about-section02-item02:before {
    background: url(../images/num02.png); }
  .about-section02 .about-section02-item03:before {
    background: url(../images/num03.png); }
  .about-section02 .about-section02-item04:before {
    background: url(../images/num04.png); }

.about-section03 {
  position: relative;
  padding-bottom: 100px;
  margin-bottom: 150px; }
  @media (max-width: 768px) {
    .about-section03 {
      padding-bottom: 0px;
      margin-bottom: 50px; } }
  .about-section03 .container-custom {
    font-size: 0;
    position: relative; }
    .about-section03 .container-custom .about-section03-item {
      position: absolute;
      right: 200px;
      bottom: -130px;
      padding: 40px 60px;
      background: #f1ede6;
      z-index: 2; }
      .about-section03 .container-custom .about-section03-item h2 {
        font-size: 27px;
        position: relative;
        margin-bottom: 35px; }
        .about-section03 .container-custom .about-section03-item h2:before {
          position: absolute;
          content: '';
          display: block;
          width: 30px;
          height: 1px;
          background: #ff0011;
          bottom: -20px;
          left: 0; }
      .about-section03 .container-custom .about-section03-item h5 {
        font-size: 17px; }
      @media (max-width: 768px) {
        .about-section03 .container-custom .about-section03-item {
          position: initial;
          right: initial;
          bottom: initial;
          padding: 20px 30px;
          width: 100%;
          background: #f1ede6;
          z-index: 2; } }

.about-section04 {
  position: relative;
  padding-bottom: 100px;
  margin-bottom: 150px;
  background-image: url(../images/news-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; }
  @media (max-width: 768px) {
    .about-section04 {
      padding-bottom: 0px;
      margin-bottom: 50px; } }
  .about-section04 .container-custom {
    font-size: 0;
    position: relative; }
    .about-section04 .container-custom .about-section04-item {
      position: absolute;
      left: 200px;
      bottom: -130px;
      padding: 40px 60px;
      background: #f1ede6;
      z-index: 2; }
      .about-section04 .container-custom .about-section04-item h2 {
        font-size: 27px;
        position: relative;
        margin-bottom: 35px; }
        .about-section04 .container-custom .about-section04-item h2:before {
          position: absolute;
          content: '';
          display: block;
          width: 30px;
          height: 1px;
          background: #ff0011;
          bottom: -20px;
          left: 0; }
      .about-section04 .container-custom .about-section04-item h5 {
        font-size: 17px; }
      @media (max-width: 768px) {
        .about-section04 .container-custom .about-section04-item {
          position: initial;
          right: initial;
          bottom: initial;
          padding: 20px 30px;
          width: 100%;
          background: #f1ede6;
          z-index: 2; } }

.about-section05 .title-img {
  margin-bottom: 30px; }
  .about-section05 .title-img h4 {
    font-size: 19px; }

.about-section05 .about-section05-wrap {
  background-color: #1c5be2;
  padding: 60px 30px; }
  .about-section05 .about-section05-wrap .about-section05-slider.top-arrow .slick-prev {
    left: initial;
    right: 70px;
    top: -140px;
    outline: 0;
    width: 55px;
    height: 60px;
    z-index: 2;
    background-image: none;
    background-color: #ffd5d8;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease; }
    .about-section05 .about-section05-wrap .about-section05-slider.top-arrow .slick-prev::before {
      content: '';
      width: 16px;
      height: 30px;
      background: url(../images/main_controls.png);
      display: block;
      margin: 0 auto; }
    .about-section05 .about-section05-wrap .about-section05-slider.top-arrow .slick-prev:focus, .about-section05 .about-section05-wrap .about-section05-slider.top-arrow .slick-prev:hover {
      background-color: #ff0011; }
    @media (max-width: 768px) {
      .about-section05 .about-section05-wrap .about-section05-slider.top-arrow .slick-prev {
        zoom: .6;
        top: -50px;
        background-color: #ff0011; } }
  .about-section05 .about-section05-wrap .about-section05-slider.top-arrow .slick-next {
    left: initial;
    right: 15px;
    top: -140px;
    outline: 0;
    width: 55px;
    height: 60px;
    z-index: 2;
    background-image: none;
    background-color: #ffd5d8;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease; }
    .about-section05 .about-section05-wrap .about-section05-slider.top-arrow .slick-next::before {
      content: '';
      width: 16px;
      height: 30px;
      background: url(../images/main_controls.png) 16px;
      display: block;
      margin: 0 auto; }
    .about-section05 .about-section05-wrap .about-section05-slider.top-arrow .slick-next:focus, .about-section05 .about-section05-wrap .about-section05-slider.top-arrow .slick-next:hover {
      background-color: #ff0011; }
    @media (max-width: 768px) {
      .about-section05 .about-section05-wrap .about-section05-slider.top-arrow .slick-next {
        zoom: .6;
        top: -50px;
        background-color: #ff0011; } }
  .about-section05 .about-section05-wrap .about-section05-slider .img-wrap {
    margin: 0 7.5px; }
    .about-section05 .about-section05-wrap .about-section05-slider .img-wrap .img-item {
      padding-top: 45%; }
      @media (max-width: 768px) {
        .about-section05 .about-section05-wrap .about-section05-slider .img-wrap .img-item {
          padding-top: 35%; } }

.about2-section02 {
  padding-top: 100px; }
  @media (max-width: 768px) {
    .about2-section02 {
      padding-top: 50px; } }
  .about2-section02 .section-title {
    margin-bottom: 50px; }
    @media (max-width: 768px) {
      .about2-section02 .section-title {
        margin-bottom: 80px; } }
  .about2-section02 .about2-section02-item {
    margin-bottom: 60px;
    position: relative;
    background-image: url(../images/news-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    padding-top: 150px;
    z-index: 0; }
    @media (max-width: 768px) {
      .about2-section02 .about2-section02-item {
        padding-top: 120px;
        margin-bottom: 20px; } }
    .about2-section02 .about2-section02-item::before {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #f1ede6;
      top: 60px;
      z-index: -1;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
      @media (max-width: 768px) {
        .about2-section02 .about2-section02-item::before {
          top: 20px; } }
    .about2-section02 .about2-section02-item h4 {
      border-left: 5px solid #ff0011;
      font-size: 19px;
      padding-left: 15px;
      margin-bottom: 50px; }
    .about2-section02 .about2-section02-item .about2-section02-item-group {
      border-bottom: 1px solid #ddd;
      padding-bottom: 15px;
      margin-bottom: 15px; }
      .about2-section02 .about2-section02-item .about2-section02-item-group .about2-section02-item-title {
        padding-right: 15px;
        border-right: 1px solid #ddd; }
      .about2-section02 .about2-section02-item .about2-section02-item-group .about2-section02-item-content {
        padding: 0 15px; }

.about2-section03 {
  font-size: 0; }

.about2-section04 {
  background-color: #f1ede6;
  padding: 80px 0;
  position: relative;
  margin-bottom: 80px; }
  @media (max-width: 768px) {
    .about2-section04 {
      padding: 80px 0 50px;
      margin-bottom: 120px; } }
  .about2-section04 .section-title {
    margin-bottom: 80px; }
    @media (max-width: 768px) {
      .about2-section04 .section-title {
        margin-bottom: 120px; } }
  .about2-section04:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 20px;
    background-image: url(../images/shadow.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: -20px; }

.about2-section05 .history-item {
  margin-bottom: 110px;
  position: relative; }
  @media (max-width: 768px) {
    .about2-section05 .history-item {
      margin-bottom: 50px; } }
  .about2-section05 .history-item .history-item-title {
    position: relative; }
    .about2-section05 .history-item .history-item-title:before {
      position: absolute;
      content: '';
      display: block;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: #ff0011;
      left: 100px;
      position: absolute;
      top: 50%;
      -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
      transform: translate(0%, -50%); }
      @media (max-width: 768px) {
        .about2-section05 .history-item .history-item-title:before {
          left: -30px; } }
    .about2-section05 .history-item .history-item-title:after {
      position: absolute;
      content: '';
      display: block;
      width: 1px;
      height: 100%;
      background: #ddd;
      top: 0%;
      left: 107.5px;
      z-index: -1; }
      @media (max-width: 768px) {
        .about2-section05 .history-item .history-item-title:after {
          left: -23.5px; } }
  .about2-section05 .history-item .history-item-content {
    padding-top: 10px; }
    .about2-section05 .history-item .history-item-content h4 {
      font-family: "Noto Serif TC", serif;
      font-size: 32px;
      font-weight: 500; }
    .about2-section05 .history-item .history-item-content ul li {
      -ms-flex: 0 0 25%;
      -webkit-box-flex: 0;
      flex: 0 0 25%;
      max-width: 25%;
      padding: 15px; }
      @media (max-width: 768px) {
        .about2-section05 .history-item .history-item-content ul li {
          padding: 0 7.5px 0 0; } }
    .about2-section05 .history-item .history-item-content.offset-lg-3 {
      position: relative; }
      .about2-section05 .history-item .history-item-content.offset-lg-3:after {
        position: absolute;
        content: '';
        display: block;
        width: 1px;
        height: 100%;
        background: #ddd;
        top: 0%;
        left: -193px;
        z-index: -1; }
        @media (max-width: 768px) {
          .about2-section05 .history-item .history-item-content.offset-lg-3:after {
            left: -23.5px; } }
      @media (max-width: 768px) {
        .about2-section05 .history-item .history-item-content.offset-lg-3:last-child:after {
          height: calc(100% + 50px); } }
    @media (max-width: 768px) {
      .about2-section05 .history-item .history-item-content.offset-lg-0 {
        position: relative; }
        .about2-section05 .history-item .history-item-content.offset-lg-0:after {
          position: absolute;
          content: '';
          display: block;
          width: 1px;
          height: 100%;
          background: #ddd;
          top: 0%;
          left: -23.5px;
          z-index: -1; } }
  .about2-section05 .history-item:nth-child(even) .history-item-title:before {
    background: #003f97; }
  .about2-section05 .history-item:first-child .history-item-title:after {
    top: 50%; }
  .about2-section05 .history-item:before {
    position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 110px;
    background: #ddd;
    bottom: -110px;
    left: 107px;
    z-index: -1; }
    @media (max-width: 768px) {
      .about2-section05 .history-item:before {
        display: none; } }
  .about2-section05 .history-item:last-child:before {
    display: none; }

.about2-section06 {
  background: #f1ede6;
  padding: 100px 0; }
  .about2-section06 h4 {
    font-family: "Noto Serif TC", serif;
    font-size: 25px;
    line-height: 38px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px; }
  .about2-section06 .nav {
    width: 350px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      .about2-section06 .nav {
        width: 100%;
        padding: 0 15px; } }
    .about2-section06 .nav li {
      -ms-flex: 0 0 25%;
      -webkit-box-flex: 0;
      flex: 0 0 25%;
      max-width: 25%;
      padding: 7.5px; }

.about3-section02 {
  padding-top: 50px; }
  .about3-section02 .section-title {
    margin-bottom: 50px; }
  .about3-section02 .about3-section02-item {
    margin-bottom: 60px;
    position: relative;
    background-image: url(../images/news-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 50px;
    padding: 130px 0 60px 0;
    z-index: 0; }
    @media (max-width: 768px) {
      .about3-section02 .about3-section02-item {
        padding: 100px 0;
        margin-bottom: 100px; } }
    .about3-section02 .about3-section02-item::before {
      content: '';
      display: block;
      position: absolute;
      border-left: 5px solid #ff0011;
      width: 970px;
      height: 50%;
      background-color: #f1ede6;
      top: 95px;
      z-index: -1;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
      @media (max-width: 768px) {
        .about3-section02 .about3-section02-item::before {
          top: 30px;
          width: 90%;
          height: 75%; } }
    .about3-section02 .about3-section02-item h4 {
      font-family: "Noto Serif TC", serif;
      font-size: 19px;
      font-weight: 500;
      padding-left: 100px;
      margin-bottom: 50px;
      line-height: 40px; }
      @media (max-width: 768px) {
        .about3-section02 .about3-section02-item h4 {
          padding: 0 35px; } }

.about3-section03 .about3-section03-item {
  margin-bottom: 100px; }
  .about3-section03 .about3-section03-item .about3-section03-item-title {
    position: relative;
    margin-bottom: 60px;
    font-size: 20px; }
    .about3-section03 .about3-section03-item .about3-section03-item-title:before {
      content: '';
      display: block;
      position: absolute;
      bottom: -29px;
      left: 0;
      width: 48px;
      height: 2px;
      background: #ff0011; }
  .about3-section03 .about3-section03-item p {
    font-size: 16px;
    line-height: 30px; }

.about4-section02 .about4-section02-item {
  position: relative;
  margin-bottom: 110px; }
  @media (max-width: 768px) {
    .about4-section02 .about4-section02-item {
      padding-top: 110px;
      margin-bottom: 100px; } }
  .about4-section02 .about4-section02-item::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 140%;
    background-color: #f1ede6;
    top: -120px;
    left: 0;
    z-index: -1; }
    @media (max-width: 768px) {
      .about4-section02 .about4-section02-item::before {
        height: 120%; } }
  .about4-section02 .about4-section02-item h4 {
    border-left: 5px solid #ff0011;
    font-size: 19px;
    padding-left: 15px;
    margin-bottom: 50px; }

.about4-section02 .about4-section02-item-group {
  background: #fff;
  position: relative;
  width: 90%;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px; }
  .about4-section02 .about4-section02-item-group:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e9e6e0;
    top: 10px;
    left: 10px;
    z-index: -1; }
  .about4-section02 .about4-section02-item-group:after {
    content: '';
    display: block;
    position: absolute;
    width: 291px;
    height: 40px;
    background: url(../images/line.png);
    bottom: -50px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: -1; }
  .about4-section02 .about4-section02-item-group .about4-section02-item-img {
    margin: -25px 50px 40px 40px;
    font-size: 0; }
  .about4-section02 .about4-section02-item-group .about4-section02-item-word p {
    color: #003d97;
    font-size: 19px; }
  .about4-section02 .about4-section02-item-group .about4-section02-item-word ul li {
    font-size: 16px; }
  @media (max-width: 768px) {
    .about4-section02 .about4-section02-item-group .about4-section02-item-word {
      padding: 0px 30px 30px; } }

.about4-section02 .about4-section02-item-group2 {
  position: relative;
  width: 90%;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .about4-section02 .about4-section02-item-group2 .about4-section02-item-wrap {
    width: 48%;
    background: #ff0011;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .about4-section02 .about4-section02-item-group2 .about4-section02-item-wrap:before {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      background: #e9e6e0;
      top: 10px;
      left: 10px;
      z-index: -1; }
    .about4-section02 .about4-section02-item-group2 .about4-section02-item-wrap .about4-section02-item-img {
      font-size: 0;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      @media (max-width: 768px) {
        .about4-section02 .about4-section02-item-group2 .about4-section02-item-wrap .about4-section02-item-img {
          -ms-flex: 0 0 100%;
          -webkit-box-flex: 0;
          flex: 0 0 100%;
          max-width: 100%; }
          .about4-section02 .about4-section02-item-group2 .about4-section02-item-wrap .about4-section02-item-img img {
            width: 100%; } }
    .about4-section02 .about4-section02-item-group2 .about4-section02-item-wrap .about4-section02-item-word {
      color: #fff;
      -webkit-box-flex: 2;
      -ms-flex: 2;
      flex: 2;
      padding: 0 20px; }
      @media (max-width: 768px) {
        .about4-section02 .about4-section02-item-group2 .about4-section02-item-wrap .about4-section02-item-word {
          -ms-flex: 0 0 100%;
          -webkit-box-flex: 0;
          flex: 0 0 100%;
          max-width: 100%; } }
      .about4-section02 .about4-section02-item-group2 .about4-section02-item-wrap .about4-section02-item-word p {
        font-size: 17px; }
      .about4-section02 .about4-section02-item-group2 .about4-section02-item-wrap .about4-section02-item-word ul li {
        font-size: 16px; }

.about4-section03 .about4-section03-title {
  margin-bottom: 50px; }
  .about4-section03 .about4-section03-title ul li a {
    display: block;
    border: 1px solid #ddd;
    width: 240px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #1d1d20; }
  @media (min-width: 768px) {
    .about4-section03 .about4-section03-title ul li:first-child a {
      border-right: none;
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px; }
    .about4-section03 .about4-section03-title ul li:last-child a {
      border-left: none;
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px; } }

.about4-section03 .about4-section03-item .about4-section03-item-title {
  border-left: 5px solid #ff0011;
  padding-left: 50px;
  margin-bottom: 50px; }
  .about4-section03 .about4-section03-item .about4-section03-item-title h4 {
    font-family: "Noto Serif TC", serif;
    font-size: 32px;
    font-weight: 500; }
  @media (max-width: 768px) {
    .about4-section03 .about4-section03-item .about4-section03-item-title {
      padding-left: 30px; } }

.about4-section03 .about4-section03-content {
  background: #f1ede6;
  padding: 50px 0;
  text-align: center;
  margin-bottom: 100px; }
  @media (max-width: 768px) {
    .about4-section03 .about4-section03-content {
      padding: 50px 15px; } }

.read-more {
  width: 510px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */ }
  @media (max-width: 768px) {
    .read-more {
      width: 100%; } }
  .read-more ::-webkit-scrollbar {
    width: 2px; }
  .read-more ::-webkit-scrollbar-track {
    background: #fff; }
  .read-more ::-webkit-scrollbar-thumb {
    background: #ff0011; }
  .read-more ::-webkit-scrollbar-thumb:hover {
    background: #555; }
  .read-more .read-more-btn {
    width: 180px;
    height: 50px;
    padding: 0 40px;
    line-height: 50px;
    background: #ff0011;
    margin-top: 20px;
    color: #fff;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .read-more .read-more-btn:before {
      position: absolute;
      content: '\f077';
      display: block;
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      font-size: 24px;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1;
      right: 20px;
      top: 15px; }
    .read-more .read-more-btn .read-more-word {
      overflow: hidden;
      display: inline-block;
      width: 60px;
      height: 20px;
      position: relative; }
      .read-more .read-more-btn .read-more-word p {
        position: absolute;
        top: -20px;
        line-height: 20px;
        -o-transition: all .4s ease;
        transition: all .4s ease;
        -moz-transition: all .4s ease;
        -webkit-transition: all .4s ease; }
    .read-more .read-more-btn.collapsed:before {
      content: '\f078'; }
    .read-more .read-more-btn.collapsed .read-more-word p {
      top: 0px; }
  .read-more .read-more-list {
    margin-bottom: 15px;
    height: 250px;
    overflow-y: auto; }



@media (max-width: 768px) {
  .news-section01 {
    margin-bottom: 120px; } }

.news-nav {
  margin-bottom: 100px; }
  .news-nav .nav-tabs {
    border: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .news-nav .nav-tabs .nav-link {
      text-align: center;
      font-size: 18px;
      padding: 0;
      color: #a0a0a0;
      padding: 5px 55px;
      border-color: #fff;
      border-radius: 0;
      border-right: 1px solid #a0a0a0; }
      @media (max-width: 768px) {
        .news-nav .nav-tabs .nav-link {
          padding: 5px 10px; } }
      .news-nav .nav-tabs .nav-link:last-child {
        border: none; }
      .news-nav .nav-tabs .nav-link.active, .news-nav .nav-tabs .nav-link:hover {
        color: #ff0011; }

.tab-pane {
  counter-reset: num; }
  .tab-pane .number-title {
    padding: 15px 10px; }
    .tab-pane .number-title:before {
      counter-increment: num;
      content: counter(num);
      width: 34px;
      height: 34px;
      display: inline-block;
      text-align: center;
      line-height: 34px;
      border-radius: 50%;
      font-size: 18px;
      font-weight: bolder;
      background: #d1bd9b;
      color: #fff; }

.news_items {
  display: block;
  margin-bottom: 75px; }
  .news_items .img-wrap .img-item {
    padding-top: 85%; }
  .news_items .word-item {
    border-bottom: 1px solid #d2d2d2; }
    .news_items .word-item p {
      font-size: 16px;
      color: #1d1d20;
      margin-bottom: 15px; }
    .news_items .word-item span {
      font-size: 12px;
      line-height: 12px;
      display: block;
      color: #a1a1a1;
      margin-bottom: 15px; }
  .news_items:hover p {
    color: #004098; }

.news-more {
  text-align: center; }
  .news-more .news-more-btn {
    margin-bottom: 150px; }
  .news-more .news-more-list {
    text-align: left;
    display: none; }
  .news-more.active_top .news-more-btn {
    display: none; }
  .news-more.active_top .news-more-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.news-detail-title {
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 1px solid #a1a1a1; }
  .news-detail-title h2 {
    color: #004098;
    font-size: 30px;
    margin-bottom: 30px; }
  .news-detail-title span {
    color: #a1a1a1;
    font-size: 12px;
    line-height: 12px;
    display: block;
    margin-bottom: 25px; }

.news-detail-content {
  margin-bottom: 120px; }

.news-detail-item {
  border-left: 3px solid #ff0011;
  background-color: #f1ede6;
  padding: 45px 115px; }
  .news-detail-item h4 {
    font-family: "Noto Serif TC", serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 36px;
    margin-bottom: 0; }
  @media (max-width: 768px) {
    .news-detail-item {
      padding: 15px 35px; } }



.business-kv {
  padding-top: 450px;
  width: 100%;
  background-image: url(../images/business-kv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.businessB-kv {
  padding-top: 450px;
  width: 100%;
  background-image: url(../images/businessB-kv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.business-more {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #36373b;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0;
  padding: 15px; }
  .business-more:hover {
    background-color: #ff0011; }

.business-section02 {
  padding-top: 100px; }
  @media (max-width: 768px) {
    .business-section02 {
      padding-top: 130px; } }
  .business-section02 .section-title {
    margin-bottom: 80px; }
    @media (max-width: 768px) {
      .business-section02 .section-title {
        margin-bottom: 80px; } }
  .business-section02 .business-section02-item {
    margin-bottom: 80px;
    position: relative;
    background-image: url(../images/news-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    padding-top: 150px;
    z-index: 0;
    text-align: center; }
    @media (max-width: 768px) {
      .business-section02 .business-section02-item {
        padding-top: 120px;
        padding-bottom: 50px;
        margin-bottom: 50px; } }
    .business-section02 .business-section02-item::before {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 120%;
      background-color: #f1ede6;
      top: 60px;
      z-index: -1;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
      @media (max-width: 768px) {
        .business-section02 .business-section02-item::before {
          top: 20px; } }
    .business-section02 .business-section02-item h4 {
      font-family: "Noto Serif TC", serif;
      font-weight: 500;
      margin-bottom: 15px; }
    .business-section02 .business-section02-item h2 {
      font-family: "Noto Serif TC", serif;
      font-weight: 500;
      margin-bottom: 80px; }
    .business-section02 .business-section02-item li p {
      font-size: 18px;
      font-weight: bold; }

.business-section03 .business-section03-item {
  margin-bottom: 190px;
  display: block;
  position: relative; }
  @media (max-width: 768px) {
    .business-section03 .business-section03-item {
      padding: 0;
      margin-bottom: 100px; } }
  .business-section03 .business-section03-item .img-wrap {
    position: relative; }
    .business-section03 .business-section03-item .img-wrap .img-item {
      padding-top: 600px; }
      @media (max-width: 768px) {
        .business-section03 .business-section03-item .img-wrap .img-item {
          padding-top: 50%; } }
    .business-section03 .business-section03-item .img-wrap .business-section03-item-title {
      background-color: #ff0011;
      position: absolute;
      top: 50%;
      -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
      padding: 20px 40px;
      font-size: 0; }
      @media (max-width: 768px) {
        .business-section03 .business-section03-item .img-wrap .business-section03-item-title {
          position: initial;
          top: initial;
          bottom: 0;
          position: absolute;
          left: 50%;
          -webkit-transform: translate(-50%, 0%);
          -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%); } }
  .business-section03 .business-section03-item .business-section03-item-content {
    position: absolute;
    width: 540px;
    bottom: -80px;
    right: 200px;
    background-color: #eaeaea;
    padding: 60px 70px; }
    @media (max-width: 768px) {
      .business-section03 .business-section03-item .business-section03-item-content {
        position: relative;
        width: 100%;
        bottom: initial;
        right: initial; } }
    .business-section03 .business-section03-item .business-section03-item-content h4 {
      position: relative;
      margin-bottom: 60px;
      font-size: 25px; }
      .business-section03 .business-section03-item .business-section03-item-content h4:before {
        content: '';
        display: block;
        position: absolute;
        bottom: -29px;
        left: 0;
        width: 48px;
        height: 2px;
        background: #ff0011; }
  .business-section03 .business-section03-item .nav li {
    margin-right: 15px; }
    .business-section03 .business-section03-item .nav li a {
      padding: 5px; }
      .business-section03 .business-section03-item .nav li a:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color=#000000)";
        /*IE 8*/
        -moz-box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.3);
        /*FF 3.5+*/
        -webkit-box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.3);
        /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
        box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.3);
        /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
        filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color=#000000);
        /*IE 5.5-7*/ }

.business-section04 {
  margin-bottom: 110px; }
  .business-section04 .about-section02-item {
    position: relative;
    padding: 10px 0 20px 65px;
    border-bottom: 1px solid #e70012;
    margin-bottom: 75px; }
    .business-section04 .about-section02-item h5 {
      font-size: 19px;
      font-weight: bolder;
      margin-bottom: 30px; }
    .business-section04 .about-section02-item p {
      font-size: 16px;
      min-height: 96px; }
    .business-section04 .about-section02-item:before {
      position: absolute;
      content: '';
      display: block;
      width: 42px;
      height: 61px;
      top: 0;
      left: 0; }
  .business-section04 .about-section02-item01:before {
    background: url(../images/num01.png); }
  .business-section04 .about-section02-item02:before {
    background: url(../images/num02.png); }
  .business-section04 .about-section02-item03:before {
    background: url(../images/num03.png); }
  .business-section04 .about-section02-item04:before {
    background: url(../images/num04.png); }

.business-section05 {
  margin-bottom: 120px; }
  @media (max-width: 768px) {
    .business-section05 {
      overflow: hidden; } }
  .business-section05 .business-section05-item-bg {
    background-image: url(../images/taiwan-bg2.jpg);
    position: relative;
    height: 720px; }
    @media (max-width: 768px) {
      .business-section05 .business-section05-item-bg {
        height: 100%;
        background-size: cover;
        padding: 50px 0;
        margin-top: 50px; } }
    .business-section05 .business-section05-item-bg .business-section05-item {
      position: relative;
      min-height: 135px; }
      @media (min-width: 768px) {
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item {
          position: absolute; }
          .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(1) {
            top: 50px;
            left: 25vw; }
          .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(2) {
            top: 50px;
            left: 50vw; }
          .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(3) {
            top: 170px;
            left: 25vw;
            z-index: 2; }
          .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(4) {
            top: 170px;
            left: 2vw; }
          .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(5) {
            top: 290px;
            left: 8vw; }
          .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(6) {
            top: 405px;
            left: 8vw; }
          .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(7) {
            top: 520px;
            left: 8vw; } }
      @media (min-width: 1441px) {
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(1) {
          left: 30vw; }
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(3) {
          left: 30vw; }
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(4) {
          left: 11vw; }
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(5), .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(6), .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(7) {
          left: 18vw; } }
      @media (min-width: 1681px) {
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(1) {
          left: 32vw; }
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(3) {
          left: 32vw; }
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(4) {
          left: 15vw; }
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(5), .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(6), .business-section05 .business-section05-item-bg .business-section05-item .nav-item:nth-child(7) {
          left: 23vw; } }
      @media (max-width: 768px) {
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item {
          margin: 0 auto 50px; } }
      .business-section05 .business-section05-item-bg .business-section05-item .nav-item .nav-link .nav-link-content {
        position: relative;
        padding: 12.5px 30px 12.5px 105px;
        background: #003f97;
        border-radius: 50px;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: 64px; }
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item .nav-link .nav-link-content .img-wrap {
          width: 95px;
          height: 95px;
          position: absolute;
          top: 50%;
          -webkit-transform: translate(0%, -50%);
          -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
          left: -5px;
          border: 5px solid #003f97;
          border-radius: 50%; }
          .business-section05 .business-section05-item-bg .business-section05-item .nav-item .nav-link .nav-link-content .img-wrap .img-item {
            border-radius: 50%; }
            .business-section05 .business-section05-item-bg .business-section05-item .nav-item .nav-link .nav-link-content .img-wrap .img-item img {
              width: 110%; }
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item .nav-link .nav-link-content p {
          margin: 0; }
      .business-section05 .business-section05-item-bg .business-section05-item .nav-item .nav-link:hover .nav-link-content, .business-section05 .business-section05-item-bg .business-section05-item .nav-item .nav-link.active .nav-link-content {
        background: #ff0011; }
        .business-section05 .business-section05-item-bg .business-section05-item .nav-item .nav-link:hover .nav-link-content .img-wrap, .business-section05 .business-section05-item-bg .business-section05-item .nav-item .nav-link.active .nav-link-content .img-wrap {
          border: 5px solid #ff0011; }
    .business-section05 .business-section05-item-bg .business-section05-item-map {
      background-image: url(../images/taiwan-bg.png);
      display: block;
      width: 453px;
      height: 596px;
      background-repeat: no-repeat;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
      @media (max-width: 768px) {
        .business-section05 .business-section05-item-bg .business-section05-item-map {
          position: relative;
          zoom: .7; } }
      .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane {
        position: absolute;
        width: 32px;
        height: 36px;
        display: block;
        background-image: url(../images/map-icon03.png); }
        .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane .business-section05-pane-item {
          position: relative;
          width: 400px;
          height: 480px;
          background-color: #fff;
          -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=7, Direction=135, Color=#000000)";
          /*IE 8*/
          -moz-box-shadow: 5px 5px 7px 3px rgba(0, 0, 0, 0.3);
          /*FF 3.5+*/
          -webkit-box-shadow: 5px 5px 7px 3px rgba(0, 0, 0, 0.3);
          /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
          box-shadow: 5px 5px 7px 3px rgba(0, 0, 0, 0.3);
          /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
          filter: progid:DXImageTransform.Microsoft.Shadow(Strength=7, Direction=135, Color=#000000);
          /*IE 5.5-7*/ }
          @media (max-width: 768px) {
            .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane .business-section05-pane-item {
              display: none; } }
          .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane .business-section05-pane-item .tip {
            background-color: #ff0011;
            width: 100px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            color: #fff;
            font-size: 12px;
            text-align: center;
            line-height: 27px; }
          .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane .business-section05-pane-item .img-item {
            padding-top: 80%; }
          .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane .business-section05-pane-item .more3 {
            background-color: #ff0011;
            display: block;
            padding: 10px;
            text-align: center;
            color: #fff;
            font-weight: bold; }
            .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane .business-section05-pane-item .more3:hover {
              background-color: #ff0011; }
        .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(1) {
          top: 20px;
          right: 105px; }
          .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(1) .business-section05-pane-item {
            right: -200%;
            bottom: -200%; }
            .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(1) .business-section05-pane-item:before {
              content: "";
              position: absolute;
              left: -88px;
              top: -37px;
              width: 130px;
              height: 42px;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              line-height: 120px;
              background: -webkit-linear-gradient(315deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(315deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -webkit-linear-gradient(55deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(55deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: linear-gradient(35deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%); }
        .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(2) {
          top: 4px;
          right: 90px; }
          .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(2) .business-section05-pane-item {
            right: -200%;
            bottom: -200%; }
            .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(2) .business-section05-pane-item:before {
              content: "";
              position: absolute;
              left: -88px;
              top: -37px;
              width: 130px;
              height: 42px;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              line-height: 120px;
              background: -webkit-linear-gradient(315deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(315deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -webkit-linear-gradient(55deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(55deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: linear-gradient(35deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%); }
        .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(3) {
          top: 12px;
          right: 124px; }
          .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(3) .business-section05-pane-item {
            right: -200%;
            bottom: -200%; }
            .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(3) .business-section05-pane-item:before {
              content: "";
              position: absolute;
              left: -88px;
              top: -37px;
              width: 130px;
              height: 42px;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              line-height: 120px;
              background: -webkit-linear-gradient(315deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(315deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -webkit-linear-gradient(55deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(55deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: linear-gradient(35deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%); }
        .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(4) {
          display: none; }
        .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(5) {
          top: 164px;
          left: 154px; }
          .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(5) .business-section05-pane-item {
            right: -800%;
            top: -200%; }
            .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(5) .business-section05-pane-item:before {
              content: "";
              position: absolute;
              left: -278px;
              top: 0px;
              width: 316px;
              height: 105px;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              line-height: 120px;
              background: -webkit-linear-gradient(315deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(315deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -webkit-linear-gradient(55deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(55deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -webkit-linear-gradient(293deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(293deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: linear-gradient(157deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%); }
        .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(6) {
          top: 140px;
          left: 129px; }
          .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(6) .business-section05-pane-item {
            right: -800%;
            top: -200%; }
            .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(6) .business-section05-pane-item:before {
              content: "";
              position: absolute;
              left: -278px;
              top: 0px;
              width: 316px;
              height: 105px;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              line-height: 120px;
              background: -webkit-linear-gradient(315deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(315deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -webkit-linear-gradient(55deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(55deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -webkit-linear-gradient(293deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(293deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%);
              background: linear-gradient(157deg, transparent 49.5%, #ff0011 49.5%, transparent 50.5%, transparent 50.5%); }
        .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(7) {
          bottom: 225px;
          left: 28px; }
          .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(7) .business-section05-pane-item {
            right: -1100%;
            top: -700%; }
            .business-section05 .business-section05-item-bg .business-section05-item-map .tab-content .tab-pane:nth-child(7) .business-section05-pane-item:before {
              content: "";
              position: absolute;
              left: -342px;
              top: 0px;
              width: 343px;
              height: 287px;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              line-height: 0;
              background: -webkit-linear-gradient(55deg, transparent 49.9%, #ff0011 49.9%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(55deg, transparent 49.9%, #ff0011 49.9%, transparent 50.5%, transparent 50.5%);
              background: -webkit-linear-gradient(293deg, transparent 49.9%, #ff0011 49.9%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(293deg, transparent 49.9%, #ff0011 49.9%, transparent 50.5%, transparent 50.5%);
              background: -webkit-linear-gradient(310deg, transparent 49.9%, #ff0011 49.9%, transparent 50.5%, transparent 50.5%);
              background: -o-linear-gradient(310deg, transparent 49.9%, #ff0011 49.9%, transparent 50.5%, transparent 50.5%);
              background: linear-gradient(140deg, transparent 49.9%, #ff0011 49.9%, transparent 50.5%, transparent 50.5%); }

@media (max-width: 768px) {
  .businessB-section01 {
    margin-bottom: 130px; } }

.businessB-section02 {
  margin-bottom: 105px; 
  margin-top: 70px;
}

.businessB-section03 {
  background-image: url(../images/ind-ab-le.png);
  background-position:-150px 80px ;
  background-size: auto;
  background-repeat: no-repeat;
  background-color: #eeeeee;
  position: relative; 
  padding-top: 80px;
  padding-bottom: 80px;

  }
@media (max-width: 991px) {
.businessB-section03 {
  background-image: unset;
}
}

  .businessB-section03-item + .businessB-section03-item{
    margin-top: 60px;
  }
  .businessB-section03 .businessB-section03-item .businessB-section03-item-img {
    position: relative;
    font-size: 0; }
    .businessB-section03 .businessB-section03-item .businessB-section03-item-img img {
      width: 100%; }
    @media (max-width: 768px) {
      .businessB-section03 .businessB-section03-item .businessB-section03-item-img {
        padding: 0; } }
  .businessB-section03 .businessB-section03-item .businessB-section03-item-img2 {
    position: relative;
    font-size: 0; 

  }
    .businessB-section03 .businessB-section03-item .businessB-section03-item-img2 img {
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%; }
    @media (max-width: 768px) {
      .businessB-section03 .businessB-section03-item .businessB-section03-item-img2 {
        padding: 0; } }
  .businessB-section03 .businessB-section03-item .businessB-section03-item-word {
    padding: 65px 15px;
    max-height: 480px; }
    .businessB-section03 .businessB-section03-item .businessB-section03-item-word h3 {
      position: relative;
      margin-bottom: 40px;
      font-size: 24px;
      color: var(--mg);
      font-weight: bold;
      line-height: 40px;
      height: 40px;
      vertical-align: middle;
      letter-spacing: 5px;
    }
    .businessB-section03 .businessB-section03-item .businessB-section03-item-word h3 span{
      color: #999;
      font-size: 10px;
      font-weight: bold;
      line-height: 40px;
      height: 40px;
      vertical-align: middle;
      letter-spacing: 5px;
    }
    .businessB-section03 .businessB-section03-item .businessB-section03-item-word h3 span:before{
      content: '';
      display: inline-block;
      height: 26px;
      width: 1px;
      background-image: url(../images/dashed2.png);
      background-size: contain;
      background-position: center;
      margin:-5px 15px 0px;
      vertical-align: middle;
    }
    .businessB-section03 .businessB-section03-item .businessB-section03-item-word p {
      font-weight: bold;
      font-size: 15px;
      color: #999;
      letter-spacing: 5px;
    }
    .businessB-section03 .businessB-section03-item .businessB-section03-item-word .index-s3-more{
      position: absolute;
      bottom: 80px;
      right: 30px;
    }
    @media (max-width: 768px) {
      .businessB-section03 .businessB-section03-item .businessB-section03-item-word .index-s3-more{
      position: absolute;
      bottom: 30px;
    }
    }

.slick-prev, .slick-prev:focus, .slick-prev:hover{
  width: 14px;
  height: 26px;
  left: 0px;
}
.slick-next, .slick-next:focus, .slick-next:hover{
  background:url(../images/main_controls-next.png) no-repeat;
  z-index: 999;
  width: 14px;
  height: 26px;
  right: 0px;
}

.businessB-section03-item-word .kv_slider_arrow{
  padding: 0px 45px;
}

.businessB-section03 .businessB-section03-item .businessB-section03-item-word .index-b3-i2-name{
  color: #555;
  text-align: right;
  font-weight: bold;
  margin-top: 2em;
}

.businessB-section04 {
  background: url(../images/index-map.jpg);
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 130px;
  background-repeat: no-repeat;
  margin-bottom: 110px; }
  @media (max-width: 768px) {
    .businessB-section04 {
      background-position: 75% 0; 
      padding-top: 50px;
  padding-bottom: 50px;
      } }


.businessB-section04 .businessB-section04-item{
padding-top: 85px; 
}

.businessB-section04 .businessB-section04-item p{
  color: #000;
  font-size: 15px;
  line-height: 1.8em;
  font-weight: bold;
}

.businessB-section04 .businessB-section04-item .index-s4-btn{
  text-align: center;
  margin-top: 35px;
}
.businessB-section04 .businessB-section04-item a{
  background-color: #008b00;
  color: #fff;
  font-weight: bold;
  padding: 10px 50px;
  border-radius: 10px;
  text-align: center;
} 
.businessB-section05 {
  margin-bottom: 110px;
  position: relative;
  background-image: url(../images/news-bg.png);
  background-repeat: no-repeat;
  background-position: 0 250px;
  background-size: contain; }
  .businessB-section05 .businessB-section05-item {
    position: relative;
    margin-bottom: 50px; }
    .businessB-section05 .businessB-section05-item::before {
      content: '';
      display: block;
      position: absolute;
      width: 105%;
      height: 290px;
      background-color: #f1ede6;
      top: 60px;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
      @media (min-width: 1400px) {
        .businessB-section05 .businessB-section05-item::before {
          width: 1390px; } }
      @media (max-width: 768px) {
        .businessB-section05 .businessB-section05-item::before {
          height: 35%;
          width: 100%; } }
    @media (min-width: 992px) {
      .businessB-section05 .businessB-section05-item {
        margin-bottom: 120px; } }
    .businessB-section05 .businessB-section05-item .businessB-section05-item-img .tip {
      background-color: #ff0011;
      width: 100px;
      position: absolute;
      top: 0;
      left: 15px;
      z-index: 1;
      color: #fff;
      font-size: 12px;
      text-align: center;
      line-height: 27px; }
    .businessB-section05 .businessB-section05-item .businessB-section05-item-img .img-item {
      padding-top: 80%; }
    .businessB-section05 .businessB-section05-item .businessB-section05-item-content {
      padding: 30px 0 0 30px; }
      @media (max-width: 768px) {
        .businessB-section05 .businessB-section05-item .businessB-section05-item-content {
          padding-left: 0px; } }
      .businessB-section05 .businessB-section05-item .businessB-section05-item-content h2 {
        text-transform: uppercase; }
      .businessB-section05 .businessB-section05-item .businessB-section05-item-content p {
        line-height: 28px; }
      .businessB-section05 .businessB-section05-item .businessB-section05-item-content .more3 {
        background-color: #ff0011;
        display: inline-block;
        padding: 10px 20px;
        text-align: center;
        color: #fff;
        font-weight: bold; }
        .businessB-section05 .businessB-section05-item .businessB-section05-item-content .more3:hover {
          background-color: #ff0011; }



.csr-kv {
  padding-top: 450px;
  width: 100%;
  background-image: url(../images/csr-kv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.csr-section02 {
  padding-top: 50px; }
  @media (max-width: 768px) {
    .csr-section02 {
      padding-top: 120px; } }
  .csr-section02 .section-title {
    margin-bottom: 50px; }
  .csr-section02 .csr-section02-item {
    margin-bottom: 60px;
    position: relative;
    background-image: url(../images/news-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 50px;
    padding-top: 110px;
    z-index: 0; }
    @media (max-width: 768px) {
      .csr-section02 .csr-section02-item {
        padding-top: 110px;
        margin-bottom: 100px; } }
    .csr-section02 .csr-section02-item::before {
      content: '';
      display: block;
      position: absolute;
      border-left: 5px solid #ff0011;
      width: 970px;
      height: 75%;
      background-color: #f1ede6;
      top: 60px;
      z-index: -1;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
      @media (max-width: 768px) {
        .csr-section02 .csr-section02-item::before {
          top: 30px;
          width: 90%;
          height: 100%; } }
    .csr-section02 .csr-section02-item h4 {
      font-family: "Noto Serif TC", serif;
      font-size: 19px;
      font-weight: 500;
      padding-left: 100px;
      margin-bottom: 50px;
      line-height: 40px; }
      @media (max-width: 768px) {
        .csr-section02 .csr-section02-item h4 {
          padding: 0 35px; } }

.csr-section03 .csr-section03-item {
  margin-bottom: 50px; }

@media (max-width: 768px) {
  .csr2-section01 {
    margin-bottom: 120px; } }

.csr2-section02 .csr2-section02-item {
  position: relative;
  margin-bottom: 50px; }
  .csr2-section02 .csr2-section02-item::before {
    content: '';
    display: block;
    position: absolute;
    width: 105%;
    height: 290px;
    background-color: #f1ede6;
    top: 60px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%); }
    @media (min-width: 1400px) {
      .csr2-section02 .csr2-section02-item::before {
        width: 1390px; } }
    @media (max-width: 768px) {
      .csr2-section02 .csr2-section02-item::before {
        height: 35%;
        width: 100%; } }
  @media (min-width: 992px) {
    .csr2-section02 .csr2-section02-item {
      margin-bottom: 120px; } }
  .csr2-section02 .csr2-section02-item .csr2-section02-item-img .tip {
    background-color: #ff0011;
    width: 100px;
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 27px; }
  .csr2-section02 .csr2-section02-item .csr2-section02-item-img .img-item {
    padding-top: 80%; }
  .csr2-section02 .csr2-section02-item .csr2-section02-item-content {
    padding: 30px 0 0 30px; }
    @media (max-width: 768px) {
      .csr2-section02 .csr2-section02-item .csr2-section02-item-content {
        padding-left: 0px; } }
    .csr2-section02 .csr2-section02-item .csr2-section02-item-content h2 {
      text-transform: uppercase; }
    .csr2-section02 .csr2-section02-item .csr2-section02-item-content p {
      line-height: 28px; }
    .csr2-section02 .csr2-section02-item .csr2-section02-item-content .more3 {
      background-color: #ff0011;
      display: inline-block;
      padding: 10px 20px;
      text-align: center;
      color: #fff;
      font-weight: bold; }
      .csr2-section02 .csr2-section02-item .csr2-section02-item-content .more3:hover {
        background-color: #ff0011; }

.csr-more {
  text-align: center; }
  .csr-more .csr-more-btn {
    margin-bottom: 150px; }
  .csr-more .csr-more-list {
    text-align: left;
    display: none; }
  .csr-more.active_top .csr-more-btn {
    display: none; }
  .csr-more.active_top .csr-more-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }



.contactus-kv {
  padding-top: 450px;
  width: 100%;
  background-image: url(../images/contactus-kv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  @media (max-width: 768px) {
    .contactus-kv {
      background-position: right; } }

.contactus-section01 {
  margin-bottom: 110px; }

.contactus-section02 .section-title {
  margin-bottom: 50px; }
  @media (max-width: 768px) {
    .contactus-section02 .section-title {
      margin-bottom: 80px; } }

.contactus-section02 .contactus-section01-item {
  position: relative;
  margin-bottom: 110px; }
  @media (max-width: 768px) {
    .contactus-section02 .contactus-section01-item {
      padding-top: 110px;
      margin-bottom: 50px; } }
  .contactus-section02 .contactus-section01-item::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 180%;
    background-color: #f1ede6;
    top: -120px;
    z-index: -1;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%); }
    @media (max-width: 768px) {
      .contactus-section02 .contactus-section01-item::before {
        height: 145%; } }
  .contactus-section02 .contactus-section01-item h4 {
    border-left: 5px solid #ff0011;
    font-size: 19px;
    padding-left: 15px;
    margin-bottom: 50px; }
  .contactus-section02 .contactus-section01-item .contactus-section01-item-group {
    padding-bottom: 15px;
    margin-bottom: 15px; }
    .contactus-section02 .contactus-section01-item .contactus-section01-item-group .contactus-section01-item-title {
      padding-right: 15px;
      border-right: 2px solid #000; }
    .contactus-section02 .contactus-section01-item .contactus-section01-item-group .contactus-section01-item-content {
      padding: 0 15px; }
  .contactus-section02 .contactus-section01-item p {
    line-height: 26px; }

.contactus-section03 {
  margin-bottom: 100px; }



.link-section02 .link-section02-item {
  position: relative;
  margin-bottom: 110px; }
  @media (max-width: 768px) {
    .link-section02 .link-section02-item {
      padding-top: 110px;
      margin-bottom: 100px; } }
  .link-section02 .link-section02-item::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 140%;
    background-color: #f1ede6;
    top: -120px;
    left: 0;
    z-index: -1; }
    @media (max-width: 768px) {
      .link-section02 .link-section02-item::before {
        height: 120%; } }
  .link-section02 .link-section02-item h4 {
    border-left: 5px solid #ff0011;
    font-size: 19px;
    padding-left: 15px;
    margin-bottom: 50px; }

.link-section02 .link-section02-item-group {
  background: #fff;
  position: relative;
  width: 90%;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px; }
  .link-section02 .link-section02-item-group:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e9e6e0;
    top: 10px;
    left: 10px;
    z-index: -1; }
  .link-section02 .link-section02-item-group:after {
    content: '';
    display: block;
    position: absolute;
    width: 291px;
    height: 40px;
    background: url(../images/line.png);
    bottom: -50px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: -1; }
  .link-section02 .link-section02-item-group .link-section02-item-img {
    margin: -25px 50px 40px 40px;
    font-size: 0; }
  .link-section02 .link-section02-item-group .link-section02-item-word p {
    color: #003d97;
    font-size: 19px; }
  .link-section02 .link-section02-item-group .link-section02-item-word ul li {
    font-size: 16px; }
  @media (max-width: 768px) {
    .link-section02 .link-section02-item-group .link-section02-item-word {
      padding: 0px 30px 30px; } }

.link-section02 .link-section02-item-group2 {
  position: relative;
  width: 90%;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .link-section02 .link-section02-item-group2 .link-section02-item-wrap {
    width: 48%;
    background: #ff0011;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .link-section02 .link-section02-item-group2 .link-section02-item-wrap:before {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      background: #e9e6e0;
      top: 10px;
      left: 10px;
      z-index: -1; }
    .link-section02 .link-section02-item-group2 .link-section02-item-wrap .link-section02-item-img {
      font-size: 0;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      @media (max-width: 768px) {
        .link-section02 .link-section02-item-group2 .link-section02-item-wrap .link-section02-item-img {
          -ms-flex: 0 0 100%;
          -webkit-box-flex: 0;
          flex: 0 0 100%;
          max-width: 100%; }
          .link-section02 .link-section02-item-group2 .link-section02-item-wrap .link-section02-item-img img {
            width: 100%; } }
    .link-section02 .link-section02-item-group2 .link-section02-item-wrap .link-section02-item-word {
      color: #fff;
      -webkit-box-flex: 2;
      -ms-flex: 2;
      flex: 2;
      padding: 0 20px; }
      @media (max-width: 768px) {
        .link-section02 .link-section02-item-group2 .link-section02-item-wrap .link-section02-item-word {
          -ms-flex: 0 0 100%;
          -webkit-box-flex: 0;
          flex: 0 0 100%;
          max-width: 100%; } }
      .link-section02 .link-section02-item-group2 .link-section02-item-wrap .link-section02-item-word p {
        font-size: 17px; }
      .link-section02 .link-section02-item-group2 .link-section02-item-wrap .link-section02-item-word ul li {
        font-size: 16px; }

.link-section03 .link-section03-title {
  margin-bottom: 50px; }
  .link-section03 .link-section03-title ul li a {
    display: block;
    border: 1px solid #ddd;
    width: 240px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #1d1d20; }
    .link-section03 .link-section03-title ul li a:hover {
      color: #0056b3; }
  @media (min-width: 768px) {
    .link-section03 .link-section03-title ul li:first-child a {
      border-right: none;
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px; }
    .link-section03 .link-section03-title ul li:last-child a {
      border-left: none;
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px; } }

.link-section03 .link-section03-item .link-section03-item-title {
  border-left: 5px solid #ff0011;
  padding-left: 50px;
  margin-bottom: 50px; }
  .link-section03 .link-section03-item .link-section03-item-title h4 {
    font-family: "Noto Serif TC", serif;
    font-size: 32px;
    font-weight: 500; }
  @media (max-width: 768px) {
    .link-section03 .link-section03-item .link-section03-item-title {
      padding-left: 30px; } }

.link-section03 .link-section03-content {
  background: #f1ede6;
  padding: 50px 0;
  margin-bottom: 100px; }
  .link-section03 .link-section03-content img {
    width: 100%; }
  @media (max-width: 768px) {
    .link-section03 .link-section03-content {
      padding: 50px 15px; } }

.recruit-kv {
  padding-top: 450px;
  width: 100%;
  background-image: url(../images/recruit-kv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  @media (max-width: 768px) {
    .recruit-kv {
      padding-top: 80%; } }

@media (max-width: 768px) {
  .recruit-section01 {
    margin-bottom: 120px; } }

.recruit-section02 {
  margin-bottom: 50px; }
  .recruit-section02 .section-title {
    margin-bottom: 50px; }

.recruit-section03 {
  margin-bottom: 100px;
  position: relative; }
  .recruit-section03:before {
    content: '';
    position: absolute;
    display: block;
    top: -5%;
    right: 0;
    background-image: url(../images/news-bg-left.png);
    width: 786px;
    height: 441px;
    background-repeat: no-repeat; }
    @media (max-width: 768px) {
      .recruit-section03:before {
        display: none; } }
  .recruit-section03 + .recruit-section03:before {
    content: '';
    position: absolute;
    display: block;
    top: -5%;
    left: 0;
    background-image: url(../images/news-bg-left.png);
    width: 786px;
    height: 441px;
    background-repeat: no-repeat; }
    @media (max-width: 768px) {
      .recruit-section03 + .recruit-section03:before {
        display: none; } }
  .recruit-section03 .recruit-section03-item .recruit-section03-item-img {
    position: relative;
    font-size: 0; }
    .recruit-section03 .recruit-section03-item .recruit-section03-item-img img {
      width: 100%; }
    @media (max-width: 768px) {
      .recruit-section03 .recruit-section03-item .recruit-section03-item-img {
        padding: 0; } }
  .recruit-section03 .recruit-section03-item .recruit-section03-item-img2 {
    position: relative;
    font-size: 0; }
    .recruit-section03 .recruit-section03-item .recruit-section03-item-img2 img {
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%; }
    @media (max-width: 768px) {
      .recruit-section03 .recruit-section03-item .recruit-section03-item-img2 {
        padding: 0; } }
  .recruit-section03 .recruit-section03-item .recruit-section03-item-word {
    padding: 65px;
    background: #f1ede6;
    max-height: 480px; }
    .recruit-section03 .recruit-section03-item .recruit-section03-item-word h3 {
      position: relative;
      margin-bottom: 60px;
      font-size: 25px;
      line-height: 38px; }
      .recruit-section03 .recruit-section03-item .recruit-section03-item-word h3:before {
        content: '';
        display: block;
        position: absolute;
        bottom: -29px;
        left: 0;
        width: 48px;
        height: 2px;
        background: #ff0011; }

.recruit-section04 {
  background-color: #f1ede6;
  padding: 100px 0;
  text-align: center; }
  @media (max-width: 768px) {
    .recruit-section04 {
      padding: 60px 0; } }
  .recruit-section04 h4 {
    font-family: "Noto Serif TC", serif;
    font-weight: 500;
    margin-bottom: 15px; }
  .recruit-section04 h2 {
    font-family: "Noto Serif TC", serif;
    font-weight: 500;
    margin-bottom: 80px; }
  .recruit-section04 li {
    margin: 0 15px; }
    .recruit-section04 li p {
      font-size: 18px;
      font-weight: bold; }



.footer {
  background: #c58a75;
  padding: 90px 0; 
background-image: url(../images/footer.png);
background-position: top center;
background-size: contain;
background-repeat: no-repeat;
}
.footer .footer-body  .footer-item1 ul{
  display: inline-block;
}
.footer .footer-body  .footer-item1 li{
  font-size: 13px;
  border-right: 1px solid #72351b;
  color: #72351b;
  display: inline-block;
  padding: 2px 6px;
  padding-right: 8px;
  vertical-align: sub;
}
.footer-item span{
  font-size: 13px;
  color: #72351b;
  vertical-align: super;
}

.footer-item span + a{
  margin-left: 10px;
}
.footer-item a{
  margin-left: 5px;
}
.footer-item a.footer-btn{
  padding: 5px 45px;
  color: #72351b;
  font-size: 15px;
  border-radius: 10px;
  box-shadow: 5px 5px 0px 0px #72351b99;
  border: 2px #72351b solid;
  vertical-align: super;
  margin-left: 10px;
}

  @media (max-width: 768px) {
    .footer {
      padding: 15px 0  15px 0; 
    } 
    .footer-item a.footer-btn{
      zoom:0.8;
    }
    }
  .footer .title-link {
    font-size: 15px;
    color: #000;
    font-weight: bold;
    display: block;
    margin-bottom: 25px; }
    .footer .title-link:hover {
      color: #004098; }
  .footer a {
    font-size: 15px;
    color: #1d1d20; }
    .footer a:hover {
      color: #000; }
    .footer a i {
      font-size: 32px;
      color: #666; }
      .footer a i:hover {
        color: #000; }
  .footer p {
    margin-bottom: 0px; }
  .footer .footer-item {
    margin-bottom: 15px; }


.outlet {
  overflow-x: hidden; }

.container-custom {
  position: relative;
  width: 100%;
  max-width: 1600px;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto; }
  @media (max-width: 1600px) {
    .container-custom {
      width: 80%;
      max-width: 80%; } }
  @media (max-width: 768px) {
    .container-custom {
      width: 100%;
      max-width: 100%; } }

.white-arrow .slick-next {
  right: 20px;
  outline: 0;
  width: 16px;
  height: 30px;
  z-index: 2;
  background: url(../images/main_controls.png) -18.5px 0 no-repeat;
  opacity: .5; }
  .white-arrow .slick-next:focus, .white-arrow .slick-next:hover {
    opacity: 1;
    background: url(../images/main_controls.png) -18.5px 0 no-repeat; }

.white-arrow .slick-prev {
  left: 20px;
  outline: 0;
  width: 16px;
  height: 30px;
  z-index: 2;
  background: url(../images/main_controls.png) no-repeat;
  opacity: .5; }
  .white-arrow .slick-prev:focus, .white-arrow .slick-prev:hover {
    opacity: 1;
    background: url(../images/main_controls.png) no-repeat; }

.white-arrow .slick-dots {
  bottom: 20px; }

.black-arrow .slick-next {
  right: -10px;
  outline: 0;
  width: 18.5px;
  height: 27px;
  z-index: 2;
  background: url(../images/main2_controls.png) -18.5px 0 no-repeat;
  opacity: .5; }
  .black-arrow .slick-next:focus, .black-arrow .slick-next:hover {
    opacity: 1;
    background: url(../images/main2_controls.png) -18.5px 0 no-repeat; }

.black-arrow .slick-prev {
  left: -10px;
  outline: 0;
  width: 18.5px;
  height: 27px;
  z-index: 2;
  background: url(../images/main2_controls.png) no-repeat;
  opacity: .5; }
  .black-arrow .slick-prev:focus, .black-arrow .slick-prev:hover {
    opacity: 1;
    background: url(../images/main2_controls.png) no-repeat; }

.black-arrow .slick-dots {
  bottom: 20px; }

.img-wrap .img-item {
  position: relative;
  padding-top: 100%;
  overflow: hidden; }
  .img-wrap .img-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }

.breadcrumb {
  background: #fff;
  border-radius: 0;
  border-bottom: 1px solid #000;
  margin-bottom: 0; }
  .breadcrumb .nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; }
    .breadcrumb .nav li {
      position: relative;
      margin-right: 20px; }
      .breadcrumb .nav li a {
        color: #666;
        display: block; }
        .breadcrumb .nav li a:hover {
          color: #000; }
      .breadcrumb .nav li:before {
        content: '>';
        position: absolute;
        display: block;
        top: 0;
        right: -15px;
        color: #000 !important; }
      .breadcrumb .nav li:last-child:before {
        display: none; }
      .breadcrumb .nav li.active a {
        color: #e6801e; }

.red-title {
  background: #ff0011;
  padding: 50px 0 20px;
  text-align: center;
  margin-bottom: 50px; }
  .red-title h2 {
    font-size: 24px;
    color: #fff; }

.kv-title {
  position: relative;
  left: 0vw;
  width: 300px;
  height: 120px;
  text-align: center;
  background-color: #ff0011;
  margin-top: -50px;
  margin-bottom: 50px; }
  @media (max-width: 768px) {
    .kv-title {
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); } }
  .kv-title .kv-title-inside {
    position: relative;
    top: -22px; }
    .kv-title .kv-title-inside img {
      margin-bottom: 15px; }
    .kv-title .kv-title-inside p {
      color: #fff;
      font-size: 24px;
      font-weight: bold;
      letter-spacing: 3px; }

.section-title {
  font-weight: bold;
  font-size: 24px;
  position: relative;
  margin-bottom: 50px;
  color: var(--mg);
  letter-spacing: 5px;

  }
  @media (max-width: 768px) {
    .section-title {
      margin-bottom: 60px; } }
  .section-title span {
    font-size: 10px;
    position: relative;
    display: block;
    color: #999;
    letter-spacing: 5px;

     }

  .section-title:after ,.section-title:before{
    content: '';
    display: block;
    width: 180px;
    height: 1px;
    background-image: url(../images/dashed.png);
    background-repeat: repeat-x;
    margin: 10px auto;

  }
.section-des p{
  font-size: 15px;
  color: #999;
  line-height: 2em;
  text-align: left;
}
.form-custom {
  padding: 10px 0px;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0; }
  @media (min-width: 768px) {
    .form-custom {
      min-width: 200px; } }

.more {
  display: inline-block;
  color: #919191;
  position: relative; }
  .more::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: #ff0011 transparent transparent transparent;
    bottom: -30px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%); }
  .more:hover {
    color: #000; }

.more2 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #919191;
  position: relative; }
  .more2:hover {
    color: #000; }

.row75 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -7.5px;
  margin-left: -7.5px; }
  .row75 [class^=col] {
    padding-right: 7.5px;
    padding-left: 7.5px; }

.print-btn {
  border-bottom: 1px solid #ff0011;
  border-radius: 0;
  padding: .375rem 0rem; }

.prl-60 {
  padding: 0 60px; }
  @media (max-width: 768px) {
    .prl-60 {
      padding: 0 15px; } }

@media (min-width: 992px) {
  .kv_slider_mo {
    display: none; } }

@media (max-width: 991px) {
  .kv_slider {
    display: none; }
  img {
    max-width: 100% !important; } }
