@font-face {
  font-family: 'SourceHanSansCN';
  src: url(../font/PublicSans-Light.ttf);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url(../font/PublicSans-SemiBold.ttf);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url(../font/PublicSans-Bold.ttf);
  font-weight: 600;
  font-display: swap;
}
:root {
  --theme_color: #006cfa;
  --subtheme_color: #893ba4;
  --title_color: #15212f;
  --content_color: #4f4f4f;
  --bg_color: linear-gradient(to right, #006cfa, #893ba4);
}
ul {
  list-style: none;
}
a {
  color: #1c232f;
  text-decoration: none;
  font-size: 1rem;
}
i {
  font-style: normal;
}
.swiper_content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-family: 'SourceHanSansCN', sans-serif;
}
.only_mobile {
  display: none;
}
.head h2 {
  color: var(--title_color);
  font-size: 48px !important;
  font-weight: 700;
  line-height: 82px;
}
.head p {
  color: var(--content_color);
  font-size: 24px;
  line-height: 30px;
}
.button {
  display: inline-block;
  line-height: 1;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  border: 1px solid var(--theme_color);
  background-color: var(--theme_color);
  transition: all 0.3s;
  border-radius: 4px;
  padding: 11px 34px;
  cursor: pointer;
}
/* .button:hover {
  background-color: transparent;
  color: var(--theme_color);
} */
.button:hover {
  background-color: var(--theme_color) !important;
  color: #fff !important;
  background-color: rgb(0 108 250 / 0.6) !important;
  border-color: transparent !important;
}
.button_r {
  display: inline-block;
  line-height: 1;
  color: var(--theme_color);
  font-size: 17px;
  font-weight: 500;
  border: 1px solid var(--theme_color);
  background-color: transparent;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 11px 34px;
}
.button_r:hover {
  background-color: transparent !important;
  color: var(--theme_color) !important;
}
.button_bg {
  display: inline-block;
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s;
  background-color: var(--theme_color);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 4px;
  padding: 18px 61px;
}
.button_bg::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  background-image: var(--bg_color);
  z-index: -1;
}
.button_bg:hover {
  opacity: 0.6;
}
.btn_play {
  cursor: pointer;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--theme_color);
  font-size: 20px;
  font-weight: 500;
  background-color: #fff;
  border-radius: 4px;
  padding: 13px 47.5px;
  transition: all 0.3s;
}
.btn_play i {
  transition: all 0.3s;
  display: block;
  width: 17px;
  height: 17px;
  background: url(../img/home-play.svg) no-repeat center / contain !important;
}
.home_banner .btn_play i{
  background-image: url('../img/home-play.svg');
}
.btn_play:hover {
  opacity: 0.6;
}
div.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  height: 1rem;
  gap: 28px;
}
div.swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  transition: all 0.3s;
}
div.swiper-pagination .swiper-pagination-bullet-active {
  width: 1rem;
  height: 1rem;
  background-color: transparent;
}
.swiper_btns_full {
  display: flex;
  gap: 18px;
}
.swiper_btns_full div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--theme_color);
  background: url(../img/left-w.svg) no-repeat center / 15%;
  background-color: var(--theme_color);
  cursor: pointer;
  transition: all 0.3s;
}
.swiper_btns_full div:hover {
  filter: brightness(1.3);
}
.swiper_btns_full div.swiper-button-disabled {
  cursor: default;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}
.swiper_btns_full .btn_next {
  background-image: url(../img/right-w.svg);
}
.swiper_btns_full.center {
  width: 98%;
  max-width: 1380px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.swiper_btns_full.center div {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.swiper_btns_full.center div.swiper-button-disabled {
  filter: brightness(0.2);
}
.swiper_btns_full.center .btn_next {
  left: unset;
  right: 0;
}
header {
  background-color: #171f2a;
  position: sticky;
  top: -271px;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: 9998;
}
header nav .product_menu.none {
  display: none !important;
}
header.sticky {
  top: 0;
}
header.sticky.header_product {
  top: -271px;
}
header.sticky .link {
  display: none;
}
header .top {
  background-color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .top ul {
  display: flex;
  gap: 25px;
}
header .top ul li:last-of-type a{
  font-weight: 600;
  color: var(--theme_color);
}
header .top ul li:last-of-type a:hover{
  color: #333;
}
header .top ul li a {
  line-height: 40px;
  --tw-text-opacity: 1;
  color: rgb(112 112 117 / var(--tw-text-opacity));
  opacity: 0.85;
  font-size: 15px;
  transition: all 0.3s;
}
header .top ul li a:hover {
  color: var(--theme_color);
}
header .header {
  position: relative;
  z-index: 3;
}
header .header .logo {
  position: relative;
  top: 5px;
}
header .header .logo img {
  width: 170px;
  height: auto;
}
header .header .left {
  display: flex;
  align-items: center;
  gap: 4rem;
}
header .header nav div > ul {
  display: flex;
  gap: 43px;
}
html[lang="en"] header .btns .button, html[lang="en"] header .btns .button_r{
  padding-left: 20px;
  padding-right: 20px;
} 
html[lang="en"] header .header nav div > ul{
  gap: 20px;
}
header .header nav div > ul > li {
  position: relative;
}
header .header nav div > ul > li::before {
  display: block;
  width: 0%;
  height: 3px;
  background-color: var(--theme_color);
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
header .header nav div > ul > li > a {
  display: block;
  color: #fff;
  font-size: 17px;
  transition: all 0.3s;
  line-height: 90px;
}
header .header nav div > ul > li.current-menu-item::before,
header .header nav div > ul > li:hover::before {
  width: 100%;
}
header .header nav div > ul > li.current-menu-item > a, header .header nav div > ul > li:hover > a {
  color: rgb(242 181 60);
}
header .header nav div > ul > li:hover > ul {
  visibility: visible;
  max-height: 100rem;
}
header .header nav div > ul > li ul {
  left: -1.5rem;
  position: absolute;
  min-width: 228px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 1rem 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: block;
  visibility: hidden;
  /* overflow: hidden; */
  max-height: 0;
  padding-bottom: 3px;
}

header .header nav div > ul > li ul:before{
  content: "";
  border-width: 10px;
  border-color: transparent transparent #fff transparent; 
  border-style: solid;
  position: absolute;
  bottom: 100%;
  left: 1.5rem;
}
header .header nav div > ul > li ul li {
  margin-bottom: 0.2rem;
}
header .header nav div > ul > li ul li a {
  color: #333;
  white-space: nowrap;
  display: block;
  padding: 0.8rem 1.5rem;
  /* transition: all 0.2s ease; */
  font-size: 1rem;
  padding-left: 1.5rem;
  border-bottom: 1px solid #eee;
}
header .header nav div > ul > li.case-icon ul li a , header .header nav div > ul > li#menu-item-40 ul li a {
  padding-left: 4rem;
}
header .header nav div > ul > li ul li:last-of-type a{
  border-bottom: none;
}
header .header nav div > ul > li ul li a:hover {
  color: var(--theme_color);
}
header .header nav div > ul > li.product-icon a {
  position: relative;
}
header .header nav div > ul > li.product-icon a::after {
  content: '';
  display: block;
  box-sizing: border-box;
  border: 8px solid transparent;
  border-top-color: #171f2a;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  transition: all 0.5s;
}
header .header nav div > ul > li.product-icon.active a {
  color: #f2b53c;
}
header .header nav div > ul > li.product-icon.active a::after {
  transform: translate(-50%, 100%);
}
header .header .btns {
  display: flex;
  align-items: center;
}
header .header .btns .icon_search {
  display: block;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: url(../img/search.svg) no-repeat center / contain;
}
header .header .btns .icon_earth {
  margin: 0 26px 0 22px;
  display: block;
  cursor: pointer;
  width: 21px;
  height: 21px;
  background: url(../img/earth.svg) no-repeat center / contain;
}
header .header .btns .icon_lang {
  margin: 0 26px 0 0;
  display: block;
  cursor: pointer;
  width: 22px;
  height: 22px;
  background: url(../img/lang-1.svg) no-repeat center / contain;
  text-indent: -9999px;
}
header .header .btns .icon-account {
  margin: 0 26px 0 0;
  display: block;
  cursor: pointer;
  width: 21px;
  height: 21px;
  background: url(../img/icon-account.svg) no-repeat center / contain;
}
header .header .btns .button_r {
  margin-right: 10px;
  color: var(--theme_color);
  background-color: white;
  border-color: white;
}
header .header .btns .button_r:hover{
  background-color: rgb(255 255 255 / 0.6) !important;
  border-color: transparent !important;
}
header .link {
  background-color: #eff6ff;
  padding: 9px 0 8px;
}
.single-product header .link{
  background: white;
}
header .link a {
  text-align: center;
  color: var(--theme_color);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  width: max-content;
}
header .link a:hover i {
  right: -5px;
}
header .link a i {
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/right-full.svg) no-repeat center / contain;
  transition: all 0.3s;
  position: relative;
  right: 0;
}
header .product_menu {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 0 4px;
  display: none;
  position: absolute;
  width: 100%;
  z-index: 2;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .product_menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding-bottom: 1rem;
}
header .product_menu ul li {
  min-width: 120px;
}
header .product_menu ul li a {
  display: block;
  text-align: center;
}
header .product_menu ul li .img {
  width: 4rem;
  height: 4rem;
  display: inline-block;
  background: no-repeat center / contain;
}
header .product_menu ul li p {
  transition: all 0.3s;
  color: #282828;
  font-size: 15px;
  font-weight: 500;
  margin: 0 auto;
  width: max-content;
  border-radius: 4px;
  padding: 4px 12px;
}
header .product_menu ul li.active p {
  color: #fff;
  background-color: var(--theme_color);
}
header .product_menu .menu_child {
  background-color: #f8f8f8;
  padding: 1rem 0;
  display: none;
}
/*header .product_menu .menu_child li{
  width: 20%;
}*/
header .product_menu div.menu_child:nth-of-type(4) li{
  width: 20%;
}
header .product_menu div.menu_child:nth-of-type(4) ul{
  gap: 0;
  row-gap: 20px;
}
header .product_menu .menu_child li a:hover p{
  color: var(--theme_color);
}
footer {
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
footer .footer {
  padding: 90px 0 100px;
  background-color: #15212f;
}
footer .footer .subscribe{
  padding-top: 20px;
}
footer .footer .left {
  width: 35%;
}
footer .footer .left .logo img {
  width: 288px;
  height: auto;
  max-width: 100%;
}
footer .footer .left ul {
  margin-top: 2rem;
}
footer .footer .left ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
/* footer .footer .left ul li:last-child {
  margin-bottom: 0;
} */
footer .footer .left ul li i {
  display: block;
  width: 22px;
  height: 22px;
  background: no-repeat center / contain;
}
footer .footer .left ul li span,
footer .footer .left ul li a {
  flex: 1;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}
footer .footer .left ul li a {
  transition: all 0.3s;
}
footer .footer .left ul li a:hover {
  color: #f2b53c;
}
footer .footer .right {
  padding-top: 25px;
  width: 60%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .footer .right .slide_obj {
  min-width: 24.8868%;
}
footer .footer .right .slide_obj strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2rem;
}
footer .footer .right .slide_obj li {
  margin-bottom: 18px;
}
footer .footer .right .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .footer .right .slide_obj li a {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s;
  font-size: 16px;
}
footer .footer .right .slide_obj li a:hover {
  color: #f2b53c;
}


footer .footer .links strong {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2rem;
  max-width: max-content;
  gap: 12px;
  cursor: pointer;
  &::after {
    content: '';
    display: block;
    width: 12px;
    aspect-ratio: 1;
    transition: all .3s;
    filter: contrast(0) brightness(2);
    background: url(../img/select-full.svg) no-repeat center/contain;
  }
}
footer .footer .links strong.active::after {
  transform: rotate(180deg);
}
footer .footer .links div {
  display: none;
}
footer .footer .links li {
  margin-bottom: 18px;
}
footer .footer .links li:last-child {
  margin-bottom: 0;
}
footer .footer .links li a {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s;
  font-size: 16px;
}
footer .footer .links li a:hover {
  color: #f2b53c;
}
footer .footer .links.links {
  margin-top: 3rem;
}
footer .footer .links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

footer .copyright {
  background-color: #15212f;
}
.copyright ul{
  display: flex;
  gap: 1rem;
}
.copyright ul li a{
  color: rgba(255, 255, 255, 0.75);

}
.copyright ul li a:hover{
  color: #f2b53c;
}
footer .copyright .flex {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .copyright p {
  color: #fff;
  line-height: 25px;
}
footer .copyright p a {
  color: #fff;
  line-height: 25px;
  transition: all .3s;
}
footer .copyright p a:hover {
  color: var(--theme_color);
}
footer .social {
  display: flex;
  gap: 20px;
}
footer .social li {
  border-radius: 50%;
  position: relative;
}
footer .social li .qrcode {
  width: 124px;
  height: 124px;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, -14px) scale(0);
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.3s;
  transform-origin: center bottom;
}
footer .social li .qrcode::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-top-color: #fff;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
footer .social li .qrcode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
footer .social li:hover .qrcode {
  transform: translate(-50%, -14px) scale(1);
}
footer .social li:hover a {
  background-color: #38424e;
}
footer .social li a, footer .social li span {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(../img/wechat.svg) no-repeat center / 50%;
  transition: all 0.3s;
}
footer .social .weibo a, footer .social .weibo span {
  background-image: url(../img/weibo.svg);
  background-size: 60%;
}
footer .social .qq a, footer .social .qq span {
  background-image: url(../img/qq.svg);
  background-size: 45%;
}
footer .social .bilibili a, footer .social .bilibili span {
  background-image: url(../img/bilibili.svg);
}
.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 0 2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
  position: relative;
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../img/mobile-menu/close.svg) no-repeat center / contain;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  width: max-content;
  width: 85vw;
  height: 85vh;
  transition: all 0.3s;
  border-radius: 10px;
  max-width: 960px;
  max-height: 540px;
}
.video_pop .pop_content video, .video_pop .pop_content iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bottom_more {
  background-color: #f8f8f8;
  padding: 85px 0 75px;
}
.bottom_more i {
  display: inline-block;
  width: 53px;
  height: 79px;
  background: url(../img/app-more.svg) no-repeat center / contain;
}
.bottom_more h2 {
  margin: 2rem 0 12px;
}
.bottom_more p {
  font-size: 22px;
  margin: 0 auto 34px;
  max-width: 1010px;
}
.bottom_more .button {
  font-size: 18px;
  padding: 14px 31px;
}
.stories .story .con {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s;
  border-radius: 6px;
  padding: 30px 6.3935% 2rem;
}
.stories .story .con:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.stories .story .con:hover img {
  transform: scale(1.05);
}
.stories .story .con:hover strong i {
  right: -5px;
}
.stories .story .con span {
  /* color: var(--theme_color); */
  color: #707075;
  font-weight: 500;
}
.stories .story .con h2 {
  color: var(--title_color);
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  margin: 8px 0 12px;
}
.stories .story .con .img {
  height: 214px;
  overflow: hidden;
  border-radius: 6px;
}
.stories .story .con .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.stories .story .con p {
  flex: 1;
  color: #606060;
  line-height: 28px;
  margin: 22px 0 24px;
  font-size: 18px;
}
.stories .story .con strong {
  font-weight: 500;
  color: var(--theme_color);
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  font-size: 18px;
}
.stories .story .con strong i {
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/right-full.svg) no-repeat center / contain;
  transition: all 0.3s;
  position: relative;
  right: 0;
}
.news .new .con {
  display: flex;
  align-items: center;
  transition: all 0.3s;
  background-color: #fff;
  border-radius: 10px;
  justify-content: space-between;
  padding: 37px 2.3%;
}
.news .new .con:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.news .new .con:hover img {
  transform: scale(1.05);
}
.news .new .con:hover .info strong i {
  right: -5px;
}
.news .new .con .img {
  width: 328px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}
.news .new .con .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news .new .con .info {
  flex: 1;
  margin-left: 2.9118%;
}
.news .new .con .info span {
  color: #565656;
  font-size: 19px;
}
.news .new .con .info span i {
  color: #17212d;
  font-weight: 700;
  font-size: 19px;
}
.news .new .con .info h2,
.news .new .con .info h3 {
  color: var(--title_color);
  font-size: 2rem;
  font-weight: 700;
  line-height: 40px;
  margin: 12px 0 2rem;
}
.news .new .con .info strong {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--theme_color);
}
.news .new .con .info strong i {
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/right-full.svg) no-repeat center / contain;
  transition: all 0.3s;
  position: relative;
  right: 0;
}
.inquiry_form form {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 0;
  justify-content: space-between;
}
.inquiry_form form span {
  width: 100%;
}
.inquiry_form form .col2 {
  /* width: 48.81%; */
  width: 100%;
}
.inquiry_form form .col_full {
  width: 100%;
}
.inquiry_form form strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: var(--title_color);
  margin-bottom: 8px;
  width: max-content;
  cursor: pointer;
}
.inquiry_form form strong i {
  color: #ff0000;
}
.inquiry_form form span i {
  color: #ff0000;
/*  padding-left: 5px;*/
}
.inquiry_form form label input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f4f8fb;
  color: var(--title_color);
  font-size: 18px;
  border-radius: 4px;
  padding: 10px 20px;
}
.inquiry_form form label {
  /* width: max-content; */
  display: block;
}
.inquiry_form form label input[type="checkbox"] {
  width: unset;
  margin-right: 5px;
  margin-bottom: 8px;
  cursor: pointer;
}
.inquiry_form form label input[type="checkbox"] + span {
  cursor: pointer;
  font-size: 18px;
}
.inquiry_form form label input::placeholder {
  color: #585b5e;
}
.inquiry_form form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f4f8fb;
  color: var(--title_color);
  font-size: 18px;
  border-radius: 4px;
  padding: 17px 20px;
  height: 188px;
}
.inquiry_form form textarea::placeholder {
  color: #585b5e;
}
.inquiry_form form select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--title_color);
  font-size: 16px;
  border-radius: 4px;
  padding: 11px 20px;
  cursor: pointer;
  background: url(../img/select-full.svg) no-repeat right 34px center / 14px;
  background-color: #f4f8fb;
}
.inquiry_form form select::placeholder {
  color: #585b5e;
}
.inquiry_form form input[type="submit"] {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--theme_color);
  border-radius: 4px;
  border: 2px solid var(--theme_color);
  transition: all 0.3s;
  padding: 8.5px 63px;
  margin-top: 1rem;
}
.inquiry_form form input[type="submit"]:hover {
  background-color: transparent;
  color: var(--theme_color);
}
.comment_box {
  padding: 60px 0 75px;
}
.comment_box .comment_swiper_box {
  position: relative;
  padding: 0 calc(4% + 50px);
}
.comment_box .comment_swiper {
  max-width: 1184px;
  margin: 0 auto;
  overflow: hidden;
}
.comment_box .comment_swiper .swiper-wrapper {
  align-items: center;
}
.comment_box .comment_swiper .swiper-slide {
  background-color: white;
  border-radius: 14px;
  padding: 50px 16.09% 25px;
}
.comment_box .comment_swiper .swiper-slide p {
  padding-left: 6.4757%;
  padding-top: 2rem;
  position: relative;
  color: var(--title_color);
  font-size: 28px;
  line-height: 42px;
}
.comment_box .comment_swiper .swiper-slide p::before {
  content: '‘‘';
  color: var(--theme_color);
  font-size: 3rem;
  position: absolute;
  line-height: unset;
  left: -6.4757%;
  top: 0;
  letter-spacing: -2px !important;
  transform: translateX(14px);
}
.comment_box .comment_swiper .swiper-slide strong {
  display: block;
  text-align: right;
  color: var(--title_color);
  font-weight: 500;
  line-height: 30px;
  margin-top: 58px;
  font-size: 18px;
}
.comment_box .comment_swiper .swiper-slide .logo {
  margin: 8px 0 0 auto;
  width: 120px;
  height: 45px;
  background: no-repeat right center / contain;
}
.comment_box .swiper-pagination {
  filter: brightness(0);
  justify-content: center;
  margin-top: 40px;
}
.citations_main {
  padding: 92px 0 80px;
}
.citations_main .top {
  background-color: #016cf8;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  position: relative;
  z-index: 9;
}
.citations_main .top .num {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.citations_main .top .num:hover .dialog {
  opacity: 1;
  pointer-events: all;
}
.citations_main .top .num > i {
  margin-right: 1rem;
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../img/citation-num.svg) no-repeat center / contain;
}
.citations_main .top .num strong {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  position: relative;
}
.citations_main .top .num strong span {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  opacity: 1;
}
.citations_main .top .num strong .dialog {
  border-radius: 4px;
  left: -2rem;
  top: calc(100% + 1rem);
  width: 220px;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 6px 14px;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.citations_main .top .num strong .dialog::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  top: 0;
  left: 2.5rem;
  transform: translateY(-100%);
}
.citations_main .top .num strong .dialog strong {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.citations_main .top .num strong .dialog p {
  font-size: 14px;
  color: #666;
  font-weight: normal;
  line-height: 1.5;
}
.citations_main .top .num strong .dialog ul li {
  display: flex;
  align-items: center;
  margin: 8px 0;
}
.citations_main .top .num strong .dialog ul li span {
  font-size: 13px;
  color: #666;
  font-weight: normal;
  flex: 1;
  padding: 0;
  line-height: 1;
}
.citations_main .top .num strong .dialog ul li .process {
  width: 100px;
  height: 8px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.citations_main .top .num strong .dialog ul li .process i {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #ffbe3e;
  transition: all 0.3s;
}
.citations_main .top .num strong .dialog a {
  text-align: center;
  color: var(--theme_color);
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin: 10px auto 5px;
  width: max-content;
  line-height: 1;
}
.citations_main .top .num span {
  color: #fff;
  opacity: 0.85;
  font-size: 24px;
  line-height: 34px;
  padding-left: 5px;
}
.citations_main .top .line {
  background-color: #fff;
  min-width: 2px;
  width: 2px;
  height: 22px;
  margin: 0 20px;
}
.citations_main .top .line + div {
  color: #fff;
  opacity: 0.85;
  font-size: 22px;
  line-height: 34px;
}
.citations_main .top .line + .trend {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 1;
}
.citations_main .top .line + .trend span {
  opacity: 0.85;
}
.citations_main .top .line + .trend i {
  display: block;
  width: 41px;
  height: 27px;
  background: url(../img/citation-trend.svg) no-repeat center / contain;
}
.citations_main .filter {
  margin-top: 1rem;
  padding: 22px;
  border-top: 2px solid var(--theme_color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
.citations_main .filter .items {
  display: flex;
  align-items: center;
  gap: 24px;
}
.citations_main .filter .items .item {
  color: #4a4a4a;
  font-size: 22px;
  line-height: 34px;
  background: url(../img/select-b.svg) no-repeat right center / 11px;
  padding-right: 14px;
  cursor: pointer;
  position: relative;
}
.citations_main .filter .items .item .dialog {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 7px;
  width: 300px;
  top: calc(100% + 1rem);
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
.citations_main .filter .items .item .dialog.active {
  opacity: 1;
  pointer-events: all;
}
.citations_main .filter .items .item .dialog::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20px;
  display: block;
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.citations_main .filter .items .item .dialog .search {
  padding: 10px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 7px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.citations_main .filter .items .item .dialog .search input {
  display: block;
  width: 100%;
  height: 34px;
  border-radius: 6px;
  padding: 0 1rem 0 40px;
  background: url(../img/search-b.svg) no-repeat center left 10px/1rem;
  background-color: #eeeeee;
}
.citations_main .filter .items .item .dialog ul {
  overflow: auto;
  height: 150px;
  margin-top: 8px;
}
.citations_main .filter .items .item .dialog ul li {
  padding: 0 12px;
  margin-bottom: 12px;
}
.citations_main .filter .items .item .dialog ul li label {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 13px;
  cursor: pointer;
  gap: 1rem;
}
.citations_main .filter .items .item .dialog ul li label span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.5;
}
.citations_main .filter .items .item .dialog ul li label span:first-of-type {
  width: 58%;
}
.citations_main .filter .items .item .dialog ul li label span:last-of-type {
  width: 41%;
}
.citations_main .filter .items .item .dialog ul li label input {
  appearance: none;
  min-width: 1rem;
  height: 1rem;
  border: 1px solid var(--theme_color);
  border-radius: 3px;
  background: url(../img/gou-w.svg) no-repeat center / 80%;
}
.citations_main .filter .items .item .dialog ul li label input:checked {
  background-color: var(--theme_color);
}
.citations_main .filter .items .item .num {
  width: 18px;
  height: 18px;
  background-color: var(--theme_color);
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  color: #fff;
  font-size: 12px;
  position: absolute;
  left: 0;
  bottom: 100%;
  transform: translate(-50%, 30%);
  display: none;
}
.citations_main .select {
  margin-top: 26px;
  padding: 0 22px;
  position: relative;
}
.citations_main .select .citations_select_swiper {
  overflow: hidden;
}
.citations_main .select .citations_select_swiper .swiper-slide {
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.citations_main .select .citations_select_swiper .swiper-slide i {
  width: 100%;
  padding-bottom: 100%;
  display: block;
  background: no-repeat center / contain;
}
.citations_main .select .swiper_btns {
  width: 99%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.citations_main .select .swiper_btns div {
  width: 7px;
  height: 13px;
  background: url(../img/left.svg) no-repeat center / contain;
  cursor: pointer;
}
.citations_main .select .swiper_btns div.swiper-button-disabled {
  opacity: 0;
}
.citations_main .select .swiper_btns .btn_next {
  background-image: url(../img/right.svg);
}
.citations_main .citations_main_swiper_box {
  position: relative;
  margin-top: 25px;
}
.citations_main .citations_main_swiper_box .swiper_btns_full {
  max-width: 1524px;
}
.citations_main .citations_main_swiper {
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 60px;
}
.citations_main .citations_main_swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.citations_main .citations_main_swiper .swiper-slide .img {
  width: 49.444%;
  height: 500px;
  background-color: #f6f6f6;
  border-radius: 6px;
  padding: 14px;
}
.citations_main .citations_main_swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.citations_main .citations_main_swiper .swiper-slide .info {
  width: 46.27%;
}
.citations_main .citations_main_swiper .swiper-slide .info h2 {
  color: var(--title_color);
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.citations_main .citations_main_swiper .swiper-slide .info span {
  display: block;
  color: #999999;
  line-height: 2rem;
  margin: 1rem 0 4px;
}
.citations_main .citations_main_swiper .swiper-slide .info div {
  color: var(--title_color);
  font-weight: 500;
  line-height: 2rem;
  margin-bottom: 14px;
}
.citations_main .citations_main_swiper .swiper-slide .info div a {
  color: var(--theme_color);
  font-weight: 500;
  line-height: 2rem;
}
.citations_main .citations_main_swiper .swiper-slide .info div i {
  padding: 0 8px;
}
.citations_main .citations_main_swiper .swiper-slide .info strong {
  display: block;
  color: var(--title_color);
  font-size: 22px;
  font-weight: 500;
  line-height: 2rem;
}
.citations_main .citations_main_swiper .swiper-slide .info p {
  color: #606060;
  font-size: 20px;
  line-height: 30px;
  margin: 8px 0 35px;
}
.citations_main .citations_main_swiper .swiper-slide .info p a,
.citations_main .citations_main_swiper .swiper-slide .info p i {
  color: var(--theme_color);
  font-size: 20px;
  line-height: 30px;
  text-decoration: underline;
}
.citations_main .citations_main_swiper .swiper-slide .info p i {
  padding: 0 5px;
}
.citations_main .citations_main_swiper .swiper-slide .info p:last-child {
  margin-bottom: 0;
}
.citations_main .powered {
  color: var(--theme_color);
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3rem;
}
.citations_main .powered i {
  display: block;
  width: 21px;
  height: 21px;
  background: url(../img/citation-icon.svg) no-repeat center / contain;
}
.sy_contentfaq {
  max-width: 898px;
  margin: 0 auto;
}
.sy_contentfaq .sy_fap_group .faqs_list {
  display: flex;
  gap: 15px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.sy_contentfaq .sy_fap_group .faqs_list li {
  flex: 1;
  font-size: 19px;
  color: #585859;
  font-weight: 500;
  background-color: #f8f8f8;
  transition: all 0.3s;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  padding: 10px;
  white-space: nowrap;
}
.sy_contentfaq .sy_fap_group .faqs_list li.active,
.sy_contentfaq .sy_fap_group .faqs_list li:hover {
  background-color: var(--theme_color);
  color: #fff;
}
.sy_contentfaq .sy_fap_group .faqs {
  margin-top: 42px;
}
.sy_contentfaq .sy_fap_group .faqs .faq {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: none !important;
  padding-bottom: 10px;
}
.sy_contentfaq .sy_fap_group .faqs .faq:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.sy_contentfaq .sy_fap_group .faqs .faq.active .question span::after {
  height: 2px;
  opacity: 0;
}
.sy_contentfaq .sy_fap_group .faqs .faq .question {
  gap: 1rem;
  display: flex;
  align-items: center;
  padding: 40px 28px 28px 25px;
  cursor: pointer;
}
.sy_contentfaq .sy_fap_group .faqs .faq .question strong {
  flex: 1;
  color: var(--title_color);
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}
.sy_contentfaq .sy_fap_group .faqs .faq .question span {
  display: block;
  width: 14px;
  height: 14px;
  position: relative;
}
.sy_contentfaq .sy_fap_group .faqs .faq .question span::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sy_contentfaq .sy_fap_group .faqs .faq .question span::after {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.sy_contentfaq .sy_fap_group .faqs .faq .question span svg {
  display: none;
}
.sy_contentfaq .sy_fap_group .faqs .faq .answer {
  color: #5e5e5e;
  font-size: 18px;
  line-height: 30px;
  padding: 0 68px 36px 25px;
  display: none;
}
.sy_contentfaq .sy_fap_group .faqs .faq .answer a {
  color: var(--theme_color);
  font-size: 18px;
  line-height: 30px;
}
.sy_contentfaq .sy_fap_group button {
  display: none;
}
.desc_span{
  height: 0;
  display: inline-block;
  text-indent: -9999px;
  overflow: hidden;
}
body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  border: none;
  margin-top: 0;
  margin-left: 0;
}
form.submitting{
  position: relative;
}

form.submitting:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url('../img/load.gif') no-repeat center/50px;
  background-color: rgba(255, 255, 255, 0.4);
}

.loading {
  position: relative;
}

.loading:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url('../img/load.gif') no-repeat center;
  background-size: 50px;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 21;
}
.empty_img{
  width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
div.loader {
  border: 7px solid #f2f5f9;
  border-top: 7px solid #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  margin-left: -1.75rem;
  animation: spin 1s linear infinite;
  margin-top: 0;
  text-align: center;
}

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

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

.h1-title{
  padding: 8rem 0;
  background-color: #eee;
}
.h1-title h1{
  font-size: 35px;
  font-weight: 600;
  color: #000;
}
.page-template-default .blog_details{
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.blog_detail h2{
  font-size: 24px;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.blog_detail p{
  font-size: 18px;
  margin-bottom: 1rem;
  line-height: 1.5rem;
}
.blog_detail ul{
  margin: 2rem 0;
}
.blog_detail ul li{
  margin-left: 20px;
  list-style: disc;
}
.contact_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 10000;
  padding: 0 2rem;
}
.contact_pop.active {
  opacity: 1;
  pointer-events: all;
}
.contact_pop.active .pop_content {
  transform: translate(-50%, -50%);
  position: relative;
}
.contact_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.contact_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../img/close.svg) no-repeat center / contain;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.contact_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%);
  max-width: 800px;
  width: calc(100% - 2.4rem);
  height: auto;
  max-height: calc(100vh - 4rem);
  transition: all 0.3s;
  background-color: #fff;
  border-radius: 10px;
  padding: 75px 3rem 3rem;
  overflow: auto;
}
.contact_pop .pop_content::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

.contact_pop .pop_content::-webkit-scrollbar-track,
.contact_pop .pop_content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent;
}

.contact_pop .pop_content::-webkit-scrollbar-track {
  box-shadow: 1px 1px 5px transparent inset;
}

.contact_pop .pop_content::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px #999 inset;
}

.contact_pop .pop_content::-webkit-scrollbar-corner {
  background: transparent;
}
.contact_pop .pop_content strong {
  display: block;
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 18px;
}
.contact_pop .pop_content p {
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-bottom: 55px;
}
.contact_pop .pop_content form {
  display: grid;
  gap: 20px 5.4%;
  grid-template-columns: repeat(2, 1fr);
}
.contact_pop .pop_content form textarea {
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  width: 100%;
  height: 100%;
  font-family: inherit;
}
.contact_pop .pop_content form span[data-name="message"]{
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 5;
}
.contact_pop .pop_content form input {
  height: 42px;
  padding: 0 1rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
}
/* .contact_pop .pop_content form span.wpcf7-form-control-wrap{
  grid-column-start: 2;
  grid-column-end: 3;
} */
.contact_pop .pop_content form input[type="submit"] {
  grid-column-end: 3;
  width: max-content;
  padding: 10px 40px;
  font-size: 15px;
  font-weight: 400;
  border: none;
  border-radius: 5px;
  background-color: var(--theme_color);
  color: white;
  margin: 20px 0 0 auto;
  transition: all 0.3s;
  line-height: 1.5;
  height: auto;
}
.contact_pop .pop_content form input[type="submit"]:hover {
  background-color: var(--subtheme_color);
  border: none;
}
.contact_pop .pop_content ul {
  padding-top: 15px;
  display: flex;
  gap: 5.4%;
}
.contact_pop .pop_content ul li {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 20px;
}
.contact_pop .pop_content ul li i {
  display: block;
  width: 60px;
  height: 60px;
  margin-right: 25px;
}
body .contact_pop .wpcf7-not-valid-tip{
  margin-top: 0.5rem;
  font-size: 14px;
}
body .wpcf7 form.invalid .wpcf7-response-output, body .wpcf7 form.unaccepted .wpcf7-response-output, body .wpcf7 form.payment-required .wpcf7-response-output{
  padding: 0;
  border: none;
  margin-top: 1rem;
  font-size: 14px;
}
.contact_pop .pop_content ul li i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact_pop .pop_content ul li:nth-of-type(1) i img{
  width: 90%;
}
.contact_pop .pop_content ul li strong {
  text-align: left;
  font-size: 20px;
  font-weight: normal;
  color: #242424;
  margin-bottom: 5px;
}
.contact_pop .pop_content ul li a {
  font-size: 1rem;
  color: #777;
}
.contact_pop .pop_content ul li:last-child i {
  width: 46px;
  height: 46px;
}

div.search-block {
  display: none;
  position: fixed;
  z-index: 10000;
  background-color: #fff;
  box-shadow: 0 0 15px rgb(0 55 96 / 12%);
  transition: 0.3s ease;
  width: 100%;
  bottom: -100vh;
  height: auto;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../img/close.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover{
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}
.category_banner{
 
  background: rgb(248, 248, 248);
}
.category_banner .flex{
  width: 100%;
}
.category_banner .head{
  height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.category_banner h1{
  font-size: 48px;
  margin-top: 0.8rem;
}
.category_banner .content{
  width: 100%;
}
.category_banner img{
  height: 180px;
  width: auto;
}
.breadcrumbs, .breadcrumbs a{
  color: #757575;
}
.breadcrumbs .breadcrumb_last{
  color: #252525;
}

.search_empty img{
  width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.page-num ul, .nav-links{
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 20px !important;
}
.page-num ul li, .nav-links > *{
  width: auto;
  cursor: pointer;
}
.page-num ul li.active, .page-num ul li.active a, .nav-links .current{
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}
.page-num .prev a, .nav-links .prev{
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url('../img/page-left.svg') no-repeat center/contain;
}
.page-num .next a, .nav-links .next{
  width: 12px;
  display: inline-block;
  height: 12px;
  background: url('../img/page-right.svg') no-repeat center/contain;
}
.head-search-block{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #171f2a;
  color: #eee;
  padding: 19px 0;
  display: none;
}
.head-search-block input{
  border: none;
  border-bottom: 1px solid #eee;
  background-color: transparent;
  padding: 0.5rem;
  padding-left: 2rem;
  width: 85%;
  font-size: 18px;
  color: #eee;
  margin-right: 1rem;
  background: url('../img/search.svg') no-repeat left/18px;
}
header nav{
  position: relative;
}
.head-search-block span{
  cursor: pointer;
}



header .header nav div > ul > li ul li a {
  padding-left: 4rem;
  position: relative;
}
header .header nav div > ul > li ul li a::before{
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: no-repeat center / contain;
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.header nav div > ul > li ul li.ngs a::before{
  background: url('../img/NGS.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.danbaizhi a::before{
  background: url('../img/Extraction.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.juhemei a::before{
  background: url('../img/PCR-1.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.hesuan a::before{
  background: url('../img/Protein-Purification.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.meilian a::before{
  background: url('../img/ELISA.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.konwledge a::before{
  background: url('../img/Knowledge-Hub-2.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.case a::before{
  background: url('../img/Customer-Stories.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.citations a::before{
  background: url('../img/Documentation.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.start a::before{
  background: url('../img/Getting-Started.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.faq a::before{
  background: url('../img/FAQ.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.pmspp a::before{
  background: url('../img/pmspp.png') no-repeat center/contain;
}
.header nav div > ul > li ul li.cs a::before{
  background: url('../img/cs.png') no-repeat center/contain;
}


.header nav div > ul > li ul li.oem a::before{
  background: url('../img/oem.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.edu a::before{
  background: url('../img/edu.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.mission a::before{
  background: url('../img/mission.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.eaw a::before{
  background: url('../img/eaw.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.news a::before{
  background: url('../img/news.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.car a::before{
  background: url('../img/car.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.cu a::before{
  background: url('../img/cu.svg') no-repeat center/contain;
}
.header nav div > ul > li ul li.center a {
  padding: .8rem 1.5rem !important;
}

footer .subscribe form {
  display: flex;
  /* overflow: hidden; */
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: relative;
}
footer .subscribe form input[type="email"] {
  flex: 1;
  color: var(--title_color);
  font-size: 1rem;
  padding: 0 42px;
  border-radius: 5px;
}
footer .subscribe form input[type="email"]::placeholder {
  color: #727272;
}
footer .subscribe form input[type="submit"] {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  background-color: var(--theme_color);
  border-radius: 5px;
  transition: all 0.3s;
  width: 30%;
  padding: 13.5px;
}
footer .subscribe form input[type="submit"]:hover {
  background-color: #333;
}
form#sytech-newsletter-subscription p.failed.active, form#sytech-newsletter-subscription p.success.active{
  bottom: 4rem !important;
}
form#sytech-newsletter-subscription p.failed:after, form#sytech-newsletter-subscription p.success:after{
  bottom: -0.5rem !important;
}
.application-template-default .comment_box .comment_swiper_box {
  margin-top: 0!important;
}
.application_hot {
  padding: 70px 0 115px;
  /* padding: 70px 0 115px!important; */
}
.application_product .flex {
    padding: 50px 0 0!important;
}
.application_product .main ul li .info span {
  color: #707075!important;
}
.education_intro .main ul {
  justify-content: center!important;
}

.img-height{
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
}
.img-height img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_solution {
  padding: 4rem 0 72px;
  /* padding: 4rem 0 72px !important; */
}

.home_step .home_step_swiper ul li {
  background: none !important;
}

.form_scroll .head h2 {
  font-size: 2rem !important;
}


.product_related {
  padding: 5rem 0;
}
.product_related h2 {
  font-size: 2rem;
  font-weight: normal;
}
.product_related .main {
  margin-top: 40px;
}
.product_related .main ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5rem 1.5rem;
}
.product_related .main ul li a:hover img {
  transform: scale(1.05);
}
.product_related .main ul li .img {
  padding-bottom: 100%;
  position: relative;
  background-color: #f8f8f8;
  overflow: hidden;
}
.product_related .main ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.product_related .main ul li .info {
  padding-top: 24px;
}
.product_related .main ul li .info p {
  font-size: 20px;
  color: #252525;
  font-weight: 600;
  margin-bottom: 5px;
}
.product_related .main ul li .info span {
  color: #757575;
}
.product_module .img{
  width: 34.984127% !important;
}

.pager{
  margin: 3rem 0;
}
.pager ul{
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.pager ul li a{
  display: inline-block;
  font-size: 18px;
  color: #333;
}
.pager ul li.active a{
  text-decoration: underline;
  color: var(--theme_color);
}


#dialog_link {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
#dialog_link.hide {
  transform: translateX(-100%);
}
#dialog_link.hide:hover {
  transform: translateX(calc(-100% + 6px));
}
#dialog_link.hide .show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-50%);
}
#dialog_link .show {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(-100%, -50%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  z-index: -1;
  width: 1.5rem;
  height: 4rem;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background: url(../img/right.svg) no-repeat center / 8px;
  background-color: #fff;
}
#dialog_link .close {
  width: 1rem;
  height: 1rem;
  background: url(../img/mobile-menu/close.svg) no-repeat center / contain;
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  filter: brightness(2);
  transition: all 0.3s;
}
#dialog_link .close:hover {
  transform: rotate(180deg);
}
#dialog_link a {
  width: min(600px, 50vw);
  display: block;
  aspect-ratio: 1030/623;
  padding: 6px;
  border-radius: 6px;
  background-color: #fff;
}
#dialog_link a img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 786px) {
  #dialog_link a {
    width: 100vw;
  }
}

.notification_bar {
  padding: 0 70px;
  position: relative;
  background-color: #16212d;
}
.notification_bar .close {
  width: 70px;
  height: 100%;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../img/bar-close.svg) no-repeat center / 1rem;
  border-left: 2px solid rgba(0, 0, 0, 0.15);
  filter: contrast(0) brightness(2);
}
.notification_bar .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  gap: 22px;
}
.notification_bar p {
  color: #fff;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notification_bar a {
  text-align: center;
  min-width: 130px;
  color: #fff;
  padding: 8px 12px;
  display: inline-block;
  vertical-align: top;
  line-height: 34px;
  border-radius: 1rem;
  background-image: linear-gradient(to right, #006cfa, #893ba4);
  transition: all 0.3s;
}
.notification_bar a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 786px) {
  .notification_bar {
    padding: 8px 42px 8px 1.2rem;
    .close {
      width: 42px;
      background-size: 12px;
    }
    .content {
      padding-left: 0;
      padding-right: 1rem;
    }
    .inner {
      gap: 12px;
      min-height: 42px;
    }
    p {
      font-size: 13px;
      line-height: 1.5;
    }
    a {
      min-width: max-content;
      white-space: nowrap;
      font-size: 13px;
      line-height: 1.5;
      padding: 8px 12px;
      border-radius: 6px;
    }
  }
}

section.compare_main .product_detail {
  height: 100%;
  display: block;
  flex-direction: column;
}
section.compare_main .product_detail .info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
section.compare_main .product_detail .info .btns {
  flex: 1;
  align-items: flex-end;
  margin-top: 0;
}

.method_assay_text a {
  font-size: inherit;
  color: var(--theme_color);
  font-weight: 500;
  &:hover {
    text-decoration: underline;
  }
}
section.application_table table tr td:first-child {
  vertical-align: top;
}

.single-application .method_assay_text,
.single-application .application-text {
  .content > *,
  .prose > * {
    &:first-child {
      margin-top: 0;
    }
    &:last-child {
      margin-bottom: 0;
    }
  }
  br {
    display: none;
  }
  h2 {
    margin: 3rem 0 2rem;
  }
  h3 {
    margin: 2.5rem 0 1.5rem;
  }
  h4 {
    margin: 2rem 0 20px;
  }
  p {
    margin: 20px 0;
    line-height: 1.8;
  }
  li {
    line-height: 1.8;
  }
}

.k2_jump {
  display: flex;
  align-self: center;
  gap: 12px;
  input {
    width: 50px;
    height: 31px;
    text-align: center;
    border-radius: 4px;
    padding: 0 5px;
    border: 1px solid rgb(0 108 250 / 0.8);
  }
  #jump_btn {
    cursor: pointer;
    color: #fff;
    background-color: #006cfa;
    font-size: 14px;
    padding: 5px 1rem;
    border-radius: 4px;
    transition: all .3s;
    &:hover {
      background-color: rgb(0 108 250 / 0.8);
    }
  }
}

.products_main_list .item {
  margin-bottom: 3rem;
}
.products_main_list h2 {
  margin-bottom: 2rem;
}
.wp-block-file__button{
  padding: 0.5rem 2rem;
  background-color: var(--theme_color);
  color: white;
}

.flex_form.active{
  opacity: 1;
  pointer-events: all;
}
.flex_form{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10000;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.flex_form .formcontent{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: rgb(243, 243, 243);
  width: 1250px;
  padding: 50px;
  z-index: 9;
}
.flex_overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
}
.flex_form .formcontent .left{
  width: 40%;
}
.flex_form .formcontent .right{
  flex: 1;
  padding-left: 34px;
}
.flex_form .formcontent .left img{
  width: 100%;
  height: auto;
}
.flex_form .formcontent .right strong{
  font-size: 24px;
  display: block;
  margin-bottom: 0.2rem;
}
.flex_form .formcontent .right p{
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.flex_form .close{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  transition: all 0.3s;
  z-index: 9;
  right: 0;
  cursor: pointer;
  top: 0;
  transform: translate(50%,-50%);
  background: #ccc url('../img/form-close.svg') no-repeat center/60%;
}
.flex_form .close:hover{
  transform: translate(50%,-50%) rotate(180deg);
}
.partnership_intro2 .items .item .head p{
  max-width: 570px;
}
.prep_links ul li p{
  margin-top: 0.5rem;
}

.lang_popup{
  padding: 70px 53px;
  border-radius: 12px;
  background-color: white;
  /* position: absolute;
  left: calc(100% + 20px);
  bottom: -15px; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 540px;
  display: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.footer_sidebar .lang{
  position: relative;
}
.lang_popup strong{
  display: block;
  font-size: 32px;
  margin-bottom: 45px;
}
.lang_popup div.img{
  width: 41px;
  height: 41px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 19px;
  border: 1px solid transparent;
  display: none;
}
.lang_popup div.img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lang_popup li{
  padding: 19px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
  
}
.lang_popup:before{
  content: "";
  display: inline-block;
  border-width: 10px;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  right: 100%;
  bottom: 38px;
  border-style: solid;
  display: none;
}
.lang_popup li + li{
  margin-top: 16px;
}
.lang_popup li p{
  font-size: 17px;
  font-weight: 600;
  display: block;
  margin-bottom: 0rem;
}
.lang_popup li span{
  font-size: 14px;
  color: #686868;
}
.lang_popup li:after{
  content: "";
  width: 10px;
  height: 16px;
  display: inline-block;
  margin-left: auto;
  background: url('../img/arrow-lang.svg') no-repeat center/contain;
  transition: all 0.3s;
}
.lang_popup li.active{
  background-color: var(--theme_color);
  border-color: var(--theme_color);
}
.lang_popup li.active .img{
  border-color: white;
}
.lang_popup li.active p, .lang_popup li.active span{
  color: white;
}
.lang_popup li.active:after{
  filter: brightness(100);
}

.lang_popup .close{
  width: 11px;
  display: inline-block;
  height: 11px;
  position: absolute;
  right: 32px;
  top: 30px;
  cursor: pointer;
  transition: all 0.5s;
  background: url('../img/lang-close.svg') no-repeat center/contain;
}
.lang_popup .close:hover{
  transform: rotate(360deg);
}
.over_lang{
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.over_lang.active{
  opacity: 1;
  pointer-events: all;
}
.box_cur_lang{
  display: none !important;
}


.contact_pop .pop_content iframe{
  height: 600px;
}




html[lang="ko"] header .header nav div > ul{
  gap: 20px;
}



.download_modal{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.download_modal_active .download_modal{
  opacity: 1;
  pointer-events: all;
}
.download_modal_content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: white;
  z-index: 9;
  padding: 27px;
  width: 800px;
  height: auto;
}
.download_modal_overlay{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.download_modal_content .left, .download_modal_content .right{
  width: 50%;
}
.download_modal_content>.flex{
  gap: 33px;
}
.download_modal_content .left .img{
  aspect-ratio: 364/471;
  overflow: hidden;
}
.download_modal_content .left .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.download_modal_content .right{
  /* padding-top: 50px; */
}
.download_modal .close{
  position: absolute;
  right: 20px;
  top: 20px;
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url('../img/close.svg') no-repeat center/contain;
  cursor: pointer;
  transition: all 0.3s;
}
.download_modal .close:hover{
  transform: rotate(180deg);
}
.download_modal_content .right strong{
  font-size: 32px;
  display: block;
  margin-bottom: 1rem;
}
.download_modal_content .right p{
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #4a4c4e;
}
.download_modal_content .right .button{
  margin-top: 1.5rem;
}


body .fa8097ff55eabaa5782b:not(.bc81871a44ea566dd738) {
  bottom: 60px;
  max-height: 80vh;
}
body .asstBtn {
  width: 141px;
  height: 46px;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  background-color: #6696ff;
  position: fixed;
  right: 2px;
  bottom: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 9;
}
body .asstBtn_icon {
  width: 26px;
  height: 26px;
}
body .asstBtn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body .asstBtn_label {
  color: #fff;
  font-weight: 500;
  min-width: 66px;
  text-align: center;
}
/*body .index-module__root___R_KQi > .index-module__text___ikOpp:first-child,*/
/*body .index-module__root___R_KQi > .index-module__text___ikOpp:last-child {*/
/*    display: none;*/
/*}*/
/*body .index-module__root___R_KQi > .index-module__break___V44S_ {*/
/*    display: none;*/
/*}*/
/*body .index-module__root___R_KQi > .index-module__break___V44S_ + .index-module__text___ikOpp:last-child {*/
/*    display: inline;*/
/*}*/
/*body .index-module__answer___u1DiN > .index-module__tooltip___qm5BV:nth-child(2) .index-module__text___ikOpp {*/
/*    color: rgba(100, 100, 100, 0.7);*/
/*}*/
@media screen and (max-width: 768px) {
  body .asstBtn {
    left: 2px;
    bottom: 78px;
    right: unset;
    zoom: 0.8;
  }
}