@import url(swiper.css); @import url(iconfont.css); @import url(message.css); @import url(language.css); :root {
    --color: #0d5d95;
    --color1: var(--color, #0d5d95);
    --headercolor: #ffffff;
    --fontcolor: #000003;
    --hometitlefont: 48px;
    --summarycolor: #555555;
    --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;
    --fontsize38: 38px;
    --fontsize40: 40px;
    --fontsize48: 48px;
    --borderradius: 5px;
    --fontbold3: 300;
    --fontbold4: 400;
    --fontbold5: 500;
    --fontbold6: 600;
    --fontbold7: 700;
    --fontbold8: 800;
    --fontbold9: 900;
    --fontfamily: "Public Sans","Lato","Open Sans","Poppins","Oswald","Noto Sans","Montserrat","sans-serif"
}

@media (max-width: 1440px) {
    :root {
        --hometitlefont:30px
    }
}

@media (max-width: 1024px) {
    :root {
        --hometitlefont:26px
    }
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(122,122,122,.1);
    box-shadow: inset 0 0 5px rgba(0,0,0,.1)
}

::-webkit-scrollbar-thumb {
    background: #d7d7d7;
    box-shadow: inset 0 0 5px rgba(0,0,0,.2)
}

::-webkit-scrollbar {
    width: 8px;
    height: 1px
}

b,h1,h2,h3,h4,h5,h6 {
    text-transform: capitalize;
    font-weight: var(--fontbold5)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent
}

body {
    overflow-x: hidden;
    margin-right: auto;
    margin-left: auto;
    color: var(--fontcolor);
    font-size: var(--fontsize16);
    font-family: var(--fontfamily);
    line-height: 1.6
}

.hidden {
    overflow: hidden
}

img.lazy {
    display: inline-block;
    opacity: 0
}

img.lazy,img.tst {
    transition: opacity .6s,transform .3s ease
}

img.loaded {
    opacity: 1
}

img:not([src]) {
    position: absolute;
    visibility: hidden
}

.lazy-load {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    border: 2px solid var(--color);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: arrow-circle infinite .75s linear
}

.lazy-wrap {
    position: relative;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center
}

.lazy-wrap::after {
    display: block;
    padding-bottom: 50%;
    content: ""
}

.lazy-wrap.lazy-loaded .lazy-load {
    display: none;
    -webkit-animation: none;
    animation: none
}

.lazy-wrap.lazy-loaded::after {
    padding-bottom: 0
}

.lazy-load:after,.lazy-load:before {
    position: absolute;
    top: 18px;
    left: -2px;
    border-top: 5px solid var(--color);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: "";
    transform: rotate(-30deg)
}

.lazy-load:after {
    top: -2px;
    left: 13.5px;
    transform: rotate(150deg)
}

@keyframes arrow-circle {
    0% {
        transform: translate(-50%,-50%) rotate(360deg)
    }

    100% {
        transform: translate(-50%,-50%) rotate(0)
    }
}

.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: 2;
    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
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: bottom
}

a {
    color: inherit;
    text-decoration: none
}

li,ol,ul {
    list-style: none
}

iframe,video {
    max-width: 100%;
    outline: 0;
    border: none;
    vertical-align: bottom
}

h4.cate-h4,h4.pro-h4 {
    clear: both;
    font-weight: var(--fontbold5)
}

ul.cate-ulli,ul.pro-ulli {
    clear: both;
    padding: 10px 0 10px 20px
}

ul.cate-ulli li,ul.pro-ulli li {
    list-style-type: disc;
    line-height: 175%
}

button {
    outline: 0;
    border: none
}

.flex {
    display: flex;
    flex-wrap: wrap
}

.flex-ai-c {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.flex-ai-fs {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start
}

.flex-ai-fe {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end
}

.flex-jc-c {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.flex-jc-sb {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.flex-jc-sa {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around
}

.flex-jc-fe {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}

.flex-jc-fs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.flex-jc-ai-c {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

.flex-jc-ai-sb {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
}

.l-wrap {
    margin: 0 auto;
    padding: 0 70px;
    width: 100%;
    max-width: 1740px
}

.head-lang {
    display: flex;
    align-items: center;
    justify-content: center
}

header.is-active .lang-icon span {
    color: var(--fontcolor);
}

header.is-active .lang-icon span::before {
    background-color: var(--fontcolor);
}

header.is-active .lang-icon span::after {
    background-color: var(--fontcolor);
}

.lang {
    position: relative;
    z-index: 9999;
    margin-right: 20px;
    margin-left: 10px;
    width: auto;
    text-align: left
}

.lang-icon {
    display: flex;
    width: 100%;
    height: 30px;
    border: none;
    white-space: nowrap;
    font-size: var(--fontsize14);
    cursor: pointer;
    align-items: center;
    user-select: none
}

.lang-icon span {
    position: relative;
    padding-right: 18px;
    color: var(--headercolor)
}

.lang-icon>img {
    margin-right: 5px;
    filter: brightness(0) invert(1);
}
header.is-active .head-info .lang-icon>img{
    filter: none;
}
.nobanner header.is-active .head-info .lang-icon>img{
        filter: none;
}
.nobanner header .head-info .lang-icon>img{
        filter: none;
}
.lang-icon span::before {
    position: absolute;
    top: 11px;
    right: 4px;
    width: 8px;
    height: 1px;
    background: #fff;
    content: "";
    transform: rotate(50deg)
}
.nobanner .lang-icon span::before {
    background: #000000;
}
.lang-icon span::after {
    position: absolute;
    top: 11px;
    right: 0;
    width: 8px;
    height: 1px;
    background: #fff;
    content: "";
    transform: rotate(-50deg)
}
.nobanner .lang-icon span::after{
    background: #000000
}
.lang-drop {
    position: absolute;
    top: calc(100% + 26px);
    right: 50%;
    z-index: 9999;
    visibility: hidden;
    border: 1px solid #ebeef5;
    border-radius: var(--borderradius);
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
    opacity: 0;
    transition: opacity .3s,top .3s;
    transform: translateX(50%)
}

.lang-drop.active {
    display: block!important
}

.lang-drop.lang-flex {
    transform: translateX(23%)
}

.lang-drop.lang-flex .lang-arrow {
    left: 75%
}

.lang-drop.active {
    top: calc(100% + 12px);
    visibility: visible;
    opacity: 1
}

.lang-arrow {
    position: absolute;
    top: -6px;
    left: 50%;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid #ebeef5;
    border-left: 1px solid #ebeef5;
    background-color: #fff;
    transform: translateX(-50%) rotate(45deg)
}

.lang-wrap {
    box-sizing: border-box;
    padding: 8px 0;
    width: 140px
}

.lang-flex .lang-wrap {
    display: flex;
    padding: 8px;
    width: 530px;
    flex-wrap: wrap
}

.lang-wrap li {
    box-sizing: border-box;
    padding: 8px 16px;
    width: 100%;
    transition: background-color .3s
}

.lang-flex .lang-wrap li {
    padding: 0;
    width: 25%
}

.lang-flex .lang-wrap li a {
    padding: 8px 6px
}

.lang-wrap li.lang-active,.lang-wrap li:hover {
    background-color: #eee
}

.lang-wrap li a {
    display: block;
    overflow: hidden;
    color: var(--fontcolor);
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px
}

.lang-wrap li img {
    display: inline-block;
    margin-right: 4px;
    width: 24px;
    height: 16px;
    vertical-align: -.25em
}

@media(max-width: 768px) {
    .lang-drop.lang-flex {
        left:0;
        width: 100vw;
        transform: none;
        position: fixed;
        top: 55px
    }

    .lang-flex .lang-wrap {
        width: 100%
    }
}

@media (max-width: 1024px) {
    .l-wrap {
        padding:0 15px
    }

    .lang {
        margin-right: 20px;
        margin-left: auto;
        transition: all .2s linear
    }

    .lang-icon span {
        display: none
    }

    .lang-icon>img {
        width: 36px;
        height: 24px
    }

    .lang-drop {
        display: none
    }

    .lang-drop.active {
        display: block
    }
}

.crumbs .banner-img {
    width: 100%
}

.crumbs .banner-img img {
    width: 100%;
    animation: bannerimg 6s forwards
}

.crumbs .banner-content {
    padding: 10px 0;
    background-color: #eee
}

.crumbs .banner-content .l-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.crumbs .banner-content .banner-title-h1 {
    text-transform: capitalize;
    font-weight: var(--fontbold5);
    font-size: var(--fontsize18)
}

.crumbs .banner-content .banner-breadcrumbs {
    font-size: var(--fontsize14)
}

.crumbs .banner-content .banner-breadcrumbs em {
    margin-right: 2px;
    color: var(--color)
}

.crumbs .banner-content .banner-breadcrumbs a {
    text-transform: capitalize;
    transition: all .1s linear
}

.crumbs .banner-content .banner-breadcrumbs span {
    text-transform: capitalize
}

.crumbs .banner-content .banner-breadcrumbs a:hover {
    color: var(--color)
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.13)
}

header.is-active {
    background-color: #fff
}

header.is-active .head-top {
    visibility: hidden;
    margin-top: -40px;
    opacity: 0
}

header.is-active .head-info {
    height: 80px
}

header.is-active .head-info .head-nav .nav-ul>li>a {
    color: var(--fontcolor)
}

.nobanner header.is-active .head-info .head-nav .nav-ul>li>a {
    color: #000000;
}

.nobanner header.is-active .lang-icon span {
    color: #000000;
}
.nobanner header .lang-icon span {
    color: #000000;
}
.nobanner header.is-active .lang-icon span::after,.nobanner header.is-active .lang-icon span::before {
    background-color: #000000;
}

header .head-top {
    height: 40px;
    background: var(--bgcolor);
    color: #fff;
    transition: margin .1s linear
}

header .head-top .l-wrap {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center
}

header .head-top .head-share {
    display: flex;
    height: 100%;
    align-items: center
}

header .head-top .head-share ul {
    display: flex;
    margin-right: 10px;
    height: 100%;
    align-items: center
}

header .head-top .head-share ul li {
    margin: 0 4px;
    width: 26px;
    height: 26px
}

header .head-top .head-share ul li a {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: var(--borderradius);
    color: #fff;
    transition: all .1s linear;
    justify-content: center;
    align-items: center
}

header .head-top .head-share ul li a:hover {
    background-color: #fff;
    color: var(--color)
}

header .head-top .head-contact {
    display: flex;
    align-items: center
}

header .head-top .head-contact .item {
    display: flex;
    margin-right: 20px;
    align-items: center;
    font-size: var(--fontsize14)
}

header .head-top .head-contact .item em {
    margin-right: 5px;
    color: #fff;
    font-size: var(--fontsize18)
}

header .head-top .head-contact .item a {
    color: #fff
}

header .head-top .head-contact .item span {
    color: var(--fontcolor);
    font-size: var(--fontsize14)
}

header .head-info {
    height: 100px;
    box-shadow: 1px 2px 10px rgba(0,0,0,.1);
    transition: all .1s linear
}

header .head-info .l-wrap {
    display: flex;
    padding: 0 70px;
    height: 100%;
    max-width: 1720px;
    justify-content: space-between;
    align-items: center
}

header .head-info .head-logo {
    display: flex;
    max-width: 50%;
    align-items: center
}

header .head-info .head-logo a {
    display: inline-flex;
    align-items: center
}

header .head-info .head-logo a span {
    padding-left: 10px;
    font-size: var(--fontsize18)
}

header .head-info .head-logo img {
    width: auto;
    max-height: 60px
}

header .head-info .head-nav {
    display: flex;
    height: 100%;
    align-items: center;
    width: 66%;
    justify-content: space-between;
}

header .head-info .head-nav .nav-ul {
    display: flex;
    height: 100%
}

header .head-info .head-nav .nav-ul>li {
    position: relative;
    height: 100%
}
header .head-info .head-nav .nav-ul>li em{
    display:none;
}
header .head-info .head-nav .nav-ul>li:nth-child(3) em,header .head-info .head-nav .nav-ul>li:nth-child(5) em{
    display:block;
}
header .head-info .head-nav .nav-ul>li>em {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--headercolor)
}

header.is-active .head-info .head-nav .nav-ul>li>em {
    color: var(--fontcolor)
}

header .head-info .head-nav .nav-ul>li>a {
    position: relative;
    display: flex;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    color: var(--headercolor);
    white-space: nowrap;
    font-weight: var(--fontbold6);
    font-size: var(--fontsize14);
    transition: all .1s linear;
    align-items: center;
    justify-content: center
}
.nobanner header .head-info .head-nav .nav-ul>li>a {
    color: #000000;
}
header .head-info .head-nav .nav-ul>li:hover>em {
    color: var(--color)
}

header .head-info .head-nav .nav-ul>li:hover>a {
    color: var(--color)
}

header .head-info .head-nav .nav-ul>li:hover .submenu {
    visibility: inherit;
    opacity: 1;
    transform: translateY(0)
}

header .head-info .head-nav .nav-ul>li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    min-width: 200px;
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0,0,0,.1);
    opacity: 0;
    transition: all .1s linear;
    transform: translateY(10px)
}

header .head-info .head-nav .nav-ul>li .submenu li {
    position: relative;
    padding: 12px 10px;
    height: 55px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    white-space: nowrap
}

header .head-info .head-nav .nav-ul>li .submenu li a {
    display: flex;
    padding-right: 30px;
    height: 100%;
    color: var(--fontcolor);
    text-transform: capitalize;
    font-size: var(--fontsize16);
    opacity: .8;
    align-items: center
}

header .head-info .head-nav .nav-ul>li .submenu li .cate-title:hover {
    color: var(--color)
}

header .head-info .head-nav .nav-ul>li .submenu li ul li a {
    color: var(--fontcolor);
    text-transform: capitalize
}

header .head-info .head-nav .nav-ul>li .submenu li em {
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: var(--fontsize12);
    transform: translateY(-50%)
}

header .head-info .head-nav .nav-ul>li .submenu li ul {
    display: none
}

header .head-info .head-nav .nav-ul>li .submenu li:hover ul {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    min-width: 200px;
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0,0,0,.1)
}

header .head-info .head-nav .nav-ul>li .submenu>li:hover>a,header .head-info .head-nav .nav-ul>li .submenu>li:hover>em {
    color: var(--color)
}

header .head-info .head-nav .nav-ul>li .submenu li:hover ul li:hover a,header .head-info .head-nav .nav-ul>li .submenu li:hover ul li:hover em {
    color: var(--color)
}

header .head-info .head-nav .nav-ul>li>a.inmenu_1 {
    color: var(--color)
}

.m-menu {
    display: none
}

.search-box {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center
}

.head-search {
    display: flex;
    margin-right: 10%;
    align-items: center
}

.head-search button {
    padding: 10px;
    outline: 0;
    border: none;
    background: 0 0;
    cursor: pointer
}

.head-search button em {
    color: var(--color);
    font-weight: var(--fontbold6);
    font-size: var(--fontsize24)
}

.search-input {
    position: absolute;
    top: 100%;
    right: 0;
    display: flex;
    visibility: hidden;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0,0,0,.2);
    opacity: 0;
    transform: rotateX(90deg);
    align-items: center;
    justify-content: center
}

.search-input input {
    width: 200px;
    height: 40px
}

.search-input input {
    padding-left: 10px;
    width: 200px;
    height: 40px;
    outline: 0;
    border: none;
    font-size: var(--fontsize16)
}

.search-input .search-btn {
    display: inline-flex;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all .1s linear;
    align-items: center;
    justify-content: center
}

.search-input .search-btn {
    display: inline-flex;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all .1s linear;
    align-items: center;
    justify-content: center
}

.search-input .search-btn:hover {
    opacity: .9
}

.search-input .search-btn em {
    color: var(--color);
    font-size: var(--fontsize22)
}

.search-input.active {
    visibility: visible;
    opacity: 1;
    transition: opacity .3s,transform .3s;
    transform: rotateX(0);
    transform-origin: top
}

.common-page {
    display: flex;
    margin-bottom: 20px;
    padding: 10px 0;
    width: 100%;
    border-radius: var(--borderradius);
    background-color: #f6f6f6;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.common-page>* {
    display: flex;
    padding: 4px 14px;
    border-radius: var(--borderradius);
    background-color: #fff;
    box-shadow: 0 0 9px 0 rgba(0,0,0,.14);
    transition: all .2s linear;
    justify-content: center;
    align-items: center
}

.common-page .btn {
    box-sizing: border-box;
    padding: 10px;
    height: 40px
}

.common-page .num {
    box-sizing: border-box;
    width: 40px;
    height: 40px
}

.common-page a:hover {
    background-color: var(--color);
    color: #fff
}

.common-page>.ctxt {
    background-color: var(--color);
    color: #fff
}

footer {
    color: #cdd0d4;
    background-color: #26303f
}

footer a {
    color: #cdd0d4
}

.bottom-btn .btn-item .top-btn {
    position: absolute;
    top: 7px;
    left: 47%;
    display: flex;
    background-color: var(--color);
    opacity: 1;
    cursor: pointer;
    justify-content: center;
    align-items: center
}

.bottom-btn .btn-item .top-btn .iconfont {
    color: #fff
}

footer .footer-main {
    display: flex;
    padding: 4% 0;
    flex-wrap: wrap;
    justify-content: space-between
}

footer .foot-logo img {
    width: 80px
}

footer .foot-main .foot-item.foot-about {
    width: 30%;
    padding-right: 3.5%
}

footer .foot-main {
    padding: 50px 0 40px
}

footer .foot-main .foot-item.foot-contact {
    width: 24%
}

footer .footer-main .foot-item {
    width: 24%
}

footer .footer-main .foot-item .foot-title {
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: var(--fontbold6);
    font-size: var(--fontsize20);
    position: relative;
    padding-bottom: 20px
}

footer .footer-main .foot-item .foot-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    width: 50px;
    height: 2px
}

footer .foot-main .foot-item .foot-title {
    font-size: var(--fontsize22);
    font-weight: var(--fontbold6);
    color: #fff;
    margin-bottom: 16px;
    text-transform: capitalize
}

footer .foot-list a {
    display: inline-block;
    padding: 4px 0;
    transition: all .1s linear;
    font-size: var(--fontsize15)
}

footer .foot-main .foot-item.foot-cate li:not(:last-of-type) {
    margin-bottom: 10px
}

footer .foot-list a em {
    margin-right: 5px;
    font-size: var(--fontsize14)
}

footer .footer-main .foot-contact {
    width: 20%
}

footer .footer-main .foot-contact ul li {
    margin-bottom: 10px
}

footer .footer-main .foot-pro {
    width: 20%
}

footer .foot-main .foot-item .foot-title img {
    display: block;
    width: auto;
    max-width: 100px;
}

footer a:hover {
    color: var(--color)
}

footer .foot-main .foot-item.foot-contact li {
    display: flex;
    line-height: 1.6
}

footer .foot-main .foot-item.foot-contact li:not(:last-of-type) {
    margin-bottom: 20px
}

footer .foot-main .foot-item.foot-contact li .icon em {
    font-size: var(--fontsize24);
    color: var(--color);
    line-height: 1.2
}

footer .foot-main .foot-item.foot-contact li .con {
    flex: 1;
    padding-left: 16px
}

footer .foot-main .foot-item.foot-contact li .con p {
    font-size: var(--fontsize14);
    margin-top: 6px;
    text-transform: capitalize
}

footer .copy {
    padding: 30px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.2)
}

footer .foot-text {
    margin-top: 30px
}

.top-btn {
    position: fixed;
    right: 35px;
    bottom: 130px;
    z-index: 9;
    display: flex;
    visibility: hidden;
    overflow: hidden;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color);
    box-shadow: 0 5px 5px 0 rgba(0,0,0,.1);
    opacity: 0;
    cursor: pointer;
    transition: all .4s ease;
    align-items: center;
    justify-content: center
}

.top-btn .iconfont {
    color: #fff;
    transform: rotate(180deg)
}

.top-btn.act {
    bottom: 150px;
    visibility: inherit;
    opacity: 1
}

.mobile-bottom-bag {
    position: relative;
    display: none;
    transition: all .1s linear
}

.bottom-btn {
    display: none
}

.share-link ul {
    display: flex;
    margin-top: 20px
}

.share-link ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 20px;
    margin-right: 10px;
    color: #fff;
    background-color: var(--color);
    border-color: var(--color);
    transition: all .3s linear
}

.share-link ul a i {
    font-size: var(--fontsize16)
}

.share-link ul a:hover {
    background: #fff;
    color: var(--color)
}

@media (max-width: 1024px) {
    body {
        padding-top:56px!important
    }

    .head-search {
        display: none
    }

    .search-input {
        position: static;
        display: block;
        display: flex;
        visibility: inherit;
        overflow: hidden;
        margin: 10px 0;
        width: 100%;
        border: 1px solid #c2c2c2;
        border-radius: var(--borderradius);
        box-shadow: none;
        opacity: 1;
        transform: none;
        align-items: center
    }

    .search-input input {
        flex: 1
    }

    header {
        background-color: #fff
    }

    header.is-active .head-info {
        height: 55px
    }

    header .head-info .head-logo img {
        max-height: 45px
    }

    header.is-active .head-info .head-nav {
        top: 59px;
        height: calc(100vh - 50px)
    }

    header .head-top {
        position: static;
        display: none;
        height: 30px;
        font-size: var(--fontsize14);
        transition: all .2s linear
    }

    header .nav-ul>li .submenu>li em {
        display: none
    }

    header .head-info {
        height: 60px;
        box-shadow: 1px 2px 10px rgba(0,0,0,.15)
    }

    header .head-info .head-logo {
        max-width: inherit
    }

    header .head-info .head-nav {
        position: fixed;
        top: 60px;
        left: 0;
        z-index: 9999;
        display: flex;
        visibility: hidden;
        padding: 10px 20px;
        width: 100%;
        height: calc(100vh - 55px);
        background: #fff;
        opacity: 0;
        transition: all .2s linear;
        transform: translateY(-20px);
        flex-direction: column-reverse;
        justify-content: flex-end
    }

    header .head-info .head-nav.head-nav-act {
        visibility: inherit;
        opacity: 1;
        transform: translateY(-5px)
    }

    header .head-info .head-nav.head-nav-act .nav-ul>li {
        border-bottom: 1px solid rgba(0,0,0,.08)
    }

    header .head-info .head-nav .nav-ul {
        display: block;
        overflow-y: auto;
        padding: 0 0 100px;
        width: 100%;
        height: 100%;
        flex-direction: column
    }

    header .head-info .head-nav .nav-ul>li {
        height: auto
    }

    header .head-info .head-nav .nav-ul>li:hover>a,header .head-info .head-nav .nav-ul>li:hover>em {
        color: inherit
    }

    header .head-info .head-nav .nav-ul>li:hover .submenu {
        visibility: inherit;
        opacity: inherit;
        transform: inherit;
        transform: none
    }

    header .head-info .head-nav .nav-ul>li.cur>a {
        color: var(--color)
    }

    header .head-info .head-nav .nav-ul>li.cur>em {
        color: var(--color);
        transform: rotateX(180deg)
    }

    header .head-info .head-nav .nav-ul>li>em {
        top: 8px;
        right: 0;
        display: flex;
        width: 40px;
        height: 40px;
        font-size: var(--fontsize22);
        cursor: pointer;
        transition: all .1s linear;
        transform: none;
        align-items: center;
        justify-content: center
    }

    header .head-info .head-nav .nav-ul>li>a {
        padding: 12px 0;
        height: auto;
        font-weight: var(--fontbold4);
        font-size: var(--fontsize18);
        justify-content: flex-start;
        color: var(--fontcolor)
    }

    header .head-info .head-nav .nav-ul>li>a::after {
        content: none
    }

    header .head-info .head-nav .nav-ul>li .submenu {
        position: static;
        display: none;
        visibility: inherit;
        padding-left: 10px;
        min-width: inherit;
        box-shadow: none;
        opacity: 1;
        transition: none;
        transform: none
    }

    header .head-info .head-nav .nav-ul>li .submenu li {
        height: auto;
        border-bottom: none
    }

    header .head-info .head-nav .nav-ul>li .submenu li:hover {
        background: 0 0
    }

    header .head-info .head-nav .nav-ul>li .submenu li a {
        padding: 5px 0;
        border: none;
        font-weight: var(--fontbold4)
    }

    header .head-info .head-nav .nav-ul>li .submenu li ul {
        position: static!important;
        display: block!important;
        padding-left: 10px;
        box-shadow: none!important
    }

    .search-box {
        width: 100%;
        height: auto
    }

    .search-box input {
        flex: 1
    }

    .m-menu {
        position: relative;
        display: block;
        width: 35px;
        height: 40px;
        cursor: pointer
    }

    .m-menu span {
        position: absolute;
        left: 0;
        height: 3px;
        border-radius: var(--borderradius);
        background: var(--color);
        transition: all .2s linear
    }

    .m-menu span:first-child {
        top: 25%;
        width: 80%
    }

    .m-menu span:nth-child(2) {
        top: 48%;
        width: 60%
    }

    .m-menu span:nth-child(3) {
        top: 73%;
        width: 80%
    }

    .m-menu.act span {
        top: 48%;
        width: 32px
    }

    .m-menu.act span:first-child {
        transform: rotate(45deg)
    }

    .m-menu.act span:nth-child(2) {
        width: 0
    }

    .m-menu.act span:nth-child(3) {
        transform: rotate(-45deg)
    }

    .crumbs .banner-img img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .nav-ul .head-contact {
        padding: 15px 0
    }

    .nav-ul .head-contact .item {
        display: flex;
        width: 100%;
        color: #333;
        font-size: var(--fontsize17);
        align-items: center
    }

    .nav-ul .head-contact .item em {
        margin-right: 6px;
        color: var(--color);
        font-size: var(--fontsize22)
    }

    footer .footer-main .foot-item {
        margin-bottom: 20px;
        width: 48%!important
    }

    footer {
        margin-bottom: calc(55px + constant(safe-area-inset-bottom));
        margin-bottom: calc(55px + env(safe-area-inset-bottom))
    }

    .bottom-btn {
        position: fixed;
        bottom: 0;
        z-index: 99;
        visibility: hidden;
        padding-bottom: constant(safe-area-inset-bottom);
        padding-bottom: env(safe-area-inset-bottom);
        width: 100%;
        background: #fcfCFCFB;
        box-shadow: 1px 2px 10px rgba(0,0,0,.1);
        opacity: 0;
        transition: all .2s linear;
        transform: translateY(55px);
        align-items: center
    }

    .bottom-btn.is-active {
        visibility: inherit;
        opacity: 1;
        transform: translateY(0);
        display: flex
    }

    .bottom-btn .btn-item {
        width: 20%;
        height: 55px
    }

    .bottom-btn .btn-item a {
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #333
    }

    .bottom-btn .btn-item i {
        font-size: var(--fontsize20);
        line-height: 1.2;
        color: #333
    }

    .bottom-btn .btn-item p {
        text-transform: capitalize;
        font-size: var(--fontsize12)
    }

    .bottom-btn .btn-item.cart {
        display: none
    }

    .bottom-btn .btn-item .top-btn {
        transform: rotate(180deg)
    }

    footer .footer-main {
        padding-top: 20px;
        padding-bottom: 0
    }

    .pc-back {
        display: none
    }

    footer .foot-main .foot-item {
        width: 48%!important;
        margin-bottom: 20px
    }
}

@media screen and (max-width: 768px) {
    footer .foot-main .foot-item {
        width:100%!important
    }

    footer .foot-main {
        padding: 20px 0
    }

    footer .foot-nav ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap
    }

    footer .foot-nav ul li {
        width: 48%
    }

    footer .copy {
        padding: 10px 0
    }

    .crumbs .banner-content .banner-title-h1 {
        display: none
    }

    .crumbs .banner-img {
        display: none
    }

    .rfixed {
        right: 24px;
        bottom: calc(140px + constant(safe-area-inset-bottom));
        bottom: calc(140px + env(safe-area-inset-bottom))
    }

    iframe,video {
        height: auto;
        min-height: 240px
    }

    footer .footer-main .foot-item {
        width: 100%!important
    }

    .top-btn {
        right: 24px;
        bottom: calc(120px + constant(safe-area-inset-bottom));
        bottom: calc(120px + env(safe-area-inset-bottom))
    }

    .top-btn.act {
        bottom: calc(140px + constant(safe-area-inset-bottom));
        bottom: calc(140px + env(safe-area-inset-bottom))
    }

    header .head-info {
        height: 55px;
        box-shadow: 1px 2px 10px rgba(0,0,0,.1)
    }
}

@media (max-width: 500px) {
    html {
        overflow-x:hidden
    }

    .crumbs .banner-img {
        height: 160px
    }
}

.rfixed {
    position: fixed;
    right: 35px;
    bottom: calc(200px + constant(safe-area-inset-bottom));
    bottom: calc(200px + env(safe-area-inset-bottom));
    z-index: 99
}

.compare-panel {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 998;
    display: none;
    width: 280px;
    background: #fff;
    box-shadow: -1px -1px 3px #ccc;
    transition: bottom .2s
}

.compare-t {
    display: flex;
    padding: 10px;
    background-color: var(--color);
    color: #fff;
    font-size: var(--fontsize14);
    cursor: pointer;
    align-items: center
}

.compare-close {
    position: relative;
    width: 24px;
    height: 24px;
    background: 0 0;
    cursor: pointer
}

.compare-close::after,.compare-close::before {
    position: absolute;
    top: 50%;
    display: block;
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    content: ""
}

.compare-close::before {
    left: 4px;
    transform: rotate(45deg)
}

.compare-close::after {
    right: 4px;
    transform: rotate(-45deg)
}

.compare-tit {
    text-align: center;
    line-height: 1.5;
    flex: 1
}

.compare-checked {
    margin: 0 4px;
    color: #fff
}

#productChache_list {
    overflow-y: auto;
    padding: 0 18px;
    height: 220px
}

#productChache_list::-webkit-scrollbar {
    width: 4px
}

#productChache_list::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: rgba(0,0,0,.05)
}

#productChache_list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0,0,0,.15)
}

.selected-item {
    position: relative;
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    align-items: center
}

.item-clear {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: transparent;
    cursor: pointer
}

.item-clear::after,.item-clear::before {
    position: absolute;
    top: 50%;
    display: block;
    margin-top: -1px;
    width: 70%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--fontcolor);
    content: ""
}

.item-clear::before {
    left: 3px;
    transform: rotate(45deg)
}

.item-clear::after {
    left: 3px;
    transform: rotate(-45deg)
}

.item-content {
    display: flex;
    flex: 1;
    align-items: center
}

.item-img {
    display: flex;
    width: 50px;
    height: 50px;
    border: 1px solid #efefef;
    background: #fff;
    align-items: center;
    justify-content: center
}

.item-img img {
    max-width: 100%;
    max-height: 100%
}

.item-c {
    padding: 0 10px;
    width: calc(100% - 50px);
    font-size: var(--fontsize12)
}

.item-title {
    display: block;
    display: -webkit-box;
    overflow: hidden;
    max-height: 34px;
    color: var(--fontcolortitle);
    text-overflow: ellipsis;
    line-height: 1.3;
    word-break: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.item-price {
    color: var(--color)
}

.compare-b {
    display: flex;
    padding: 20px 10px;
    justify-content: space-between
}

.compare-b * {
    display: block;
    overflow: hidden;
    padding: 0 2px;
    width: 80px;
    border-radius: 2px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--fontsize12);
    line-height: 30px
}

.clear-all {
    background-color: #ededed;
    color: var(--fontcolortitle);
    cursor: pointer
}

.compare-inquire,.compare-inquire:hover {
    background-color: var(--color);
    color: #fff
}

.compare-b .orderNow {
    display: block;
    margin: 0;
    padding: 0 2px;
    width: 80px;
    border: none;
    border-radius: 2px;
    background: #f66f08;
    color: #fff;
    font-size: var(--fontsize12);
    line-height: 30px;
    cursor: pointer
}

.rfixed-sc {
    position: relative;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color);
    color: #fff;
    text-align: center;
    line-height: 38px;
    cursor: pointer
}

.rfixed-sc i {
    font-size: var(--fontsize20)
}

.rfixed-scnum {
    position: absolute;
    top: 6px;
    right: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e00;
    color: #fff;
    text-align: center;
    font-size: var(--fontsize12);
    line-height: 16px;
    transform: scale(.9)
}

.item-clear::after,.item-clear::before {
    position: absolute;
    top: 50%;
    display: block;
    margin-top: -1px;
    width: 70%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--color);
    content: ""
}

.item-clear::before {
    left: 3px;
    transform: rotate(45deg)
}

.item-clear::after {
    left: 3px;
    transform: rotate(-45deg)
}

@media (max-width: 768px) {
    .compare-panel {
        bottom:66px;
        width: 100%
    }
}

.toast-title {
    font-weight: var(--fontbold7)
}

.toast-message {
    word-wrap: break-word;
    -ms-word-wrap: break-word
}

.toast-message a,.toast-message label {
    color: #fff
}

.toast-message a:hover {
    color: #ccc;
    text-decoration: none
}

.toast-close-button {
    position: relative;
    top: -.3em;
    right: -.3em;
    float: right;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    font-weight: var(--fontbold7);
    font-size: var(--fontsize20);
    line-height: 1;
    opacity: .8;
    -webkit-text-shadow: 0 1px 0 #FFF
}

.toast-close-button:focus,.toast-close-button:hover {
    color: #000;
    text-decoration: none;
    opacity: .4;
    cursor: pointer
}

.rtl .toast-close-button {
    right: .3em;
    left: -.3em;
    float: left
}

button.toast-close-button {
    padding: 0;
    border: 0;
    background: 0 0;
    cursor: pointer;
    -webkit-appearance: none
}

.toast-center-center {
    top: 40%;
    right: 0;
    width: 100%;
    transform: translateY(-50%)
}

.toast-top-center {
    top: 20%;
    right: 0;
    width: 100%
}

.toast-bottom-center {
    right: 0;
    bottom: 0;
    width: 100%
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%
}

.toast-bottom-full-width {
    right: 0;
    bottom: 0;
    width: 100%
}

.toast-top-left {
    top: 12px;
    left: 12px
}

.toast-top-right {
    top: 12px;
    right: 12px
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px
}

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none
}

#toast-container * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#toast-container>div {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 5px 15px 5px 50px;
    width: 300px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0 0 12px #999;
    -moz-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #fff;
    font-size: var(--fontsize16);
    opacity: .9;
    pointer-events: auto
}

#toast-container>div.rtl {
    padding: 15px 50px 15px 15px;
    background-position: right 15px center;
    direction: rtl
}

#toast-container>div:hover {
    -webkit-box-shadow: 0 0 12px #000;
    -moz-box-shadow: 0 0 12px #000;
    box-shadow: 0 0 12px #000;
    opacity: 1;
    cursor: pointer
}

#toast-container>.toast-info {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important
}

#toast-container>.toast-error {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important
}

#toast-container>.toast-success {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important
}

#toast-container>.toast-warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important
}

#toast-container.toast-bottom-center>div,#toast-container.toast-center-center>div,#toast-container.toast-top-center>div {
    margin-right: auto;
    margin-left: auto;
    width: 300px
}

#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div {
    margin-right: auto;
    margin-left: auto;
    width: 96%
}

.toast {
    background-color: #030303
}

.toast-success {
    background-color: #51a351
}

.toast-error {
    background-color: #bd362f
}

.toast-info {
    background-color: #2f96b4
}

.toast-warning {
    background-color: #f89406
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #000;
    opacity: .4
}

@media all and (max-width: 240px) {
    #toast-container>div {
        padding:8px 8px 8px 50px;
        width: 11em
    }

    #toast-container>div.rtl {
        padding: 8px 50px 8px 8px
    }

    #toast-container .toast-close-button {
        top: -.2em;
        right: -.2em
    }

    #toast-container .rtl .toast-close-button {
        right: .2em;
        left: -.2em
    }
}

@media all and (min-width: 241px) and (max-width:480px) {
    #toast-container>div {
        padding:8px 8px 8px 50px;
        width: 18em
    }

    #toast-container>div.rtl {
        padding: 8px 50px 8px 8px
    }

    #toast-container .toast-close-button {
        top: -.2em;
        right: -.2em
    }

    #toast-container .rtl .toast-close-button {
        right: .2em;
        left: -.2em
    }

    .bottom-btn .btn-item .top-btn {
        left: 44%
    }
}

@media all and (min-width: 481px) and (max-width:768px) {
    #toast-container>div {
        padding:15px 15px 15px 50px;
        width: 25em
    }

    #toast-container>div.rtl {
        padding: 15px 50px 15px 15px
    }
}

@media (max-width: 768px) {
    #toast-container>div {
        font-size:var(--fontsize15);
        opacity: 1
    }
}

@media (max-width: 415px) {
    #toast-container>div {
        font-size:var(--fontsize13)
    }
}

#liproducts .submenu.nav3 {
    position: fixed;
    top: 140px;
    left: 50%!important;
    display: flex;
    padding: 20px 20px;
    width: 100%;
    max-width: 1246px;
    min-width: inherit!important;
    background: rgba(255,255,255,.98);
    transform: translateX(-50%) scaleY(0);
    transform-origin: center top;
    flex-wrap: wrap
}

#liproducts .submenu.nav3 a:hover {
    color: var(--color)
}

#liproducts .submenu.nav3 em,#liproducts .submenu.nav3 i {
    display: none
}

#liproducts .submenu.nav3 ul {
    position: static;
    display: block;
    box-shadow: none!important
}

#liproducts .submenu.nav3>li {
    position: relative;
    margin-top: 20px;
    margin-right: 2%;
    padding: 0;
    width: 32%;
    height: auto;
    min-height: 100px;
    border: none
}

#liproducts .submenu.nav3>li:nth-child(3n) {
    margin-right: 0
}

#liproducts .submenu.nav3>li>a {
    margin-bottom: 8px;
    padding: 0;
    padding-left: 100px;
    height: auto;
    font-weight: var(--fontbold6);
    line-height: 1
}

#liproducts .submenu.nav3>li .cate-con .cate-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px
}

#liproducts .submenu.nav3>li .cate-con .cate-img a {
    display: flex;
    overflow: hidden;
    padding: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--borderradius);
    align-items: center;
    justify-content: center
}

#liproducts .submenu.nav3>li .cate-con .cate-img img {
    width: 100%;
    height: 100%;
    transition: all .1s linear;
    object-fit: cover
}

#liproducts .submenu.nav3>li .cate-con .cate-img img:hover {
    transform: scale(1.05)
}

#liproducts .submenu.nav3>li .cate-con ul {
    margin-top: 2px;
    padding-left: 100px;
    background: 0 0
}

#liproducts .submenu.nav3>li .cate-con ul a {
    padding: 0
}

#liproducts .submenu.nav3>li .cate-con ul li {
    padding: 0;
    height: auto;
    border: none
}

@media (min-width: 1025px) {
    .head-info .nav-ul>li#liproducts:hover .submenu.nav3 {
        transform:translateX(-50%) scaleY(1)
    }
}

header.is-active #liproducts .submenu.nav3 {
    top: 80px
}

@media (max-width: 1024px) {
    #liproducts .cate-con .cate-img {
        display:none
    }
}

@media (max-width: 1024px) {
    .head-info .head-nav .nav-ul>li>.submenu ul {
        position:static;
        display: block;
        padding: 0 20px;
        background: 0 0
    }
}

@media (max-width: 1024px) {
    #liproducts .submenu.nav3 {
        position:static;
        display: none;
        padding: 0 10px
    }
}

@media (max-width: 1024px) {
    .head-info .nav-ul>li#liproducts .submenu.nav3 {
        transform:scaleY(1)
    }

    #liproducts .submenu.nav3>li .cate-con ul {
        padding-left: 15px
    }

    #liproducts .submenu.nav3>li>a {
        padding-left: 0;
        padding: 6px 0;
        margin-bottom: 0
    }

    header .head-info .head-nav .nav-ul>li .submenu li {
        padding: 0
    }
}

@media (max-width: 1024px) {
    .bottom-btn.active {
        visibility:hidden;
        opacity: 0;
        transform: translateY(60px)
    }

    .bottom-btn.bottom-btn-hide {
        visibility: inherit;
        opacity: 1;
        transform: translateY(0);
        display: flex
    }
}

@media (max-width: 1024px) {
    .top-btn {
        visibility:inherit
    }
}

@media (max-width: 1024px) {
    .bottom-btn {
        visibility:inherit;
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width: 1024px) {
    #liproducts .submenu.nav3>li {
        min-height:inherit;
        margin-top: 0;
        margin-bottom: 10px
    }
}

@media (min-width: 1025px) {
    #liproducts .nav0.tennum {
        display:flex;
        flex-wrap: wrap;
        min-width: 600px
    }

    #liproducts .nav0.tennum>li {
        width: 50%
    }
}

@media (max-width: 768px) {
    footer .foot-pro .foot-list {
        display:flex;
        flex-wrap: wrap;
        justify-content: space-between
    }

    footer .foot-pro .foot-list li {
        width: 50%
    }
}

.kche-t62>div>.kche-flex-item>div {
    height: 600px
}

.prolist .proitem .info .list li {
    width: 100%
}

.about-swiper {
    background: #f7f7f7;
    padding: 25px 60px 25px 15px;
    margin: 25px 0
}

.about-swiper .swiper-slide {
    display: flex;
    align-items: center;
    width: auto
}

.about-swiper .swiper-slide p {
    line-height: 1.25
}

.about-swiper .btn-group {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    height: 100%;
    top: 0;
    z-index: 2;
    background: linear-gradient(90deg,transparent,#f7f7f7 26%,#f7f7f7);
    padding: 0 20px
}

.about-swiper .btn-group>div {
    cursor: pointer
}

.about-swiper .btn-group em {
    font-weight: var(--fontbold7);
    display: inline-block;
    vertical-align: middle
}

.about-swiper .btn-group .prev {
    margin-right: 20px
}

.about-swiper .btn-group .prev em {
    transform: rotate(90deg)
}

.about-swiper .btn-group .next em {
    transform: rotate(-90deg);
    color: var(--color)
}

.home-about .left {
    padding-right: 80px
}

.home-about {
    padding: 4% 0 0
}

.flex-title {
    margin: 20px 0
}

@media(max-width: 500px) {
    .contact-us .kche-t135 .kche-t135-list .kche-t135-item {
        width:100%!important
    }

    .home-team .teamlist .teamitem .img em,.home-team .teamlist .teamitem .img::after {
        display: none
    }
}

@media(min-width: 769px) {
    .pro-d-main .common-product .l-wrap .pro-detail-box {
        max-width:1600px;
        margin: auto;
        width: 100%
    }
}

.home-company-bg {
    width: 78%
}

.wmkc-erw {
    background: #999
}

.wmkc-erw .wmkc-wechat-img {
    width: auto;
    background: rgb(255 255 255 / 40%)
}

.wmkc-erw .wmkc-wechat-img p {
    white-space: nowrap;
    text-align: left
}

header .head-info .head-nav .nav-ul>li .submenu {
    max-height: 500px;
    overflow-y: auto
}

#searchtype {
    height: 26px;
    margin-left: 6px;
    border: 1px solid #d6d6d6;
    border-radius: 2px;
}

.rfixed .top-btn.active {
    opacity: 1;
    visibility: inherit;
}
.about-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-slides {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.about-slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.about-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.about-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 60, 129, 0.85);
  cursor: pointer;
  transform: translateY(-50%);
}

.about-prev {
  left: 18px;
}

.about-next {
  right: 18px;
}

.about-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.about-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.about-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.about-arrow:hover {
  background: #003c81;
}

.about-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.about-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.about-dot.active {
  width: 25px;
  border-radius: 6px;
  background: #0d5d95;
}

@media (max-width: 768px) {
  .about-arrow {
    width: 36px;
    height: 36px;
  }

  .about-prev {
    left: 10px;
  }

  .about-next {
    right: 10px;
  }

  .about-dots {
    bottom: 10px;
  }
}
.head-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  color: #ffffff;
  text-decoration: none;
}
.nobanner .head-logo{
      color: #000000;
}
.is-active .head-info .head-logo{
    color: #000000;
}
.nobanner .is-active .head-info .head-logo{
    color: #000000;
}
.head-logo img {
  display: block;
  flex-shrink: 0;
}

.head-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  white-space: nowrap;
}

.head-logo-text strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.head-logo-text small {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .head-logo {
    gap: 8px;
  }

  .head-logo-text strong {
    font-size: 15px;
  }

  .head-logo-text small {
    margin-top: 3px;
    font-size: 7px;
  }
}

@media (max-width: 480px) {
  .head-logo-text {
    display: none;
  }
}
.about-page {
  width: min(1480px, calc(100% - 60px));
  margin: 0 auto;
  padding: 54px 0 70px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .93fr);
  align-items: stretch;
  gap: clamp(55px, 7vw, 120px);
}

.about-grid--top {
  min-height: 470px;
}

.about-heading {
  margin-bottom: 30px;
}

.about-heading p,
.business-title p {
  margin: 0 0 4px;
  color: #0d5d95;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.about-heading h1 {
  margin: 0;
  color: #111111;
  font-size: clamp(35px, 3vw, 53px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

.about-copy > p,
.business-columns p,
.vision-section p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.9;
  text-align: justify;
}

.factory-carousel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #e8ecef;
}

.factory-track {
  height: 100%;
  display: flex;
  transition: transform .55s ease;
}

.factory-slide {
  min-width: 100%;
  height: 100%;
  min-height: 460px;
  margin: 0;
}

.factory-slide img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
}

.factory-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 93, 149, .88);
  cursor: pointer;
  transform: translateY(-50%);
}

.factory-prev {
  left: 18px;
}

.factory-next {
  right: 18px;
}

.factory-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.factory-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.factory-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.factory-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.factory-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
}

.factory-dot.is-active {
  width: 25px;
  border-radius: 5px;
  background: #0d5d95;
}

.about-grid--middle {
  margin-top: 66px;
  grid-template-columns: minmax(420px, .93fr) minmax(0, 1fr);
}

.image-pair {
  min-height: 455px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-pair figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.image-pair img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}

.image-pair figure:hover img {
  transform: scale(1.035);
}

.about-copy h2,
.business-title h2,
.vision-section h2 {
  margin: 0 0 23px;
  color: #161616;
  font-size: clamp(27px, 2.2vw, 38px);
  line-height: 1.3;
  letter-spacing: 0;
}

.about-copy h2::after,
.business-title h2::after {
  width: 58px;
  height: 3px;
  margin-top: 12px;
  display: block;
  content: "";
  background: #0d5d95;
}

.business-section {
  margin-top: 76px;
  padding: 58px clamp(25px, 5vw, 80px);
  background: #f1f5f8;
}

.business-title {
  margin-bottom: 38px;
}

.business-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 105px);
}

.business-columns h3 {
  margin: 0 0 15px;
  color: #0d5d95;
  font-size: 22px;
  letter-spacing: 0;
}

.vision-section {
  margin-top: 66px;
  display: grid;
  grid-template-columns: 5px 1fr;
  gap: 28px;
}

.vision-line {
  display: block;
  background: #0d5d95;
}

.vision-section h2 {
  color: #0d5d95;
}

.factory-gallery-section {
  margin-top: 78px;
}

.gallery-heading {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.gallery-heading > div > p {
  margin: 0 0 4px;
  color: #0d5d95;
  font-size: 20px;
  font-weight: 700;
}

.gallery-heading h2 {
  margin: 0;
  color: #161616;
  font-size: clamp(30px, 2.4vw, 42px);
  letter-spacing: 0;
}

.gallery-heading > p {
  max-width: 560px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.factory-gallery {
  /* grid-template-columns: 1.35fr 1fr; */
  gap: 1%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  width: 32%;
  background: #dce4e9;
  cursor: pointer;
  margin-bottom: 1%;
}

.gallery-item--main {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 31, 52, .72));
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: #ffffff;
  text-align: left;
  font-size: 19px;
  font-weight: 700;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-item:focus-visible {
  outline: 3px solid #0d5d95;
  outline-offset: 3px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 65px 90px 48px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1100px) 48px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(3, 18, 29, .93);
}

.gallery-lightbox figure {
  width: 100%;
  max-height: calc(100vh - 110px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 155px);
  display: block;
  object-fit: contain;
}

.gallery-lightbox figcaption {
  margin-top: 14px;
  color: #ffffff;
  font-size: 17px;
}

.lightbox-arrow,
.lightbox-close {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: rgba(13, 93, 149, .72);
  cursor: pointer;
}

.lightbox-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.lightbox-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.lightbox-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 2px;
  content: "";
  background: #ffffff;
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 980px) {
  .about-page {
    width: min(100% - 40px, 760px);
    padding-top: 40px;
  }

  .about-grid,
  .about-grid--middle {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .factory-carousel,
  .factory-slide,
  .factory-slide img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .factory-slide img {
    object-fit: cover;
  }

  .about-grid--middle {
    margin-top: 45px;
  }

  .image-pair {
    min-height: 380px;
  }

  .gallery-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .factory-gallery {
    height: 600px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.35fr .8fr;
  }

  .gallery-item--main {
    grid-row: auto;
    grid-column: 1 / 3;
  }
}

@media (max-width: 640px) {
  .about-page {
    width: calc(100% - 30px);
    padding: 30px 0 45px;
  }

  .about-heading {
    margin-bottom: 22px;
  }

  .about-heading p,
  .business-title p {
    font-size: 16px;
  }

  .about-copy > p,
  .business-columns p,
  .vision-section p {
    font-size: 15px;
    line-height: 1.8;
  }

  .factory-arrow {
    width: 36px;
    height: 36px;
  }

  .factory-prev {
    left: 10px;
  }

  .factory-next {
    right: 10px;
  }

  .image-pair {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .image-pair figure {
    aspect-ratio: 4 / 3;
  }

  .business-section {
    margin-top: 48px;
    padding: 38px 20px;
  }

  .business-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vision-section {
    margin-top: 44px;
    grid-template-columns: 4px 1fr;
    gap: 17px;
  }

  .factory-gallery-section {
    margin-top: 48px;
  }

  .gallery-heading > div > p {
    font-size: 16px;
  }

  .factory-gallery {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
 width: 100%;
  }

  .gallery-lightbox {
    padding: 65px 16px 30px;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .lightbox-arrow {
    width: 38px;
    height: 38px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
.newscontent-details {
    margin-bottom: 40px;
    width: 70%;
    margin: 0 auto;
}
.tagContent{
    width:70%;
    margin: 0 auto;
}