﻿@charset "utf-8";

/*
	CSS Document 
*/
.sk-display-pc {
  display: block !important;
}

.sk-display-mobile {
  display: none !important;
}

/* footer */
.sk-footer {
  background-color: var(--light-gray);
}
.sk-footer-box {
  padding: 70px 0 60px;
  border-bottom: 1px dashed var(--bgadv);
}

.sk-footer-logo{ display: block; }
.sk-footer-logo-img{ width: 100%; display: block; }
.sk-footer-logo-img img{ display: block; max-width: 230px; height: auto; }
.sk-footer-logo-info{  margin-top: 25px; }
.sk-footer-logo-text{ font-size: 18px; line-height: 30px; color: var(--grey); padding-right: 30px; }

.sk-footer-box-title {
  text-align: left;
  color: var(--black);
  font-size: 24px;
  line-height: 32px;
  font-family: var(--fonts-three);
  font-weight: 700;
  margin-bottom: 15px;
}
.sk-footer-box-contact {
  display: block;
}
.sk-footer-box-contact-box {
  margin-bottom: 15px;
}
.sk-footer-box-contact-box p{
  color: var(--grey);
  font-size: 17px;
  line-height: 30px;
}

.sk-footer-box-contact-box a{ max-width: 280px; border: 1px solid var(--red); display: flex; justify-content: flex-start; align-items: center; background-color: var(--white); font-size: 16px; font-weight: 700; font-family: var(--fonts-tow); padding: 8px 12px; border-radius: 30px; } 

.sk-footer-box-contact-box i{
  display: block;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  margin-right: 3px;
  font-size: 18px;
}

.sk-footer-box-contact-box a:hover {
  color: var(--white);
  background-color: var(--black);
  border-color: var(--black);
}
.sk-footer-box-follow {
  display: block;
}
.sk-footer-box-follow-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.sk-footer-box-follow-box a {
  display: block;
  margin: 0 8px 8px 0;
  width: 36px;
  height: 36px;
  transition: all .6s;
}

.sk-footer-box-follow-box img {
  width: 100%;
  height: auto;
  display: block;
}

.sk-footer-box-follow-box a:hover {
  transform: rotate(25deg);
}
.sk-footer-box-nav{ margin-block-end: 20px; }

.sk-footer-box-nav-box{ display: block; display: flex; justify-content: flex-start; flex-wrap: wrap; }
.sk-footer-box-nav-box li{ margin-block-end: 5px; width: 50%; }
.sk-footer-box-nav-box li a{
  font-size: 16px;
  color: var(--black);
  transition: all 0.8s;
  text-transform: capitalize;
}
.sk-footer-box-nav-box li a:hover{ color: var(--red); }

/* copyright */
.sk-footer-copyright {
  padding: 20px 0;
}

.sk-footer-copyright-text{
  color: var(--black);
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  text-align: left;
}

.sk-footer-copyright-text a {
  color: var(--black);
}
.sk-footer-copyright-text a:hover {
  color: var(--red);
  text-decoration: underline;
}

.sk-footer-copyright-nav{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sk-footer-copyright-nav a{ font-size: 16px; color: var(--black); font-weight: 300; line-height: 30px; }
.sk-footer-copyright-nav i{ font-size: 24px; line-height: 30px; color: var(--red); margin: 0 5px; }
.sk-footer-copyright-nav a:hover{ color: var(--red); text-decoration: underline; }

/* 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;
}

.sk-meau-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0;
  z-index: -2;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  animation-name: shadow-blink;
  -webkit-animation-name: shadow-blink;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.sk-meau-top,
.sk-meau-top::after {
  background: var(--red);
}

/*Animation*/
@-webkit-keyframes shadow-blink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.7);
    -webkit-transform: scale(1.7);
    -ms-transform: scale(1.7);
    -o-transform: scale(1.7);
  }
}

@keyframes shadow-blink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.7);
    -webkit-transform: scale(1.7);
    -ms-transform: scale(1.7);
    -o-transform: scale(1.7);
  }
}
@media screen and (max-width: 1024px) {
  .sk-footer-logo,.sk-footer-box-contact,.sk-footer-box-follow{ margin-bottom: 30px; }
  .sk-footer-box {
    padding: 40px 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .sk-footer-box {
    padding: 40px 0;
  }
  .sk-footer-logo-info{ margin-top: 20px; }
  .sk-footer-copyright-text {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }
  .sk-footer-copyright-nav{ justify-content: center; padding-top: 10px; }
  .sk-footer-copyright-nav a{ font-size: 14px; }
}
@media screen and (max-width: 576px) {
  .sk-footer-box-nav-box li{ width: 100%; }
  .sk-footer-copyright-nav i {
    margin: 0;
  }
  .sk-footer-copyright-nav a{ font-size: 12px; }
  .sk-footer-logo-text{ font-size: 16px; line-height: 25px; padding-right: 0; }
  .sk-footer-box-contact-box p{ font-size: 16px; line-height: 25px; }
}
/* footer end */

/* header start */
.sk-header {
  display: block;
  margin: auto;
  width: 100%;
  background-color: var(--light-gray);
  padding: 12px 0 20px 0;
}

.sk-header-top{ padding-bottom: 12px; }
.sk-header-top-left{ display: flex; justify-content: flex-start; align-items: center; }
.sk-header-top-left .sk-header-top-left-box{ margin-right: 18px; }
.sk-header-top-left .sk-header-top-left-box a{ display: flex; justify-content: flex-start; align-items: center; font-size: 16px; font-weight: 500; }
.sk-header-top-left .sk-header-top-left-box a i{ font-size: 18px; margin-right: 3px; }
.sk-header-top-right{ display: flex; justify-content: flex-end; align-items: center; }
.sk-header-follow{ display: flex; justify-content: flex-start; }
.sk-header-follow a{ width: 25px; height: auto; display: block; margin-right: 5px; transition: all .8s; }
.sk-header-follow a img{ width: 100%; height: auto; display: block; }
.sk-header-follow a:hover{ transform: rotate(25deg); }

.sk-header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .3s;
  background-color: var(--white);
  border-radius: 25px;
  padding: 5px 20px;
  border: 1px solid var(--red-tow);
}

.sk-header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sk-header-logo {
  display: block;
  flex-shrink: 0;
  padding: 5px 10px 5px 0;
}

.sk-header-logo a {
  display: block;
}
.sk-header-logo img {
  display: block;
  max-height: 70px;
  max-width: 280px;
}

.sk-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.sk-header-search-item {
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin: auto;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .8s;
  text-align: center;
  color: var(--black); 
  background-color: var(--light-gray);
  border-radius: 50%;
}

.sk-header-search-item .iconfont {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.sk-header-search-item:hover {
  color: var(--white);
  background-color: var(--black);
}

.sk-header-right-line {
  display: block;
  width: 1px;
  height: 22px;
  background-color: var(--orange);
  margin: 0 10px;
}
/* search start */
.sk-header-search {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
.sk-header-search-box {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sk-header-search-box form {
  width: 640px;
  display: block;
  position: relative;
}

.sk-search-title {
  font-family: var(--fonts-three);
  font-size: 24px;
  color: var(--white);
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sk-search-group {
  width: 100%;
  display: block;
  position: relative;
}

.sk-search-group .sk-search-control {
  display: block;
  border: 0px solid var(--border);
  border-bottom: 1px solid var(--white);
  background-color: transparent;
  outline: none;
  padding: 0 60px 0 5px;
  height: 54px;
  position: relative;
  width: 100%;
  z-index: 9;
  transition: all .8s;
  color: var(--white);
}

.sk-search-group .sk-search-btn {
  border: 0px solid var(--border);
  background: unset;
  width: 54px;
  height: 54px;
  color: var(--white);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  transition: all .8s;
}

.sk-search-group .sk-search-btn:hover {
  color: var(--red);
}

.sk-search-group .sk-search-btn span {
  font-size: 20px;
}

.sk-search-group .sk-search-control:focus {
  border-color: var(--light-gray);
}

.sk-header-search-close {
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: block;
  position: absolute;
  top: -50px;
  right: -50px;
  cursor: pointer;
  color: var(--white);
  transition: all .8s;
}

.sk-header-search-close i {
  display: block;
  text-align: center;
  font-size: 30px;
}

.sk-header-search-close:hover {
  color: var(--red);
}

/* navigation */
.sk-navigation-box {
  display: flex;
  justify-content: center;
}

.sk-navigation-box .sk-navigation-li {
  position: relative;
}

.sk-navigation-box .sk-navigation-link {
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
  padding: 0 15px;
  display: flex;
  justify-content: center;
  line-height: 80px;
  text-transform: capitalize;
}

.sk-navigation-box .sk-navigation-link .iconfont {
  padding-left: 3px;
  font-size: 14px;
  font-weight: 800;
}

.sk-navigation-box .sk-navigation-sub {
  display: block;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 1000;
  padding: 12px;
  border-radius: 8px;
  background-color: var(--white);
  border: 1px solid var(--red-tow);
  box-shadow: 0 1px 5px var(--border);
  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;
}
.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-li {
  position: relative;
  border-bottom: 1px solid var(--bgadv);
  display: block;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link {
  padding: 10px 0px;
  color: var(--black);
  font-weight: 400;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link i {
  font-size: 14px;
}
.sk-navigation-child {
  left: 224px;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0 0 0;
  transition: all 0.4s ease 0s;
  border-radius: 8px;
  background-color: var(--white);
  border: 1px solid var(--red-tow);
  box-shadow: 0 1px 5px var(--border);
  z-index: 999;
  padding: 10px;
  visibility: hidden;
  text-align: left;
  width: 250px;
  background: var(--white);
  transition: .3s ease;
  overflow-y: auto;
}

.sk-navigation-child .sk-navigation-child-li {
  display: block;
  padding: 0;
  position: relative;
  border-bottom: 1px solid var(--bgadv);
}

.sk-navigation-child .sk-navigation-child-link {
  color: var(--black);
  padding: 10px 0px;
  text-transform: capitalize;
  font-size: 14px;
  overflow: hidden;
  display: block;
  font-weight: 400;
  transition: all .5s;
}

.sk-navigation-box .sk-navigation-link.active,
.sk-navigation-child .sk-navigation-child-link:hover,
.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link:hover,
.sk-navigation-box .sk-navigation-li:hover .sk-navigation-link {
  color: var(--red);
}

.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-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  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;
  padding: 10px;
  background-color: var(--light-gray);
}
.sk-mobile-header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  border: 1px solid var(--red-tow);
  background-color: var(--white);
  border-radius: 15px;
}

.sk-mobile-header-logo {
  display: block;
}

.sk-mobile-header-logo img {
  max-height: 45px;
  max-width: 200px;
  display: block;
}
.sk-mobile-header-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sk-mobile-header-right .sk-header-search-item {
  margin-right: 10px;
}

.sk-mobile-header-right .language-flag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.sk-mobile-header-right .language-flag span {
  font-size: 15px;
  text-transform: uppercase;
  font-family: var(--fonts-three);
  font-weight: 500;
}

.sk-mobile-caidan {
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  overflow: hidden;
  border-radius: 50%;
  border: 0px solid var(--black);
  color: var(--black);
  background-color: var(--light-gray);
  outline: none;
  cursor: pointer;
  margin-right: 12px;
  transition: all .8s;
}

.sk-mobile-caidan .iconfont {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.sk-mobile-caidan:hover{ color: var(--white); background-color: var(--black); }

.sk-header-colse {
  display: block;
  width: 36px;
  height: 36px;
  background-color: var(--red);
  color: var(--white);
  position: absolute;
  left: -37px;
  top: 1px;
  cursor: pointer;
}

.sk-header-colse .iconfont {
  display: block;
  text-align: center;
  line-height: 36px;
}
.sk-mobile-nav {
  position: fixed;
  width: 80%;
  height: 100vh;
  top: 0px;
  right: -90%;
  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.4s ease 0s;
}

.sk-mobile-nav-box {
  overflow-y: auto;
  max-height: 100%;
  padding: 10px 0px 20px;
}

.sk-mobile-nav-box .sk-mobile-nav-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-link {
  padding: 0 12px;
  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-weight: 500;
}

.sk-mobile-nav-box .sk-mobile-nav-sub-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-sub-link {
  padding: 0 12px 0 15px;
  color: var(--grey);
  line-height: 42px;
  font-size: 15px;
  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 span{ display: flex; justify-content: flex-start; line-height: 36px; }

.sk-mobile-nav-box .sk-mobile-nav-child-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-child-link {
  color: var(--grey);
  padding: 0 12px 0 25px;
  line-height: 42px;
  font-size: 14px;
  text-transform: capitalize;
  border-bottom: 1px dashed var(--border);
  display: block;
  font-weight: 300;
}
.sk-mobile-nav-box .sk-mobile-nav-link.active,
.sk-mobile-nav-box .sk-mobile-nav-link:hover,
.sk-mobile-nav-box .sk-mobile-nav-sub-link:hover,
.sk-mobile-nav-box .sk-mobile-nav-child-link:hover {
  color: var(--red);
}

/* mobile lang */
.sk-mobile-lang {
  position: fixed;
  width: 60%;
  height: 100vh;
  top: 0px;
  right: -90%;
  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.4s ease 0s;
}

.sk-mobile-lang-box {
  overflow-y: auto;
  max-height: 100%;
  padding: 10px 0px 20px;
}

.sk-mobile-lang-box .language-flag {
  border-bottom: 1px solid var(--border);
}

.sk-mobile-lang-box .language-flag a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 10px;
}

.sk-mobile-lang-box .language-flag a span {
  font-size: 14px;
  margin-left: 5px;
}

.sk-mobile-block {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
  right: 0;
}

.sk-mobile-fixed {
  width: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 101;
  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 / 10%);
}

@media screen and (max-width: 1200px) {
  .sk-navigation-box .sk-navigation-link {
    font-size: 14px;
    padding: 10px 8px;
    line-height: 50px;
  }
  .sk-navigation-box .sk-navigation-link .iconfont {
    padding-left: 3px;
  }
}

@media screen and (max-width: 1024px) {
  .sk-header {
    display: none;
  }

  .sk-mobile-header {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .sk-header-search-box form {
    width: 92%;
  }
  .sk-header-search-close{ right: 0; }
  .sk-mobile-header-logo img{ max-width: 150px; }
  .sk-mobile-caidan,.sk-header-search-item{ width: 36px; height: 36px; line-height: 36px; margin-right: 10px; }
  .sk-mobile-caidan .iconfont,.sk-header-search-item .iconfont{ font-size: 16px; }
}
/* header end */

/* crumbs start */
.sk-page-crumb{ position: relative; }
.sk-page-crumb img{ width: 100%; display: block; height: auto; position: relative; z-index: 8; }
.sk-page-crumb-box{ display: grid; justify-items: center; align-content: center; position: absolute; height: 100%; width: 100%; z-index: 9; top: 0; left: 0; background-color: rgba(74, 45, 76, 0.6); }
.sk-page-crumb-box h3{ font-size: 36px; font-family: var(--fonts-three); text-transform: uppercase; text-align: center; line-height: 42px; font-weight: 700; margin-bottom: 15px; color: var(--white); }
.sk-page-crumb-box p{ color: var(--white); font-size: 16px; line-height: 25px; text-transform: capitalize; display: flex; justify-content: center; align-items: center; }
.sk-page-crumb-box p i{ font-size: 14px; }
.sk-page-crumb-box p a{ color: var(--white); margin: 0 3px; }
.sk-page-crumb-box p a:hover{ color: var(--red); }
/* crumbs end */

/* content start */
.sk-content {
  display: block;
}

.sk-content-main {
  padding: 70px 0;
}
/* content end */

/* right start */
.sk-content-left-box {
  margin-bottom: 30px;
  padding: 0px;
  position: relative;
}

.sk-content-left-box-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 5px;
  position: relative;
  padding: 16px 10px 16px 15px;
  color: var(--white);
  font-family: var(--fonts-three);
  border-left: 6px solid var(--red);
  background-color: var(--grey);
}

.sk-content-left-search {
  width: 100%;
  position: relative;
}

.sk-content-left-search .sk-content-left-search-control {
  width: 100%;
  height: 55px;
  border: 1px solid var(--black);
  outline: none;
  padding: 5px 55px 5px 10px;
  transition: all .8s;
}

.sk-content-left-search .sk-content-left-search-btn {
  line-height: 42px;
  position: absolute;
  border-left: none;
  height: 40px;
  top: 7px;
  right: 7px;
  width: 40px;
  padding: 0;
  border: 0;
  background: var(--black);
  transition: all .8s;
}
.sk-content-left-search .sk-content-left-search-control:focus{ border-color: var(--red); }
.sk-content-left-search .sk-content-left-search-btn:hover{ background-color: var(--red); }

.sk-content-left-search .sk-content-left-search-btn .iconfont {
  font-size: 20px;
  color: var(--white);
}
.sk-content-left-box-nav {
  display: block;
}
.sk-expmenu-item{ margin-bottom: 5px; }

.sk-expmenu-item .sk-expmenu-dt {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: var(--white);
  padding: 5px 0px;
}

.sk-expmenu-item .sk-expmenu-dt a {
  transition: all .8s;
  font-size: 16px;
  line-height: 28px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 400;
}

.sk-expmenu-item .sk-expmenu-dt a .iconfont {
  height: 28px;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 5px;
}

.sk-expmenu-item .sk-expmenu-dt span{ display: block; flex-shrink: 0; width: 28px; height: 28px; line-height: 28px; text-align: center; cursor: pointer; }
.sk-expmenu-item .sk-expmenu-dt span i{ display: block; font-size: 16px; }
.sk-expmenu-child{ background-color: var(--white); padding: 5px 8px; border-top: 1px solid var(--border); display: none; }
.sk-expmenu-child-li{ border-bottom: 1px solid var(--border); }
.sk-expmenu-child-li a{ font-size: 12px; line-height: 25px; display: flex; justify-content: flex-start; align-items: flex-start; padding: 6px 0; transition: all .8s; }
.sk-expmenu-child-li a i{ font-size: 12px; flex-shrink: 0; margin-right: 5px; }
.sk-expmenu-child-li:hover a{ color: var(--red); }
.sk-expmenu-item:hover .sk-expmenu-dt a, .sk-expmenu-item:hover .sk-expmenu-dt span{ color: var(--red); }

.sk-content-left-box-nav .sk-expmenu-item:last-child {
  margin-bottom: 0;
}
.sk-content-left-news,.sk-content-left-box-product{ padding: 10px 0px; }

.sk-content-left-news-item {
  margin-bottom: 15px;
  background-color: var(--white);
  border: 1px solid var(--red-tow);
  padding: 5px;
  border-radius: 5px;
}

.sk-content-left-news-item a {
  display: block;
}

.sk-content-left-news-item .sk-content-left-news-img {
  float: left;
  margin-right: 10px;
  border-radius: 1px;
  flex-shrink: 0;
  width: 70px;
  height: auto;
  overflow: hidden;
}

.sk-content-left-news-item .sk-content-left-news-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.sk-content-left-news-item .sk-content-left-news-info {
  display: block;
  width: calc(100% - 80px);
  float: left;
}

.sk-content-left-news-item .sk-content-left-news-info p {
  transition: all .8s;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
  line-height: 23px;
  font-size: 16px;
  color: var(--black);
}

.sk-content-left-news-item .sk-content-left-news-info .iconfont {
  font-size: 12px;
}

.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;
}

/* page start */
.sk-content-page-box {
  margin-bottom: 25px;
}

.sk-content-page-main {
  font-size: 16px;
  line-height: 28px;
}

.sk-content-page-main img {
  max-width: 100%;
  height: auto !important;
}
/* page end */

/* about start */
.sk-content-about {
  margin-bottom: 0px;
}

.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;
}
/* about end */

/* images start */
.sk-list-images-box {
  margin-top: 10px;
  margin-bottom: 10px;
}

.sk-list-images-box a {
  display: block;
  border: 1px solid var(--border);
  position: relative;
}

.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.6); }
.sk-list-images-box a i{ display: block; font-size: 42px; width: 42px; height: 42px; text-align: center; line-height: 42px; color: var(--white); }
.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: 25px; padding-top: 5px; }
/* images end */

/* page title */
.sk-pages-title {
  display: block;
  color: var(--black);
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  text-transform: capitalize;
  font-family: var(--fonts-three);
}

.sk-pages-title i {
  font-size: 24px;
}

/* contact start */
.sk-content-contact {
  display: block;
  margin-bottom: 60px;
}
.sk-contact-list{ margin-bottom: 20px; padding: 25px; border: 1px solid var(--red-tow); border-radius: 25px; height: 100%; transition: all .8s; }
.sk-contact-list-icon{ display: flex; justify-content: flex-start; }
.sk-contact-list-icon i{
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: block;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  position: relative;
  text-align: center;
  width: 50px;
  transition: all .8s;
}
.sk-contact-list-title{
  font-size: 32px;
  color: var(--black);
  line-height: 36px;
  font-weight: 600;
  font-family: var(--fonts-three);
  margin-block-start: 25px;
}
.sk-contact-list-box{ padding-block-start: 15px; }
.sk-contact-list-box p~p{ margin-block-start: 5px; }
.sk-contact-list-box a,
.sk-contact-list-box span{
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
}
.sk-contact-list-box a:hover {
  color: var(--red);
}
.sk-contact-list:hover{ border-color: var(--black); }
.sk-contact-list:hover .sk-contact-list-icon i{ background-color: var(--red); }

/* contact end */
.sk-content-map{ width: 100%; height: 100%; display: block; }
.sk-content-map iframe{ width: 100%; height: 100%; display: block; border: 0; margin: 0; padding: 0; }

/* message start */
.sk-content-message .sk-pages-title{ margin-bottom: 20px; font-size: 30px; }
.sk-content-message {
  display: block;
}

.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: 20px;
}

.sk-content-message-form label {
  font-size: 18px;
  color: var(--red);
  line-height: 30px;
  font-family: var(--fonts-three);
  font-weight: 600;
  padding-left: 15px;
  margin-bottom: 3px;
}

.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(--red-tow);
  outline: none;
  background-color: var(--white);
  font-size: 14px;
  padding: 10px 15px;
  transition: all .8s;
  border-radius: 30px;
}

.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: flex-start;
  padding-top: 10px;
}

.sk-content-message-form .sk-content-message-form-button {
  width: auto;
  transition: all .8s;
  border: 1px solid var(--grey);
  background: var(--grey);
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  padding: 6px 42px;
  border-radius: 30px;
  font-family: var(--fonts-three);
  font-weight: 600;
}

.sk-content-message-form .sk-content-message-form-button:hover {
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
}

/* message end */

/* video list start */
.sk-playvideo-list{ display: block; margin-bottom: 25px; border: 1px solid var(--red-tow); padding: 12px; border-radius: 5px; box-shadow: 0px 0px 5px rgba(255, 242, 240, 0.3); transition: all .8s; }
.sk-playvideo-list-link{ position: relative; display: block; }
.sk-playvideo-list-img{ position: relative; overflow: hidden; border: 1px solid var(--border); }
.sk-playvideo-list-img img{ width: 100%; height: auto; display: block; position: relative; z-index: 8; }
.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; background-color: rgba(0, 0, 0, .3); transition: all .5s; opacity: 0; }
.sk-playvideo-list-img:hover .sk-playvideo-list-icon{ opacity: 1; }
.sk-playvideo-list-img .sk-playvideo-list-icon i{ display: block; width: 54px; height: 54px; line-height: 54px; text-align: center; font-size: 48px; color: var(--white); font-weight: 300; transform: scale(0); transition: transform 0.5s ease-in-out; }
.sk-playvideo-list-img:hover .sk-playvideo-list-icon i{ transform: scale(1); }
.sk-playvideo-list-title{ font-size: 18px; text-align: center; line-height: 30px; padding: 8px 8px 0; text-overflow: ellipsis; transition: all .6s; white-space: nowrap; overflow: hidden; display: block; font-weight: 400; }
.sk-playvideo-list:hover .sk-playvideo-list-title{ color: var(--red); }

.sk-video-list {
  display: block;
  overflow: hidden;
  margin-bottom: 25px;
  transition: all 0.8s ease-in-out 0s;
  -moz-transition: all 0.8s ease-in-out 0s;
  -webkit-transition: all 0.8s ease-in-out 0s;
  -o-transition: all 0.8s ease-in-out 0s;
  -ms-transition: all 0.8s ease-in-out 0s;
  border: 1px solid var(--red-tow);
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(255, 242, 240, 0.3);
}

.sk-video-list .sk-video-list-img {
  display: block;
  border: 1px solid var(--border);
}

.sk-video-list .sk-video-list-img a {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.sk-video-list .sk-video-list-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sk-video-list .sk-video-list-title {
  display: block;
  padding: 8px 8px 0;
}

.sk-video-list .sk-video-list-title a {
  font-size: 18px;
  transition: all .6s;
  display: block;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.sk-video-list:hover .sk-video-list-title a {
  color: var(--red);
}

.sk-video-list-more {
  position: relative;
  background-color: transparent;
  display: block;
  margin: 15px auto 0;
  width: 180px;
  overflow: hidden;
  transition: all .8s;
  color: var(--black);
}

.sk-video-list-more span {
  font-size: 14px;
  padding: 8px 0;
  text-align: center;
  display: block;
  position: relative;
  z-index: 9;
}

.sk-video-list-more .iconfont {
  margin-left: 3px;
  font-size: 15px;
}

.sk-video-list-more::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s linear;
  -webkit-transition: all 0.4s linear;
  background: var(--grey);
}

.sk-video-list:hover .sk-video-list-more::after {
  background: var(--red);
  width: 100%;
}

.sk-video-list:hover .sk-video-list-more {
  color: var(--black);
  width: 80%;
}

/* show start */
.sk-content-show {
  display: block;
}

.sk-content-show .sk-content-show-title {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 20px;
  color: var(--black);
  font-weight: 600;
  font-family: var(--fonts-three);
}

.sk-content-show .sk-content-show-resource {
  padding: 8px 10px;
  line-height: 25px;
  background-color: var(--light-gray);
  border-radius: 1px;
  display: flex;
  justify-content: flex-start;
  font-weight: 400;
}

.sk-content-show .sk-content-show-resource i {
  font-size: 14px;
  color: var(--grey);
}

.sk-content-show .sk-content-show-resource span {
  font-size: 14px;
  color: var(--grey);
  margin-left: 8px;
}

.sk-content-show .sk-content-page-main {
  padding: 30px 0;
}

.sk-content-show-prenext {
  display: block;
}

.sk-content-show-prenext p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  padding: 8px 12px;
  border-radius: 15px;
  border: 1px solid var(--red-tow);
}

.sk-content-show-prenext p~p {
  margin-block-start: 12px;
}

/* video show */
.sk-player {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.sk-content-inquiry{ background-color: var(--bgpro); margin-block-start: 60px; padding: 30px; border-radius: 30px; }

/* news start */
.sk-list-box {
  display: block;
}

.sk-list-news-item {
  overflow: unset;
  margin-bottom: 36px;
  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;
  position: relative;
}

.sk-list-news-item-img {
  position: relative;
  display: block;
  z-index: 50;
}

.sk-list-news-item-img a {
  display: block;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--black);
  border-radius: 30px;
  transition: all .8s;
}

.sk-list-news-item-img img {
  display: block;
  width: 100%;
  height: auto;
}

.sk-list-news-item-info {
  display: block;
  background-color: var(--light-gray);
  border-radius: 30px;
  padding-inline-start: 80px;
  padding-inline-end: 30px;
  padding-block: 40px;
  margin-block-start: 50px;
  position: relative;
  z-index: 48;
  width: 110%;
  left: -10%;
}

.sk-list-news-item-sortname {
  padding: 0 0 12px 0px;
  line-height: 25px;
  color: var(--black);
  font-size: 16px;
  opacity: .6;
}
.sk-list-news-item-sortname i{ font-size: 16px; }

.sk-list-news-item-title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: var(--black);
  font-family: var(--fonts-three);
}

.sk-list-news-item-title a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all .8s;
}

.sk-list-news-item-desc {
  margin-block-start: 20px;
  padding: 0px;
  color: var(--black);
  font-size: 16px;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sk-list-news-more {
  display: flex;
  justify-content: flex-start;
  margin-top: 25px;
}

.sk-list-news-more a {
  font-size: 16px;
  color: var(--white);
  border: 1px solid var(--black);
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 30px;
  line-height: 32px;
  border-radius: 30px;
  transition: all .8s;
}
.sk-list-news-item .sk-list-news-more a:hover{
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.sk-list-news-more .iconfont {
  margin-left: 5px;
  font-size: 16px;
}

.sk-list-news-item:hover .sk-list-news-item-title a {
  color: var(--red);
}

.sk-list-news-item:hover .sk-list-news-item-img a{ box-shadow: 10px 10px 0 var(--red); }

/* product list item */
.sk-list-product-title {
  padding: 10px 15px;
  display: block;
  color: var(--black);
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  font-family: var(--fonts-three);
  background-color: var(--bgpro);
  border-left: 5px solid var(--red);
}

.sk-index-category-item{ margin-bottom: 25px; transition: all .3s linear; border: 1px solid var(--red-tow); border-radius: 10px; overflow: hidden; }
.sk-index-category-item .sk-index-category-link{
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  display: block;
}
.sk-index-category-item .sk-index-category-item-box{ position: relative; z-index: 9; }
.sk-index-category-item .sk-index-category-img{ overflow: hidden; display: block; aspect-ratio: 1; }
.sk-index-category-item .sk-index-category-img img{ display: block; width: 100%; height: auto; }
.sk-index-category-item .sk-index-category-title{ padding: 10px 15px 20px; text-align: center; font-size: 18px; color: var(--black); text-overflow: ellipsis; white-space: nowrap; display: block; overflow: hidden; }
.sk-index-category-item .sk-index-category-view{ display: block; transition: all .8s; position: absolute; width: 100%; height: 100%; top: 0; right: 0; z-index: 10; opacity: 0; background-color: rgba(255,242,240,.7); }
.sk-index-category-item .sk-index-category-view-box{ display: grid; justify-items: center; align-content: center; height: 100%; width: 100%; transform: translateY(-30%); transition: all .3s; }
.sk-index-category-item .sk-index-category-view i{ display: block; text-align: center; color: var(--black); font-size: 36px; line-height: 38px; }
.sk-index-category-item .sk-index-category-view span{ font-size: 20px; text-align: center; line-height: 30px; color: var(--black); text-transform: uppercase; font-family: var(--fonts-three); font-weight: 500; }
.sk-index-category-item:hover .sk-index-category-view{ opacity: 1; }
.sk-index-category-item:hover .sk-index-category-view-box{ transform: translateY(0%); }
.sk-index-category-item:hover .sk-index-category-title{ color: var(--red); }
.sk-index-category-item:hover { border-color: var(--light-gray); }

.sk-product-item {
  margin-bottom: 25px;
  overflow: hidden;
  transition: all .8s;
  border: 1px solid var(--border);
  background-color: var(--white);
  border-radius: 5px;
}

.sk-content-left-box-product .sk-product-item:last-child {
  margin-bottom: 0;
}

.sk-product-item .sk-product-img {
  transition: all .4s;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--border);
}
.sk-product-item .sk-product-img-link{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.sk-product-item .sk-product-img img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 7;
}

.sk-product-item:hover .sk-product-img img {
  opacity: .8;
}

.sk-product-item .sk-product-title {
  padding: 10px;
  margin-bottom: 5px;
}

.sk-product-item .sk-product-title a {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 23px;
  color: var(--black);
  transition: all .6s;
  font-weight: 400;
}

.sk-product-item:hover .sk-product-title a {
  color: var(--red);
}

.sk-product-more{ padding-bottom: 20px; }
.sk-product-more a{
  width: 180px;
  padding: 5px 10px;
  font-size: 12px;
  color: var(--white);
  border: 1px solid var(--grey);
  background-color: var(--grey);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  transition: all .6s;
  border-radius: 30px;
}
.sk-product-item .sk-product-more i {
  margin-left: 6px;
}

.sk-product-item:hover .sk-product-more a {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.sk-product-item:hover { box-shadow: 0 4px 10px 0 rgba(0,0,0,.08),0 1px 4px 0 rgba(0,0,0,.04); }

/* product list */
.sk-content-page-content {
  padding: 60px 0;
  text-align: center;
  color: var(--grey);
  font-size: 16px;
  line-height: 30px;
}

/* product images start */
.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;
}

.product-view .image-additional {
  position: relative;
  width: 100%;
  margin: 12px 0;
}

.product-view .image-additional ul {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.product-view .image-additional li {
  position: relative;
  width: 100%;
  margin: 0 23px 0 0;
  padding: 1px;
}

.product-view .image-additional li img {
  position: relative;
  width: 100%;
  border: 1px solid var(--border);
  background-color: var(--grey);
  display: block;
  transition: all .8s;
}

.product-view .image-additional li a {
  position: relative;
  display: block;
  padding: 0 .18rem;
}

.product-view .image-additional li.current img,
.product-view .image-additional li:hover img {
  border-color: var(--red);
  outline: 0px solid var(--red);
  background-color: var(--white);
}

.product-view .image-additional li.single,
.product-view .image-additional img.popup {
  display: none;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-prev,
.product-view .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: 14px;
  color: var(--black);
  font-size: 28px;
  top: 40%;
  z-index: 10;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-prev {
  left: -25px;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-next {
  right: -25px;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-prev:hover,
.product-view .image-additional .owl-carousel .owl-nav .owl-next:hover {
  color: var(--red);
}

/* product images end */
.sk-products-title {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--black);
  font-family: var(--fonts-three);
  font-weight: 600;
}

.sk-product-parameter {
  margin-bottom: 20px;
  border-top: 1px solid var(--grey);
  padding: 12px 0 0;
}

.sk-product-parameter .sk-products-price {
  font-size: 24px;
  color: var(--grey);
  line-height: 42px;
}

.sk-product-parameter .sk-product-meta-item {
  line-height: 28px;
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
}
.sk-advantages-box {
  padding: 12px;
  border: 1px solid var(--red-tow);
  margin-top: 15px;
  border-radius: 12px;
}

.sk-advantages-box .sk-advantages-li {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}

.sk-product-con {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sk-product-con .sk-product-con-link {
  background-color: var(--black);
  padding: 15px 30px;
  font-weight: 400;
  border-radius: 5px;
  color: var(--white);
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48%;
}

.sk-product-con .sk-product-con-link:hover {
  background-color: var(--red);
  color: var(--white);
}

.sk-product-con .sk-product-con-link i {
  margin-right: 10px;
  font-size: 16px;
}

/* product show */
.sk-product-show {
  padding: 42px 0 20px;
}

.sk-product-tab {
  margin-block: 40px;
  background-color: var(--white);
}

.sk-product-tab-maincell {
  padding: 15px;
  border: 1px solid var(--red-tow);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.sk-product-tab-titcell {
  display: flex;
  justify-content: flex-start;
  background-color: var(--red-tow);
}

.sk-product-tab-titcell .sk-product-tab-titcell-dost {
  font-size: 16px;
  line-height: 28px;
  color: var(--white);
  cursor: pointer;
  font-weight: 500;
  font-family: var(--fonts-three);
  transition: all .8s;
  padding: 10px 10px;
}

.sk-product-tab-titcell .sk-product-tab-titcell-dost:hover,
.sk-product-tab-titcell .sk-product-tab-titcell-dost.on {
  background-color: var(--black);
}

.sk-product-inquiry {
  padding: 30px !important;
  background-color: var(--bgpro);
  margin-block-end: 40px;
  border-radius: 20px;
}
.sk-product-inquiry .sk-content-message .sk-pages-title{ background-color: unset; }

/* product related */
.sk-related-list {
  padding-top: 40px;
}

.sk-related-list .sk-pages-title {
  margin-bottom: 15px;
  background-color: var(--bgpro);
  text-transform: capitalize;
}
.sk-related-list .sk-pages-title span{ background-color: var(--bgpro); padding: 5px 15px; font-size: 18px; display: inline-block; color: var(--black); border-left: 5px solid var(--red); }
.sk-related-list .sk-list-news-item-info{ padding-block: 30px; padding-inline-start: 60px }
/* product end */

/* banner start */
.sk-index-slide {
  position: relative;
  display: block;
}

.sk-index-slide .sk-index-slide-box {
  flex: 1;
  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 .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: rgba(246, 246, 246, 0.5);
  border: 0;
  border-radius: 3px;
  transition: all .8s;
  color: var(--white);
}

.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);
}

/*  index title */
.sk-index-title {
  margin-bottom: 36px;
}

.sk-index-title .sk-index-title-item {
  text-align: center;
  font-size: 60px;
  text-transform: capitalize;
  line-height: 64px;
  font-family: var(--fonts-three);
  font-weight: 700;
  color: var(--black);
}

.sk-index-title .sk-index-title-text {
  text-align: center;
  font-size: 20px;
  color: var(--grey);
  max-width: 960px;
  margin: auto;
  line-height: 30px;
  font-style: italic;
  font-weight: 400;
  margin-top: 15px;
}

.sk-index-link{
  border: 1px solid var(--black);
  color: var(--white);
  background-color: var(--black);
  display: block;
  text-align: center;
  padding: 15px 0px;
  margin: auto;
  border-radius: 30px;
  font-size: 16px;
  width: 200px;
  transition: all .8s;
}
.sk-index-link i{ font-size: 14px; }
.sk-index-link:hover{
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* button */
.sk-index-button {
  padding-top: 20px;
}

.sk-mb-index{ margin-bottom: 80px; }

/* index product */
.sk-index-product {
  display: block;
  padding: 80px 0px 0;
}

.sk-whoose{ padding-block: 80px; background-color: var(--light-gray); }
.sk-whoose-img{ width: 100%; display: block; }
.sk-whoose-img img{ display: block; width: 100%; height: auto; }
.sk-whoose-title{
  font-size: 54px;
  text-transform: capitalize;
  line-height: 54px;
  font-family: var(--fonts-three);
  font-weight: 700;
  color: var(--black);
}
.sk-whoose-info{ display: block; display: grid;
  row-gap: 30;
  row-gap: 30;
  background: var(--white);
  padding: 50px;
  border: 1px solid var(--bgpro);
  border-radius: 15px;
  box-shadow: 0 10px 20px -10px #fdcdc9; }
.sk-whoose-info-list{ display: flex; justify-content: flex-start; align-items: flex-start; margin-block-start: 25px; }
.sk-whoose-info-img{ width: 60px; height: auto; display: block; flex-shrink: 0; padding-block-start: 10px; }
.sk-whoose-info-img img{ width: 100%; height: auto; display: block; animation: imganim 4s infinite; }
.sk-whoose-info-text{ padding-inline-start: 20px; }
.sk-whoose-info-text .sk-whoose-info-title{ font-size: 24px; font-family: var(--fonts-three); font-weight: 600; }
.sk-whoose-info-text .sk-whoose-info-desc{ font-size: 16px; line-height: 28px; color: var(--grey); }

/* index about */
.sk-index-company {
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}

.sk-index-company::before{
  content: '';
  background: var(--light-gray);
  width: 140.42%;
  height: 85.65%;
  position: absolute;
  transform: rotate(15deg);
  left: -71%;
  transition: all .36s;
  bottom: calc(-22% - calc(12%* var(--total1)));
}
.sk-index-company::after{
  content: '';
  width: 89.6875%;
  background: var(--light-gray);
  height: 85.65%;
  transform: rotate(-21.861deg);
  position: absolute;
  right: -45%;
  transition: all .36s;
  bottom: calc(-18% - calc(10%* var(--total1)));
}

.sk-index-company .sk-main{ position: relative; z-index: 6; }

.sk-index-company-img {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.sk-index-company-img img {
  display: block;
  width: 100%;
  height: auto;
}

.sk-index-company-info{
  display: block;
  padding: 10px 0 80px 0;
  position: relative;
  z-index: 6;
}
.sk-index-company-info-title{
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  color:var(--red);
  font-family: var(--fonts-three);
}

.sk-index-company-info-desc{ font-size: 24px; font-weight: 400; line-height: 32px; color: var(--black); margin-top: 15px; }
.sk-index-company-info-text{
  font-size: 16px;
  line-height: 25px;
  display: block;
  color: var(--grey);
  margin: 12px 0 25px;
  font-weight: 300;
}

.sk-index-company-link{
  display: flex;
  justify-content: flex-start;
}
.sk-index-company-link .sk-index-link{ margin:unset; border-radius: 35px; }

.sk-index-company-list{
  margin-top: 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.60);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -ms-backdrop-filter: blur(12px);
  -moz-backdrop-filter: blur(12px);
  -o-backdrop-filter: blur(12px);
  padding: 20px 20px;
  display: flex;
  width: 900px;
  position: relative;
  z-index: 6;
  justify-content: space-around;
}
.sk-index-company-item{
  position: relative;
  width: 25%;
  text-align: center;
}
.sk-index-company-item-num{
  margin-bottom: 10px;
  color: var(--grey);
  font-size: 20px;
}
.sk-index-company-item-num span{ font-size: 42px; font-weight: 700; line-height: 1.2; color: var(--red); }
.sk-index-company-item-inof{
  font-size: 18px;
  color: var(--black);
  line-height: 1.6;
}

.sk-index-company-item::before {
  content: '';
  opacity: 0.2;
  background: var(--grey);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: 1px;
}
.sk-index-company-item:last-child:before { display: none; }

/* honor start */
.sk-index-certificate {
  display: block;
}

.sk-index-honor-box {
  position: relative;
}
.sk-index-honor-item{ margin: 0; }
.sk-index-honor-item a{ border-radius: 20px; }

/* case start */
.sk-index-case {
  display: block;
  background-color: var(--light-gray);
  padding-block: 70px;
}

.sk-index-case-box {
  position: relative;
} 
.sk-index-case-item {
  overflow: hidden;
  margin: 0;
  padding-block: 10px;
  padding-inline: 10px;
  background-color: var(--white);
  border-radius: 10px;
  margin-block-end: 12px;
}
.sk-index-case-item a{ display: block; overflow: hidden; background-color: var(--red); }
.sk-index-case-item img{ display: block; width: 100%; height: auto; }
.sk-index-case-item:hover img{ opacity: .6 !important; }

/* index blog start */
.sk-indexlist-news-item {
  margin-bottom: 25px;
  padding-inline: 12px;
}

.sk-indexlist-news-item-img {
  box-shadow: 10px 10px 0 var(--black);
  border-radius: 30px;
  transition: all .8s;
}

.sk-indexlist-news-item-img a {
  display: block;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.sk-indexlist-news-item-img img {
  display: block;
  width: 100%;
  height: auto;
}

.sk-indexlist-news-item-info {
  display: block;
  padding: 8px;
  margin-block-start: 25px;
}

.sk-indexlist-news-item-title {
  margin-block: 12px;
}

.sk-indexlist-news-item-title a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: var(--black);
  transition: all .8s;
  font-family: var(--fonts-three);
}

.sk-indexlist-news-item-desc {
  margin-bottom: 20px;
  color: var(--grey);
  font-size: 16px;
    line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sk-indexlist-news-item-sortname {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sk-indexlist-news-item-time{
  color: var(--grey);
  font-size: 16px;
}

.sk-indexlist-news-item-time i {
  color: var(--grey);
  font-size: 16px;
}

.sk-indexlist-news-item-more{
  font-size: 16px;
  color: var(--white);
  border: 1px solid var(--black);
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 30px;
  line-height: 32px;
  border-radius: 30px;
  transition: all .8s;
}
.sk-indexlist-news-item-more i{
  font-size: 14px;
  margin-left: 5px;
}
.sk-indexlist-news-item-more:hover{ background-color: var(--red); color: var(--white); border-color: var(--red); }
.sk-indexlist-news-item:hover .sk-indexlist-news-item-title a{ color: var(--red); }
.sk-indexlist-news-item:hover .sk-indexlist-news-item-img{
  box-shadow: 10px 10px 0 var(--red);
}

/* choose */
.sk-index-stuff-box{ background-color: var(--light-gray); border-radius: 15px; padding: 30px; }
.sk-index-stuff-left{ display: flex; justify-content: flex-start; align-items: center; }
.sk-index-stuff-right{ border-left: 1px solid var(--bgadv); padding-inline-start: 25px; height: 100%; display: grid; align-content: center; }
.sk-index-stuff-img{ flex-shrink: 0; }
.sk-index-stuff-img img{ width: 100%; height: auto; display: block;     -webkit-animation: rotating 5s linear infinite;
  -moz-animation: rotating 5s linear infinite;
  -ms-animation: rotating 5s linear infinite;
  -o-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite; }
.sk-index-stuff-com{ padding-inline-start: 25px; }
.sk-index-stuff-h1{ font-size: 36px; font-family: var(--fonts-three); font-weight: 700; }
.sk-index-stuff-h2{ font-size: 20px; font-weight: 400; font-family: var(--fonts-tow); font-style: italic; color: var(--grey); margin-block: 5px; }
.sk-index-stuff-h3{ font-size: 18px; font-weight: 500; margin-block-end: 15px; }
.sk-index-stuff-text{ font-size: 16px; line-height: 28px; }

@keyframes rotating {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* 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 .8s; }
.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(74, 45, 76, 0.8);  }
.sk-foot-message .sk-foot-message-box{ position: relative; z-index: 9; max-width: 720px; width: 100%; background-color: var(--light-gray); padding-block: 45px 30px; padding-inline: 30px; border-radius: 15px; } 
.sk-foot-message .sk-foot-message-form{ margin-block-start: 15px; }
.sk-foot-message .sk-foot-message-title{ font-weight: 600; font-size: 30px; line-height: 32px; font-family: var(--fonts-three); color: var(--black); margin-block-end: 10px; }
.sk-foot-message .sk-foot-message-text{ font-size: 14px; color: var(--black); line-height: 25px; }
.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-block-end: 10px; }
.sk-foot-message .sk-foot-message-close{ display: block; position: absolute; z-index: 10; right: 5px; top: 5px; cursor: pointer; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--red); background-color: var(--white); color: var(--black); transition: all .8s; }
.sk-foot-message .sk-foot-message-close i{ display: block; text-align: center; line-height: 28px; }
.sk-foot-message .sk-foot-message-close:hover{ background-color: var(--black); color: var(--white); border-color: var(--black); }
.sk-foot-message .sk-foot-message-flex.sk-mag-avtive{ opacity: 1; }

/* faqs */
.sk-list-faqs{ display: block; }
.sk-list-faqs-box{ background-color: var(--light-gray); border-radius: 20px; overflow: hidden; }
.sk-list-faqs-item{ display: block; }
.sk-list-faqs-title{ font-size: 24px; font-family: var(--fonts-three); font-weight: 700; padding-block: 15px; padding-inline: 30px; cursor: pointer; transition: all .8s; }
.sk-list-faqs-title i{ font-size: 20px; font-weight: 700; margin-inline-end: 5px; }
.sk-list-faqs-info{ overflow: hidden; height: 0px; background-color: var(--bgpro); transition: all .3s; }
.sk-list-faqs-text{ padding-block: 25px; padding-inline: 30px; font-size: 16px; line-height: 30px; color: var(--grey); }
/* .sk-list-faqs-title:hover{ color: var(--red); } */
/* .sk-list-faqs-item:first-child .sk-list-faqs-info{ height: auto; } */

@media screen and (max-width: 1560px) {
  .sk-main {
    width: 94%;
  }
  .sk-index-company{ padding-bottom: 0; }
  .sk-list-news-item-title{ font-size: 20px; line-height: 26px; }
  .sk-list-news-item-sortname{ padding: 8px 0; }
  .sk-list-news-item-desc{ line-height: 22px; }
  .sk-list-news-more{ margin-top: 10px; }
  .sk-playvideo-list,.sk-video-list{ padding: 10px; }
}
@media screen and (max-width: 1360px) {
  .sk-main {
    width: 96%;
  }
  .sk-list-news-item-title{ font-size: 18px; line-height: 28px; }
  .sk-arrow .owl-nav .owl-prev{
    left: 0;
  }
  .sk-arrow .owl-nav .owl-next{ right: 0; }
  .sk-content-page-main{ line-height: 25px; }
  .sk-mb-index{ margin-bottom: 70px; }
}
@media screen and (max-width: 1200px) {
  .sk-mb-index{ margin-bottom: 60px; }
  .sk-index-product{ padding: 60px 0 0; }
  .sk-whoose-info{ padding: 25px; }
  .sk-whoose-title{ font-size: 42px; line-height: 42px; }
  .sk-index-company-info-title{ font-size: 26px; line-height: 32px; }
  .sk-index-company-info-desc{ margin-top: 10px; }
  .sk-index-company-item-num{ font-size: 16px; }
  .sk-index-company-item-num span{ font-size: 42px; }
  .sk-index-company-item-inof{ font-size: 16px; }
  .sk-index-title{ margin-bottom: 20px; }
  .sk-index-title .sk-index-title-item{ font-size: 36px; line-height: 48px; }
  .sk-index-title .sk-index-title-text{ font-size: 14px; margin-top: 10px; }
  .sk-list-news-item-title {
    font-size: 20px;
    line-height: 25px;
  }
  .sk-list-news-item-desc {
    line-height: 22px;
  }
  .sk-list-news-item-sortname{ font-size: 12px; }
  .sk-list-news-more a{ font-size: 12px; line-height: 30px; }
  .sk-products-title{ font-size: 24px; }
  .sk-product-show .sk-content-left{ display: none !important; }
  .sk-product-show .sk-content-right{ width: 100%; }
  .sk-product-item .sk-product-title a{ font-size: 14px; }
  .sk-product-item .sk-product-title{ padding: 8px; }
}
@media screen and (max-width: 1024px) {
  .sk-index-company{ padding-top: 10px; }
  .sk-index-company-img img{ width: 100%; }
  .sk-index-company-info{ padding-bottom: 40px; }
  .sk-index-company-list{ width: 100%; padding: 10px; }
  .sk-index-company-link{ margin-bottom: 30px; }
  .sk-index-stuff-right{ padding-inline-start: 0; margin-block-start: 20px; border-left: 0; }
  .sk-product-tab-titcell .sk-product-tab-titcell-dost{ padding: 10px; }
  .sk-products-title {
    font-size: 20px;
  }
  .sk-content-show .sk-content-show-title {
    font-size: 20px;
    line-height: 30px;
  }
  .sk-content-main {
    padding: 50px 0;
  }
  .sk-content-contact {
    margin-bottom: 50px;
  }
  .sk-content-page-box {
    padding: 0;
  }
  .sk-content-about-img {
    float: unset;
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .sk-product-summary {
    margin-top: 25px;
  }
  .sk-list-news-item-info{ margin-top: 20px; width: 100%; left: 0; padding-inline: 30px; }
  .sk-list-news-item{ padding: 12px; }
  .sk-index-title .sk-index-title-item {
    font-size: 32px;
  }
  .sk-content-message{ margin-block-start: 36px; }
  .sk-content-map{ height: 500px; }
}
@media screen and (max-width: 868px) {
  .sk-index-company-info{ padding-top: 0; }
  .sk-index-company{ padding: 00px 0 60px; }
  .sk-product-tab-titcell .sk-product-tab-titcell-dost {
    font-size: 14px;
  }
  .sk-content-show .sk-content-show-title{ line-height: 32px; }
  .sk-index-company-list{ flex-wrap: wrap; }
  .sk-index-company-item{ margin: 10px 0; border: 1px solid var(--border); border-top: 0; border-bottom: 0; }
  .sk-index-company-item::before{ display: none; }
}
@media screen and (max-width: 768px) {
  .sk-display-pc {
    display: none !important;
  }

  .sk-display-mobile {
    display: block !important;
  }
  .sk-whoose-title{ font-size: 36px; line-height: 38px; }
  .sk-index-stuff-box{ padding: 20px; }
  .sk-index-case{ padding-top: 50px; }
  .sk-index-title .sk-index-title-item {
    font-size: 30px;
    line-height: 36px;
  }
  .sk-index-company-item{ width: 50%; }
  .sk-product-item .sk-product-title{ padding: 8px 5px; }
  .sk-product-item{ margin-bottom: 20px; }
  .sk-content-main {
    padding: 50px 0;
  }
  .sk-content-left {
    padding-top: 35px;
  }
  .sk-content-inquiry,.sk-product-inquiry {
    padding: 15px !important;
    border-radius: 10px;
  }
  .sk-pages-title {
    margin-bottom: 25px;
  }
  .sk-contact-list{ height: auto; }
  .sk-arrow .owl-nav .owl-prev, .sk-arrow .owl-nav .owl-next{ width: 36px; height: 36px; }
  .sk-index-case-box .owl-nav .owl-prev, .sk-index-case-box .owl-nav .owl-next{ width: 42px; }
  .sk-arrow .owl-nav .owl-prev::after, .sk-arrow .owl-nav .owl-next::after{ font-size: 16px; }
  .sk-page-crumb-box h3{ font-size: 24px; line-height: 30px; }
  .sk-foot-message .sk-foot-message-box{ max-width: 96%; padding-inline: 10px; }
}
@media screen and (max-width: 576px) {
  .sk-index-slide .sk-index-slide-box .owl-nav .owl-prev,
  .sk-index-slide .sk-index-slide-box .owl-nav .owl-next {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
  .sk-index-slide .owl-nav .owl-prev::after, .sk-index-slide .owl-nav .owl-next::after{ font-size: 20px; }
  .sk-index-slide .sk-index-slide-box .owl-nav .owl-prev{ left: 10px; }
  .sk-index-slide .sk-index-slide-box .owl-nav .owl-next{ right: 10px; }
  .sk-index-product{ padding-top: 50px; }
  .sk-mb-index{ margin-bottom: 50px; }
  .sk-index-title .sk-index-title-text{ font-size: 14px; line-height: 23px; }
  .sk-index-company{ padding-bottom: 0; }
  .sk-index-company-info-title{ font-size: 24px; }
  .sk-index-company-list{  padding: 0; }
  .sk-index-company-item{ width: 50%; margin: 0px 0; padding: 10px 0; text-align: center; border: 0; border-top: 1px solid var(--border); }
  .sk-index-company-item::before{ display: none; }
  .sk-arrow .owl-nav .owl-prev, .sk-arrow .owl-nav .owl-next{ width: 40px; height: 40px; line-height: 40px; }
  .sk-products-title{ font-size: 20px; }
  .sk-content-main {
    padding: 40px 0;
  }
  .sk-content-page-main {
    line-height: 25px;
  }
  .sk-pages-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .sk-content-show .sk-content-show-title {
    line-height: 30px;
  }
  .sk-content-contact {
    margin-bottom: 50px;
  }
  .sk-index-title .sk-index-title-item {
    font-size: 24px;
    line-height: 30px;
  }
  .sk-advantages-box .sk-advantages-li{ font-size: 14px; line-height: 22px; }
  .sk-product-tab-maincell{ padding: 12px 0px; }
  .sk-product-tab{ border: 0; }
  .sk-page-crumb-box{ justify-content: center; flex-direction: column; }
  .sk-page-crumb{ padding: 15px 0; }
  .sk-list-news-item{ padding: 8px; }
  .sk-index-stuff-left{ display: grid; }
  .sk-index-stuff-com{ padding-inline-start: 0; padding-block-start: 10px; }
  .sk-indexlist-news-item-title a{ font-size: 24px; line-height: 30px; }
}