@charset "UTF-8";
/*===================layout===================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+SC:wght@100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::-webkit-scrollbar-track {
  background: #0d2f33;
}

*::-webkit-scrollbar-thumb {
  background: #19454a;
}

*::-webkit-scrollbar-thumb:hover {
  background: #006ea0;
}

input, textarea {
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-padding-top: 130px;
}

body, html {
  font-family: "Inter", "微軟正黑體", sans-serif;
  color: #000;
  line-height: 1.2;
  font-size: 16px;
  position: relative;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  z-index: 2;
  height: 100%;
  background: #fff;
  scroll-behavior: auto;
  overflow-anchor: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.body-hidden {
  height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

a:hover {
  color: #006ea0;
  text-decoration: none;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

a:focus {
  outline: none;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

.btn-effect {
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.btn-effect:hover {
  opacity: .8;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}

.all-width {
  width: 100%;
  margin: auto;
}

.inner1100 {
  max-width: 1100px;
}

@media only screen and (max-width: 1300px) {
  .inner1100 {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 961px) {
  .inner1100 {
    padding: 0 30px;
  }
}

.inner1200 {
  max-width: 1200px;
}

@media only screen and (max-width: 1260px) {
  .inner1200 {
    padding: 0 30px;
  }
}

.inner1400 {
  max-width: 1400px;
}

@media only screen and (max-width: 1460px) {
  .inner1400 {
    padding: 0 30px;
  }
}

.inner1660 {
  max-width: 1660px;
}

@media only screen and (max-width: 1720px) {
  .inner1660 {
    padding: 0 30px;
  }
}

.inner1620 {
  max-width: 1620px;
}

@media only screen and (max-width: 1680px) {
  .inner1620 {
    padding: 0 30px;
  }
}

.inner1800 {
  max-width: 1800px;
}

@media only screen and (max-width: 1860px) {
  .inner1800 {
    padding: 0 30px;
  }
}

.inner850 {
  max-width: 850px;
}

@media only screen and (max-width: 910px) {
  .inner850 {
    padding: 0 30px;
  }
}

.innerfull {
  width: 100%;
}

img.ocenter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.noscroll {
  overflow: hidden;
}

.grid {
  display: grid;
}

.hide {
  display: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.edit img, .edit iframe {
  max-width: 100%;
  height: auto;
}

/*IE 滿版背景圖晃動 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  html {
    overflow: hidden;
    height: 100%;
  }
  body {
    overflow: auto;
    height: 100%;
  }
}

@supports (-moz-appearance: none) {
  header {
    position: fixed;
  }
}

.wrapper {
  position: relative;
  padding-top: 100px;
}

@media only screen and (max-width: 1201px) {
  .wrapper {
    padding-top: 60px;
  }
}

.header-hidden {
  z-index: -1;
}

.my-dropdown {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.dropdown-toggle {
  padding: 10px 15px;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dropdown-toggle .icon {
  display: block;
  width: 30px;
  height: 30px;
  background: url("../images/earth.svg") no-repeat;
  background-size: contain;
}

.dropdown-toggle .arrow {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  font-size: 12px;
  padding-left: 5px;
}

.dropdown-toggle.active .arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #666;
}

.dropdown-menu li a:hover {
  background: #00a683;
  color: #fff;
}

header {
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

header .head-left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .head-left .logo {
  width: 230px;
  margin-right: 20px;
}

header .head-left .logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

header .head-left h1 {
  font-size: clamp(14px, 0.125vw + 13.6px, 16px);
  color: #666;
  width: 315px;
  font-weight: 400;
  letter-spacing: 0;
}

header .head-right {
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .head-right nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  margin-right: 50px;
}

@media only screen and (max-width: 1801px) {
  header .head-right nav {
    margin-right: 30px;
  }
}

header .head-right nav .nav__item {
  position: relative;
  padding: 0 15px;
  height: inherit;
  letter-spacing: 0.03em;
}

header .head-right nav .nav__item:hover .nav__link:before {
  width: 100%;
}

header .head-right nav .nav__item:hover .nav__icon i {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

header .head-right nav .nav__item:hover .nav_inner {
  top: 100px;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

header .head-right nav .nav__item:hover:before {
  width: 100%;
}

@media only screen and (max-width: 1801px) {
  header .head-right nav .nav__item {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 1201px) {
  header .head-right nav .nav__item:last-child {
    display: block;
  }
  header .head-right nav .nav__item.nav__item--login .nav__link:before {
    display: none;
  }
  header .head-right nav .nav__item.nav__item--login .head-link i {
    display: none;
  }
}

header .head-right nav .nav__link {
  height: inherit;
  display: table-cell;
  vertical-align: middle;
  color: #000;
  font-size: 18px;
  position: relative;
}

header .head-right nav .nav__link:before {
  content: '';
  display: block;
  position: absolute;
  top: 70%;
  left: 0;
  width: 0;
  height: 5px;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
  background: #00a683;
}

header .head-right nav .nav__icon {
  padding-right: 30px;
}

header .head-right nav .nav__icon i {
  position: absolute;
  margin-top: 2px;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

@media only screen and (max-width: 1401px) {
  header .head-right nav .nav__icon i {
    display: none;
  }
}

header .head-right nav .nav_inner {
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 320px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s ease-in;
  -o-transition: .3s ease-in;
  transition: .3s ease-in;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

header .head-right nav .nav_inner .nav_inner-link {
  font-size: clamp(16px, 0vw + 16px, 16px);
  font-weight: normal;
  color: #666;
  display: block;
  padding: 10px 15px;
}

header .head-right nav .nav_inner .nav_inner-link:last-child {
  border-bottom: 0;
}

header .head-right nav .nav_inner .nav_inner-link:hover {
  background: #00a683;
  color: #fff;
}

@media only screen and (max-width: 1201px) {
  header .head-right nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 60px;
    background: rgba(0, 166, 130, 0.9);
    height: auto;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 10;
  }
  header .head-right nav .nav__item {
    display: block;
    width: 100%;
    font-weight: normal;
  }
  header .head-right nav .nav__item:before {
    display: none;
  }
  header .head-right nav .nav__item a {
    color: #fff;
    padding: 15px 5px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.40625rem;
    border-bottom: solid 1px #61c9b4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0.01em;
  }
  header .head-right nav .nav__item a:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border: solid 1px #fff;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    border-width: 1px 1px 0 0;
  }
  header .head-right nav.current {
    opacity: 1;
    visibility: visible;
  }
}

@media only screen and (max-width: 769px) {
  header .head-right nav {
    top: 85px;
  }
  header .head-right nav.current {
    top: 60px;
  }
}

header .head-right .search-btn {
  color: #000;
  display: none;
}

header .head-right .search-btn i {
  font-size: 24px;
  margin-top: 3px;
}

@media only screen and (max-width: 1201px) {
  header .head-right .search-btn {
    display: block;
  }
}

header .head-right .search.active {
  opacity: 1;
}

header .head-right .search {
  border: solid 1px #ddd;
  border-radius: 38px;
  height: 38px;
  width: 138px;
  padding: 0 15px 0 30px;
}

header .head-right .search .column {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  width: 100%;
  border: 0;
}

header .head-right .search .column:focus {
  outline: none;
}

header .head-right .search .column::-webkit-input-placeholder {
  color: #ddd;
  opacity: 1;
  letter-spacing: 0;
}

header .head-right .search .column::-moz-placeholder {
  color: #ddd;
  opacity: 1;
  letter-spacing: 0;
}

header .head-right .search .column:-ms-input-placeholder {
  color: #ddd;
  opacity: 1;
  letter-spacing: 0;
}

header .head-right .search .column::-ms-input-placeholder {
  color: #ddd;
  opacity: 1;
  letter-spacing: 0;
}

header .head-right .search .column::placeholder {
  color: #ddd;
  opacity: 1;
  letter-spacing: 0;
}

header .head-right .search .column::-webkit-input-placeholder {
  color: #ddd;
  letter-spacing: 0;
}

header .head-right .search .column:-moz-placeholder {
  color: #ddd;
  letter-spacing: 0;
}

header .head-right .search .column::-moz-placeholder {
  color: #ddd;
  letter-spacing: 0;
}

header .head-right .search .column:-ms-input-placeholder {
  color: #ddd;
}

header .head-right .search button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
}

header .head-right .search i {
  color: #ddd;
}

header .mobile-btn {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 3;
  font-size: 20px;
  font-weight: bold;
  display: none;
}

header .mobile-btn .mobile-btn__burger {
  width: 30px;
  margin-right: 10px;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin: 20px 0;
}

header .mobile-btn .mobile-btn__burger span {
  display: block;
  background: #000;
  width: 30px;
  height: 3px;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

header .mobile-btn .mobile-btn__burger:before, header .mobile-btn .mobile-btn__burger:after {
  content: '';
  display: block;
  background: #000;
  width: 30px;
  height: 3px;
  position: absolute;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

header .mobile-btn .mobile-btn__burger:before {
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
}

header .mobile-btn .mobile-btn__burger:after {
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
}

header .mobile-btn.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
}

header .mobile-btn.current .mobile-btn__burger {
  -webkit-transform: translateX(-15px);
      -ms-transform: translateX(-15px);
          transform: translateX(-15px);
  background: transparent;
}

header .mobile-btn.current .mobile-btn__burger span {
  opacity: 0;
  visibility: hidden;
  display: none;
}

header .mobile-btn.current .mobile-btn__burger:before, header .mobile-btn.current .mobile-btn__burger:after {
  background: #000;
}

header .mobile-btn.current .mobile-btn__burger:before {
  -webkit-transform: rotate(45deg) translate(10px, -10px);
      -ms-transform: rotate(45deg) translate(10px, -10px);
          transform: rotate(45deg) translate(10px, -10px);
}

header .mobile-btn.current .mobile-btn__burger:after {
  -webkit-transform: rotate(-45deg) translate(10px, 10px);
      -ms-transform: rotate(-45deg) translate(10px, 10px);
          transform: rotate(-45deg) translate(10px, 10px);
}

@media only screen and (max-width: 1201px) {
  header {
    padding: 0 30px;
    height: 60px;
  }
  header .head-left .logo {
    width: 180px;
  }
  header .mobile-btn {
    display: block;
  }
  header .head-right .search {
    position: absolute;
    height: auto;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
  }
}

@media only screen and (max-width: 961px) {
  header .head-left .logo {
    width: 150px;
  }
  header .head-left h1 {
    display: none;
  }
}

@media only screen and (max-width: 577px) {
  header {
    padding: 0 20px;
  }
}

.seo {
  border-bottom: solid 1px #c8c8c8;
  padding: 40px 0;
}

.seo .seo-content {
  color: #666;
  line-height: 1.6;
}

footer .footer-content {
  grid-template-columns: 700px 400px auto;
  grid-gap: 100px;
  padding: 70px 0;
}

footer .footer-content .company {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-content .company .logo {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}

footer .footer-content .company .logo img {
  width: 100%;
  height: auto;
  display: block;
}

footer .footer-content .company .name {
  font-size: clamp(18px, 0.25vw + 17.2px, 22px);
  font-weight: 600;
  font-family: "Noto Sans SC", sans-serif;
  letter-spacing: 2.5px;
}

@media only screen and (max-width: 401px) {
  footer .footer-content .company .name {
    letter-spacing: 0;
  }
}

footer .footer-content .company .txt {
  margin-left: 2px;
  margin-top: 5px;
  font-size: 13px;
}

@media only screen and (max-width: 401px) {
  footer .footer-content .company .txt {
    font-size: 12px;
  }
}

footer .footer-content .list {
  margin-top: 36px;
}

footer .footer-content .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #666;
  margin-bottom: 15px;
}

footer .footer-content .list li i {
  color: #00a683;
  text-align: center;
  min-width: 16px;
  margin-right: 10px;
  margin-top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .footer-content .list li a {
  color: #666;
  display: block;
}

footer .footer-content .list li a:hover {
  color: #00a683;
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}

footer .footer-content .sns {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

footer .footer-content .sns img {
  width: 100%;
  height: auto;
  display: block;
}

footer .footer-content .sns i {
  color: #00a683;
  font-size: 36px;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

footer .footer-content .sns:hover {
  background: #00a683;
}

footer .footer-content .sns:hover i {
  color: #fff;
}

footer .footer-content .row .row-title {
  background: -webkit-gradient(linear, left top, right top, from(#00a683), to(#006e9f));
  background: -webkit-linear-gradient(left, #00a683, #006e9f);
  background: -o-linear-gradient(left, #00a683, #006e9f);
  background: linear-gradient(90deg, #00a683, #006e9f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: clamp(20px, 0.25vw + 19.2px, 24px);
  position: relative;
}

footer .footer-content .row .row-title:before {
  content: '';
  display: block;
  width: 15px;
  height: 1px;
  background: #00a683;
  position: absolute;
  left: -30px;
  top: 12px;
}

footer .footer-content .row .row-list {
  margin-top: 25px;
}

footer .footer-content .row .row-list li {
  margin-bottom: 10px;
}

footer .footer-content .row .row-list li a {
  color: #666;
  display: block;
  position: relative;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

footer .footer-content .row .row-list li a:hover {
  color: #00a683;
  margin-left: 3px;
}

@media only screen and (max-width: 1401px) {
  footer .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer-content .info {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media only screen and (max-width: 769px) {
  footer .footer-content .company {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer-content .row {
    display: none;
  }
  footer .footer-content .sns {
    margin: 30px auto 0;
  }
}

footer .footer-btm {
  width: 100%;
  min-height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 600;
  grid-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: -webkit-gradient(linear, left top, right top, from(#00a683), to(#006ea0));
  background: -webkit-linear-gradient(left, #00a683, #006ea0);
  background: -o-linear-gradient(left, #00a683, #006ea0);
  background: linear-gradient(to right, #00a683, #006ea0);
}

footer .footer-btm a {
  color: #fff;
}

@media only screen and (max-width: 1201px) {
  footer .footer-btm {
    -ms-flex-line-pack: center;
        align-content: center;
    padding: 10px;
    grid-gap: 5px;
  }
  footer .footer-btm span {
    display: block;
  }
}

@media only screen and (max-width: 1201px) {
  .zoom-box .viewer-box {
    display: none !important;
  }
}

img {
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

img.object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.page-top {
  border-bottom: solid 1px #dadada;
  padding: 20px 0 25px 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 30px;
}

.page-top .page-title {
  font-size: clamp(30px, 0.375vw + 28.8px, 36px);
  position: relative;
  font-weight: bold;
}

.page-top .page-title:before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url("../images/icon.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: -35px;
  top: -20px;
}

@media only screen and (max-width: 1201px) {
  .page-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.page-btm {
  background: #fbfbfb;
  width: 100%;
}

.page-btm .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 264px;
}

.page-btm .page-btm__left .tit {
  font-size: clamp(24px, 0.375vw + 22.8px, 30px);
  font-weight: bold;
  color: #00a683;
}

.page-btm .page-btm__left .text {
  color: #666;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
  margin-top: 20px;
}

.page-btm .link {
  width: 180px;
  height: 50px !important;
  padding: 0 !important;
  border-radius: 50px;
  background: #00a683;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  margin-top: 40px;
}

.page-btm .link i {
  font-size: 13px;
  position: absolute;
  right: 15px;
  top: 20px;
}

@media only screen and (max-width: 577px) {
  .page-btm .flex {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
    padding: 30px;
  }
}

#breadcrumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#breadcrumb li {
  position: relative;
  padding-left: 30px;
}

#breadcrumb li a {
  color: #666;
}

#breadcrumb li:after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 1px #666;
  border-right: solid 1px #666;
  position: absolute;
  right: -15px;
  top: 7px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

#breadcrumb li:last-child:after {
  display: none;
}

@media only screen and (max-width: 1201px) {
  #breadcrumb {
    font-size: 14px;
    margin-top: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #breadcrumb li {
    padding-left: 0;
    padding-right: 30px;
  }
  #breadcrumb li:after {
    right: 15px;
  }
}

.page-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.product .product-head {
  grid-gap: 75px;
}

@media only screen and (max-width: 769px) {
  .product .product-head {
    grid-gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.product .product-head__img {
  width: 360px;
  min-width: 360px;
}

.product .product-head__img img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 769px) {
  .product .product-head__img {
    width: 100%;
  }
}

@media only screen and (max-width: 401px) {
  .product .product-head__img {
    width: 100%;
    min-width: 100%;
  }
}

.product .product-head__info {
  margin-top: 30px;
}

.product .product-head__name {
  margin: 30px 0;
  display: block;
  font-size: clamp(24px, 0.375vw + 22.8px, 30px);
  font-weight: 400;
}

.product .product-head__text {
  color: #666;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
  line-height: 1.6;
}

.product .product-content {
  grid-gap: 70px;
  margin-top: 60px;
}

.product .product-result {
  width: 100%;
}

.product .product-result p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
}

.product .product-result p span {
  color: #00a683;
  padding-right: 5px;
}

.product .product-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product .product-list .product-list__row figure {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 100% 0 0 0;
}

.product .product-list .product-list__row figure a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
}

.product .product-list .product-list__row figure img {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product .product-list .product-list__info {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product .product-list .product-list__info a {
  display: block;
}

.product .product-category {
  min-width: 360px;
}

.product .product-category .close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
}

.product .product-category .close i {
  color: #00a683;
  font-size: 24px;
}

.product .product-category .close.active {
  opacity: 1;
  visibility: visible;
}

.product .product-category .product-category__head {
  background: #00a683;
  color: #fff;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 23px;
  font-size: clamp(20px, 0vw + 20px, 20px);
  font-weight: bold;
}

.product .product-category .product-category__head i {
  display: none;
  margin-right: 10px;
}

.product .product-category .product-category__head:before {
  background: #fff;
  content: '';
  display: block;
  width: 5px;
  height: 30px;
  display: block;
  margin-right: 10px;
}

.product .product-category .product-category__list {
  background: #fbfbfb;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.product .product-category .product-category__list li {
  border-bottom: solid 1px #dddddd;
}

.product .product-category .product-category__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 25px;
  color: #000;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
}

.product .product-category .product-category__list li a:before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #00a683;
  margin-right: 10px;
  margin-top: 7px;
}

.product .product-category .product-category__list li a:hover {
  color: #00a683;
}

.product .product-category .product-category__list li:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 1201px) {
  .product .product-category {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 11;
  }
  .product .product-category .product-category__head {
    position: relative;
    z-index: 2;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .product .product-category .product-category__head i {
    display: block;
  }
  .product .product-category .product-category__head:before {
    display: none;
  }
  .product .product-category .product-category__list {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
  }
  .product .product-category .product-category__list.active {
    opacity: 1;
    visibility: visible;
  }
}

.product .list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 20px;
  padding-bottom: 60px;
}

.product .list .list-row figure {
  padding: 70% 0 0 0;
  position: relative;
  overflow: hidden;
}

.product .list .list-row figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.product .list .list-row .info {
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: 90px;
  font-size: clamp(15px, 0.1875vw + 14.4px, 18px);
  letter-spacing: 0;
  line-height: 1.4;
}

.product .list .list-row .info a {
  color: #000;
}

.product .list .list-row:hover figure img {
  max-width: 90%;
  max-height: 90%;
}

.product .list .list-row:hover .info a {
  color: #00a683;
}

@media only screen and (max-width: 961px) {
  .product .list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 769px) {
  .product .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 577px) {
  .product .list .list-row figure img {
    max-width: 100%;
    max-height: 100%;
  }
}

@media only screen and (max-width: 401px) {
  .product .list {
    grid-template-columns: 1fr;
  }
}

.product .list2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.product .list2 .list2-row figure {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 70% 0 0 0;
}

.product .list2 .list2-row figure a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
}

.product .list2 .list2-row figure img {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.product .list2 .list2-row:hover figure img {
  max-width: 100%;
  max-height: 100%;
}

.product .list2 .list2-row:hover .list2-info a {
  color: #00a683;
}

.product .list2 .list2-info {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 70px;
  padding: 0 60px;
}

.product .list2 .list2-info a {
  color: #000;
  display: block;
  font-size: clamp(15px, 0.1875vw + 14.4px, 18px);
  font-weight: 400;
}

@media only screen and (max-width: 769px) {
  .product .list2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 577px) {
  .product .list2 {
    grid-template-columns: 1fr;
  }
  .product .list2 .list2-row figure img {
    max-width: 100%;
    max-height: 100%;
  }
}

.product .product-detail .product-detail__head {
  padding-bottom: 30px;
}

@media only screen and (max-width: 961px) {
  .product .product-detail .product-detail__head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.product .product-detail .product-detail__pic {
  grid-gap: 50px;
}

.product .product-detail .product-detail__pic img {
  width: 100%;
  height: auto;
  display: block;
}

.product .product-detail .product-detail__pic .small-pic {
  min-width: 47px;
  width: 47px;
  margin-left: 35px;
}

.product .product-detail .product-detail__pic .small-pic .row {
  border: solid 1px #ededed;
  margin-bottom: 15px;
  height: 47px;
  position: relative;
  background: #fff;
  cursor: pointer;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.product .product-detail .product-detail__pic .small-pic .row img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.product .product-detail .product-detail__pic .small-pic .row.current {
  border: solid 1px #00a683;
}

.product .product-detail .product-detail__pic .big-pic {
  width: 480px;
  height: 480px;
  position: relative;
  overflow: hidden;
}

.product .product-detail .product-detail__pic .big-pic .row {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.product .product-detail .product-detail__pic .big-pic .row img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.product .product-detail .product-detail__pic .big-pic .row.current {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

@media only screen and (max-width: 961px) {
  .product .product-detail .product-detail__pic {
    margin: auto;
  }
}

@media only screen and (max-width: 769px) {
  .product .product-detail .product-detail__pic {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .product .product-detail .product-detail__pic .big-pic {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: auto;
  }
  .product .product-detail .product-detail__pic .small-pic {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 480px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-gap: 10px;
    margin-left: 0;
  }
  .product .product-detail .product-detail__pic .small-pic .row {
    width: 47px;
  }
}

@media only screen and (max-width: 577px) {
  .product .product-detail .product-detail__pic {
    grid-gap: 10px;
  }
  .product .product-detail .product-detail__pic .big-pic {
    width: 360px;
    height: 360px;
  }
}

@media only screen and (max-width: 401px) {
  .product .product-detail .product-detail__pic .big-pic {
    width: 300px;
    height: 300px;
  }
}

.product .product-detail .product-detail__info {
  padding: 0 6.770833vw;
  margin-top: 30px;
}

.product .product-detail .product-detail__info .model {
  color: #00a683;
}

.product .product-detail .product-detail__info .title {
  font-size: clamp(24px, 0.375vw + 22.8px, 30px);
  font-weight: 400;
  margin: 10px 0 30px 0;
}

.product .product-detail .product-detail__info .text {
  color: #666;
  line-height: 1.6;
  min-height: 200px;
}

.product .product-detail .product-detail__info .btn {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  color: #fff;
  background: #00a683;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
  font-weight: bold;
  line-height: 1.6;
  margin-top: 30px;
}

.product .product-detail .product-detail__info .btn i {
  position: absolute;
  right: 20px;
  top: 15px;
}

@media only screen and (max-width: 769px) {
  .product .product-detail .product-detail__info {
    padding: 0;
  }
}

.product .product-detail .product-detail__content {
  border-top: solid 1px #dfdfdf;
  position: relative;
}

.product .product-detail .product-detail__side {
  min-width: 316px;
  padding-top: 80px;
}

@media only screen and (max-width: 1401px) {
  .product .product-detail .product-detail__side {
    min-width: 250px;
  }
}

@media only screen and (max-width: 961px) {
  .product .product-detail .product-detail__side {
    display: none;
  }
}

.product .product-detail .product-detail__ul {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
  padding: 0 50px 70px;
}

.product .product-detail .product-detail__ul li {
  margin-bottom: 10px;
}

.product .product-detail .product-detail__ul li a {
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
  width: 170px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  padding-left: 40px;
  position: relative;
}

.product .product-detail .product-detail__ul li a:before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #00a683;
  position: absolute;
  top: 16px;
  left: 20px;
  opacity: 0;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.product .product-detail .product-detail__ul li a.active {
  background: #f5f5f5;
}

.product .product-detail .product-detail__ul li a.active:before {
  opacity: 1;
}

@media only screen and (max-width: 1401px) {
  .product .product-detail .product-detail__ul {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 1201px) {
  .product .product-detail .product-detail__ul {
    padding: 0;
  }
}

.product .product-detail .product-detail__right {
  width: 100%;
  border-left: solid 1px #dfdfdf;
  padding: 80px 80px 30px 80px;
}

.product .product-detail .product-detail__right .row {
  margin-bottom: 50px;
}

.product .product-detail .product-detail__right .row .row-title {
  font-size: clamp(20px, 0.25vw + 19.2px, 24px);
  font-weight: bold;
}

.product .product-detail .product-detail__right .row .row-title:after {
  content: '';
  display: block;
  width: 40px;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#00a683), to(#006ea0));
  background: -webkit-linear-gradient(left, #00a683, #006ea0);
  background: -o-linear-gradient(left, #00a683, #006ea0);
  background: linear-gradient(to right, #00a683, #006ea0);
  margin: 15px 0 30px 0;
}

.product .product-detail .product-detail__right .row .row-edit {
  color: #666;
  line-height: 1.6;
}

.product .product-detail .product-detail__right .row .row-edit table {
  max-width: 100%;
  overflow: auto;
  margin: 1em 0;
  width: 100%;
  border: solid 1px #fff;
  border-collapse: collapse;
}

.product .product-detail .product-detail__right .row .row-edit table th {
  color: #fff;
  background: #00a683;
  height: 60px;
  border: solid 1px #fff;
  text-align: left;
  padding: 0 30px;
}

.product .product-detail .product-detail__right .row .row-edit table th.center {
  text-align: center;
}

.product .product-detail .product-detail__right .row .row-edit table td {
  padding: 15px 30px;
  border: solid 1px #fff;
}

.product .product-detail .product-detail__right .row .row-edit table tr:nth-child(n+2):nth-child(odd) td {
  background: #f5f5f5;
}

@media only screen and (max-width: 768px) {
  .product .product-detail .product-detail__right .row .row-edit table {
    display: block;
    width: 100% !important;
    height: auto !important;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 1201px) {
  .product .product-detail .product-detail__right {
    border: 0;
    padding: 80px 80px 30px 0;
  }
}

@media only screen and (max-width: 961px) {
  .product .product-detail .product-detail__right {
    padding: 80px 0 30px;
  }
}

.product .product-detail .product-detail__foot {
  border-top: solid 1px #dfdfdf;
  padding: 70px 0 130px 0;
}

.product .product-detail .product-detail__foot .related .related-title {
  font-size: clamp(20px, 0.25vw + 19.2px, 24px);
  font-weight: bold;
}

.product .product-detail .product-detail__foot .related .related-slider {
  margin-top: 50px;
}

.product .product-detail .product-detail__foot .related .related-slider .slick-list {
  margin: 0 -10px;
}

.product .product-detail .product-detail__foot .related .related-slider .slick-slide {
  margin: 0 10px;
}

.product .product-detail .product-detail__foot .related .related-slider .slick-arrow {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.product .product-detail .product-detail__foot .related .related-slider .slick-prev {
  left: -90px;
  background: url("../images/left.svg") no-repeat #00a683 center;
  background-size: 20px auto;
}

.product .product-detail .product-detail__foot .related .related-slider .slick-next {
  left: auto;
  right: -90px;
  background: url("../images/right.svg") no-repeat #00a683 center;
  background-size: 20px auto;
}

@media only screen and (max-width: 1601px) {
  .product .product-detail .product-detail__foot .related .related-slider .slick-prev {
    left: -45px;
  }
  .product .product-detail .product-detail__foot .related .related-slider .slick-next {
    right: -45px;
  }
}

@media only screen and (max-width: 1401px) {
  .product .product-detail .product-detail__foot .related .related-slider .slick-prev {
    left: 0;
  }
  .product .product-detail .product-detail__foot .related .related-slider .slick-next {
    right: 0;
  }
}

.product .product-detail .product-detail__foot .related .related-slider .slick-dots {
  bottom: -60px;
}

.product .product-detail .product-detail__foot .related .related-slider .slick-dots li {
  background: #e0e0e0;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 100%;
}

.product .product-detail .product-detail__foot .related .related-slider .slick-dots li.slick-active {
  background: #12be9a;
}

.product .product-detail .product-detail__foot .related .related-slider .slick-dots li button:before {
  display: none;
}

.product .product-detail .product-detail__foot .related .related-slider .row figure {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 70% 0 0 0;
}

.product .product-detail .product-detail__foot .related .related-slider .row figure a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
  color: #666;
}

.product .product-detail .product-detail__foot .related .related-slider .row figure img {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.product .product-detail .product-detail__foot .related .related-slider .row:hover figure img {
  max-width: 100%;
  max-height: 100%;
}

.product .product-detail .product-detail__foot .related .related-slider .row:hover .info a {
  color: #00a683;
}

.product .product-detail .product-detail__foot .related .related-slider .row .info {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 70px;
  padding: 0 30px;
}

.product .product-detail .product-detail__foot .related .related-slider .row .info a {
  color: #000;
  display: block;
  font-size: clamp(15px, 0.1875vw + 14.4px, 18px);
  font-weight: 400;
}

.product .product-inquiry {
  max-width: 1100px;
  margin: auto;
}

.product .product-inquiry .product-inquiry__tip {
  color: #666;
  line-height: 1.6;
  padding: 30px 0 60px 0;
}

@media only screen and (max-width: 769px) {
  .product .product-inquiry .product-inquiry__tip br {
    display: none;
  }
}

.product .product-inquiry .product-inquiry__head {
  grid-gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product .product-inquiry .product-inquiry__head .pic {
  width: 250px;
}

.product .product-inquiry .product-inquiry__head .pic img {
  width: 100%;
  height: auto;
  display: block;
}

.product .product-inquiry .product-inquiry__head .info {
  font-size: clamp(14px, 0.125vw + 13.6px, 16px);
}

.product .product-inquiry .product-inquiry__head .model {
  color: #00a683;
}

.product .product-inquiry .product-inquiry__head .title {
  font-size: clamp(20px, 0.625vw + 18px, 30px);
  font-weight: 400;
  margin: 10px 0 30px 0;
}

@media only screen and (max-width: 577px) {
  .product .product-inquiry .product-inquiry__head {
    grid-gap: 20px;
  }
}

.product .product-search .product-search__result {
  color: #666;
  line-height: 1.6;
  padding: 30px 0 60px 0;
}

.product .product-search .product-search__result span {
  color: #00a683;
}

.news-row figure {
  width: 100%;
  padding: 70% 0 0 0;
  position: relative;
  z-index: 2;
  background: #f0f0f0;
  border-radius: 20px;
  overflow: hidden;
}

.news-row figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.news-row .date {
  color: #00a683;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
  margin-top: 20px;
}

.news-row .title {
  font-size: clamp(18px, 0.125vw + 17.6px, 20px);
  font-weight: bold;
  color: #000;
  display: block;
  margin: 15px 0;
}

.news-row .tag {
  font-style: italic;
}

.news-row:hover figure img {
  -webkit-transform: scale(1.01);
      -ms-transform: scale(1.01);
          transform: scale(1.01);
}

.news-row:hover .title {
  color: #00a683;
}

.news-overflow {
  position: relative;
  padding: 0 10px 10px 0;
}

.news-overflow:before {
  content: '';
  display: block;
  border-radius: 20px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #00a683;
}

.news .news-category {
  grid-gap: 20px;
}

.news .news-category a {
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.news .news-category a:before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #00a683;
  position: absolute;
  top: 16px;
  left: 20px;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
  opacity: 0;
}

.news .news-category a.active {
  background: #f5f5f5;
  padding-left: 40px;
}

.news .news-category a.active:before {
  opacity: 1;
}

.news .news-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 30px;
  margin-top: 30px;
}

@media only screen and (max-width: 961px) {
  .news .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 577px) {
  .news .news-list {
    grid-template-columns: 1fr;
  }
}

.news .news-detail {
  max-width: 1100px;
  margin: auto;
}

.news .news-detail .news-detail__head {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news .news-detail .news-detail__left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news .news-detail .news-detail__left .category {
  color: #00a683;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  padding-right: 20px;
  position: relative;
  background: #f5f5f5;
  padding-left: 40px;
  margin-right: 25px;
}

.news .news-detail .news-detail__left .category:before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #00a683;
  position: absolute;
  top: 16px;
  left: 20px;
}

.news .news-detail .news-detail__left .date {
  color: #00a683;
}

@media only screen and (max-width: 577px) {
  .news .news-detail .news-detail__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
  }
}

.news .news-detail .news-detail__right:before {
  content: 'Share';
  display: block;
  margin-right: 15px;
  color: #bababa;
}

.news .news-detail .news-detail__right a i {
  color: #bababa;
  font-size: 24px;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

.news .news-detail .news-detail__right a:hover i {
  color: #0866ff;
}

@media only screen and (max-width: 577px) {
  .news .news-detail .news-detail__right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.news .news-detail .news-detail__name {
  font-size: clamp(24px, 0.375vw + 22.8px, 30px);
  font-weight: bold;
  margin: 10px 0 20px 0;
}

.news .news-detail .news-detail__edit {
  background: #f9f9f9;
  border-radius: 30px;
  padding: 60px;
  color: #666;
  line-height: 1.6;
}

.news .news-detail .news-detail__edit img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 577px) {
  .news .news-detail .news-detail__edit {
    padding: 30px;
  }
}

.news .news-detail .news-detail__more {
  max-width: 600px;
  height: 60px;
  border-radius: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 50px auto;
  background: #00a683;
  color: #fff;
  font-weight: bold;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
}

.news .news-detail .news-detail__more i {
  position: absolute;
  top: 23px;
  right: 30px;
}

.news .news-related {
  border-top: solid 1px #dfdfdf;
  padding: 70px 0 130px 0;
}

.news .news-related .related-title {
  font-size: clamp(20px, 0.25vw + 19.2px, 24px);
  font-weight: bold;
}

.news .news-related .related-slider {
  margin-top: 50px;
}

.news .news-related .related-slider .slick-list {
  margin: 0 -10px;
}

.news .news-related .related-slider .slick-slide {
  margin: 0 10px;
}

.news .news-related .related-slider .slick-arrow {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.news .news-related .related-slider .slick-prev {
  left: -90px;
  background: url("../images/left.svg") no-repeat #00a683 center;
  background-size: 20px auto;
}

.news .news-related .related-slider .slick-next {
  left: auto;
  right: -90px;
  background: url("../images/right.svg") no-repeat #00a683 center;
  background-size: 20px auto;
}

@media only screen and (max-width: 1601px) {
  .news .news-related .related-slider .slick-prev {
    left: -45px;
  }
  .news .news-related .related-slider .slick-next {
    right: -45px;
  }
}

@media only screen and (max-width: 1401px) {
  .news .news-related .related-slider .slick-prev {
    left: 0;
  }
  .news .news-related .related-slider .slick-next {
    right: 0;
  }
}

.news .news-related .related-slider .slick-dots {
  bottom: -60px;
}

.news .news-related .related-slider .slick-dots li {
  background: #e0e0e0;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 100%;
}

.news .news-related .related-slider .slick-dots li.slick-active {
  background: #12be9a;
}

.news .news-related .related-slider .slick-dots li button:before {
  display: none;
}

.contact .contact-content {
  max-width: 1100px;
  margin: auto;
}

.contact .contact-content .contact-content__tip {
  color: #666;
  line-height: 1.6;
  padding: 30px 0 60px 0;
}

@media only screen and (max-width: 769px) {
  .contact .contact-content .contact-content__tip br {
    display: none;
  }
}

.contact .contact-btm {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px 0;
}

.contact .contact-btm figure {
  min-width: 50%;
  position: relative;
}

.contact .contact-btm figure img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.contact .contact-btm figure:before {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #00a683;
}

.contact .contact-btm .info {
  min-width: 50%;
  padding: 0 4.53125vw;
}

.contact .contact-btm .info .info-name .name {
  font-size: 22px;
  font-weight: 600;
  font-family: "Noto Sans SC", sans-serif;
}

.contact .contact-btm .info .info-name .en {
  margin-left: 2px;
  margin-top: 5px;
}

.contact .contact-btm .info .info-addr {
  margin: 30px 0;
  color: #666;
  line-height: 1.6;
}

.contact .contact-btm .info .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(18px, 0.375vw + 16.8px, 24px);
  margin: 10px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00a683;
}

.contact .contact-btm .info .list li:before {
  content: '';
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  border: solid 2px #00a683;
  margin-right: 25px;
}

.contact .contact-btm .info .list li.icon1:before {
  background: url("../images/list-icon1.jpg") no-repeat center;
}

.contact .contact-btm .info .list li.icon2:before {
  background: url("../images/list-icon2.jpg") no-repeat center;
}

@media only screen and (max-width: 961px) {
  .contact .contact-btm {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact .contact-btm figure {
    width: 100%;
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 577px) {
  .contact .contact-btm .info .list li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact .contact-btm .info .list li:before {
    margin: 20px auto;
  }
  .contact .contact-btm .info .list li span {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.form-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 60px;
  grid-row-gap: 25px;
}

.form-list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666;
  position: relative;
}

.form-list .list-item .text-danger {
  position: absolute;
  bottom: -18px;
  right: 0;
  color: #d53939;
  font-size: 12px;
}

.form-list .list-item .list-item__title {
  min-width: 160px;
  font-weight: bold;
}

.form-list .list-item .list-item__field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 60px;
  height: 60px;
  border: solid 1px #ededed;
  width: 100%;
  padding: 0 20px;
  min-width: 0;
}

.form-list .list-item .list-item__field:focus {
  outline: none;
}

.form-list .list-item .list-item__field2 {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 60px;
  border: solid 1px #ededed;
  width: 100%;
  padding: 60px;
  margin-top: 30px;
  min-width: 0;
}

.form-list .list-item .list-item__field3 {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 60px;
  height: 60px;
  border: solid 1px #ededed;
  width: 300px;
  padding: 0 20px;
  min-width: 0;
}

.form-list .list-item .list-item__field3:focus {
  outline: none;
}

.form-list .list-item--full {
  grid-column-start: 1;
  grid-column-end: 3;
  display: block;
  padding-top: 20px;
}

.form-list .list-item--wrap .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 961px) {
  .form-list {
    grid-template-columns: 1fr;
  }
  .form-list .list-item--full {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}

@media only screen and (max-width: 577px) {
  .form-list .list-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .form-list .list-item .list-item__title {
    margin-bottom: 10px;
    width: 100%;
  }
  .form-list .list-item .list-item__field2 {
    padding: 30px;
  }
  .form-list .list-item .list-item__field3 {
    width: 200px;
  }
}

.form-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  max-width: 600px;
  width: 100%;
  height: 60px;
  border-radius: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 50px auto;
  background: #00a683;
  color: #fff;
  font-weight: bold;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
}

.form-btn i {
  position: absolute;
  top: 23px;
  right: 30px;
}

.about {
  width: 100%;
}

.about .figure-img {
  padding: 5px;
  background: url("../images/figure-bg.jpg") repeat;
}

.about .figure-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about figure {
  position: relative;
}

.about figure img {
  width: 100%;
  height: auto;
  display: block;
}

.about .about-head {
  grid-gap: 60px;
  padding: 60px 0;
  border-bottom: solid 1px #dadada;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about .about-head .about-head__img {
  min-width: 50%;
}

.about .about-head .about-head__info {
  width: 100%;
}

.about .about-head .about-head__info .tit {
  font-size: clamp(20px, 0.25vw + 19.2px, 24px);
  font-weight: bold;
  color: #000;
  padding: 20px 0;
  display: block;
}

.about .about-head .about-head__info .text {
  color: #666;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
  line-height: 1.875;
  display: block;
  margin-bottom: 15px;
}

@media only screen and (max-width: 769px) {
  .about .about-head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-gap: 30px;
    padding: 30px 0;
  }
}

.about .about-row {
  padding: 60px 80px 60px 0;
  border-bottom: solid 1px #dadada;
  color: #666;
  font-size: clamp(16px, 0.125vw + 15.6px, 18px);
  line-height: 1.875;
}

.about .about-row:last-child {
  border-bottom: none;
}

.about .about-row b {
  color: #000;
  font-size: clamp(18px, 0.125vw + 17.6px, 20px);
}

.about .about-row a {
  color: #00a683;
  text-decoration: underline;
}

.about .about-row .about-row__left {
  min-width: 400px;
}

.about .about-row .about-row__right {
  width: 100%;
}

.about .about-row .about-row__title {
  font-size: clamp(20px, 0.25vw + 19.2px, 24px);
  font-weight: bold;
  color: #000;
  padding-right: 50px;
  line-height: 1.2;
}

.about .about-row .about-row__title:after {
  content: '';
  display: block;
  width: 45px;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#00a683), to(#006e9f));
  background: -webkit-linear-gradient(left, #00a683, #006e9f);
  background: -o-linear-gradient(left, #00a683, #006e9f);
  background: linear-gradient(to right, #00a683, #006e9f);
  margin-top: 18px;
}

.about .about-row .about-row__article {
  margin-bottom: 40px;
}

.about .about-row .about-row__article .list {
  margin: 10px 0;
}

.about .about-row .about-row__article .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about .about-row .about-row__article .list li:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #666;
  margin: 0 10px;
}

.about .about-row .about-row__list-3 .row:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}

.about .about-row .about-row__list-3 .row:nth-child(2) .figure-img {
  height: 100%;
}

.about .about-row .about-row__list--cert {
  margin-top: 60px;
}

.about .about-row .about-row__list--cert .row figure {
  height: 430px;
}

.about .about-row .about-row__list--cert .row figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.about .about-row .about-row__list--cert .row b {
  display: block;
  text-align: center;
  padding: 20px 0;
}

.about .about-row .about-row__list {
  grid-gap: 76px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-bottom: 40px;
}

.about .about-row .about-row__list .row .figure-img {
  position: relative;
  height: 274px;
}

.about .about-row .about-row__list .row .figure-img img {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about .about-row .about-row__list .row .row-text {
  margin-bottom: 40px;
  min-height: 102px;
}

.about .about-row .about-row__list .row .row-list {
  margin: 20px 0;
}

.about .about-row .about-row__list .row .row-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.2;
  margin: 10px 0;
}

.about .about-row .about-row__list .row .row-list li:before {
  content: '';
  display: block;
  width: 5px;
  min-width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #666;
  margin: 8px 10px 0;
}

.about .about-row .about-row__pic {
  margin-top: 60px;
}

.about .about-row .about-row__pic img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (max-width: 1201px) {
  .about .about-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 60px 0;
  }
  .about .about-row .about-row__title {
    margin-bottom: 40px;
  }
  .about .about-row .about-row__list {
    grid-gap: 30px;
  }
}

@media only screen and (max-width: 577px) {
  .about .about-row .about-row__list {
    grid-template-columns: 1fr;
  }
  .about .about-row .about-row__list-3 .row:nth-child(2) {
    grid-column-start: inherit;
    grid-column-end: inherit;
    grid-row-start: inherit;
    grid-row-end: inherit;
  }
  .about .about-row .about-row__list-3 .row:nth-child(2) .figure-img {
    height: 274px;
  }
}

.error {
  margin: 60px 0;
}

.error .error__ok {
  text-align: center;
  padding: 0;
}

.error .error__ok .title {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 2.8125rem;
  font-weight: bold;
  color: #00a683;
}

.error .error__ok .text {
  color: #666;
  margin-top: 30px;
}

.error .error__ok .error__home {
  width: 180px;
  height: 50px;
  border-radius: 10px;
  background: #00a683;
  position: relative;
  color: #fff;
  margin: 60px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.error .error__ok .error__home i {
  font-size: 13px;
  position: absolute;
  right: 15px;
  top: 20px;
}

.complete {
  margin: 60px 0;
}

.complete .complete__ok {
  text-align: center;
  padding: 0;
}

.complete .complete__ok .title {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 2.8125rem;
  font-weight: bold;
  color: #00a683;
}

.complete .complete__ok .text {
  color: #666;
  margin-top: 30px;
}

.complete .complete__ok .complete__home {
  width: 180px;
  height: 50px;
  border-radius: 10px;
  background: #00a683;
  position: relative;
  color: #fff;
  margin: 60px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.complete .complete__ok .complete__home i {
  font-size: 13px;
  position: absolute;
  right: 15px;
  top: 20px;
}
