@charset "utf-8"; @import url(https://css02.v15cdn.com/m433/fonts/iconfont.css); @import url(https://css02.v15cdn.com/m433/swiper.css);:root {
    --color: #3484da;
    --hovercolor: #3484da;
    --fontcolor: #222222;
    --titlecolor: #222222;
    --introcolor: #555555;
    --headercolor: #ffffff;
    --footercolor: #ffffff;
    --prosaspectratio: 4/4;
    --newssaspectratio: 4/3;
    --hometitlefont: 34px;
    --fontsize12: 12px;
    --fontsize13: 13px;
    --fontsize14: 14px;
    --fontsize15: 15px;
    --fontsize16: 16px;
    --fontsize17: 17px;
    --fontsize18: 18px;
    --fontsize20: 20px;
    --fontsize22: 22px;
    --fontsize24: 24px;
    --fontsize26: 26px;
    --fontsize28: 28px;
    --fontsize30: 30px;
    --fontsize32: 32px;
    --fontsize34: 34px;
    --fontsize36: 36px;
    --fontsize40: 40px;
    --fontsize45: 45px;
    --fontbold3: 300;
    --fontbold4: 400;
    --fontbold5: 500;
    --fontbold6: 600;
    --fontbold7: 700;
    --fontbold8: 800;
    --fontbold9: 900;
    --borderradius: 6px;
    --fontfamily: "Titillium Web","Lato","Open Sans","Roboto","Poppins","Oswald","Noto Sans","Montserrat",sans-serif
}

@media (max-width: 1440px) {
    :root {
        --hometitlefont:30px
    }
}

@media (max-width: 1024px) {
    :root {
        --hometitlefont:26px
    }
}

*,html,body,h1,h2,h3,h4,h5,h6,table,th,td,ul,li,dl,dt,dd,div,p {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent;
    background: #E5E5E5;
    overflow-x: hidden
}

body {
    font-family: var(--fontfamily);
    max-width: 1920px;
    margin: 0px auto;
    font-size: var(--fontsize16);
    line-height: 1.8;
    background: #FFFFFF;
    color: var(--fontcolor);
    padding-top: 0px;
    overflow-x: hidden
}

ul,ol,li {
    list-style: none
}

@media (min-width: 1025px) {
    ::-webkit-scrollbar {
        width:10px;
        height: 4px
    }

    ::-webkit-scrollbar-track {
        background: #FFFFFF;
        border-radius: 0px
    }

    ::-webkit-scrollbar-thumb {
        background: #CCCCCC;
        border-radius: 5px;
        transition: all .1s linear
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #BDBBBB
    }
}

img.lazy {
    display: inline-block;
    opacity: 0
}

img.lazy,img.tst {
    transition: opacity .6s,transform .3s ease
}

img.loaded {
    opacity: 1
}

img:not([src]) {
    visibility: hidden;
    position: absolute
}

.lazy-load {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%,-50%);
    border: 2px solid #000000;
    border-top-color: rgba(0,0,0,.2);
    border-right-color: rgba(0,0,0,.2);
    border-bottom-color: rgba(0,0,0,.2);
    border-radius: 100%;
    animation: circle infinite 1s linear
}

@keyframes circle {
    0% {
        transform: translate(-50%,-50%) rotate(0)
    }

    100% {
        transform: translate(-50%,-50%) rotate(360deg)
    }
}

.lazy-wrap {
    display: block;
    position: relative;
    overflow: hidden
}

.lazy-wrap::after {
    content: "";
    display: block;
    padding-bottom: 50%
}

.lazy-wrap.lazy-loaded .lazy-load {
    -webkit-animation: none;
    animation: none;
    display: none
}

.lazy-wrap.lazy-loaded::after {
    padding-bottom: 0px
}

img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .1s linear
}

iframe,video {
    max-width: 100%;
    outline: 0;
    border: none;
    vertical-align: bottom;
    height: auto;
    min-height: 240px
}

@media (max-width: 768px) {
    iframe,video {
        width:100%
    }
}

.hidden {
    overflow: hidden
}

.l-wrap {
    width: 100%;
    max-width: 1600px;
    padding: 0px 70px;
    margin: 0px auto;
}

.line1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden
}

.line3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.line4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden
}

.line5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden
}

.home-icon {
    color: var(--color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px
}

.home-title {
    font-size: var(--hometitlefont);
    font-weight: var(--fontbold6);
    text-align: center;
    text-transform: capitalize;
    line-height: 1.4
}

.home-des {
    font-size: var(--fontsize16);
    color: #565656;
    text-align: center;
    max-width: 1000px;
    margin: 10px auto 0px
}

.home-more {
    min-width: 200px;
    padding: 0px 20px;
    height: 50px;
    border-radius: 30px;
    border: 1px solid var(--color);
    color: #FFFFFF;
    background: var(--color);
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .1s linear;
    font-size: var(--fontsize18);
    position: relative
}

.home-more:hover {
    color: #FFFFFF;
    background: #111111;
    border-color: #111111
}

.home-more em {
    margin-right: 10px
}

header {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 9999;
    transition: all .1s linear
}

.head-top {
    height: 40px;
    transition: all .1s linear;
    position: relative
}

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

.head-left {
    display: flex;
    align-items: center;
    color: var(--headercolor)
}

.head-left .item {
    display: inline-flex;
    align-items: center
}

.head-left .item:last-child {
    margin-left: 20px
}

.head-left .item em {
    margin-right: 5px
}

.head-left .item a:hover {
    text-decoration: underline
}

.head-top .head-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.head-top .head-right .head-share {
    margin-right: 10px
}

.head-top .head-right .head-share ul {
    list-style: none;
    display: flex;
    align-items: center;
    transition: all .1s linear
}

.head-info {
    height: 80px;
    transition: all .1s linear
}

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

.head-info .m-menu {
    display: none
}

.head-logo a {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.head-logo a img {
    width: auto;
    max-height: 60px
}

.head-logo a .himg {
    display: block
}

.head-logo a .fimg {
    display: none
}

.head-logo a:hover {
    animation: logotran 0.6s forwards
}

@keyframes logotran {
    0% {
        transform: scale(1)
    }

    30% {
        transform: scale(1.04)
    }

    100% {
        transform: scale(1)
    }
}

header.is-active .himg {
    display: none
}

header.is-active .fimg {
    display: block
}

.head-nav {
    display: flex;
    align-items: center;
    height: 100%
}

.head-nav .nav-ul {
    height: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0px
}

.head-nav .nav-ul>li {
    height: 100%;
    position: relative
}

.head-nav .nav-ul>li>a {
    font-size: var(--fontsize18);
    color: var(--headercolor);
    text-transform: capitalize;
    margin: 0px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    white-space: nowrap
}
.head-nav .nav-ul>li>a em {
    margin-left: 5px;
    font-size: var(--fontsize14);
    font-weight: var(--fontbold5);
    display: none;
}
.head-nav .nav-ul > li:nth-child(3) > a em,
.head-nav .nav-ul > li:nth-child(4) > a em,
.head-nav .nav-ul > li:nth-child(5) > a em{
  display: block; 
}
.head-nav .nav-ul>li>a::before {
    content: "";
    width: 0px;
    height: 2px;
    background: var(--color);
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: all .2s linear
}

.head-nav .nav-ul>li:hover>a {
    color: var(--color)!important
}

.head-nav .nav-ul>li>a.inmenu_1 {
    color: var(--color)!important
}

.head-nav .nav-ul>li:hover>a::before,.head-nav .nav-ul>li>a.inmenu_1::before {
    width: 100%
}

.head-nav .nav-ul>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    background: #FFFFFF;
    min-width: 160px;
    margin: 0px;
    box-shadow: 1px 2px 10px rgba(0,0,0,.1);
    white-space: nowrap
}

.head-nav .nav-ul>li>ul li {
    position: relative
}

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

.head-nav .nav-ul>li>ul a {
    padding: 0px 10px;
    height: 45px;
    line-height: 45px;
    color: var(--fontcolor);
    padding-right: 30px;
    text-align: left;
    transition: all .1s linear;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: var(--fontsize16)
}

.head-nav .nav-ul>li>ul a+em {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

.head-nav .nav-ul>li>ul ul {
    position: absolute;
    left: 100%;
    top: 0px;
    background: #FFFFFF;
    min-width: 220px;
    margin: 0px;
    box-shadow: 1px 2px 10px rgba(0,0,0,.1)
}

.head-nav .nav-ul ul {
    list-style: none;
    padding: 0px
}

@media(min-width: 1025px) {
    #liinquiry {
        display:flex;
        align-items: center
    }

    #liinquiry a {
        background: var(--color);
        height: 40px;
        padding: 0 15px;
        border-radius: 30px;
        color: #fff!important;
        transition: all .1s linear;
        text-decoration: none
    }

    #liinquiry a:hover {
        opacity: .9
    }

    #liinquiry a::before {
        display: none
    }
}

.head-nav .search-box {
    height: 100%;
    position: relative
}

.head-nav .search-box .head-search {
    height: 100%;
    display: inline-flex;
    align-items: center
}

.head-nav .search-box .head-search button {
    outline: 0;
    border: none;
    cursor: pointer;
    background: 0 0;
    border-radius: var(--borderradius);
    margin-left: 10px;
    width: 36px;
    height: 36px;
    background: var(--color)
}

.head-nav .search-box .head-search button em {
    font-weight: var(--fontbold6);
    font-size: var(--fontsize22);
    color: #FFFFFF
}

.head-nav .search-input {
    position: absolute;
    top: 20px;
    right: 45px;
    background: #000000;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 4px rgba(0,0,0,.2);
    opacity: 0;
    transform: rotateX(90deg);
    visibility: hidden
}

.head-nav .search-input.active {
    transition: opacity .3s,transform .3s;
    visibility: visible;
    opacity: 1;
    transform: rotateX(0);
    transform-origin: top
}

.head-nav .search-input input {
    width: 200px;
    height: 40px;
    padding-left: 10px;
    font-size: var(--fontsize16);
    border: none;
    background: 0 0;
    color: #FFFFFF;
    outline: 0
}

.head-nav .search-input button {
    width: 40px;
    height: 40px;
    border: none;
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #333333;
    transition: all .1s linear
}

.head-nav .search-input button em {
    font-size: 22px;
    color: var(--color);
    font-weight: var(--fontbold6)
}

@media (min-width: 1025px) {
    .nav-ul>li:hover .submenu {
        transform:scaleY(1);
        opacity: 1
    }

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

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

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

header.is-active .head-top {
    height: 0px;
    opacity: 0
}

header.is-active .head-info {
    height: 75px;
    background: #FFFFFF;
    box-shadow: 1px 5px 10px rgba(0,0,0,.1)
}

header.is-active .head-info .head-nav .nav-ul>li>a {
    color: var(--fontcolor)
}

footer {
    background-color: var(--hovercolor);
    background-image: url(https://css02.v15cdn.com/m433/imgs/foot-bg.svg);
    color: var(--footercolor)
}

footer .foot-main {
    padding: 3% 0px
}

.foot-qrimg img {
    max-width: 100px;
    height: auto
}

footer a {
    color: var(--footercolor);
    transition: all .1s linear
}

footer a:hover {
    text-decoration: underline
}

footer .foot-logo img {
    max-height: 60px
}

footer .foot-title {
    font-weight: var(--fontbold6);
    font-size: var(--fontsize24);
    color: var(--footercolor);
    margin-bottom: 10px
}

footer .foot-item {
    width: 20%
}

footer .foot-cate {
    width: 16%
}

footer .foot-list {
    list-style: none
}

footer .foot-list li {
    margin-bottom: 4px
}

footer .foot-nav .foot-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

footer .foot-nav .foot-list li {
    width: 49%
}

footer .foot-link li {
    display: flex
}

footer .foot-link li p {
    padding-left: 10px
}

footer .foot-share {
    margin-top: 15px
}

footer .foot-share ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none
}

footer .foot-share ul li {
    margin-right: 10px;
    margin-bottom: 10px
}

footer .foot-share ul li a {
    width: 35px;
    height: 35px;
    background: #0000008C;
    border-radius: var(--borderradius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all .2s linear
}

footer .foot-share ul li a:hover {
    transform: translateY(-4px)
}

.foot-main .l-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

footer .foot-info .foot-text {
    max-width: 520px;
    margin-bottom: 5px;
}

footer .copyright {
    padding: 10px 15px;
    font-size: 15px;
    text-align: center;
    position: relative;
    z-index: 1
}

footer .copyright::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.05);
    z-index: -1
}

footer .copyright a {
    margin-left: 5px
}

.rfixed {
    position: fixed;
    bottom: calc(150px + constant(safe-area-inset-bottom));
    bottom: calc(150px + env(safe-area-inset-bottom));
    right: 50px;
    z-index: 99
}

.compare-panel {
    width: 280px;
    background: #FFFFFF;
    position: fixed;
    z-index: 1000;
    bottom: 0px;
    right: 0px;
    box-shadow: -1px -1px 3px #CCCCCC;
    display: none;
    transition: bottom .2s
}

.compare-t {
    background-color: var(--color);
    font-size: var(--fontsize14);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer
}

.compare-close {
    position: relative;
    width: 24px;
    height: 24px;
    background: 0 0;
    cursor: pointer;
    border: none
}

.compare-close::after,.compare-close::before {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    border-radius: 2px
}

.compare-close::before {
    transform: rotate(45deg);
    left: 4px
}

.compare-close::after {
    transform: rotate(-45deg);
    right: 4px
}

.compare-tit {
    text-align: center;
    flex: 1;
    line-height: 1.5
}

.compare-checked {
    color: #FFFFFF;
    margin: 0px 4px
}

#productChache_list {
    padding: 0px 10px;
    height: 220px;
    overflow-y: auto
}

#productChache_list::-webkit-scrollbar {
    width: 4px
}

#productChache_list::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: rgba(0,0,0,.05)
}

#productChache_list::-webkit-scrollbar-thumb {
    border-radius: var(--borderradius);
    background-color: rgba(0,0,0,.15)
}

.selected-item {
    position: relative;
    border-bottom: 1px solid #EFEFEF;
    padding: 10px 0px;
    display: flex;
    align-items: center
}

.item-clear {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: transparent;
    cursor: pointer;
    outline: 0;
    border: none
}

.item-clear::after,.item-clear::before {
    content: "";
    display: block;
    position: absolute;
    width: 70%;
    height: 2px;
    background-color: #333333;
    border-radius: 2px;
    top: 50%;
    margin-top: -1px
}

.item-clear::before {
    transform: rotate(45deg);
    left: 3px
}

.item-clear::after {
    transform: rotate(-45deg);
    left: 3px
}

.item-content {
    flex: 1;
    display: flex;
    align-items: center
}

.item-img {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    display: flex;
    align-items: center;
    justify-content: center
}

.item-img img {
    max-width: 100%;
    max-height: 100%
}

.item-c {
    width: calc(100% - 50px);
    padding: 0px 10px;
    font-size: var(--fontsize12)
}

.item-title {
    max-height: 34px;
    word-break: break-word;
    display: block;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    color: var(--fontcolor)
}

.item-price {
    color: var(--color)
}

.compare-b {
    padding: 20px 10px;
    display: flex;
    justify-content: space-between
}

.compare-b * {
    display: block;
    width: 80px;
    text-align: center;
    font-size: var(--fontsize12);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 30px;
    border-radius: 2px;
    padding: 0px 2px
}

.clear-all {
    color: var(--fontcolor);
    background-color: #EDEDED;
    cursor: pointer;
    border: none
}

.compare-inquire,.compare-inquire:hover {
    color: #FFFFFF;
    background-color: var(--color)
}

.compare-b .orderNow {
    margin: 0px;
    background: #F66F08;
    color: #FFFFFF;
    line-height: 30px;
    padding: 0px 2px;
    border: none;
    border-radius: 2px;
    font-size: var(--fontsize12);
    cursor: pointer;
    display: block;
    width: 80px
}

.rfixed-sc {
    width: 40px;
    height: 40px;
    background: var(--color);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #FFFFFF;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
    display: none
}

.rfixed-sc em {
    font-size: 20px
}

.rfixed-scnum {
    position: absolute;
    right: 6px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #D4322C;
    border-radius: 50%;
    text-align: center;
    font-size: var(--fontsize12);
    color: #FFFFFF;
    transform: scale(.9);
    line-height: 16px
}

@media (max-width: 768px) {
    .compare-panel {
        width:100%;
        bottom: 55px
    }

    .rfixed-scnum {
        right: 26px
    }
}

.lang {
    z-index: 99999;
    text-align: left;
    position: relative
}

.lang-icon {
    display: flex;
    align-items: center;
    height: 30px;
    border: none;
    cursor: pointer;
    font-size: var(--fontsize16);
    user-select: none;
    white-space: nowrap
}

.lang-icon img {
    width: 20px
}

.lang-icon span {
    position: relative;
    padding-right: 18px;
    color: var(--headercolor);
    margin-left: 6px;
    font-size: var(--fontsize14);
}

.lang-icon span::before {
    content: "";
    position: absolute;
    right: 4px;
    top: 13px;
    width: 8px;
    height: 1px;
    background: var(--headercolor);
    transform: rotate(50deg)
}

.lang-icon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 13px;
    width: 8px;
    height: 1px;
    background: var(--headercolor);
    transform: rotate(-50deg)
}

.lang-drop {
    position: absolute;
    top: calc(100% + 26px);
    right: 50%;
    transform: translateX(50%);
    background: #FFFFFF;
    border: 1px solid #EBEEF5;
    border-radius: var(--borderradius);
    box-shadow: 0px 2px 12px 0px rgba(0,0,0,.1);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s,top .3s
}

.lang-drop.lang-flex {
    transform: translateX(20%)
}

.lang-drop.active {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 7px)
}

.lang-arrow {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-top: 1px solid #EBEEF5;
    border-left: 1px solid #EBEEF5;
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    top: -6px;
    left: 50%
}

.lang-drop.lang-flex .lang-arrow {
    left: 79%
}

.lang-wrap {
    list-style: none;
    width: 140px;
    padding: 8px 0px;
    box-sizing: border-box
}

.lang-flex .lang-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 8px
}

.lang-wrap li {
    width: 100%;
    box-sizing: border-box;
    transition: background-color .3s
}

.lang-flex .lang-wrap li {
    width: 33.3333%
}

.lang-wrap li.lang-active,.lang-wrap li:hover {
    background-color: #EEEEEE
}

.lang-wrap li a {
    display: block;
    color: var(--fontcolor);
    font-size: var(--fontsize12);
    padding: 10px 12px;
    text-decoration: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.lang-wrap li img {
    display: inline-block;
    width: 24px;
    height: 16px;
    vertical-align: -.25em;
    margin-right: 4px
}

@media (max-width: 1024px) {
    .lang {
        transition:all .2s linear
    }

    .lang-icon img {
        width: 28px;
        filter: invert(90%)
    }

    .lang-icon span {
        display: none
    }

    .lang-drop {
        display: none
    }

    .lang-drop.lang-flex {
        position: fixed;
        width: 95%;
        right: auto;
        left: 50%;
        transform: translateX(-50%)
    }

    .lang-drop.lang-flex .lang-arrow {
        left: 84%
    }

    .lang-drop.lang-flex .lang-wrap {
        width: 100%
    }

    .lang-drop.active {
        display: block;
        top: calc(100% + 3px)
    }
}

.head-share ul a {
    width: 30px;
    height: 30px;
    color: var(--headercolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    transition: all .1s linear
}

.head-share ul a:hover {
    color: var(--color)
}

.gotop {
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,.1);
    transition: all .4s ease;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fontbold6)
}

.gotop.active {
    opacity: 1;
    visibility: inherit;
    overflow: inherit;
    transform: translateY(0)
}

.gotop em,.gotop i {
    transform: rotate(180deg);
    color: var(--fontcolor)
}

.gotop:hover {
    background: #c1c1c1
}

.bottom-btn {
    display: none
}

@media (max-width: 1440px) {
    .head-nav .nav-ul>li>a {
        margin:0px 15px;
        font-size: var(--fontsize16)
    }
}

@media (max-width: 1280px) {
    .head-nav .nav-ul>li>a {
        margin:0px 10px
    }
}

@media (max-width: 1024px) {
    body {
        padding-top:0px
    }

    .head-logo .himg {
        display: none!important
    }

    .head-logo .fimg {
        display: block!important
    }

    header .head-top {
        display: none
    }

    header {
        background: #FFFFFF!important;
        box-shadow: 1px 2px 5px rgba(0,0,0,.2);
        position: relative
    }

    header .head-info {
        height: 70px!important
    }

    .l-wrap {
        padding: 0px 10px
    }

    .head-nav {
        position: fixed;
        top: 70px;
        right: 0px;
        width: 100%;
        height: calc(100vh - 70px);
        background: #FFFFFF;
        flex-direction: column;
        padding-bottom: 100px;
        overflow-y: auto;
        display: none
    }

    .head-nav .nav-ul {
        width: 100%;
        flex-direction: column;
        height: auto;
        flex: 1
    }

    .head-nav .nav-ul>li {
        height: auto;
        width: 100%
    }

    .head-nav .nav-ul>li.cur {
        background: #FAFAFA
    }

    .head-nav .nav-ul>li.cur .icon-arrow-down {
        transform: rotate(0)
    }

    .head-nav .nav-ul>li .icon-arrow-down {
        position: absolute;
        right: 10px;
        top: 2px;
        font-weight: var(--fontbold3);
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all .1s linear;
        transform: rotate(-90deg);
        font-size: 20px
    }

    .head-nav .nav-ul>li>a {
        height: auto;
        padding: 10px 20px;
        margin: 0px;
        justify-content: flex-start;
        color: var(--fontcolor)
    }

    .head-nav .nav-ul>li:hover>a {
        background: 0 0;
        color: inherit!important
    }

    .head-nav .nav-ul>li>ul {
        position: static;
        box-shadow: none;
        max-width: 100%;
        background: #FAFAFA;
        display: none;
        padding: 0px 30px
    }

    .head-nav .nav-ul>li>ul a {
        color: var(--fontcolor);
        font-size: var(--fontsize16);
        display: inline-block;
        line-height: inherit;
        height: auto;
        padding: 10px 0px
    }

    .head-nav .nav-ul>li:hover>a::before,.head-nav .nav-ul>li>a.inmenu_1::before {
        display: none
    }

    .head-nav .nav-ul>li>ul li:hover>a,.head-nav .nav-ul>li>ul li:hover>em {
        background: 0 0;
        color: inherit
    }

    .head-nav .nav-ul>li>ul .icon-arrow-down {
        display: none
    }

    .head-nav .nav-ul>li>ul ul {
        position: static;
        display: block;
        background: 0 0;
        box-shadow: none;
        padding: 0px 20px
    }

    .head-nav .search-box {
        width: 100%;
        height: auto
    }

    .head-nav .search-box .head-search {
        display: none
    }

    .head-nav .search-input {
        position: static;
        opacity: 1;
        transform: none;
        visibility: inherit;
        width: 100%;
        box-shadow: none;
        padding: 4px 10px;
        background: #FFFFFF
    }

    .head-nav .search-input input {
        flex: 1;
        border: 1px solid #EEEEEE
    }

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

    .head-nav .search-input button {
        background: #EEEEEE
    }

    .head-lang {
        margin-left: auto;
        margin-right: 20px
    }

    .head-info .m-menu {
        display: block;
        position: relative;
        width: 26px;
        height: 40px;
        cursor: pointer;
        margin-right: 5px
    }

    .m-menu span {
        position: absolute;
        background: #111111;
        height: 2px;
        width: 100%;
        border-radius: var(--borderradius);
        left: 0px;
        transition: all .2s linear
    }

    .m-menu span:nth-child(1) {
        top: 25%
    }

    .m-menu span:nth-child(2) {
        top: 48%
    }

    .m-menu span:nth-child(3) {
        top: 73%
    }

    .m-menu.act span {
        top: 48%
    }

    .m-menu.act span:nth-child(1) {
        transform: rotate(45deg)
    }

    .m-menu.act span:nth-child(2) {
        width: 0px
    }

    .m-menu.act span:nth-child(3) {
        transform: rotate(-45deg)
    }

    .home-more {
        min-width: 160px;
        height: 45px
    }

    .head-left {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
        color: var(--fontcolor);
        font-size: var(--fontsize16)
    }

    .head-left .item {
        margin-bottom: 10px
    }

    .head-left .item {
        margin-left: 0px!important
    }

    footer .foot-main {
        padding: 30px 0px
    }

    footer .foot-item {
        width: 49%!important
    }

    footer .foot-item:nth-child(n+3) {
        margin-top: 20px
    }
}

@media (max-width: 768px) {
    .rfixed {
        display:none
    }

    header .head-info {
        height: 60px!important
    }

    .head-logo a img {
        max-height: 45px
    }

    .head-nav {
        top: 59px;
        height: calc(100vh - 59px)
    }

    .home-more {
        min-width: 160px;
        height: 45px
    }

    .icon-videoplay {
        width: 30px;
        height: 30px
    }

    .home-des {
        margin-top: 0px
    }

    .home-more {
        height: 45px;
        min-width: 160px
    }

    footer .foot-item {
        width: 100%!important
    }

    footer {
        margin-bottom: calc(55px + constant(safe-area-inset-bottom));
        margin-bottom: calc(55px + env(safe-area-inset-bottom))
    }

    .bottom-btn {
        background: #FBFBFB;
        display: flex;
        align-items: center;
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        z-index: 999;
        box-shadow: 1px 2px 10px rgba(0,0,0,.2);
        transform: translateY(60px);
        opacity: 0;
        transition: all .2s linear;
        padding-bottom: constant(safe-area-inset-bottom);
        padding-bottom: env(safe-area-inset-bottom);
        opacity: 1
    }

    .bottom-btn.bottom-btn-hide {
        transform: translateY(0)!important;
        opacity: 1
    }

    .bottom-btn.bottom-btn-keep {
        transform: translateY(0)!important;
        opacity: 1
    }

    .bottom-btn.bottom-btn-menu {
        transform: translateY(60px)!important;
        opacity: 0
    }

    .bottom-btn .btn-item {
        width: 20%;
        height: 55px;
        transition: all .2s linear;
        position: relative
    }

    .bottom-btn .btn-item.gotop {
        opacity: 1;
        visibility: inherit;
        overflow: inherit;
        transform: none;
        border-radius: 0px;
        box-shadow: none;
        background: 0 0
    }

    .bottom-btn .btn-item.gotop em {
        background: var(--color);
        color: #FFFFFF;
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        font-size: var(--fontsize16)
    }

    .bottom-btn .btn-item.gotop:hover {
        background: 0 0
    }

    .bottom-btn .btn-item em,.bottom-btn .btn-item i {
        font-size: 20px;
        line-height: 1
    }

    .bottom-btn .btn-item a,.bottom-btn .btn-item div {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--fontcolor);
        text-transform: capitalize
    }

    .bottom-btn .btn-item a p,.bottom-btn .btn-item div {
        font-size: var(--fontsize12);
        text-transform: capitalize;
        line-height: 1;
        padding-top: 2px
    }

    .mobile-bottom-bag {
        display: none
    }

    .foot-item.foot-info {
        display: none
    }
}

@media (min-width: 1025px) {
    #liproducts .nav0.nav15,#liproducts .nav1.nav15 {
        display:flex;
        flex-wrap: wrap;
        width: 500px
    }

    #liproducts .nav0.nav15>li,#liproducts .nav1.nav15>li {
        width: 50%
    }

    #liproducts .nav2 {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        position: fixed;
        left: 0px;
        justify-content: center
    }

    #liproducts .nav2>li {
        width: 12%;
        margin: 1em 20px;
        text-align: center
    }

    #liproducts .nav2>li .item-info a {
        height: auto
    }

    #liproducts .nav2>li a {
        padding: 0px;
        background: 0 0!important
    }

    #liproducts .nav3 {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        position: fixed;
        left: 0px;
        justify-content: center
    }

    #liproducts .nav3>li {
        width: 12%;
        margin: 1em 20px;
        text-align: center
    }

    #liproducts .nav3>li .cate-img a {
        height: auto
    }

    #liproducts .nav3>li a {
        padding: 0px;
        background: 0 0!important
    }

    #liproducts .nav3>li ul {
        display: block;
        position: static;
        box-shadow: none
    }

    #liproducts .nav3>li ul li {
        width: 100%
    }
}

@media (max-width: 1024px) {
    #liproducts .nav2 .item-info,#liproducts .nav3 .cate-img {
        display:none
    }
}
@charset "utf-8"; @import url(https://css02.v15cdn.com/m433/aos.css); #indexbanner video {
    width: 100%
}

.home-banner .swiper-slide {
    overflow: hidden
}

.home-banner .swiper-slide>a {
    position: relative;
    display: flex
}

.home-banner .swiper-slide>a::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,rgba(0,0,0,.9),rgba(0,0,0,.6))
}

.home-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.home-banner .pcimg {
    display: block
}

.home-banner .mobimg {
    display: none
}

.home-banner .banner-animote {
    max-width: 1000px;
    padding: 0px 10px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    color: #FFFFFF;
    opacity: 0;
    text-align: center
}

.home-banner .banner-animote .p1 {
    font-size: var(--fontsize45);
    font-weight: var(--fontbold5);
    line-height: 1.4;
    margin: 10px 0px 20px
}

.home-banner .banner-animote .p2 {
    font-size: var(--fontsize20);
    margin-bottom: 30px
}

.home-banner .banner-animote .p3 a {
    border: 1px solid #FFFFFF;
    background: 0 0;
    color: #FFFFFF
}

.home-banner .banner-animote .p3 a:hover {
    border-color: var(--color);
    background: var(--color)
}

@media(min-width: 1025px) {
    .home-banner .swiper-slide-active img {
        animation:bannerimg 6s forwards
    }
}

.home-banner .swiper-slide-active .banner-animote {
    animation: bannerani .5s forwards;
    animation-delay: .7s
}

.home-banner .swiper-pagination {
    bottom: 180px;
    max-width: 1400px;
    padding: 0px 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center
}

.home-banner .swiper-pagination-bullet {
    background: var(--color)
}

.home-banner .bannerswiper-next,.home-banner .bannerswiper-prev {
    position: absolute;
    top: 45%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    background: rgba(255,255,255,.1);
    color: #FFFFFF;
    z-index: 1;
    cursor: pointer;
    transition: all .15s linear;
    border-radius: 50%
}

.home-banner .bannerswiper-next:hover,.home-banner .bannerswiper-prev:hover {
    background: var(--color)
}

.home-banner .bannerswiper-next em,.home-banner .bannerswiper-prev em {
    font-size: 24px
}

.home-banner .bannerswiper-prev {
    left: 25px
}

.home-banner .bannerswiper-next {
    right: 25px
}

@keyframes bannerani {
    0% {
        margin-top: 20px
    }

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

@keyframes bannerimg {
    0% {
        transform: scale(1)
    }

    80% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1.047)
    }
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px
}

.home-num {
    margin-top: -130px;
    z-index: 1;
    position: relative
}

.home-num .list {
    background: rgba(0,0,0,.3);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    height: 130px
}

.home-num .list li {
    width: 20%;
    height: 100%;
    line-height: 1;
    color: #FFFFFF;
    padding: 20px 10px;
    opacity: .8;
    transition: all .2s linear;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.home-num .list li em {
    font-size: var(--fontsize40);
    display: inline-block;
    transition: transform .2s linear
}
.home-num .list li em{
    width:50px;
}
.home-num .list li p {
    margin-top: 1em
}

.home-num .list li span {
    font-size: 20px
}

.home-num .list li:hover {
    opacity: 1;
    color: var(--color)
}

.home-num .list li:hover em {
    transform: translateY(-6px)
}

.home-about,.home-advantages,.home-customer,.home-logo,.home-news,.home-pro,.home-services,.home-videos {
    position: relative;
    padding: 4% 0
}

.home-about {
    padding-bottom: 0px
}

.home-about .l-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

.home-about .aboutimg {
    width: 50%;
    padding-right: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center
}
.home-about .aboutimg img{
    width:80%;
}
.home-about .aboutinfo {
    flex: 1
}

.home-about .aboutinfo h1 {
    font-weight: var(--fontbold6);
    font-size: var(--hometitlefont);
    line-height: 1.4;
    margin-bottom: 10px
}

.home-about .aboutinfo .text p {
    margin-bottom: 10px
}

.home-about .aboutinfo .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px
}

.home-about .aboutinfo .list li {
    display: flex;
    align-items: center;
    width: 40%;
    margin-bottom: 5px
}

.home-about .aboutinfo .list li em {
    color: var(--color);
    margin-right: 10px
}

.home-about .aboutinfo .list li span {
    font-weight: var(--fontbold6);
    line-height: 1
}

.home-about .aboutinfo .aboutmeta {
    display: flex;
    align-items: center;
    margin-top: 20px
}
.home-about .aboutinfo .aboutmeta .p1{
    font-weight: bold;
}
.home-about .aboutinfo .aboutmeta .home-more {
    margin-right: 20px
}

.home-about .aboutinfo .aboutmeta .tel {
    display: flex;
    align-items: center;
    line-height: 1.4
}

.home-about .aboutinfo .aboutmeta .tel em {
    
    background-color: var(--color);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: var(--fontsize22);
    color: #FFFFFF;
    position: relative;
    margin-right: 14px
}

.home-about .aboutinfo .aboutmeta .tel em::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    border: 1px solid var(--color);
    border-radius: 50%;
    animation: aboutanimate 2s linear infinite
}

.home-about .aboutinfo .aboutmeta .tel .p2 {
    font-weight: var(--fontbold6);
    font-size: var(--fontsize18)
}
.home-about .aboutinfo .aboutmeta .tel .p2 a{
    color: #212529;
}
@keyframes aboutanimate {
    0% {
        opacity: 1;
        width: 100%;
        height: 100%
    }

    50% {
        opacity: 1;
        width: calc(100% + 5px);
        height: calc(100% + 5px)
    }

    100% {
        opacity: 0;
        width: calc(100% + 10px);
        height: calc(100% + 10px)
    }
}

.home-pro {
    padding-bottom: 0px
}

.home-pro .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px
}

.home-pro .list li {
    width: 50%;
    display: flex
}

.home-pro .list li .img {
    width: 50%
}

.home-pro .list li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.home-pro .list li .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background: #F7F7F7;
    position: relative;
    transition: all .2s linear;
}

.home-pro .list li .info::before {
    content: "";
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 15px 10px 0px;
    border-color: transparent #F7F7F7 transparent transparent;
    transition: all .2s linear
}

.home-pro .list li .info .title {
    font-size: var(--fontsize20);
    font-weight: var(--fontbold6);
    line-height: 1.4;
    transition: none;
    color: #222;
}
.home-pro .list li:hover .info .title{
    color: #fff;
}
.home-pro .list li .info .text {
    margin: 15px 0px
}

.home-pro .list li .info .more {
    background: var(--color);
    color: #FFFFFF;
    border-radius: 30px;
    padding: 0px 15px;
    min-width: 120px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear
}

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

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

.home-pro .list li:hover .info::before {
    border-color: transparent var(--color) transparent transparent
}

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

.home-pro .list li:nth-child(4n+3),.home-pro .list li:nth-child(4n+4) {
    flex-direction: row-reverse
}

.home-pro .list li:nth-child(4n+3) .info::before,.home-pro .list li:nth-child(4n+4) .info::before {
    left: auto;
    right: -13px;
    border-width: 10px 0px 10px 15px;
    border-color: transparent transparent transparent #F7F7F7
}

.home-pro .list li:nth-child(4n+3):hover .info::before,.home-pro .list li:nth-child(4n+4):hover .info::before {
    border-color: transparent transparent transparent var(--color)
}

.home-pro .homepro-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px
}

#serviceswiper {
    margin-top: 40px
}

#serviceswiper .swiper-slide {
    position: relative;
    /* aspect-ratio: 1/1; */
    border-radius: 10px;
    overflow: hidden
}

#serviceswiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#serviceswiper .swiper-slide .opacity {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #FFFFFF;
    transition: all .2s linear;
    padding: 20px;
    opacity: 0;
    cursor: pointer;
}

#serviceswiper .swiper-slide .opacity .p1 {
    font-size: var(--fontsize20);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px
}

#serviceswiper .swiper-slide .opacity .p1::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 60px;
    height: 4px;
    background: var(--color)
}

#serviceswiper .swiper-slide:hover .opacity {
    opacity: 1
}

#serviceswiper .serviceswiper-pagination {
    text-align: center;
    margin-top: 20px
}

#serviceswiper .serviceswiper-pagination .swiper-pagination-bullet {
    background: #111111;
    opacity: 1
}

#serviceswiper .serviceswiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color)
}

#serviceswiper .serviceswiper-next,#serviceswiper .serviceswiper-prev {
    position: absolute;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all .2s linear;
    background: rgba(255,255,255,.2)
}

#serviceswiper .serviceswiper-next em,#serviceswiper .serviceswiper-prev em {
    font-size: var(--fontsize24);
    color: #FFFFFF
}

#serviceswiper .serviceswiper-prev {
    left: 10px
}

#serviceswiper .serviceswiper-next {
    right: 10px
}

.home-advantages {
    background: no-repeat center fixed;
    background-size: cover;
    z-index: 0;
    color: #FFFFFF
}

.home-advantages::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    z-index: -1
}

.home-advantages .home-des {
    color: #FFFFFF
}

#advantageswiper {
    padding-top: 40px
}

#advantageswiper .swiper-slide {
    width: 24%;
    height: auto;
    border-radius: 6px;
    border: 2px solid rgba(245,245,245,.3);
    padding: 30px 20px;
    text-align: center;
    transition: all .2s linear
}

#advantageswiper .swiper-slide:hover {
    transform: translateY(-5px);
    border-color: var(--color)
}

#advantageswiper .swiper-slide:hover em {
    transform: rotateY(180deg)
}

#advantageswiper .swiper-slide em {
    color: var(--color);
    font-size: var(--fontsize40);
    display: inline-block;
    transition: all .2s linear
}
#advantageswiper .swiper-slide em img{
    width:50px;
}
#advantageswiper .swiper-slide .p1 {
    position: relative;
    font-size: var(--fontsize20);
    padding-bottom: 10px;
    margin: 10px 0px 10px
}

#advantageswiper .swiper-slide .p1::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--color)
}

#advantageswiper .swiper-slide .p2 {
    padding-bottom: 20px
}

#advantageswiper .advantageswiper-pagination {
    text-align: center;
    margin-top: 30px
}

#advantageswiper .advantageswiper-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,.2);
    opacity: 1
}

#advantageswiper .advantageswiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color)
}

.home-logo {
    background: #F4F4F4;
    padding-bottom: 240px
}

#logoswiper {
    margin-top: 40px
}

#logoswiper .swiper-wrapper {
    transition-timing-function: linear!important;
    margin: 0px auto;
    align-items: center
}

#logoswiper .logoswiper-pagination {
    text-align: center;
    margin-top: 30px;
    display: none
}

#logoswiper .logoswiper-pagination .swiper-pagination-bullet {
    background: #111111;
    opacity: 1
}

#logoswiper .logoswiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color)
}

.home-boxshaw {
    margin-top: 50px;
    z-index: 1;
    position: relative;
    margin-bottom: 50px;
}

.home-boxshaw .box {
    background: var(--color);
    text-align: center;
    padding: 4% 30px;
    border-radius: 10px;
    color: #FFFFFF
}

.home-boxshaw .box .p1 {
    font-size: var(--fontsize20);
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: var(--fontbold6)
}

.home-boxshaw .box .p2 {
    font-size: var(--fontsize20);
    margin-bottom: 1em
}

.home-boxshaw .box .home-more {
    border-color: #FFFFFF;
    color: #FFFFFF
}

.home-boxshaw .box .home-more:hover {
    background: #FFFFFF;
    color: var(--color)
}

#customerswiper .customerswiper-pagination {
    text-align: center;
    margin-top: 30px
}

#customerswiper .customerswiper-pagination .swiper-pagination-bullet {
    background: #111111;
    opacity: 1
}

#customerswiper .customerswiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color)
}

#customerswiper .swiper-slide {
    text-align: center
}

#customerswiper .swiper-slide .home-title {
    margin-bottom: 20px
}

#customerswiper .swiper-slide .author {
    margin-top: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fontsize18);
    font-weight: var(--fontbold6)
}

#customerswiper .swiper-slide .author img {
    margin-right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover
}

.home-videos {
    padding-top: 0px
}

#videoswiper {
    margin-top: 30px;
    padding-bottom: 40px;
}

#videoswiper .videoswiper-pagination {
    text-align: center;
    margin-top: 30px;
    bottom: 0;
}

#videoswiper .videoswiper-pagination .swiper-pagination-bullet {
    background: #111111;
    opacity: 1
}

#videoswiper .videoswiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color)
}

#videoswiper .swiper-slide {
    background: #F7F7F7;
    transition: all .2s linear;
    border-radius: 10px;
    overflow: hidden
}

#videoswiper .swiper-slide:hover {
    background: var(--color);
    color: #FFFFFF
}

#videoswiper .swiper-slide .video {
    width: 100%;
    aspect-ratio: 3/2
}

#videoswiper .swiper-slide .video iframe,#videoswiper .swiper-slide .video img,#videoswiper .swiper-slide .video video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#videoswiper .swiper-slide p {
    margin: 15px 20px;
    font-size: var(--fontsize18);
    font-weight: var(--fontbold6);
    line-height: 1.4
}

.home-news {
    background: #F7F7F7
}

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

#newswiper {
    margin-top: 30px;
    padding-bottom: 60px;
}

#newswiper .newswiper-pagination {
    text-align: center;
    margin-top: 30px
}

#newswiper .newswiper-pagination .swiper-pagination-bullet {
    background: #111111;
    opacity: 1
}

#newswiper .newswiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color)
}

#newswiper .swiper-slide {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    transition: all .2s linear
}

#newswiper .swiper-slide:hover {
    background: var(--color);
    color: #FFFFFF
}

#newswiper .swiper-slide:hover .img img {
    transform: scale(1.02)
}

#newswiper .swiper-slide:hover .info .date {
    color: #FFFFFF
}

#newswiper .swiper-slide .img {
    width: 100%;
    aspect-ratio: var(--newssaspectratio)
}

#newswiper .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#newswiper .swiper-slide .info {
    padding: 20px
}

#newswiper .swiper-slide .info .date {
    margin: 5px 0px;
    color: var(--introcolor)
}

#newswiper .swiper-slide .info .date em {
    margin-right: 5px
}

#newswiper .swiper-slide .info .title {
    font-size: var(--fontsize18);
    font-weight: var(--fontbold6);
    line-height: 1.4;
    transition: none;
    color: #222;
}
#newswiper .swiper-slide:hover .info .title{
    color: #fff;
} 
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    font-size: 24px;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    font-size: 24px;
}
@media (max-width: 1366px) {
    .home-banner .banner-animote {
        top:50%
    }

    .home-banner .swiper-pagination {
        bottom: 20px
    }

    .home-num {
        margin-top: 0px
    }

    .home-num .list {
        background: #000000
    }

    .home-about .aboutinfo .list li {
        width: 50%
    }
}

@media (max-width: 1024px) {
    .home-banner .banner-animote .p1 {
        font-size:var(--fontsize40)
    }

    .home-num .list {
        height: auto
    }

    .home-num .list li {
        width: 33%
    }

    .home-num .l-wrap {
        padding: 0px
    }

    .home-pro .list li {
        width: 100%;
        flex-direction: row!important
    }

    .home-pro .list li:nth-child(2n+1) .info::before {
        border-width: 10px 15px 10px 0 !important;
        border-color: transparent #F7F7F7 transparent transparent;
        right: auto;
        left: -13px
    }

    .home-pro .list li:nth-child(2n+1):hover .info::before {
        border-color: transparent var(--color) transparent transparent
    }

    .home-pro .list li:nth-child(2n) {
        flex-direction: row-reverse!important
    }

    .home-pro .list li:nth-child(2n) .info::before {
        left: auto;
        right: -13px;
        border-width: 10px 0px 10px 15px !important;
        border-color: transparent transparent transparent #F7F7F7
    }

    .home-pro .list li:nth-child(2n):hover .info::before {
        border-color: transparent transparent transparent var(--color)
    }
}

@media (max-width: 768px) {
    .home-about,.home-advantages,.home-customer,.home-logo,.home-news,.home-pro,.home-services,.home-videos {
        padding:30px 0px
    }

    .home-num .list li {
        width: 50%
    }

    .home-banner {
        height: 300px
    }

    .home-banner .pcimg {
        display: none
    }

    .home-banner .mobimg {
        display: block
    }

    .home-banner .swiper {
        height: 100%
    }

    .home-banner .swiper-slide a {
        height: 100%
    }

    .home-banner .banner-animote .p1 {
        font-size: var(--fontsize22);
        margin-bottom: 10px
    }

    .home-banner .banner-animote .p2 {
        margin-bottom: 10px;
        font-size: var(--fontsize16)
    }

    .home-banner .banner-animote .p3 {
        display: none
    }

    .home-banner .bannerswiper-next,.home-banner .bannerswiper-prev {
        display: none
    }

    .home-about .l-wrap {
        display: block
    }

    .home-about .aboutimg {
        width: 100%;
        padding: 0 5%
    }

    .home-about .aboutinfo {
        margin-top: 20px
    }

    .home-banner .swiper-pagination {
        bottom: 10px
    }

    .home-about .aboutinfo .list li {
        width: 100%
    }

    .home-about .aboutinfo .aboutmeta .home-more {
        margin: 0px 0px 10px 0px
    }

    .home-about .aboutinfo .aboutmeta {
        display: block
    }

    .home-pro .list {
        margin-top: 20px
    }

    .home-pro .list li .info {
        padding: 20px 10px
    }

    .home-pro .list li .info .text {
        margin-bottom: 0px
    }

    .home-pro .list li .info .more {
        display: none
    }

    #serviceswiper .serviceswiper-next,#serviceswiper .serviceswiper-prev {
        display: none
    }

    #serviceswiper {
        margin-top: 20px
    }

    #serviceswiper .swiper-slide .opacity {
        opacity: 1
    }

    #advantageswiper .swiper-slide {
        padding: 10px
    }

    #advantageswiper .swiper-slide .p1 {
        margin: 0px 0px 10px 0px
    }

    #newswiper {
        margin-top: 20px
    }

    #videoswiper {
        margin-top: 20px
    }

    .home-boxshaw {
        margin-top: 20px
    }

    .home-boxshaw .box {
        padding: 30px 10px
    }

    .home-boxshaw .box .p1 {
        font-size: var(--fontsize24)
    }

    .home-boxshaw .box .p2 {
        font-size: var(--fontsize16)
    }
}
			.mySwiperlogo{
			   width: 100%;
    max-width: 1600px;
    margin: 20px auto;
      overflow: hidden;
			}
.mySwiperlogo .swiper-wrapper {
  transition-timing-function: linear !important;
}
.top_banner{
    position: relative;
    display: flex;
    justify-content: center;
}
.top_banner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    /* 遮罩高度，可根据需要调整（如100px或30%） */
    height: 100%;
    /* 从黑色半透明渐变到完全透明 */
    /* background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.5)30%, 
        rgba(0, 0, 0, 0) 100%
    ); */
    /* 遮罩层级在图片之上、文字之下 */
    background: rgba(39,57,114,.57);
    z-index: 1;
}
.top_banner img{
    width: 100%;
    min-height: 300px;
}
.top_bannerwz{
    position: absolute;
    text-align: center;
    top: 50%;
    z-index: 99;
}
.top_bannerwz h1{
    margin-bottom: 20px;
    font-size: 2.6rem;
}
.top_bannerwz p{
    font-size: 1.4rem;
}
.banner-inner {
    background: #333333;
    position: relative
}

.pagesbanner {
    position: relative;
    z-index: 1;
    min-height: 240px
}

.pagesbanner::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    z-index: -1
}

.pagesbanner>a {
    z-index: 1;
    position: relative;
    display: block
}

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

.pagesbanner .pagesbanner-animate {
    width: 100%;
    padding: 0px 20px;
    z-index: 1;
    position: absolute;
    top: 60%;
    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: var(--fontsize30);
    font-weight: var(--fontbold5,500);
    line-height: 1.2
}

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

.pagesbanner .pagesbanner-animate .p3 {
    margin-top: 10px
}

.pagesbanner .pagesbanner-animate .p3 a {
    color: var(--color);
    text-decoration: underline;
    font-weight: var(--fontbold6)
}

.pagesbanner .pagesbanner-animate .p3 a:hover {
    transform: translateY(2px)
}

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

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

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

    .pagesbanner .pagesbanner-animate .p2 {
        margin-top: 10px;
        font-size: var(--fontsize16)
    }
}

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

    .pagesbanner .pagesbanner-animate .p2 {
        font-size: var(--fontsize14)
    }
}

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

.banner-inner .banner-title-h1 {
    font-size: var(--fontsize20);
    font-weight: var(--fontbold6);
    text-transform: capitalize;
    margin: 0px;
    display: flex;
    align-items: center
}

.banner-inner .banner-title-h1 h1 {
    font-size: inherit
}

.singlepage-nav {
    margin-left: 10px;
    position: relative;
    width: 50px;
    z-index: 9
}

.singlepage-nav em {
    color: var(--color)
}

.singlepage-nav ul {
    position: absolute;
    top: 100%;
    left: 0px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    background: #FFFFFF;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .1);
    list-style: none
}

.singlepage-nav ul a {
    font-size: 16px;
    font-weight: 400;
    padding: 6px 10px;
    display: inline-block;
    color: var(--fontcolor)
}

.singlepage-nav ul li.LocalCurrent a {
    color: var(--color)
}

.singlepage-nav:hover ul {
    transform: scaleY(1);
    opacity: 1
}

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

.pagetitle-h1 {
    font-weight: var(--fontbold5);
    text-transform: capitalize;
    color: var(--fontcolor);
    font-size: var(--fontsize28)
}

.banner-inner .banner-breadcrumbs {
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: var(--introcolor);
}
.banner-inner .banner-breadcrumbs a{color: #555;}
.banner-inner .banner-breadcrumbs h1 {
    font-size: inherit;
    display: inline;
    font-weight: inherit
}

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

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

article {
    font-size: var(--fontsize16);
    line-height: 1.8;
    color: var(--fontcolor)
}

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 #DDDDDD;
    padding: 8px 16px
}

.page-main {
    padding: 50px 0px
}

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

ul.cate-ulli,ul.pro-ulli {
    clear: both;
    padding: 10px 0px 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 0px 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 0px;
    min-width: 300px;
    max-width: 100%
}

.ck-widget-toc ol {
    padding: 0px 0px 0px 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: 0px;
    margin-bottom: 5px;
    padding: 0px;
    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 0px;
    min-width: 300px;
    max-width: 100%
}

.ck-widget-toc1 ol {
    padding: 0px 0px 0px 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
}

.newscontent-details ul {
    margin: 0px;
    padding: 5px 0px 0px 20px
}

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

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

.wmkc-border-black {
    border-color: #111111!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 #DDDDDD;
    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: 0px;
    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: #131313;
    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: var(--introcolor);
    line-height: 1.5;
    padding-top: 6px
}

.inquiry-prolist {
    margin: 20px 0px
}

.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: 0px 20px;
    color: var(--fontcolor)
}

.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: var(--borderradius);
    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: 0px 10px
    }

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

.pro-cate-title {
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    font-size: 32px;
    margin: 0px 0px 20px;
    line-height: 1
}

.pagenav-cate .pagenav-menu {
    display: none
}

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

.page-nav .pagenav-catelist>li a {
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
    cor
}

@media (min-width: 1025px) {
    .page-nav {
        background:#F7F7F7;
        padding: 30px 0px
    }

    .page-nav .pagenav-cate {
        width: 100%
    }

    .page-nav .pagenav-catelist {
        display: flex;
        flex-wrap: wrap
    }

    .page-nav .pagenav-catelist>li {
        position: relative;
        width: 19%;
        margin-right: 1.2%;
        height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        background: #FFFFFF;
        border-radius: var(--borderradius);
        border: 1px solid #f0f0f0;
        transition: all .1s linear
    }
.page-nav .pagenav-catelist>li:nth-child(4){
    width: 28%;
}
    .page-nav .pagenav-catelist>li:hover {
        border-color: var(--color)
    }
     .page-nav .pagenav-catelist .cur {
        border-color: var(--color)
    }

    .page-nav .pagenav-catelist>li:nth-child(5n) {
        margin-right: 0px
    }

    .page-nav .pagenav-catelist>li:nth-child(n+6) {
        margin-top: 1em
    }

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

    .page-nav .pagenav-catelist>li.LocalCurrent>a,.page-nav .pagenav-catelist>li.LocalCurrent>em,.page-nav .pagenav-catelist>li.active>a,.page-nav .pagenav-catelist>li.active>em {
        color: #FFFFFF
    }

    .page-nav .pagenav-catelist>li em {
        margin-left: 5px;
        font-weight: var(--fontbold6);
        font-size: var(--fontsize16);
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%)
    }

    .page-nav .pagenav-catelist>li a {
        font-size: var(--fontsize16);
        font-weight: var(--fontbold6);
        width: 100%;
        height: 100%;
        line-height: 50px;
        padding: 0px 20px;
        color: #222222;
    }

    .page-nav .pagenav-catelist>li ul {
        position: absolute;
        top: calc(100% + 2px);
        left: 0px;
        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 li {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 50px;
        border-bottom: 1px solid #f0f0f0
    }

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

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

    .page-nav .pagenav-catelist>li ul em {
        font-weight: var(--fontbold4)
    }

    .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 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: 0px;
        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
}

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

.pro-list li {
    background: #F7F7F7;
    margin-bottom: 3em;
    border-radius: var(--borderradius);
    transition: all .2s linear
}

.pro-list li .pro-img {
    width: 100%;
    /* aspect-ratio: var(--prosaspectratio); */
    background: #EEEEEE;
    position: relative;
    overflow: hidden;
}

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

.pro-list li .pro-img>a+.pro-meta .icon-videoplay {
    display: none
}

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

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

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

.pro-list li .pro-meta {
    position: absolute;
    top: 15px;
    left: 10px
}

.pro-list li .pro-meta .icon,.pro-list li .pro-meta .icon-hottitle,.pro-list li .pro-meta .icon-videoplay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    background: #000000;
    color: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    transition: all .1s linear;
    margin-bottom: 6px
}

.pro-list li .pro-meta .icon-hottitle {
    color: var(--color)
}

.pro-list li .pro-meta .icon {
    opacity: 0;
    transform: translateY(10px)
}

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

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

.pro-list li .pro-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.6
}

.pro-list li .pro-info .title {
    font-size: var(--fontsize18);
    font-weight: var(--fontbold6);
    color: var(--titlecolor);
    line-height: 1.4
}

.pro-list li .pro-info .text {
    font-size: var(--fontsize16);
    color: var(--introcolor);
    margin: 10px 0px;
    line-height: 1.4
}

.pro-list li .pro-info .data-price {
    color: var(--color);
    font-weight: var(--fontbold6);
    font-size: var(--fontsize16)
}

.pro-list.list1 li:hover .pro-info .data-price,.pro-list.list1 li:hover .pro-info .text,.pro-list.list1 li:hover .pro-info .title {
    color: #FFFFFF
}

.pro-list li .pro-info .more {
    background: var(--color);
    color: #FFFFFF;
    min-width: 140px;
    height: 40px;
    padding: 0px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px
}

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

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

.pro-list.list1 li:hover .pro-info .more {
    background: #111111
}

.pro-list.list1 li:hover {
    background: var(--color)
}

.pro-list.list1 li {
    width: 24%;
    margin-right: 1.3%;
    position: relative;
    display: flex;
    flex-direction: column
}

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

.pro-list.list1 li .pro-img {
    border-radius: var(--borderradius) 4px 0px 0px;
}

.pro-list.list1 li .pro-info {
    border-radius: 0px 0px 4px 4px;
    padding: 15px 20px 30px;
    text-align: center;
    align-items: center;
    flex: 1
}

.pro-list.list1 li .pro-info .more {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%)
}

.pro-list.list0 {
    justify-content: space-between
}

.pro-list.list0 li {
    width: 49%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3em;
    overflow: hidden;
    border: 1px solid #EEEEEE
}

.pro-list.list0 li .pro-img {
    width: 42%
}

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

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

.pro-list.list0 li .data-price {
    margin-bottom: 15px
}

.pro-list.list0 li:hover {
    border-color: var(--color)
}

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

.common-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.common-page a,.common-page span {
    min-width: 45px;
    height: 45px;
    padding: 0px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    margin: 5px;
    transition: all .1s linear;
    color: #222222;
}
.page-num-current{
    background: #3484da;
}
.common-page a.ctxt,.common-page span.ctxt {
    background: var(--color);
    border-color: var(--color);
    color: #FFFFFF
}

.common-page a:hover {
    border-color: var(--color);
    color: var(--color)
}

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

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

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

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

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

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

.imgalt {
    display: none
}
.pro-btn a{
    color: #fff;
}
.prodetails-name {
    font-size: var(--fontsize28);
    font-weight: var(--fontbold6);
    line-height: 1.4
}

.prodetails-price {
    display: flex;
    align-items: center;
    color: #d8d8d8;
    padding-bottom: 10px
}

.prodetails-price .price {
    margin-right: 10px;
    color: var(--color);
    font-size: var(--fontsize22);
    font-weight: var(--fontbold5)
}

.share-btn-list {
    margin-top: 20px
}

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

.prodetails-info {
    flex: 1;
    padding: 30px 0px;
    padding-left: 9%
}

.prodetails-text {
    color: var(--introcolor)
}

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

.preview-container {
    width: 40%;
    position: relative
}

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

.preview-container .small-box {
    width: 100%;
    aspect-ratio: var(--prosaspectratio);
    background: #FFFFFF;
    position: relative;
    box-shadow: 0 10px 40px 0 rgba(0,0,0,.1);
    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%;
    object-fit: contain
}

.preview-container .big-box {
    display: none;
    border: 1px solid #dfdfdf;
    border-left: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0px;
    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: 292px;
    height: 292px;
    background-color: rgba(204,204,204,.6);
    border: 1px solid #EEEEEE;
    display: none;
    cursor: move;
    z-index: 9
}

.preview-container #media {
    background: #EEEEEE;
    width: 100%;
    aspect-ratio: var(--prosaspectratio);
    object-fit: contain;
    z-index: 9
}

.preview-container .thumbnail-box {
    position: relative;
    width: 100%;
    padding: 0px 30px;
    margin-top: 15px
}

.preview-container .thumbnail-box .list .swiper-wrapper {
    align-items: center
}

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

.preview-container .thumbnail-box .item.item-cur {
    border-color: 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: 30px;
    left: 20px;
    width: 20px;
    height: 90%;
    background: var(--color);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .1s linear;
    z-index: 9;
    border-radius: 4px
}

.thumbnail-box .prodetails-button-next em,.thumbnail-box .prodetails-button-prev em {
    font-size: var(--fontsize22)
}

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

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

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

.banner-page {
    display: none
}

.singglepic {
    width: 40%;
    max-width: 584px;
    max-height: 584px;
    height: auto;
    text-align: center;
    overflow: hidden;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #F1F1F1
}

.singglepic img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.mediaplay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    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: 99
}

.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-content {
    margin-top: 30px
}

.prodetails-description {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
    margin: 50px 0px;
    position: relative;
    z-index: 1
}

.prodetails-description::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 50px;
    background: #F7F7F7;
    z-index: -1
}

.prodetails-description .icon {
    background: var(--color);
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    clip-path: polygon(0 0,100% 0,80% 100%,0 100%)
}

.prodetails-description .icon em {
    color: #FFFFFF;
    font-size: var(--fontsize30);
    margin-left: -10px
}

.prodetails-description span {
    font-weight: var(--fontbold6);
    font-size: var(--fontsize22);
    padding-left: 10px
}

.pro-maylink {
    padding-bottom: 40px
}

.pagelink {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    margin-top: 30px;
    border-radius: var(--borderradius);
    overflow: hidden;
    background: #F7F7F7
}

.pagelink .pagelink-item {
    width: 50%;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    position: relative
}

.pagelink .pagelink-item.prev {
    align-items: flex-start
}

.pagelink .pagelink-item.prev::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: #dedede
}

.pagelink .pagelink-item.next {
    align-items: flex-end
}

.pagelink .pagelink-item .icon {
    min-width: 100px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: var(--borderradius);
    transition: all .1s linear
}

.pagelink .pagelink-item:hover .icon {
    background: var(--color);
    color: #FFFFFF
}

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

.pagelink .pagelink-item .icon em {
    font-size: 22px
}

.pagelink .pagelink-item .link {
    margin-top: 6px;
    font-size: var(--fontsize18);
    flex: 1;
    transition: all .1s linear
}

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

.prolist-bottom {
    clear: both;
    margin: 0px auto;
    padding: 10px 70px;
    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: 0px auto;
    padding: 0px
}

.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: 0px
    }

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

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

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

.inquiry-title {
    font-size: var(--fontsize24);
    font-weight: var(--fontbold6);
    text-align: left;
    text-transform: capitalize;
    color: var(--fontcolor);
    margin-bottom: 20px
}

#maylinkswiper {
    padding: 0px 0px 80px
}

.maylink-list .swiper-slide {
    background: #F7F7F7;
    border-radius: var(--borderradius);
    height: auto;
    transition: all .2s linear;
    display: flex;
    flex-direction: column
}

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

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

.maylink-list .swiper-slide:hover {
    background: var(--color)
}

.maylink-list .swiper-slide:hover .pro-info .title {
    color: #FFFFFF
}

.maylink-list .swiper-slide:hover .pro-info .more {
    background: #111111
}

.maylink-list .swiper-slide .pro-img {
    width: 100%;
    aspect-ratio: var(--prosaspectratio);
    position: relative;
    overflow: hidden;
    border-radius: var(--borderradius) 4px 0px 0px
}

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

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

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

.maylink-list .swiper-slide .pro-info {
    position: relative;
    text-align: center;
    padding: 20px 20px 40px;
    line-height: 1.6;
    border-radius: 0px 0px 4px 4px;
    flex: 1
}

.maylink-list .swiper-slide .pro-info .title {
    font-size: var(--fontsize18);
    color: var(--titlecolor);
    font-weight: var(--fontbold6);
    transition: none
}

.maylink-list .swiper-slide .pro-info .text {
    font-size: var(--fontsize16);
    color: var(--introcolor);
    margin: 10px 0px
}

.maylink-list .swiper-slide .pro-info .more {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 140px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
    background: var(--color);
    color: #FFFFFF;
    border-radius: 30px;
    transition: all .1s linear
}

.maylinkswiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0px
}

.maylinkswiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #333333;
    border-radius: 50%;
    opacity: 1
}

.maylinkswiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color)
}

.newslist {
    display: flex;
    flex-wrap: wrap
}

.newslist.list1 li {
    width: 24%;
    margin-right: 1.3%
}

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

.newslist.list1 li .info {
    padding: 20px 15px
}

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

.newslist.list1 li:hover .info * {
    color: #FFFFFF!important
}

.newslist.list1 li:hover .info .more {
    background: #FFFFFF;
    color: var(--color)!important
}

.newslist.list0 {
    justify-content: space-between
}

.newslist.list0 li {
    width: 49%;
    display: flex;
    align-items: center
}

.newslist.list0 li .img {
    width: 42%
}

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

.newslist.list0 li .info .date {
    margin-bottom: 5px
}

.newslist.list0 li .info .title {
    font-size: var(--fontsize18)
}

.newslist.list0 li:hover {
    border: 1px solid var(--color)
}

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

.newslist li {
    background: #F7F7F7;
    list-style: none;
    margin-bottom: 2em;
    transition: all .2s linear;
    border: 1px solid transparent;
    position: relative;
    border-radius: var(--borderradius);
    overflow: hidden
}

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

.newslist li .img {
    aspect-ratio: var(--newssaspectratio)
}

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

.newslist li .info {
    transition: all .2s linear;
    line-height: 1.6
}

.newslist li .info .title {
    color: var(--fontcolor);
    font-weight: var(--fontbold6);
    font-size: var(--fontsize18);
    line-height: 1.4
}

.newslist li .info .text {
    color: var(--introcolor);
    font-size: var(--fontsize16);
    line-height: 1.4;
    margin: 15px 0px 20px
}

.newslist li .info .date {
    color: var(--introcolor);
    font-size: var(--fontsize16);
    margin-bottom: 5px
}

.newslist li .info .date em {
    font-size: inherit;
    margin-right: 3px
}

.newslist li .info .more {
    min-width: 140px;
    height: 40px;
    padding: 0px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
    color: #FFFFFF;
    border-radius: 30px;
    transition: all .2s linear
}

.newscontent-title {
    font-weight: var(--fontbold6);
    font-size: var(--fontsize28);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 10px
}

.newscontent-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: var(--fontsize16);
    color: var(--introcolor);
    padding: 10px 0 30px
}

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

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

.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: 0px 15px;
    background: #faf6f1;
    border-radius: 0px 0px 10px 0px;
    text-decoration: none;
    color: var(--fontcolor);
    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
}

.project-wrap li {
    width: 24%;
    margin-right: 1.3%;
    margin-bottom: 2em
}

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

.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-top: 10px
}

.project-wrap li .project-name {
    font-size: var(--fontsize18);
    font-weight: var(--fontbold6);
    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: var(--introcolor);
    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: 15px;
    background: #FCFCFC;
    padding: 15px
}

.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;
    color: var(--fontcolor);
    font-weight: var(--fontbold6);
    font-size: var(--fontsize18);
    padding-right: 70px
}

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

.faqs-list .project-info.open .project-name em {
    transform: rotate(0);
    background: var(--fontcolor)
}

.faqs-list .project-info .project-content {
    display: none;
    padding-top: 10px;
    position: relative;
    font-size: var(--fontsize16);
    z-index: 1
}

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

.download-list li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2em;
    position: relative;
    aspect-ratio: var(--prosaspectratio);
    border-radius: 4px;
    overflow: hidden
}

.download-list li::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    z-index: 1
}

.download-list li:nth-child(3n) {
    margin-right: 0px
}

.download-list li .download-img {
    width: 100%;
    height: 100%
}

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

.download-list li .download-info {
    z-index: 2;
    width: 100%;
    position: absolute;
    text-align: center;
    left: 0px;
    top: 40%;
    font-size: var(--fontsize24);
    color: #FFFFFF;
    font-weight: var(--fontbold6);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.download-list li .download-btn {
    z-index: 2;
    margin-top: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    min-width: 160px;
    height: 45px;
    padding: 0px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #111111;
    border-radius: 30px;
    transition: all .2s linear
}

.download-list li:hover .download-btn {
    background: var(--color)
}

@media (max-width: 1366px) {
    .pageteam .list {
        margin-top:60px
    }

    .prodetails-info {
        padding-top: 0px;
        padding-left: 30px
    }

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

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

@media (max-width: 1280px) {
    .pageteam .list li {
        width:49%;
        margin-right: 0px;
        margin-bottom: 20px
    }

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

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

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

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

.procate li {
    width: 49%;
    margin-bottom: 2em;
    background: #F4F4F4;
    border-radius: var(--borderradius);
    position: relative;
    overflow: hidden;
    transition: all .2s linear;
    display: flex
}

.procate li .img {
    width: 50%;
    aspect-ratio: var(--prosaspectratio);
    display: flex;
    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 {
    flex: 1;
    padding: 20px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.procate li .info .title {
    font-size: var(--fontsize20);
    font-weight: var(--fontbold6);
    line-height: 1.4
}

.procate li .info .text {
    font-size: var(--fontsize16);
    color: var(--introcolor);
    line-height: 1.4;
    margin: 10px 0px 20px
}

.procate li .info .more {
    min-width: 120px;
    height: 40px;
    padding: 0px 15px;
    border-radius: 20px;
    color: var(--color);
    border: 1px solid var(--color);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

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

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

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

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

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

.custom-form .sidebar-title {
    font-weight: var(--fontbold6);
    font-size: var(--fontsize18)
}

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

.singgle-main {
    overflow: hidden
}

.news-nav li a.active {
    background: var(--color);
    color: #FFFFFF
}

#filterlist .filterlist-ul {
    display: block;
    box-shadow: none;
    position: static
}

#filterlist .filterlist-ul li {
    display: flex;
    align-items: center;
    margin: 10px 0px 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
}

@media (max-width: 768px) {
    #filterlist .product-left-title {
        background:0 0!important
    }
}

.contactlist {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-evenly
}

.contactlist li {
    width: 20%;
    text-align: center;
    line-height: 1.4
}
.contactlist img{
    width: 36px;
    /* height: 50px; */
}
.contactlist li .img{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    
.contactlist li em {
    font-size: 36px;
    color: var(--color)
}

.contactlist li .p1 {
    font-size: var(--fontsize22);
    font-weight: var(--fontbold6);
    margin: 10px 0px 0px
}

.contactlist li .p2 {
    font-size: var(--fontsize18);
    color: var(--introcolor);
    margin-bottom: 20px
}

.contactbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.contactbox .contactimg {
    width: 30%
}

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

.contactbox .contactfeedback {
    flex: 1;
    background: #F4F4F7;
    padding: 3%
}

.contactbox .contactfeedback .p1 {
    font-weight: var(--fontbold6);
    font-size: var(--fontsize30);
    color: var(--color)
}

.contactbox .contactfeedback .p1 span {
    color: var(--fontcolor)
}

.contactbox .contactfeedback .p2 {
    margin-bottom: 20px
}

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

.blogflex-info {
    width: 300px;
    display: flex;
    align-items: flex-start
}

.blogflex-content {
    flex: 1;
    padding-right: 20px
}

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

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

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

.blogflex-info .info-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px
}

@media(max-width: 1024px) {
    .blogflex {
        flex:1
    }

    .blogflex-info {
        width: 100%;
        margin-top: 20px
    }

    .blogflex-content {
        width: 100%;
        padding: 0
    }
}
.wmkcfeedback .inquiry-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.wmkcfeedback .inquiry-form>* {
    width: 49%
}

.wmkcfeedback .wmkcfb-fileupload,.wmkcfeedback input,.wmkcfeedback textarea {
    outline: 0;
    border-radius: 3px;
    border: none;
    background-color: #FFFFFF;
    height: 50px;
    padding: 10px;
    margin-bottom: 1.5em;
    font-family: inherit;
    border: 1px solid #FFFFFF;
    font-size: var(--fontsize14);
    transition: all .1s linear;
    font-size: 16px
}

.wmkcfeedback input::placeholder,.wmkcfeedback textarea::placeholder {
    color: #999999
}

.wmkcfeedback input:focus,.wmkcfeedback textarea:focus {
    border-color: var(--color,#26609e)!important
}

.wmkcfeedback input.input-error,.wmkcfeedback textarea.input-error {
    border-color: #e00
}

.wmkcfeedback textarea {
    width: 100%!important;
    flex: none!important;
    height: 140px;
    resize: none
}

.wmkcfeedback .send-btn {
    margin: 0px auto;
    min-width: 200px;
    width: 50px;
    height: 48px;
    border-radius: 30px;
    font-size: var(--fontsize16);
    background: #111111;
    color: #FFFFFF;
    font-weight: var(--fontbold4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: 0;
    padding: 0px 20px;
    transition: all .1s linear;
    position: relative;
    overflow: hidden;
    border: 1px solid #111111
}

.wmkcfeedback .send-btn:hover {
    background: var(--color);
    color: #FFFFFF;
    border-color: #FFFFFF
}

.wmkcfeedback .send-btn[disabled] {
    background: #eee!important;
    color: #999999!important
}

.wmkcfeedback .send-btn[disabled]::before {
    content: none!important
}

.wmkcfeedback .send-btn:hover::after {
    transform: translate(-50%,-50%) scale(1)
}

.wmkcfeedback .select-menu {
    position: relative;
    margin-bottom: 15px;
    width: 49%
}

.wmkcfeedback .select-menu input {
    margin: 0!important;
    width: 100%!important;
    cursor: pointer
}

.wmkcfeedback .select-menu .select-menu-div em {
    margin-right: 5px;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .4s ease
}

.wmkcfeedback .select-menu .select-menu-div em.select-menu-i {
    transform: rotateX(180deg)
}

.wmkcfeedback .select-menu .select-menu-div em::after,.wmkcfeedback .select-menu .select-menu-div em::before {
    content: "";
    width: 10px;
    height: 2px;
    background: #999999;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: rotate(45deg)
}

.wmkcfeedback .select-menu .select-menu-div em::after {
    transform: rotate(-45deg);
    left: 6px
}

.wmkcfeedback .select-menu .select-menu-ul {
    box-shadow: 0 1px 15px 0 rgba(15,19,39,.1);
    list-style: none;
    display: none;
    width: 100%;
    text-align: left;
    border: 1px solid #DDDDDD;
    background: #FFFFFF;
    position: absolute;
    z-index: 9
}

.wmkcfeedback .select-menu .select-menu-ul li {
    color: #000000;
    padding: 0px 20px;
    line-height: 2.5;
    cursor: pointer;
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.wmkcfeedback .select-menu .select-menu-ul li:hover {
    background: #f2faea
}

.wmkcfeedback .select-menu .select-menu-ul li:nth-child(2n) {
    background: #f5f4f4
}

.wmkcfeedback .select-menu .select-menu-ul li:nth-child(2n):hover {
    background: #f2faea
}

.wmkcfeedback .select-menu .select-menu-ul li.select-this {
    background: #f2faea
}

.wmkcfeedback .select-menu .select-menu-ul li.select-this:hover {
    background: #f2faea!important
}

.wmkcfeedback .loading {
    position: relative;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    border: 2px solid #000000;
    border-top-color: rgba(0,0,0,.2);
    border-right-color: rgba(0,0,0,.2);
    border-bottom-color: rgba(0,0,0,.2);
    border-radius: 100%;
    animation: feedbacksenloading infinite .75s linear
}

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

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

.wmkcfeedback .feed-verification {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px
}

.wmkcfeedback .feed-verification input {
    width: 100%!important;
    margin: 0!important
}

.wmkcfeedback .feed-verification img {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer
}

@media(max-width: 1024px) {
    .wmkcfeedback .feed-verification {
        max-width:100%
    }

    .wmkcfeedback .select-menu {
        width: 100%
    }
}

.prolist-bottom .wmkcfeedback .inquiry-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.prolist-bottom .wmkcfeedback .send-btn {
    height: 50px;
    font-size: var(--fontsize16)
}

@media(max-width: 768px) {
    .wmkcfeedback .wmkcfb-fileupload,.wmkcfeedback input {
        width:100%!important;
        margin: 0 0 10px!important;
        flex: none!important;
        height: 45px!important;
        font-size: var(--fontsize16)!important
    }

    .wmkcfeedback textarea {
        margin-bottom: 10px!important;
        font-size: var(--fontsize16)!important
    }
}

.wmkcfeedback .wmkcfb-fileupload {
    display: flex;
    align-items: center;
    color: #999999
}

.wmkcfb-fileupload {
    background-repeat: no-repeat;
    background-position: right;
    background-size: auto 55%;
    cursor: pointer
}
.Prod-conInfo:nth-child(2n){
    display: flex;
    flex-direction: row-reverse;
}
.Prod-conInfo {
  margin-top: 3em;
  position: relative;
  display: flex;
  flex-direction: row;
}
@media (min-width: 1025px) {
  .Prod-conInfo {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 1em;
  }
  .Prod-conInfo .btn-wrap {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.Prod-conInfo-img {
  overflow: hidden;
  width: 40%;
}
@media (min-width: 1025px) {
  .Prod-conInfo-img {
    -ms-flex-preferred-size: 810px;
    /* flex-basis: 810px; */
  }
}
@media (max-width: 1024px) {
  .Prod-conInfo-img {
    padding-top: 0.5em;
  }
}
.Prod-conInfo-img .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.Prod-conInfo-img .swiper-slide {
  background-size: cover;
  background-position: center;
}
.Prod-conInfo-img .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Prod-conInfo-img .swiper-button-next, .Prod-conInfo-img .swiper-button-prev {
  color: #282c2f;
}
.Prod-conInfo-img .swiper-button-next::after, .Prod-conInfo-img .swiper-button-prev::after {
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
}
@media (max-width: 640px) {
  .Prod-conInfo-img .swiper-button-next, .Prod-conInfo-img .swiper-button-prev {
    width: 2.2em;
    height: 2.2em;
  }
  .Prod-conInfo-img .swiper-button-next::after, .Prod-conInfo-img .swiper-button-prev::after {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.Prod-conInfo-img .Prod_mySwiper2 .swiper {
  height: 80%;
  width: 100%;
  margin-bottom: 0.25em;
}
@media (min-width: 1025px) {
  .Prod-conInfo-img .Prod_mySwiper2 .swiper {
    margin-bottom: 15px;
  }
}
.Prod-conInfo-img .Prod_mySwiper2 .swiper-slide {
  height: 0;
  padding-bottom: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Prod-conInfo-img .Prod_mySwiper2 .swiper-slide img {
  width: auto;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  /* margin: auto; */
}
.Prod-conInfo-img .Prod_mySwiper {
  padding-left: 3em;
  padding-right: 3em;
  position: relative;
}
.Prod-conInfo-img .Prod_mySwiper .swiper {
  height: 20%;
  padding: 10px 0;
  overflow: hidden;
}
.Prod-conInfo-img .Prod_mySwiper .swiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 1;
  border: #dcdcdc 1px solid;
}
.Prod-conInfo-img .Prod_mySwiper .swiper .swiper-slide img {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.Prod-conInfo-img .Prod_mySwiper .swiper .swiper-slide-thumb-active {
  border-color: #22297a;
}
@media (max-width: 1024px) {
  .Prod-conInfo-img .Prod_mySwiper .swiper .swiper-slide img {
    height: 70px;
  }
}
.Prod-conInfo-info {
  padding: 0.5em 1.75em;
  width: 38%;
}
@media (min-width: 1025px) {
  .Prod-conInfo-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 0 0 2.75em;
  }
}
.Prod-heading {
  line-height: 1.5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}
.Prod-heading p{
	font-size: 14px;
	color: #595959;
}
.Prod-heading .title-sub {
  font-size: 40px;
  font-size: 30px;
  font-weight: bold;
  color: #262626;
}
.Prod-specList .list ~ .list {
  margin-left: 10px;
}
.Prod-specList .img {
  width: 40px;
  margin: auto;
}
.Prod-specList .txt {
  font-size: 12px;
  font-size: 0.75rem;
  color: #656565;
  line-height: 1.2;
  text-align: center;
  margin-top: 5px;
}
.Prod-unreset {
  margin-top: 5px;
}
.Prod-unreset dl {
  margin-bottom: 0.25em;
}
.Prod-unreset dl dt {
  font-weight: 600;
  margin-bottom: 5px;
}
.Prod-unreset dl dd {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #656565;
}
.Prod-unreset .download_fileCaption {
  margin-bottom: 10px;
}
.Prod-unreset .download_fileInfo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.Prod-unreset .download_fileBtn {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media (max-width: 810px) {
  .Prod-unreset {
    margin-top: 0.5em;
    margin-bottom: 1em;
  }
  .Prod-unreset dl {
    margin-bottom: 0.25em;
  }
}
.Prod-conTxt {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  padding: 1.5em 0;
}
.Prod-conTxt div{
  overflow: hidden;
}
@media (min-width: 1025px) {
  .Prod-conTxt {
    margin-top: 3em;
    margin-bottom: 3em;
    padding-top: 3em;
    padding-bottom: 3em;
  }
}


  
.Prod_similarSwiper .cataList .cataImg{
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}

.Prod_similarSwiper .cataList .cataImg img{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 100%;
  margin: auto;
}

@media (min-width: 1025px) {
  .Prod_similarSwiper .swiper {
    padding-bottom: 1.5em;
    padding-top: 1.5em;
  }

  .Prod_similarSwiper .cataList {
    width: 100%;
    margin-left: 2em;
    margin-right: 2em;
  }
}

@media (max-width:1024px){
  .Prod_similarSwiper .cataList .cataImg + .text-center{
    min-height: 4em;
  }
}
.normal-content{
	width:75%;
}
.prolxwma{
	
}
.prolxwma li{
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: #164a96;
}
.prolxwma a{
	color: #fff;
}.prolxwma li:hover{
	background-color: #1e96d5;
}
.prodes{
    
}
.prodesa{
    margin-top: 20px;
    margin-bottom: 60px;
}
.prodesbt{
    display: inline-block;
    float: none;
    background-color: #164a96;
    color: #fff;
    padding: 15px;
    margin-bottom: 20px;
}
.prodesbt h2{
    font-size: 20px;
}
.prodesnr{
    
}
.server{
    
}
.servera{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 70px;
    justify-content: space-between;
}
.serverimg{
    width: 50%;
}
.serverimgwz{
    
}
.serverimg a{
    min-width: 400px;
    width: 100%;
    display: flex;
}
.serverimg img{
    width: 100%;
}
.serverwz {
    text-align: center;
    display: flex;
    justify-content: center;
}
    
.serverwz p{margin-left: 20px;font-size: 24px;}
/* 图片查看器样式 */
.image-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.viewer-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #bbb;
}

/* 点击放大动画 */
@keyframes zoomIn {
    from {transform: scale(0);}
    to {transform: scale(1);}
}

/* 为可点击的图片添加指针样式 */
.zoomable-img {
    cursor: zoom-in;
    transition: 0.3s;
}

.zoomable-img:hover {
    opacity: 0.8;
}
.image-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000; /* 确保在轮播控件之上 */
    justify-content: center;
    align-items: center;
}

.viewer-image {
    max-width: 95%;
    width: 50%;
    max-height: 95%;
    object-fit: contain;
    animation: zoomIn 0.3s ease-out;
}

.close-btn {
    position: absolute;
    top: 10%;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2010;
}

.close-btn:hover {
    color: #ddd;
    transform: scale(1.1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 为可点击图片添加样式 */
.zoomable {
    cursor: zoom-in;
    transition: opacity 0.3s ease;
}

.zoomable:hover {
    opacity: 0.9;
}

/* 缩略图点击效果 */
.thumbnail.zoomable:hover {
    opacity: 0.8;
    transform: scale(1.02);
}
.proimg-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.proimg-viewer-img {
    max-width: 90%;
    max-height: 90%;
    width: 50%;
    object-fit: contain;
    animation: proimgZoomIn 0.3s ease;
}

.proimg-close-btn {
    position: absolute;
    top: 10%;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.proimg-close-btn:hover {
    color: #bbb;
    transform: scale(1.1);
}

/* 点击放大动画 */
@keyframes proimgZoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* 可点击图片样式 */
.proimg-zoomable {
    cursor: zoom-in;
    transition: 0.3s;
}

.proimg-zoomable:hover {
    opacity: 0.9;
    transform: scale(1.02);
}