@charset "utf-8";

.banner-inner {
    overflow: hidden;
    background: #EEEEEE;
    position: relative
}

.banner-inner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 50px);
    background: rgba(0, 0, 0, .6)
}

.banner-inner img {
    width: 100%;
    min-height: 240px;
    object-fit: cover;
    z-index: 0;
    position: relative
}

.banner-inner .banner-content {
    background: #FFFFFF;
    height: 50px;
    font-weight: var(--fontbold5);
    font-size: var(--fontsize14);
    border-bottom: 1px solid #e5e5e5
}

.banner-inner .banner-content .l-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.banner-inner .banner-title-h1 {
    font-weight: var(--fontbold5);
    text-transform: capitalize;
    color: #333333;
    font-size: var(--fontsize18)
}

.banner-inner .banner-breadcrumbs {
    position: relative;
    display: flex;
    align-items: center;
}

.banner-inner .banner-breadcrumbs em {
    margin-right: 5px
}

.banner-inner a:hover {
    color: var(--color)
}

.wmkcinquirybtn {
    cursor: pointer;
    background: var(--color);
    color: #fff;
    height: 32px;
    padding: 0 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: var(--fontsize14);
}

.wmkcinquirybtn::before {
    z-index: -1;
    content: '';
    position: absolute;
    left: -50px;
    top: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    --s: rgba(255, 255, 255, 0.2);
    transform: rotate(10deg)
}

.wmkcinquirybtn:hover::before {
    animation: slideGradient 3s linear infinite;
    background-image: linear-gradient(to right, var(--color) 0, var(--color) 3.33%, var(--s) 3.33%, var(--s) 6.66%, var(--color) 6.66%, var(--color) 10%, var(--s) 10%, var(--s) 13.33%, var(--color) 13.33%, var(--color) 16.66%, var(--s) 16.66%, var(--s) 20%, var(--color) 20%, var(--color) 23.33%, var(--s) 23.33%, var(--s) 26.66%, var(--color) 26.66%, var(--color) 30%, var(--s) 30%, var(--s) 33.33%, var(--color) 33.33%, var(--color) 36.66%, var(--s) 36.66%, var(--s) 40%, var(--color) 40%, var(--color) 43.33%, var(--s) 43.33%, var(--s) 46.66%, var(--color) 46.66%, var(--color) 50%, var(--s) 50%, var(--s) 53.33%, var(--color) 53.33%, var(--color) 56.66%, var(--s) 56.66%, var(--s) 60%, var(--color) 60%, var(--color) 63.33%, var(--s) 63.33%, var(--s) 66.66%, var(--color) 66.66%, var(--color) 70%, var(--s) 70%, var(--s) 73.33%, var(--color) 73.33%, var(--color) 76.66%, var(--s) 76.66%, var(--s) 80%, var(--color) 80%, var(--color) 83.33%, var(--s) 83.33%, var(--s) 86.66%, var(--color) 86.66%, var(--color) 90%, var(--s) 90%, var(--s) 93.33%, var(--color) 93.33%, var(--color) 96.66%, var(--s) 96.66%, var(--s) 100%)
}

@keyframes slideGradient {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 100px 0
    }
}

.wmkcpopup-inquiry {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center
}

.wmkcpopup-inquiry.is-active {
    display: flex
}

.wmkcpopup-inquiry.is-active .wmkcinquiry-box {
    animation: wmkcinquiryanimation .3s forwards
}

.wmkcinquiry-diaolg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: -1
}

.wmkcinquiry-box {
    z-index: 2;
    background: #fff;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 30px;
    border-radius: 10px;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .2);
    max-height: 100vh;
    overflow-y: auto;
    transform: translateY(20px);
    opacity: .5
}

.wmkcinquiry-box .wmkcinquiry-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}

.wmkcinquiry-box .wmkcinquiry-title {
    font-weight: 700;
    font-size: var(--fontsize20);
    text-align: left;
    color: #333;
}

.wmkcinquiry-box .wmkcinquiry-close {
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px
}

.wmkcinquiry-box .wmkcinquiry-close::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg)
}

.wmkcinquiry-box .wmkcinquiry-close::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg)
}

.wmkcinquiry-box .wmkcfeedback .inquiry-form>* {
    border: 1px solid #c6c6c6
}

@keyframes wmkcinquiryanimation {
    0% {
        transform: translateY(20px);
        opacity: .5
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@media screen and (max-width:1024px) {
    .wmkcinquirybtn {
        display: none
    }
}

.nobanner {
    padding-top: 100px
}

.nobanner header .head-top {
    background: #1a1414
}

.nobanner header .head-info {
    background: #1a1414
}

article {
    color: #333333;
    font-size: var(--fontsize14);
    line-height: 1.8
}

article a {
    color: var(--color)
}

article a:hover {
    text-decoration: underline
}

.table-wrap {
    overflow-x: auto;
    width: 100%
}

.table-wrap table {
    border-collapse: collapse
}

.table-wrap table td,
.table-wrap table th {
    border: 1px solid #ddd;
    padding: 8px 16px
}

.common-main {
    padding: 50px 0
}

h4.cate-h4,
h4.pro-h4 {
    clear: both;
    font-weight: var(--fontbold6)
}

ul.cate-ulli,
ul.pro-ulli {
    clear: both;
    padding: 10px 0 10px 20px
}

ul.cate-ulli li,
ul.pro-ulli li {
    list-style-type: disc;
    line-height: 1.7
}

ol.cate-ulli,
ol.pro-ulli {
    clear: both;
    padding: 10px 0 10px 30px
}

ol.cate-ulli li,
ol.pro-ulli li {
    list-style-type: decimal;
    line-height: 1.7
}

.ck-widget-toc {
    display: table;
    border: 1px solid #a2a9b1;
    background-color: #f8f9fa;
    padding: 10px 20px 10px 10px;
    font-size: 95%;
    margin: 15px 0;
    min-width: 300px;
    max-width: 100%
}

.ck-widget-toc ol {
    padding: 0 0 0 20px;
    counter-reset: item
}

.ck-widget-toc ol li {
    display: block;
    position: relative;
    list-style: none
}

.ck-widget-toc ol li:before {
    content: counters(item, ".");
    counter-increment: item;
    position: absolute;
    margin-right: 100%;
    right: .5rem
}

.ck-widget-toc-title {
    text-align: left;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
    padding-left: 5px
}

.ck-widget-pt {
    padding-top: 100px;
    margin-top: -100px
}

.ck-widget-toc1 {
    display: table;
    border: 1px solid #a2a9b1;
    background-color: #f8f9fa;
    padding: 10px 20px 10px 10px;
    font-size: 95%;
    margin: 15px 0;
    min-width: 300px;
    max-width: 100%
}

.ck-widget-toc1 ol {
    padding: 0 0 0 20px;
    counter-reset: item
}

.ck-widget-toc1 ol li {
    display: block;
    position: relative;
    list-style: none
}

.ck-widget-toc1 ol li:before {
    content: counters(item, ".");
    counter-increment: item;
    position: absolute;
    margin-right: 100%;
    right: .5rem
}

article.blogcontent {
    clear: both;
    margin: 0px auto 40px;
    padding: 0px
}

article.blogcontent h2 {
    margin: 20px 0px 0px 0px;
    font-size: 24px;
    line-height: 1.3
}

article.blogcontent h3 {
    margin: 20px 0px 0px 0px;
    font-size: 22px;
    line-height: 1.3
}

article.blogcontent h4 {
    margin: 20px 0px 0px 0px;
    font-size: 20px;
    line-height: 1.3
}

article.blogcontent h5 {
    margin: 20px 0px 0px 0px;
    font-size: 18px;
    line-height: 1.3
}

article.blogcontent img {
    margin: 0px 0px 10px 0px;
    padding: 0px;
    max-width: 49%;
    margin-right: 1%;
    border: solid 1px #EEEEEE;
    vertical-align: top
}

article.blogcontent p {
    margin: 0px 0px 10px 0px;
    padding: 0px;
    line-height: 1.6
}

article.blogcontent p a {
    color: var(--color)
}

article.blogcontent p a:hover {
    text-decoration: underline
}

article.blogcontent ul {
    margin: 0px;
    padding: 5px 0px 0px 20px
}

article.blogcontent ul li {
    margin: 0px 0px 5px 0px;
    list-style-type: disc
}

.wmkc-black {
    color: #111 !important
}

.wmkc-border-black {
    border-color: #111 !important
}

.wmkc-green {
    color: #2cb740 !important
}

.wmkc-border-green {
    border-color: #2cb740 !important
}

.wmkc-blue {
    color: #217fe1 !important
}

.wmkc-border-blue {
    border-color: #217fe1 !important
}

.wmkc-yellow {
    color: #fcb026 !important
}

.wmkc-border-yellow {
    border-color: #fcb026 !important
}

.wmkc-red {
    color: #ee2c2d !important
}

.wmkc-border-red {
    border-color: #ee2c2d !important
}

.wmkc-template-55>.wmkc-faq-list>.wmkc-faq-item {
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
    margin: 10px auto;
    position: relative
}

.wmkc-template-55>.wmkc-faq-list>.wmkc-faq-item>.wmkc-faq-tit>p {
    padding-right: 40px;
    margin: 0;
    line-height: 1.6;
    font-weight: 700;
    font-size: var(--fontsize16);
    cursor: pointer;
    position: relative
}

.wmkc-template-55>.wmkc-faq-list>.wmkc-faq-item>.wmkc-faq-tit>p::after,
.wmkc-template-55>.wmkc-faq-list>.wmkc-faq-item>.wmkc-faq-tit>p::before {
    content: "";
    width: 16px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 14px;
    right: 12px
}

.wmkc-template-55>.wmkc-faq-list>.wmkc-faq-item>.wmkc-faq-tit>p::after {
    transform: rotate(90deg)
}

.wmkc-template-55>.wmkc-faq-list>.wmkc-faq-item>.wmkc-faq-tit.active>p::after {
    opacity: 0
}

.wmkc-template-55>.wmkc-faq-list>.wmkc-faq-item>.wmkc-faq-box {
    color: #666666;
    line-height: 1.5;
    padding-top: 6px
}

.inquiry-prolist {
    margin: 20px 0
}

.inquiry-prolist .inquiry-pro-item {
    display: flex;
    align-items: center;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .1);
    padding: 20px
}

.inquiry-prolist .inquiry-pro-item:nth-child(n+2) {
    margin-top: 20px
}

.inquiry-prolist .inquiry-pro-item .pro-item-img {
    width: 160px
}

.inquiry-prolist .inquiry-pro-item .pro-item-img img {
    border: 1px solid #EEEEEE
}

.inquiry-prolist .inquiry-pro-item .pro-item-name {
    flex: 1;
    padding: 0 20px;
    color: #333333
}

.inquiry-prolist .inquiry-pro-item .pro-item-name a {
    color: var(--color);
    font-size: var(--fontsize18);
    font-weight: var(--fontbold6)
}

.inquiry-prolist .inquiry-pro-item .pro-item-del {
    background: var(--color);
    margin-right: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 4px;
    transition: all .2s linear
}

.inquiry-prolist .inquiry-pro-item .pro-item-del:hover {
    box-shadow: 1px 2px 10px var(--color)
}

@media (max-width:768px) {
    .inquiry-prolist .inquiry-pro-item .pro-item-img {
        width: 100px
    }

    .inquiry-prolist .inquiry-pro-item .pro-item-name {
        padding: 0 10px
    }

    .inquiry-prolist .inquiry-pro-item .pro-item-del {
        margin-right: 0
    }
}

.aboutcompany-1 {
    padding: 4% 0;
    position: relative;
    z-index: 1
}

.aboutcompany-1::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1920px;
    height: 100%;
    background: url(../images/about-company-1.jpg);
    z-index: -1
}

.aboutcompany-1 .home-des,
.aboutcompany-1 .home-title {
    color: #FFFFFF
}

.aboutcompany-1 .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin-top: 7%
}

.aboutcompany-1 .list li {
    width: 23%;
    background: #fefefe;
    border-radius: 10px;
    text-align: center;
    padding: 50px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative
}

.aboutcompany-1 .list li .icon {
    background: var(--color);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%)
}

.aboutcompany-1 .list li .title {
    font-weight: var(--fontbold6);
    font-size: 20px;
    padding: 10px 0
}

.aboutcompany-1 .list li .text {
    color: #666
}

.aboutcompany-2 {
    padding: 4% 0
}

.aboutcompany-2 .list {
    margin-top: 3%;
    display: flex;
    flex-wrap: wrap;
    list-style: none
}

.aboutcompany-2 .list li {
    width: 33.33333%
}

.aboutcompany-2 .list li .img {
    overflow: hidden
}

.aboutcompany-2 .list li .img img {
    transition: all .1s linear;
    width: 100%
}

.aboutcompany-2 .list li .info {
    background: #FFFFFF;
    box-shadow: 0 3px 29px 0 rgba(228, 228, 228, .48);
    text-align: center;
    padding: 30px 20px;
    transition: all .1s linear
}

.aboutcompany-2 .list li .info .title {
    color: var(--color);
    font-size: 20px
}

.aboutcompany-2 .list li .info .text {
    color: #666
}

.aboutcompany-2 .list li:hover .img img {
    transform: scale(1.02)
}

.aboutcompany-2 .list li:hover .info {
    background: var(--color)
}

.aboutcompany-2 .list li:hover .info .text,
.aboutcompany-2 .list li:hover .info .title {
    color: #FFFFFF
}

.aboutcompany-3 .item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.aboutcompany-3 .item .img {
    width: 50%
}

.aboutcompany-3 .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.aboutcompany-3 .item .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #332f2c;
    padding: 20px 4%
}

.aboutcompany-3 .item .info .home-title {
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 20px
}

.aboutcompany-3 .item .info .text {
    color: #9a9a9a
}

.aboutcompany-4 {
    padding: 4% 0 2%
}

.aboutcompany-4 .home-icon {
    display: flex;
    align-items: center;
    justify-content: center
}

.aboutcompany-4 .home-icon::after,
.aboutcompany-4 .home-icon::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 1px;
    background: var(--color);
    margin: 0 10px
}

.aboutcompany-4 .home-title {
    max-width: 800px;
    margin: 10px auto
}

.aboutcompany-4 .list {
    text-align: center;
    list-style: none;
    margin-top: 20px
}

.aboutcompany-4 .list li {
    margin-bottom: 10px
}

.aboutcompany-4 .list li em {
    color: var(--color)
}

.aboutcompany-4 .logolist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin-top: 30px
}

.aboutcompany-4 .logolist li {
    width: 20%
}

.pagehonour .list {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.pagehonour .list li {
    width: 30%;
    text-align: center
}

.pagehonour .list li .img img {
    width: 100%
}

.pagehonour .list li .info {
    padding: 20px 0
}

.pagehonour .list li .info .title {
    color: var(--color);
    font-size: 20px
}

.pagehonour .list li .info .text {
    color: #666
}

.pageteam .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start
}

.pageteam .flex .home-title {
    text-align: left;
    position: relative;
    padding-right: 20px
}

.pageteam .flex .home-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #e9e9e9
}

.pageteam .flex .home-des {
    text-align: right;
    margin: 0
}

.pageteam .list {
    margin-top: 30px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.pageteam .list li {
    width: 32%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.pageteam .list li .info {
    width: 45%;
    border-radius: 5px 0 0 5px;
    border: 1px solid #dfdfdf;
    margin-bottom: 40px;
    padding: 20px;
    text-align: right;
    position: relative
}

.pageteam .list li .info::before {
    content: "";
    position: absolute;
    right: 0;
    top: -90px;
    width: 70%;
    height: 90px;
    background: #f4f4f4
}

.pageteam .list li .info .title {
    font-weight: var(--fontbold6)
}

.pageteam .list li .info .manager {
    font-size: var(--fontsize14)
}

.pageteam .list li .info .share {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}

.pageteam .list li .info .share a {
    margin-left: 5px;
    color: #333333
}

.pageteam .list li .img {
    flex: 1;
    border-radius: 5px;
    overflow: hidden
}

.pageteam .list li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .1s linear
}

.pageteam .list li:hover .img img {
    transform: scale(1.02)
}

.common-main.video {
    background: #f7f7f7
}

.pagevideo .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none
}

.pagevideo .list li {
    background: #FFFFFF;
    width: 32%;
    margin-bottom: 2em
}

.pagevideo .list li>p {
    padding: 20px;
    height: 60px;
    transition: all .1s linear;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.pagevideo .list li lite-youtube {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: calc(100% - 60px);
    object-fit: cover
}

.pagevideo .list li:hover>p {
    color: var(--color);
    box-shadow: 1px 3px 15px 2px rgba(0, 0, 0, .1)
}

.pagevideo .list.list2 li:nth-child(1) {
    flex: 1;
    margin-right: 2%
}

.pagevideo .list.list2 li:nth-child(2) {
    width: 32%
}

.pro-cate-title {
    text-align: center;
    font-weight: var(--fontbold6);
    color: #333333;
    font-size: 32px;
    margin: 30px auto 0;
    line-height: 1
}

.procate-demo-1 {
    color: #6b6460
}

.page-nav {
    background: linear-gradient(#fff, #fff, #fafafa);
    border-bottom: 1px solid #F1F1F1;
    padding: 40px 0 40px;
    margin-bottom: 40px
}

.page-nav .pagenav-cate {
    background: #FFFFFF;
    box-shadow: 0 1px 29px 0 rgba(225, 225, 225, .48);
    border-radius: 10px
}

.page-nav .pagenav-catelist {
    list-style: none
}

.pagenav-search {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 40px auto
}

.pagenav-search input {
    width: 100%;
    height: 50px;
    background: #eaeaea;
    border: 1px solid #eaeaea;
    outline: 0;
    padding: 0 20px;
    transition: all .1s linear
}

.pagenav-search input:focus {
    border-color: var(--color)
}

.pagenav-search button {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: 0 0;
    outline: 0;
    border: none;
    color: #9d9d9d;
    cursor: pointer
}

.pagenav-search button em {
    font-size: 28px;
    font-weight: var(--fontbold6)
}

@media (min-width:1025px) {
    .page-nav .pagenav-cate {
        width: 100%;
        padding: 0 40px
    }

    .page-nav .pagenav-catelist {
        text-align: center;
        padding: 6px 0
    }

    .page-nav .pagenav-catelist>li {
        position: relative;
        margin-right: 40px;
        font-size: var(--fontsize15);
        height: 100%;
        display: inline-flex;
        align-items: center;
        padding: 10px 0
    }

    .page-nav .pagenav-catelist>li.active>a,
    .page-nav .pagenav-catelist>li.active>em {
        color: var(--color)
    }

    .page-nav .pagenav-catelist>li em {
        margin-left: 5px;
        font-weight: var(--fontbold6);
        font-size: var(--fontsize14)
    }

    .page-nav .pagenav-catelist>li a {
        color: #666
    }

    .page-nav .pagenav-catelist>li ul {
        position: absolute;
        top: 100%;
        left: 0;
        list-style: none;
        background: #FFFFFF;
        box-shadow: 1px 2px 10px rgba(0, 0, 0, .1);
        z-index: 9;
        min-width: 200px
    }

    .page-nav .pagenav-catelist>li ul a:hover {
        color: var(--color)
    }

    .page-nav .pagenav-catelist>li ul li {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%
    }

    .page-nav .pagenav-catelist>li ul li {
        padding-right: 10px
    }

    .page-nav .pagenav-catelist>li ul a {
        font-size: var(--fontsize14);
        display: flex;
        width: 100%;
        height: 100%;
        padding: 8px 14px;
        white-space: nowrap
    }

    .page-nav .pagenav-catelist>li ul li:hover>a,
    .page-nav .pagenav-catelist>li ul li:hover>em {
        color: var(--color)
    }

    .page-nav .pagenav-catelist>li:hover>a,
    .page-nav .pagenav-catelist>li:hover>em {
        color: var(--color)
    }

    .page-nav .pagenav-catelist>li ul {
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: all .3s ease-in-out
    }

    .page-nav .pagenav-catelist>li:hover>ul {
        transform: scaleY(1);
        opacity: 1
    }

    .page-nav .pagenav-catelist>li ul li>ul {
        position: absolute;
        left: 100%;
        top: 0;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: all .3s ease-in-out
    }

    .page-nav .pagenav-catelist>li ul li:hover>ul {
        transform: scaleY(1);
        opacity: 1
    }
}

.page-main .pro-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none
}

.page-main .pro-list .cate-title {
    text-align: center;
    padding-top: 5px
}

.page-main .pro-list li:hover a {
    color: var(--color)
}

.page-main .pro-list li {
    background: #FFFFFF
}

.page-main .pro-list li .pro-img {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    border-radius: 5px 5px 0 0;
    overflow: hidden
}

.page-main .pro-list li .pro-img>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.page-main .pro-list li .pro-img>a .icon-videoplay {
    display: none
}

.page-main .pro-list li .pro-img>a.lazy-loaded .icon-videoplay {
    display: flex
}

.page-main .pro-list li .pro-img>a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    transition: all .1s linear
}

.page-main .pro-list li .pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .1s linear
}

.page-main .pro-list li .icon {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(10px);
    opacity: 0;
    transition: all .1s linear
}

.page-main .pro-list li .icon.pro-checked {
    transform: translateY(0);
    opacity: 1;
    background: var(--color);
    color: #FFFFFF;
    box-shadow: 0 0 8px 1px rgba(225, 225, 225, .48)
}

.page-main .pro-list li .pro-info {
    position: relative;
    border-radius: 0 0 5px 5px
}

.page-main .pro-list li .pro-info .title {
    font-size: var(--fontsize18);
    color: #1a1414;
    display: inline-block
}

.page-main .pro-list li .pro-info .text {
    font-size: var(--fontsize14);
    color: #555
}

.page-main .pro-list li .pro-info .more {
    min-width: 180px;
    height: 45px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color);
    border-radius: var(--borderradius);
    border: 1px solid transparent;
    font-size: var(--fontsize14);
    text-transform: uppercase
}

.page-main .pro-list li:hover .pro-img img {
    transform: scale(1.02)
}

.page-main .pro-list li:hover .pro-img>a::after {
    opacity: 1
}

.page-main .pro-list li:hover .pro-meta .icon {
    transform: translateY(0);
    opacity: 1
}

.page-main .pro-list li:hover .pro-info .title {
    color: var(--color)
}

.page-main .pro-list li:hover .pro-info .more {
    background: var(--color);
    color: #FFFFFF
}

.page-main .pro-list.list1 li {
    width: 23%;
    margin-right: 2.6%
}

.page-main .pro-list.list1 li:nth-child(4n) {
    margin-right: 0
}

.page-main .pro-list.list1 li .pro-info {
    text-align: center;
    padding: 15px 20px 20px
}

.page-main .pro-list.list1 li .pro-info .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.page-main .pro-list.list1 li .pro-info .text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-bottom: 10px;
}

.page-main .pro-list.list1 li .pro-info .data-price {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fontsize14);
    color: var(--color)
}

.page-main .pro-list.list1 li:hover {
    z-index: 9;
    margin-bottom: -50px
}

.page-main .pro-list.list1 li:hover .pro-info {
    box-shadow: 0 10px 19px 5px rgba(224, 224, 224, .42)
}

.page-main .pro-list.list1 li:hover .pro-info .data-price {
    opacity: 1;
    visibility: inherit;
    overflow: inherit;
    transition: height .3s;
    height: 40px
}

.page-main .pro-list.list0 li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3em;
    padding-bottom: 3em;
    border-bottom: 1px solid #e2e2e2
}

.page-main .pro-list.list0 li .pro-img {
    width: 380px;
    border-radius: 5px
}

.page-main .pro-list.list0 li .pro-info {
    flex: 1;
    padding: 20px 0 20px 30px
}

.page-main .pro-list.list0 li .pro-info .title {
    margin-bottom: 20px
}

.page-main .pro-list.list0 li .pro-info .text {
    margin-bottom: 20px
}

.page-main .pro-list.list0 li .pro-info .more {
    border: 1px solid #d0d0d0;
    color: #666
}

.page-main .pro-list.list0 li .data-price {
    display: flex;
    color: var(--color);
    margin-bottom: 15px
}

.page-main .pro-list.list0 li:hover .pro-info .more {
    color: #FFFFFF;
    border-color: var(--color)
}

.icon-hottitle {
    position: absolute;
    left: 10px;
    top: 15px;
    padding: 0 10px;
    min-width: 40px;
    height: 22px;
    color: #FFFFFF;
    background: #ed7742;
    border-radius: 3px;
    font-size: var(--fontsize14);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    z-index: 1
}

.icon-hottitle::after {
    content: "HOT"
}

.common-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px
}

.common-page li {
    min-width: 45px;
    height: 45px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #929292;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    margin: 5px;
    font-size: var(--fontsize14);
    transition: all .1s linear
}

.common-page .active {
    background: var(--color);
    border-color: var(--color);
    color: #FFFFFF
}

.common-page li:hover {
    color: var(--color);
    border-color: var(--color)
}
.common-page li a{
    width: 100%;
    height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.prodetails-info .prodetails-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px
}

.prodetails-info .prodetails-left {
    width: 54%;
    padding-right: 2%
}

.prodetails-info .prodetails-name {
    font-weight: var(--fontbold6);
    font-size: 36px;
    color: #2c2b2b;
    line-height: 1.4;
    text-align: center
}

.prodetails-info .prodetails-price {
    margin-top: 1em;
    font-size: var(--fontsize14);
    color: var(--color);
    text-align: center
}

.prodetails-info .prodetails-share {
    margin-top: 30px;
    display: flex;
    align-items: center
}

.prodetails-info .prodetails-share>span {
    margin-right: 20px;
    white-space: nowrap;
    font-size: var(--fontsize14)
}

.prodetails-info .prodetails-right {
    flex: 1;
    padding: 2% 4%;
    box-shadow: 0 -4px 20px 0 rgba(0, 0, 0, .06);
    background: #FFFFFF;
    border-radius: 10px
}

.prodetails-info .prodetails-text-title {
    font-size: var(--fontsize18);
    color: #333333;
    text-transform: capitalize;
    margin-bottom: 10px
}

.prodetails-info .prodetails-text {
    font-size: var(--fontsize14);
    color: #666666;
    line-height: 1.8
}

.prodetails-info .prodetails-text ol,
.prodetails-info .prodetails-text ul {
    padding-left: 20px
}

.prodetails-info .prodetails-btnlist {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap
}

.prodetails-info .prodetails-btnlist>* {
    min-width: 180px;
    height: 50px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    border-radius: var(--borderradius);
    border: 1px solid #d0d0d0;
    text-transform: capitalize;
    transition: all .1s linear;
    font-size: var(--fontsize14);
    cursor: pointer;
    text-align: center;
    margin-right: 15px;
    margin-bottom: 10px
}

.prodetails-info .prodetails-btnlist>:last-child {
    margin-right: 0
}

.prodetails-info .prodetails-btnlist>:hover {
    border-color: var(--color);
    color: var(--color)
}

.prodetails-info .prodetails-btnlist>* em {
    margin-right: 5px
}

.prodetails-info .prodetails-btnlist .addToCart {
    color: var(--color);
    border-color: var(--color)
}

.prodetails-info .prodetails-btnlist .addToCart:hover {
    opacity: .8
}

.prodetails-info .prodetails-btnlist .addToCart.added {
    background: var(--color);
    color: #FFFFFF
}

.prodetails-pictitle {
    text-align: center;
    font-size: 38px;
    padding: 20px 0
}

.imgalt {
    display: none
}

.preview-container {
    position: relative;
    display: flex;
    height: 500px
}

.preview-container .thumbnail-show {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center
}

.preview-container .small-box {
    width: 500px;
    aspect-ratio: 1/1;
    background: #EEEEEE;
    border: 1px solid #CCCCCC;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.preview-container .small-box:hover {
    cursor: crosshair
}

.preview-container .small-box img {
    width: 100%;
    height: 100%
}

.preview-container .big-box {
    display: none;
    border: 1px solid #dfdfdf;
    border-left: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    overflow: hidden;
    z-index: 999;
    background: #FFFFFF
}

.preview-container .big-box img {
    display: block;
    max-width: none;
    max-height: none;
    width: 150%
}

.preview-container .big-box.act {
    display: none !important
}

.small-box .hover {
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: rgba(204, 204, 204, .6);
    border: 1px solid #EEEEEE;
    display: none;
    cursor: move;
    z-index: 9
}

.preview-container .thumbnail-show #media {
    background: #EEEEEE;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    z-index: 9
}

.preview-container .thumbnail-box {
    width: 120px;
    margin-right: 20px;
    padding: 25px 0
}

.preview-container .thumbnail-box .swiper {
    padding-right: 20px;
    width: 100%;
    height: 100%
}

.preview-container .thumbnail-box .item {
    width: 82px;
    overflow: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all .1s linear;
    position: relative;
    border: 1px solid #EEEEEE
}

.preview-container .thumbnail-box .item.item-cur {
    border-color: var(--color)
}

.preview-container .thumbnail-box .item.item-cur::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 10px solid var(--color)
}

.preview-container .thumbnail-box .item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.thumbnail-box .prodetails-button-next,
.thumbnail-box .prodetails-button-prev {
    position: absolute;
    top: 0;
    left: 0;
    width: 82px;
    height: 20px;
    background: var(--color);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .1s linear;
    z-index: 9
}

.thumbnail-box .prodetails-button-next.not,
.thumbnail-box .prodetails-button-prev.not {
    background: #EEEEEE;
    color: #999
}

.thumbnail-box .prodetails-button-next:hover,
.thumbnail-box .prodetails-button-prev:hover {
    opacity: .9
}

.thumbnail-box .prodetails-button-prev em {
    transform: rotate(180deg)
}

.thumbnail-box .prodetails-button-next {
    top: auto;
    bottom: 0
}

.thumbnail-show .prodetails-button-next,
.thumbnail-show .prodetails-button-prev {
    width: 45px;
    height: 45px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all .1s linear;
    cursor: pointer
}

.thumbnail-show .prodetails-button-next:hover,
.thumbnail-show .prodetails-button-prev:hover {
    color: #FFFFFF;
    border-color: var(--color);
    background: var(--color)
}

.thumbnail-show .prodetails-button-next {
    left: auto;
    right: 20px
}

.preview-container .thumbnail-box .banner-page {
    display: none
}

.singglepic {
    width: 500px;
    height: 500px;
    text-align: center;
    overflow: hidden;
    margin: 0 auto
}

.singglepic img {
    max-height: 500px
}

.mediaplay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    transition: .5s;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 1
}

.mediaplay em {
    font-size: 36px;
    position: static;
    border: none;
    background: 0 0;
    transform: none;
    width: auto;
    height: auto
}

.mediaplay::after {
    content: "";
    display: block;
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -2px;
    top: -2px;
    border-radius: 50%;
    border: 3px solid;
    opacity: .8;
    border-color: transparent;
    border-right-color: var(--color);
    animation: runDot 2s infinite ease-in-out
}

.mediaplay:hover {
    color: var(--color);
    background: rgba(255, 255, 255, .7)
}

@keyframes runDot {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(359deg)
    }
}

.prodetails-tabs {
    background: #F2F2F2;
    margin: 50px 0 20px
}

.prodetails-tabs .l-wrap {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.prodetails-tabs .prodetails-tabs-item {
    font-size: 24px;
    text-transform: capitalize;
    padding: 20px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer
}

.prodetails-tabs .prodetails-tabs-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color);
    transition: all .1s linear
}

.prodetails-tabs .prodetails-tabs-item.act::after {
    width: 100px
}

.tagContent+.tagContent {
    margin-top: 30px
}

.pagelink {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    padding: 30px 0;
    margin: 30px 0
}

.pagelink .pagelink-item {
    width: 50%;
    display: flex;
    flex-direction: column
}

.pagelink .pagelink-item.prev {
    align-items: flex-start;
    padding-right: 20px;
    text-align: left
}

.pagelink .pagelink-item.next {
    align-items: flex-end;
    padding-left: 20px;
    text-align: right
}

.pagelink .pagelink-item .icon {
    color: var(--color);
    text-transform: capitalize
}

.pagelink .pagelink-item .link {
    font-size: var(--fontsize18);
    padding-top: 5px
}

.pagelink .pagelink-item .link:hover {
    color: var(--color)
}

.prohome-content {
    clear: both;
    margin: 0 auto 20px;
    padding: 10px;
    max-width: 1600px;
    line-height: 1.6;
    box-sizing: border-box;
    border-radius: 5px
}

.prolist-bottom {
    clear: both;
    margin: 0 auto 0;
    padding: 10px;
    max-width: 1600px;
    line-height: 1.6;
    box-sizing: border-box;
    border-radius: 5px
}

.prolist-bottom a {
    text-decoration: underline
}

.prolist-bottom a:hover {
    color: var(--color)
}

.pro-bottom {
    margin: 0 auto;
    padding: 0
}

.pro-bottom a {
    text-decoration: underline;
    text-transform: lowercase
}

.pro-bottom a:active,
.pro-bottom a:hover {
    color: var(--color)
}

@media (max-width:1700px) {

    .prohome-content,
    .prolist-bottom {
        max-width: 1400px
    }
}

@media (max-width:1500px) {

    .prohome-content,
    .prolist-bottom {
        max-width: 1200px
    }
}

@media (max-width:1240px) {

    .prohome-content,
    .prolist-bottom {
        max-width: 98%
    }
}

@media (max-width:768px) {

    .prohome-content,
    .prolist-bottom {
        max-width: 100%;
        margin-left: 3vw;
        margin-right: 3vw
    }
}

@media (max-width:768px) {
    .prohome-content {
        clear: both;
        line-height: 1.6;
        padding: 0
    }

    .prolist-bottom {
        clear: both;
        line-height: 1.6;
        padding: 0
    }
}

.prolist-content {
    clear: both;
    margin: 0 auto 15px;
    line-height: 1.6
}

.protypefeedback {
    padding: 3% 0;
    background: #fafafa
}

.inquiry-title {
    font-size: 36px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 20px;
    line-height: 1
}

.inquiry-des {
    font-size: var(--fontsize14);
    text-align: center;
    margin-bottom: 20px
}

.maylink-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 1%
}

.maylink-list li {
    background: #FFFFFF;
    width: 24%;
    margin-right: 1.3%
}

.maylink-list li:nth-child(4n) {
    margin-right: 0
}

.maylink-list li .pro-img {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    border-radius: 5px 5px 0 0;
    overflow: hidden
}

.maylink-list li .pro-img>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.maylink-list li .pro-img>a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    transition: all .1s linear
}

.maylink-list li .pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .1s linear
}

.maylink-list li .pro-info {
    position: relative;
    border-radius: 0 0 5px 5px;
    text-align: center;
    padding: 15px 20px 20px
}

.maylink-list li .pro-info .title {
    font-size: var(--fontsize18);
    color: #1a1414;
    display: inline-block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.maylink-list li .pro-info .text {
    font-size: var(--fontsize14);
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.maylink-list li .pro-info .more {
    min-width: 180px;
    height: 45px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color);
    border-radius: var(--borderradius);
    border: 1px solid transparent;
    font-size: var(--fontsize14);
    text-transform: uppercase;
    margin-top: 15px
}

.maylink-list li:hover {
    z-index: 9
}

.maylink-list li:hover .pro-img img {
    transform: scale(1.02)
}

.maylink-list li:hover .pro-img>a::after {
    opacity: 1
}

.maylink-list li:hover .pro-info {
    box-shadow: 0 10px 19px 5px rgba(224, 224, 224, .42)
}

.maylink-list li:hover .pro-info .title {
    color: var(--color)
}

.maylink-list li:hover .pro-info .more {
    background: var(--color);
    color: #FFFFFF
}

.news-main .common-main {
    padding-top: 0
}

.page-hotnews {
    background: #f7f7f7;
    padding: 3% 0
}

.page-hotnews .swiper-slide {
    display: flex
}

.page-hotnews .swiper-slide .img {
    width: 60%;
    border-radius: 10px
}

.page-hotnews .swiper-slide .img img {
    width: 100%;
    transition: all .1s linear
}

.page-hotnews .swiper-slide .img:hover img {
    transform: scale(1.01)
}

.page-hotnews .swiper-slide .info {
    flex: 1;
    position: relative
}

.page-hotnews .swiper-slide .info .box {
    background: #FFFFFF;
    padding: 12% 10%;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: calc(100% + 100px);
    min-height: 80%
}

.page-hotnews .swiper-slide .info .date {
    color: var(--color);
    text-transform: uppercase;
    margin-bottom: 10px
}

.page-hotnews .swiper-slide .info .title {
    font-size: 24px;
    line-height: 1.2
}

.page-hotnews .swiper-slide .info .title:hover {
    color: var(--color)
}

.page-hotnews .swiper-slide .info .text {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: var(--fontsize14);
    color: #666
}

.page-hotnews .swiper-slide .info .more {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: var(--fontsize14);
    text-transform: uppercase;
    padding-bottom: 4px
}

.page-hotnews .swiper-slide .info .more:hover {
    color: var(--color)
}

.page-hotnews .swiper-slide .info .more:hover::after {
    background: var(--color);
    width: 100%
}

.page-hotnews .swiper-slide .info .more em {
    margin-left: 10px
}

.page-hotnews .swiper-slide .info .more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #333333;
    transition: width .1s linear
}

.page-hotnews .hotnews-pagination {
    position: absolute;
    bottom: 20%;
    left: auto;
    right: 30px;
    width: auto;
    z-index: 1
}

.page-hotnews .hotnews-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: #e1e1e1;
    border-radius: 50%;
    opacity: 1
}

.page-hotnews .hotnews-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #FFFFFF;
    border-radius: 50%;
    border: 2px solid #272727
}

.newslist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 3%
}

.newslist li {
    transition: all .1s linear
}

.newslist li .img {
    aspect-ratio: 3/2;
    border-radius: 15px 15px 0 0;
    width: 100%
}

.newslist li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.newslist li .img .date {
    position: absolute;
    left: 20px;
    top: 20px;
    background: var(--color);
    text-align: center;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 3px;
    z-index: 1;
    font-size: var(--fontsize14);
    text-transform: uppercase;
    line-height: 1.2
}

.newslist li .info .title {
    font-size: 20px;
    line-height: 1.4
}

.newslist li .info .text {
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: var(--fontsize14);
    color: #666
}

.newslist li .info .more {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: var(--fontsize14);
    text-transform: uppercase;
    padding-bottom: 4px
}

.newslist li .info .more:hover {
    color: var(--color)
}

.newslist li .info .more:hover::after {
    background: var(--color);
    width: 100%
}

.newslist li .info .more em {
    margin-left: 10px
}

.newslist li .info .more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #333333;
    transition: width .1s linear
}

.newslist li:hover {
    transform: translateY(-5px)
}

.newslist li:hover .info .title {
    color: var(--color)
}

.newslist.list1 li {
    width: 31%;
    margin-right: 2%;
    margin-bottom: 3em;
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.newslist.list1 li:nth-child(3n) {
    margin-right: 0
}

.newslist.list1 li .info {
    width: 90%;
    background: #FFFFFF;
    box-shadow: 0 1px 28px 1px rgba(228, 228, 228, .55);
    border-radius: 15px 0 15px 0;
    padding: 30px 20px;
    z-index: 2;
    margin-top: -30px
}

.newslist.list0 li {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 2em;
    margin-bottom: 2em
}

.newslist.list0 li .img {
    border-radius: 15px;
    width: 380px
}

.newslist.list0 li .info {
    flex: 1;
    padding: 20px 0 20px 40px
}

.newscontent-title {
    font-weight: var(--fontbold5);
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 10px
}

.newscontent-meta {
    display: flex;
    align-items: center;
    font-size: var(--fontsize14);
    color: var(--color);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEEEEE
}

.newscontent-meta>p {
    margin-right: 15px
}

.newscontent-meta>p:last-child {
    margin-right: 0
}

.newscontent-meta .newsendinquiry {
    cursor: pointer
}

.newscontent-details {
    margin-bottom: 40px
}

.pageproject .home-title p:nth-child(2) {
    color: var(--color)
}

.pageproject .pageproject-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3%;
    list-style: none
}

.pageproject .pageproject-list li {
    width: 32%;
    margin-bottom: 3em
}

.pageproject .pageproject-list li .img {
    border-radius: 10px
}

.pageproject .pageproject-list li .info {
    display: flex
}

.pageproject .pageproject-list li .info .box {
    width: 100%;
    max-width: 260px;
    background: #332f2c;
    border-radius: 10px;
    padding: 20px;
    margin-top: -60px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column
}

.pageproject .pageproject-list li .info .box .p1 {
    font-size: var(--fontsize14)
}

.pageproject .pageproject-list li .info .box .p2 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: var(--fontbold3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.pageproject .pageproject-list li .info .more {
    min-width: 110px;
    height: 38px;
    padding: 0 15px;
    background: #faf6f1;
    border-radius: 0 0 10px 0;
    text-decoration: none;
    color: #333333;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.pageproject .pageproject-list li .info .more em {
    margin-right: 5px
}

.pageproject .pageproject-list li:hover .info .more {
    background: var(--color);
    color: #FFFFFF
}

.project-list {
    list-style: none
}

.project-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px
}

.project-wrap li {
    width: 23%;
    margin-right: 2.6%;
    margin-bottom: 20px
}

.project-wrap li:nth-child(4n) {
    margin-right: 0
}

.project-wrap li .project-img {
    aspect-ratio: 3/2;
    border-radius: 10px;
    border: 1px solid #EEEEEE;
    overflow: hidden
}

.project-wrap li .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .1s linear
}

.project-wrap li .project-info {
    padding: 10px
}

.project-wrap li .project-name {
    font-size: var(--fontsize18);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.project-wrap li .project-content {
    margin-top: 10px;
    font-size: var(--fontsize14);
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.project-wrap li:hover .project-img img {
    transform: scale(1.02)
}

.project-wrap li:hover .project-name {
    color: var(--color)
}

.faqs-list li {
    width: 100%;
    margin-bottom: 25px
}

.faqs-list .project-info {
    margin-bottom: 1em
}

.faqs-list .project-info.open .project-name {
    color: var(--color)
}

.faqs-list .project-info .project-name {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: var(--fontsize18);
    padding-right: 70px;
    font-weight: var(--fontbold6);
}

.faqs-list .project-info .project-name em {
    transition: all .1s linear;
    position: absolute;
    right: 30px;
    top: 0;
    color: #FFFFFF;
    font-weight: var(--fontbold6);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #ddd;
    border-radius: 50%;
    font-size: var(--fontsize16)
}

.faqs-list .project-info.open .project-name em {
    transform: rotateX(180deg);
    background: var(--color)
}

.faqs-list .project-info .project-content {
    display: none;
    margin-top: .5em;
    position: relative;
    padding: 20px 20px;
    color: #555;
    font-size: var(--fontsize14);
    border-radius: 5px;
    background: #f3f7fa;
    z-index: 1
}

.download-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2%
}

.download-list li {
    width: 49%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .1);
    transition: all .1s linear;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px
}

.download-list li:hover {
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .2)
}

.download-list li:hover .download-img img {
    transform: scale(1.01)
}

.download-list li .download-img {
    width: 140px
}

.download-list li .download-img img {
    width: 100%;
    transition: all .1s linear
}

.download-list li .download-info {
    flex: 1;
    padding: 0 20px
}

.download-list li .download-btn {
    background: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border-radius: 4px;
    width: 140px;
    height: 36px;
    transition: all .2s linear;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 10px
}

.download-list li .download-btn:hover {
    box-shadow: 1px 2px 10px var(--color)
}

.contactlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    font-family: Poppins
}

.contactlist li {
    width: 23%;
    background: #f7f7f7;
    border-radius: 5px;
    overflow: hidden
}

.contactlist li:hover .icon em {
    background: var(--color);
    color: #FFFFFF
}

.contactlist li .icon {
    position: relative;
    z-index: 1
}

.contactlist li .icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 0
}

.contactlist li .icon img {
    width: 100%
}

.contactlist li .icon em {
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: var(--color);
    background: #FFFFFF;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear
}

.contactlist li .info {
    text-align: center;
    padding: 20px 10px 10px
}

.contactlist li .info .p1 {
    color: var(--color);
    font-weight: var(--fontbold5)
}

.contactlist li .info .p2 {
    color: #000
}

.contactlist li .info .p2 * {
    color: #000
}

.contactbox {
    position: relative;
    z-index: 1;
    padding: 3% 0
}

.contactbox::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 1920px;
    height: 100%;
    background: #F1F1F1;
    z-index: -1
}

.contactbox .contactflex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2%;
    background: #FFFFFF
}

.contactbox .contactflex .contactform {
    width: 50%;
    padding: 4% 3%
}

.contactbox .contactflex .contactform .contact-title {
    font-size: 30px
}

.contactbox .contactflex .contactform .wmkcfeedback {
    margin-top: 20px
}

.contactbox .contactflex .contactimg {
    flex: 1
}

.contactbox .contactflex .contactimg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media (max-width:1366px) {
    .inquiry-title {
        font-size: 30px
    }

    .pageteam .list {
        margin-top: 60px
    }

    .preview-container {
        height: 400px
    }

    .preview-container .small-box {
        width: 400px
    }

    .thumbnail-show .prodetails-button-next {
        right: 0
    }

    .preview-container .thumbnail-box {
        margin-right: 0
    }

    .thumbnail-box .prodetails-button-next,
    .thumbnail-box .prodetails-button-prev {
        width: 85px
    }

    .preview-container .thumbnail-box .item {
        width: 85px
    }

    .prodetails-info .prodetails-right {
        padding: 2%
    }

    .thumbnail-show .prodetails-button-prev {
        left: 0
    }

    .prodetails-info .prodetails-btnlist>* {
        min-width: 160px;
        height: 45px;
        margin-right: 7px
    }
}

@media (max-width:1280px) {
    .inquiry-title {
        font-size: 26px
    }

    .pageteam .list li {
        width: 49%;
        margin-right: 0;
        margin-bottom: 20px
    }

    .prodetails-info .prodetails-right {
        padding-left: 20px
    }

    .page-hotnews .swiper-slide .info .title {
        font-size: 20px
    }

    .page-hotnews .swiper-slide .img {
        width: 50%;
        border-radius: 10px 0 0 10px
    }

    .page-hotnews .swiper-slide .info .box {
        width: 100%;
        position: static;
        transform: none;
        height: 100%;
        padding: 20px
    }

    .newslist.list1 li .info {
        width: 100%
    }
}

.catecontainer .cate1title {
    font-size: 24px
}

.catecontainer .cate1title a:hover {
    color: var(--color)
}

.catecontainer .cate1title {
    text-align: center;
    font-size: 36px;
    font-weight: var(--fontbold6);
    margin-bottom: 20px;
    color: #444
}

.catecontainer .cate2list {
    display: flex;
    flex-wrap: wrap;
    list-style: none
}

.catecontainer .cate2list li {
    width: 23%;
    margin-bottom: 20px;
    margin-right: 2.6%
}

.catecontainer .cate2list li:nth-child(4n) {
    margin-right: 0
}

.catecontainer .cate2list li .img {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    aspect-ratio: 1/1
}

.catecontainer .cate2list li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.catecontainer .cate2list li .title {
    text-align: center;
    font-size: var(--fontsize16);
    margin-top: 5px
}

.catecontainer .cate2list li:hover .img img {
    transform: scale(1.02)
}

.catecontainer .cate2list li:hover .title a {
    color: var(--color)
}

.custom-form {
    display: flex;
    flex-wrap: wrap
}

.custom-form .sidebar {
    width: 280px;
    margin-right: 20px;
    background: #fafafa;
    padding: 20px 10px
}

.custom-form .page-container {
    flex: 1
}

.custom-form .sidebar-title {
    font-weight: var(--fontbold6);
    font-size: var(--fontsize18);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    align-items: center
}

.custom-form .pro-cate-title {
    margin: 0 0 20px
}

#filterlist .sidebar-item.act .sidebar-title em {
    transform: rotate(90deg)
}

#filterlist .sidebar-item .filterlist-ul {
    display: none
}

@media (max-width:1024px) {
    .custom-form .sidebar {
        width: 100%;
        margin: 0 0 20px;
        padding: 20px
    }
}

.singgle-main {
    overflow: hidden
}

#filterlist .sidebar-item {
    margin-bottom: 20px
}

#filterlist .filterlist-ul li {
    display: flex;
    align-items: center;
    margin: 10px 0 20px;
    line-height: 1;
    cursor: pointer;
    user-select: none
}

#filterlist .filterlist-ul li:nth-child(n+21) {
    display: none
}

#filterlist .filterlist-ul li.act {
    color: var(--color)
}

#filterlist .filterlist-ul li.act .input::after {
    transform: translate(-50%, -50%) scale(1)
}

#filterlist .filterlist-ul li .input {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 1px solid #666666;
    position: relative
}

#filterlist .filterlist-ul li .input::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 9px;
    height: 9px;
    background: var(--color);
    transition: all .1s linear
}

#filterlist .filterlist-ul li span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

#filterlist .viewmore-filter {
    color: var(--color);
    text-transform: uppercase;
    cursor: pointer
}

#filterlist .viewmore-filter:hover {
    text-decoration: underline
}

.pagesbanner {
    position: relative;
    z-index: 1
}

.pagesbanner video,
.pagesbanner img {
    width: 100%;
    height: auto;
    object-fit: cover
}

.pagesbanner .pagesbanner-animate {
    width: 100%;
    padding: 0 20px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f3f3f3;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    animation: pagesbanner 1s .5s forwards
}

.pagesbanner .pagesbanner-animate .p1 {
    font-size: 36px;
    font-weight: var(--fontbold5, 500);
    line-height: 1.2
}

.pagesbanner .pagesbanner-animate .p2 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: var(--fontbold4, 400)
}

@keyframes pagesbanner {
    0% {
        margin-top: 20px;
        opacity: 0
    }

    100% {
        margin-top: 0;
        opacity: 1
    }
}

@media (max-width:1024px) {
    .pagesbanner .pagesbanner-animate .p1 {
        font-size: 26px
    }

    .pagesbanner .pagesbanner-animate .p2 {
        margin-top: 10px;
        font-size: 16px
    }
}

@media (max-width:768px) {
    .pagesbanner .pagesbanner-animate .p1 {
        font-size: 20px
    }

    .pagesbanner .pagesbanner-animate .p2 {
        font-size: 14px
    }
}

.pro-main .pro-maylink {
    display: none
}

.blogflex-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: #fafafa;
    padding: 20px 15px
}

.blogflex-info .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #eee;
    overflow: hidden
}

.blogflex-info .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blogflex-info .info {
    flex: 1;
    padding-left: 20px
}

.blogflex-info .info-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color)
}

.blogflex-info .email-subscription {
    color: #666
}

.blogflex-info .info-content {
    line-height: 1.4;
    color: #666;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 30;
    overflow: hidden
}

.email-subscription {
    display: flex;
    flex-direction: column;
    width: 100%
}

.email-subscription input {
    width: 100%;
    outline: 0;
    border: 1px solid #CCCCCC;
    height: 40px;
    border-radius: 0;
    padding: 0 10px;
    transition: all .1s linear;
    box-sizing: border-box
}

.email-subscription button {
    margin-top: 10px;
    width: 100%;
    height: 40px;
    background: var(--color, #333);
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all .1s linear
}

.company-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 30;
    overflow: hidden
}

.procate {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 30px
}

.procate li {
    width: 23%;
    margin-bottom: 2.2em;
    margin-right: 2.6%;
    background: #FFFFFF;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, .1);
    border-radius: var(--borderradius);
    position: relative;
    overflow: hidden;
    transition: all .2s linear
}

.procate li:hover {
    background: var(--color)
}

.procate li:nth-child(4n) {
    margin-right: 0px
}

.procate li .img {
    aspect-ratio: var(--prosaspectratio);
    display: flex;
    background: #FFFFFF;
    position: relative
}

.procate li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.procate li:hover .img img {
    transform: scale(1.02)
}

.procate li .info {
    padding: 15px;
    line-height: 1.6
}

.procate li .info .title {
    font-size: var(--fontsize18);
    font-weight: var(--fontbold6)
}

.procate li .info .text {
    font-size: var(--fontsize16);
    margin: 10px 0px 0px
}

.procate li .info .more {
    font-weight: var(--fontbold6)
}

.image-gallery-page {
    padding: 4% 0
}

.image-gallery-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0
}

.image-gallery-list li {
    min-width: 0
}

.image-gallery-item {
    width: 100%;
    display: block;
    padding: 0;
    border: none;
    border-radius: 15px 0 15px 0;
    background: #fff;
    box-shadow: 0 1px 28px 1px rgba(228, 228, 228, .55);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    transition: transform .2s linear, box-shadow .2s linear
}

.image-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .12)
}

.image-gallery-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: #eee
}

.image-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s linear
}

.image-gallery-item:hover .image-gallery-img img {
    transform: scale(1.04)
}

.image-gallery-info {
    min-height: 74px;
    padding: 18px 20px;
    display: flex;
    align-items: center
}

.image-gallery-title {
    color: #333;
    font-size: var(--fontsize18);
    font-weight: var(--fontbold6);
    line-height: 1.4
}

.image-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    padding: 40px;
    background: rgba(0, 0, 0, .82);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s linear, visibility .2s linear
}

.image-preview-modal.is-active {
    opacity: 1;
    visibility: visible
}

.image-preview-dialog {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    text-align: center
}

.image-preview-dialog img {
    max-width: 100%;
    max-height: calc(86vh - 56px);
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35)
}

.image-preview-title {
    color: #fff;
    font-size: var(--fontsize16);
    margin-top: 14px;
    line-height: 1.5
}

.image-preview-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s linear, border-color .2s linear
}

.image-preview-close:hover {
    background: var(--color);
    border-color: var(--color)
}

@media (max-width:1024px) {
    .image-gallery-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px
    }
}

@media (max-width:500px) {
    .image-gallery-page {
        padding: 30px 0
    }

    .image-gallery-list {
        grid-template-columns: 1fr
    }

    .image-preview-modal {
        padding: 16px
    }

    .image-preview-close {
        top: 14px;
        right: 14px
    }
}
