@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@font-face {
  font-family: "Inter";
  src: url(../images/fonts/Inter-VariableFont_opsz\,wght.ttf);
}
/*------------------------------*/
/*     breakpoint - setting
--------------------------------*/
* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
a:hover {
  text-decoration: none;
  color: #333;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

.visible-pc {
  display: block;
}
@media (max-width: 769px) {
  .visible-pc {
    display: none;
  }
}

.visible-mobile {
  display: none;
}
@media (max-width: 769px) {
  .visible-mobile {
    display: block;
  }
}

/*------------------------------*/
/*     BACK TO TOP BUTTON
--------------------------------*/
.m-backtotop {
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  color: #000;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  right: 28px;
  z-index: 1000;
  cursor: pointer;
}
@media (max-width: 576px) {
  .m-backtotop {
    width: 40px;
    height: 40px;
    right: 15px;
  }
}
.m-backtotop.active {
  bottom: 35px;
  opacity: 1;
}
@media (max-width: 576px) {
  .m-backtotop.active {
    bottom: 50px;
  }
}
.m-backtotop > div.arrow {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
@media (max-width: 576px) {
  .m-backtotop span {
    font-size: 14px;
  }
}

.inner_banner {
  width: 100%;
  position: relative;
}
.inner_banner::before {
  content: "";
  background-color: rgba(3, 18, 28, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.inner_banner img {
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .inner_banner img {
    height: 195px;
  }
}
.inner_banner .banner_pagetit {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.inner_banner .banner_pagetit .cate {
  font-size: 18px;
}
.inner_banner .banner_pagetit .name {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .inner_banner .banner_pagetit .name {
    font-size: 26px;
  }
}

.sidebar {
  width: 100%;
  overflow: hidden;
}
.sidebar .tit {
  width: 100%;
  background-color: #C0D2E3;
  border-radius: 10px 10px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #2E658D;
  padding: 15px;
}
.sidebar .cate_box {
  background-color: #2E658D;
  border-radius: 0 0 10px 10px;
  color: #fff;
}
.sidebar .cate_box .cate_item {
  padding: 15px;
  border-bottom: 1px solid #fff;
}
.sidebar .cate_box .cate_item:last-child {
  border-bottom: 0;
}
.sidebar .cate_box .cate_tit,
.sidebar .cate_box .cate_tit > a {
  color: #fff;
  font-weight: 500;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.sidebar .cate_box .cate_tit i,
.sidebar .cate_box .cate_tit > a i {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.sidebar .cate_box .cate_tit.open i,
.sidebar .cate_box .cate_tit > a.open i {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sidebar .cate_box .cate_box_sec {
  margin: 8px 0;
  padding-left: 0.8rem;
  max-height: 0;
  display: none;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}
.sidebar .cate_box .cate_box_sec a {
  width: 100%;
  color: #fff;
}
.sidebar .cate_box .cate_item_sec {
  padding: 5px;
  position: relative;
  z-index: 1;
}
.sidebar .cate_box .cate_item_sec::before {
  content: "";
  width: 315px;
  height: 100%;
  background-color: #87BCED;
  position: absolute;
  top: 0;
  left: -27px;
  z-index: -1;
  opacity: 0;
}
.sidebar .cate_box .cate_item_sec:hover::before, .sidebar .cate_box .cate_item_sec.active::before {
  opacity: 1;
}

.cont_box .cont_tit {
  font-size: 30px;
  font-weight: 600;
  color: #1F5A84;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cont_box .cont_tit {
    font-size: 26px;
  }
}
.cont_box .cont_txt {
  font-size: 18px;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cont_box .cont_txt {
    font-size: 16px;
  }
}
.cont_box .cont_txt p {
  margin-bottom: 10px;
}
.cont_box .cont_info {
  font-size: 18px;
  margin-bottom: 18px;
}
.cont_box .cont_info li {
  margin-bottom: 5px;
}
.cont_box .cont_download {
  width: 100%;
}
.cont_box .cont_download a {
  width: 100%;
  background-color: #2E658D;
  color: #fff;
  display: block;
  text-align: center;
  padding: 10px 0;
  border-radius: 6px;
}
.cont_box .cont_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}
@media (max-width: 576px) {
  .cont_box .cont_list {
    grid-template-columns: 1fr;
  }
}
.cont_box .cont_list_item > a img {
  width: 100%;
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.cont_box .cont_list_item > a p {
  font-size: 18px;
  font-weight: 600;
  color: #0F3856;
  text-align: center;
  padding: 5px 0;
}
.cont_box .pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
}
.cont_box .pagination .page-link {
  background-color: transparent;
  border: 0;
  color: #2E658D;
  font-size: 18px;
  font-weight: 600;
}
.cont_box .pagination .page-link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.cont_box .masonry_box {
  margin: 20px auto;
  -webkit-columns: 3;
     -moz-columns: 3;
          columns: 3;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media (max-width: 576px) {
  .cont_box .masonry_box {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}
.cont_box .masonry_box .box {
  width: 100%;
  margin-bottom: 10px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  cursor: pointer;
  position: relative;
}
.cont_box .masonry_box .box::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(21, 22, 28, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.cont_box .masonry_box .box::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../images/detail_page/masonry_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.cont_box .masonry_box .box:hover::before, .cont_box .masonry_box .box:hover::after {
  opacity: 1;
}
.cont_box .masonry_box .box:hover .caption {
  opacity: 1;
}
.cont_box .masonry_box .box img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-container {
  width: 100%;
  max-width: 100%;
  height: 500px;
  margin: 30px 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .slider-container {
    height: 300px;
  }
}
.slider-container .before-image,
.slider-container .after-image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.slider-container .before-image img,
.slider-container .after-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-container .after-image {
  -webkit-clip-path: inset(0 50% 0 0);
          clip-path: inset(0 50% 0 0);
}
.slider-container .after-image .after-text {
  visibility: visible;
  z-index: 3;
}
.slider-container .before-text,
.slider-container .after-text {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: #3a3a3a;
  z-index: 4;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.6196078431);
  border-radius: 0.3rem;
  letter-spacing: 2px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.slider-container .before-text {
  left: 20px;
  top: 20px;
  z-index: 5;
}
.slider-container .after-text {
  right: 20px;
  top: 20px;
  z-index: 3;
}
.slider-container .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
}
.slider-container .slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  z-index: 1;
}
.slider-container .slider-line .pulse-container {
  position: relative;
  display: inline-block;
}
.slider-container .slider-line .pulse-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  -webkit-animation: pulse 1.5s infinite;
          animation: pulse 1.5s infinite;
}
.slider-container .slider-line svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
}

.slider-container,
.before-image img,
.after-image img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.slider-handle,
.slider-line {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.8);
            transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.8);
            transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
.inner_wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
  margin-top: 60px;
  margin-bottom: 120px;
}
@media (max-width: 576px) {
  .inner_wrapper {
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding: 0 16px;
  }
}

.about_wrapper,
.contact_wrapper {
  width: 85%;
  margin: 60px auto 120px auto;
}
@media (max-width: 576px) {
  .about_wrapper,
  .contact_wrapper {
    width: 100%;
    padding: 0 16px;
    margin-top: 30px;
  }
}
.about_wrapper .cont_box,
.contact_wrapper .cont_box {
  display: grid;
  gap: 60px;
}
.about_wrapper .cont_box .cont_item,
.contact_wrapper .cont_box .cont_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 576px) {
  .about_wrapper .cont_box .cont_item,
  .contact_wrapper .cont_box .cont_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about_wrapper .cont_box .cont_item img,
.contact_wrapper .cont_box .cont_item img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 300px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .about_wrapper .cont_box .cont_item img,
  .contact_wrapper .cont_box .cont_item img {
    height: auto;
  }
}

.contact_wrapper .cont_box .cont_item {
  gap: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact_wrapper .cont_box .cont_item iframe {
  width: 600px;
  height: 400px;
}
@media (max-width: 576px) {
  .contact_wrapper .cont_box .cont_item iframe {
    width: 100%;
    height: 300px;
  }
}

.renovate_wrapper .cont_box {
  display: grid;
  gap: 60px;
}
@media (max-width: 576px) {
  .renovate_wrapper .cont_box {
    gap: 30px;
  }
}
.renovate_wrapper .cont_box .cont_info {
  margin: 15px 0;
}
.renovate_wrapper .cont_box .cont_img > img {
  width: 100%;
  height: 305px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.renovate_wrapper .cont_box table {
  width: 100%;
  text-align: center;
}
.renovate_wrapper .cont_box table thead tr {
  background-color: #2E658D;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.renovate_wrapper .cont_box table thead th {
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  border-right: 1px solid #fff;
}
.renovate_wrapper .cont_box table thead th:first-child {
  border-radius: 10px 0 0 0;
}
.renovate_wrapper .cont_box table thead th:last-child {
  border-radius: 0 10px 0 0;
  border-right: 0;
}
.renovate_wrapper .cont_box table tbody {
  background-color: rgba(255, 255, 255, 0.5);
}
.renovate_wrapper .cont_box table tbody tr {
  border-bottom: 1px solid #fff;
}
.renovate_wrapper .cont_box table tbody tr:last-child {
  border-bottom: 0;
}
.renovate_wrapper .cont_box table tbody tr th,
.renovate_wrapper .cont_box table tbody tr td {
  font-size: 18px;
  padding: 10px 0;
  color: #fff;
  border-right: 1px solid #fff;
}
.renovate_wrapper .cont_box table tbody tr th {
  font-weight: 500;
  background-color: #2E658D;
}
.renovate_wrapper .cont_box table tbody tr td {
  background-color: #4d8cba;
}
.renovate_wrapper .cont_box table tbody tr td:last-child {
  background-color: #e0a354;
  border-right: 0;
}
.renovate_wrapper .cont_box .cont_item_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 576px) {
  .renovate_wrapper .cont_box .cont_item_grid {
    grid-template-columns: 1fr;
  }
}
.renovate_wrapper .cont_box .cont_item_grid .cont_info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.renovate_wrapper .cont_box .cont_item_grid .cont_info li {
  padding: 5px 20px;
  margin-bottom: 12px;
  background-color: #1F5A84;
  color: #fff;
  border-radius: 50px;
}
.renovate_wrapper .cont_box .cont_list {
  margin: 0;
}
.renovate_wrapper .cont_box .cont_list_img {
  position: relative;
}
.renovate_wrapper .cont_box .cont_list_img .tag {
  font-size: 14px;
  font-weight: 500;
  background-color: #C0D2E3;
  border-radius: 0 10px 0 10px;
  color: #2E658D;
  padding: 5px 8px;
  position: absolute;
  top: 0;
  right: 0;
}
.renovate_wrapper .cont_box .cont_list_img img {
  -webkit-box-shadow: 5px 6px 10px rgba(25, 25, 25, 0.2);
          box-shadow: 5px 6px 10px rgba(25, 25, 25, 0.2);
}
.renovate_wrapper .cont_box .cont_list p {
  padding: 10px 0;
}

body {
  width: 100%;
  height: 100vh;
  font-family: "Inter", sans-serif;
  background-color: #F1F8FF;
  color: #222;
  letter-spacing: 0.03rem;
  line-height: 1.5;
  overflow-x: hidden;
}

.navbar {
  /* 在中型螢幕 (md) 及以上才啟用 hover 效果 */
}
.navbar .navbar-brand img {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar .navbar-collapse {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.navbar.navbar-light .navbar-toggler {
  border: 0;
}
.navbar.navbar-light .navbar-toggler-icon {
  background-image: url(../images/hamburger_toggler.svg);
}
.navbar.navbar-light .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.navbar .navbar-nav {
  gap: 10px;
}
@media (max-width: 576px) {
  .navbar .navbar-nav .nav-item {
    text-align: center;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  font-size: 17px;
  font-weight: 600;
  color: #0D1965;
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  width: 1000px;
  left: inherit;
  right: -220%;
  padding: 20px;
  background-color: #2E658D; /*#0D1965;*/
  border: 0;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 45px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (max-width: 1400px) {
  .navbar .navbar-nav .nav-item .dropdown-menu {
    width: 800px;
    right: -105%;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-nav .nav-item .dropdown-menu {
    width: 95%;
    margin: 0 auto;
    padding: 0;
    display: none;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  border: 0;
}
@media (max-width: 576px) {
  .navbar .navbar-nav .nav-item .dropdown-menu.show {
    display: block;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu li {
  width: 21%;
}
@media (max-width: 576px) {
  .navbar .navbar-nav .nav-item .dropdown-menu li {
    width: 100%;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 3px 0 3px 5px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    margin-bottom: 0;
    padding: 10px;
    border-bottom: 0;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav_sec_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 576px) {
  .navbar .navbar-nav .nav-item .dropdown-menu .nav_sec_info {
    background-color: #fff;
    padding: 15px 10px;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav_sec_info li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav_sec_info li a {
  color: #fff;
  padding: 5px;
}
@media (max-width: 576px) {
  .navbar .navbar-nav .nav-item .dropdown-menu .nav_sec_info li a {
    color: #0D1965;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav_sec_info li a:hover {
  background-color: #fff;
  color: #0D1965;
}
@media (min-width: 1200px) {
  .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}

.wrapper {
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.wrapper .common_tit {
  color: #2E658D; /*#0D1965;*/
  font-weight: 800;
}
.wrapper .common_tit .en {
  font-size: 36px;
}
@media (max-width: 576px) {
  .wrapper .common_tit .en {
    font-size: 32px;
  }
}
.wrapper .common_tit .cn {
  font-size: 26px;
}
@media (max-width: 576px) {
  .wrapper .common_tit .cn {
    font-size: 20px;
  }
}
.wrapper .swiper-1 {
  width: 95%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  margin: auto;
  border-radius: 30px;
}
@media (max-width: 576px) {
  .wrapper .swiper-1 {
    border-radius: 15px;
  }
}
.wrapper .swiper-1 .swiper-wrapper .swiper-slide img {
  width: 100%;
  max-height: 760px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1280px) {
  .wrapper .swiper-1 .swiper-wrapper .swiper-slide img {
    height: 600px;
  }
}
@media (max-width: 769px) {
  .wrapper .swiper-1 .swiper-wrapper .swiper-slide img {
    height: 550px;
  }
}
@media (max-width: 576px) {
  .wrapper .swiper-1 .swiper-wrapper .swiper-slide img {
    height: 430px;
  }
}
.wrapper .swiper-1 .swiper-1-next,
.wrapper .swiper-1 .swiper-1-prev {
  color: #fff;
}
@media (max-width: 576px) {
  .wrapper .swiper-1 .swiper-1-next::after,
  .wrapper .swiper-1 .swiper-1-prev::after {
    font-size: 26px;
  }
}
.wrapper .swiper-1 .swiper-1-prev {
  left: 20px;
}
@media (max-width: 576px) {
  .wrapper .swiper-1 .swiper-1-prev {
    left: 5px;
  }
}
.wrapper .swiper-1 .swiper-1-next {
  right: 20px;
}
@media (max-width: 576px) {
  .wrapper .swiper-1 .swiper-1-next {
    right: 5px;
  }
}
.wrapper .service_box {
  width: 80%;
  margin: auto;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
  position: relative;
  z-index: 2;
}
@media (max-width: 1280px) {
  .wrapper .service_box {
    width: 90%;
    gap: 10px;
    margin-bottom: 60px;
  }
}
@media (max-width: 769px) {
  .wrapper .service_box {
    width: 100%;
    margin: 30px 0 45px 0;
  }
}
@media (max-width: 576px) {
  .wrapper .service_box {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    padding: 16px;
  }
}
.wrapper .service_box .service_item {
  background-color: #1F5A84;
  color: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 20px 0;
}
@media (max-width: 769px) {
  .wrapper .service_box .service_item {
    padding: 15px 0;
  }
}
.wrapper .service_box .service_item img {
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .wrapper .service_box .service_item img {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
  }
}
@media (max-width: 769px) {
  .wrapper .service_box .service_item img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 576px) {
  .wrapper .service_box .service_item img {
    width: 80px;
    height: 80px;
  }
}
.wrapper .service_box .service_item p {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 769px) {
  .wrapper .service_box .service_item p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .wrapper .service_box .service_item p {
    font-size: 16px;
  }
}
.wrapper .product_box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 110px 0 40px 0;
  margin-bottom: 120px;
  position: relative;
}
@media (max-width: 1280px) {
  .wrapper .product_box {
    margin-bottom: 60px;
  }
}
@media (max-width: 769px) {
  .wrapper .product_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin-bottom: 45px;
  }
}
.wrapper .product_box::after {
  content: "";
  width: 53%;
  height: 100%;
  background-color: #0F3856;
  border-radius: 130px 0 0 0;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 769px) {
  .wrapper .product_box::after {
    display: none;
  }
}
.wrapper .product_box .product_header {
  width: 35%;
  position: relative;
  padding-left: 240px;
  margin-bottom: 30px;
}
@media (max-width: 1280px) {
  .wrapper .product_box .product_header {
    padding-left: 32px;
  }
}
@media (max-width: 769px) {
  .wrapper .product_box .product_header {
    width: 100%;
    padding: 0 28px;
  }
}
@media (max-width: 576px) {
  .wrapper .product_box .product_header {
    margin-bottom: 15px;
  }
}
.wrapper .product_box .swiper-2-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 18%;
  bottom: -15px;
}
@media (max-width: 769px) {
  .wrapper .product_box .swiper-2-button {
    right: 28px;
    bottom: -10px;
  }
}
.wrapper .product_box .swiper-2-button .swiper-2-next,
.wrapper .product_box .swiper-2-button .swiper-2-prev {
  position: static;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  margin-left: 15px;
  top: auto;
  right: auto;
  left: auto;
}
@media (max-width: 576px) {
  .wrapper .product_box .swiper-2-button .swiper-2-next,
  .wrapper .product_box .swiper-2-button .swiper-2-prev {
    margin-left: 10px;
  }
}
.wrapper .product_box .swiper-2-button .swiper-2-next::after,
.wrapper .product_box .swiper-2-button .swiper-2-prev::after {
  display: none;
}
.wrapper .product_box .swiper-2-button .swiper-2-next i,
.wrapper .product_box .swiper-2-button .swiper-2-prev i {
  color: #1B2EA4;
  font-size: 36px;
}
@media (max-width: 576px) {
  .wrapper .product_box .swiper-2-button .swiper-2-next i,
  .wrapper .product_box .swiper-2-button .swiper-2-prev i {
    font-size: 32px;
  }
}
.wrapper .product_box .product_swiper {
  width: 65%;
}
@media (max-width: 769px) {
  .wrapper .product_box .product_swiper {
    width: 100%;
    padding: 0 16px;
  }
}
.wrapper .product_box .product_swiper .swiper-2 {
  padding-bottom: 30px;
}
@media (max-width: 576px) {
  .wrapper .product_box .product_swiper .swiper-2 {
    padding: 0 12px 30px 12px;
  }
}
.wrapper .product_box .product_swiper .swiper-2 .swiper-slide {
  width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 6px 7px 10px rgba(1, 15, 26, 0.25);
          box-shadow: 6px 7px 10px rgba(1, 15, 26, 0.25);
}
.wrapper .product_box .product_swiper .swiper-2 .swiper-slide img {
  width: 100%;
  height: 205px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.wrapper .product_box .product_swiper .swiper-2 .swiper-slide .info {
  padding: 15px 20px;
}
.wrapper .product_box .product_swiper .swiper-2 .swiper-slide .info .tit {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.wrapper .card_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 110px;
}
@media (max-width: 1280px) {
  .wrapper .card_box {
    margin-bottom: 60px;
  }
}
@media (max-width: 769px) {
  .wrapper .card_box {
    grid-template-columns: 1fr;
    padding: 0 16px;
    margin-bottom: 45px;
  }
}
.wrapper .card_box .card_item {
  width: 100%;
  height: 275px;
  border-radius: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 769px) {
  .wrapper .card_box .card_item {
    height: 250px;
  }
}
.wrapper .card_box .card_item::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(3, 18, 28, 0.4);
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.wrapper .card_box .card_item .info {
  width: 100%;
  height: 100%;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 20px;
  letter-spacing: 0.05rem;
}
.wrapper .card_box .card_item .info_inner {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper .card_box .card_item .info_inner .lft .tit {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.wrapper .card_box .card_item .info_inner .lft .tit span {
  font-size: 16px;
}
@media (max-width: 576px) {
  .wrapper .card_box .card_item .info_inner .lft .txt {
    font-size: 14px;
  }
}
.wrapper .card_box .card_item .info_inner .rt {
  width: 65px;
}
.wrapper .card_box .card_item .info_inner .rt img {
  width: 100%;
}
.wrapper .case_box {
  margin-bottom: 110px;
}
@media (max-width: 1280px) {
  .wrapper .case_box {
    margin-bottom: 60px;
  }
}
@media (max-width: 769px) {
  .wrapper .case_box {
    margin-bottom: 45px;
  }
}
.wrapper .case_box .case_header {
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 769px) {
  .wrapper .case_box .case_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 0;
    margin-bottom: 15px;
  }
}
.wrapper .case_box .case_swiper {
  position: relative;
}
@media (max-width: 576px) {
  .wrapper .case_box .case_swiper {
    padding: 0 16px;
  }
}
.wrapper .case_box .case_swiper .swiper-3-prev::after,
.wrapper .case_box .case_swiper .swiper-3-next::after {
  display: none;
}
.wrapper .case_box .case_swiper .swiper-3-prev i,
.wrapper .case_box .case_swiper .swiper-3-next i {
  color: #1B2EA4;
  font-size: 38px;
}
@media (max-width: 1280px) {
  .wrapper .case_box .case_swiper .swiper-3-prev i,
  .wrapper .case_box .case_swiper .swiper-3-next i {
    font-size: 32px;
  }
}
.wrapper .case_box .case_swiper .swiper-3-prev {
  left: -20px;
}
@media (max-width: 576px) {
  .wrapper .case_box .case_swiper .swiper-3-prev {
    left: 0;
  }
}
.wrapper .case_box .case_swiper .swiper-3-next {
  right: -20px;
}
@media (max-width: 576px) {
  .wrapper .case_box .case_swiper .swiper-3-next {
    right: 0;
  }
}
.wrapper .case_box .case_swiper .swiper-3 .swiper-slide img {
  width: 100%;
  height: 384px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
  margin-bottom: 15px;
}
@media (max-width: 1280px) {
  .wrapper .case_box .case_swiper .swiper-3 .swiper-slide img {
    height: 280px;
    margin-bottom: 10px;
  }
}
@media (max-width: 769px) {
  .wrapper .case_box .case_swiper .swiper-3 .swiper-slide img {
    height: 370px;
  }
}
.wrapper .case_box .case_swiper .swiper-3 .swiper-slide .tit {
  font-size: 20px;
  font-weight: 600;
  color: #0F3856;
}
@media (max-width: 1280px) {
  .wrapper .case_box .case_swiper .swiper-3 .swiper-slide .tit {
    font-size: 16px;
  }
}

.footer_box {
  width: 100%;
  height: 100%;
  background-color: #1F5A84;
  background-image: url(../images/footer_bg.svg);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding-top: 20px;
}
@media (max-width: 576px) {
  .footer_box {
    margin-top: 50px;
  }
}
.footer_box .container {
  display: grid;
  gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_box .container .footer_item {
  font-weight: 600;
}
.footer_box .container .footer_item_logo {
  width: 100%;
  position: relative;
}
.footer_box .container .footer_item_logo::before {
  content: "";
  width: 118px;
  height: 121px;
  background-color: #1F5A84;
  border-radius: 50%;
  position: absolute;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 576px) {
  .footer_box .container .footer_item_logo::before {
    width: 110px;
    height: 112px;
  }
}
.footer_box .container .footer_item_logo img {
  width: 86px;
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 576px) {
  .footer_box .container .footer_item_logo img {
    width: 75px;
  }
}
.footer_box .container .footer_item_info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_box .container .footer_item_info img {
  width: 110px;
  margin: auto;
  display: block;
}
.footer_box .container .footer_item_info .company_info li,
.footer_box .container .footer_item_info .company_info li > a {
  color: #fff;
  -moz-text-align-last: left;
       text-align-last: left;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer_box .container .footer_item_info .company_info li:hover,
.footer_box .container .footer_item_info .company_info li > a:hover {
  opacity: 0.8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer_box .container .footer_item .media_icom {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: auto;
}
.footer_box .container .footer_item .media_icom li > a {
  color: #fff;
  font-size: 32px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer_box .container .footer_item .media_icom li > a:hover {
  opacity: 0.8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer_box .copyRight {
  text-align: center;
  color: #fff;
  border-top: 1px solid #fff;
  padding: 15px 0;
  margin-top: 30px;
}