﻿@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%;
}

.sk-header-top{ background-color: var(--bgpro); padding: 10px 0; }
.sk-header-top .sk-main{ display: flex; justify-content: space-between; align-items: center; }
.sk-header-top-text{ font-size: 14px; color: var(--black); line-height: 25px; }
.sk-header-top-nav{ display: flex; justify-content: flex-start; align-items: center; gap: 15px; }
.sk-header-top-nav a{ font-size: 14px; color: var(--black); line-height: 25px; }
.sk-header-top-nav a:hover{ color: var(--yellow); }
.sk-header-top-nav .sk-header-top-nav-tel{ font-weight: bold; color: var(--yellow); }

.sk-header-box {
    position: relative;
}

.sk-header-line{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.sk-header-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    gap: 15px;
}

.sk-header-logo a {
    display: block;
    height: 75px;
	flex-shrink: 0;
}

.sk-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sk-header-info{ display: block; border-left: 1px solid var(--border); padding-left: 15px; }
.sk-header-info-text{ display: flex; justify-content: flex-start; gap: 8px; }
.sk-header-info-text p{ font-size: 16px; line-height: 25px; }
.sk-header-info-text span{ color: var(--green); }
.sk-header-info-year{ background-color: var(--yellow); color: var(--white); padding: 3px 10px; line-height: 25px; font-weight: bold; border-radius: 3px; font-size: 16px; }
.sk-header-desc{ font-size: 16px; line-height: 25px; display: block; padding-top: 5px; }

.sk-header-contact{ display: flex; justify-content: flex-start; gap: 15px; }
.sk-header-contact-core{ width: 55px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.sk-header-contact-core img{ width: 100%; display: block; }
.sk-header-contact-tel{ display: grid; align-items: center; }
.sk-header-contact-tel span{ font-size: 20px; color: var(--green); line-height: 26px; }
.sk-header-contact-tel p{ line-height: 26px; padding-top: 5px; }
.sk-header-contact-tel a{ font-weight: bold; font-size: 22px; }
.sk-header-contact-tel a:hover{ color: var(--yellow); }

.sk-header-search{ flex-shrink: 0; width: 100%; max-width: 500px; }
.sk-header-search-box{ display: flex; justify-content: flex-start; align-items: center; width: 100%; }
.sk-header-search-input{ width: 100%; flex: 1; height: 46px; padding: 3px 10px; font-size: 16px; line-height: 46px; border: 2px solid var(--yellow); }
.sk-header-search-input:focus{ outline: none; border-color: var(--yellow); }
.sk-header-search-btn{ width: 65px; height: 46px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; border: 0; background-color: var(--yellow); cursor: pointer; }
.sk-header-search-btn span{ font-size: 20px; color: var(--white); }
.sk-header-search-text{ display: flex; justify-content: flex-start; gap: 8px; padding-top: 8px; }
.sk-header-search-text a{ font-size: 14px; line-height: 25px; color: var(--grey); }
.sk-header-search-text a:hover{ color: var(--yellow); }

/* navigation */
.sk-navigation {
    display: block;
    background-color: var(--grey);
}

.sk-navigation-box {
    display: flex;
    justify-content: space-between;
    gap: 5px;
		position: relative;
}

.sk-navigation-product{ position: relative; }
.sk-navigation-product-title{ line-height: 50px; background-color: var(--green); width: 260px; padding: 0 15px; color: var(--white); cursor: pointer; display: flex; justify-content: flex-start; align-items: center; gap: 10px; }
.sk-navigation-product-title i{ font-size: 20px; }
.sk-navigation-product-title span{ font-size: 17px; }
.sk-navigation-product-box{ position: absolute; top: 100%; left: 0px; z-index: 1000; background-color: var(--bgadv); width: 260px; height: 490px; display: none; }
.sk-navigation-product-list{ padding: 15px 0; height: 100%; }
.sk-navigation-product-box-item{ display: block; }
.sk-navigation-product-box-item-link{
	  padding: 0 15px;
    line-height: 36px;
		font-size: 15px;
		display: block;
}
.sk-navigation-product-box-child{ display: none; position: absolute; left: 100%; top: 0; border: 1px solid var(--grey); width: 1000px; height: 100%; background-color: var(--white); padding: 15px; overflow-y: auto; }
.sk-navigation-product-box-child-item{ margin-bottom: 20px; }
.sk-navigation-product-box-child-link{ display: block; margin-bottom: 3px; }
.sk-navigation-product-box-child-link a{ font-size: 15px; line-height: 26px; font-weight: 600; display: flex; justify-content: flex-start; gap: 5px; }
.sk-navigation-product-box-child-link a i{ font-size: 14px; }
.sk-navigation-product-box-child-box{ display: flex; justify-content: flex-start; gap: 5px; flex-wrap: wrap; }
.sk-navigation-product-box-child-box-link{ font-size: 14px; line-height: 22px; color: var(--grey); display: block; }
.sk-navigation-product-box-child-box-link~.sk-navigation-product-box-child-box-link{ border-left: 1px solid var(--border); padding-left: 5px; }
.sk-navigation-product-box-item:hover .sk-navigation-product-box-child{ display: block; }
.sk-navigation-product-box-item:hover .sk-navigation-product-box-item-link{ color: var(--yellow); background-color: var(--white); }
.sk-navigation-product-box.active,
.sk-navigation-product:hover .sk-navigation-product-box{ display: block; }

.sk-navigation-box .sk-navigation-li {
    position: relative;
		flex: 1;
}

.sk-navigation-box .sk-navigation-link {
    font-size: 16px;
    color: var(--white);
    display: flex;
    justify-content: center;
    line-height: 50px;
    transition: all 500ms ease;
}

.sk-navigation-box .sk-navigation-link i {
    font-size: 15px;
    margin-left: 5px;
}

.sk-navigation-box .sk-navigation-sub {
    display: block;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 1000;
    background-color: var(--bgpro);
    width: 240px;
		box-shadow: 0px 1px 3px 1px rgba(233, 233, 233, .3);
		height: 332px;
    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 {
    display: block;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link {
    padding: 10px 15px;
    color: var(--grey);
    font-weight: 400;
    font-size: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
		gap: 5px;
		width: 240px;
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link i {
    font-size: 15px;
}

.sk-navigation-child {
    left: 100%;
    opacity: 1;
    position: absolute;
    top: 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: visible;
    text-align: left;
    width: 500px;
    overflow-y: auto;
	max-height: 350px;
    display: none;
}



.sk-navigation-child-box{ padding: 8px; display: flex; justify-content: space-between; flex-wrap: wrap; }

.sk-navigation-child .sk-navigation-child-li {
    display: block;
    position: relative;
		width: 48%;
}

.sk-navigation-child .sk-navigation-child-link {
    color: var(--grey);
    padding: 5px 10px;
    font-size: 14px;
    overflow: hidden;
    display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 5px;
    font-weight: 400;
    transition: all .5s;
}

.sk-navigation-child .sk-navigation-child-link i{ font-size: 14px; }

.sk-navigation-box .sk-navigation-link.active,
.sk-navigation-box .sk-navigation-li:hover .sk-navigation-link {
    color: var(--white);
    background-color: var(--yellow);
}

.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link:hover ,.sk-navigation-sub-li.active .sk-navigation-sub-link{
    color: var(--black);
		background-color: var(--bgadv);
}

.sk-navigation-sub-li.active .sk-navigation-child{ display: block; }

.sk-navigation-child .sk-navigation-child-link:hover{ color: var(--yellow); }

.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-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    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;
    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;
		display: block;
}

.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: 42px;
    height: 42px;
    line-height: 42px;
    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: 30px;
    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: 0px 12px;
    line-height: 48px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border);
}

.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: 42px;
    font-size: 14px;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.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);
    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: 1200px) {
    .sk-navigation-box .sk-navigation-link {
        font-size: 16px;
    }
    .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-navigation-box .sk-navigation-link {
			font-size: 15px;
	}
}

@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-crumb {
    background-color: var(--white);
}

.sk-page-crumb-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sk-page-crumb-position{ display: flex; justify-content: flex-end; align-items: center; gap: 5px; padding: 16px 0px;
    color: var(--grey);
    font-size: 14px;
    line-height: 25px;
}

.sk-page-crumb-position i {
    font-size: 15px;
    color: var(--grey);
}

.sk-page-crumb-position a {
    color: var(--grey);
}

.sk-page-crumb-position a:hover {
    color: var(--yellow);
}
@media screen and (max-width: 1200px) {
	.sk-page-crumb-nav a{ font-size: 14px; padding: 16px 5px; }
    .sk-page-crumb-nav{ gap: 12px; }
}

@media screen and (max-width: 768px) {
    .sk-page-crumb-nav { display: none; }
    .sk-page-crumb{ border-top: 1px solid var(--border); }
    .sk-page-crumb-position{ padding: 12px 0; }
}

/* crumbs end */

/* footer */

.sk-footer {
    background-color: var(--bgadv);
    border-top: 8px solid var(--green);
}
.sk-footer-top{ border-bottom: 1px solid var(--light-gray); padding: 30px 0; }
.sk-footer-top-row{  display: flex; justify-content: space-between; align-items: center; gap: 100px; }
.sk-footer-top-logo{ display: block; flex-shrink: 0; }
.sk-footer-top-logo img{ display: block; max-width: 100%; height: 80px; }
.sk-footer-top-left{ display: flex; justify-content: space-between; align-items: center; flex: 1; width: 100%; }
.sk-footer-box-contact-item{ display: flex; justify-content: flex-start; align-items: flex-start; gap: 15px; }
.sk-footer-box-contact-item i{ font-size: 32px; line-height: 32px; color: var(--yellow); display: flex; justify-content: center; align-items: center; width: 54px; height: 54px; overflow: hidden; border-radius: 50%; border: 2px solid var(--yellow); }
.sk-footer-box-contact-item img{ width: 100px; display: block; }
.sk-footer-box-contact-info{ display: grid; justify-items: flex-start; gap: 5px; }
.sk-footer-box-contact-info p{
    font-size: 18px;
    line-height: 25px;
    color: var(--black);
    font-weight: 500;
}
.sk-footer-box-contact-info span{
    font-size: 14px;
    color: var(--black);
    line-height: 23px;
    transition: all .6s;
}

.sk-footer-box {
    padding: 50px 0 30px;
}

.sk-footer-box-title {
    text-align: left;
    color: var(--black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 18px;
    position: relative;
}

.sk-footer-box-nav {
    display: block;
}

.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: 15px;
    color: var(--grey);
    transition: all .8s;
    font-weight: 400;
}

.sk-footer-box-nav-box li:hover a {
    color: var(--yellow);
}

.sk-footer-box-nav-box li:hover {
    padding-left: 10px;
}

.sk-footer-contact-item { display: flex; justify-content: flex-start; align-items: flex-start; margin-block-end: 8px; }
.sk-footer-contact-item p{ font-size: 15px; line-height: 22px; color: var(--black); font-weight: 500; flex-shrink: 0; }
.sk-footer-contact-item span a,.sk-footer-contact-item span{ font-size: 15px; line-height: 22px; color: var(--black); font-weight: 400; transition: 0.5s all ease; }
.sk-footer-contact-item span a:hover{ color: var(--yellow); }

.sk-footer-box-phone{ display: grid; gap: 10px; }
.sk-footer-box-phone i{ font-size: 36px; line-height: 36px; margin: auto; display: block; text-align: center; color: var(--yellow); }
.sk-footer-box-phone p{ text-align: center; font-size: 16px; }
.sk-footer-box-phone-num{ text-align: center; }
.sk-footer-box-phone-num a{ font-size: 24px; line-height: 32px; color: var(--yellow); font-weight: 600; }

.sk-footer-box-cade{ display: grid; justify-items: center; justify-content: end; gap: 8px; }
.sk-footer-box-cade img{ display: block; max-width: 130px; height: auto; }
.sk-footer-box-cade p{ text-align: center; font-size: 14px; color: var(--grey); line-height: 25px; }

.sk-footer-friendship{  }
.sk-footer-friendship-box{ border-top: 1px solid var(--light-gray); padding: 10px 0; display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 5px;  }
.sk-footer-friendship-box span{ font-size: 14px; line-height: 25px; color: var(--grey); }
.sk-footer-friendship-box a{ font-size: 14px; line-height: 25px; color: var(--grey); transition: all .8s; }
.sk-footer-friendship-box a:hover{ color: var(--yellow); }

/* copyright */

.sk-footer-copyright {
    padding-bottom: 20px;
}

.sk-footer-copyright-box{ display: flex; justify-content: flex-start; gap: 10px; align-items: center; border-top: 1px solid var(--light-gray); padding-top: 10px; }

.sk-footer-copyright-text {
    color: var(--grey);
    font-size: 14px;
    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: 14px;
    line-height: 25px;
    font-weight: 400;
}

.sk-footer-copyright-nav a:hover {
    color: var(--yellow);
}

/* 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);
    transition: all .8s;
}

.sk-meau-top i {
    font-size: 20px;
}
.sk-meau-top:hover {
    background-color: var(--yellow);
}

@media screen and (max-width: 1200px) {
    .sk-footer-box-nav {
        padding-inline: 0px;
    }
	.sk-footer-top-row{ gap: 30px; }
}

@media screen and (max-width: 1024px) {
	.sk-footer-top-row{ flex-direction: column; }
    .sk-footer-box {
        padding-block: 40px;
    }
    .sk-footer-box-nav, .sk-footer-box-contact {
        margin-bottom: 30px;
    }
    .sk-footer-copyright-box,.sk-footer-friendship-box{ flex-wrap: wrap; }
}

@media screen and (max-width: 768px) {
    .sk-footer-box-title {
        font-size: 18px;
    }
    .sk-footer-box-nav-box li span a{ font-size: 14px; }
    .sk-footer-top-left{ flex-wrap: wrap; gap: 20px; justify-items: center; align-items: flex-start; }
    .sk-footer-box-contact-item{ width: calc((100% - 20px)/2); }
}

@media screen and (max-width: 576px) {
    .sk-footer-copyright {
        padding-block: 15px;
    }
    .sk-footer-copyright-box{ flex-direction: column; gap: 8px; }
    .sk-footer-box-contact-item{ width: 100%; }
}

/* footer end */

/* right start */
.sk-content-left{
    position: relative;
}
.sk-content-left-box {
    z-index: 10;
    background-color: var(--white);
    overflow: hidden;
}

.sk-content-left-box-title {
    font-size: 20px;
    line-height: 1;
    position: relative;
    color: var(--white);
    padding: 15px 20px;
    background-color: var(--black);
}

.sk-content-left-box-nav {
    display: block;
    padding: 10px 20px;
}

.sk-expmenu-item .sk-expmenu-dt {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    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(--yellow);
}

.sk-expmenu-item:hover .sk-expmenu-dt a,
.sk-expmenu-item:hover .sk-expmenu-dt span {
    color: var(--yellow);
}

.sk-content-left-box-nav .sk-expmenu-item:last-child {
    margin-bottom: 0;
}

.sk-content-left-contact{ display: flex; justify-content: flex-start; box-shadow: 0 0 10px 5px var(--light-gray); align-items: center; gap: 12px; margin-top: 30px; padding: 15px; border-radius: 15px; background-color: var(--yellow); }
.sk-content-left-contact-icon{ flex-shrink: 0; }
.sk-content-left-contact-icon i{ font-size: 48px; line-height: 54px; color: var(--white); }
.sk-content-left-contact-tel{ flex: 1; }
.sk-content-left-contact-text{ font-size: 18px; font-weight: bold; line-height: 30px; color: var(--white); margin-bottom: 5px; }
.sk-content-left-contact-number{ font-size: 24px; line-height: 25px; color: var(--white); }

/* content start */

.sk-content {
    display: block;
		background-color: var(--bgpro);
}

.sk-content-box{ background-color: var(--bgpro); }

.sk-content-main {
    padding: 60px 0;
    position: relative;
}

/* show start */
.sk-content-show {
    display: block;
    background-color: var(--white);
    padding: 25px;
}

.sk-content-show .sk-content-show-title {
    font-size: 26px;
    line-height: 36px;
    color: var(--black);
    font-weight: 600;
    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(--bgpro); padding: 15px; font-size: 14px; color: var(--black); margin-bottom: 30px; }

.sk-content-show .sk-content-page-main {
    padding: 0px;
}

.sk-content-show-prenext {
    display: block;
    
    border-radius: 3px;
    margin-top: 36px;
}

.sk-content-show-prenext p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    padding: 12px 15px;
    background-color: var(--bgpro);
}

.sk-content-show-prenext p~p {
    margin-top: 12px;
}
.sk-content-show-prenext p a:hover{ color: var(--yellow); }

.sk-related-list{ margin-top: 25px; background-color: var(--white); padding: 40px 30px; }
.sk-related-list-title{ font-size: 24px; 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: 25px;
}
.sk-list-images-box {
    margin-bottom: 15px;
}

.sk-list-images-box a {
    display: block;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.sk-list-images-box 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(41, 41, 41, 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: 14px;
    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;
}

.sk-content-page-main p{ max-width: 100%; width: auto !important; }

/* page end */

/* about start */

.sk-content-about {
    background-position: center bottom;
    padding: 60px 0;
}

.sk-content-about-box{ display: flex; justify-content: space-between; }

.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: auto;
}

.sk-content-about-images{ background-attachment: fixed; padding: 70px 0; }
.sk-content-about-images .sk-list-images-box{ margin: 0; padding: 1px; 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: 1px 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: 70px 0; background-attachment: fixed; }

/* about end */
/* contact start */

.sk-content-contact {
    display: block;
    background-position: center bottom;
    background-color: var(--white);
    padding: 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: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}
.sk-contact-title i{ font-size: 30px; }

.sk-contact-text {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.5;
}

.sk-content-contact .sk-content-contact-list {
    display: block;
    padding-top: 15px;
}

.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: 38px; color: var(--yellow); 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: 16px;
    color: var(--black);
    font-weight: 400;
    line-height: 28px;
}
.sk-contact-item-info a{
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
    line-height: 28px;
}

.sk-contact-item-info a:hover {
    color: var(--yellow);
}

/* contact end */

/* message start */

.sk-content-message {
    display: block;
    padding-left: 30px;
}

.sk-content-message-title{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--black);
    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: 14px;
    padding: 9px 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(--yellow);
}

.sk-content-message-form .sk-content-message-form-submit {
    display: flex;
    justify-content: flex-start;
    padding-top: 10px;
}

.sk-content-message-form .sk-content-message-form-button {
    width: auto;
    transition: all .8s;
    border: 1px solid var(--grey);
    background: var(--grey);
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    padding: 8px 60px;
    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: 25px;
    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(--yellow);
    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;
}
.sk-related-list-box .sk-list-news-item-info,.sk-list-images .sk-list-news-item-info{ padding-top: 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 {
    
}

.sk-list-news-item-title a {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    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-top: 10px;
    color: var(--grey);
    font-size: 12px;
    line-height: 24px;
    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-top: 10px;
}

.sk-list-news-more a {
    font-size: 12px;
    color: var(--grey);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 25px;
    transition: all .8s;
    text-decoration: none;
    border: 1px solid var(--light-gray);
    padding: 4px 18px;
    border-radius: 5px;
}

.sk-list-news-item .sk-list-news-more a:hover {
    color: var(--white);
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.sk-list-news-more .iconfont {
    font-size: 16px;
}

.sk-list-news-item:hover .sk-list-news-item-title a {
    color: var(--yellow);
}
/* 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;
		aspect-ratio: 4 / 3;
}

.sk-product-item .sk-product-img img {
    width: 100%;
    height: 100%;
		object-fit: contain;
    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: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 25px;
    color: var(--black);
    transition: all .6s;
}

.sk-product-item:hover .sk-product-title a {
    color: var(--yellow);
}

.sk-product-more {
    padding: 15px 8px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.sk-product-more a {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 25px;
    color: var(--grey);
    background-color: var(--border);
    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:hover .sk-product-more a {
    background-color: var(--yellow);
    color: var(--white);
}

/* 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;
    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(--yellow);
    outline: 0px solid var(--yellow);
    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: calc((100% - 20px)/2);
    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(--yellow);
}
/* product images end */

.sk-products-title {
    font-size: 24px;
    color: var(--black);
    font-family: var(--fonts-two);
    font-weight: 600;
    margin-bottom: 15px;
}

.sk-product-parameter {
    font-size: 14px; 
    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: 10px; }
.sk-product-category i{ font-size: 18px; font-weight: 600; color: var(--black); line-height: 30px; }
.sk-product-category span{ font-size: 14px; font-weight: 400; color: var(--black); }
.sk-product-category a{ font-size: 16px; color: var(--black); line-height: 23px; }
.sk-product-category a:hover{ color: var(--yellow); }

.sk-product-whatsapp{ display: flex; justify-content: flex-start; align-items: center; gap: 10px; margin-bottom: 10px; }
.sk-product-whatsapp i{ font-size: 18px; font-weight: 600; color: var(--black); line-height: 30px; }
.sk-product-whatsapp p{ font-size: 14px; 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(--green); line-height: 26px; transition: all .8s; }
.sk-product-whatsapp .sk-product-whatsapp-link a:hover{ color: var(--yellow); }

.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(--grey);
    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);
}

.sk-product-tip{ border: 1px solid var(--border); background-color: var(--bgpro); }
.sk-product-tip-logo{ width: 100%; padding: 10px; }
.sk-product-tip-logo img{ width: 100%; height: auto; display: block; }
.sk-product-tip-text{ padding: 10px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.sk-product-tip-text-item{ width: calc((100% - 10px)/2); border: 1px solid var(--border); padding: 5px; display: flex; justify-content: center; align-items: center; gap: 5px; }
.sk-product-tip-text-item i{ font-size: 14px; font-weight: 400; color: var(--black); line-height: 25px; flex-shrink: 0; }
.sk-product-tip-text-item span{ font-size: 12px; font-weight: 400; color: var(--black); line-height: 25px; }
.sk-product-tip-img{ width: 100%; margin: 3px 0; padding: 10px; }
.sk-product-tip-img img{ width: 100%; height: auto; display: block; }
.sk-product-tip-info{ padding: 13px 10px; border-top: 1px solid var(--border); }
.sk-product-tip-info h3{ font-size: 16px; line-height: 25px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.sk-product-tip-info p{ font-size: 12px; line-height: 25px; font-weight: 400; color: var(--grey); }

/* product show */

.sk-product-show {
    padding: 25px;
    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: 25px;
    margin-top: 20px;
    background-color: var(--white);
}

/* product end */


/* banner start */
.sk-index-slide {
    display: block;
}
.sk-index-slide-list{ height: 490px; padding: 10px 0px 0 270px; display: flex; justify-content: space-between; }

.sk-index-slide .sk-index-slide-box {
		position: relative;
		height: 100%;
		width: calc(100% - 310px);
}

.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; }

/* 定义动画 */

@keyframes slideZoom {
    0%,
    100% {
        transform: scale(1);
        /* 初始状态和结束状态的缩放比例 */
    }
    50% {
        transform: scale(1.2);
        /* 放大状态的缩放比例 */
    }
}

.sk-index-slide .sk-index-slide-box .owl-nav {
		display: block;
}

.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(5, 3, 117, 0.2);
    border: 1px solid var(--white);
    border-radius: 3px;
    transition: all .8s;
    color: var(--white);
    opacity: .8;
		position: absolute;
		left: 10px;
		z-index: 20;
		top: calc((100% - 50px)/2);
}
.sk-index-slide .sk-index-slide-box .owl-nav .owl-next{ right: 10px; left: unset; }

.sk-index-slide .owl-nav .owl-prev::after,
.sk-index-slide .owl-nav .owl-next::after {
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 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: 10px;
    left: 0;
		right: 0;
    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(--green);
    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);
}

.sk-index-slide-right{ width: 300px; flex-shrink: 0; border: 1px solid var(--border); }
.sk-index-slide-special{  }
.sk-index-slide-special-title{ padding: 8px; font-size: 15px; line-height: 26px; font-weight: 600; color: var(--black); }
.sk-index-slide-special-box{ border-top: 1px solid var(--border); padding: 8px; }
.sk-index-slide-special-item{ margin-bottom: 6px; padding-bottom: 6px; border-bottom: 1px dashed var(--border); }
.sk-index-slide-special-item-link{ display: flex; justify-content: flex-start; align-items: center; gap: 10px; }
.sk-index-slide-special-item-img{ width: 72px; height: 43px; overflow: hidden; flex-shrink: 0; }
.sk-index-slide-special-item-img img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.sk-index-slide-special-item-title{ font-size: 12px; line-height: 24px; font-weight: 500; color: var(--black); overflow: hidden; transition: all .8s;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; }
.sk-index-slide-special-item:hover .sk-index-slide-special-item-title{ color: var(--yellow); }

.sk-index-process{ padding: 70px 0; background-color: var(--green); background-image: url(../images/line02.png); background-position: center 65%; background-repeat: no-repeat; }
.sk-index-process .sk-index-title{ flex-direction: column; justify-content: center; gap: 15px; }
.sk-index-process .sk-index-title .sk-index-title-item span{ color: var(--white); }
.sk-index-process .sk-index-title .sk-index-title-item::after { background-color: var(--yellow); }
.sk-index-process .sk-index-title .sk-index-title-text{ color: var(--white); }
.sk-index-process-box{ display: flex; justify-content: space-between; }
.sk-index-process-item{ display: block; }
.sk-index-process-item-icon{ border-radius: 50%; background-color: rgba(255, 255, 255, 0.3); padding: 10px; overflow: hidden; width: 138px; aspect-ratio: 1; display: flex; justify-content: center; align-items: center; }
.sk-index-process-item-icon i{ display: flex; justify-content: center; align-items: center; width: 96%; height: 96%; font-size: 64px; line-height: 1; color: var(--grey); background-color: var(--white); border-radius: 50%; overflow: hidden; }
.sk-index-process-item-text{ text-align: center; font-size: 16px; color: var(--white); line-height: 30px; padding-top: 10px; }


.sk-index-title {
    margin-bottom: 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
}

.sk-index-title .sk-index-title-item {
    display: flex;
    justify-content: center;
    align-items: center;
		gap: 10px;
}
.sk-index-title .sk-index-title-item::after,.sk-index-title .sk-index-title-item::before{
    content: "";
		display: block;
    width: 8px;
    height: 8px;
    background-color: var(--yellow);
		transform: rotate(45deg);
}

.sk-index-title .sk-index-title-item span {
    position: relative;
    display: block;
    font-family: var(--fonts-two);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--yellow);
}

.sk-index-title .sk-index-title-link {
    line-height: 25px;
		font-weight: 500;
		color: var(--grey);
		font-size: 14px;
}
.sk-index-title .sk-index-title-link i{
		font-size: 14px;
}

.sk-index-title .sk-index-title-link:hover{ color: var(--yellow); }

.sk-index-product {
    display: block;
    padding-block: 50px;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
}

.sk-index-white .sk-main{ background-color: rgb(254, 139, 0 , .09); padding: 20px; }

.sk-index-product .sk-product-item{ padding: 8px; }
.sk-index-product .sk-product-item .sk-product-title{ padding: 10px 0 0; border-bottom: 0; }

.sk-index-information{ padding: 60px 0; background-color: var(--bgpro); }
.sk-index-information-row{ display: flex; justify-content: space-between; }
.sk-index-information-list{ width: calc((100% - 40px)/3); background-color: var(--white); }
.sk-index-information-title{ display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-bottom: 1px solid var(--border) }
.sk-index-information-title span{ font-size: 16px; font-weight: 500; }
.sk-index-information-title a{ font-size: 15px; display: flex; justify-content: flex-start; align-items: center; gap: 3px; }
.sk-index-information-title a i{ font-size: 14px; }
.sk-index-information-box{ padding: 10px; }
.sk-index-information-item{ margin-bottom: 6px; padding-bottom: 6px; border-bottom: 1px dashed var(--border); }
.sk-index-information-item a{ font-size: 14px; line-height: 24px; color: var(--grey); display: flex; justify-content: flex-start; align-items: center; gap: 3px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.sk-index-information-item a:hover{ color: var(--yellow); }

.sk-index-solution{ padding: 60px 0; }
.sk-index-title-two{ display: flex; justify-content: flex-start; align-items: center; gap: 60px; }
.sk-index-title-two-item{ display: flex; justify-content: flex-start; align-items: center; gap: 8px; }
.sk-index-title-two-item::before{ content: ""; width: 3px; height: 24px; background-color: var(--yellow); }
.sk-index-title-two-item span{ font-size: 20px; font-weight: 500; line-height: 32px; }
.sk-index-title-two-nav{ display: flex; justify-content: flex-start; flex: 1; gap: 20px; }
.sk-index-title-two-nav-item{ display: block; font-size: 14px; font-weight: 400; line-height: 25px; padding-bottom: 5px; cursor: pointer; color: var(--grey); transition: all .8s; text-align: center; position: relative; }
.sk-index-title-two-nav-item::after{ content: ""; position: absolute; bottom: 0px; left: 0; width: 100%; height: 2px; background-color: transparent; transition: all .8s; }
.sk-index-title-two-nav-item:hover::after,
.sk-index-title-two-nav-item.active::after{ background-color: var(--yellow); }
.sk-index-title-two-nav-item:hover,
.sk-index-title-two-nav-item.active{ border-color: var(--yellow); color: var(--yellow); }
.sk-index-solution-box{ padding-top: 25px; }
.sk-index-solution-list{ display: none; }
.sk-index-solution-list.active{ display: block; }
.sk-index-solution-list-box{ display: block; }

.sk-index-solution-item{ display: block; margin-bottom: 20px; box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }
.sk-index-solution-item a{ display: block; width: 100%; }
.sk-index-solution-item .sk-index-solution-item-img{ display: block; overflow: hidden; border: 1px solid var(--border); width: 100%; aspect-ratio: 4 / 3; }
.sk-index-solution-item img {
    width: 100%;
    height: 100%;
    display: block;
		object-fit: contain;
}
.sk-index-solution-item-title{ padding: 12px 10px; text-align: center; font-size: 15px; line-height: 25px; }

/* 产品 */
.sk-index-leftpro-item{ margin-top: 10px; padding-bottom: 10px; display: block; border-bottom: 1px dashed var(--border); }
.sk-index-leftpro-item-link{ display: flex; justify-content: flex-start; gap: 5px; }
.sk-index-leftpro-item-img{ display: block; overflow: hidden; border: 1px solid var(--border); width: 130px; aspect-ratio: 4/3; background-color: var(--white); }
.sk-index-leftpro-item-img img{ width: 100%; height: 100%; display: block; object-fit: contain; }
.sk-index-leftpro-item-title{ display: flex; justify-content: flex-start; align-items: flex-start; flex-direction: column; gap: 6px; flex: 1; }
.sk-index-leftpro-item-title span{ font-size: 14px; overflow: hidden; line-height: 23px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; }
.sk-index-leftpro-item-title-sort{ font-size: 12px; color: var(--yellow); font-weight: 400; }

.sk-index-life{ padding: 60px 0; }
.sk-index-life .sk-index-leftpro-item{ border-bottom: 0; background-color: var(--bgpro); padding: 8px; margin-top: 0; margin-bottom: 20px; }


.sk-index-information-product{ background-color: var(--bgpro); }
.sk-index-solution-pro{ padding: 30px 0 0; }
.sk-index-product-isrecommend{ padding-bottom: 50px; }
.sk-index-product-isrecommend .sk-index-title{ background-color: var(--bgpro); padding: 10px; }
.sk-index-product-isrecommend .sk-product-item{ margin-bottom: 0; }

.sk-index-case { padding: 70px 0; }
.sk-index-case .sk-index-title{ justify-content: center; }
.sk-index-case .sk-index-title .sk-index-title-item span{ font-size: 24px; font-weight: 600; }
.sk-index-case-box{ padding: 10px 0 30px; }
.sk-list-case-item{ background-color: var(--bgpro); padding: 2px; transition: all .8s; }
.sk-list-case-item-img{  display: block; }
.sk-list-case-item-img a{ display: block; aspect-ratio: 4/3; overflow: hidden; }
.sk-list-case-item-img a img{ width: 100%; height: 100%; display: block; object-fit: cover; }
.sk-list-case-item-info{ background-color: var(--white); padding: 15px 8px; }
.sk-list-case-item-title{ margin-bottom: 15px; }
.sk-list-case-item-title a{ font-size: 18px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; display: block; }
.sk-list-case-item-desc{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient: vertical;
	font-size: 14px;
	line-height: 25px;
	color: var(--grey);
}
.sk-list-case-item-sortname{ padding-top: 20px; font-size: 14px; color: var(--grey); }
.sk-list-case-item-sortname i{ font-size: 14px; }
.sk-list-case-item:hover{ background-color: var(--yellow); }
.sk-list-case-item:hover .sk-list-case-item-title a{ color: var(--yellow); }

.sk-index-advguang{ padding: 10px 0; }
.sk-index-slide-adv{ display: block; }
.sk-index-advguang-item img{ width: 100%; height: auto; display: block; }


/* 服务项目 */
.sk-index-cate{ padding: 80px 0 0; }
.sk-index-cate-box{ padding-top: 15px; display: flex; justify-content: space-between; flex-wrap: wrap; }
.sk-index-cate-item{ border-radius: 3px; background-color: var(--bgpro); flex: 0 0 calc(20% - (25px*4)/5);
	-webkit-transition: all .5s ease-out;
	-moz-transition: all .5s ease-out;
	transition: all .5s ease-out;
	padding: 35px 0px 25px;
}
.sk-index-cate-item .sk-index-cate-img{ width: 100%; display: flex; justify-content: center; text-align: center; }
.sk-index-cate-item .sk-index-cate-img span{ width: 155px; height: 155px; padding: 12px; aspect-ratio: 1; line-height: 1.5; display: flex; justify-content: center; align-items: center; font-size: 26px; color: var(--white); background-color: var(--green); border-radius: 50%; overflow: hidden; }
.sk-index-cate-item .sk-index-cate-title{ text-align: center; font-size: 14px; color: var(--grey); line-height: 25px; margin-top: 20px; padding: 0 20px; transition: all .6s }
.sk-index-cate-item:hover .sk-index-cate-title{ color: var(--black); }
.sk-index-cate-item:hover { -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
}

/* index about */

.sk-index-company {
	overflow: hidden;
	position: relative;
	padding: 80px 0;
	background-repeat: no-repeat;
	background-position: left;
	background-image: url(../images/about-bg.webp);
	background-color: var(--white);
	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: 130px; overflow: hidden; width: 94%; position: relative; z-index: 9; }
.sk-index-company-img img{ width: 100%; height: 350px; display: block; object-fit: cover; }

.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: 45px;
}
.sk-index-company-info-text {
    font-size: 14px;
    line-height: 28px;
    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: 150px;
		display: block;
		text-align: center;
		padding: 10px 0;
		font-size: 14px;
		line-height: 23px;
		border-radius: 40px;
}

.sk-index-company-link a:hover {
    background-color: var(--yellow);
    color: var(--white);
}



/* index product */

/* .sk-index-product-box{ padding-top: 10px; }
.sk-index-product-item{ background-color: var(--white); position: relative; padding: 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: 16px; line-height: 26px; color: var(--black); transition: all .8s; }
.sk-index-product-cate{ font-size: 12px; font-weight: 400; color: var(--green); transition: all .8s; }
.sk-index-product-cate i{ font-size: 12px; }
.sk-index-product-img{ display: block; margin: 15px 0; }
.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; object-fit: cover; }
.sk-index-product-more{ display: flex; justify-content: flex-start; }
.sk-index-product-more a{ background-color: var(--green); border-radius: 25px; padding: 5px 20px; color: var(--white); transition: all .8s; font-size: 12px; display: flex; justify-content: center; align-items: center; gap: 8px; line-height: 25px; }
.sk-index-product-more a i{ font-size: 12px; }
.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 image */


/* 合作伙伴 */
.sk-index-parnter{
	padding: 70px 0;
}
.sk-index-parnter .sk-list-images-box{ border: 1px solid var(--border); }
.sk-index-parnter .sk-list-images-box img{ width: 100%; display: block; height: auto; }

/* index blog start */
.sk-index-blog {
	display: block;
	padding: 70px 0;
	background-position: top center;
	background-repeat: no-repeat;
	background-color: var(--bgpro);
}

.sk-index-blog-dot{ display: flex; justify-content: center; }
.sk-index-blog-dot-item{ display: block; padding: 8px 12px; background-color: var(--green); font-size: 14px; font-weight: 400; line-height: 25px; cursor: pointer; color: var(--white); width: 25%; max-width: 150px; transition: all .8s; text-align: center; }
.sk-index-blog-dot-item:hover,
.sk-index-blog-dot-item.active{ background-color: var(--yellow); color: var(--white); }
.sk-index-blog-box{ padding-top: 25px; }
.sk-index-blog-list{ display: none; }
.sk-index-blog-list.active{ display: block; }
.sk-index-blog-box{ padding-top: 30px; }
.sk-index-blog .sk-list-news-item {
	background-color: var(--white);
	padding-bottom: 5px;
}
.sk-index-blog-list-box .sk-list-news-item-info{ padding: 10px 0; }
.sk-index-blog .sk-list-news-item:hover .sk-list-news-item-sortname{ border-color: var(--yellow); }
.sk-index-blog .sk-list-news-item:hover .sk-list-news-more a{ border-color: var(--green); background-color: var(--green); color: var(--white); }
.sk-index-blog .sk-list-news-item::after,.sk-index-blog .sk-list-news-item::before{ height: 2px; }

/* 常见问题 */








@media screen and (max-width: 1620px) {
	.sk-product-more a{ font-size: 14px; }
}

@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-cate-item .sk-index-cate-img{ padding: 8px; }
    .sk-index-cate-box{ gap: 10px; }
    .sk-index-cate-item{ flex: 0 0 calc(33.3333% - (10px * 2) / 3); }
    .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-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-oem-box .sk-index-oem-title{ font-size: 72px; line-height: 72px; }
    .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; }
}