﻿@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: relative;
}

.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;
    width: 180px;
    padding-block: 12px;
}

.sk-header-logo a {
    display: block;
}

.sk-header-logo img {
    width: 100%;
}

.sk-navigation-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.sk-header-search-item {
    cursor: pointer;
    flex-shrink: 0;
    text-align: center;
    transition: all .8s;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sk-header-search-item .iconfont {
    display: block;
    font-size: 18px;
    font-weight: 500;
}

.sk-header-search-item:hover {
    color: var(--blue);
}


/* 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(--blue);
}

.sk-search-group .sk-search-btn span {
    font-size: 24px;
    font-weight: 500;
}

.sk-search-group .sk-search-control:focus {
    border-color: var(--blue);
}

.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(--blue);
    transform: rotate(360deg);
}

.sk-gettouch {
    flex-shrink: 0;
}

.sk-gettouch a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background-color: var(--blue);
    padding: 7px 18px;
    transition: all .8s;
}

.sk-gettouch a span {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

.sk-gettouch a:hover {
    background-color: var(--blue-white);
}

.sk-gettouch a:hover span {
    color: var(--white);
}


/* navigation */

.sk-navigation-box {
    display: flex;
    justify-content: center;
    flex: 1;
    padding-inline: 40px;
    gap: 25px;
}

.sk-navigation-box .sk-navigation-li {
    position: relative;
}

.sk-navigation-box .sk-navigation-link {
    font-weight: 600;
    font-size: 20px;
    color: var(--black);
    font-family: var(--fonts-three);
    display: flex;
    justify-content: center;
    line-height: 70px;
    transition: all 500ms ease;
}

.sk-navigation-box .sk-navigation-link i {
    font-size: 14px;
    font-weight: 700;
    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: 220px;
    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: 16px;
    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: 220px;
    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: 220px;
    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(--blue);
    border-color: var(--blue);
}

.sk-navigation-child .sk-navigation-child-link:hover,
.sk-navigation-box .sk-navigation-sub .sk-navigation-sub-link:hover {
    color: var(--blue);
}

.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%);
}


/* 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(--blue);
}

.sk-header-colse {
    display: block;
    width: 36px;
    height: 36px;
    background-color: var(--blue);
    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(--blue);
}

.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: 1260px) {
    .sk-navigation-box {
        gap: 20px;
    }
    .sk-navigation-box .sk-navigation-link {
        line-height: 36px;
        align-items: center;
    }
    .sk-header-search-item span {
        display: none;
    }
}

@media screen and (max-width: 960px) {
    .sk-navigation-box .sk-navigation-link {
        font-size: 15px;
    }
    .sk-header-search-box {
        padding-inline: 35px;
    }
    .sk-header-search-box form {
        width: 90%;
    }
    .sk-header-search-close {
        right: -20px;
        top: -200px;
    }
    .sk-gettouch {
        display: none;
    }
    .sk-gettouch a span {
        font-size: 14px;
    }
}

@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: 200px;
    }
    .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-crumb {
    background-color: var(--bgadv);
    padding: 15px 0;
}

.sk-page-crumb-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    color: var(--black);
    font-size: 16px;
    line-height: 25px;
    text-transform: capitalize;
}

.sk-page-crumb-box p i {
    font-size: 14px;
}

.sk-page-crumb-box p a {
    color: var(--black);
}

.sk-page-crumb-box p a:hover {
    color: var(--blue);
}


/* crumbs end */

/* footer */

.sk-footer {
    background-color: var(--bgadv);
}

.sk-footer-box {
    padding-block: 70px;
}


.sk-footer-box-follow {
    display: block;
    margin-top: 30px;
}

.sk-footer-box-follow-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.sk-footer-box-follow-box a {
    display: block;
    width: 32px;
    height: auto;
    transition: all .6s;
}

.sk-footer-box-follow-box img {
    width: 100%;
    height: auto;
    display: block;
}

.sk-footer-box-follow-box a:hover {
    transform: rotate(20deg);
}

.sk-footer-box-title {
    text-align: left;
    color: var(--blue);
    font-size: 24px;
    line-height: 30px;
    font-family: var(--fonts-two);
    font-weight: 600;
    margin-bottom: 15px;
    padding-block-end: 10px;
    position: relative;
}


.sk-footer-box-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--blue-white);
    content: "";
    display: block;
}

.sk-footer-box-contact,
.sk-footer-box-nav {
    display: block;
}

.sk-footer-box-contact-item {
    display: flex;
    justify-content: flex-start;
    margin-block-end: 10px;
}

.sk-footer-box-contact-item i {
    display: block;
    flex-shrink: 0;
    width: 22px;
    line-height: 25px;
    color: var(--black);
    margin-right: 8px;
    font-size: 20px;
    font-weight: 300;
}

.sk-footer-box-contact-info {
    flex: 1;
}

.sk-footer-box-contact-info p {
    font-size: 16px;
    line-height: 25px;
    font-family: var(--fonts-two);
    font-weight: 600;
    color: var(--black);
}

.sk-footer-box-contact-info span,
.sk-footer-box-contact-info a {
    font-size: 16px;
    color: var(--black);
    line-height: 25px;
    font-weight: 300;
}

.sk-footer-box-contact-info a:hover {
    color: var(--blue);
}

.sk-footer-box-nav {
    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-pro {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sk-footer-box-nav-pro li {
    width: 50%;
    padding-right: 20px;
    flex-shrink: 0;
}

.sk-footer-box-nav-box li:hover a {
    color: var(--blue);
}

.sk-footer-box-nav-box li:hover {
    padding-left: 10px;
}


/* copyright */

.sk-footer-copyright {
    padding-block: 20px;
    background-color: var(--blue-white);
}

.sk-footer-copyright-text {
    color: var(--white);
    font-size: 15px;
    line-height: 25px;
    font-weight: 300;
    text-align: center;
}

.sk-footer-copyright-text a {
    color: var(--white);
    transition: all .8s;
    margin-left: 10px;
}

.sk-footer-copyright-text a:hover {
    color: var(--bgadv);
}


/* 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(--blue);
}

.sk-meau-top i {
    font-size: 20px;
}

@media screen and (max-width: 1200px) {
    .sk-footer-box-nav-pro li {
        width: 100%;
        padding-right: 0;
    }
    .sk-footer-box-nav {
        padding-inline: 10px;
    }
}

@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;
    }
}

@media screen and (max-width: 576px) {
    .sk-footer-box-nav {
        padding-inline: 0;
    }
    .sk-footer-copyright {
        padding-block: 20px;
    }
}

/* footer end */

/* message start */

.sk-content-message-box {
    padding-block: 10px;
}

.sk-content-message {
    display: block;
}

.sk-content-message-form {
    display: block;
}

.sk-content-message-form .sk-content-message-form-input,
.sk-content-message-form .sk-content-message-form-textarea {
    margin-bottom: 12px;
}

.sk-content-message-form label {
    font-size: 16px;
    color: var(--black);
    line-height: 25px;
    font-family: var(--fonts-three);
    font-weight: 500;
    margin-bottom: 3px;
    display: block;
}
.sk-content-message-form label span{ color: #ff0000; }

.sk-content-message-form .sk-content-message-form-input input,
.sk-content-message-form .sk-content-message-form-textarea textarea {
    width: 100%;
    line-height: 23px;
    display: block;
    border: 1px solid var(--border);
    outline: none;
    background-color: var(--white);
    font-size: 14px;
    padding: 8px 12px;
    transition: all .8s;
    border-radius: 2px;
}

.sk-content-message-form .sk-content-message-form-textarea textarea {
    resize: none;
    height: 120px;
}

.sk-content-message-form-code{ display: flex; justify-content: flex-start; align-items: center; gap: 10px; }
.sk-content-message-form .sk-content-message-form-input .sk-content-message-form-code input{ width: 180px; height: 45px; }

.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(--blue);
}

.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(--blue-white);
    background: var(--blue-white);
    color: var(--white);
    cursor: pointer;
    font-size: 20px;
    padding: 8px 42px;
    font-family: var(--fonts-three);
    font-weight: 400;
    border-radius: 2px;
}

.sk-content-message-form .sk-content-message-form-button:hover {
    color: var(--white);
    background-color: var(--blue);
    border-color: var(--blue);
}

/* message end */


/* right start */

.sk-content-left-box {
    margin-bottom: 30px;
    position: relative;
}

.sk-content-left-box-title {
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1;
    position: relative;
    color: var(--white);
    font-family: var(--fonts-three);
    padding: 10px 15px;
    background-color: var(--blue);
}

.sk-content-left-box-nav {
    display: block;
    
}

.sk-expmenu-item .sk-expmenu-dt {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: var(--white);
    border-bottom: 1px solid var(--bgadv);
    border: 1px solid var(--border);
    /* border-left: 1px solid transparent; */
}

.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;
    
}

.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(--blue); }

.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(--blue);
}

.sk-expmenu-item:hover .sk-expmenu-dt a,
.sk-expmenu-item:hover .sk-expmenu-dt span {
    color: var(--blue);
}

.sk-content-left-box-nav .sk-expmenu-item:last-child {
    margin-bottom: 0;
}


/* content start */

.sk-content {
    display: block;
    position: relative;
}

.sk-content-main {
    padding: 70px 0;
}

/* show start */

.sk-content-show {
    display: block;
    border-radius: 3px;
}

.sk-content-show .sk-content-show-title {
    font-size: 28px;
    line-height: 30px;
    color: var(--black);
    font-weight: 600;
    font-family: var(--fonts-three);
}

.sk-content-show .sk-content-show-resource {
    line-height: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-block-end: 10px;
    padding-block-start: 20px;
    border-bottom: 1px solid var(--border);
}

.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 .sk-content-page-main {
    padding: 25px 0;
}

.sk-content-show-prenext {
    display: block;
    border: 1px solid var(--border);
    border-radius: 3px;
    margin-bottom: 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);
}

/* images start */

.sk-list-images-box {
    margin-top: 10px;
    margin-bottom: 10px;
}

.sk-list-images-box a {
    display: block;
    border: 1px solid var(--border);
    position: relative;
    border-radius: 3px;
    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, 0, 0, 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-top: 8px;
}

/* images end */

/* page start */

.sk-content-page-box {
    display: block;
}

.sk-content-page-main {
    font-size: 16px;
    line-height: 28px;
}

.sk-content-page-main img {
    max-width: 100%;
    height: auto !important;
}

/* page end */

/* about start */

.sk-content-about {
    margin-block-end: 60px;
}

.sk-content-about-img {
    float: right;
    max-width: 600px;
    padding: 0 0 15px 15px;
}

.sk-content-about-img img {
    display: block;
    width: 100%;
    height: auto;
}

.sk-pages-title {
    display: block;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 30px;
    line-height: 32px;
    text-transform: capitalize;
    font-family: var(--fonts-three);
}

.sk-pages-title i {
    font-size: 22px;
    color: var(--black);
    font-weight: 500;
}
/* about end */
/* contact start */

.sk-content-contact {
    display: block;
    margin-bottom: 60px;
}

.sk-content-contact-text {
    margin-top: 30px;
    padding: 20px 15px;
    font-size: 16px;
    color: var(--black);
    line-height: 32px;
    background-color: var(--bgpro);
    border-radius: 5px;
}

.sk-content-contact .sk-content-contact-list {
    padding: 0px 0 30px;
}

.sk-content-contact .sk-content-contact-list p {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
    line-height: 25px;
}

.sk-content-contact .sk-content-contact-list i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--black);
}

.sk-content-contact .sk-content-contact-list a,
.sk-content-contact .sk-content-contact-list span {
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
}

.sk-content-contact .sk-content-contact-list a:hover {
    color: var(--blue);
}

.sk-follow-box {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}

.sk-follow-box a {
    width: 30px;
    display: block;
    transition: all .8s;
}

.sk-follow-box img {
    width: 100%;
    height: auto;
    display: block;
}

.sk-follow-box a:hover {
    transform: rotate(25deg);
}

.sk-content-map {
    width: 100%;
    height: 100%;
    display: block;
}

.sk-content-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    margin: 0;
    padding: 0;
}


/* contact end */

/* news start */

.sk-list-box {
    display: block;
}

.sk-list-news-item {
    overflow: unset;
    margin-bottom: 35px;
    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;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.6196078431);
    background-color: var(--white);
    transition: 0.5s all ease;
}

.sk-list-news-item-img {
    position: relative;
    display: block;
    z-index: 50;
    overflow: hidden;
}

.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-inline: 12px;
    padding-block: 15px;
}

.sk-list-news-item-sortname {
    padding: 5px 0 8px 0px;
    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: 22px;
    line-height: 28px;
    font-weight: 600;
    font-family: var(--fonts-three);
    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: 24px;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.sk-list-news-more {
    display: flex;
    justify-content: flex-start;
    margin-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(--blue);
    border-color: var(--blue);
}

.sk-list-news-more .iconfont {
    margin-right: 10px;
    font-size: 16px;
}

.sk-list-news-item:hover {
    transform: translate(0, -10px);
}

.sk-list-news-item:hover .sk-list-news-item-title a {
    color: var(--blue);
}
/* product list item */

.sk-product-item {
    margin-bottom: 30px;
    overflow: hidden;
    transition: ease all .8s;
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 0 10px 10px var(--bgpro);
}

.sk-content-left-box-product .sk-product-item:last-child {
    margin-bottom: 0;
}

.sk-product-item .sk-product-img {
    border-bottom: 1px solid var(--border);
    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-block: 12px;
    padding-inline: 5px;
}

.sk-product-item .sk-product-title a {
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 18px;
    line-height: 25px;
    color: var(--black);
    transition: all .6s;
    font-weight: 600;
}

.sk-product-item:hover .sk-product-title a {
    color: var(--blue);
}

.sk-product-more {
    padding-bottom: 20px;
}

.sk-product-more a {
    width: 160px;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 25px;
    color: var(--white);
    background-color: var(--grey);
    font-family: var(--fonts-two);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    transition: all .6s;
    border-radius: 5px;
}

.sk-product-item .sk-product-more i {
    margin-right: 6px;
}

.sk-product-item:hover .sk-product-more a {
    background-color: var(--blue);
    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(--blue);
    outline: 0px solid var(--blue);
    background-color: var(--white);
}

.product-view .image-additional li.single,
.product-view .image-additional img.popup {
    display: none;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-prev,
.product-view .image-additional .owl-carousel .owl-nav .owl-next {
    position: absolute;
    margin: 0;
    padding: 0;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: unset;
    border: 0;
    background-color: unset;
    text-align: center;
    line-height: 14px;
    color: var(--black);
    font-size: 28px;
    top: 40%;
    z-index: 10;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-prev {
    left: -25px;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-next {
    right: -25px;
}

.product-view .image-additional .owl-carousel .owl-nav .owl-prev:hover,
.product-view .image-additional .owl-carousel .owl-nav .owl-next:hover {
    color: var(--blue);
}
/* product images end */

.sk-products-title {
    font-size: 30px;
    color: var(--black);
    font-family: var(--fonts-three);
    font-weight: 600;
}

.sk-product-parameter {
    padding-block: 15px;
}

.sk-advantages-box {
    border-top: 1px solid var(--border);
    padding-block-start: 15px;
}

.sk-advantages-box .sk-advantages-li {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--grey);
    padding: 3px 10px;
}

.sk-advantages-box .sk-advantages-li:nth-child(even) {
    background-color: var(--bgpro);
}

.sk-product-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-block-end: 15px;
    margin-block-start: 15px;
}

.sk-product-con .sk-product-con-link {
    background-color: var(--white);
    border: 1px solid var(--black);
    padding: 10px;
    font-weight: 400;
    color: var(--black);
    border-radius: 3px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.sk-product-con .sk-product-con-link:first-child {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.sk-product-con .sk-product-con-link:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.sk-product-con .sk-product-con-link i {
    margin-right: 10px;
    font-size: 18px;
}

/* product show */

.sk-product-show {
    padding: 50px 0 0px;
}

.sk-content-show .sk-content-page-main {
    padding-top: 0;
    padding-bottom: 50px;
}

.sk-product-inquiry {
    padding-top: 0 !important;
    margin-block-start: 40px;
}

/* product related */

.sk-content-show .sk-pages-title {
    margin-bottom: 15px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border);
}

.sk-content-show .sk-pages-title span {
    padding: 5px 6px;
    font-size: 20px;
    display: inline-block;
    color: var(--blue);
    border-bottom: 3px solid var(--blue);
    font-weight: 500;
    text-transform: uppercase;
}

/* product end */

/* faqs */
.sk-list-faqs-item{ display: block; margin-bottom: 5px; }
.sk-list-faqs-item-title{ background-color: var(--border); color: var(--black); display: flex; justify-content: space-between; align-items: center; padding: 15px; cursor: pointer; }
.sk-list-faqs-item-title span{ font-size: 16px; line-height: 25px; }
.sk-list-faqs-item-title i{ font-size: 16px; line-height: 25px; flex-shrink: 0; }
.sk-list-faqs-item-text{ background-color: var(--bgadv); padding: 15px; line-height: 25px; font-size: 16px; color: var(--grey); display: none; }
.sk-list-faqs-item.active .sk-list-faqs-item-title{ background-color: var(--blue); color: var(--white); }

/* content end */

/* banner start */

.sk-index-slide {
    position: relative;
    display: block;
}

.sk-index-slide .sk-index-slide-box {
    flex: 1;
    position: unset;
}

.sk-index-slide .sk-index-slide-box,
.sk-index-slide .owl-carousel .owl-stage-outer,
.sk-index-slide .owl-carousel .owl-stage-outer .owl-stage,
.sk-index-slide .owl-carousel.owl-drag .owl-item {
    height: 100%;
}

.sk-index-slide-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;
}

/* 定义动画 */

@keyframes slideZoom {
    0%,
    100% {
        transform: scale(1);
        /* 初始状态和结束状态的缩放比例 */
    }
    50% {
        transform: scale(1.2);
        /* 放大状态的缩放比例 */
    }
}

.sk-index-slide .sk-index-slide-box .owl-nav {
    margin: auto;
    width: 100%;
    height: auto;
}

.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: 60px;
    height: 60px;
    outline: none;
    opacity: .8;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--white);
    border-radius: 3px;
    transition: all .8s;
    color: var(--white);
    position: absolute;
    z-index: 20;
    top: calc((100% - 48px) / 2);
    left: 3%;
    opacity: .8;
}

.sk-index-slide .sk-index-slide-box .owl-nav .owl-next {
    right: 3%;
    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(--blue);
    opacity: 1;
    color: var(--white);
    border-color: var(--blue);
}

.sk-index-slide .sk-index-slide-box .owl-dots {
    position: absolute;
    z-index: 19;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
    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;
}

/*  index title */

.sk-indextow-title {
    margin-bottom: 42px;
}

.sk-indextow-title .sk-indextow-title-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 12px;
}

.sk-indextow-title .sk-indextow-title-item span {
    position: relative;
    display: inline-block;
    font-family: var(--fonts-three);
    font-size: 36px;
    line-height: 36px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
}

.sk-indextow-title .sk-indextow-title-text {
    display: block;
    font-size: 16px;
    font-family: var(--fonts-two);
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: var(--grey);
    margin: auto;
}

.sk-indextow-link {
    border: 1px solid var(--blue);
    color: var(--black);
    display: block;
    text-align: center;
    padding: 10px 0px;
    margin: auto;
    font-size: 16px;
    width: 180px;
    transition: all .8s;
    border-radius: 3px;
    flex-shrink: 0;
}

.sk-indextow-link i {
    font-size: 14px;
}

.sk-indextow-link:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/* button */

.sk-indextow-button {
    padding-top: 25px;
}

.sk-index-title {
    margin-bottom: 42px;
}

.sk-index-title .sk-index-title-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 12px;
}

.sk-index-title .sk-index-title-item span {
    position: relative;
    display: inline-block;
    font-family: var(--fonts-three);
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
}

.sk-index-title .sk-index-title-text {
    display: block;
    max-width: 1000px;
    font-size: 16px;
    font-family: var(--fonts-two);
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: var(--grey);
    margin: auto;
}

/* index product */

.sk-index-product {
    display: block;
    padding-block: 70px;
    margin: auto;
}

/* Message */

.sk-index-msg {
    overflow: hidden;
    background-color: var(--bgpro);
    padding-block: 60px;
}

/* index blog start */

.sk-index-blog {
    display: block;
    padding-block: 80px;
}

.sk-index-blog .sk-list-news-item {
    margin-bottom: 0;
}

/* index case */

.sk-index-pic {
    background-color: var(--bgadv);
    padding-block: 80px;
}

.sk-index-pic-item-box img {
    width: 100%;
    height: auto;
    display: block;
}

.sk-index-pic-item-title {
    font-size: 18px;
    text-align: center;
    padding-block-start: 8px;
    font-weight: 400;
}

/* partner */

.sk-index-partner {
    display: block;
    /* padding-block-end: 70px; */
}

.sk-index-partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .6s;
    cursor: pointer;
    border: 1px solid var(--blue);
}

.sk-index-partner-item img {
    max-width: 100%;
    width: auto !important;
    display: block;
}

.sk-index-partner-item:hover {
    opacity: 1;
}

/* index about */

.sk-index-company {
    overflow: hidden;
    position: relative;
    padding-block-start: 80px;
    padding-block-end: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--bgpro);
}
.sk-index-company-img{ width: 100%; }
.sk-index-company-img img{ width: 100%; height: auto; display: block; }

.sk-index-company-box {
    height: 100%;
    display: grid;
    justify-items: flex-start;
    align-content: center;
}

.sk-index-company-info-item {
    font-size: 16px;
    font-weight: 400;
    color: var(--blue);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--fonts-two);
}

.sk-index-company-info-title {
    font-size: 36px;
    line-height: 42px;
    font-weight: 500;
    color: var(--black);
    font-family: var(--fonts-three);
}

.sk-index-company-info-text {
    font-size: 16px;
    line-height: 25px;
    display: block;
    color: var(--grey);
    margin: 20px 0 30px;
    font-weight: 300;
}

.sk-index-company-link {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.sk-index-company-link .sk-indextow-link {
    margin: unset;
    background-color: transparent;
    color: var(--black);
    border-color: var(--blue);
}

.sk-index-company-link .sk-indextow-link:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/* index num */

.sk-index-num {
    display: block;
}

.sk-index-num-item {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 25px;
}

.sk-index-num-item-num {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px;
}

.sk-index-num-item-num span {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    color: var(--black);
    font-family: var(--fonts-two);
}

.sk-index-num-item-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--black);
    font-family: var(--fonts-three);
    line-height: 30px;
}

.sk-index-num-item-info {
    font-size: 16px;
    color: var(--black);
    font-weight: 300;
    padding-top: 8px;
}

.sk-index-app{ padding-block: 80px; }
.sk-index-app-title{ margin-bottom: 30px; }
.sk-index-app-title-item{ margin-bottom: 10px; font-size: 24px; color: var(--black); font-weight: 400; }
.sk-index-app-title-text{ font-size: 24px; font-weight: 600; color: var(--black); line-height: 30px; }
.sk-index-app .sk-list-images-i{ font-size: 20px; padding: 10px; color: var(--white); text-align: center; font-family: var(--fonts-two); }

.sk-index-adv{ padding-block: 80px; background-repeat: no-repeat; background-size: cover; background-position: center; }
.sk-index-adv .sk-index-title .sk-index-title-item span{ font-size: 60px; color: var(--white); }
.sk-index-adv-box{ padding-block-start: 50px; }
.sk-sk-index-adv-item{ display: flex; justify-content: flex-start; align-items: flex-start; margin-bottom: 60px; }
.sk-sk-index-adv-item-img{ width: 45px; height: auto; display: block; flex-shrink: 0; }
.sk-sk-index-adv-item-info{ flex: 1; padding-left: 15px; }
.sk-sk-index-adv-item-title{ font-size: 30px; font-weight: 400; color: var(--white); }
.sk-sk-index-adv-item-text{ font-size: 20px; font-weight: 300; color: var(--bgpro); margin-top: 20px; }

.sk-index-order{ padding-block: 80px; border-top: 1px solid var(--border); }
.sk-index-order-box{ display: flex; justify-content: space-between; align-items: center; padding-top: 20px; }
.sk-index-order-item{ display: flex; flex-direction: column; justify-content: center; align-items: center; }
.sk-index-order-item i{ font-size: 84px; line-height: 84px; }
.sk-index-order-item p{ text-align: center; font-size: 18px; color: var(--black); line-height: 30px; font-weight: 500; margin-top: 12px; }
.sk-index-order-line{ font-size: 80px; line-height: 80px; color: var(--light-gray); flex-shrink: 0; }

@media screen and (max-width: 1440px) {
    .sk-main {
        width: 95%;
    }
    .sk-index-num-item{ padding-block: 15px; }


    .sk-list-news-item-sortname {
        line-height: 22px;
    }
    .sk-list-news-item-title {
        line-height: 25px;
    }
    .sk-list-news-item-desc {
        line-height: 23px;
    }
}

@media screen and (max-width: 1200px) {
    .sk-index-product,.sk-index-order,.sk-index-adv,.sk-index-company,.sk-index-pic,.sk-index-blog{ padding-block: 60px; }
    .sk-index-order-item i{ font-size: 72px; }
    .sk-sk-index-adv-item{ margin-bottom: 45px; }
    .sk-index-adv-box{ padding-block-start: 30px; }
}

@media screen and (max-width: 1024px) {
    .sk-index-order-line{ font-size: 60px; line-height: 60px; }
    .sk-sk-index-adv-item-title{ font-size: 28px; line-height: 30px; }
    .sk-index-company-box{ margin-top: 30px; }
    .sk-page-crumb img {
        transform: translateX(-40%);
    }
    .sk-product-show .sk-display-pc {
        display: none !important;
    }
    .sk-product-show .sk-display-mobile {
        display: block !important;
    }
    .sk-content-message-box .sk-banner-img img,.sk-content-text .sk-banner-img img{ width: 100%; }
    .sk-content-show .sk-content-show-title {
        font-size: 24px;
        line-height: 30px;
    }
    .sk-content-main {
        padding: 60px 0;
    }
    .sk-content-contact {
        margin-bottom: 50px;
    }
    .sk-content-page-box {
        padding: 0;
        background-color: unset;
        border-radius: 0;
    }
    .sk-content-about-img {
        float: unset;
        margin-bottom: 20px;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .sk-product-summary {
        margin-top: 25px;
    }
    .sk-about-img {
        margin-inline-start: 0;
    }
    .sk-display-pc {
        display: none !important;
    }
    .sk-display-mobile {
        display: block !important;
    }
    .sk-content-msg-text {
        margin-block-end: 0px;
    }
    .sk-content-message {
        margin-block: 30px;
    }
    .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: 23px;
    }
    .sk-contact-follow {
        padding-block: 30px;
    }
    .sk-content-contact-item {
        height: auto;
        margin-bottom: 60px;
    }
    .sk-content-contact-text {
        font-size: 16px;
        line-height: 25px;
        margin-top: 0;
    }
    .sk-index-order-item i{ font-size: 64px; }
    .sk-index-order-item p{ font-size: 16px; }
}
@media screen and (max-width: 868px) {
    .sk-index-order-box{ padding-top: 0; }
    .sk-index-app-title-item,.sk-index-app-title-text{ font-size: 22px; }
    .sk-indextow-title .sk-indextow-title-item span {
        font-size: 30px;
    }
    .sk-index-slide-item .sk-index-slide-item-info-title {
        margin-bottom: 10px;
    }
    .sk-index-slide-item .sk-index-slide-item-info-desc {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .sk-index-slide .sk-index-slide-box .owl-nav,
    .sk-index-slide .sk-index-slide-box .owl-dots {
        bottom: 18px;
    }
    .sk-index-title .sk-index-title-item span{ text-align: center; }
    .sk-index-order-box{ flex-wrap: wrap; justify-content: flex-start; }
    .sk-index-order-item{ width: 100px; margin: 10px 0; }
    .sk-index-app-title-item, .sk-index-app-title-text{ font-size: 18px; }

    .sk-indextow-title .sk-indextow-title-item span {
        font-size: 28px;
        line-height: 1.2;
    }
    .sk-indextow-title .sk-indextow-title-text {
        font-size: 14px;
        line-height: 1.2;
    }
    .sk-product-tab-maincell {
        border: 0;
    }
    .sk-product-item {
        margin-bottom: 20px;
    }
    .sk-content-main {
        padding: 50px 0;
    }
    .sk-pages-title {
        margin-bottom: 20px;
    }
    .sk-list-news-item-info {
        padding: 12px;
    }
    .sk-list-news-item {
        margin-bottom: 25px;
    }
    .sk-content-left{ margin-top: 30px; }
}

@media screen and (max-width: 576px) {
    .sk-index-slide .sk-index-slide-box .owl-nav .owl-prev,
    .sk-index-slide .sk-index-slide-box .owl-nav .owl-next {
        width: 40px;
        height: 40px;
        line-height: 1;
    }
    .sk-index-slide .owl-nav .owl-prev::after,
    .sk-index-slide .owl-nav .owl-next::after {
        font-size: 20px;
    }
    .sk-product-con .sk-product-con-link {
        font-size: 14px;
        padding: 10px 8px;
    }
    .sk-about-img {
        padding: 0;
        border: 0;
    }
    .sk-products-title {
        font-size: 24px;
    }
    .sk-product-tab-maincell {
        border: 0;
        padding-inline: 0;
    }
    .sk-content-page-main {
        line-height: 25px;
    }
    .sk-pages-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .sk-content-contact {
        margin-bottom: 50px;
    }
    .sk-indextow-title .sk-indextow-title-item span {
        font-size: 24px;
    }
    .sk-content-page-box {
        padding: 0;
    }
    .sk-index-title .sk-index-title-item span{ font-size: 28px; line-height: 30px; }
    .sk-index-order-item,.sk-index-order-line{ width: 25%; text-align: center; }
    .sk-index-adv .sk-index-title .sk-index-title-item span{ font-size: 42px; }
    .sk-index-app-title-item, .sk-index-app-title-text{ font-size: 16px; }
}