﻿@charset "utf-8";

/*
	CSS Document 
*/
.sk-display-pc {
  display: block !important;
}

.sk-display-mobile {
  display: none !important;
}

/* header start */
.sk-header {
  display: block;
	width: 100%;
	transition: all .6s;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	background-color: rgba(255, 255, 255, .8);
}

.sk-header-logo {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  padding: 12px 0;
}

.sk-header-logo a {
	max-width: 230px;
  display: block;
  height: 60px;
}

.sk-header-logo img {
  width: 100%;
	display: block;
	height: 100%;
	object-fit: contain;
}

.sk-header-right{ display: flex; justify-content: flex-end; align-items: center; gap: 20px; }

.sk-header-search-item {
  cursor: pointer;
  flex-shrink: 0;
  text-align: center;
  transition: all .8s;
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
	gap: 6px;
}

.sk-header-search-item .iconfont {
  display: block;
  font-size: 18px;
	font-weight: 700;
}

.sk-header-search-item:hover{ color: var(--red); }

/* search start */
.sk-header-search {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 1008;
  display: none;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.sk-header-search-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
	background-color: var(--green);
	padding: 50px 10px;
}

.sk-header-search-form{
	position: relative;
	max-width: 1200px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.sk-header-search-box form {
  flex: 1;
  display: block;
  position: relative;
}

.sk-search-group {
  width: 100%;
  display: block;
  position: relative;
}

.sk-search-group .sk-search-control {
  display: block;
  border: 2px solid var(--red);
  background-color: var(--white);
  outline: none;
  padding: 0 80px 0 20px;
  height: 54px;
  position: relative;
  font-size: 14px;
  width: 100%;
  z-index: 9;
  transition: all .6s;
  color: var(--black);
	border-radius: 50px;
}

.sk-search-group .sk-search-btn {
  border: 0px solid var(--black);
  background: transparent;
  width: 52px;
  height: 52px;
  color: var(--black);
  position: absolute;
  right: 1px;
  top: 1px;
  z-index: 10;
  transition: all .6s;
}

.sk-search-group .sk-search-btn span {
	font-size: 24px;
	font-weight: 500;
}

.sk-search-group .sk-search-btn:hover {
  color: var(--red);
}

.sk-search-group .sk-search-control:focus {
  border-color: var(--red);
}

.sk-header-search-close {
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: block;
  cursor: pointer;
  color: var(--white);
  transition: all .8s;
	flex-shrink: 0;
}

.sk-header-search-close i {
  display: block;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

.sk-header-search-close:hover {
  color: var(--red);
  transform: rotate(360deg);
}

@media screen and (max-width: 868px) {
	.sk-header-search-box{ padding: 30px 12px; }
}

@media screen and (max-width: 640px) {
	.sk-header-search-form{ flex-direction: column; align-items: flex-end; }
	.sk-header-search-box form{ width: 100%; }
}

.sk-header-language{ display: block; flex-shrink: 0; }
.sk-header-language-link{ display: flex; justify-content: center; align-items: center; gap: 5px; }
.sk-header-language-flag{ width: 21px; height: 21px; border-radius: 50%; overflow: hidden; }
.sk-header-language-flag img{ display: block; width: 100%; height: 100%; object-fit: cover; }
.sk-header-language-link span{ font-size: 16px; line-height: 21px; text-transform: capitalize; font-family: var(--fonts-two); display: block; font-weight: 400; color: var(--black); transition: all .8s; }
.sk-header-language-link:hover span{ color: var(--red); }

.sk-gettouch{ flex-shrink: 0; }
.sk-gettouch .sk-gettouch-header-btn{ transition: all .8s; display: flex; justify-content: center; align-items: center; gap: 5px; line-height: 23px; padding: 7px 15px; border-radius: 30px; color: var(--white); background-color: var(--green); }
.sk-gettouch .sk-gettouch-header-btn i{ font-size: 12px; }
.sk-gettouch .sk-gettouch-header-btn span{  font-size: 14px; font-weight: 400; font-family: var(--fonts-two); }
.sk-gettouch .sk-gettouch-header-btn:hover { color: var(--white); background-color: var(--red); }

.sk-header-box {
  position: relative;
} 

.sk-header-box .sk-navigation{
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 65;
	gap: 30px;
}

/* navigation */
.sk-navigation-box {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 15px;
	transition: all .8s;
}

.sk-navigation-box .sk-navigation-li {
  position: relative;
}

.sk-navigation-box .sk-navigation-link {
  font-weight: 400;
  font-size: 18px;
	text-transform: capitalize;
  color: var(--grey);
  display: flex;
  justify-content: center;
	align-items: center;
  height: 100%;
  transition: all 500ms ease-in-out;
	position: relative;
	gap: 2px;
	padding: 0 8px;
}
.sk-navigation-box .sk-navigation-link i{ font-size: 14px; }

.sk-navigation-box .sk-navigation-sub {
  display: block;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 1000;
	padding: 5px 0;
  background-color: var(--white);
	border-top: 3px solid var(--red);
	box-shadow: 0 0 20px -1px rgb(0 0 0 / 5%);
  width: 250px;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform-origin: center top 0;
  -webkit-transform-origin: center top 0;
  -moz-transform-origin: center top 0;
  -ms-transform-origin: center top 0;
  -o-transform-origin: center top 0;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-li {
  position: relative;
  display: block;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link {
  padding: 8px 10px;
  color: var(--grey);
  font-weight: 400;
  font-size: 14px;
	line-height: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
	transition: all .6s;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link i {
  font-size: 14px;
}

.sk-navigation-child {
  left: 250px;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0 0 0;
  transition: all 0.4s ease 0s;
  background-color: var(--white);
	box-shadow: 0 0 20px -1px rgb(0 0 0 / 5%);
  z-index: 999;
  visibility: hidden;
  width: 250px;
  overflow-y: auto;
	border-top: 3px solid var(--red);
	padding: 5px 0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.sk-navigation-child .sk-navigation-child-li {
  display: block;
  padding: 0;
  position: relative;
}

.sk-navigation-child .sk-navigation-child-link {
  color: var(--grey);
  padding: 8px 10px;
  text-transform: capitalize;
	font-weight: 400;
  font-size: 14px;
	line-height: 23px;
  overflow: hidden;
  display: block;
  transition: all .6s;
}

.sk-navigation-box .sk-navigation-link.active,
.sk-navigation-box .sk-navigation-li .sk-navigation-link:hover{
  color: var(--red) !important;
}

.sk-navigation-child .sk-navigation-child-link:hover,
.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link:hover{
  color: var(--red);
	background-color: var(--bgpro);
}

.sk-navigation-box .sk-navigation-li:hover .sk-navigation-sub {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.sk-navigation-sub-li:hover .sk-navigation-child {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}

.sk-header:hover{
	background-color: var(--white);
}

.sk-header-fixed {
  background-color: var(--white);
	box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
  -ms-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
  -o-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
  -webkit-box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
}

/* header end */

/* mobile nav */
.sk-mobile-header {
  display: none;
}

.sk-mobile-header-box {
	display: flex;
  justify-content: space-between;
  align-items: center;
	width: 100%;
  padding: 0 10px;
	box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
	z-index: 103;
	position: fixed;
	top: 0;
	left: 0;
	transition: all .6s;
	background-color: rgb(255, 255, 255, .8);
}

.sk-mobile-header-logo {
  display: block;
  padding: 12px 0;
}

.sk-mobile-header-logo a{ display: block; max-width: 180px; }

.sk-mobile-header-logo img {
	max-width: 100%;
	max-height: 45px;
	display: block;
}
.sk-mobile-header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.sk-mobile-header-right .sk-header-search-item,.sk-mobile-header-right .sk-header-language-link span{ color: var(--black); }

.sk-mobile-caidan {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  color: var(--black);
  outline: none;
  cursor: pointer;
  transition: all .8s;
}

.sk-mobile-caidan .iconfont {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
}

.sk-mobile-caidan:hover{ color: var(--red); }

.sk-header-mobile-top{
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sk-header-mobile-top .sk-mobile-header-logo{ padding: 0; }
.sk-header-colse {
  display: block;
  width: 36px;
  height: 36px;
  background-color: var(--black);
  color: var(--white);
  cursor: pointer;
}

.sk-header-colse .iconfont {
  display: block;
  text-align: center;
  line-height: 36px;
	font-size: 20px;
}

.sk-mobile-nav {
  position: fixed;
  width: 95%;
  height: 100vh;
  top: 0px;
  right: -120%;
  background-color: var(--white);
  box-shadow: -1px 0 5px 0 var(--border);
  z-index: 1001;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: 0 0 0;
  transition: all 0.6s ease 0s;
}

.sk-mobile-nav-box {
  overflow-y: auto;
  max-height: calc(100% - 260px);
  margin-top: 10px;
	border-top: 2px solid var(--red);
}

.sk-mobile-nav-box .sk-mobile-nav-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-link {
  padding: 0 15px;
  line-height: 42px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border);
	font-family: var(--fonts-two);
  font-weight: 400;
}
.sk-mobile-nav-box .sk-mobile-nav-link a{ flex: 1; transition: all .6s; color: var(--black); }
.sk-mobile-nav-box .sk-mobile-nav-sub{ display: none; }
.sk-mobile-nav-box .sk-mobile-nav-sub-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-sub-link {
  padding: 7px 10px 7px 12px;
  line-height: 30px;
  font-size: 14px;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}
.sk-mobile-nav-box .sk-mobile-nav-sub-link a,.sk-mobile-nav-box .sk-mobile-nav-child-link a{ flex: 1; display: flex; justify-content: flex-start; line-height: 25px; transition: all .6s; color: var(--grey); }
.sk-mobile-nav-box .sk-mobile-nav-child{ display: none; }
.sk-mobile-nav-box .sk-mobile-nav-child-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-child-link {
  color: var(--grey);
  padding: 7px 12px 7px 25px;
  line-height: 30px;
  font-size: 14px;
  text-transform: capitalize;
  border-bottom: 1px dashed var(--border);
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sk-mobile-nav-box .sk-mobile-nav-child-link{ transition: all .6s; }

.sk-mobile-nav-box .sk-mobile-nav-link.active a,
.sk-mobile-nav-box .sk-mobile-nav-link:hover a,
.sk-mobile-nav-box .sk-mobile-nav-sub-link:hover a,
.sk-mobile-nav-box .sk-mobile-nav-child-link:hover a {
  color: var(--red);
}

.sk-mobile-nav-down{ width: 36px; text-align: center; }

.sk-mobile-block {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
  right: 0;
}

.sk-mobile-header-box:hover { background-color: var(--white); }

.sk-mobile-fixed {
  background-color: var(--white);
  box-shadow: 0 0 20px -1px rgb(0 0 0 / 20%);
  -ms-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .2);
  -o-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 0 20px -1px rgb(0 0 0 / 20%);
}

@media screen and (max-width: 1440px) {
	.sk-header-box .sk-navigation{ gap: 20px; }
  .sk-navigation-box{ gap: 5px; }
}
@media screen and (max-width: 1360px) {
	.sk-header-right{ gap: 10px; }
	.sk-navigation-box .sk-navigation-link{ font-size: 16px; }
}
@media screen and (max-width: 1200px) {
	.sk-gettouch{ display: none; }
	.sk-navigation-box .sk-navigation-link{ font-size: 14px; }
}
@media screen and (max-width: 1024px) {
  .sk-header {
    display: none;
  }
  .sk-mobile-header {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .sk-mobile-header-right{ gap: 12px; }
}
/* header end */

/* footer */
.sk-footer {
  background-color: var(--bgpro);
	border-top: 5px solid var(--red);
}

.sk-footer-box {
  padding: 60px 0 50px;
}

.sk-footer-box-logo{ display: block; margin-bottom: 30px; max-width: 300px; }
.sk-footer-box-logo img{ max-width: 100%; max-height: 60px; display: block; }

.sk-follow{ display: flex; justify-content: flex-end; flex-direction: column; align-items: flex-start; margin-top: 20px; }
.sk-follow-title{ font-size: 24px; line-height: 25px; color: var(--black); font-family: var(--fonts-two); font-weight: 500; margin-bottom: 15px; }
.sk-follow-box{ display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 10px; }
.sk-follow-box a{ width: 30px; height: 30px; overflow: hidden; display: block; transition: all .6s; flex-shrink: 0; }
.sk-follow-box img{ width: 100%; height: auto; display: block; }
.sk-follow-box a:hover{ transform: rotate(20deg); }

.sk-footer-box-text{ font-size: 14px; font-weight: 400; color: var(--black-grey); line-height: 23px; padding-right: 30px; }

.sk-footer-box-title{
  color: var(--black);
  font-size: 24px;
	font-family: var(--fonts-two);
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
	text-transform: capitalize;
}

.sk-footer-box-contact,.sk-footer-box-nav{
  display: block;
}

.sk-footer-box-contact-item {
  display: flex;
  justify-content: flex-start;
  margin-block-end: 8px;
	gap: 3px;
}

.sk-footer-box-contact-item p{ font-size: 14px; line-height: 24px; color: var(--black-grey); font-family: var(--fonts-two); font-weight: 400; gap: 5px; display: flex; justify-content: flex-start; align-items: flex-start; }

.sk-footer-box-contact-item i{
  display: block;
  flex-shrink: 0;
  width: 20px;
  line-height: 25px;
  color: var(--black-grey);
  font-size: 18px;
}

.sk-footer-box-contact-info{ padding-left: 5px; display: flex; justify-content: flex-start; gap: 5px; }

.sk-footer-box-contact-info span,
.sk-footer-box-contact-info a {
  font-size: 14px;
  color: var(--black-grey);
  line-height: 23px;
  font-weight: 400;
}

.sk-footer-box-contact-info a:hover {
  color: var(--red);
}

.sk-footer-box-nav{ display: block; }

.sk-footer-box-nav-box li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
  transition: 0.5s all ease;
}

.sk-footer-box-nav-box li span a{
  font-size: 14px;
	line-height: 23px;
  color: var(--black-grey);
  transition: all .8s;
  font-weight: 400;
}

.sk-footer-box-nav-box li:hover a {
  color: var(--red);
}
.sk-footer-box-nav-box li:hover{ padding-left: 10px; }

/* copyright */
.sk-footer-copyright {
  display: block;
	padding: 18px 0;
	background-color: var(--green);
}
.sk-footer-copyright-text{ display: flex; justify-content: center; gap: 15px; }

.sk-footer-copyright-text-begin{
	color: var(--white);
  font-size: 14px;
  line-height: 24px;
  text-align: center;
	font-weight: 400;
}
.sk-footer-copyright-text-nav{ display: flex; justify-content: center; gap: 15px; }
.sk-footer-copyright-text-nav a {
  color: var(--white);
  transition: all .6s;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

.sk-footer-copyright-text a:hover {
  color: var(--red);
}

/* blank top */
.sk-meau-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  position: fixed;
  bottom: 75px;
  right: 15px;
  z-index: 98;
  text-align: center;
  color: var(--white);
  cursor: pointer;
  background: var(--red);
	transition: all .6s;
}
.sk-meau-top i{ font-size: 24px; }
.sk-meau-top:hover{ background: var(--green); }

@media screen and (max-width: 1200px) {
	.sk-footer-box-nav{ margin-bottom: 30px; }
	.sk-footer-box-faceback{ margin-bottom: 30px; }
}

@media screen and (max-width: 1024px) {
	.sk-footer-box{ padding: 50px 0; }
}

@media screen and (max-width: 868px) {
	.sk-footer-box{ padding: 40px 0; }
	.sk-footer-copyright{ padding: 15px 0; }
	.sk-footer-copyright-text{ flex-direction: column; gap: 10px; }
	.sk-footer-box-text{ padding-right: 0; }
}
/* footer end */

/* message */
.sk-content-message {
  display: block;
}
.sk-message-title{ margin-bottom: 15px; }
.sk-message-title .sk-message-title-item{ display: block; font-weight: 500; color: var(--black); font-size: 24px; line-height: 30px; font-family: var(--fonts-two); }
.sk-message-title .sk-message-title-text{ font-size: 14px; line-height: 24px; color: var(--grey); margin-top: 12px; font-weight: 400; }

.sk-content-message-form {
  display: block;
}

.sk-content-message-form .sk-content-message-form-input,
.sk-content-message-form .sk-content-message-form-textarea {
  margin-bottom: 12px;
	position: relative;
}

.sk-content-message-form label {
  font-size: 14px;
  color: var(--grey);
  line-height: 30px;
  font-weight: 400;
	font-family: var(--fonts-two);
}
.sk-content-message-form label span{ color: var(--red); }

.sk-content-message-form .sk-content-message-form-input input,
.sk-content-message-form .sk-content-message-form-textarea textarea {
  width: 100%;
  line-height: 23px;
  display: block;
  border: 1px solid var(--border);
  outline: none;
  background-color: var(--white);
  font-size: 14px;
  padding: 8px 10px;
  transition: all .8s;
	border-radius: 0px;
}

.sk-content-message-form .sk-content-message-form-textarea textarea {
  resize: none;
  height: 120px;
}

.sk-content-message-form .sk-content-message-form-input input:focus,
.sk-content-message-form .sk-content-message-form-textarea textarea:focus {
  border-color: var(--red);
}

.sk-content-message-form .sk-content-message-form-submit {
  display: flex;
  justify-content: center;
  padding-top: 15px;
}

.sk-content-message-form .sk-content-message-form-button {
  width: auto;
  transition: all .8s;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
	line-height: 28px;
  padding: 8px 42px;
  font-family: var(--fonts-two);
	text-transform: capitalize;
  font-weight: 400;
	border-radius: 30px;
}

.sk-content-message-form .sk-content-message-form-button:hover {
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
}
/* message end */

/* foot msg */
.sk-foot-message{ display: none; width: 100%; height: 100vh; position: fixed; top: 0; left: 0; z-index: 9999; }
.sk-foot-message .sk-foot-message-flex{ width: 100%; height: 100%; position: relative; display: flex; justify-content: center; align-items: center; opacity: 0; transition: all .6s; }
.sk-foot-message .sk-foot-message-flex .sk-foot-message-mask{ position: absolute; width: 100%; height: 100%; content: ''; display: block; z-index: 8; background-color: rgba(0, 0, 0, 0.6); }
.sk-foot-message .sk-foot-message-box{ position: relative; z-index: 9; max-width: 640px; width: 100%; background-color: var(--white); padding: 20px; border-radius: 2px; overflow-y: auto; } 
.sk-foot-message .sk-foot-message-form{ margin-top: 10px; }
.sk-foot-message .sk-foot-message-title{ font-weight: 500; font-size: 24px; line-height: 30px; font-family: var(--fonts-two); color: var(--black); margin-bottom: 10px; }
.sk-foot-message .sk-foot-message-text{ font-size: 14px; color: var(--grey); line-height: 22px; }
.sk-foot-message .sk-content-message-form .sk-content-message-form-input, .sk-foot-message .sk-content-message-form .sk-content-message-form-textarea{ margin-bottom: 8px; }
.sk-foot-message .sk-content-message-form .sk-content-message-form-submit{ justify-content: center; }
.sk-foot-message .sk-foot-message-close{ display: block; position: absolute; z-index: 10; right: 1px; top: 1px; cursor: pointer; width: 36px; height: 36px; background-color: var(--grey); color: var(--white); transition: all .8s; }
.sk-foot-message .sk-foot-message-close i{ display: block; text-align: center; line-height: 36px; font-size: 22px; }
.sk-foot-message .sk-foot-message-close:hover{ background-color: var(--red); color: var(--white); border-color: var(--red); }
.sk-foot-message .sk-foot-message-flex.sk-mag-avtive{ opacity: 1; }
@media screen and (max-width: 567px) {
  .sk-foot-message .sk-foot-message-box{ max-width: 93%; padding-left: 10px; padding-right: 10px; max-height: 95%; }
	.sk-foot-message .sk-foot-message-form{ margin-top: 0; }
	.sk-foot-message .sk-content-message-form label{ font-size: 14px; line-height: 23px; font-weight: 400; }
	.sk-foot-message .sk-content-message-form .sk-content-message-form-textarea textarea{ height: 60px; }
	.sk-content-message-form .sk-content-message-form-button{ width: 100%; }
}

/* crumbs start */
.sk-banner-crumbs{ position: relative; display: block; overflow: hidden; }
.sk-banner-crumbs .sk-banner-crumbs-img{ position: relative; z-index: 8; display: block; width: 100%; height: 400px; background-size: cover; background-position: center; background-repeat: no-repeat; animation: bannerimg 2s; }
.sk-banner-crumbs .sk-banner-crumbs-text{ position: absolute; width: 100%; height: 100%; left: 0; top: 0; z-index: 9; background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); padding-top: 85px; }
.sk-banner-crumbs .sk-banner-crumbs-text .sk-main{ display: flex; justify-content: center; align-items: flex-start; flex-direction: column; gap: 10px; height: 100%; }
.sk-banner-crumbs .sk-banner-crumbs-text h1{ font-size: 30px; line-height: 36px; color: var(--white); font-family: var(--fonts-two); font-weight: 500; animation: puBanner 1s; }
.sk-banner-crumbs .sk-banner-crumbs-introduction{ font-size: 14px; line-height: 23px; color: var(--bgpro); max-width: 1000px; animation: puBanner 1s; }
.sk-page-crumb-bread{ display: flex; justify-content: flex-start; align-items: center; gap: 4px; color: var(--border); font-size: 16px; line-height: 25px; text-transform: capitalize; flex-wrap: wrap; animation: puBanner 1.1s; }
.sk-page-crumb-bread i{ font-size: 14px; }
.sk-page-crumb-bread a{ color: var(--border); }
.sk-page-crumb-bread a:hover{ color: var(--red); }
@keyframes bannerimg {
	from {transform: scale(1.2);}
	to {transform: scale(1);}
}

@keyframes puBanner {
	from {
			transform: translateY(100px);
			opacity: 0
	}

	to {
			transform: translateY(0);
			opacity: 1
	}
}

.sk-location-crumbs{ background-color: var(--bgpro); }
.sk-location-crumbs-box{ display: flex; justify-content: flex-start; align-items: center; gap: 6px; padding: 15px 0; flex-wrap: wrap; animation: puBanner 1.1s; }
.sk-location-crumbs-box i{ color: var(--grey); font-size: 14px; line-height: 25px; }
.sk-location-crumbs-box a{ color: var(--grey); font-size: 14px; line-height: 25px; font-weight: 400; text-transform: capitalize; transition: all .8s; }
.sk-location-crumbs-box a:hover{ color: var(--red); }

@media screen and (max-width: 1024px) {
	.sk-banner-crumbs .sk-banner-crumbs-img{ height: 300px;  }
	.sk-banner-crumbs .sk-banner-crumbs-text{ padding-top: 70px; }
}
@media screen and (max-width: 768px) {
	.sk-banner-crumbs .sk-banner-crumbs-text .sk-main{ gap: 5px; }
	.sk-banner-crumbs .sk-banner-crumbs-text h1{ font-size: 28px; line-height: 32px; }
	.sk-page-crumb-bread{ font-size: 14px; }
}
@media screen and (max-width: 576px) {
	.sk-banner-crumbs .sk-banner-crumbs-img{ height: 250px;  }
	.sk-banner-crumbs .sk-banner-crumbs-text h1{ font-size: 24px; line-height: 28px; }
	.sk-page-crumb-bread{ font-size: 14px; }
	.sk-location-crumbs-box{ padding: 12px 0; gap: 4px; }
	.sk-location-crumbs-box a,.sk-location-crumbs-box i{ font-size: 12px; line-height: 23px; }
}
/* crumbs end */

/* right start */
.sk-content-left-box {
  margin-bottom: 25px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(107, 107, 107, 0.1);
}

.sk-content-left-sticky{ display: block; }
.sk-content-sticky{
	position: sticky;
	top: 110px;
	z-index: 12;
}

.sk-content-left-box-title {
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  color: var(--white);
	font-family: var(--fonts-two);
	padding: 15px;
	background-color: var(--green);
}

.sk-content-left-box-nav {
  display: block;
	padding: 10px 0;
}

.sk-expmenu-item{
	display: block;
}

.sk-expmenu-item .sk-expmenu-dt {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
	gap: 6px;
	transition: all .6s;
	padding: 10px 15px;
}
.sk-expmenu-item~.sk-expmenu-item { border-top: 1px solid var(--border); }

.sk-expmenu-item .sk-expmenu-dt a {
  transition: all .6s;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 400;
  color: var(--grey);
	flex: 1;
	gap: 5px;
}

.sk-expmenu-item .sk-expmenu-dt a .iconfont {
  height: 23px;
  font-size: 14px;
  flex-shrink: 0;
}

.sk-expmenu-item .sk-expmenu-dt span{ display: block; flex-shrink: 0; width: 25px; height: 22px; line-height: 22px; text-align: center; cursor: pointer; color: var(--grey); }
.sk-expmenu-item .sk-expmenu-dt span i{ display: block; font-size: 14px; }
.sk-expmenu-child{ display: none; }
.sk-expmenu-child-li{ transition: all .8s; border-top: 1px solid var(--border); }
.sk-expmenu-child-li a{ font-size: 14px; line-height: 20px; display: flex; font-weight: 400; color: var(--grey); justify-content: flex-start; align-items: flex-start; gap: 5px; padding: 10px 15px 10px 25px; transition: all .6s; }
.sk-expmenu-child-li a i{ font-size: 14px; flex-shrink: 0; }
.sk-expmenu-item .sk-expmenu-dt:hover,.sk-expmenu-child-li:hover{ background-color: var(--bgpro); }
.sk-expmenu-item .sk-expmenu-dt:hover a, .sk-expmenu-item .sk-expmenu-dt:hover span{ color: var(--red); }
.sk-expmenu-child-li:hover a{ color: var(--red); }

.sk-content-left-box .sk-content-message-form{ padding: 20px 15px; }

.sk-content-left-box-nav .sk-expmenu-item:last-child {
  margin-bottom: 0;
}

.sk-content-left-news{ display: block; padding: 10px 15px; }

.sk-content-left-news-item {
  transition: all .6s;
	padding: 10px 0;
}

.sk-content-left-news-item~.sk-content-left-news-item{ border-top: 1px solid var(--border); }

.sk-content-left-news-item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all .6s;
	gap: 8px;
}

.sk-content-left-news-item .sk-content-left-news-img {
  flex-shrink: 0;
  width: 100px;
  height: auto;
  overflow: hidden;
}

.sk-content-left-news-item .sk-content-left-news-img img {
  display: block;
  width: 100%;
  height: auto;
}

.sk-content-left-news-item .sk-content-left-news-info {
  display: flex;
	justify-content: flex-start;
	align-items: center;
	flex: 1;
}

.sk-content-left-news-item .sk-content-left-news-info p {
  transition: all .8s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  font-size: 16px;
  color: var(--black);
}

.sk-content-left-news-item a:hover .sk-content-left-news-info p {
  color: var(--red);
}

.sk-content-left-news-item:last-child {
  margin-bottom: 0;
}

/* contact start */
.sk-content-inquiry{ display: block; margin: auto; background-color: var(--white); padding: 40px; }

.sk-content-contact-box{ display: flex; flex-direction: column; gap: 20px; padding-right: 40px; }

.sk-content-contact-list{ display: block; }
.sk-content-contact-box h3{ font-size: 24px; line-height: 32px; color: var(--black); font-weight: 500; font-family: var(--fonts-two); }
.sk-content-contact-box h3::after{ content: ''; margin-top: 5px; width: 60px; height: 3px; background-color: var(--red); display: block; }

.sk-content-contact-list .sk-content-contact-item{
  display: flex;
	justify-content: flex-start;
	gap: 8px;
	margin-bottom: 12px;
}
.sk-content-contact-list .sk-content-contact-item-icon{ width: auto; height: 25px; flex-shrink: 0; display: flex; justify-content: center; align-items: center; }
.sk-content-contact-list .sk-content-contact-item-icon i{
	font-size: 14px;
  line-height: 25px;
	color: var(--black-grey);
	font-weight: 400;
}

.sk-content-contact-item-title{ display: flex; justify-content: flex-start; flex-direction: column; gap: 2px; }

.sk-content-contact-list .sk-content-contact-item span {
  font-size: 14px;
	font-weight: 400;
  color: var(--black-grey);
	text-align: left;
	font-family: var(--fonts-two);
	line-height: 25px;
	text-transform: capitalize;
}

.sk-content-contact-list .sk-content-contact-item span::after {
	content: ":";
	margin-left: 3px;
}

.sk-content-contact-item p a,
.sk-content-contact-item p {
  font-size: 16px;
	line-height: 24px;
  font-weight: 400;
	color: var(--black);
}

.sk-content-contact-item p a:hover {
  color: var(--red);
}

.sk-content-contact-inquiry{ border-left: 1px solid var(--border); padding-left: 40px; }

.sk-content-map{ width: 100%; display: block; margin-top: 60px; }
.sk-content-map iframe{ width: 100%; height: 500px; display: block; border: 0; margin: 0; padding: 0; }

/* content start */
.sk-content {
  display: block;
  position: relative;
}

.sk-content-white{
  background-color: var(--blue-white);
}

.sk-content-main {
  padding: 80px 0;
}
/* content end */

/* about start */
.sk-content-about {
	display: block;
}

.sk-content-about-img {
  float: right;
  max-width: 600px;
  padding: 0 0 15px 15px;
}

.sk-content-about-img img {
  display: block;
  width: 100%;
  height: auto;
}

.sk-about-photo{ background-color: var(--bgpro); }

.sk-index-padding{ padding: 80px 0; }
.sk-about-honor.sk-index-padding{ padding-bottom: 0px; }
.sk-inquiry-bg{ background-position: center; background-size: cover; background-repeat: no-repeat; padding: 40px; z-index: 1; position: relative; }
.sk-inquiry-bg::after{ content: ''; position: absolute; top: 0; left: 0; z-index: -1; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.9); }
/* about end */

/* download */
.sk-list-download-item{ border: 1px solid var(--border); margin-bottom: 25px; overflow: hidden; }
.sk-list-download-link{ display: flex; justify-content: space-between; padding: 10px; gap: 10px }
.sk-list-download-item-img{ width: 130px; flex-shrink: 0; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.sk-list-download-item-img img{ width: 100%; height: auto; display: block; }
.sk-list-download-item-box{ flex: 1; display: flex; justify-content: space-around; align-items: flex-start; flex-direction: column; gap: 10px; }
.sk-list-download-item-title{ font-size: 16px; font-weight: 400; line-height: 24px; color: var(--grey); }
.sk-list-download-item-more{ display: flex; justify-content: flex-start; align-items: center; gap: 5px; color: var(--white); transition: all .8s; padding: 5px 20px; border-radius: 30px; background-color: var(--black-grey); }
.sk-list-download-item-more i{ font-size: 12px; }
.sk-list-download-item-more span{ font-size: 12px; line-height: 22px; font-weight: 400;}
.sk-list-download-link:hover .sk-list-download-item-more{ background-color: var(--red); }

/* images start */
.sk-list-images-box {
  display: block;
}

.sk-list-images-box a {
  display: block;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
	cursor: pointer;
}

.sk-list-images-box a img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 8;
}
.sk-list-images-box a .sk-list-images-i{ position: absolute; z-index: 9; width: 100%; height: 100%; transition: all .8s; display: flex; justify-content: center; align-items: center; left: 0; top: 0; opacity: 0; background-color: rgba(0, 0, 0, 0.4); }
.sk-list-images-box a i{ display: block; font-size: 28px; font-weight: 400; width: 42px; height: 42px; transition: all .6s; text-align: center; line-height: 42px; color: var(--white); overflow: hidden; }
.sk-list-images-box a:hover .sk-list-images-i{ opacity: 1; }
.sk-list-images-box p{ font-size: 14px; text-align: center; line-height: 23px; padding: 8px 0 5px; }
/* images end */

/* page start */
.sk-content-page-box {
  display: block;
}

.sk-content-page-main {
  font-size: 16px;
  line-height: 1.8;
}

.sk-content-page-main img {
  max-width: 100%;
  height: auto !important;
}

.sk-content-page-main iframe,.sk-content-page-main video {
	max-width: 100% !important;
	display: block;
}
/* page end */

/* faqs */
.sk-list-faqs{ margin: auto; }
.sk-list-faqs-item{ display: block; border: 1px solid var(--border); margin-bottom: 12px; overflow: hidden; }
.sk-list-faqs-item-title{ color: var(--grey); display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 13px 10px; cursor: pointer; transition: all .6s; }
.sk-list-faqs-item-title span{ font-size: 16px; line-height: 24px; font-weight: 400; }
.sk-list-faqs-item-title i{ font-size: 16px; line-height: 23px; flex-shrink: 0; }
.sk-list-faqs-item-text{ padding: 15px 10px; line-height: 24px; font-size: 14px; font-weight: 400; color: var(--grey); background-color: var(--bgpro); display: none; }
.sk-list-faqs-item.active .sk-list-faqs-item-title,.sk-list-faqs-item:hover .sk-list-faqs-item-title{ color: var(--white); background-color: var(--red); }

/* news start */
.sk-list-box {
  display: block;
}

.sk-list-news-item {
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 8%);
  border-radius: 0px;
  border: 1px solid var(--border);
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}

.sk-list-news-item-link{ display: block; }

.sk-list-news-item-img {
  display: block;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
	aspect-ratio: 16 / 9;
}

.sk-list-news-item-img img {
  display: block;
  width: 100%;
  height: 100%;
	object-fit: cover;
}

.sk-list-news-item-info {
  display: block;
  padding: 15px;
}

.sk-list-news-item-sortname {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-transform: capitalize;
  color: var(--light-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
}

.sk-list-news-item-sortname i {
  color: var(--light-gray);
  margin-right: 7px;
  font-size: 14px;
}

.sk-list-news-item-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all .8s;
  color: var(--black);
	font-size: 18px;
  line-height: 26px;
	font-weight: 400;
}

.sk-list-news-item-desc {
  margin-top: 15px;
  color: var(--black-grey);
  font-size: 14px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sk-list-news-item-more {
  font-size: 14px;
  color: var(--green);
  position: relative;
  padding-bottom: 5px;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid var(--red);
  padding: 6px 15px;
  background-color: transparent;
	margin-top: 20px;
}

.sk-list-news-item-more span {
  position: relative;
  z-index: 3;
}

.sk-list-news-item-more .iconfont {
  margin-left: 3px;
  font-size: 14px;
}

.sk-list-news-item-more::after {
  content: '';
  position: absolute;
  background: currentcolor;
  width: 2%;
  height: 1px;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  transition: all 0.5s linear;
  -webkit-transition: all 0.4s linear;
  background: var(--red);
}

.sk-list-news-item:hover .sk-list-news-item-more::after {
  background: var(--red);
	
  width: 100%;
}

.sk-list-news-item:hover .sk-list-news-item-more {
  color: var(--white);
}

.sk-list-news-item:hover .sk-list-news-item-title a{
  color: var(--red);
}

/* show start */
.sk-content-show {
  display: block;
	margin-bottom: 70px;
}

.sk-content-show .sk-content-show-title {
  font-size: 24px;
  line-height: 32px;
  color: var(--black);
  font-weight: 500;
}

.sk-content-show .sk-content-show-resource {
  line-height: 25px;
  display: flex;
  justify-content: flex-start;
  padding-block-end: 8px;
  padding-block-start: 15px;
  border-bottom: 1px solid var(--border);
	gap: 8px;
}

.sk-content-show .sk-content-show-resource i {
  font-size: 14px;
  color: var(--light-gray);
}

.sk-content-show .sk-content-show-resource span {
  font-size: 14px;
  color: var(--light-gray);
  font-weight: 400;
}

.sk-content-show-description{
	background-color: var(--bgpro);
	margin-top: 20px;
	padding: 15px 12px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	color: var(--grey);
}

.sk-content-show .sk-content-page-main {
  padding: 25px 0;
}

.sk-content-show-prenext {
  display: block;
}

.sk-content-show-prenext p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
	border-radius: 2px;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  padding: 10px 12px;
	border: 1px solid var(--border);
}

/* video show */
.sk-player {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

/* video list start */
.sk-playvideo-list{ display: block; margin-bottom: 30px; overflow: hidden; transition: all .5s ease-in; }
.sk-playvideo-list-link{ position: relative; display: block; }
.sk-playvideo-list-img{ position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.sk-playvideo-list-img img{ width: 100%; height: 100%; display: block; position: relative; z-index: 8; object-fit: cover; }
.sk-playvideo-list-img .sk-playvideo-list-icon{ position: absolute; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; overflow: hidden; top: 0; left: 0; z-index: 9; transition: all .5s ease-in; }
.sk-playvideo-list-img .sk-playvideo-list-icon i{ display: flex; justify-content: center; align-items: center; width: 70px; height: 70px; border-radius: 50%; opacity: 0; line-height: 30px; text-align: center; font-size: 25px; border: 3px solid var(--white); color: var(--white); transition: all 0.5s ease-in-out; margin-bottom: 20%; }
.sk-playvideo-list-link:hover .sk-playvideo-list-img .sk-playvideo-list-icon{ background-color: rgba(255, 255, 255, .3); }
.sk-playvideo-list-link:hover .sk-playvideo-list-img .sk-playvideo-list-icon i{ margin-bottom: 0; opacity: 1; color: var(--red); border-color: var(--red); background-color: var(--white); }
.sk-playvideo-list-info{ padding: 12px 10px 0; }
.sk-playvideo-list-title{ font-size: 14px; font-weight: 400; color: var(--grey);  line-height: 24px; overflow: hidden; text-align: center; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; transition: all .5s; }
.sk-playvideo-list:hover .sk-playvideo-list-title{ color: var(--red); }

/* product list item */
.sk-product-item {
  margin-bottom: 25px;
  border: 1px solid var(--border);
  background-color: var(--white);
  overflow: hidden;
  transition: all .8s;
	transition: all .6s;
}

.sk-product-item .sk-product-link{
	position: relative;
  display: block;
	padding: 5px;
}

.sk-product-item .sk-product-img{
  transition: all .5s;
  overflow: hidden;
	display: block;
	aspect-ratio: 1/1;
	position: relative;
}

.sk-product-item .sk-product-img img {
  width: 100%;
  height: 100%;
  display: block;
	object-fit: contain;
}

.sk-product-item .sk-product-photo{
	position: relative;
	overflow: hidden;
	display: block;
	aspect-ratio: 1/1;
}

.sk-product-item .sk-product-photo-img{
	transition: all .4s;
  overflow: hidden;
	display: block;
	aspect-ratio: 1/1;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .5s;
}

.sk-product-item .sk-product-photo-img img{
	width: 100%;
  height: 100%;
  display: block;
	object-fit: contain;
}

.sk-product-item .sk-product-photo-0{ opacity: 1; }
.sk-product-item .sk-product-photo-1{ opacity: 0; }

.sk-product-item:hover .sk-product-photo-0{ opacity: 0; }
.sk-product-item:hover .sk-product-photo-1{ opacity: 1; }

.sk-product-item .sk-product-title {
  padding: 10px;
}

.sk-product-item .sk-product-title h3 {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  line-height: 22px;
  color: var(--black);
  transition: all .6s;
	font-weight: 400;
	margin-bottom: 15px;
}

.sk-product-item:hover .sk-product-title h3 {
  color: var(--red);
}

.sk-product-item .sk-product-title-link {
  max-width: 80%;
  line-height: 36px;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  border: 1px solid var(--green);
	background-color: var(--green);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  transition: all .6s;
  border-radius: 5px;
	gap: 8px;
}

.sk-product-item .sk-product-title-link i {
	font-size: 12px;
}

.sk-product-item:hover .sk-product-title-link {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.sk-product-item:hover {
	box-shadow: 0 0 10px 2px rgba(134, 134, 134, 0.2);
}

/* product list */
.sk-content-page-content {
  padding: 60px 0;
  text-align: center;
  color: var(--black-grey);
  font-size: 16px;
  line-height: 30px;
}

/* product images start */
.sk-product-intro{ display: block; padding: 50px 0 0; }

.product-view .product-image {
  position: relative;
  padding: 0px;
  border: 1px solid var(--border);
  background-color: var(--white);
}

.product-view .product-image img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

.image-additional {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.image-additional ul {
  position: relative;
  width: 100%;
}

.image-additional li {
  position: relative;
  width: 100%;
}

.image-additional li a{
	width: 100%;
	display: block;
	background-color: var(--white);
	border: 1px solid var(--border);
	aspect-ratio: 1;
	transition: all .4s;
}

.image-additional li img {
  position: relative;
  width: 100%;
	height: 100%;
	object-fit: contain;
  display: block;
}

.image-additional li a {
  position: relative;
  display: block;
}

.image-additional li.current a,
.image-additional li:hover a{
  border-color: var(--red);
  background-color: var(--white);
}

.image-additional li.single,
.image-additional img.popup {
  display: none;
}

.image-additional .owl-carousel .owl-nav .owl-prev,
.image-additional .owl-carousel .owl-nav .owl-next {
  position: absolute;
  margin: 0;
  padding: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: unset;
  border: 0;
  background-color: unset;
  text-align: center;
  line-height: 20px;
  color: var(--light-gray);
  font-size: 24px;
  top: calc((100% - 20px)/2);
  z-index: 10;
}

.image-additional .owl-carousel .owl-nav .owl-prev {
  left: 0px;
}

.image-additional .owl-carousel .owl-nav .owl-next {
  right: 0px;
}

.image-additional .owl-carousel .owl-nav .owl-prev:hover,
.image-additional .owl-carousel .owl-nav .owl-next:hover {
  color: var(--red);
}

/* product images end */
.sk-products-title {
  font-size: 24px;
  line-height: 30px;
  color: var(--black);
  font-weight: 500;
	border-bottom: 1px solid var(--border);
	padding-bottom: 8px;
}

.sk-advantages-box {
	margin: 12px 0;
}

.sk-advantages-box .sk-advantages-li {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: var(--grey);
}

.sk-product-con {
  display: flex;
  justify-content: flex-start;
  align-items: center;
	flex-wrap: wrap;
  gap: 12px;
	padding-top: 10px;
}

.sk-product-con .sk-product-con-link {
  border: 1px solid var(--green);
  padding: 7px 15px;
	min-width: 130px;
  font-weight: 400;
  color: var(--black);
	font-family: var(--fonts-two);
  border-radius: 3px;
  font-size: 16px;
	line-height: 23px;
	text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
	gap: 8px;
}

.sk-product-con .sk-product-con-link:nth-child(2){ border-color: var(--green); color: var(--white); background-color: var(--green); }

.sk-product-con .sk-product-con-link:hover {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* product show */
.sk-product-tab {
  margin-bottom: 30px;
  background-color: var(--white);
}

.sk-product-tab-maincell {
  padding: 20px 15px;
	border: 1px solid var(--border);
}

.sk-product-tab-titcell {
  display: flex;
  justify-content: flex-start;
  background-color: var(--green);
}

.sk-product-tab-titcell .sk-product-tab-titcell-dost {
	padding: 10px 12px;
  font-size: 16px;
  line-height: 28px;
  color: var(--white);
  cursor: pointer;
  transition: all .8s;
}

.sk-product-tab-titcell .sk-product-tab-titcell-dost:hover,
.sk-product-tab-titcell .sk-product-tab-titcell-dost.on {
  color: var(--white);
	background-color: var(--red);
}

.sk-related-list {
  margin-top: 60px;
}

.sk-related-list .sk-list-news-item{ margin-bottom: 0px; }

.sk-related-list .sk-pages-title {
  margin-bottom: 20px;
	border-bottom: 2px solid var(--green);
}
.sk-related-list .sk-pages-title span{ padding: 10px 15px; font-size: 18px; line-height: 28px; display: inline-block; font-family: var(--fonts-two); color: var(--white); font-weight: 400; text-transform: capitalize; background-color: var(--green); }
.sk-product-show .sk-content-show{
  display: block;
}

/* banner start */
.sk-index-slide {
  position: relative;
  display: block;
}

.sk-index-slide .sk-index-slide-box {
  position: unset;
}

.sk-index-slide .sk-index-slide-box,
.sk-index-slide .owl-carousel .owl-stage-outer,
.sk-index-slide .owl-carousel .owl-stage-outer .owl-stage,
.sk-index-slide .owl-carousel.owl-drag .owl-item {
  height: 100%;
}

.sk-index-slide-item{ height: 100%; position: relative; overflow: hidden; }
.sk-index-slide-item .sk-index-slide-item-img{ position: relative; z-index: 8; width: 100%; height: 100%; overflow: hidden; transform: scale(1.1); transition: all 3s ease-in-out; }
.sk-index-slide-item .sk-index-slide-item-img a{ display: block; height: 100%; }
.sk-index-slide-item .sk-index-slide-item-img img{ display: block; height: 100%; width: 100%; object-fit: cover; }
.sk-index-slide-box .owl-item.active .sk-index-slide-item-img{ transform: scale(1); }

/* 定义动画 */
@keyframes slideZoom {
  0%, 100% {
    transform: scale(1); /* 初始状态和结束状态的缩放比例 */
  }
  50% {
    transform: scale(1.2); /* 放大状态的缩放比例 */
  }
}

.sk-index-slide .sk-index-slide-box .owl-nav {
  position: absolute;
  left: 0;
  top: calc((100% - 48px) / 2);
  margin: auto;
  width: 100%;
  height: auto;
  z-index: 20;
}

.sk-index-slide .sk-index-slide-box .owl-nav .owl-prev,
.sk-index-slide .sk-index-slide-box .owl-nav .owl-next {
  margin: 0 auto;
  width: 48px;
  height: 48px;
  line-height: 48px;
  outline: none;
  position: absolute;
  left: 35px;
  opacity: .8;
  background-color: rgb(255, 255, 255, .5);
  border: 0;
  border-radius: 0;
  transition: all .8s;
  color: var(--black);
}

.sk-index-slide .sk-index-slide-box .owl-nav .owl-next {
  right: 35px;
  left: unset;
}

.sk-index-slide .owl-nav .owl-prev::after,
.sk-index-slide .owl-nav .owl-next::after {
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 30px;
  content: "\f104";
  font-family: 'FontAwesome';
}

.sk-index-slide .owl-nav .owl-next::after {
  content: "\f105";
}

.sk-index-slide .sk-index-slide-box .owl-nav .owl-prev span,
.sk-index-slide .sk-index-slide-box .owl-nav .owl-next span {
  display: none;
}

.sk-index-slide .sk-index-slide-box .owl-nav .owl-prev:hover,
.sk-index-slide .sk-index-slide-box .owl-nav .owl-next:hover {
  background-color: var(--red);
  opacity: 1;
  color: var(--white);
}

.sk-index-slide .sk-index-slide-box .owl-dots {
  position: absolute;
  z-index: 19;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot {
  margin: 0 3px;
  border-radius: 50%;
  transition: all .6s;
  border: 1px solid transparent;
  overflow: hidden;
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot span {
  margin: 0;
  width: 8px;
  height: 8px;
  background-color: var(--white);
  margin: 4px;
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot.active,
.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot:hover {
  border: 1px solid var(--red);
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot.active span,
.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot:hover span {
  background-color: var(--red);
}

/* company */
.sk-index-company{ position: relative; padding: 80px 0; background-repeat: no-repeat; background-position: bottom center; }
.sk-index-company-box{ position: relative; }
.sk-index-company-img{ width: 100%; display: block; position: relative; z-index: 2; padding: 0 25px 25px 0; }
.sk-index-company-img::after{ content: ''; position: absolute; right: 0px; bottom: 0px; width: 50%; height: 50%; display: block; background-color: var(--green); z-index: 1; }
.sk-index-company-img img{ width: 100%; height: auto; display: block; position: relative; z-index: 2; }
.sk-index-company-info{ display: grid; align-content: center; justify-content: start; padding-right: 60px; gap: 30px; }
.sk-index-company-info-title{ font-size: 42px; line-height: 48px; color: var(--black); font-family: var(--fonts-two); margin-bottom: 20px; font-weight: 600; display: flex; justify-content: flex-start; gap: 12px; align-items: center; }
.sk-index-company-info-title::before{ content: ''; display: block; width: 40px; height: 3px; background-color: var(--red); }
.sk-index-company-info-desc{ font-size: 24px; color: var(--green); font-weight: 500; line-height: 36px; margin-bottom: 20px; text-transform: capitalize; }
.sk-index-company-info-text{ font-size: 16px; line-height: 28px; color: var(--black-grey); font-weight: 400; }
.sk-index-company-info-link{ display: flex; justify-content: flex-start; }
.sk-index-company-info-link a{ font-size: 18px; font-size: 400; color: var(--white); transition: all .8s; line-height: 25px; border-radius: 50px; background-color: var(--green); border: 1px solid var(--green); padding: 12px 30px; }
.sk-index-company-info-link a:hover{ border-color: var(--white); background-color: var(--red); color: var(--white); }

.sk-index-num-box{ display: block; border-top: 1px solid var(--border); padding-top: 40px; }
.sk-index-num-item{ display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 30px 0; transition: all .5s ease-in-out; }
.sk-index-num-icon{ display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.sk-index-num-icon i{ font-size: 68px; line-height: 72px; display: block; color: var(--green); }
.sk-index-num-item-info{ flex: 1; }
.sk-index-num-title{ display: flex; justify-content: flex-start; align-items: flex-end; gap: 10px; }
.sk-index-num-title span{ display: block; font-size: 54px; line-height: 54px; font-weight: 600; color: var(--black); font-family: var(--fonts-two); }
.sk-index-num-title p{ font-size: 18px; line-height: 23px; font-weight: 400; color: var(--black-grey); }
.sk-index-num-text{ font-size: 16px; line-height: 25px; font-weight: 400; line-height: 25px; color: var(--grey); }

/* index title*/
.sk-index-title {
  margin-bottom: 25px;
}

.sk-index-title .sk-index-title-item { display: flex; justify-content: center; align-items: center; gap: 12px; position: relative; overflow: hidden; }
.sk-index-title .sk-index-title-item span { position: relative; display: block; font-family: var(--fonts-two); text-align: center; font-size: 36px; line-height: 42px; font-weight: 600; text-transform: capitalize; color: var(--black); }
.sk-index-title .sk-index-title-text { display: block; max-width: 1100px; font-size: 14px; font-weight: 400; line-height: 24px; text-align: center; color: var(--black-grey); margin: 8px auto 0; }

/* type */
.sk-index-type{ padding: 80px 0; background-color: var(--bgpro); }
.sk-index-type-box{ display: flex; justify-content: space-between; gap: 30px; }
.sk-index-type-item{ display: block; position: relative; flex: 1; overflow: hidden; }
.sk-index-type-item-img{ display: block; width: 100%; overflow: hidden; position: relative; z-index: 1; transition: all .3s; }
.sk-index-type-item-img img{ width: 100%; height: 100%; display: block; object-fit: cover; }
.sk-index-type-item-info{ display: block; position: absolute; top: 0px; left: 0px; z-index: 10; width: 100%; height: 100%; padding: 30px 20px; background-color: rgba(0, 0, 0, 0.3); transition: all .3s; }
.sk-index-type-item-title{ font-size: 30px; line-height: 36px; font-weight: 500; color: var(--white); transition: all .3s; width: 100%; font-family: var(--fonts-two); }
.sk-index-type-item-text{ font-size: 16px; line-height: 25px; font-weight: 300; color: var(--white); margin-top: 15px; }
.sk-index-type-item-btn{ display: flex; justify-content: flex-start; align-items: center; margin-top: 20px; }
.sk-index-type-item-link{ font-size: 16px; font-weight: 400; line-height: 25px; color: var(--grey); background-color: var(--white); border: 1px solid var(--green); padding: 9px 30px; transition: all .8s; border-radius: 50px; }
.sk-index-type-item .sk-index-type-item-link:hover{ color: var(--white); background-color: var(--red); border-color: var(--red); }
.sk-index-type-item:hover .sk-index-type-item-img{ filter: blur(3px); }
.sk-index-type-item:hover .sk-index-type-item-info{ background-color: rgba(0, 0, 0, 0.5); }

/* index product */
.sk-index-product {
  padding: 80px 0;
}
.sk-index-product .sk-product-item{ margin-bottom: 0; }

/* case start */
.sk-index-partner{ padding-top: 80px; }
.sk-index-partner-main {
  display: block;
  width: 100%;
  margin: auto;
  overflow: hidden;
  padding: 0;
}

.sk-index-partner-item {
  margin: 0  5px;
  float: left;
  display: block;
  width: 330px;
}

.sk-index-partner-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* advantage */
.sk-index-advantage {
  padding: 80px 0;
}

.sk-index-advantage-item {
  display: flex;
  justify-content: space-between;
}
.sk-index-advantage-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.sk-index-advantage-item-img {
  width: 50%;
  display: block;
  overflow: hidden;
}

.sk-index-advantage-item-img img {
  width: 100%;
  height: 100%;
  display: block;
	object-fit: cover;
}

.sk-index-advantage-item-info {
  width: 50%;
  background-color: var(--blue-white);
  padding: 50px 60px;
  overflow: hidden;
  flex-shrink: 0;
}

.sk-index-advantage-item-title {
  font-size: 30px;
  font-weight: 600;
	line-height: 36px;
  color: var(--green);
  margin-bottom: 20px;
}

.sk-index-advantage-item-title::after{ 
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--green);
  margin-top: 8px;
  content: "";
 }

.sk-index-advantage-item-text{ display: flex; flex-direction: column; gap: 10px; }

.sk-index-advantage-item-text p {
  font-size: 18px;
  line-height: 30px;
  color: var(--grey);
	font-weight: 300;
}

.sk-index-advantage-item-text p i {
  font-size: 14px;
	margin-right: 5px;
}

.sk-index-line{ padding: 120px 0; background-position: center; background-repeat: no-repeat; background-attachment: fixed; position: relative; z-index: 1; }
.sk-index-line::before{ content: ''; display: block; position: absolute; left: 0; top: 0; bottom: 0; right: 0; margin: auto; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: -1; }
.sk-index-line-box{ display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 30px; max-width:1000px; margin: auto; text-align: center; }
.sk-index-line-title{ font-size: 42px; line-height: 48px; color: var(--white); font-family: var(--fonts-two); font-weight: 600; }
.sk-index-line-text{ font-size: 18px; line-height: 25px; color: var(--blue-white); font-weight: 300; }
.sk-index-line-link{ display: flex; justify-content: center; align-items: center; }
.sk-index-line-link a{ font-size: 18px; line-height: 25px; font-weight: 400; color: var(--white); border-radius: 30px; display: flex; justify-content: center; gap: 10px; align-items: center; padding: 10px 30px; border: 1px solid var(--white); background-color: transparent; transition: all .8s; }
.sk-index-line-link a i{ font-size: 16px; line-height: 16px; display: block; }
.sk-index-line-link a:hover{ margin-left: 20px; background-color: var(--red); color: var(--white); border-color: var(--red); }

/* 应用场景 */
.sk-idnex-app{ padding-top: 80px; }
.sk-idnex-app-box{ display: flex; justify-content: space-between; background-color: var(--white);gap: 1px; }
.sk-idnex-app-item{ position: relative; width: 12.4%; height: 550px; transition: all .6s; }
.sk-idnex-app-item-img{ position: relative; width: 100%; height: 100%; overflow: hidden; z-index: 1; transition: all .6s; }
.sk-idnex-app-item-img img{ width: 100%; height: 100%; display: block; object-fit: cover; transition: all .6s; }
.sk-idnex-app-item-info{ position: absolute; top: 0px; left: 0px; z-index: 10; width: 100%; height: 100%; padding: 30px 20px; display: flex; justify-content: center; align-items: center; flex-direction: column; background-color: rgba(0, 0, 0, 0.5); transition: all .3s; }
.sk-idnex-app-item-icon{ margin-bottom: 15px; }
.sk-idnex-app-item-icon i{ font-size: 48px; line-height: 54px; color: var(--white); }
.sk-idnex-app-item-title{ font-size: 20px; line-height: 32px; font-weight: 500; color: var(--white); transition: all .6s; font-family: var(--fonts-two); text-align: center; }
.sk-idnex-app-item.active{ width: 38%; display: flex; justify-content: space-between; }
.sk-idnex-app-item.active .sk-idnex-app-item-info{ position: unset; width: 32%; background-color: var(--green); background-image: url('../images/bg-adv.png'); background-size: cover; background-position: center; }
.sk-idnex-app-item.active .sk-idnex-app-item-img{ width: 68%; }

/* honor start */
.sk-index-certificate {
	display: block;
}

.sk-index-honor-box {
  position: relative;
}

.sk-index-honor-box .owl-nav {
  margin: 0;
}

.sk-index-honor-box .owl-nav .owl-prev,
.sk-index-honor-box .owl-nav .owl-next {
  transition: all .8s;
  background: var(--green) !important;
  margin: 0;
  width: 40px;
  height: 60px;
  line-height: 60px;
  border-radius: 5px;
  outline: none;
  position: absolute;
  top: calc((100% - 60px)/2);
}

.sk-index-honor-box .owl-nav .owl-prev {
  left: -45px;
}

.sk-index-honor-box .owl-nav .owl-next {
  right: -45px;
}

.sk-index-honor-box .owl-nav .owl-prev:hover,
.sk-index-honor-box .owl-nav .owl-next:hover {
  background: var(--red) !important;
}

.sk-index-honor-box .owl-nav .owl-prev::after,
.sk-index-honor-box .owl-nav .owl-next::after {
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  color: var(--white);
  content: "\f104";
  font-family: 'FontAwesome';
}

.sk-index-honor-box .owl-nav .owl-next::after {
  content: "\f105";
}

.sk-index-honor-box .owl-nav .owl-prev span,
.sk-index-honor-box .owl-nav .owl-next span {
  display: none;
}

.sk-index-honor-box .owl-dots {
  padding-top: 10px;
}

.sk-index-honor-box .owl-dots .owl-dot {
  margin: 0 3px;
}

.sk-index-honor-box .owl-dots .owl-dot span {
  margin: 0;
  width: 12px;
  height: 12px;
}

.sk-index-honor-box .owl-dots .owl-dot.active span {
  background-color: var(--red);
}

/* index blog start */
.sk-index-blog {
	padding: 80px 0;
}

.sk-index-blog-box {
  padding: 10px 0 0;
}

/* index message */
.sk-index-message {
  padding: 80px 0;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
}

.sk-index-message .sk-content-message-form {
	background-color: var(--white);
	padding: 30px;
	border-radius: 3px;
}

@media screen and (max-width: 1560px) {
  .sk-main {
    width: 95%;
  }
	.sk-index-company-info-desc{ line-height: 32px; }
	.sk-index-num-title span{ font-size: 48px; }
	.sk-index-type-box{ gap: 20px; }
	.sk-index-type-item-info{ padding: 30px 15px; }
	.sk-index-advantage-item-info{ padding: 30px; }
	.sk-index-honor-box .owl-nav .owl-prev{ left: 0; }
	.sk-index-honor-box .owl-nav .owl-next{ right: 0; }
	.sk-idnex-app-item-title{ font-size: 18px; line-height: 30px; }
	.sk-idnex-app-item-info{ padding: 20px 10px; }
}


@media screen and (max-width: 1440px) {
	.sk-index-company-info-text{ font-size: 14px; line-height: 25px; }
	.sk-index-company-info-desc{ margin-bottom: 15px; }
	.sk-index-company-info-title{ font-size: 36px; line-height: 42px; margin-bottom: 15px; }
	.sk-index-company-info-desc{ font-size: 20px; }
	.sk-index-company-img{ padding: 0 20px 20px 0; }
	.sk-index-num-item{ padding: 20px 0; }
	.sk-index-advantage-item-text p{ font-size: 16px; line-height: 26px; }
}

@media screen and (max-width: 1360px) {
	.sk-content-inquiry{ padding: 25px; }
	.sk-content-contact-inquiry{ padding-left: 30px; }
	.sk-content-contact-box{ padding-right: 30px; }
	.sk-list-news-item-info{ padding: 12px 10px; }
}

@media screen and (max-width: 1200px) {
	.sk-index-company,.sk-index-type,.sk-index-product,.sk-index-advantage,.sk-index-blog,.sk-index-message,.sk-index-padding{ padding: 70px 0; }
	.sk-idnex-app,.sk-index-partner{ padding-top: 70px; }
	.sk-list-news-item-title{ font-size: 16px; }
	.sk-content-show .sk-content-show-title,.sk-products-title{ font-size: 20px; line-height: 30px; }
	.image-additional{ margin-bottom: 15px; }
	.sk-index-title .sk-index-title-item span{ font-size: 30px; line-height: 32px; }
	.sk-index-title .sk-index-title-text{ font-size: 14px; line-height: 23px; }
	.sk-index-num-box{ margin-top: 30px; }
	.sk-index-num-item{ gap: 10px; }
	.sk-index-type-item-info{ padding: 15px 10px; }
	.sk-index-type-item-title{ font-size: 24px; line-height: 32px; }
	.sk-index-type-box{ gap: 15px; }
	.sk-index-type-item-text{ font-size: 14px; }
	.sk-index-title .sk-index-title-item span{ font-weight: 500; }
	.sk-index-advantage-item-info{ padding: 20px; }
	.sk-index-advantage-item-title{ font-size: 22px; line-height: 30px; }
	.sk-index-message .sk-content-message-form{ padding: 25px; }
	.sk-inquiry-bg{ padding: 25px; }
}

@media screen and (max-width: 1024px) {
	.sk-display-pc {
    display: none !important;
  }
  .sk-display-mobile {
    display: block !important;
  }
  .sk-product-show .sk-display-pc{ display: none !important; }
  .sk-product-show .sk-display-mobile{ display: block !important; }
  .sk-content-show .sk-content-show-title {
    font-size: 20px;
    line-height: 28px;
  }
  .sk-content-main {
    padding: 60px 0;
  }
  .sk-content-contact {
    margin-bottom: 50px;
  }
  .sk-content-page-box {
    padding: 0;
    background-color: unset;
    border-radius: 0;
  }
  .sk-content-about-img {
    float: unset;
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

	.sk-index-type-box{ flex-wrap: wrap; gap: 0; justify-content: space-between; }
	.sk-index-type-item{ flex: unset; width: 49%; margin-bottom: 20px; }
	.sk-idnex-app-box{ flex-wrap: wrap; }
	.sk-idnex-app-item{ width: 33.2% !important; }
	.sk-content-left{ margin-top: 50px; }
	.sk-content-contact-inquiry{ padding-left: 0; padding-top: 30px; border-left: 0; border-top: 1px solid var(--border); }
	.sk-content-contact-box{ padding-bottom: 30px; }
	.sk-index-company-info{ padding-right: calc(var(--bs-gutter-x) * .5); padding-top: 25px; }
}
  
@media screen and (max-width: 868px) {
	.sk-product-summary {
		margin-top: 25px;
  }
	.sk-index-line{ padding: 100px 0; }
	.sk-index-line-title{ font-size: 30px; line-height: 36px; }
	.sk-content-inquiry,.sk-inquiry-bg{ padding: 20px; }
	.sk-index-advantage-item-text p{ font-size: 14px; line-height: 25px; }
	.sk-idnex-app-item.active .sk-idnex-app-item-info,.sk-idnex-app-item.active .sk-idnex-app-item-img{ width: 50%; }
	.sk-idnex-app-item-title{ font-size: 16px; line-height: 26px; }
}

@media screen and (max-width: 768px) {  
	.sk-index-company,.sk-index-type,.sk-index-product,.sk-index-advantage,.sk-index-blog,.sk-index-message,.sk-index-padding{ padding: 60px 0; }
	.sk-idnex-app,.sk-index-partner{ padding-top: 60px; }
	.sk-index-slide{ height: 500px; }
	.sk-index-slide .sk-index-slide-box,
	.sk-index-slide .owl-carousel .owl-stage-outer,
	.sk-index-slide .owl-carousel .owl-stage-outer .owl-stage,
	.sk-index-slide .owl-carousel.owl-drag .owl-item {
		height: 100%;
	}
	.sk-index-slide-item .sk-index-slide-item-img a{ height: 100%; }
	.sk-index-slide-item .sk-index-slide-item-img img{ height: 100%; width: 100%; object-fit: cover; }
	.sk-index-num-title span{ font-size: 42px; line-height: 48px; }
	.sk-index-num-text{ font-size: 14px; }
  .sk-index-title{ margin-bottom: 20px; }
	.sk-index-title .sk-index-title-item span{ font-size: 28px; line-height: 32px; }
	.sk-index-title .sk-index-title-text{ margin-top: 15px; font-size: 14px; line-height: 23px; }
	.sk-message-title .sk-message-title-item{ font-size: 22px; line-height: 30px; }
	.sk-content-show-prenext p{ padding: 8px 10px; }
  .sk-product-item{ margin-bottom: 20px; }
  .sk-content-main {
    padding: 50px 0;
  }
  .sk-pages-title { margin-bottom: 20px; }
	.sk-content-show .sk-content-show-title{ font-size: 18px; line-height: 24px; }
  .sk-list-news-item{ margin-bottom: 25px; }
  .sk-page-contact-text{ font-size: 36px; line-height: 42px; }
  .sk-page-contact-tel span, .sk-page-contact-tel a{ font-size: 32px; }
	.sk-index-faqs-item-text{ padding: 15px 5px; }
	.sk-index-faqs-item-title{ padding: 12px; }
	.sk-index-faqs-item-title span{ font-size: 14px; line-height: 23px; padding-right: 12px; }
	.sk-playvideo-list{ margin-bottom: 25px; }
	.sk-content-contact-box{ padding-right: 0px; }
	.sk-index-message .sk-index-title .sk-index-title-text{ font-size: 16px; }
	.sk-index-advantage-item{ flex-direction: column-reverse !important; margin-bottom: 20px; }
	.sk-index-advantage-item-info,.sk-index-advantage-item-img{ width: 100%; }
	.sk-idnex-app-item{ width: 49.9% !important; }
}

@media screen and (max-width: 576px) {
  .sk-index-title .sk-index-title-item span{ font-size: 24px; }
  .sk-index-title .sk-index-title-text{ font-size: 14px; line-height: 23px; }
	.sk-related-list .sk-pages-title{ margin-bottom: 25px; }
	.sk-related-list .sk-pages-title span{ font-size: 18px; width: 100%; }
	.sk-product-con{ flex-wrap: wrap; }
  .sk-product-con .sk-product-con-link{ font-size: 14px; padding: 10px 12px; }
  .sk-about-img{ padding: 0; border: 0; }
  .sk-products-title{ font-size: 18px; line-height: 26px; }
  .sk-product-tab-maincell{ border: 0; padding-inline: 0; }
  .sk-content-page-main {
    line-height: 25px;
  }
  .sk-pages-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .sk-content-contact {
    margin-bottom: 50px;
  }
  .sk-content-page-box{ padding: 0; }
	.sk-content-show .sk-content-show-title{ font-size: 18px; line-height: 26px; }
	.sk-list-images-box p{ font-size: 14px; }
	.sk-content-show-prenext p{ padding: 3px 12px; }
	.sk-content-white{ background-color: var(--white); }
	.sk-index-slide .sk-index-slide-box .owl-nav .owl-prev, .sk-index-slide .sk-index-slide-box .owl-nav .owl-next{ width: 36px; }
	.sk-content-show-description{ padding: 12px; font-size: 12px; line-height: 23px; }
	.sk-product-item .sk-product-title h3{ font-size: 14px; }
	.sk-index-line{ padding: 80px 0; }
	.sk-index-line-title{ font-size: 24px; line-height: 30px; }
	.sk-index-line-text{ font-size: 14px; line-height: 23px; }
	.sk-inquiry-bg{ padding: 20px 12px; }
	.sk-product-intro .sk-index-slide{ height: auto; }
	.sk-index-title-tow-item{ font-size: 24px; line-height: 32px; }
	.sk-index-company-info-desc{ font-size: 18px; line-height: 25px; }
	.sk-index-message .sk-index-title .sk-index-title-item span{ font-size: 30px; line-height: 42px; }
	.sk-index-message .sk-content-message-form{ padding: 20px 12px; }
	.sk-index-company-info-title{ font-size: 32px; line-height: 36px; }
	.sk-index-type-item{ width: 100%; }
	.sk-index-type-item-title{ font-size: 32px; line-height: 36px; }
	.sk-index-advantage-item-info{ padding: 20px 12px; }
	.sk-index-advantage-item-title{ font-size: 18px; line-height: 25px; }
	.sk-idnex-app-item{ width: 49.7% !important; height: 450px; margin-bottom: 1px; }
	.sk-idnex-app-box{ gap: 0px; }
	.sk-content-inquiry{ padding: 0; }
}