﻿@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%;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	transition: all .6s;
	background-color: rgba(0, 0, 0, 0.7);
}

.sk-header-logo {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  padding: 15px 0;
}

.sk-header-logo a {
	max-width: 220px;
  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: 25px; }

.sk-header-search-item {
  cursor: pointer;
  flex-shrink: 0;
  text-align: center;
  transition: all .8s;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
	gap: 6px;
}

.sk-header-search-item .iconfont {
  display: block;
  font-size: 20px;
}

.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(--grey);
	padding: 50px 10px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.sk-header-search-form{
	position: relative;
	max-width: 1400px;
	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(--border);
  background-color: transparent;
  outline: none;
  padding: 0 80px 0 20px;
  height: 54px;
  position: relative;
  font-size: 14px;
  width: 100%;
  z-index: 9;
  transition: all .6s;
  color: var(--white);
	border-radius: 50px;
}

.sk-search-group .sk-search-btn {
  border: 0px solid var(--black);
  background: transparent;
  width: 52px;
  height: 52px;
  color: var(--border);
  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: 42px;
  height: 42px;
  line-height: 42px;
  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: 36px;
  font-weight: 500;
}

.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; }
.sk-header-language-flag{ width: auto; height: 21px; overflow: hidden; }
.sk-header-language-flag img{ display: block; width: 100%; height: 100%; object-fit: cover; }

.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: 5px 12px; border-radius: 3px; color: var(--black); background-color: var(--red); }
.sk-gettouch .sk-gettouch-header-btn i{ font-size: 12px; }
.sk-gettouch .sk-gettouch-header-btn span{  font-size: 12px; font-weight: 400; font-family: var(--fonts-two); }
.sk-gettouch .sk-gettouch-header-btn:hover { color: var(--black); background-color: var(--white); }

.sk-header-box {
  position: relative;
} 

.sk-header-box .sk-navigation{
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 65;
	gap: 40px;
	padding: 0 30px;
}

/* navigation */
.sk-navigation-box {
  display: flex;
  justify-content: flex-end;
  flex: 1;
	transition: all .8s;
}

.sk-navigation-box .sk-navigation-li {
  position: relative;
}

.sk-navigation-box .sk-navigation-link {
  font-size: 16px;
	text-transform: capitalize;
  color: var(--white);
  display: flex;
  justify-content: center;
	align-items: center;
  height: 100%;
  transition: all 500ms ease-in-out;
	font-family: var(--fonts-two);
	font-weight: 500;
	position: relative;
	gap: 2px;
	padding: 0 15px;
}

.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);
	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;
}

.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(--black-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;
	padding: 5px 0;
}

.sk-navigation-child .sk-navigation-child-li {
  display: block;
  padding: 0;
  position: relative;
}

.sk-navigation-child .sk-navigation-child-link {
  color: var(--black-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{
	color: var(--red) !important;
}
.sk-navigation-box .sk-navigation-li .sk-navigation-link:hover{
  color: var(--white) !important;
	background-color: var(--red);
}

.sk-navigation-child .sk-navigation-child-link:hover,
.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link:hover{
  color: var(--grey);
	background-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:hover{
	background-color: var(--white);
}
.sk-header-fixed{ position: unset; }
.sk-header-fixed .sk-header-box{
	width: 100%;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
  background-color: var(--black);
	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: 15px 0;
}
.sk-mobile-header-logo a{ display: block; max-width: 180px; }

.sk-mobile-header-logo img {
	max-width: 100%;
	max-height: 40px;
	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{ 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: 90%;
  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: 1px solid var(--border);
}

.sk-mobile-nav-box .sk-mobile-nav-li {
  display: block;
}

.sk-mobile-nav-box .sk-mobile-nav-link {
  padding: 0 10px;
  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: 500;
}
.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: 24px; text-align: center; }

.sk-mobile-block {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
  right: 0;
}

.sk-mobile-header: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; }
}
@media screen and (max-width: 1360px) {
	.sk-header-right{ gap: 10px; }
	.sk-navigation-box .sk-navigation-link{ font-size: 15px; }
}

@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(--grey);
	border-top: 6px solid var(--red);
}

.sk-footer-box {
  padding: 60px 0;
}

.sk-footer-box-logo{ display: block; margin-bottom: 20px; max-width: 300px; }
.sk-footer-box-logo img{ max-width: 100%; height: 45px; display: block; }

.sk-follow{ display: flex; justify-content: flex-end; flex-direction: column; align-items: flex-start; }
.sk-follow-title{ font-size: 22px; line-height: 25px; color: var(--white); font-family: var(--fonts-two); font-weight: 600; margin-bottom: 12px; }
.sk-follow-box{ display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 10px; }
.sk-follow-box a{ width: 32px; height: 32px; 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(15deg); }

.sk-footer-box-text{ font-size: 14px; font-weight: 400; color: var(--light-gray); line-height: 23px; padding-right: 30px; }

.sk-footer-box-title{
  color: var(--white);
  font-size: 22px;
	font-family: var(--fonts-two);
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
	text-transform: capitalize;
}

.sk-footer-box-contact,.sk-footer-box-nav{
  display: block;
	margin-bottom: 30px;
}

.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(--light-gray); font-family: var(--fonts-two); font-weight: 500; 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(--light-gray);
  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(--light-gray);
  line-height: 23px;
  font-weight: 400;
}

.sk-footer-box-contact-info a:hover {
  color: var(--white);
}

.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(--light-gray);
  transition: all .8s;
  font-weight: 400;
}

.sk-footer-box-nav-box li:hover a {
  color: var(--white);
}
.sk-footer-box-nav-box li:hover{ padding-left: 10px; }

/* copyright */
.sk-footer-copyright {
  display: block;
	padding: 18px 0;
	border-top: 1px solid var(--black-grey);
}
.sk-footer-copyright-text{ display: flex; justify-content: space-between; gap: 15px; }

.sk-footer-copyright-text-begin{
	color: var(--light-gray);
  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(--light-gray);
  transition: all .6s;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

.sk-footer-copyright-text a:hover {
  color: var(--white);
}

/* 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);
}
.sk-meau-top i{ font-size: 24px; }
.sk-meau-top:hover{ background-color: var(--red); }

@media screen and (max-width: 1200px) {
	.sk-footer-box-faceback,.sk-footer-box-nav,.sk-footer-box-contact{ margin-bottom: 30px; padding-right: 0; }
}

@media screen and (max-width: 1024px) {
	.sk-footer-box{ padding: 50px 0; }
	.sk-footer-box-text{ padding-right: 0px; }
}

@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; justify-content: center; gap: 10px; }
}

/* footer end */

/* message */
.sk-content-message {
  display: block;
}
.sk-message-title{ margin-bottom: 15px; text-align: center; }
.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: 32px;
  font-weight: 400;
}
.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: 25px;
  display: block;
  border: 0px solid var(--border);
  outline: none;
  background-color: var(--white);
  font-size: 14px;
  padding: 10px 12px;
  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 .3s;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
	line-height: 28px;
  padding: 8px 42px;
	width: 100%;
	max-width: 300px;
  font-family: var(--fonts-two);
	text-transform: capitalize;
  font-weight: 500;
	border-radius: 3px;
}

.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.7); }
.sk-foot-message .sk-foot-message-box{ position: relative; z-index: 9; max-width: 480px; width: 100%; background-color: var(--red); padding: 10px; border-radius: 2px; overflow-y: auto; } 
.sk-foot-message .sk-foot-message-title{ font-weight: 600; font-size: 24px; line-height: 30px; font-family: var(--fonts-two); color: var(--white); }
.sk-foot-message .sk-foot-message-form{ margin-top: 5px; padding: 10px; }
.sk-foot-message .sk-content-message-form label{ color: var(--white); }
.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-content-message-form .sk-content-message-form-submit .sk-content-message-form-button{ background-color: var(--white); color: var(--black); border-color: var(--white); }
.sk-foot-message .sk-content-message-form .sk-content-message-form-submit .sk-content-message-form-button:hover{ background-color: var(--red); color: var(--white); border-color: var(--red); }
.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%; 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%; }
}
























/* slideBox */
.sk-slideBox { width: 100%; height: auto; overflow: hidden; position: relative; font-size: 0; }
.sk-slideBox .hd { overflow: hidden; position: absolute; left: 0; right: 0px; bottom: 20px; z-index: 12; }
.sk-slideBox .hd ul { overflow: hidden; zoom: 1; display: flex; justify-content: center; align-items: center; }
.sk-slideBox .hd ul li { float: left; margin: 0 3px; width: 12px; height: 12px; font-size: 0; background: #fff; cursor: pointer; border-radius: 50%; opacity: .5; display: block; }
.sk-slideBox .hd ul li.on { background: #fff; opacity: 1; }
.sk-slideBox .bd { position: relative; height: auto; z-index: 0; }
.sk-slideBox .bd li { zoom: 1; width: 100%; height: auto; display: block; }
.sk-slideBox .bd li img{ width: 100%; }
.sk-slideBox .prev,.sk-slideBox .next { position: absolute; left: 3%; top: 50%; margin-top: -25px; display: block; width: 58px; height: 58px; background-image: url(../images/babot1.png); background-repeat: no-repeat; filter: alpha(opacity=50); background-size: 100%; opacity: 0.5; }
.sk-slideBox .next { left: auto; right: 3%; background-image: url(../images/babot2.png); }
.sk-slideBox .prev:hover,
.sk-slideBox .next:hover { filter: alpha(opacity=100); opacity: 1; }

.sk-series{ padding: 100px 0 80px; }
.sk-series-box{ display: flex; justify-content: space-between; }
.sk-series-item-left{ flex: 1; }
.sk-series-item-right{ flex: 1; }
.sk-series-item{ position: relative; width: 100%; display: block; }
.sk-series-item .sk-series-item-img{ width: 100%; display: block; height: 100%; }
.sk-series-item .sk-series-item-info{ position: absolute; top: 0; left: 0; z-index: 11; transition: all .5s; display: grid; justify-content: center; justify-items: center; align-content: center; align-items: center; width: 100%; height: 100%; background-color: rgba(0, 0, 0, .2); }
.sk-series-item .sk-series-item-info p{ text-align: center; font-size: 36px; font-weight: normal; color: #ffffff; display: block; padding: 0px 30px; }
.sk-series-item .sk-series-item-info .sk-series-item-link{ height: 0; display: block; overflow: hidden; transition: all .3s; }
.sk-series-item .sk-series-item-info a{ display: block; text-align: center; padding: 0px 36px; height: 48px; overflow: hidden; line-height: 48px; font-size: 18px; border: 1px solid #fff; color: #ffffff; transition: all .8s; text-transform: uppercase; }
.sk-series-item .sk-series-item-info:hover{ background-color: rgba(0, 0, 0, .5); }
.sk-series-item .sk-series-item-info:hover .sk-series-item-link{ height: 98px; padding-top: 50px; }
.sk-series-item .sk-series-item-info a:hover{ background-color: #fff; color: #060606; }

/* title */
.sk-index-title{ padding-bottom: 25px; display: block; }
.sk-index-title .sk-index-title-theme{ text-align: center; font-size: 42px; line-height: 48px; color: #060606; text-transform: uppercase; font-weight: bold; }
.sk-index-title .sk-index-title-line{ width: 100px; height: 3px; display: block; margin: 8px auto 0px; background-color: #dc0024; }
.sk-index-title .sk-index-title-text{ width: 80%; text-align: center; font-size: 15px; color: #5e5e5e; line-height: 23px; display: block; margin: 15px auto 0; }

/* product */
.sk-index-product{ padding-bottom: 40px; }
.sk-index-product-box{ display: flex; justify-content: flex-start; flex-wrap: wrap; margin: 20px -1% 0; }
.sk-index-product-item{ width: 31.33333%; background-color: #f7f7f7; padding: 3px; margin: 0 1% 25px; }
.sk-index-product-item .sk-index-product-item-img{ background-color: #fff; }
.sk-index-product-item .sk-index-product-item-img img{ width: 100%; height: auto; display: block; }
.sk-index-product-item .sk-index-product-item-title{ font-size: 22px; line-height: 28px; color: #060606; padding: 0px 20px; margin: 15px 0 20px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.sk-index-product-item .sk-index-product-item-des{ font-size: 16px; padding: 0px 20px 20px; color: #8f8f8f; line-height: 23px; }
.sk-index-product-item:hover{ background-color: #efefef; }

.sk-index-product01{ padding: 30px 0; }
.sk-index-product01-box{ display: flex; justify-content: space-between; border: 2px solid #ddd; border-left: 0; border-right: 0; }
.sk-index-product01-item{ width: 25%; padding: 25px 0; }
.sk-index-product01-item~.sk-index-product01-item{ border-left: 2px solid #ddd; }
.sk-index-product01-item-img{ position: relative; }
.sk-index-product01-item-img a{ display: block; width: 100%; height: auto; }
.sk-index-product01-item-img img{ width: 100%; height: auto; display: block; }
.sk-index-product01-item-img .sk-index-product01-item-text{ position: absolute; transition: all .8s; background-color: rgba(0, 0, 0, .2); top: 0; left: 0; padding: 0 20px; font-size: 32px; text-align: center; overflow: hidden; color: #fff; z-index: 10; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; }
.sk-index-product01-item-img:hover .sk-index-product01-item-text{ background-color: rgba(0, 0, 0, .5); }

.sk-index-product02-box{ position: relative; margin: 20px 0; background-position: center; background-repeat: no-repeat; background-size: cover; }
.sk-index-product02-box-info{ padding: 90px 0; background-color: rgba(0, 0, 0, .5); width: 100%; text-align: center; display: grid; align-content: center; justify-items: center; align-items: center; }
.sk-index-product02-box-info .sk-index-product02-box-title{ font-size: 48px; color: #ffffff; font-weight: bold; text-transform: uppercase; line-height: 54px; }
.sk-index-product02-box-info .sk-index-product02-box-text{ font-size: 18px; color: #ffffff; margin: 25px 0 42px; }
.sk-index-product02-box-info .sk-index-product02-box-link{ line-height: 48px; padding: 0 30px; font-size: 18px; border: 1px solid #dc0024; background-color: #dc0024; color: #ffffff; transition: all .8s; text-transform: uppercase; }
.sk-index-product02-box-info .sk-index-product02-box-link:hover{ border: 1px solid #ffffff; background-color: #ffffff; color: #060606; }
.sk-index-product01-line{ background-color: #060606; width: 100%; height: 3px; }

.sk-index-product-xilie{ margin-top: 32px; margin-bottom: 25px; }
.sk-index-product-xilie-box{ display: flex; justify-content: space-between; margin: 0; border: 2px solid #ddd; border-left: 0; border-right: 0; margin-top: 20px; }
.sk-index-product-xilie-box .sk-index-product-item{ margin: 20px 0; flex-shrink: 0; width: 24%; }

.sk-index-product-glasses{ padding: 50px 0 90px; }
.sk-index-product-glasses-box{ display: flex; justify-content: space-between; border-top: 2px solid #ddd; border-bottom: 3px solid #060606; }
.sk-index-product-glasses-left{ width: 45%; padding: 20px; border-right: 2px solid #ddd; }
.sk-index-product-glasses-left a{ display: block; width: 100%; }
.sk-index-product-glasses-left img{ width: 100%; height: auto; display: block; }

.sk-index-product-glasses-right{ flex: 1; display: grid; align-content: space-between; padding: 20px; }
.sk-index-product-glasses-item{ display: block; margin-bottom: 15px; }
.sk-index-product-glasses-item h3{ font-size: 30px; line-height: 32px; color: #060606; font-weight: normal; }
.sk-index-product-glasses-item p{ font-size: 16px; color: #060606; padding: 10px 0 10px; display: block; }
.sk-index-product-glasses-item .sk-product-meta{ padding-top: 10px; margin: 0px 0 15px; }
.sk-index-product-glasses-item .sk-product-meta .sk-product-meta-item{ line-height: 36px; }
.sk-index-product-glasses-item a.sk-index-product-glasses-item-link{ display: inline-block; text-transform: uppercase; padding: 6px 30px; font-size: 18px; border: 1px solid #dc0024; background-color: #dc0024; color: #ffffff; }
.sk-index-product-glasses-item01{ display: flex; justify-content: center; border-top: 2px solid #ddd; padding-top: 20px; }
.sk-index-product-glasses-item01 .sk-index-product-glasses-item01-img{ border: 1px solid #eee; display: block; flex: 1; transition: all .8s; }
.sk-index-product-glasses-item01 .sk-index-product-glasses-item01-img img{ width: 100%; height: auto; display: block; }
.sk-index-product-glasses-item01 .sk-index-product-glasses-item01-info{ flex: 3; padding-left: 15px; }
.sk-index-product-glasses-item01 .sk-index-product-glasses-item01-info h3{ font-size: 22px; line-height: 28px; color: #060606; font-weight: normal; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.sk-index-product-glasses-item01 .sk-index-product-glasses-item01-info p{ font-size: 14px; color: #a1a1a1; padding-top: 10px; }
.sk-index-product-glasses-item01 .sk-index-product-glasses-item01-img:hover{ border-color: #dc0024; }
.sk-index-product-glasses-item a.sk-index-product-glasses-item-link:hover{ background-color: #060606; border-color: #060606; }

/* about */
.sk-index-about{ padding: 80px 0; }
.sk-index-about-box{ display: flex; justify-content: space-between; }
.sk-index-about .sk-index-about-left{flex: 1; padding-right: 30px; }
.sk-index-about .sk-index-about-left img{ width: 100%; height: auto; display: block; }
.sk-index-about .sk-index-about-right{ flex: 1; }
.sk-index-about-num{ display: flex; justify-content: flex-start; align-items: flex-end; }
.sk-index-about-num img{ width: 178px; height: auto; display: block; flex-shrink: 0; }
.sk-index-about-num .sk-index-about-num-info{ padding-left: 12px; }
.sk-index-about-num .sk-index-about-num-info b{ font-size: 24px; color: #dc0024; text-transform: uppercase; }
.sk-index-about-num .sk-index-about-num-info p{ font-size: 20px; color: #060606; text-transform: uppercase; }

.sk-index-about-company{ margin-top: 30px; color: #060606; font-size: 22px; text-transform: uppercase; line-height: 28px; }
.sk-index-about-text{ font-size: 18px; margin: 25px 0; line-height: 28px; }
.sk-index-about-param{ display: flex; justify-content: space-between; margin-top: 30px; }
.sk-index-about-param-item{ display: flex; justify-content: flex-start; align-items: center; }
.sk-index-about-param-item .iconfont{ color: #c5c5c5; font-size: 48px; display: block; width: 48px; height: 50px; line-height: 50px; flex-shrink: 0; }
.sk-index-about-param-item .sk-index-about-param-txt{ padding-left: 10px; }
.sk-index-about-param-item .sk-index-about-param-txt b{ font-size: 30px; font-weight: bold; color: #dc0024; line-height: 30px; }
.sk-index-about-param-item .sk-index-about-param-txt p{ text-transform: capitalize; color: #c5c5c5; font-size: 18px; line-height: 20px; }
.sk-index-about-link{ font-size: 18px; border: 1px solid #dc0024; background-color: #dc0024; color: #ffffff; display: inline-block; padding: 6px 20px; text-transform: uppercase; }
.sk-index-about-link:hover{ background-color: #060606; color: #fff; border-color: #060606; }

/* blog */
.sk-index-blog{ padding: 80px 0 60px; }
.sk-index-blog-box{ display: block; }
.sk-index-blog-tag{ display: flex; justify-content: center; }
.sk-index-blog-tag .sk-index-blog-tag-btn{ border: 2px solid #dc0024; font-size: 20px; width: 330px; line-height: 30px; padding: 12px 36px; cursor: pointer; text-align: center; text-transform: uppercase; transition: all .8s; }
.sk-index-blog-tag .sk-index-blog-tag-btn.on,.sk-index-blog-tag .sk-index-blog-tag-btn:hover{ background-color: #dc0024; color: #fff; }
.sk-index-blog-main{ padding: 30px 0 0; }
.sk-index-blog-page{ display: flex; justify-content: flex-start; flex-wrap: wrap; }
.sk-index-blog-item{ width: 33.333333%; margin-bottom: 20px; }
.sk-index-blog-item .sk-index-blog-item-box{ padding: 0px 12px; }
.sk-index-blog-item .sk-index-blog-item-time{ font-size: 22px; color: #dddddd; }
.sk-index-blog-item .sk-index-blog-item-time span{ font-size: 54px; color: #dddddd; font-weight: bold; margin-right: 10px; }
.sk-index-blog-item .sk-index-blog-item-img{ border: 1px solid #eee; background-color: #fff; display: block; width: 100%; height: auto; transition: all .8s; }
.sk-index-blog-item .sk-index-blog-item-img a{ display: block; width: 100%; }
.sk-index-blog-item .sk-index-blog-item-img img{ width: 100%; height: auto; display: block; }
.sk-index-blog-item .sk-index-blog-item-title{ display: block; padding-top: 10px; }
.sk-index-blog-item .sk-index-blog-item-title a{ display: block; font-size: 20px; font-weight: normal; transition: all .8s; line-height: 25px; }
.sk-index-blog-item .sk-index-blog-item-text{ font-size: 16px; padding: 10px 0px; color: #8f8f8f; line-height: 23px;}
.sk-index-blog-item .sk-index-blog-item-link{ margin-top: 10px; display: block; }
.sk-index-blog-item .sk-index-blog-item-link a{ font-size: 18px; border: 1px solid #8f8f8f; border-radius: 5px; color: #8f8f8f; display: inline-block; padding: 6px 20px; text-transform: uppercase; transition: all .8s; }
.sk-index-blog-item:hover .sk-index-blog-item-link a{ border-color: #dc0024; background-color: #dc0024; color: #fff; }
.sk-index-blog-item:hover .sk-index-blog-item-title a{ color: #dc0024; }
/* .sk-index-blog-item:hover .sk-index-blog-item-img{ border-color: #dc0024; } */

.sk-page-crumbs{ padding: 12px 0; border-bottom: 1px solid #ddd;}
.sk-page-crumbs .sk-page-crumbs-box{ display: flex; justify-content: flex-start; align-items: center; }
.sk-page-crumbs .sk-page-crumbs-box a{ font-size: 16px; color: #626262; margin: 0 6px; }
.sk-page-crumbs .sk-page-crumbs-box .iconfont{ font-size: 16px; color: #626262; }
.sk-page-crumbs .sk-page-crumbs-box a:hover{ color: #dc0024; }

.sk-page-title{ font-size: 48px; text-transform: uppercase; text-align: center; padding: 30px 0 0; font-weight: bold; }

.sk-section{ padding: 36px 0 60px; }
.sk-section .sk-main-flex{ display: flex; justify-content: space-between; }
.sk-section-right{ padding-right: 30px; flex: 1; }
.sk-section-right .sk-list-blog{ display: flex; justify-content: flex-start; flex-wrap: wrap; margin-left: -12px; }
.sk-section-right .sk-pagination{ margin-top: 30px; }

.sk-section-left{ flex-shrink: 0; width: 320px; display: block; padding: 30px; background: #F7F7F7; }
.sk-section-left-search{ position: relative; margin-bottom: 35px;}
.sk-section-left-search .sk-section-left-search-group{ position: relative; }
.sk-section-left-search .sk-section-left-search-control{ position: relative; display: block; font-size: 14px; line-height: 30px; padding: 10px 50px 10px 20px; border: 1px solid #E3E3E3; background: none; background: #FFFFFF; color: #808080; width: 100%; height: 50px; transition: all 500ms ease; -moz-transition: all 500ms ease; -webkit-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; box-shadow: 4px 6px 7px 0px rgba(0, 0, 0, 0.05); }
.sk-section-left-search .sk-section-left-search-btn{position: absolute; right: 0px; top: 0px; z-index: 10; cursor: pointer; height: 50px; line-height: 50px; width: 44px; border: 0px solid #f2f2f2; display: block; text-align: center; background: none;}
.sk-section-left-search .sk-section-left-search-btn .iconfont{ font-size: 18px; color: #303030; }

.sk-section-left-posts{ position: relative; }
.sk-section-left-posts~.sk-section-left-posts{ margin-top: 30px; }
.sk-section-left-posts .sk-section-left-title{ margin-bottom: 15px;}
.sk-section-left-posts .sk-section-left-title h2{ font-size: 24px; color: #303030; font-weight: bold; display: block; text-transform: uppercase; }
.sk-section-left-posts .sk-section-left-item{ position: relative; margin-bottom: 15px; border-bottom: 1px solid #E3E3E3; padding-bottom: 10px; }
.sk-section-left-posts .sk-section-left-time{ font-size: 14px; line-height: 22px; color: #848484; font-weight: 400; text-transform: uppercase; }
.sk-section-left-posts .sk-section-left-item a{ font-size: 16px; display: block; color: #303030; line-height: 23px; font-weight: 700; margin-top: 10px; }
.sk-section-left-posts .sk-section-left-item a:hover{ color: #dc0024; }

.sk-section-left-product{ position: relative; padding: 0px; padding-left: 80px; min-height: 90px; padding-bottom: 10px; margin-bottom: 20px; border-bottom: 1px solid #eeeeee; }
.sk-section-left-product .sk-section-left-product-thumb{ position: absolute; left: 0px; top: 0px; padding: 0; margin: 0; width: 70px; border: 1px solid #f2f2f2; z-index: 10; }
.sk-section-left-product .sk-section-left-product-thumb img{ width: 100%; height: auto; display: block; }
.sk-section-left-product h4{ display: block; }
.sk-section-left-product h4 a{ color: #060606; font-size: 16px; line-height: 23px; font-weight: 400; text-transform: capitalize; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.sk-section-left-product h4 a:hover{ color: #dc0024; }
.sk-section-left-product .sk-section-left-product-price{ display: none; font-size: 16px; color: #848484; letter-spacing: 1px; font-weight: 400; line-height: 26px; }

.sk-section-left-nav{ position: relative; outline: 9px; border: 1px solid #f2f2f2; }
.sk-section-left-nav li{ display: block; }
.sk-section-left-nav li a{ font-size: 16px; color: #848484; padding: 10px 15px; display: block; line-height: 25px; border: 1px solid #EEEEEE; background: #FFFFFF; }
.sk-section-left-nav li a:hover{ color: #303030; background-color: transparent; }

.sk-section-show{ display: block; }
.sk-section-show .sk-section-show-title{ font-weight: bold; font-size: 28px; line-height: 30px; padding-bottom: 10px; }
.sk-section-show .sk-section-show-time{ padding-bottom: 8px; font-size: 15px; color: #848484; line-height: 28px; }
.sk-section-show .sk-section-show-main{ font-size: 16px; line-height: 26px; color: #060606; border-top: 1px solid #ddd; padding: 20px 0 30px; }
.sk-section-show .sk-section-show-main img{ max-width: 100%; height: auto !important; }

.sk-product-show .sk-section-show-main{ font-size: 16px; line-height: 26px; color: #060606;  padding: 10px 0; }
.sk-product-show .sk-section-show-main img{ max-width: 100%; height: auto !important; }

.sk-comtent-right-page{ border: 1px solid #ddd; background-color: #fbfbfb; }
.sk-comtent-right-page li{ padding: 10px; text-overflow: ellipsis; display: block; overflow: hidden; white-space: nowrap; font-size: 16px; }
.sk-comtent-right-page li a{ color: #060606; }
.sk-comtent-right-page li a:hover{ color: #dc0024; }
.sk-comtent-right-page li~li{ border-top: 1px solid #ddd; }

/*Comment Form*/
.sk-comment-form { position: relative; border: 1px solid #eee; max-width: 800px; padding: 20px; background: #F7F7F7; }
.sk-comment-form-title{ margin-bottom: 15px; font-size: 28px; text-transform: capitalize; padding-bottom: 8px; border-bottom: 1px solid #ddd; }
.sk-comment-form .sk-comment-form-group { position: relative; margin-bottom: 20px; }
.sk-comment-form .sk-comment-form-group label { position: relative; color: #848484; font-size: 16px; font-weight: 400; margin-bottom: 8px; display: block; }
.sk-comment-form .sk-comment-form-group:last-child { margin-bottom: 0px; }
.sk-comment-form .sk-comment-form-group input[type="text"],
.sk-comment-form .sk-comment-form-group input[type="password"],
.sk-comment-form .sk-comment-form-group input[type="tel"],
.sk-comment-form .sk-comment-form-group input[type="email"],
.sk-comment-form .sk-comment-form-group select,
.sk-comment-form .sk-comment-form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  line-height: 28px;
  padding: 10px 15px;
  border: 1px solid #efefef;
  height: 42px;
  color: #848484;
  font-weight: 300;
  background: #ffffff;
  outline: none;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.sk-comment-form .sk-comment-form-group textarea { height: 110px; resize: none; }
.sk-comment-form .sk-comment-form-group input[type="text"]:focus,
.sk-comment-form .sk-comment-form-group input[type="password"]:focus,
.sk-comment-form .sk-comment-form-group input[type="tel"]:focus,
.sk-comment-form .sk-comment-form-group input[type="email"]:focus,
.sk-comment-form .sk-comment-form-group select:focus,
.sk-comment-form .sk-comment-form-group textarea:focus {
  border-color: #dc0024;
}
.sk-comment-form .sk-comment-form-btn { position: relative; padding: 10px 34px; font-size: 18px; text-transform: uppercase; border-radius: 0px; transition: all .8s; cursor: pointer; background-color: #fbfbfb; border: 2px solid #060606; color: #060606; }
.sk-comment-form .sk-comment-form-btn:hover{ background-color: #060606; color: #fff; }

/* picture */
.sk-picture{ display: block; flex: 1; }
.sk-picture-list{ display: flex; justify-content: flex-start; flex-wrap: wrap; }
.sk-picture-list .sk-picture-list-box{ width: 15.666666%; display: block; margin: .5%; }
.sk-picture-list .sk-picture-list-image{ position: relative; width: 100%; height: auto; display: block; }
.sk-picture-list .sk-picture-list-image img{ width: 100%; height: auto; display: block; position: relative; z-index: 9; }
.sk-picture-list .sk-picture-list-image span.iconfont{ display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; font-size: 30px; color: #c9c9c9; transition: all .8s; background-color: rgba(0, 0, 0, .6); opacity: 0; position: absolute; z-index: 10; top: 0; left: 0; }
.sk-picture-list .sk-picture-list-image:hover span.iconfont{ color: #fff; opacity: 1; }

/* pagination */
.sk-pagination{ margin-top: 32px; }
.sk-pagination ul{ display: flex; justify-content: center; }
.sk-pagination ul li{ display: block; margin: 0 4px; font-size: 0; }
.sk-pagination li a, .sk-pagination li span{
  position: relative;
  display: inline-block;
  height: 42px;
  width: 42px;
  line-height: 40px;
  font-size: 18px;
  color: #222222;
  text-align: center;
  padding: 0px;
  background-color: transparent;
  border: 1px solid #f2f2f2;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.sk-pagination li a:hover,
.sk-pagination li.active span,
.sk-pagination li.active span:hover { color: #ffffff; background-color: #060606; border-color: #060606; }
.sk-pagination li.disabled a,.sk-pagination li.disabled span{ background-color: #e7e7e7; cursor: no-drop; }

/* video */
.sk-player{ width: 100%; padding: 20px 0; border-top: 1px solid #ddd; }
.sk-player video{ display: block; max-width: 100%; height: auto; }

/* about */
.sk-page-about{ display: block; width: 100%; flex-shrink: 0; }
.sk-page-about-box{ display: flex; justify-content: space-between; padding-bottom: 80px; }
.sk-page-about-box-pic{ width: 40%; flex-shrink: 0; padding-right: 40px; }
.sk-page-about-box-img{ width: 100%; display: block; }
.sk-page-about-box-img img{ display: block; width: 100%; height: auto; }
.sk-page-about-inner{ flex: 1; }
.sk-page-about-inner-company{ font-size: 24px; font-weight: bold; color: #dc0024; text-transform: uppercase; margin-bottom: 15px; line-height: 32px; }
.sk-page-about-inner-info{ font-size: 16px; line-height: 26px; color: #222222; }

/* about image */
.sk-page-about-pic{ width: 100%; height: auto; display: block; overflow: hidden; }
.sk-page-about-pic li{ display: block; }
.sk-page-about-pic img{ display: block; width: 100%; height: auto; }

/* product */
.sk-list-product{ display: flex; justify-content: flex-start; flex-wrap: wrap; }

.sk-contact-column{ position: relative; margin-bottom: 40px; flex: 1; }
.sk-contact-column .sk-contact-image{ width: 100%; height: auto; display: block; }
.sk-contact-column .sk-contact-image img{ width: 100%; height: auto; display: block; }
.sk-contact-column .sk-contact-content{ position: relative; padding: 20px 25px 10px; border: 1px solid #f2f2f2; border-top: 0; }
.sk-contact-column .sk-contact-content ul{ display: block; }
.sk-contact-column .sk-contact-content li{ position: relative; display: block; padding-left: 50px; margin-bottom: 25px; -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; }
.sk-contact-column .sk-contact-content span{ position: absolute; left: 0; top: 0; font-size: 32px; line-height: 45px; color: #dc0024; }
.sk-contact-column .sk-contact-content h5{ display: block; font-size: 16px; line-height: 24px; color: #848484; font-weight: 700; }
.sk-contact-column .sk-contact-content p{ display: block; font-size: 14px; line-height: 20px; color: #848484; }

.sk-contact-form{ flex: 2; margin: 0 0 40px 40px; position: relative; padding: 30px 40px 10px; border: 1px solid #f2f2f2; }
.sk-contact-form-title{ margin-bottom: 25px; }
.sk-contact-form-title h2{ position: relative; font-size: 36px; line-height: 1.2em; color: #303030; font-weight: 600; }
.sk-contact-form-title .sk-contact-form-text{ font-size: 16px; line-height: 26px; color: #848484; font-weight: 400; margin-top: 15px; }
.sk-contact-form-box{ display: block; }
.sk-contact-form-group{ margin-bottom: 22px; }
.sk-contact-form-group label{ display: block; font-size: 14px; line-height: 15px; color: #bfbfbf; font-weight: 600; margin-bottom: 7px; font-family: "Roboto", sans-serif; }
.sk-contact-form-group input,
.sk-contact-form-group textarea{ position: relative; display: block; width: 100%; height: 50px; font-size: 16px; line-height: 30px; color: #848484; font-weight: 400; padding: 9px 15px; background-color: #ffffff; border: 1px solid #efefef; outline: none; -webkit-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; -moz-transition: all 300ms ease; transition: all 300ms ease; }
.sk-contact-form-group textarea{ height: 120px; resize: none; }
.sk-contact-form-group input:focus,
.sk-contact-form-group textarea:focus{ border-color: #dc0024; }
.sk-contact-form-btn { display: block; }
.sk-contact-form-btn button{ background-color: #dc0024; border: 1px solid #dc0024; font-size: 18px; text-transform: uppercase; color: #ffffff; display: inline-block; padding: 8px 25px; cursor: pointer; }
.sk-contact-form-btn button:hvoer{ background-color: #060606; border-color: #060606; }

/* related */
.sk-related-list{ margin-top: 40px; }
.sk-related-list-title{ border-bottom: 2px solid #060606; margin-bottom: 20px; }
.sk-related-list-title span{ font-weight: normal; text-transform: uppercase; font-size: 18px; background-color: #060606; color: #fff; display: inline-block; padding: 5px 15px; }
.sk-related-list-product{ display: flex; justify-content: flex-start; flex-wrap: wrap; margin: 0 -1%; }
.sk-related-list-product .sk-index-product-item{ width: 23%; }
.sk-related-list-blog{ display: flex; justify-content: flex-start; flex-wrap: wrap; }
.sk-related-list-blog .sk-index-blog-item{ width: 25%; }

.sk-product-details{ display: block; }
.sk-advantages-box { margin-bottom: 20px; }
.sk-advantages-box .sk-advantages-li { font-size: 14px; border-radius: 5px; background-color: #f6f6f6; margin-top: 10px; padding: 8px; }

.sk-product-details-tabs{ padding: 20px 0 36px; }
.sk-product-details-tab{ border-bottom: 2px solid #060606; margin-bottom: 20px; display: flex; justify-content: flex-start; height: 42px; }
.sk-product-details-tab .sk-product-details-tab-btn{ font-weight: normal; text-transform: uppercase; transition: all .8s; cursor: pointer; font-size: 18px; height: 42px; line-height: 42px; background-color: #060606; color: #fff; display: inline-block; padding: 0px 15px; }
.sk-product-details-tab .sk-product-details-tab-btn.on,.sk-product-details-tab .sk-product-details-tab-btn:hover{ background-color: #dc0024; }
.sk-product-details-tab .sk-product-details-tab-btn~.sk-product-details-tab-btn{ border-left: 1px solid #fff; }
.sk-product-tabs-content{ display: block; }
.sk-product-tabs-content-main{ display: none; }

.sk-product-show .sk-section-right{ float: left; width: calc(100% - 320px); }
.sk-product-show .sk-section-left{ float: right; }

.sk-product-summary{ padding-left: 30px; width: 50%; float: right; }
.sk-product-summary .sk-product-title{ font-size: 20px; line-height: 26px; color: #060606; font-weight: normal; }
.sk-product-meta{ margin: 20px 0; padding-top: 20px; border-top: 2px solid #060606; }
.sk-product-meta .sk-product-meta-item{ font-size: 18px; line-height: 42px; border-bottom: 1px dashed #eee; color: #626262; }

.sk-product-intro{ display: block; position: relative; margin-bottom: 30px; }
.sk-product-view{ width: 50%; float: left; overflow: hidden; }


/* prodcut */
.sk-product-view .product-image { position: relative; padding: 3px; border: 1px solid #e5e5e5; background-color: #f6f6f6; }
.sk-product-view .product-image img { position: relative; width: 100%; }
.sk-product-view .image-additional { position: relative; width: 100%; margin: 20px 0 0; overflow: hidden; }
.sk-product-view .image-additional ul { position: relative; width: 90%; margin: 0 auto;}
.sk-product-view .image-additional li { border: 1px solid #ddd; }
.sk-product-view .image-additional li img { width: 100%; height: auto; display: block; background-color: #f6f6f6; }
.sk-product-view .image-additional li a { display: block; }
.sk-product-view .image-additional li.current { border-color: #041e41; }
.sk-product-view .image-additional .owl-carousel .owl-nav .owl-prev,
.sk-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: #060606; font-size: 28px; top: 40%; z-index: 10; }
.sk-product-view .image-additional .owl-carousel .owl-nav .owl-prev { left: -25px; }
.sk-product-view .image-additional .owl-carousel .owl-nav .owl-next { right: -25px; }



@media screen and (max-width: 1360px) {

}
@media screen and (max-width: 1200px) {
  .sk-main{ width: 96%; max-width: 96%; }
  .sk-index-product-item{ width: 48%; }
}
@media screen and (max-width: 1024px) {
  .sk-main{ width: 96%; max-width: 96%; }
  .sk-index-product-item{ width: 98%; }
  .sk-picture-list .sk-picture-list-box{ width: 32.333333%; }
  .sk-index-blog-item{ width: 100%; }
  .sk-page-about-box{ flex-direction: column; }
  .sk-page-about-box-pic{ width: 100%; padding: 0; margin-bottom: 15px; }
  .sk-header-menu-toggle,.sk-header-language-toggle{ display: block; }
  .sk-header-menu-collapse-box{ padding-left: 0; border-left: 0; margin-left: 0; }
  .sk-header-menu-collapse-box .change-language,.sk-header-menu-collapse-box .change-language-info{ display: block; }
  .sk-header-logo img{ height: 48px; }
  .sk-header-menu{ display: none; }
  .sk-contact-form{ margin: 0 0 0 10px; padding: 15px; }
  .sk-contact-form-title h2{ font-size: 30px; }
  .sk-contact-form-title .sk-contact-form-text{ font-size: 14px; line-height: 23px; margin-top: 10px; }
  .sk-contact-column .sk-contact-content{ padding: 15px 18px 10px; }
  .sk-product-view{ width: 100%; float: unset; }
  .sk-product-summary{ width: 100%; padding-left: 0; float: unset; padding-top: 20px; }
  .sk-index-product01-box{ flex-wrap: wrap; }
  .sk-index-product01-item{ width: 50%; }
  .sk-index-about-box{ flex-direction: column; }
  .sk-index-about .sk-index-about-left{ width: 100%; padding-right: 0; }
  .sk-index-about .sk-index-about-right{ padding-top: 20px; }
  .sk-index-product-xilie-box{ flex-wrap: wrap; }
  .sk-index-product-xilie-box .sk-index-product-item{ width: 49%; }
  .sk-related-list-product .sk-index-product-item{ width: 98%; }
  .sk-related-list-blog .sk-index-blog-item{ width: 100%; }
}

@media screen and (max-width: 768px) {
  .sk-display-pc{ display: none !important; }
  .sk-display-mobile{ display: block !important; }
  .sk-footer-nav-item-title{ font-size: 20px; }
  .sk-footer-nav-item a{ font-size: 16px; }
  .sk-product-show .sk-section-right,.sk-product-show .sk-section-left{ width: 100%; float: none; }
  .sk-series-box{ flex-direction: column; }
  .sk-series-item{ margin-bottom: 10px; }
  .sk-index-product01-item{ width: 100%; padding: 12px 0; }
  .sk-index-product01-item~.sk-index-product01-item{ border-left: 0; border-top: 2px solid #ddd; }
  .sk-index-product-glasses-box{ flex-direction: column; border: 0; }
  .sk-index-product-glasses-left{ width: 100%; border: 2px solid #ddd; padding: 0; }
  .sk-index-product-glasses-right{ width: 100%; padding: 20px 0; }
  .sk-index-product-glasses-item h3{ font-size: 22px; line-height: 28px; }
  .sk-index-product-glasses-item p{ padding: 12px 0 15px; }
  .sk-index-product-xilie-box .sk-index-product-item{ width: 100%; }
  .sk-related-list-product .sk-index-product-item{ width: 48%; }
  .sk-related-list-blog .sk-index-blog-item{ width: 50%; }
}

@media screen and (max-width: 640px) {
  .sk-footer-contact{ flex-direction: column; padding-top: 20px; border: 0; }
  .sk-footer-contact .sk-footer-contact-item{ border: 1px solid #fff; font-size: 14px; padding: 15px 10px; }
  .sk-footer-nav{ flex-direction: column; justify-content: flex-start; }
  .sk-footer-nav-item,.sk-footer-nav-follow{ margin: 15px 0 0; padding-top: 15px; border-top: 1px solid #fff; }
  /* .sk-footer-nav-item-title{ font-size: 18px; } */
  .sk-footer-copyright{ font-size: 14px; }
  .sk-section .sk-main-flex{ display: block; }
  .sk-section-right{ padding-right: 0; }
  .sk-section-right .sk-list-blog{ margin: 0; }
  .sk-index-blog-item{ width: 100%; }
  .sk-section-left{ width: 100%; padding: 20px 15px; margin-top: 25px; }
  .sk-page-about-box{ flex-direction: column; padding-bottom: 50px; }
  .sk-page-about-box-pic{ width: 100%; padding: 0; margin-bottom: 15px; }
  .sk-page-title{ font-size: 32px; }
  .sk-page-about-inner-company{ font-size: 20px; }
  .sk-index-product-item{ width: 98%; }
  .sk-index-blog{ padding: 50px 0; }
  .sk-index-blog-tag .sk-index-blog-tag-btn{ padding: 5px 10px; width: 50%; line-height: 22px; font-size: 18px; }
  .sk-index-blog-item .sk-index-blog-item-box{ padding: 0 5px; }
  .sk-index-title .sk-index-title-theme{ font-size: 24px; line-height: 42px; }
  .sk-series{ padding: 50px 0; }
  .sk-index-title{ padding-bottom: 15px; }
  .sk-series-item .sk-series-item-info p{ font-size: 28px; }
  .sk-series-item .sk-series-item-info a{ font-size: 16px; height: 38px; line-height: 38px; padding: 0 25px; }
  .sk-series-item .sk-series-item-info .sk-series-item-link{ margin-top: 10px; padding-top: 0; height: 38px; }
  .sk-series-item .sk-series-item-info:hover .sk-series-item-link{ height: 38px; padding-top: 0px; }
  .sk-index-product{ padding-bottom: 10px; }
  .sk-index-product01-item-img .sk-index-product01-item-text{ font-size: 24px; }
  .sk-index-product02-box-info .sk-index-product02-box-title{ font-size: 28px; }
  .sk-index-about-text{ margin: 15px 0; }
  .sk-index-about-param{ margin-top: 10px; flex-direction: column; }
  .sk-index-about-param-item{ padding: 10px; border-radius: 3px; border: 1px solid #eee; margin-top: 12px; }
  .sk-index-about{ padding: 50px 0; }
  .sk-slideBox .prev, .sk-slideBox .next{ width: 36px; height: 36px; }
  .sk-index-product-glasses{ padding: 30px 0; }
  .sk-index-product-xilie{ margin: 20px 0; }
  .sk-product-meta{ padding-top: 15px; }
  .sk-section-show .sk-section-show-title{ font-size: 22px; }
  .sk-index-product-item .sk-index-product-item-title{ font-size: 20px; margin: 12px 0 15px; }
  .sk-comment-form-title{ font-size: 22px; }
  .sk-related-list-product .sk-index-product-item{ width: 98%; }
  .sk-related-list-blog .sk-index-blog-item{ width: 100%; }
  .sk-product-details-tab{ overflow-x: auto; }
  .sk-product-details-tab .sk-product-details-tab-btn{ font-size: 12px; padding: 0 8px; }
  .sk-product-meta .sk-product-meta-item{ font-size: 14px; line-height: 38px; }
  .sk-picture-list .sk-picture-list-box{ width: 48%; margin: 1%; }
  .sk-related-list-title span{ font-size: 16px; }
  .sk-section-left-posts .sk-section-left-title h2{ font-size: 20px; }
  .sk-page-crumbs .sk-page-crumbs-box a,.sk-page-crumbs .sk-page-crumbs-box .iconfont{ font-size: 12px; }
  .sk-index-product-glasses-item01{ flex-direction: column; }
  .sk-index-product-glasses-item01 .sk-index-product-glasses-item01-img{ width: 100%; }
  .sk-index-product-glasses-item01 .sk-index-product-glasses-item01-info{ flex: 1; width: 100%; padding: 12px 0 0 0; }
  .sk-index-blog-item .sk-index-blog-item-time span{ font-size: 42px; }
}