* {
  box-sizing: border-box;
}

@keyframes opacity-bounce {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  60% {
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.gd-ad-flex-parent {
  animation-name: opacity-bounce;
  animation-duration: 800ms;
  animation-delay: 400ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  opacity: 0;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.page-inner {
  background-color: rgb(255, 255, 255);
  min-height: 100vh;
}

a {
  text-decoration: none;
}

.top_hint {
  display: flex;
  background-color: rgb(22, 22, 22);
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px;
  color: #fff;
  text-align: center;
}
.top_hint:hover {
  filter: invert(0.2);
}
.top_hint svg {
  width: 20px;
}

._container {
  max-width: 1200px;
  margin: 0 auto;
}

body {
  margin: 0;
  padding: 0;
}

header {
  background: rgba(25, 164, 165, 0.9);
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
header .pc {
  padding: 32px 40px;
  display: flex;
  align-items: center;
}
header .pc .block {
  width: 25%;
  position: relative;
}
header .pc .block:nth-child(2) {
  width: 50%;
}
header .pc .block .logo {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
header .pc .block .logo img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #fff;
  box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.15);
  padding: 10px;
  transition: all 0.3s;
}
header .pc .block .logo img.mini {
  height: 64px;
}
header .pc .block nav {
  display: flex;
  justify-content: center;
}
header .pc .block nav a {
  color: #000;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
header .pc .block nav a:hover {
  color: #333;
}
header .pc .block nav a i {
  font-size: 12px;
  transition: transform 0.3s;
}
header .pc .block nav ul, header .pc .block nav li {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .pc .block nav > ul {
  display: flex;
}
header .pc .block nav > ul > li {
  display: inline-block;
  margin: 0 15px;
  position: relative;
}
header .pc .block nav > ul > li.active a {
  font-weight: bolder;
}
header .pc .block nav > ul > li > ul {
  position: absolute;
  top: 140%;
  left: 0;
  max-height: 45vh;
  overflow-x: hidden;
  padding: 20px;
  background-color: rgb(25, 164, 165);
  box-shadow: 0 3px 6px 3px rgba(0, 0, 0, 0.24);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
}
header .pc .block nav > ul > li.dropdown a i {
  transform: rotate(180deg);
}
header .pc .block nav > ul > li.dropdown > ul {
  top: 120%;
  visibility: visible;
  opacity: 1;
}
header .pc .block .icons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
header .pc .block .icons a {
  color: #000;
}
header .pc .block .icons .search {
  position: relative;
}
header .pc .block .icons .search .box {
  display: none;
  position: absolute;
  top: 50%;
  right: -5px;
  width: calc(-80px + 50vw);
  transform: translateY(-50%);
}
header .pc .block .icons .search .box.active {
  display: block;
}
header .pc .block .icons .search .box form {
  display: flex;
  align-items: center;
  gap: 24px;
}
header .pc .block .icons .search .box form div {
  flex: 1;
}
header .pc .block .icons .search .box form div input {
  background-color: rgb(25, 164, 165);
  border: 1px solid #fff;
  border-radius: 1px;
  padding: 8px;
  padding-left: 40px;
  color: #fff;
  outline: 0;
  width: 100%;
  font-size: 18px;
}
header .pc .block .icons .search .box form div input:focus {
  box-shadow: currentcolor 0px 0px 0px 1px inset;
}
header .pc .block .icons .search .box form div input::placeholder {
  color: #fff;
}
header .pc .block .icons .search .box form div i.fa-search {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
header .pc .block .icons .search .box form i.fa-times {
  display: block;
  width: 50px;
  height: 100%;
  background: rgb(48, 173, 174);
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  header .pc {
    display: none;
  }
}
header .wap {
  display: none;
  align-items: center;
  padding: 16px 24px;
}
header .wap > div {
  width: 15%;
  text-align: center;
}
header .wap > div:nth-child(2) {
  width: 70%;
}
header .wap > div:nth-child(2) img {
  width: 120px;
  padding: 10px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  header .wap {
    display: flex;
  }
}

body:not(.home) header .pc {
  padding: 16px 40px;
}
body:not(.home) header .pc .logo {
  position: relative;
}
body:not(.home) header .pc .logo img {
  height: auto;
  width: 150px;
}
body:not(.home) header .pc .logo img.mini {
  height: auto;
  width: 100px;
}

.wap_menu {
  position: fixed;
  top: 0;
  left: -150%;
  width: 100vw;
  min-height: 100vh;
  overflow-y: auto;
  z-index: 1000;
  background-color: rgb(25, 164, 165);
  padding: 0 24px;
  padding-top: 56px;
  transition: all 0.3s ease-in-out;
}
.wap_menu.active {
  left: 0;
}
.wap_menu .menu_close_btn {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #000;
  padding: 6px;
}
.wap_menu nav ul, .wap_menu nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.wap_menu nav > ul {
  display: flex;
  flex-direction: column;
}
.wap_menu nav > ul > li {
  border-bottom: 1px solid #000;
}
.wap_menu nav > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: #000;
  font-size: 18px;
}
.wap_menu nav > ul > li > a i {
  font-size: 12px;
  transition: transform 0.3s;
}
.wap_menu nav > ul > li.active a {
  font-weight: bolder;
}
.wap_menu nav > ul > li > ul {
  padding-left: 48px;
  display: none;
}
.wap_menu nav > ul > li > ul li a {
  display: block;
  padding: 5px 0;
  color: #000;
  font-size: 16px;
}
.wap_menu nav > ul > li.dropdown a i {
  transform: rotate(180deg);
}
.wap_menu nav > ul > li.dropdown > ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.wap_menu nav > ul > li.search {
  position: relative;
  border: 0;
  margin: 10px 0;
}
.wap_menu nav > ul > li.search input {
  background-color: rgba(255, 255, 255, 0.15);
  border: 0;
  padding: 16px 40px;
  color: #fff;
  font-size: 18px;
  width: 100%;
}
.wap_menu nav > ul > li.search input::placeholder {
  color: #fff;
}
.wap_menu nav > ul > li.search i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #333;
  font-size: 18px;
}

footer {
  padding: 32px 0;
  font-family: "Raleway", arial, sans-serif;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 32px 24px;
  }
}
footer .section1 {
  display: flex;
  font-size: 23px;
  color: rgb(89, 89, 89);
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  footer .section1 {
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
  }
}
footer .section1 .left {
  width: 50%;
  text-align: left;
  font-weight: bolder;
}
@media screen and (max-width: 768px) {
  footer .section1 .left {
    width: 100%;
  }
}
footer .section1 .right {
  width: 50%;
  text-align: right;
}
@media screen and (max-width: 768px) {
  footer .section1 .right {
    width: 100%;
    text-align: center;
  }
}
footer .section2 {
  text-align: center;
}
footer .section2 ul, footer .section2 li {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .section2 li {
  display: inline-block;
}
footer .section2 li a {
  padding: 5px;
  color: rgb(27, 27, 27);
  font-size: 18px;
  letter-spacing: 0.125em;
}

.section_bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section_bg .title {
  font-size: 55px;
  color: #fff;
}
.section_bg .content {
  font-size: 28px;
  color: #fff;
}
.section_bg .wrap {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.section_bg a .card {
  border: 1px solid #fff;
  background-color: #fff;
}
.section_bg a .card:hover {
  box-shadow: rgb(187, 187, 187) 0px 0px 28px -3px;
}
.section_bg a .card .pic img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.section_bg a .card .text {
  padding: 24px 16px;
}
.section_bg a .card .text p {
  font-family: Raleway, arial, sans-serif;
}
.section_bg a .card .text p:nth-child(1) {
  font-size: 18px;
  color: rgb(89, 89, 89);
}
.section_bg a .card .text p:nth-child(2) {
  font-size: 21px;
  height: 3.375em;
  color: #000;
}
.section_bg a .card .text p:nth-child(3) {
  font-size: 21px;
  color: rgb(15, 132, 133);
}
.section_bg a .card .text p:nth-child(3):hover {
  color: rgb(7, 79, 80);
}
.section_bg a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bolder;
  padding: 16px 24px;
  letter-spacing: 0.125rem;
  color: #000;
  background-color: #fff;
  position: relative;
}
.section_bg a.btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}
.section_bg a.btn:hover::after {
  box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
}

/*# sourceMappingURL=common.css.map */
