﻿@charset "utf-8";

/*
	CSS Document 
*/

.sk-display-pc {
    display: block !important;
}

.sk-display-mobile {
    display: none !important;
}

/* header start */
.sk-header {
    display: block;
    margin: auto;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
}

.sk-header-box {
    position: relative;
}

.sk-header-box .sk-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 65;
}

.sk-header-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    max-width: 500px;
    padding: 3px 0;
}

.sk-header-logo a {
    display: block;
}

.sk-header-logo img {
    width: 100%;
    height: auto;
}

.sk-header-logo img.sk-header-logo-black, .sk-header-fixed .sk-header-logo img.sk-header-logo-white{
    display: none;
}
.sk-header-logo img.sk-header-logo-white, .sk-header-fixed .sk-header-logo img.sk-header-logo-black{
    display: block;
}

.sk-navigation-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 60px;
}

.sk-header-search-item {
    cursor: pointer;
    flex-shrink: 0;
    text-align: center;
    transition: all .8s;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sk-header-search-item .iconfont {
    display: block;
    font-size: 18px;
    font-weight: 500;
}

.sk-header-search-item:hover {
    color: var(--green);
}

/* search start */

.sk-header-search {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.96);
    display: none;
}

.sk-header-search-box {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.sk-header-search-box form {
    width: 800px;
    display: block;
    position: relative;
}

.sk-search-group {
    width: 100%;
    display: block;
    position: relative;
}

.sk-search-group .sk-search-control {
    display: block;
    border: 0;
    border-bottom: 1px solid var(--grey);
    background-color: transparent;
    outline: none;
    padding: 0 60px 0 0px;
    height: 54px;
    position: relative;
    font-size: 14px;
    width: 100%;
    z-index: 9;
    transition: all .8s;
    color: var(--grey);
}

.sk-search-group .sk-search-btn {
    border: 0px solid var(--border);
    background: unset;
    width: 54px;
    height: 54px;
    color: var(--grey);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    transition: all .8s;
}

.sk-search-group .sk-search-btn:hover {
    color: var(--green);
}

.sk-search-group .sk-search-btn span {
    font-size: 24px;
    font-weight: 500;
}

.sk-search-group .sk-search-control:focus {
    border-color: var(--green);
}

.sk-header-search-close {
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: block;
    position: absolute;
    top: -100px;
    right: -100px;
    cursor: pointer;
    color: var(--grey);
    transition: all .8s;
}

.sk-header-search-close i {
    display: block;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.sk-header-search-close:hover {
    color: var(--green);
    transform: rotate(360deg);
}

.sk-gettouch {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: var(--green);
    padding: 5px 25px;
    color: var(--white);
    transition: all .8s;
    cursor: pointer;
    gap: 5px;
}

.sk-gettouch span {
    font-size: 16px;
    font-weight: 400;
}

.sk-gettouch:hover {
    background-color: var(--yellow);
}

/* navigation */
.sk-navigation-box {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    gap: 30px;
}

.sk-navigation-box .sk-navigation-li {
    position: relative;
}

.sk-navigation-box .sk-navigation-link {
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
    font-family: var(--fonts-two);
    display: flex;
    justify-content: center;
    line-height: 98px;
    transition: all 500ms ease;
}

.sk-navigation-box .sk-navigation-link i {
    font-size: 14px;
    margin-left: 3px;
}

.sk-navigation-box .sk-navigation-sub {
    display: block;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 1px 3px 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(--border);
    display: block;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link {
    padding: 8px 10px;
    color: var(--grey);
    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: 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 1px 3px var(--border);
    z-index: 999;
    visibility: hidden;
    text-align: left;
    width: 250px;
    overflow-y: auto;
}

.sk-navigation-child .sk-navigation-child-li {
    display: block;
    padding: 0;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.sk-navigation-child .sk-navigation-child-link {
    color: var(--grey);
    padding: 8px 10px;
    text-transform: capitalize;
    font-size: 16px;
    overflow: hidden;
    display: block;
    font-weight: 400;
    transition: all .5s;
}

.sk-navigation-box .sk-navigation-link.active,
.sk-navigation-box .sk-navigation-li:hover .sk-navigation-link {
    color: var(--green);
    border-color: var(--green);
}

.sk-navigation-child .sk-navigation-child-link:hover,
.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link:hover {
    color: var(--green);
}

.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;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 0 20px -1px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 20px -1px rgb(0 0 0 / 10%);
}

.sk-header-fixed .sk-navigation-box .sk-navigation-link{
    color: var(--black);
}
.sk-header-fixed .sk-navigation-box .sk-navigation-link.active{ color: var(--green); }

/* header end */

/* mobile nav */

.sk-mobile-header {
    display: none;
    width: 100%;
    z-index: 103;
}

.sk-mobile-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 10px;
}

.sk-mobile-header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 10px;
}

.sk-mobile-header-logo a {
    display: block;
}

.sk-mobile-header-logo img {
    max-width: 220px;
    max-height: 50px;
}

.sk-mobile-header-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.sk-mobile-header-right .sk-header-search-item .iconfont {
    font-size: 18px;
    margin-right: 0;
    color: var(--grey);
}

.sk-mobile-caidan {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    color: var(--black);
    outline: none;
    cursor: pointer;
    transition: all .8s;
    border-radius: 3px;
}

.sk-mobile-caidan .iconfont {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
}

.sk-mobile-caidan:hover {
    color: var(--green);
}

.sk-header-colse {
    display: block;
    width: 36px;
    height: 36px;
    background-color: var(--green);
    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 80px;
}

.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: 18px;
    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: 600;
}

.sk-mobile-nav-box .sk-mobile-nav-link a {
    color: var(--black);
    flex: 1;
}

.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: 0 12px 0 15px;
    line-height: 32px;
    font-size: 16px;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    font-family: var(--fonts-two);
    font-weight: 500;
}

.sk-mobile-nav-box .sk-mobile-nav-sub-link a {
    flex: 1;
    color: var(--black);
}

.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(--black);
    padding: 0 12px 0 25px;
    line-height: 32px;
    font-size: 16px;
    text-transform: capitalize;
    border-bottom: 1px dashed var(--border);
    font-family: var(--fonts-two);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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(--green);
}

.sk-mobile-nav .sk-header-search {
    width: 96%;
    margin: auto;
    padding: 15px 0;
}

.sk-mobile-nav .sk-search-group .sk-search-control {
    border: 1px solid var(--border);
}

.sk-mobile-nav-down {
    width: 24px;
    text-align: center;
}

.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;
    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 / 10%);
}

@media screen and (max-width: 1360px) {
    .sk-navigation-box {
        gap: 20px;
    }
    .sk-navigation-box .sk-navigation-link {
        align-items: center;
    }
    .sk-header-search-item span {
        display: none;
    }
    .sk-header-logo{ max-width: 32%; }
	.sk-navigation-right{ gap: 40px; }
}

@media screen and (max-width: 1200px) {
    .sk-navigation-box .sk-navigation-link {
        font-size: 18px;
    }
    .sk-header-logo{ max-width: 400px; }
    .sk-header-search-box {
        padding-inline: 35px;
    }
    .sk-header-search-box form {
        width: 90%;
    }
    .sk-header-search-close {
        right: -20px;
        top: -200px;
    }
}

@media screen and (max-width: 1024px) {
.sk-header-logo{ max-width: 300px; }
.sk-navigation-right{ gap: 10px; }
.sk-gettouch{ display: none; }
}


@media screen and (max-width: 868px) {
    .sk-header {
        display: none;
    }
    .sk-mobile-header {
        display: block;
    }
    .sk-header-search-item {
        display: block;
    }
}

@media screen and (max-width: 640px) {
    .sk-mobile-header-right {
        gap: 10px;
    }
    .sk-mobile-header-logo img {
        max-width: 250px;
    }
    .sk-header-search-box {
        flex-direction: column;
        padding-inline: 20px;
    }
    .sk-header-search-box form {
        width: 92%;
    }
    .sk-header-search-close {
        right: 0;
    }
}

/* header end */


/* crumbs start */
.sk-page-banner{ position: relative; }
.sk-page-banner img{ position: relative; z-index: 8; }
.sk-page-banner-text{ position: absolute; width: 100%; height: 100%;  display: flex; justify-content: center; align-items: center; z-index: 9; top: 0; left: 0; font-size: 54px; color: var(--white); font-weight: 500; }
.sk-page-crumb {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}

.sk-page-crumb-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sk-page-crumb-nav{ display: flex; justify-content: flex-start; align-items: center; gap: 20px; }
.sk-page-crumb-nav i{ font-size: 16px;  }
.sk-page-crumb-nav a{ color: var(--black); font-weight: 400; font-size: 16px; padding: 18px 5px; text-transform: capitalize; position: relative; }
.sk-page-crumb-nav a::after{ display: block; content: ''; position: absolute; width: 0px; height: 3px; transition: all .3s; margin: auto; left: 0; right: 0; bottom: 0; z-index: 7; background-color: transparent; }
.sk-page-crumb-nav a:hover{ color: var(--green); }
.sk-page-crumb-nav a:hover::after{ background-color: var(--green); width: 100%; }

.sk-page-crumb-position{ display: flex; justify-content: flex-start; align-items: center; gap: 5px; padding: 18px 0px;
    color: var(--black);
    font-size: 16px;
    line-height: 25px;
    text-transform: capitalize;
}

.sk-page-crumb-position i {
    font-size: 12px;
    color: var(--black);
    font-weight: 400;
}

.sk-page-crumb-position a {
    color: var(--black);
    font-weight: 400;
}

.sk-page-crumb-position a:hover {
    color: var(--green);
}

@media screen and (max-width: 640px) {
    .sk-page-crumb-nav { display: none; }
    .sk-page-banner-text{ font-size: 32px; }
}

/* crumbs end */

/* footer */

.sk-footer {
    background-color: var(--bgadv);
    border-top: 6px solid var(--green);
}
.sk-footer-top{ border-bottom: 1px solid var(--light-gray); padding: 42px 0; }
.sk-footer-top-row{  display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.sk-footer-top-logo{ width: 480px; display: block; flex-shrink: 0; }
.sk-footer-top-logo img{ display: block; width: 100%; }
.sk-footer-top-left{ display: flex; justify-content: space-between; flex: 1; width: 100%; }
.sk-footer-box-contact-item{ display: flex; justify-content: flex-start; align-items: flex-start; gap: 10px; }
.sk-footer-box-contact-item i{ font-size: 32px; line-height: 36px; color: var(--green); }
.sk-footer-box-contact-info{ display: grid; justify-items: flex-start; gap: 5px; }
.sk-footer-box-contact-info p{
    font-size: 16px;
    line-height: 25px;
    font-family: var(--fonts-two);
    font-weight: 600;
    color: var(--grey);
}
.sk-footer-box-contact-info span{ display: flex;}
.sk-footer-box-contact-info span a{
    font-size: 20px;
    color: var(--black);
    line-height: 28px;
    font-weight: 500;
    transition: all .6s;
}
.sk-footer-box-contact-info span a:hover{ color: var(--green); }

.sk-footer-box {
    padding-block: 50px;
}
.sk-footer-search{ position: relative; margin-bottom: 30px; }
.sk-footer-search .sk-footer-search-input{ width: 100%; position: relative; z-index: 8; height: 52px; padding: 0px 43px 0 8px; border: 0; background-color: var(--border); }
.sk-footer-search .sk-footer-search-btn{ border: 0; position: absolute; top: 0; right: 0; background: unset;  z-index: 9; width: 52px; height: 52px; }
.sk-footer-search .sk-footer-search-btn span{ font-size: 22px; color: var(--green); }

.sk-footer-box-title {
    text-align: left;
    color: var(--black);
    font-size: 24px;
    line-height: 30px;
    font-family: var(--fonts-two);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.sk-footer-box-nav {
    display: block;
    padding-inline: 30px;
}

.sk-footer-box-nav-box li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 22px;
    margin-block-end: 8px;
    transition: 0.5s all ease;
}

.sk-footer-box-nav-box li span a {
    font-size: 16px;
    color: var(--black);
    transition: all .8s;
    font-weight: 400;
}

.sk-footer-box-nav-box li:hover a {
    color: var(--green);
}

.sk-footer-box-nav-box li:hover {
    padding-left: 10px;
}

.sk-footer-box-contact{ display: block; width: 100%; }
.sk-footer-feedback-item{ margin-bottom: 15px; }
.sk-footer-feedback-input,.sk-footer-feedback-textarea{ border: 1px solid var(--light-gray); padding: 6px; line-height: 25px; width: 100%; }
.sk-footer-feedback-textarea{ height: 120px; resize: none; }
.sk-footer-feedback-invalid{ font-size: 12px; color: var(--red); line-height: 22px; margin-top: 3px; display: none; }
.sk-footer-feedback-btn{ display: flex; justify-content: center; }
.sk-footer-feedback-btn .sk-footer-feedback-submit{ border-radius: 3px; background-color: var(--green); font-weight: 500; transition: all .8s; border: 0; width: 100%; padding: 10px; font-size: 16px; color: var(--white); }
.sk-footer-feedback-btn .sk-footer-feedback-submit:hover{ background-color: var(--yellow); }

/* copyright */

.sk-footer-copyright {
    padding: 16px 0 20px 0;
    border-top: 1px solid var(--light-gray);
}

.sk-footer-copyright-box{ display: flex; justify-content: space-between; align-items: center; }

.sk-footer-copyright-text {
    color: var(--grey);
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}
.sk-footer-copyright-nav{ display: flex; gap: 12px; }
.sk-footer-copyright-nav a,.sk-footer-copyright-nav span {
    color: var(--grey);
    transition: all .8s;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

.sk-footer-copyright-nav a:hover {
    color: var(--green);
}

/* 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(--green);
}

.sk-meau-top i {
    font-size: 20px;
}
@media screen and (max-width: 1360px) {
	.sk-footer-top-row{ flex-direction: column; }
}

@media screen and (max-width: 1200px) {
    .sk-footer-box-nav {
        padding-inline: 0px;
    }
}

@media screen and (max-width: 1024px) {
    .sk-footer-box {
        padding-block: 40px;
    }
    .sk-footer-box-nav {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .sk-footer-box-title {
        font-size: 20px;
    }
    .sk-footer-top-left{ flex-direction: column; gap: 12px; justify-items: center; align-items: flex-start; }
}

@media screen and (max-width: 576px) {
    .sk-footer-copyright {
        padding-block: 20px;
    }
    .sk-footer-copyright-box{ flex-direction: column; gap: 8px; }
}

/* footer end */

/* right start */
.sk-content-left{
    position: relative;
}
.sk-content-left-box {
    position: sticky;
    top: 120px;
    z-index: 10;
    background-color: var(--white);
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.sk-content-left-box-title {
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1;
    position: relative;
    color: var(--white);
    font-family: var(--fonts-two);
    padding: 18px 10px;
    background-color: var(--green);
}

.sk-content-left-box-nav {
    display: block;
    padding: 10px;
    
}

.sk-expmenu-item .sk-expmenu-dt {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
}

.sk-expmenu-item .sk-expmenu-dt a {
    transition: all .8s;
    font-size: 16px;
    line-height: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-weight: 400;
    color: var(--black);
    flex: 1;
    padding: 10px 0;
    
}

.sk-expmenu-item .sk-expmenu-dt a .iconfont {
    height: 28px;
    font-size: 13px;
    flex-shrink: 0;
    margin-right: 5px;
}
.sk-expmenu-item .sk-expmenu-dt.active,.sk-expmenu-item .sk-expmenu-dt:hover{ border-left-color: var(--green); }

.sk-expmenu-item .sk-expmenu-dt span {
    display: block;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    color: var(--grey);
}

.sk-expmenu-item .sk-expmenu-dt span i {
    display: block;
    font-size: 15px;
}

.sk-expmenu-child {
    background-color: var(--white);
    padding: 5px 0 5px 10px;
    display: none;
}

.sk-expmenu-child-li {
    border-bottom: 1px solid var(--border);
}

.sk-expmenu-child-li a {
    font-size: 14px;
    line-height: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5px 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(--green);
}

.sk-expmenu-item:hover .sk-expmenu-dt a,
.sk-expmenu-item:hover .sk-expmenu-dt span {
    color: var(--green);
}

.sk-content-left-box-nav .sk-expmenu-item:last-child {
    margin-bottom: 0;
}


/* content start */

.sk-content {
    display: block;
}

.sk-content-box{ background-color: var(--bgpro); }

.sk-content-main {
    padding: 70px 0;
    position: relative;
}

/* show start */

.sk-content-show {
    display: block;
    background-color: var(--white);
    padding: 40px 30px;
}

.sk-content-show .sk-content-show-title {
    font-size: 28px;
    line-height: 30px;
    color: var(--black);
    font-weight: 700;
    font-family: var(--fonts-two);
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.sk-content-show .sk-content-show-resource {
    line-height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    
}

.sk-content-show .sk-content-show-resource i {
    font-size: 14px;
    color: var(--grey);
    margin-right: 5px;
}

.sk-content-show .sk-content-show-resource span {
    font-size: 14px;
    color: var(--grey);
    margin-right: 15px;
    font-weight: 400;
}

.sk-content-show-description{ display: block; background-color: var(--bgadv); padding: 15px; font-size: 16px; color: var(--grey); }

.sk-content-show .sk-content-page-main {
    padding: 30px 0;
}

.sk-content-show-prenext {
    display: block;
    border: 1px solid var(--border);
    border-radius: 3px;
    margin-top: 20px;
}

.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: 6px 12px;
}

.sk-content-show-prenext p~p {
    border-top: 1px solid var(--border);
}

.sk-related-list{ margin-top: 20px; background-color: var(--white); padding: 40px 30px; }
.sk-related-list-title{ font-size: 28px; line-height: 30px;
    color: var(--black);
    font-weight: 600;
    text-transform: capitalize;
}
.sk-related-list-box{ padding-top: 25px; }

/* images start */
.sk-list-box{
    background-color: var(--white);
    padding: 40px 30px;
}
.sk-list-images-box {
    margin-top: 10px;
    margin-bottom: 10px;
}

.sk-list-images-box a {
    display: block;
    border: 2px solid var(--green);
    position: relative;
    overflow: hidden;
}

.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, 121, 20, 0.6);
}

.sk-list-images-box a i {
    display: block;
    font-size: 36px;
    font-weight: 300;
    width: 42px;
    height: 42px;
    transition: all .6s;
    text-align: center;
    line-height: 42px;
    color: var(--white);
    overflow: hidden;
}

.sk-list-images-box a:hover .sk-list-images-i {
    opacity: 1;
}

.sk-list-images-box p {
    font-size: 16px;
    text-align: center;
    line-height: 25px;
    padding: 10px;
    font-weight: 400;
    transition: all .6s;
}

/* images end */

/* page start */
.sk-content-page-main {
    font-size: 16px;
    line-height: 1.8;
}

.sk-content-page-main img {
    max-width: 100%;
    height: auto !important;
}

/* page end */

/* about start */

.sk-content-about {
    background-position: center bottom;
    padding: 70px 0;
}

.sk-content-about-box{ display: flex; justify-content: space-between; }
.sk-content-about-box .sk-content-page-main{ padding-top: 50px; }

.sk-content-about-img {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    position: relative;
}
.sk-content-about-img::after{
    content: '';
    position: absolute;
    width: 45%;
    height: 100%;
    right: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 0px;
    top: 0px;
    z-index: 0;
    background: var(--bgadv);
}

.sk-content-about-img-box{
    max-width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 0px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.sk-content-about-img img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 480px;
}

.sk-content-about-images{ background-attachment: fixed; padding: 70px 0; }
.sk-content-about-images .sk-list-images-box{ margin: 0; padding: 5px; background-color: var(--white); transition: all .6s; }
.sk-content-about-images .sk-list-images-box a{ border: 0; }
.sk-content-about-images .sk-list-images-box:hover{ background-color: var(--green); }
.sk-content-about-images .sk-list-images-box:hover p{ color: var(--white); }

.sk-content-about-pic{ padding: 70px 0; background-color: var(--bgpro); }
.sk-list-pic-box{ border: 4px solid var(--green); }
.sk-list-pic-box a{ display: block; }
.sk-list-pic-box img{ display: block; width: 100%; height: auto; }

.sk-content-about-honor{ padding: 80px 0; background-attachment: fixed; }

/* about end */
/* contact start */

.sk-content-contact {
    display: block;
    background-position: center bottom;
    background-color: var(--white);
    padding: 40px 30px;
}

.sk-content-contact>.row>div~div{ border-left: 1px solid var(--border); }

.sk-content-contact-box{ padding-right: 30px; }

.sk-contact-title{
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--black);
    text-transform: uppercase;
    display: flex;
    gap: 10px;
}
.sk-contact-title i{ font-size: 36px; }

.sk-contact-text {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: 32px;
}

.sk-content-contact .sk-content-contact-list {
    display: block;
    padding-top: 30px;
}

.sk-contact-item{
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}
.sk-contact-item i{ font-size: 42px; color: var(--green); line-height: 42px; flex-shrink: 0; }
.sk-contact-item-info{ display: grid; justify-items: flex-start; align-content: flex-start; width: 100%; gap: 5px; }
.sk-contact-item-info .sk-contact-item-title{ font-size: 16px; font-weight: 400; color: var(--grey); }
.sk-contact-item-info p{ display: flex; justify-content: flex-start; }
.sk-contact-item-info span{
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
    line-height: 28px;
}
.sk-contact-item-info a{
    font-size: 20px;
    color: var(--black);
    font-weight: 500;
    line-height: 28px;
}

.sk-contact-item-info a:hover {
    color: var(--green);
}


/* contact end */

/* message start */

.sk-content-message {
    display: block;
    padding-left: 30px;
}

.sk-content-message-title{
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--black);
    text-transform: uppercase;
    display: flex;
    margin-bottom: 12px;
}
.sk-content-message-text{ font-size: 14px; color: var(--grey); font-weight: 300; line-height: 25px; margin-bottom: 25px; }

.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;
}

.sk-content-message-form label,
.sk-content-message-form .sk-content-message-form-input input,
.sk-content-message-form .sk-content-message-form-textarea textarea {
    width: 100%;
    line-height: 30px;
    display: block;
    border: 1px solid var(--border);
    outline: none;
    background-color: var(--white);
    font-size: 16px;
    padding: 10px 12px;
    transition: all .8s;
    border-radius: 2px;
    font-weight: 400;
    color: var(--grey);
}

.sk-content-message-form label{ background-color: var(--bgpro); }

.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(--green);
}

.sk-content-message-form .sk-content-message-form-submit {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.sk-content-message-form .sk-content-message-form-button {
    width: auto;
    transition: all .8s;
    border: 1px solid var(--green-white);
    background: var(--green-white);
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    padding: 8px 42px;
    font-family: var(--fonts-two);
    font-weight: 400;
    border-radius: 2px;
}

.sk-content-message-form .sk-content-message-form-button:hover {
    color: var(--white);
    background-color: var(--yellow);
    border-color: var(--yellow);
}

/* message end */

/* news start */

.sk-list-box {
    display: block;
}

.sk-list-news-item {
    overflow: unset;
    margin-bottom: 20px;
    padding-bottom: 20px;
    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;
    transition: 0.5s all ease;
}
.sk-list-news-item::before{
    content: '';
    height: 1px;
    width: 100%;
    background-color: var(--border);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 8;
}
.sk-list-news-item::after{
    content: '';
    height: 1px;
    width: 0%;
    background-color: var(--green);
    display: block;
    transition: all .6s;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
}
.sk-list-news-item:hover::after{
    width: 100%;
}

.sk-list-news-item-img {
    display: block;
}

.sk-list-news-item-img a {
    display: block;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all .8s;
}

.sk-list-news-item-img img {
    display: block;
    width: 100%;
    height: auto;
}

.sk-list-news-item-info {
    display: block;
    padding: 12px;
}

.sk-list-news-item-sortname {
    padding-bottom: 8px;
    line-height: 22px;
    color: var(--grey);
    font-size: 14px;
    opacity: .6;
    border-bottom: 1px solid var(--border);
}

.sk-list-news-item-sortname i {
    font-size: 14px;
}

.sk-list-news-item-title {
    padding-block-start: 8px;
}

.sk-list-news-item-title a {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    font-family: var(--fonts-two);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all .8s;
    color: var(--black);
}

.sk-list-news-item-desc {
    margin-block-start: 10px;
    color: var(--grey);
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sk-list-news-more {
    display: flex;
    justify-content: flex-start;
    margin-block-start: 15px;
}

.sk-list-news-more a {
    font-size: 14px;
    color: var(--grey);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 25px;
    transition: all .8s;
    text-decoration: none;
    border: 1px solid var(--light-gray);
    padding: 5px 18px;
    border-radius: 5px;
}

.sk-list-news-item .sk-list-news-more a:hover {
    color: var(--white);
    background-color: var(--green);
    border-color: var(--green);
}

.sk-list-news-more .iconfont {
    margin-right: 10px;
    font-size: 16px;
}

.sk-list-news-item:hover .sk-list-news-item-title a {
    color: var(--green);
}
/* product list item */

.sk-product-item {
    margin-bottom: 30px;
    overflow: hidden;
    transition: ease all .8s;
    background-color: var(--white);
    border: 1px solid var(--border);
}

.sk-content-left-box-product .sk-product-item:last-child {
    margin-bottom: 0;
}

.sk-product-item .sk-product-img {
    transition: all .4s;
    overflow: hidden;
}

.sk-product-item .sk-product-img-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sk-product-item .sk-product-img img {
    width: 100%;
    height: auto;
    display: block;
}

.sk-product-item:hover .sk-product-img img {
    opacity: .8;
}

.sk-product-item .sk-product-title {
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
}

.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: 18px;
    line-height: 25px;
    color: var(--black);
    transition: all .6s;
    font-weight: 600;
}

.sk-product-item:hover .sk-product-title a {
    color: var(--green);
}

.sk-product-more {
    padding: 20px 8px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.sk-product-more a {
    padding: 6px;
    font-size: 15px;
    line-height: 25px;
    color: var(--white);
    background-color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all .6s;
    border-radius: 50px;
		min-width: 108px;
}

.sk-product-item .sk-product-more i {
    margin-right: 6px;
}

.sk-product-more a:last-child{ background-color: var(--yellow); }

.sk-product-item .sk-product-more a:hover {
    background-color: var(--green-white);
    color: var(--white);
}

.sk-product-item:hover {
    transform: translate(0, -10px);
}

/* product images start */

.sk-product-intro {
    display: block;
}

.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 .3s;
}

.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(--green);
    outline: 0px solid var(--green);
    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: 0px;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-next {
    right: 0px;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-prev:hover,
.product-view .image-additional .owl-carousel .owl-nav .owl-next:hover {
    color: var(--green);
}
/* product images end */

.sk-products-title {
    font-size: 30px;
    color: var(--black);
    font-family: var(--fonts-two);
    font-weight: 600;
    margin-bottom: 15px;
}

.sk-product-parameter {
    font-size: 16px; 
    font-weight: 400;
    color: var(--black);
    line-height: 25px;
    margin-bottom: 15px;
}

.sk-product-category{ display: flex; justify-content: flex-start; align-items: center; gap: 10px; margin-bottom: 15px; }
.sk-product-category i{ font-size: 24px; font-weight: 600; color: var(--black); line-height: 30px; }
.sk-product-category span{ font-size: 16px; font-weight: 400; color: var(--black); }
.sk-product-category a{ font-size: 16px; font-weight: 300; color: var(--black); line-height: 23px; }
.sk-product-category a:hover{ color: var(--green); }

.sk-product-whatsapp{ display: flex; justify-content: flex-start; align-items: center; gap: 10px; margin-bottom: 15px; }
.sk-product-whatsapp i{ font-size: 24px; font-weight: 600; color: var(--black); line-height: 30px; }
.sk-product-whatsapp p{ font-size: 16px; font-weight: 400; color: var(--black); }
.sk-product-whatsapp .sk-product-whatsapp-link{ display: grid; }
.sk-product-whatsapp .sk-product-whatsapp-link span{ display: block; }
.sk-product-whatsapp .sk-product-whatsapp-link a{ font-size: 20px; font-weight: 500; color: var(--black); line-height: 26px; transition: all .8s; }
.sk-product-whatsapp .sk-product-whatsapp-link a:hover{ color: var(--green); }

.sk-product-con {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
}

.sk-product-con .sk-product-con-link {
    background-color: var(--light-gray);
    padding: 8px 36px;
    font-weight: 400;
    color: var(--white);
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.sk-product-con .sk-product-con-link i {
    font-size: 16px;
}

.sk-product-con .sk-product-con-link:first-child {
    background-color: var(--green);
    color: var(--white);
}

.sk-product-con .sk-product-con-link:hover {
    background-color: var(--yellow);
    color: var(--white);
}

/* product show */

.sk-product-show {
    padding: 30px 20px;
    background-color: var(--white);
}

.sk-product-details{ padding-top: 30px; }
.sk-product-details-title{
    border-bottom: 2px solid var(--green);
		display: flex;
		justify-content: flex-start;
}
.sk-product-details-title span{
    padding: 12px 20px 10px;
    font-size: 18px;
		line-height: 25px;
    display: block;
		min-width: 170px;
		text-align: center;
    color: var(--white);
		background-color: var(--green);
    font-weight: 400;
    text-transform: capitalize;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
}
.sk-product-details-text{ margin: 15px 0 20px; font-size: 16px; line-height: 25px; color: var(--black); font-weight: 400; }
.sk-product-show .sk-content-page-main{ padding: 20px 0; }
.sk-product-details-keyword{ font-size: 14px; line-height: 23px; font-weight: 600; background-color: var(--bgadv); padding: 10px; }

.sk-product-inquiry,.sk-related-product {
    padding: 20px;
    margin-top: 20px;
    background-color: var(--white);
}

/* product end */


/* banner start */
.sk-index-slide {
    position: relative;
    display: block;
		height: 100vh;
}

.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-item {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sk-index-slide-item{ height: 100%; position: relative; overflow: hidden; }
.sk-index-slide-item .sk-index-slide-item-img{ position: relative; z-index: 8; width: 100%; height: 100%; overflow: hidden; background-size: cover; background-position: center; background-repeat: no-repeat; }
.sk-index-slide-item .sk-index-slide-item-img img{ display: block; object-fit: cover; height: 100%; width: 100%; object-position: center; }
.sk-index-slide-item .sk-index-slide-item-info{ position: absolute; top: 0; left: 0; z-index: 8; width: 100%; height: 100%; display: flex; justify-content: center; padding-top: 200px; }
.sk-index-slide-item .sk-index-slide-item-box{ max-width: 1200px; display: block; transition: all .6s ease-out; }
.sk-index-slide-item .sk-index-slide-item-info-title{ font-size: 42px; line-height: 48px; font-weight: 500; text-align: center; color: var(--white); margin-bottom: 36px; }
.sk-index-slide-item .sk-index-slide-item-info-text{ font-size: 24px; line-height: 30px; font-weight: 400; text-align: center; color: var(--bgpro); margin-bottom: 36px; }
.sk-index-slide-item .sk-index-slide-item-info-link{ display: flex; justify-content: center; align-items: center; }
.sk-index-slide-item .sk-index-slide-item-info-link a{ display: block; background-color: var(--green); color: var(--white); transition: all .8s ease-in-out; border-radius: 30px; font-size: 16px; font-weight: 300; line-height: 25px; text-align: center; padding: 9px 36px; }
.sk-index-slide-item .sk-index-slide-item-info-link a:hover{ background-color: var(--yellow); color: var(--white); }

/* 定义动画 */

@keyframes slideZoom {
    0%,
    100% {
        transform: scale(1);
        /* 初始状态和结束状态的缩放比例 */
    }
    50% {
        transform: scale(1.2);
        /* 放大状态的缩放比例 */
    }
}

.sk-index-slide .sk-index-slide-box .owl-nav {
		display: flex;
		justify-content: center;
		gap: 20px;
		position: absolute;
    z-index: 20;
		bottom: 30px;
		right: 10%;
}

.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: 50px;
    height: 50px;
		line-height: 48px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--white);
    border-radius: 50%;
    transition: all .8s;
    color: var(--white);
    opacity: .8;
}

.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: 32px;
    font-weight: 300;
    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(--yellow);
    opacity: 1;
    color: var(--white);
    border-color: var(--yellow);
}

.sk-index-slide .sk-index-slide-box .owl-dots {
    position: absolute;
    z-index: 19;
    bottom: 30px;
    left: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot {
    transition: all .6s;
    border: 0px solid transparent;
    overflow: hidden;
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot span {
    margin: 0;
    border-radius: 10px;
    width: 10px;
    height: 10px;
    background-color: var(--white);
    transition: all .8s;
    opacity: .5;
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot:hover span {
    opacity: 1;
}

.sk-index-slide .sk-index-slide-box .owl-dots .owl-dot.active span {
    opacity: 1;
    width: 30px;
		background-color: var(--yellow);
}

/*  index title */
.sk-indextow-link {
    border: 1px solid var(--green);
    color: var(--black);
    display: block;
    text-align: center;
    padding: 10px 12px;
    margin: auto;
    font-size: 16px;
    transition: all .8s;
    border-radius: 3px;
    flex-shrink: 0;
}

.sk-indextow-link i {
    font-size: 14px;
}

.sk-indextow-link:hover {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--white);
}

/* button */
.sk-indextow-button {
    padding-top: 25px;
}

.sk-index-title {
    margin-bottom: 32px;
}

.sk-index-title .sk-index-title-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sk-index-title .sk-index-title-item span {
    position: relative;
    display: block;
    font-family: var(--fonts-two);
    font-size: 40px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--black);
}
.sk-index-title .sk-index-title-item::after{
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--green);
    margin-top: 15px;
}

.sk-index-title .sk-index-title-text {
    display: block;
    max-width: 1000px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: var(--grey);
    margin: 15px auto 0;
}

.sk-index-lang{ background-color: var(--bgadv); padding: 70px 0; }
.sk-index-lang-title{
	position: relative;
	display: block;
	font-family: var(--fonts-two);
	font-size: 40px;
	line-height: 42px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--green);
	text-align: center;
}
.sk-index-lang-text{
	display: block;
	max-width: 800px;
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	text-align: center;
	color: var(--black);
	margin: 20px auto 0;
}
.sk-index-lang-box{ display: flex; justify-content: center; gap: 25px; padding-top: 30px; }
.sk-index-lang-item{ display: block; }
.sk-index-lang-item a{ display: block; }
.sk-index-lang-item a img{ max-width: 71px; width: 100%; height: auto; display: block; margin: auto; }
.sk-index-lang-item a span{ font-size: 16px; font-weight: 400; color: var(--black); text-align: center; line-height: 25px; margin-top: 12px; display: block; }

.sk-index-cate{ padding: 80px 0; }
.sk-index-cate-box{ padding-top: 15px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.sk-index-cate-item{ border-radius: 3px; border: 1px solid var(--green); background-color: var(--bgadv); flex: 0 0 calc(20% - (20px*4)/5); }
.sk-index-cate-item .sk-index-cate-link{ display: block; width: 100%; height: 100%; overflow: hidden; padding: 12px 0; }
.sk-index-cate-item .sk-index-cate-img{ padding: 15px; width: 100%; height: auto; aspect-ratio: 1; display: flex; justify-content: center; align-items: center; transition: all .6s; }
.sk-index-cate-item .sk-index-cate-img img{ display: block; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; }
.sk-index-cate-item .sk-index-cate-title{ text-align: center; font-size: 16px; color: var(--black); font-weight: 600; line-height: 25px; margin: 10px 0; padding: 0 8px; transition: all .6s }
.sk-index-cate-item .sk-index-cate-more{ display: flex; justify-content: center }
.sk-index-cate-item .sk-index-cate-more span{ padding: 5px 10px; font-size: 14px; line-height: 22px; min-width: 80px; text-align: center; font-weight: 400; background-color: var(--green); color: var(--white); border-radius: 20px; transition: all .8s; }
.sk-index-cate-item:hover .sk-index-cate-link{ background-color: var(--yellow); }
.sk-index-cate-item:hover .sk-index-cate-img{ transform: rotate(0deg) rotateX(0) rotateY(180deg); }
.sk-index-cate-item:hover .sk-index-cate-title{ color: var(--white); }

/* index product */

.sk-index-product {
    display: block;
    padding-block: 70px;
		background-image: url(../images/product-bg.jpg);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
}

.sk-index-product-box{ padding-top: 10px; }
.sk-index-product-item{ background-color: var(--white); position: relative; padding: 30px 20px; margin-bottom: 25px; }
.sk-index-product-item::after{ position: absolute; z-index: 8; content: ""; display: block; width: 100%; height: 0%; top: 0; bottom: 0; margin: auto; left: 0; background-color: var(--green); opacity: 0; transition: all .5s; }
.sk-index-product-item-box{ position: relative; z-index: 9; }
.sk-index-product-title{ display: block; margin-bottom: 12px; }
.sk-index-product-title a{ font-size: 24px; font-weight: 700; line-height: 28px; color: var(--black); transition: all .8s; }
.sk-index-product-cate{ font-size: 16px; font-weight: 400; color: var(--green); transition: all .8s; }
.sk-index-product-img{ display: block; margin: 15px 0 10px; }
.sk-index-product-img a{ display: block; overflow: hidden; }
.sk-index-product-img img{ object-fit: contain; object-position: center; display: block; width: 100%; height: auto; }
.sk-index-product-more{ display: flex; justify-content: flex-start; }
.sk-index-product-more a{ background-color: var(--green); border-radius: 25px; padding: 7px 20px; color: var(--white); transition: all .8s; font-size: 14px; display: flex; justify-content: center; align-items: center; gap: 8px; line-height: 25px; }
.sk-index-product-more a i{ font-size: 14px; }
.sk-index-product-item:hover::after{ height: 100%; opacity: 1; }
.sk-index-product-item:hover .sk-index-product-title a,.sk-index-product-item:hover .sk-index-product-cate{ color: var(--white); }
.sk-index-product-item:hover .sk-index-product-more a{ background-color: var(--yellow); }

/* index blog start */
.sk-index-blog {
    display: block;
    padding: 80px 0;
		background-position: top center;
		background-repeat: no-repeat;
		background-color: var(--bgpro);
}

.sk-index-blog .sk-list-news-item:hover {
    background-color: var(--white);
}

.sk-index-blog .sk-list-news-item::after,.sk-index-blog .sk-list-news-item::before{ height: 2px; }

.sk-index-oem{ padding: 150px 0; background-attachment: fixed; background-position: center; }
.sk-index-oem .sk-main{ display: flex; justify-content: flex-end; align-items: center; }
.sk-index-oem-box{ display: grid; gap: 20px; padding: 25px 0; border-top: 1px solid var(--white); border-bottom: 1px solid var(--white); }
.sk-index-oem-box .sk-index-oemtext{ font-size: 48px; line-height: 48px; font-weight: 500; color: var(--white); text-transform: uppercase; }
.sk-index-oem-box .sk-index-oem-title{ font-size: 108px; font-weight: 500; line-height: 108px; color: var(--yellow); text-transform: uppercase; }

/* index image */
.sk-index-image{ padding-top: 70px; }
.sk-index-image-dot{ display: flex; justify-content: center; }
.sk-index-image-dot-item{ display: block; padding: 10px 12px; background-color: var(--bgadv); font-size: 16px; font-weight: 400; line-height: 25px; cursor: pointer; color: var(--black); width: 33.3333%; max-width: 200px; transition: all .5s; text-align: center; }
.sk-index-image-dot-item:hover,
.sk-index-image-dot-item.active{ background-color: var(--green); color: var(--white); }
.sk-index-image-box{ padding-top: 35px; }
.sk-index-image-list{ display: none; }
.sk-index-image-list.active{ display: block; }
.sk-index-image-list-box{ display: flex; justify-content: space-between; }
.sk-index-image-item{ display: block; padding: 0 10px; flex: 1; }
.sk-index-image-item a{ display: block; overflow: hidden; border: 2px solid var(--green); width: 100%; }
.sk-index-image-item img {
    width: 100%;
    height: auto;
    display: block;
		object-fit: cover;
}

/* index about */

.sk-index-company {
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    background-repeat: no-repeat;
    background-position: left;
    background-color: var(--white);
		background-image: url(../images/about-bg.gif);
		background-attachment: fixed;
}
.sk-index-company-img{ position: relative; }
.sk-index-company-img::before{
	content: '';
	height: 80%;
	width: 50%;
	display: inline-block;
	clear: both;
	background-color: var(--bgadv);
	position: absolute;
	top: -40px;
	right: 0px;
	z-index: 8;
}
.sk-index-company-img-item{ border-bottom-left-radius: 140px; overflow: hidden; width: 94%; position: relative; z-index: 9; }
.sk-index-company-img img{ width: 100%; height: auto; display: block; }

.sk-index-company-info-item {
		font-size: 36px;
		line-height: 36px;
		font-weight: 700;
		color: var(--black);
		font-weight: 600;
		text-transform: capitalize;
		font-family: var(--fonts-two);
		border-bottom: 2px solid var(--black);
		padding-bottom: 20px;
}
.sk-index-company-box {
	display: block;
	padding-top: 80px;
}
.sk-index-company-info-text {
    font-size: 16px;
    line-height: 30px;
    display: block;
    color: var(--black);
    font-weight: 400;
}

.sk-index-company-link {
    display: flex;
    justify-content: flex-start;
    margin-top: 25px;
}

.sk-index-company-link a {
    color: var(--white);
    background-color: var(--green);
		width: 100%;
		max-width: 180px;
		display: block;
		text-align: center;
		padding: 8px 0;
		font-size: 14px;
		line-height: 23px;
		border-radius: 40px;
}

.sk-index-company-link a:hover {
    background-color: var(--yellow);
    color: var(--white);
}
@media screen and (max-width: 1620px) {
	.sk-product-more a{ font-size: 14px; flex: 1; min-width: unset; }
}

@media screen and (max-width: 1440px) {
		.sk-index-slide-item .sk-index-slide-item-info-title{ font-size: 36px; line-height: 42px; }
		.sk-index-oem-box .sk-index-oem-title{ font-size: 96px; line-height: 96px; }
		.sk-index-oem-box .sk-index-oemtext{ font-size: 42px; line-height: 42px; }
		.sk-product-more a{ font-size: 12px; }
		.sk-list-box,.sk-content-show,.sk-related-list{ padding: 30px 20px; }
		.sk-content-show .sk-content-show-title{ font-size: 24px; line-height: 30px; }
    .sk-list-news-item-sortname {
        line-height: 22px;
    }
    .sk-list-news-item-title {
        line-height: 25px;
    }
		.sk-list-news-item-title a{ font-size: 20px; line-height: 25px; }
    .sk-list-news-item-desc {
        line-height: 23px;
    }
		.sk-content-message-title,.sk-contact-title,.sk-contact-title i{ font-size: 30px; line-height: 32px; }
}

@media screen and (max-width: 1360px) {
	.sk-index-product-item{ padding: 25px 15px; }
	.sk-index-company-info-text{ font-size: 14px; line-height: 25px; }
	.sk-list-news-item-title a{ font-size: 18px; }
	.sk-index-oem-box .sk-index-oem-title{ font-size: 84px; line-height: 84px; }
	.sk-index-oem-box .sk-index-oemtext{ font-size: 38px; line-height: 38px; }
}

@media screen and (max-width: 1200px) {
    .sk-index-lang,.sk-index-cate,.sk-index-product,.sk-index-company,.sk-index-blog,.sk-content-about-images,.sk-content-about-pic,.sk-content-about-honor{ padding-block: 60px; }
    .sk-index-oem{ padding: 120px 0; }
    .sk-index-lang-box{ gap: 15px; }
    .sk-index-cate-item .sk-index-cate-img{ padding: 8px; }
    .sk-index-cate-box{ gap: 10px; }
    .sk-index-cate-item{ flex: 0 0 calc(20% - (10px * 4) / 5); }
    .sk-index-company-img-item{ border-bottom-left-radius: 100px; }
    .sk-index-image-item{ padding: 0 8px; }
    .sk-product-show,.sk-product-inquiry, .sk-related-product{ padding: 20px 10px; }
    .sk-products-title{ font-size: 24px; }
    .sk-product-parameter{ font-size: 14px; line-height: 23px; }
    .sk-expmenu-item .sk-expmenu-dt a{ font-size: 14px; }
    .sk-content-about-box .sk-content-page-main{ padding-top: 0px; }
}

@media screen and (max-width: 1024px) {
    .sk-display-pc {
        display: none !important;
    }
    .sk-display-mobile {
        display: block !important;
    }
    .sk-index-lang-item a span{ font-size: 14px; }
    .sk-index-company-box{ padding-top: 36px; }
    .sk-index-company-info{ margin-bottom: 25px; }
    .sk-index-image-item{ padding: 0 5px; }
    .sk-content-left{ margin-top: 30px; }
    .sk-product-summary{ margin-top: 15px; }

    .sk-product-show .sk-display-pc {
        display: none !important;
    }
    .sk-product-show .sk-display-mobile {
        display: block !important;
    }
    .sk-content-main {
        padding: 60px 0;
    }
    .sk-content-contact{ padding: 30px 20px; }
    .sk-content-contact-box{ padding-right: 0; }
    .sk-content-contact>.row>div~div{ border-left: 0; }
    .sk-content-message {
        margin-top: 50px;
        padding-left: 0;
    }
    .sk-page-banner-text{ font-size: 36px; }
    .sk-list-box, .sk-content-show, .sk-related-list{ padding: 20px 15px; }
    .sk-list-news-item-info{ padding: 10px; }
    .sk-list-news-item-title {
        font-size: 20px;
        line-height: 25px;
    }
    .sk-list-news-more a {
        font-size: 14px;
    }
    .sk-list-news-more .iconfont {
        font-size: 18px;
    }
    .sk-list-news-item-desc {
        line-height: 22px;
    }
}
@media screen and (max-width: 868px) {
    .sk-index-slide{ height: calc(100vh - 62px); }
    .sk-index-lang-box{ flex-wrap: wrap; }
    .sk-index-oem-box .sk-index-oem-title{ font-size: 72px; line-height: 72px; }
    .sk-page-crumb-nav a{ font-size: 14px; padding: 16px 5px; }
    .sk-page-crumb-nav{ gap: 12px; }
    .sk-list-box, .sk-content-show, .sk-related-list{ padding: 15px 10px; }
    .sk-index-slide-item .sk-index-slide-item-info-title{ padding: 0 12px; font-size: 32px; line-height: 36px; }
}   

@media screen and (max-width: 768px) {
    .sk-index-cate-item{ flex: 0 0 calc(33.33333% - (10px * 2) / 3); }
    .sk-index-cate-box{ padding-top: 0; }
    .sk-index-product-item{ padding: 20px 10px; }
    .sk-index-company-img-item{ width: 97%; }
    .sk-index-company-img::before{ top: -25px; }
    .sk-content-about-images .sk-list-images-box{ margin-bottom: 15px; }
    .sk-product-item {
        margin-bottom: 20px;
    }
    .sk-product-con .sk-product-con-link{ padding: 8px; }
    .sk-list-news-item-info {
        padding: 12px;
    }
    .sk-list-news-item {
        margin-bottom: 25px;
    }
    .sk-content-show-description{ font-size: 14px; }
    .sk-index-company-img-item{ border-bottom-left-radius: 60px; }
    .sk-footer-top-logo{ width: 100%; }
    .sk-content-about-img img{ height: auto; }
}

@media screen and (max-width: 576px) {
    .sk-index-slide-item .sk-index-slide-item-info-title{ font-size: 28px; line-height: 30px; }
    .sk-products-title {
        font-size: 24px;
    }
    .sk-index-title .sk-index-title-item span,.sk-index-lang-title{ font-size: 28px; line-height: 30px; }
    .sk-index-lang-text{ font-size: 18px; }
    .sk-index-cate-item{ flex: 0 0 calc(50% - (10px * 1) / 2) }
    .sk-index-image-list-box{ flex-wrap: wrap; gap: 10px; }
    .sk-index-image-item{ flex: 0 0 calc(50% - (10px * 1) / 2); padding: 0; }
    .sk-list-news-item-info{ padding: 12px 0 0; }
    .sk-index-oem-box .sk-index-oem-title{ font-size: 64px; line-height: 65px; }
    .sk-index-image{ padding-top: 40px; }
    .sk-product-con .sk-product-con-link{ flex: 1; }
    .sk-content-main .sk-main{ width: 100%; }
    .sk-list-product{ padding: 0 10px; }
    .sk-product-inquiry, .sk-related-product{ margin-top: 40px; }
    .sk-content-show-description{ padding: 8px; }
    .sk-content-contact{ padding: 20px 10px; }
    .sk-contact-item{ gap: 15px; }
}