.main-header {
    position: relative;
    display: block;
    background: var(--thm-base);
}

.main-header__top {
    position: relative;
    display: block;
    padding: 0px 80px;
    background-color: var(--thm-black);
}

.main-header__top-inner {
    position: relative;
    display: block;
    padding: 1.5px 0;
}

.main-header__top-left {
    position: relative;
    display: block;
    float: left;
}

.main-header__top-right {
    position: relative;
    display: flex;
    float: right;
    align-items: center;
}

.main-header__top-right-text {
    margin-right: 30px;
}

.main-header__top-right-text p {
    font-size: 12px;
    margin: 0;
    color: #ada8ba;
}

.main-header__top-right-text p span {
    color: var(--thm-extra);
}

.main-header__top-right-social {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 10px 0;
}

.main-header__top-right-social a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header__top-right-social a:hover {
    color: var(--thm-extra);
}

.main-header__top-right-social a+a {
    margin-left: 25px;
}

.main-menu {
    position: relative;
    z-index: 91;
}

.main-menu-wrapper {
    position: relative;
    display: block;
}

.main-menu-wrapper-inner {
    position: relative;
    display: block;
}

.main-menu-wrapper__left {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper__logo {
    position: relative;
    float: left;
    padding-top: 28px;
    padding-bottom: 32px;
    margin-right: 165px;
    height: 31px;
    width: 135px;
}
.main-menu-wrapper__logo img{
    height: 45px;
    width: 135px;
}

.main-menu-wrapper__main-menu {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper__right {
    position: relative;
    display: flex;
    float: right;
    padding: 29.5px 0;
    align-items: center;
}

.main-menu-wrapper__call {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 80px;
}

.main-menu-wrapper__call-icon {
    font-size: 30px;
    color: var(--thm-bdr-color-w);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper__call-icon:hover {
    color: var(--thm-extra);
}

.main-menu-wrapper__call-number {
    margin-left: 20px;
}

.main-menu-wrapper__call-number h5 {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
}

.main-menu-wrapper__call-number h5 a {
    color: #171717;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper__call-number a:hover {
    color: var(--thm-extra);
}

.main-menu-wrapper__call-number p {
    font-size: 14px;
    margin: 0;
    line-height: 14px;
    color: #67656f;
}
/*----------------------------------------------------------------
#  多语言选择
-----------------------------------------------------------------*/ 

.main-menu-wrapper__language-box{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    -webkit-tap-highlight-color: #fff;
    transition: all 300ms ease;
}
.main-menu-wrapper__language-box .language-box{
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 40px;
    border: 2px solid #f7f7f8;
    border-radius: 4px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    transition: all 300ms ease;
    line-height: 15px;
    padding: 0 8px;
    -webkit-user-select: none;
    font-size: 14px;
}
.language-icon {
    color: var(--thm-color);
    font-size: 16px;
    vertical-align: middle;
}
.language-box-expand{
    border-top:1px solid #f7f7f8;
    border-right:1px solid #f7f7f8;
    border-left:1px solid #f7f7f8;
}

.language-box__current{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    padding: 10px 1px 10px 6px;
    -webkit-user-select: none;
}
.language-box__current i{
    margin-left: 10px;
}

.language-box ul{
    position: absolute;
    top: 90%;
    left: -2px;
    width: 135px;
    line-height: 30px;
    background-color: #fff;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0; 
    visibility: hidden;
    transition: color #fff ease;
    z-index: 99;
    overflow: hidden;
    flex-wrap: wrap;
    text-align: center;
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-right:2px solid #f7f7f8;
    border-left:2px solid #f7f7f8;
    border-bottom: 2px solid #f7f7f8;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 14px;
}
.language-box ul li{
    position: relative;
    display: flex;
    width: 100%;
    line-height: 40px;
    text-align: center;
    justify-content: center;
}
.language-box ul li:hover{
    color: var(--thm-bdr-color-w);
    background-color: #f7f7f8;
}
.language-box ul li:hover>a{
    color: var(--thm-bdr-color-w);
}
.language-box ul li.active{
    color: var(--thm-bdr-color-w);
    background-color: #f7f7f8;
}
.language-box ul li.active>a{
    color: var(--thm-bdr-color-w);
}

.main-menu-wrapper__search-box-cart-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8.5px 0;
}

.main-menu-wrapper__search-box-cart-box:before {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -20px;
    content: "";
    background-color: var(--thm-bdr-color);
    width: 1px;
}

.main-menu-wrapper__search,
.main-menu-wrapper__cart {
    font-size: 20px;
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper__cart {
    margin-left: 25px;
}

.main-menu-wrapper__search:hover {
    color: var(--thm-bdr-color-w);
}

.main-menu-wrapper__cart:hover {
    color: var(--thm-extra);
}

.stricky-header.main-menu {
    background-color: var(--thm-base);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    padding-top: 33px;
    padding-bottom: 33px;
    position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 55px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    position: relative;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
    content: '';
    width: 10px;
    height: 2px;
    border-radius: 0px;
    background-color: var(--thm-bdr-color-w);
    position: absolute;
    top: 50%;
    bottom: 0px;
    left: -20px;
    /* transition: transform 500ms ease; */
    transform: scale(0) translateY(-50%);
    z-index: -1;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-bdr-color-w);
    text-shadow: 0 0 1px currentColor;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
    transform: scale(1) translateY(-50%);
}

.main-menu .main-menu__list>li.current>a::before {
    background-color: var(--thm-bdr-color-w);
}

.main-menu .main-menu__list>li:hover>a::before {
    background-color: var(--thm-bdr-color-w);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    background-color: #fff;
    opacity: 0; 
    visibility: hidden;
    z-index: 99;
    overflow: hidden;
    flex-wrap: wrap;
    box-shadow: 0px 2px 4px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list ul {
        display: flex;
    }
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list ul{
        position: absolute;
        top: 98%;
        left: -15px;
        background-color: #fff; 
    }
}
.main-menu .main-menu__list li ul li:last-child>a,
.stricky-header .main-menu__list li ul li:last-child>a {
    border-bottom-left-radius: var(--thm-bdr-radius);
    border-bottom-right-radius: var(--thm-bdr-radius);
}

.main-menu .main-menu__list li:hover>ul,
.stricky-header .main-menu__list li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
    position: relative;
    display: flex;
    width: max-content;
}

.main-menu .main-menu__list li ul li+li,
.stricky-header .main-menu__list li ul li+li {
    border-top: 1px solid RGBA(var(--thm-black), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    font-size: 14px;
    color: var(--thm-gray);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    transition: 500ms;
    min-width: 140px;
    padding: 0;
    margin: 0;
    border: none;
    padding: 0 10px;
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    color: var(--thm-bdr-color-w);
    background-color: #f7f7f8;
}
.main-menu .main-menu__list li ul li>a.active,
.stricky-header .main-menu__list li ul li>a.active {
    color: var(--thm-bdr-color-w);
    background-color: #f7f7f8;
}

.main-menu .main-menu__list li ul li>ul,
.stricky-header .main-menu__list li ul li>ul {
    top: 200px;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul,
.stricky-header .main-menu__list li ul li>ul ul {
    display: none;
}

.stricky-header {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    transition: transform 500ms ease, visibility 500ms ease, visibility 0 ease-out;
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important
    }
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--thm-bdr-color-w);
    cursor: pointer;
    transition: 500ms;
    margin-right: 20px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-black);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

.main-menu .mobile-nav__language-box{
    position: relative;
    display: block;
    align-items: center;
    font-size: 12px;
    -webkit-tap-highlight-color: #fff;
    transition: all 300ms ease;
    float: right;
    margin-top: 36px;
}
.mobile-nav__language-box .mobile-language-box{
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 15px;
    border: 2px solid #f7f7f8;
    border-radius: 3px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    transition: all 300ms ease;
    line-height: 15px;
    padding: 0 5px;
    font-size: 14px;
}
.mobile-language-box-expand{
    border-top:1px solid #f7f7f8;
    border-right:1px solid #f7f7f8;
    border-left:1px solid #f7f7f8;
}

.mobile-language-box__current{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    padding: 5px 2px 5px 7px;
    -webkit-user-select: none;
}
.mobile-language-box__current i{
    margin-left: 10px;
}

.mobile-language-box ul{
    position: absolute;
    top: 98%;
    left: -2px;
    width: 130px;
    line-height: 28px;
    background-color: #fff;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: color #fff ease;
    z-index: 99;
    overflow: hidden;
    flex-wrap: wrap;
    text-align: center;
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-right:2px solid #f7f7f8;
    border-left:2px solid #f7f7f8;
    border-bottom: 2px solid #f7f7f8;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 4px;
    -webkit-user-select: none;
}
.mobile-language-box ul li{
    position: relative;
    display: flex;
    width: 100%;
    line-height: 30px;
    text-align: center;
    justify-content: center;
}
.mobile-language-box ul li.active{
    color: var(--thm-bdr-color-w);
    background-color: #f5f5f5;
}
.mobile-language-box ul li.active>a{
    color: var(--thm-bdr-color-w);
}

@media (min-width: 767px) {
    .main-menu .mobile-nav__language-box {
        display: none;
    }
}

.main-header-two {
    position: relative;
    display: block;
}


/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes squareMover {

    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        -webkit-transform: translate(20px, 40px) rotate(180deg);
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        -webkit-transform: translate(40px, 60px) rotate(0deg);
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes treeMove {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}



@-moz-keyframes service_hexagon_2 {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -moz-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@-o-keyframes service_hexagon_2 {
    0% {
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes service_hexagon_2 {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear, visibility 500ms ease-in;
    z-index: 999;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--thm-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    scrollbar-color: var(--thm-bdr-color-w) var(--thm-black);
    &::-webkit-scrollbar {
        width: 5px;
    }
    &::-webkit-scrollbar-track {
        background: var(--thm-bdr-color-w);
    }
    &::-webkit-scrollbar-thumb {
        background-color: var(--thm-bdr-color-w);
        border: 3px solid var(--thm-bdr-color-w);
    }
    ::-webkit-scrollbar-thumb {  
        background: var(--thm-bdr-color-w);
    }  
    &::-webkit-scrollbar-thumb:hover {
        background-color: var(--thm-black);
    }

}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav__content .logo-box {
    margin-bottom: 30px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--thm-text-dark);
    cursor: pointer;
}

.mobile-nav__content .mobile-nav__search {
    margin-bottom: 20px;
}

.mobile-nav__content .mobile-nav__search form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
}

.mobile-nav__content .mobile-nav__search form input[type="search"],
.mobile-nav__content .mobile-nav__search form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 13px;
    border: none;
    outline: none;
    height: 40px;
    padding-left: 10px;
    color: #a29b9b;
}
.mobile-nav__content .mobile-nav__search form input[type="search"],
.mobile-nav__content .mobile-nav__search form input[type="text"]:focus{
    color: #958f8f;
}

.mobile-nav__content .mobile-nav__search .thm-btn {
    font-size: 18px;
    padding: 0;
    width: 50px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-bdr-color-w);
}
.mobile-nav__content .mobile-nav__search .thm-btn::after{
    background-color: var(--thm-bdr-color-w);
}
.mobile-nav__content .mobile-nav__search .thm-btn i {
    margin: 0;
}
.mobile-nav__content .mobile-nav__search-keyword{
    margin-top: 1px;
    font-size: 2px;
    color: var(--bs-white);
    display: flex;
    position: relative;
}
.mobile-nav__content .mobile-nav__search-keyword span{
    width: auto;
}
.mobile-nav__content .mobile-nav__search-keyword ul {
    font-size: 15px;
    margin-left: 10px;
}
.mobile-nav__content .mobile-nav__search-keyword ul li{
    color: var(--bs-white);
    margin-left: 5px;
    margin-right: 5px;
    float: left;
}
.mobile-nav__content .mobile-nav__search-keyword li a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #ada8ba;
    transition: all 500ms ease;
}
.mobile-nav__content .mobile-nav__search-keyword ul li a:hover{
    color: var(--bs-white);
}

.mobile-nav__content .hot_keyword_search li a::after{
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left center;
    background-color: currentColor;
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-bdr-color-w);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-bdr-color-w);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
    border-radius: 2px;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

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

.mobile-nav__top .main-menu__login a {
    color: var(--thm-text-dark);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
    border: 2px solid var(--thm-bdr-color-w);
    padding: 1px;
    height: 150px;
    width: 150px;
    overflow: hidden;
}
.mobile-nav__social img{
    width: 100%;
    height: 100%;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--thm-bdr-color-w);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: #ffffff;
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-bdr-color-w);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--thm-bdr-color-w);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
    z-index: 9999;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
    z-index: 9999;
}

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius:4px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 14px;
    border: none;
    outline: none;
    height: 50px;
    padding-left: 20px;
    color: #333;
}
.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"]:focus{
    color: #908989;
}


.search-popup__content .thm-btn {
    font-size: 24px;
    padding: 0;
    width: 60px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-bdr-color-w);
}

.search-popup__content .thm-btn i {
    margin: 0;
}

.hot_keyword_search{
    margin-top: 15px;
    font-size: 15px;
    color: var(--bs-white);
    display: flex;
    position: relative;
}
.hot_keyword_search span{
    width: auto;
}
.hot_keyword_search ul {
    font-size: 15px;
    margin-left: 10px;
}
.hot_keyword_search ul li{
    color: var(--bs-white);
    margin-left: 5px;
    margin-right: 5px;
    float: left;
}
.hot_keyword_search li a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all 500ms ease;
}
.hot_keyword_search ul li a:hover{
    color: var(--thm-bdr-color-w);
}
.hot_keyword_search li a::after{
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left center;
    background-color: currentColor;
    transition: transform 500ms ease;
}

.main-slider {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-slider .swiper-slide {
    position: relative;
    background-color: #f5f5f5;
    height: auto;
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 7000ms ease;
    z-index: 1;
    /* mix-blend-mode: luminosity; */
    /* opacity: .3; */
}


.main-slider-shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    background-size: cover;
    opacity: 0;
    transform: translateX(200px);
    z-index: 2;
}

.main-slider .swiper-slide-active .main-slider-shape-1 {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 200ms;
}

.main-slider .container {
    position: relative;
    padding-top: 200px;
    padding-bottom: 235px;
    z-index: 30;
}

.main-slider__content {
    position: relative;
    display: block;
    z-index: 30;
}

.main-slider h2 {
    margin: 0;
    margin-bottom: 32px;
    color: #fff;
    font-weight: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -0.02em;
    z-index: 30;
}

.main-slider p {
    font-size: 20px;
    color: var(--thm-base);
    margin: 0;
    line-height: 30px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
    z-index: 30;
}

.main-slider .thm-btn {
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
}

.main-slider .swiper-slide-active .image-layer {
    transform: scale(1.15);
}

.main-slider .swiper-slide-active .thm-btn,
.main-slider .swiper-slide-active p,
.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active p {
    visibility: visible;
    opacity: 0.5;
    transform: translateY(0) translateX(0);
    background-color: rgb(0, 0, 0, .3);
}

.main-slider__nav {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--thm-base);
    background: rgb(0, 0, 0, .5);
    border: 2px solid rgba(var(--thm-base-rgb), 0.5);
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 0.3;
    transition: all 500ms ease;
}


.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    opacity: 0.8;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none;
}

.main-slider__nav .swiper-button-prev {
    margin-bottom: 10px;
}

.main-slider__nav .swiper-button-prev .icon-left-arrow {
    position: relative;
    transform: rotate(180deg);
}

#main-slider-pagination {
    z-index: 10;
    bottom: 59px;
    left: 50%;
    width: 100%;
    max-width: 1200px;
    -webkit-transform: translate(-50%, calc(-50% + 95px));
    transform: translate(-50%, calc(0% + 0px));
    text-align: left;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

#main-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.4;
    background-color: #fff;
    transition: all 500ms ease;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 10px;
}

#main-slider-pagination .swiper-pagination-bullet {
    margin: 0;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 13px;
    height: 13px;
    opacity: 1;
}


.main-slider__nav-two {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.main-slider__nav-two .swiper-button-next {
    position: relative;
    width: 63px;
    height: 63px;
    line-height: 63px;
    border-radius: 50%;
    text-align: center;
    color: var(--thm-base);
    cursor: pointer;
    z-index: 9;
    margin-right: 100px;
    font-size: 20px;
    border: 2px solid rgba(var(--thm-base-rgb), 1);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    transition: 0.5s;
}

.main-slider__nav-two .swiper-button-prev {
    position: relative;
    width: 63px;
    height: 63px;
    line-height: 63px;
    border-radius: 50%;
    text-align: center;
    color: var(--thm-base);
    cursor: pointer;
    z-index: 9;
    margin-left: 100px;
    font-size: 20px;
    border: 2px solid rgba(var(--thm-base-rgb), 1);
    background-color: transparent;
    transform: rotate(-180deg);
    transition: 0.5s;
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
}


.main-slider__nav-two .swiper-button-next:hover,
.main-slider__nav-two .swiper-button-prev:hover {
    opacity: 1;
}

.main-slider__nav-two .swiper-button-next::after,
.main-slider__nav-two .swiper-button-prev::after {
    display: none;
}

.main-slider__nav-two .swiper-button-prev {
    margin-bottom: 10px;
}

.main-slider-two #main-slider-pagination {
    text-align: center;
    justify-content: center;
}

/*--------------------------------------------------------------
# Product Recommend
--------------------------------------------------------------*/
.product-recommend {
    position: relative;
    display: block;
    padding: 40px 0 30px;
}

.product-recommend .row {
    --bs-gutter-x: 15px;
}

.product-recommend__single {
    position: relative;
    display: block;
    background-color: #f5f5f5;
    border-radius: var(--thm-bdr-radius);
    padding: 10px 10px 10px;
    text-align: center;
    z-index: 20;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.product-recommend__single:hover .product-recommend__box {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
}
.product-recommend__single:hover .product-recommend__img img {
    transform: scale(1.05);
}
.product-recommend__single a{
    color: var(--thm-primary);
    opacity: 0.8;
}
.product-recommend__single a:hover{
    color: var(--thm-primary);
    opacity: 1;
}
.product-recommend__box{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-bdr-color-w);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    z-index: 1;
    border-radius: var(--thm-bdr-radius);
    padding: 10px 10px 10px;
    text-align: center;
    z-index: 2;
    color: var(--bs-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.product-recommend__img{
    height: 220px;
    margin: 0 auto;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.product-recommend__img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}

.product-recommend__text {
    margin: 0;
}

.product-recommend__single:hover .product-recommend__text {
    color: var(--bs-white);
}
.product-recommend__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin: 0 auto;
    max-width: 1200px;
}
.product-recommend__item {
    width: 100%;
}
.product-recommend__single:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.product-recommend__category {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(3px);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #66ac86;
    z-index: 1;
    line-height: normal;
}
.product-recommend__img {
    width: 100%;
    height: 140px;
    overflow: hidden;
}
.product-recommend__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-recommend__single:hover .product-recommend__img img {
    transform: scale(1.05);
}
.product-recommend__info {
    padding: 10px;
    backdrop-filter: blur(2px);
    position: relative;
}
.product-recommend__title {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-recommend__link {
    align-items: center;
    color: var(--thm-primary);
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s ease;
    opacity: 0.8;
}
.product-recommend__link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.product-recommend__link:hover i {
    transform: translateX(2px);
}
@media (max-width: 1200px) {
    .product-recommend__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 992px) {
    .product-recommend__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .product-recommend__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-recommend__img {
        height: 120px;
    }
}
@media (max-width: 576px) {
    .product-recommend__grid {
        grid-template-columns: 1fr;
    }
    .product-recommend__img {
        height: 180px;
    }
}
/*--------------------------------------------------------------
# Project One
----------------------------------------------------------------*/
.project-one{
    padding: 50px 0px 50px;
    background: #f1f1f1;
    margin-bottom: 50px;
}

.project-one .project-one-content{
    padding: 30px 0 0;
	margin: 0 40px 0 40px;
    display: grid;
    min-height: 210px;
}
.project-one .project-one-content .project-one-swiper{
    overflow: hidden;
}
.project-one .project-one-content .project-one-content__single{
    width: 100%;
    height: 100%;
}
.project-one .project-one-content .project-one-content__single .image,
.project-one .project-one-content .project-one-content__single img{
    height: 150px;
    width: 100%;
    max-width: 100%;
    border: 3px solid #fff;
}
.project-one .project-one-content .project-one-slider__nav {
    width: 100%;
    z-index: 100;
    display: flex;
    position: sticky;
    margin-top: -150px;
    height: 0px;
}

.project-one .project-one-content .project-one-content__single .title{
    font-size: 15px;
    margin-bottom: 5px;
    color:var(--thm-black);
    line-height: 20px;
    height: 40px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;    text-align: left;
}
.project-one .project-one-content .project-one-content__single .desc{
    font-size: 13px;
    line-height: 1.8;
    color:#999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.project-one .project-one-content .project-one-content__single:hover .title{
    color: var(--thm-bdr-color-w);
}
.project-one .project-one-content .project-one-content__single:hover .desc{
    color: #7e7d7d;
}
.project-one .project-one-content .project-one-slider__nav .swiper-button-prev{
    left:unset;
    right: -45px;
}
.project-one .project-one-content .project-one-slider__nav .swiper-button-next{
    right: unset;
    left: -45px;
}
.project-one .project-one-content .project-one-slider__nav .swiper-button-next,
.project-one .project-one-content .project-one-slider__nav .swiper-button-prev {
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    text-align: center;
    cursor: pointer;
    transition: all 500ms ease;
    border-radius: 50%;
    font-size: 25px;
    outline: none;
}
.project-one .project-one-content .project-one-slider__nav .swiper-button-next i,
.project-one .project-one-content .project-one-slider__nav .swiper-button-prev i{
    width: 30px;
    height: 30px;
    margin: 0 auto;
    color: var(--thm-base);
    font-size: 35px;
}

.project-one .project-one-content .project-one-slider__nav .swiper-button-next:hover,
.project-one .project-one-content .project-one-slider__nav .swiper-button-prev:hover {
    opacity: 1;
}

.project-one .project-one-content .project-one-slider__nav .swiper-button-next::after,
.project-one .project-one-content .project-one-slider__nav .swiper-button-prev::after {
    display: none;
    border: 0px;
}
/*--------------------------------------------------------------
# Project List
--------------------------------------------------------------*/
.project-list{
    position: relative;
    display: block;
    padding-top: 30px;
}
.project-list__inner{
    position: relative;
    display: block;
    padding: 0px 5%;
}
.project-list__header{
    position: relative;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-list__header ul{
    position: relative;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-color: var(--bs-white) transparent;
    scrollbar-width: thin;
    &::-webkit-scrollbar {
        height: 2px;
        background-color: transparent;
    };
    &::-webkit-scrollbar-thumb {
        background-color: var(--bs-white);
        border-radius: 5px;
    };
}
.project-list__header ul li{
    position: relative;
    display: inline-block;
    margin-right: 20px;
    min-width: 100px;
    text-align: center;
}
.project-list__header ul li a,.project-list__header ul li .active{
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--thm-black);
    transition: all 500ms ease;
    border: 2px solid var(--bs-white);
}

.project-list__header ul li a::after {
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scale(0, 1);
    transform-origin: left center;
    background-color: var(--thm-bdr-color-w);
    transition: transform 500ms ease;
}

.project-list__header ul li:hover>a::after {
    transform: scale(1, 1);
    transform-origin: right center;
}

.project-list__header ul li a:hover{
    color: var(--thm-bdr-color-w);
}
.project-list__header ul li a.active{
    color: var(--thm-bdr-color-w);
}
.project-list__header ul li a.active::after{
    transform: scale(1, 1);
    transform-origin: right center;
    background-color: var(--thm-bdr-color-w);
}
.project-list__direction-body{
    padding-top: 30px;
    border-top: 1px solid #dcdbdb;
    border-bottom: 1px solid #dcdbdb;
}
.direction-aware {
    list-style: none;
    position: relative;
    overflow: hidden;
    padding: 0;
}
.direction-aware li.da-item {
    float: left;
    position: relative;
    height: auto;
    border-bottom: 5px solid transparent;
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 10px;
}
.direction-aware li.da-item > a {
    overflow: hidden;
    max-height: 300px;
}
.direction-aware li.da-item > .list__single-img{
    display: block;
    position: relative;
    max-height: 300px;
}
.direction-aware li.da-item > a, .direction-aware li.da-item > img {
    display: block;
    position: relative;
    width: 100%;
}

.direction-aware li a img {
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}


.direction-aware li.da-item > a > div {
    position: absolute;
    background: #333;
    background: rgba(120, 170, 129, 0.6);
    width: 100%;
    height: 100%;
}
.portfolio-item .item-caption {
    margin: 0 auto;
    padding: 20px 2px 0 2px;
    overflow: hidden;
    background-color: #fff;
    border: none;
    display: block !important;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.portfolio-filter .btn.active {
	position: relative;
}

.portfolio-filter .btn.active:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(95, 183, 150, 0);
	border-top-color: #5fb796;
	border-width: 10px;
	margin-left: -10px;
}
.portfolio-item .portfolio-link {
	display:block;
	position:relative;
	margin:0 auto;
	max-width:400px;
	overflow: hidden;
}

.portfolio-item .portfolio-link .portfolio-hover {
	position:absolute;
	width:100%;
	height:100%;
	opacity:0;
	background:rgba(95, 183, 150, 1);
	-webkit-transition:all ease .5s;
	-moz-transition:all ease .5s;
	transition:all ease .5s
}

.direction-aware li a img {
	-webkit-transition:all ease .5s;
	-moz-transition:all ease .5s;
	transition:all ease .5s
}

.direction-aware li a:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition:all ease .5s;
	-moz-transition:all ease .5s;
	transition:all ease .5s
}

.portfolio-item .portfolio-link .portfolio-hover:hover {
	opacity:1
}

.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
	position:absolute;
	top:50%;
	width:100%;
	height:20px;
	margin-top:-12px;
	text-align:center;
	font-size:20px;
	color:#fff
}

.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i, .direction-aware .portfolio-hover-content i {
	margin-top:-12px;
}

.portfolio-hover-content i.pe-7s-close {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    color: var(--thm-white);
    font-size: 30px;
    z-index: 200;

	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,  .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
	margin:0
}


.portfolio-item:hover .item-caption {
	box-shadow: 0 2px 0px 0px var(--thm-bdr-color-w);
	-webkit-transition:all .5s ease-in-out;
	-moz-transition:all .5s ease-in-out;
	-o-transition:all .5s ease-in-out;
	-ms-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out
}

.portfolio-item .item-caption h4 {
	color: #444;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	font-size: 18px;
	position: relative;
	top: -5px;
	letter-spacing: -1px;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
}

.portfolio-item .item-caption p {
	margin: 0;
	font-size: 14px;
    line-height: 1.75;
}

#portfolio * {
	z-index:2
}

.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

.direction-aware .portfolio-hover-content {
    background-color: transparent;
    position: absolute;
    top: 50% !important;
    width: 100%;
    height: 20px;
    margin-top: -12px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.post-meta-list {  
	margin-bottom: 10px;
	overflow: hidden;
	margin-left: -4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 30px;
    overflow: hidden;
    
}

.post-meta-list p.text-muted {
	font-size: 14px !important;
	font-style: normal !important;
	margin-top: 5px !important;
	color: #444;
	margin-bottom: 0 !important;
}

.post-meta-list p.text-muted .meta-item{
    display:inline-block;
    position:relative;
    font-size:14px;
    color:#969696;
    margin:10px 10px 0 0
}
.post-meta-list li:nth-child(2){
    float: right;
}
.post-meta-list li {
	margin-bottom: 0px !important;
}

.post-meta-list li a {
	display: inline-block;
}

.post-meta-list li i {
	color: #666;
	font-size: 15px;
	position: relative;
	top: 1px;
	margin-right: 4px;
}
.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}
.portfolio-item .item-caption p.post-excerpt {
	font-size: 14px;
	font-style: normal;
	clear: left;
	color: #888;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.portfolio-item .item-caption a.view-more{
    display: block;
    font-size: 14px;
    color: var(--thm-bdr-color-w);
    transition: all 500ms ease;
    padding-right: 5px;
}
.portfolio-item .item-caption a.view-more:hover{
    transform: translateX(5px);
}
.img-responsive, .thumbnail>img, .thumbnail a>img, .carousel-inner>.item>img, .carousel-inner>.item>a>img {
    /* display: block; */
    width: 100% \9;
    max-width: 100%;
    height: auto;
}
.btn-primary {
    border-color: #78aa81;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    background-color: #78aa81;
    padding: 10px 15px;
    margin-top: 18px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.btn-primary:hover {
    background-color: var(--thm-bdr-color-w);
    border-color: var(--thm-bdr-color-w);
    color: #fff;
}
.pull-right {
    float: right!important;
}

/*----------------------------------------------
# 新闻-one
----------------------------------------------*/
.news-one .news-one-content{
    display: block;
    margin-top: 30px;
}
.news-one .news-one-content .news-swiper{

    overflow: hidden;
}

.news-one .news-one-content .news-one-content__single{
    width: 100%;
    height: 100%;
}
.news-one .news-one-content .news-one-content__single .news-one-content__image{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;

}
.news-one .news-one-content .news-one-content__single .news-one-content__image img{
    width: 100%;
    height: 100%;
    border: 3px solid #ddd;
    padding: 3px;
    border-radius: 50%;
}
.news-one .news-one-content .news-one-content__single .news-one-content__content{
    width: 100%;
    font-size: 14px;
}

.news-one .news-one-content .news-one-content__single .news-one-content__content .news-one-content__title{
    display: block;
    line-height: 20px;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 400;
    transition: 0.2s ease all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 15px 0;
}
.news-one .news-one-content .news-one-content__single .news-one-content__content .news-one-content__text{
    font-size: 13px;
    height: 70px;
    line-height: 22px;
    text-align: left;
    color: #999;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-one .news-one-content .news-one-content__single:hover .news-one-content__title{
    color: var(--thm-bdr-color-w);
}
.news-one .news-one-content .news-one-content__single:hover .news-one-content__text{
    color: #7e7d7d;
}
.news-one .news-one-content .news-one-slider__nav {
    width: 100%;
    z-index: 100;
    display: flex;
    position: sticky;
}
.news-one .news-one-content .news-one-slider__nav .swiper-button-prev{
    left:unset;
    right: -50px;
}
.news-one .news-one-content .news-one-slider__nav .swiper-button-next{
    right: unset;
    left: -50px;
}
.news-one .news-one-content .news-one-slider__nav .swiper-button-next,
.news-one .news-one-content .news-one-slider__nav .swiper-button-prev {
    top: -243.5px;
    z-index: 100;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0, .1);
    margin: 0;
    text-align: center;
    cursor: pointer;
    transition: all 500ms ease;
    border-radius: 50%;
    font-size: 25px;
    outline: none;
}
.news-one .news-one-content .news-one-slider__nav .swiper-button-next i,
.news-one .news-one-content .news-one-slider__nav .swiper-button-prev i{
    width: 25px;
    height: 25px;
    margin: 0 auto;
    color: var(--thm-base);
}

.news-one .news-one-content .news-one-slider__nav .swiper-button-next:hover,
.news-one .news-one-content .news-one-slider__nav .swiper-button-prev:hover {
    background-color: var(--thm-bdr-color-w);
    opacity: 1;
}

.news-one .news-one-content .news-one-slider__nav .swiper-button-next::after,
.news-one .news-one-content .news-one-slider__nav .swiper-button-prev::after {
    border: 0px;
    display: none;
}
/*--------------------------------------------------------------
# New List
--------------------------------------------------------------*/
.news-list {
    position: relative;
    display: block;
    padding-top: 30px;
}
.news-list__inner{
    position: relative;
    display: block;
    padding: 0px 5%;
}
.news-list__header{
    position: relative;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-list__header ul{
    position: relative;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-color: var(--bs-white) transparent;
    scrollbar-width: thin;
    &::-webkit-scrollbar {
        height: 2px;
        background-color: transparent;
    };
    &::-webkit-scrollbar-thumb {
        background-color: var(--bs-white);
        border-radius: 5px;
    };
}
.news-list__header ul li{
    position: relative;
    display: inline-block;
    margin-right: 20px;
    min-width: 100px;
    text-align: center;
}
.news-list__header ul li a,.news-list__header ul li .active{
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--thm-black);
    transition: all 500ms ease;
    border: 2px solid var(--bs-white);
}

.news-list__header ul li a::after {
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scale(0, 1);
    transform-origin: left center;
    background-color: var(--thm-bdr-color-w);
    transition: transform 500ms ease;
}

.news-list__header ul li:hover>a::after {
    transform: scale(1, 1);
    transform-origin: right center;
}

.news-list__header ul li a:hover{
    color: var(--thm-bdr-color-w);
}
.news-list__header ul li a.active{
    color: var(--thm-bdr-color-w);
}
.news-list__header ul li a.active::after{
    transform: scale(1, 1);
    transform-origin: right center;
    background-color: var(--thm-bdr-color-w);
}

.news-list__blog{
    overflow: hidden;
}
.news-list__blog .article{
    margin:0 0 50px
}
.news-list__blog .article .article-img{
    position: relative;
    display: block;
    overflow:hidden;
    border-radius:3px;
    margin:0 0 10px;
    height:230px;
}
.news-list__blog .article .article-img .list__single-img{
    display: block;
    position: relative;
    height: 230px;
}
.news-list__blog .article .article-img img{
    width:100%;
    height: 100%;
    transition: all 500ms ease;
    transform: scale(1);
}
.news-list__blog .article:hover .article-img img {
    transform: scale(1.05);
}
.article-img>a {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-black-rgb), 0.3);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--thm-base);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
}

.article-img>a>span {
    position: relative;
}

.article-img>a>span::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--thm-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.article-img>a>span::after {
    content: '';
    transition: all 500ms ease;
    width: 2px;
    height: 20px;
    background-color: var(--thm-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.article-img>a:hover>span::before,
.article-img>a:hover>span::after {
    background-color: var(--thm-bdr-color-w);
}
/*----------------------------------------------
# 新闻
----------------------------------------------*/
.news{
    background: #f3f3f3;
}
.news .section-title{
    padding-top: 30px;
    text-align: center;
    margin: 0;
}
.news .section-title .section-title__title{
    font-family: "Open Sans Light";
    font-size: 26px;
    color: #000;
    font-weight: 300;
}
.news-section-line{
    background: #f3f3f3;
    height: 80px;
}
.news .news-content{
    display: block;
    margin-top: 30px;    
    padding-bottom: 30px;
}
.news .news-content .news-swiper{ overflow: hidden; }
.news .news-content .news-content__single{ width: 100%; height: 100%; background: var(--thm-base); border-radius: 2px; padding-bottom: 15px;}
.news .news-content .news-content__single .news-content__image{
    width: 100%; height: 220px; overflow: hidden; }
.news .news-content .news-content__single .news-content__content{ 
    width: 100%; font-size: 14px; 
    background-color: #fff;
    color: #6a6a6a;
    padding: 0px 5px; }
.news .news-content .news-content__single .news-content__content .news-content__date{ 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 35px; 
    line-height: 35px; 
}
.news .news-content .news-content__single .news-content__content .news-content__date i{ font-size: 14px !important; font-style: normal !important; margin-bottom: 0 !important; }
.news .news-content .news-content__single .news-content__content .news-content__date i:nth-child(2){
    float: right;
}
.news .news-content .news-content__single .news-content__content .news-content__title{
    display: -webkit-box;
    -webkit-box-orient: vertical;  
    -webkit-line-clamp: 2; /* 限制在两行内 */ 
    line-height: 20px;
    font-size: 15px;
    font-weight: 400;
    transition: 0.2s ease all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0px 5px;
}
.news .news-content .news-content__single a{
    color: var(--thm-base);
}
.news .news-content .news-content__single:hover .news-content__content .news-content__title,
.news .news-content .news-content__single:hover a{
    color: var(--thm-bdr-color-w);
}
.news .news-content .news-content__single img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}
.news .news-content .news-content__single:hover img{
    transform: scale(1.05);
}
.news .news-content .news-slider__nav {
    width: 100%;
    z-index: 100;
    display: flex;
    position: sticky;
}
.news .news-content .news-slider__nav .swiper-button-prev{
    left:unset;
    right: 10px;
}
.news .news-content .news-slider__nav .swiper-button-next{
    right: unset;
    left: 10px;
}
.news .news-content .news-slider__nav .swiper-button-next,
.news .news-content .news-slider__nav .swiper-button-prev {
    top: -180.5px;
    z-index: 100;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0, 0.3);
    margin: 0;
    text-align: center;
    cursor: pointer;
    transition: all 500ms ease;
    outline: none;
    color: #fff;
    opacity: 0.5;
}
/* .news .news-content .news-slider__nav .swiper-button-next i,
.news .news-content .news-slider__nav .swiper-button-prev i{
    width: 15px;
    height: 60px;
} */

.news .news-content .news-slider__nav .swiper-button-next:hover,
.news .news-content .news-slider__nav .swiper-button-prev:hover {
        background: rgb(0, 0, 0, 0.5);
    opacity: 1;
}

.news .news-content .news-slider__nav .swiper-button-next::after,
.news .news-content .news-slider__nav .swiper-button-prev::after {
    display: none;
}

.news-list__blog .article:hover .article-img>a {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}
.news-list__blog .article .article-header{
    overflow:hidden;
    border-radius:3px;
    margin:0 0 5px
}
.news-list__blog .article .article-header h2{
    font-size:15px;
    line-height:23px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-list__blog .article .article-header h2 a{
    color:#262626
}
.news-list__blog .article:hover .article-header h2 a {
    color: var(--thm-bdr-color-w);
}
.news-list__blog .article .article-header .article-meta{
    padding:0;
    line-height: 20px;
}
.news-list__blog .article .article-header .article-meta-item{
    display:inline-block;
    position:relative;
    font-size:14px;
    color:#969696;
    margin:10px 10px 0 0
}
.news-list__blog .article .article-header .article-meta .fa-eye{
    float: right;
}
.news-list__blog .article .article-content{
    font-size:16px;
    line-height:23px;
    color:#969696;
    height: 95px;
    overflow: hidden;
}
.news-list__blog .article .article-content p{
    font-size:14px
}
.news-list__blog .article .article-footer .link{
    font-size:14px;
    color:var(--thm-bdr-color-w);
}
.news-list__blog .article .article-footer .link:after{
    color:var(--thm-bdr-color-w);
    margin-left:8px
}
.news-list__blog .am-pagination{
    margin:0 auto;
    width:365px
}
.news-list__blog-list{
    width: 100%;
    height: 100%;
    position: relative;
    padding-top: 30px;
    border-top: 1px solid #dcdbdb;
    border-bottom: 1px solid #dcdbdb;
}
@media screen and (max-width:640px){
    .news-list__blog .article{margin:0 0 50px!important}
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background-color: #08623e;
}

.site-footer__top {
    position: relative;
    display: block;
}

.site-footer__top-inner {
    position: relative;
    display: flex;
    padding: 30px 0 20px;
    z-index: 1;
    border-bottom: 1px solid #86b39b;
}
.footer-widget__column{
    flex: 1;
    margin-right:10px;

}
.site-footer-map {
    position: absolute;
    left: 0;
    right: 0;
    height: 566px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.04;
    z-index: -1;
}

.footer-widget__about {
    position: relative;
    display: block;
}

.footer-widget__about-text {
    font-size: 16px;
    color: #ada8ba;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 30px;
}

.footer-widget__about-social {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.footer-widget__about-social a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-base);
    background-color: #100d16;
    border-radius: 50%;
    font-size: 13px;
    height: 45px;
    width: 45px;
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer-widget__about-social a:hover {
    color: var(--thm-black);
    transform: rotate(360deg);
}

.footer-widget__about-social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-base);
    border-radius: 50%;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.footer-widget__about-social a:hover:before {
    transform: scaleX(1.0);
}

.footer-widget__about-social a+a {
    margin-left: 10px;
}

.footer-widget__title {
    font-size: 18px;
    color: var(--thm-base);
    font-weight: 400;
    margin-bottom: 15px;
}

.footer-widget__links {
    position: relative;
    display: block;
    /* height: 225px; */
    /* overflow: hidden; */
}
.footer-widget__links:hover{
    /* overflow: visible; */
}

.footer-widget__links-list {
    position: relative;
    display: block;
    float: left;
    color: var(--bs-white);
}
.footer-widget__links-list li{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 25px;
    /* width: 150px; */
    z-index: 2;
}

.footer-widget__links-list li+li {
    margin-top: 0px;
}

.footer-widget__links-list li a {
    position: relative;
    /* display: block; */
    font-size: 15px;
    color: var(--thm-base);
    transition: all 500ms ease;
}

.footer-widget__links-list li a::after {
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left center;
    background-color: currentColor;
    transition: transform 500ms ease;
}
.footer-widget__links-list li:hover{
    /* width: auto; */
    z-index: 3;
}
.footer-widget__links-list li:hover>a::after {
    transform: scale(1, 1);
    transform-origin: right center;
}

/* .footer-widget__links-list li a:hover {
    color: var(--thm-base);
    width: auto;
    background: var(--thm-bdr-color-w);
    z-index: 999;
} */

.footer-widget__links-list-two {
    margin-right: 0px;
}

.footer-widget__contact {
    position: relative;
    display: block;
}

.footer-widget__contact-text {
    font-size: 16px;
    color: #ada8ba;
    margin: 0;
    line-height: 30px;
    margin-bottom: 2px;
    padding-top: 3px;
    overflow: hidden;
}
.footer-widget__contact-text img{
    height: 120px;
    width: 120px;
}

.footer-widget__contact-list {
    position: relative;
    display: block;
}

.footer-widget__contact-list li {
    display: flex;
}

.footer-widget__contact-list li .icon {
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
}

.footer-widget__contact-list li .icon span {
    font-size: 13px;
    color: var(--thm-base);
}

.footer-widget__contact-list li .text {
    margin-left: 10px;
}

.footer-widget__contact-list li .text p {
    font-size: 16px;
    margin: 0;
    line-height: 30px;
}

.footer-widget__contact-list li .text p a {
    color: var(--bs-white);
    transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:hover {
    color: var(--thm-base);
}

.footer-widget__newsletter {
    position: relative;
    display: block;
}

.footer-widget__newsletter-text {
    font-size: 16px;
    color: #ada8ba;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
    padding-bottom: 23px;
    padding-top: 5px;
}

.footer-widget__newsletter-form {
    position: relative;
    display: block;
}

.footer-widget__newsletter-input-box {
    position: relative;
    display: block;
}

.footer-widget__newsletter-input-box input[type="email"] {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 500;
    text-transform: capitalize;
    height: 60px;
    width: 100%;
    background: var(--thm-base);
    border: none;
    border-radius: var(--thm-bdr-radius);
    padding-right: 95px;
    outline: none;
    padding-left: 20px;
}

.footer-widget__newsletter-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-bdr-color-w);
    border: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    color: var(--thm-base);
    transition: all 500ms ease;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .2em;
}

.footer-widget__newsletter-btn:hover {
    background-color: var(--thm-extra);
}

.site-footer__bottom {
    position: relative;
    display: block;
    z-index: 2;
}

.site-footer__bottom-container {
    position: relative;
    display: block;
    max-width: 1595px;
    width: 100%;
    margin: 0 auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.site-footer__bottom-inner {
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.site-footer__bottom-text {
    font-size: 16px;
    margin: 0;
    color: var(--thm-base);
    width: 100%;
    text-align: center ;
}

.site-footer__bottom-text a {
    color: var(--thm-base);
    transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
    color: var(--thm-base);
}

.site-footer__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer__bottom-menu li+li {
    margin-left: 12px;
}

.site-footer__bottom-menu li a {
    color: #ada8ba;
    font-size: 16px;
    display: inline-block;
    transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# 产品中心
--------------------------------------------------------------*/
.products-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}
.product-one__inner{
    position: relative;
    display: block;
    padding-top: 20px;
    color: var(--thm-black);
}
.product-one__inner .tabs{
    position: relative;
    display: flex;
    font-size: 15px;
}
.product-one__inner .tabs ul{
    padding: 0;
    display: contents;
}
.product-one__inner .tabs ul li{
    position: relative;
    display: block;
    width: 50%;
    /* min-width: 150px; */
    text-align: center;
    background-color: #f5f5f5;
    line-height: 45px;
    /* border-top-left-radius: 3px;
    border-top-right-radius: 3px; */
}
.product-one__inner .tabs ul li.is-active{
    background-color: #d9e6df;
}
.product-one__inner .product-one__vertical{
    background-color: #f8f8f8;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    border: 2px solid #d9e6df;
    z-index: 5;
}
.product-one__vertical-msg{
    position: absolute; 
    width: 100%;
    z-index:999;
    justify-content: center;
    align-content: center;
    display: flex;
    padding: 6px;
    opacity: 0;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    font-size: 15px;
    visibility: hidden;

}
.product-one__vertical-msg-content{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: #fff; 
    font-size: 15px;
}

.product-one__vertical-overlay{
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.05); 
    /* display: none; */
    z-index:999;
}
.product-one__vertical-overlay-content{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: #fff; 
    font-size: 15px;
}

.product-one__inner .product-one__vertical .vertical-operate {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    vertical-align: top;
    z-index: 99;
}
.product-one__inner .records{
    line-height: 40px;
    height: 40px;
    font-size: 13px;
    display: flex;
}
.product-one__inner .records .loading{
    position: relative; 
    left: 0;
    top:-100%; 
    width: 100%; 
    height: 100%; 
    background: #f5f5f5; 
    z-index:99;
}
.product-one__inner .records .loading .loading-i{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}
.product-one__inner .product-one__vertical .vertical-operate .key-word-btn-clear {
    width: 108px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    transition: all .3s;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #b5b5b5;
    color: #444;
    margin-right: 10px;
}
.product-one__inner .product-one__vertical .vertical-operate .key-word-btn {
    width: 108px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    transition: all .3s;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #add6c0;
    background: #d9e6df;
    margin-right: 10px;
}

.product-one__inner .vertical-selectors {  
    display: grid;  
    margin-bottom: 10px;
    overflow-x: auto;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #f1f1f1;
    scrollbar-color: var(--bs-white) transparent;
    scrollbar-width: thin;
    &::-webkit-scrollbar {
        height: 5px;
        background-color: transparent;
    };
    &::-webkit-scrollbar-thumb {
        background-color: var(--thm-bdr-color-w);
        border-radius: 5px;
    };
    scrollbar-color: var(--thm-bdr-color-w) transparent;
    scrollbar-width: thin;
  } 
.product-one__inner .vertical-selectors .item{
    width: 150px; /* 调整选择器宽度 */  
}

.product-one__inner .vertical-selectors .item:not(:last-child){
    border-right: 1px solid var(--bs-white);
}
  .product-one__inner .vertical-selector-content{
    display: flex;
 }
 .product-one__inner .vertical-selector-content .vertical-selector { 
    height: auto;
    position: relative;  
    display: inline-block;
    padding: 15px;
  }  
  .product-one__inner .vertical-selector-title{
    display: -webkit-box;;
    align-items: center;
    background: #f1f1f1;
  }
  .product-one__inner .vertical-selector-title .slider-title{
    align-content: center;
    display: flex;
    padding: 10px;
    text-align: center;
    font-size: 15px;
    max-width: 100%;
    height: auto;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    line-height: 25px;
  }
  .product-one__inner .vertical-selector-content .vertical-selector .slider-content{
    display: flex;
  }
  .product-one__inner .vertical-selector-content .vertical-selector .slider-content-checkbox{
    flex-direction: column;
    font-size: 14px;
    color: var(--thm-black);
    overflow: overlay;
    width: 120px;
    height: 217px;

    scrollbar-color: var(--bs-white) transparent;
    scrollbar-width: thin;
    &::-webkit-scrollbar {
        height: 5px;
        background-color: transparent;
    };
    &::-webkit-scrollbar-thumb {
        background-color: var(--thm-bdr-color-w);
        border-radius: 5px;
    };
    scrollbar-color: var(--thm-bdr-color-w) transparent;
    scrollbar-width: thin;
  }
  .product-one__inner .vertical-selector-content .vertical-selector .slider-content-checkbox label{
    display: flex;
    align-items: center;
    margin-bottom: 1px;
    width: max-content;
  }
  .product-one__inner .vertical-selector-content .vertical-selector .slider-content-checkbox label .checkbox {
    display: inline-block;
    width: 17px;
    height: 17px;
    border: 2px solid var(--thm-bdr-color-ws);
    background-color: white;
    margin-right: 5px;
  }
  .product-one__inner .vertical-selector-content .vertical-selector .slider-content-checkbox label .checkbox.checked {
    border-color: var(--thm-bdr-color-w);
    position: relative;
  }
  
  .product-one__inner .vertical-selector-content .vertical-selector .slider-content-checkbox label  .checkbox.checked:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background-color: var(--thm-bdr-color-w);
  }
  
  .product-one__inner .vertical-selector-content .slider-content .slider-content-left, .product-one__inner .vertical-selector-content .vertical-selector .slider-content .slider-content-right{
     width: 75px;
     height: 220px;
     position: relative; 
  }
  .product-one__inner .vertical-selector-content .vertical-selector input{
    width: 100%;
    height: 25px;
    font-size: 14px;
    color: var(--thm-black);
  }
  .product-one__inner .vertical-selector-content .vertical-selector input:focus{
    outline: none;
    border-color: var(--thm-bdr-color-w);
  }
  
  .product-one__inner .vertical-selector-content .vertical-selector .slider-content .slider-content-right .max-value{
    top: 0px;
  }
  .product-one__inner .vertical-selector-content .vertical-selector .slider-content .slider-content-right .min-value{
    bottom: 0px;
  }
  .product-one__inner .vertical-selector-content .vertical-selector .slider-content .slider-content-right .min-value,.product-one__inner .vertical-selector .slider-content .slider-content-right .max-value {   
    position: absolute;
    display: flex;
  }  
    
  .product-one__inner .vertical-selector-content .slider-container { 
    position: relative; 
    height: 205px; 
    display: flex;
    justify-content: center;
  } 
  .product-one__inner .vertical-selector-content .slider-container .vertical-line{
    height: 8px;  
    width: 2px;  
    background-color: var(--bs-white)
  }
  .product-one__inner .vertical-selector-content .sline{  
    position: relative; 
    height: 220px; 
    border-right:3px solid #a6a6a6;
    left: 31px;
  }   
    
  .product-one__inner .vertical-selector-content .slider-handle {  
    position: absolute;  
    width: 20px; /* 调整滑块宽度 */  
    height: 20px; /* 调整滑块高度 */  
    background-color: #ccc; /* 滑块背景颜色 */  
    bottom: 0; /* 滑块位于底部 */  
    cursor: pointer; /* 鼠标悬停时显示为手型 */  
  }  
    
  .product-one__inner .vertical-selector-content .up-button, .product-one__inner .vertical-selector-content .down-button {  
    position: absolute;  
    width: 32px; /* 调整按钮宽度 */  
    height: 15px; /* 调整按钮高度 */  
    background-color: #74b491;
    cursor: pointer; /* 鼠标悬停时显示为手型 */  
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
  }

.product-one__search{
    position: relative;
    font-size: 15px;
    font-weight: 600;
    display: flex;
}
.product-one__search-content{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    width: 350px;
    line-height: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 10px;
}
.product-one__search-content .thm-btn {
    padding: 0;
    width: auto;
    height: 40px;
    padding: 0px 30px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-bdr-color-w);
    border: 1px solid var(--thm-bdr-color-w);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.product-one__search-sm{
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
}
.product-one__search-sm .records{
    margin-left: 15px;
    line-height: 40px;
    height: 40px;
    font-size: 13px;
    color: var(--thm-black);
    display: flex;
}
.product-one__search-sm .records .loading{
    position: relative; 
    left: 0;
    top:-100%; 
    width: 100%; 
    height: 100%; 
    background: rgb(255, 255, 255); 
    z-index:999;
}
.product-one__search-sm .records .loading .loading-i{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}
.product-one__search-sm .thm-reset{
    width: 100px;
    height: 40px;
    padding: 0px 30px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid var(--thm-gray);
    color: var(--thm-gray);
}
.product-one__search-sm .thm-reset:hover{
    border-color: var(--thm-bdr-color-w);
    color: var(--thm-bdr-color-w);
}

.product-one__search-content input[type="search"],
.product-one__search-content input[type="text"] {
    width: 100%;
    background-color: #fff;
    color: var(--thm-gray);
    border: none;
    outline: none;
    height: 40px;
    padding-left: 30px;
    padding-right: 10px;
    border: 1px solid var(--thm-bdr-color);
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.product-cate{
    display: flow-root;
    position: relative;
    padding: 20px 0;
}
.product-one__cate{
    display: block;
    font-size: 14px;
    height: auto;
    list-style-type: none;
}

.product-one__cate a{
    float: left;
    padding: 10px 20px;
    line-height: 10px;
    border: 1px solid var(--thm-bdr-color);
    margin-right: 15px;
    border-radius: 3px;
    margin-top: 10px;
    line-height: 20px;
}

.product-one__cate a:hover{
    border: 1px solid var(--thm-bdr-color-w);
    color: var(--thm-bdr-color-w);
}
.product-one__cate a.active{
    border: 1px solid var(--thm-bdr-color-w);
    color: var(--thm-bdr-color-w);
}
.product-one__pfilter-wrap .select-wrap {
    float: unset;
    width: 100%;
    background: #f9f9f9;
    border-top: none
}

.product-one__pfilter-wrap {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    z-index: 1;
}

.product-one__pfilter-wrap .ass {
    height: auto;
}

.product-one__pfilter-wrap .ass .ass_ul {
    height: auto;
    padding-bottom: 10px;
}

.product-one__pfilter-wrap .ass .ass_ul .nav_menu_box div.l {
    width: 100%;
}

.product-one__pfilter-wrap .select-wrap {
    min-height: 200px;
    float: right;
    border: 2px solid #d9e6df;
}

.product-one__pfilter-wrap .select-wrap .param_select {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    height: 240px;
    scrollbar-color: var(--bs-white) transparent;
    scrollbar-width: thin;
    &::-webkit-scrollbar {
        height: 5px;
        background-color: transparent;
    };
    &::-webkit-scrollbar-thumb {
        background-color: var(--thm-bdr-color-w);
        border-radius: 5px;
    };
    scrollbar-color: var(--thm-bdr-color-w) transparent;
    scrollbar-width: thin;
}

.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box {
    width: auto;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    display: table-row;
    
}

.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select {
    display: table-cell;
    /* padding-right: 10px; */
    border-top: 1px solid var(--bs-white);
    border-right: 1px solid var(--bs-white);
    border-bottom: 1px solid #f1f1f1;
}

.brand_select ::-webkit-scrollbar {
    width: 4px;
}

.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select h4 {
    min-width: 80px;
    color: #333;
    padding: 10px;
    font-weight: 400;
    font-size: 15px;
    background: #f1f1f1;
    align-items: center;
    justify-content: center;
    display: flex;
}

.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul {
    min-width: 140px;
    height: 196px;
    line-height: 26px;
    border-top: none;
    overflow-y: auto;
    border-radius: 0 0 4px 4px;
    padding: 1px 0;
    scrollbar-color: var(--bs-white) transparent;
    scrollbar-width: thin;
    &::-webkit-scrollbar {
        height: 5px;
        background-color: transparent;
    };
    &::-webkit-scrollbar-thumb {
        background-color: var(--thm-bdr-color-w);
        border-radius: 5px;
    };
    scrollbar-color: var(--thm-bdr-color-w) transparent;
    scrollbar-width: thin;
}

.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul li {
    cursor: pointer;
    font-size: 13px;
    color: var(--thm-black);
    padding: 0 10px;
    border-bottom: 1px solid #eaeeea;
}
.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul li:last-child{
    border-bottom: none;
}
.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul li:hover:not(.disableAttrClass),
.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul li:hover:not(.disable){
    background-color: var(--thm-bdr-color-ws);
    color: var(--bs-white);
}

.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul li.disable {
    color: #a4a4a7;
    cursor: not-allowed
}

.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul li.disable:hover {
    color: #a4a4a7;
}

.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul li.attrclass,.pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul li:hover {
    color: var(--thm-bdr-color-w);
}
.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul li.disableAttrClass{
    color: #a4a4a7;
    cursor: not-allowed;
}
.product-one__pfilter-wrap .select-wrap .param_select .brand_select_box .brand_select ul li.disableAttrClass:hover{
    background-color: #f5f5f5;
    color: #a4a4a7;
}
.product-one__pfilter-wrap .select-wrap .param_search {
    padding-top: 10px;
    line-height: 26px;
    display: flex;
    height: 58px;
    overflow-x: auto;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid #fff;
}

.product-one__pfilter-wrap .select-wrap .param_search .title{
    line-height: 40px;
    font-weight: 900px;
    font-size: 15px;
    width: 100px;
    left: 0;
}
.product-one__pfilter-wrap .select-wrap .param_search .selection{
    height: 40px;
    line-height: 40px;
}
.product-one__pfilter-wrap .select-wrap .param_search i.l {
    color: #333;
    font-size: 14px;
    font-weight: 700
}

.product-one__pfilter-wrap .select-wrap .param_search p {
    color: var(--thm-bdr-color-w);
    letter-spacing: .68px;
    margin-right: 8px
}

.product-one__pfilter-wrap .select-wrap .param_search p .item {
    font-size: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 0 6px;
    margin-right: 10px;
    background: #fff
}
.product-one__pfilter-wrap .select-wrap .param_search p a:hover{
    color: var(--thm-bdr-color-w);
}

.product-one__pfilter-wrap .select-wrap .param_search p .item span {
    margin-right: 20px
}

.product-one__pfilter-wrap .select-wrap .param_search p .item i {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #fafbf9 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAABIElEQVRYR+2VMQ6DMAxFbaTu4S7cAC5Ah8LS07UDLOUAiBtwl2TvkCoVA41oZSVGKKoZgxNeXj4xQmIPJsYLArz3iYlhMewZkEhIJCQSe2dADIvh3wb+7x6epqm21jZKqWtRFM8tP/M8n4wxN0Tsy7IcYlIUbXgcxx4ALog4KKUaH3qB7a21tQOuqqo9FNgD+oBevwOAR57n7bdToG4i2rD70Ba0GzfGvM1ywbo1WYC3oN0YNywrsA+9HDFLDNZxYTOcHLD/gy1Wzpz5ZYvE1m3gFtdadwDACh0dieSuteQaB7U1a63vWZZ1h7dmaofiqovOMBcIdR0BppoKrRPDoeao88Qw1VRonRgONUedJ4appkLrxHCoOeo8MUw1FVr3AusIzC01hsPgAAAAAElFTkSuQmCC) no-repeat 50%;
    background-size: 100%;
    right: 0;
    top: 0;
    cursor: pointer
}

.product-one__pfilter-wrap .select-wrap .pBtn {
    width: 100px;
    font-size: 12px;
    line-height: 34px;
    height: 36px;
    border-radius: 2px;
    margin: 20px auto 0
}

.product-one__pfilter-wrap .search_content {
    width: 100%;
    min-height: 120px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    margin-bottom: 10px
}

.product-one__pfilter-wrap .search_content .brand_secondnary {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #f7f7f8;
    padding: 0 20px;
    margin-bottom: 0
}

.product-one__pfilter-wrap .search_content .brand_secondnary a {
    color: #1e1f30;
    font-weight: 700;
    margin-right: 40px;
    font-size: 12px
}

.product-one__pfilter-wrap .search_content .brand_secondnary a.active,
.product-one__pfilter-wrap .search_content .brand_secondnary a:hover {
    color: var(--thm-bdr-color-w);
}

.product-one__pfilter-wrap .search_content .brand_thirdnary {
    padding: 10px 20px
}

.product-one__pfilter-wrap .search_content .brand_thirdnary li {
    width: 20%;
    line-height: 40px
}

.product-one__pfilter-wrap .search_content .brand_thirdnary li a {
    color: #373636;
    font-size: 12px
}

.product-one__pfilter-wrap .search_content .brand_thirdnary li a.active,
.product-one__pfilter-wrap .search_content .brand_thirdnary li a:hover {
    color: var(--thm-bdr-color-w);
}


.product-one__key-word {
    margin: 10px 0 12px;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.product-one__key-word .key-word-content {
    display: flex;
    vertical-align: top;
}
.product-one__key-word .key-word-content span{
    margin-left: 15px;
    line-height: 30px;
    height: 30px;
    font-size: 13px;
    color: var(--thm-bdr-color-w);
}
.product-one__key-word .key-word-content .key-word-btn-clear {
    width: 108px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    transition: all .3s;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #c7c7c7;
    color: #444;
    margin-right: 10px;
}
.product-one__key-word .key-word-content .key-word-btn {
    width: 108px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    transition: all .3s;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #add6c0;
    background: #d9e6df;
    margin-right: 10px;
}

.product-one__primay {
    width: 100%;
    border-radius: 4px;
    /* overflow-x: auto; */
    position: relative;
    min-height: 100px;
}
.product-one__primay .list-body{
    display: grid;
    overflow-x: auto;
    scrollbar-color: var(--bs-white) transparent;
    scrollbar-width: thin;
    &::-webkit-scrollbar {
        height: 5px;
        background-color: transparent;
    };
    &::-webkit-scrollbar-thumb {
        background-color: var(--thm-bdr-color-w);
        border-radius: 5px;
    };
    scrollbar-color: var(--thm-bdr-color-w) transparent;
    scrollbar-width: thin;
}
.product-one__primay .primay-header {
    width: 100%;
    background-color: var(--thm-bdr-color-w);
    margin-bottom: 0;
    display: flex;
    align-content: flex-start; 
    height: auto;
    min-height: 55px;
}

.product-one__primay .primay-header .title {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 15px;
    background-color: var(--thm-bdr-color-w);
    color: #ffffff;
    font-weight: 700;
    border-left: 1px solid #ffffff;
    max-width: 100%;
    height: auto;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    line-height: 25px;
}
.product-one__primay .primay-header .title .resp-arrow-content{
    /* 另起一行居中 */
    display: flex;    
    margin-top: 10px;
    align-items: center;
    justify-content: space-around;
    flex-direction: inherit;
}
.product-one__primay .primay-header .title .resp-arrow-content .resp-arrow-top,
.product-one__primay .primay-header .title .resp-arrow-content .resp-arrow-bottom {
    width: 0;
    height: 0;
}
.product-one__primay .primay-header .title .resp-arrow-content .resp-arrow-top {
    width: 0;
    height: 0;
    margin-top: 1px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #ffffff;
}
.product-one__primay .primay-header .title .resp-arrow-content .resp-arrow-bottom {
    border: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #fff;
  }
  .product-one__primay .primay-header .title .resp-arrow-content .resp-arrow-top.active {
    border-top: 8px solid var(--thm-bdr-color-ws);
  }
  .product-one__primay .primay-header .title .resp-arrow-content .resp-arrow-bottom.active {
    border-bottom: 8px solid var(--thm-bdr-color-ws);
  }

.product-one__primay .primay-list{
    width: 100%;
    height: 100%;
}

.product-one__primay .search-params-title{
    background-color: #f1f1f1;
    padding: 2px 2px;
    margin: 3px;
    line-height: 20px;
    display: inline-block;
    border-radius: 1px;
}
.product-one__primay table{
    width: 100%;
}
.product-one__primay table thead{
    background-color: #f1f1f1;
    color: #333;
}
.product-one__primay table thead tr{
    height: 60px;
}
.product-one__primay table thead th{
    text-align: center;
    font-size: 15px;
    padding: 5px;
    line-height:25px;
    border-left: 1px solid #eee;
    font-weight: 400;
}

.product-one__primay  table thead tr th:first-child,
.product-one__primay  table thead tr th:last-child{
    white-space: nowrap;
}
.product-one__primay table thead th .resp-arrow-content{
    /* 另起一行居中 */
    display: flex;    
    margin-top: 10px;
    align-items: center;
    justify-content: space-around;
    flex-direction: inherit;
}
.product-one__primay table thead th .resp-arrow-content .resp-arrow-top,
.product-one__primay table thead th .resp-arrow-content .resp-arrow-bottom {
    width: 0;
    height: 0;
}
.product-one__primay table thead th .resp-arrow-content .resp-arrow-top {
    width: 0;
    height: 0;
    margin-top: 1px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #b5b5b5;
}
.resp-arrow-content .resp-arrow-bottom {
    border: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #b5b5b5;
  }
.product-one__primay table thead th .resp-arrow-content .resp-arrow-top.active {
    border-top: 8px solid var(--thm-bdr-color-w);
  }
.product-one__primay table thead th .resp-arrow-content .resp-arrow-bottom.active {
    border-bottom: 8px solid var(--thm-bdr-color-w);
  }

.product-one__primay  table tbody tr{
    background-color: #fff;
    color: #333;
    border-bottom: 1px solid #eee;
    height: 40px;
    line-height: 40px;
    border-right: 1px solid #eee;
}

.product-one__primay  table tbody tr td {
    text-align: center;
    font-size: 15px;
    color: #333;
    padding: 0 10px;
    line-height: 40px;
    border-left: 1px solid #eee;
    white-space: nowrap;
}
.product-one__primay  table tbody tr td img{
    width: 20px;
    height: 20px;
}
.product-one__primay  table tbody tr td.no-data{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 40px;
    font-size: 13px;
    color: var(--thm-gray);
}
.product-one__primay .highlight{
    color: var(--bs-red);
}
.product-one__primay .search-item{
    min-width: 450px;
    flex:1;
}
.product-one__primay  table tbody tr:hover{
    background-color: #f5f5f5;
}
.product-one__primay  table tbody tr:hover .search-params-title{
    background:none;
}

/* .product-one__primay > :not(.first-column):not(.last-column) {
    margin-left: 189px; 
    margin-right: 189px; 
} */
.product-one__overlay{
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.05); 
    /* display: none; */
    z-index:999;
}
.product-one__overlay-content{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: #fff; 
    font-size: 15px;
}

.product-one__overlay-list{
    position: absolute; 
    /* top: 20px;  */
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.1); 
    /* visibility: hidden; */
    z-index:999;
}
.product-one__overlay-list-content{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: #fff; 
    font-size: 15px;
}

/*--------------------------------------------------------------
# 联系我们
--------------------------------------------------------------*/
.contact-one {
    position: relative;
    display: block;
    padding: 30px 0;
}
.contact-one-form{
    background: #f5f5f5;
}
.contact-one__tittle-w {
	font-size: 24px;
	color: var(--thm-black);
	text-align: center;
	font-weight: 400;
	letter-spacing: 3px;
    margin: 15px 0;
}
.contact-one__form-bg input[type="text"],
.contact-one__form-bg input[type="email"],
.contact-one__form-bg textarea {
	width: 100%;
	padding: 8px 10px;
	height: 39px;
	font-weight: 400;
	background: none;
	background: var(--bs-white);
	border-radius: 0;
	border: none;
	color: var(--thm-gray);
	outline: none;
	font-size: 14px;
	letter-spacing: 1px;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-moz-transition: 0.5s all;
	font-family: 'Source Sans Pro', sans-serif;
	box-sizing: border-box;
}

.contact-one__form-bg input[type="text"],
.contact-one__form-bg input[type="email"] {
	margin-bottom: 1em;
}

.contact-one__form-bg input[type="text"]:focus,
.contact-one__form-bg input[type="email"]:focus,
.contact-one__form-bg textarea:focus {
    color: var(--thm-gray);
}
.contact-one__form-bg input[type="text"],
.contact-one__form-bg input[type="email"],
.contact-one__form-bg textarea{
    color: #aeaeaf;
}
@media (min-width: 768px){
    .contact-one__form-bg .form-name,.contact-one__form-bg .form-email{
        width: 50%;
        padding-right: 15px;
        float: left;
    }
}
.contact-fields {
	padding-left: 0;
}

.contact-fields:nth-child(2) {
	padding-right: 0;
}

.contact-one__form-bg textarea {
	resize: none;
	height: 100px;
}

.contact-one__form-bg input[type="submit"] {
	background: var(--thm-bdr-color-w);
	color: #ffffff;
	font-size: 16px;
	text-transform: capitalize;
	margin: 0 auto;
	margin-top: 15px;
	border: 2px solid var(--thm-bdr-color-w);
	outline: none;
	letter-spacing: .5px;
	display: block;
	cursor: pointer;
	-webkit-appearance: none;
	padding: 4px 60px;
	font-family: 'Source Sans Pro', sans-serif;
	transition: .5s ease-in;
	-webkit-transition: .5s ease-in;
	-moz-transition: .5s ease-in;
	-o-transition: .5s ease-in;
	-ms-transition: .5s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 4px;
}

.contact-one__form-bg input[type="submit"]:hover {
	background:var(--thm-bdr-color-w);
	color: #fff;
}

.contact-one__form-bg {
	padding: 30px 30px 0 30px;
}

.contact-one__overlay{
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.01); 
    border-radius: 3px;
    z-index:999;
    display: none;
}
.contact-one__overlay-content{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: #fff; 
    font-size: 15px;
}

.contact-maps {
	margin-top: 30px;
}
.resp-tabs-list li {
	color: var(--thm-black);
	background: #e2e2e2;
	border: none;
	border-left: 1px solid #fff;
}
.resp-tabs-list li:nth-child(1) {
	border-left: none;
}
.resp-tabs-container p span {
	color: var(--thm-bdr-color-w);
	display: block;
}

.resp-tabs-container p a {
	color: #555;
	letter-spacing: .5px;
}

.resp-tabs-container p a:hover {
	color: var(--thm-bdr-color-w);
}

.add-left,.add-right {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
}
.add-left p:nth-child(2) {
	margin: 20px 0;
}
.resp-tab-content {
	padding: 10px 0 0;
    width: 100%; 
}

.resp-tab-content iframe {
	width: 100%;
	border: none;
	outline: none;
	height: 340px;
	padding: 10px;
	background: #e2e2e2;
}
.resp-tab-content img{
	width: 100%;
	border: none;
	outline: none;
	height: 340px;
	padding: 10px;
	background: #f3f8f5;
}
p.para-w3l {
	color: #555;
	line-height: 30px;
	font-size: 15px;
	letter-spacing: 0.7px;
}
@media (max-width: 991px){
    .add-left {
        margin: 10px 10px 15px;
    }
    .add-left,.add-right {
        padding: 0;
    }
    .form-bg {
		padding: 40px;
	}
}
@media (min-width: 992px){
    .add-left,.add-right {
        float: left;
    }
}
@media(max-width:768px) {
	.add-right {
		margin-bottom: 30px;
        float: none;
	}
}
@media (min-width: 768px) and (max-width: 992px) {
    .add-left {
        margin: 10px 10px 15px;
    }
}

/*--------------------------------------------------------------
# About-us
--------------------------------------------------------------*/

.about-us {
    margin-top: 30px;
    position: relative;
    display: block;
    padding:10px 0 0px;
}
.about-us .header-title{
    font-size: 20px;
    line-height: 40px;
    color:#333;
}
.about-us .header-left-p,.about-us .vision-right-p{
    min-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    &::-webkit-scrollbar-thumb {
        background-color: var(--thm-bdr-color-w);
        border-radius: 2px;
        width: 0.5px;
    };
}
.about-us .header-right{
    margin-bottom: 40px;
}
.about-us .header-border-top:before {
    position: absolute;
    top: 0;
    height: 2px;
    width: 50px;
    content: "";
    background: var(--thm-bdr-color-w);
}
.about-us p{
    font-size: 16px;
    line-height: 26px;
}
.about-us .about-us__img {
    position: relative;
    display: block;
    /* overflow: hidden; */
}
.about-us .about-us__img img{
    width:100%;
    transition: all 500ms ease;
    transform: scale(1);
}
.about-us .about-us__img:hover.about-us__img img {
    transform: scale(1.02);
}

.about-us .about-us__img:hover::before {
    transform: scale(1);
}


.about-us .about-us__img .img-fluid {
    max-width: 100%;
    height: auto;
}
.about-us .about-us__img .img-one {
    height: 350px;

}
.about-us .course_title{
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
    margin-top: 10px;
}
.about-us .course_title span{
    border-top: 2px solid var(--thm-bdr-color-w);
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--thm-black);
}
.about-us__mobile-course{
    position: relative;
    margin-top: 10px;
    height: auto;
    display: none; 
}

.about-us__mobile-course-item{
    position: relative;
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.about-us__mobile-course-item__icon{
    position: relative;
    display: block;
    margin-bottom: 10px;
}
 .about-us__mobile-course-item__icon img{
    width: 100%;
    height: 130px;
    transition: all 500ms ease;
    transform: scale(1);
}
.about-us__mobile-course-item__icon:hover img{
    transform: scale(1.02);
}
.about-us__mobile-course-item__icon:hover::before{
    transform: scale(1);
}
.about-us__mobile-course-item__content{
    position: relative;
    display: block;
    padding: 0 0 0 10px;
    min-height: 40px;
    max-height: 100px;
    overflow: hidden;
    border: 2 solid var(--thm-bdr-color-w);
}
.about-us__mobile-course-item__content span{
    font-size: 16px;
    line-height: 30px;
    color: #ada8ba;
    margin-bottom: 30px;
}
 /*---关于我们时间历程 start--- */
.wk_about {
    padding: 50px 20px 20px 30px;
    background: #f2f2f2;
    height: 400px;
}
.wk_about_div {
	z-index: 1;
	overflow: hidden;
	width: 100%;
    height: 320px;
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
}
.wk_about h2 {
	position: relative;
	top: 0;
	left: -400px;
	width: auto;
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
}
.wk_history {
	position: relative;
    display: block; 
    float: left; 
}
.wk_history_top{
    height: 16px;
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
}
.wk_history_top_circle{
    height: 8px;
    width: 100%;
    position: relative;
    display: block;
    border-bottom: 2px solid #e0e0e0;
}
.wk_history_top .circle {
    width: 16px;
    height: 16px;  
    border: 2px solid #e0e0e0;
    border-radius: 50%;  
    float: left;
    margin: 0 105px 0 206px;
    background-color: var(--thm-bdr-color-w);
} 
.wk_history_top .circle i{
    display: block;
    width: 6px;
    height: 6px;
    margin-top: 3px;
    margin-left: 3px;
    background-color: var(--bs-white);
    border-radius: 50%;  
} 
.wk_blk_18 {
	overflow: hidden;
	/* width: 1200px; */
	zoom: 1;
    margin-top: 15px;
    width: 100%;
    height: 400px;
}

.wk_blk_18 .wk_pcont {
	float: left;
    overflow: hidden;
	margin-left: 16px;
	width: 1048px;
}

.wk_blk_18 .ScrCont {
	margin-left: 0;
	width: 100000%;
	zoom: 1;
}
.wk_blk_18 #List1_1, .wk_blk_18 #List2_1 {
	float: left;
}
.wk_blk_18 .LeftBotton {
	float: left;
	margin-left: 0;
	width: 35px;
	height: 35px;
}
.wk_blk_18 .RightBotton {
	float: right;
	margin-right: 0;
    margin-left: 15px;
	width: 35px;
	height: 35px;
}
.wk_blk_18 .LeftBotton, .wk_blk_18 .RightBotton {
    z-index: 100;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--thm-bdr-color-w);
    background: transparent;
    border: 2px solid rgba(var(--thm-bdr-color-w-rgb), 1);
    border-radius: 50%;
    text-align: center;
    opacity: 0.3;
    transition: all 500ms ease;
	margin-top: 150px;
}
.wk_blk_18 .LeftBotton:hover, .wk_blk_18 .RightBotton:hover {
    opacity: 1;
}
.wk_fzlc_b {
	float: left;
	margin: 0 13px;
	width: 300px;
	height: 294px;
}
.wk_fzlc_b h4 {
	margin: 0 auto;
	width: 300px;
	color: var(--thm-bdr-color-w);
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	line-height: 54px;
}
.wk_his_ico {
	margin: 5px auto 0 auto;
	width: 300px;
	height: 11px;
	background: url(../image/history_ico.png) no-repeat center bottom;
}
.wk_fzlc_b dl {
	margin: 0 auto;
	padding: 15px 15px 0;
	/* width: 268px; */
	height: 207px;
	border: 1px solid #fff;
	border-top: none;
    background: #fff;
}
.wk_fzlc_b dl dt, .wk_fzlc_b dl dt img {
	margin: 0 auto;
	width: 268px;
	height: 115px;
}
.wk_fzlc_b dl dd {
	width: 268px;
    height: 60px;
	color: var(--thm-black);
	margin: 10px auto 0 auto;
	font-size: 15px;
	line-height: 20px;
    overflow: hidden;
}
/*企业愿景与使命*/
.about-vision{
    position: relative;
    display: block;
    margin-top: 50px;
}
.about-vision .vision-left{
    margin-bottom: 40px;
}

.about-vision .vision-right-p{
    height: 380px;
}
.about-us .vision-border-top{
    line-height: 60px;
}
.about-us .vision-border-top:before {
    position: absolute;
    height: 2px;
    width: 50px;
    content: "";
    background: var(--thm-bdr-color-w)
}
/*---关于我们时间历程 end--- */

/*--------------------------------------------------------------
# Pager Box
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Pager Box
--------------------------------------------------------------*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .records{display: flex;align-items: center;gap: 8px;}

@media (max-width: 767.98px) {
    .pagination{
        flex-direction: column;
    }
}
.list-pager{
    margin: 30px 0px;
}
.list-pager .list-pager__inner{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:微软雅黑;
    font-size: 14px;
}
.pager-box:after{
    display:block;
    height:0;
    visibility:hidden;
    clear:both;
    content:'';
}
.pager{
    float:left;
    position:relative;
    left:50%;
    font-family:微软雅黑;
    font-size: 12px;
    line-height: 15px;
}
.pager a,.pager span{
    position:relative;
    left:-50%;
    display:block;
    float:left;
    margin-left:5px;
    margin-top: 5px;
    background-color: #f1f1f1;
    padding: 10px 15px;
    text-decoration:none;
    border-radius:3px;
}
.pager span{
    border:0;
}
.pager a.js-selected{
    background:var(--thm-bdr-color-w);
    color:#fff;
    cursor:default;
}
.pager a.js-disabled{
    background:#f1f1f1;
    border-color:#f1f1f1;
    cursor:default;
    color: #b5b9bd;
}
.list-pager .list-pager__inner .list-pager__page-info{
    margin:8px 0 0 8px;
}
.list-pager .list-pager__inner .list-pager__page-info .records{
    margin-left: 15px;
    line-height: 40px;
    height: 40px;
    font-size: 13px;
    display: flex;
}
.list-pager .list-pager__inner .list-pager__page-info .records .total{
    position: relative;
}
.list-pager .list-pager__inner .list-pager__page-info .records .loading{
    position: absolute; 
    left: 0;
    top:0; 
    width: 100%; 
    height: 100%; 
    background: #fff;
    z-index:99;
}
.list-pager .list-pager__inner .list-pager__page-info .records .loading .loading-i{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}
/*--------------------------------------------------------------
# 列表详情页头部
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 80px 0 80px;
    z-index: 1;
    background-color: #f5f5f5;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* mix-blend-mode: luminosity; */
    /* opacity: 0.3; */
}

.page-header-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 570px;
    background-repeat: no-repeat;
}

.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
}

.page-header__inner h2 {
    font-size: 40px;
    color: var(--thm-base);
    line-height: 50px;
    font-weight: 900;
}


/*Project Page*/
.project-page {
    padding: 120px 0 90px;
}

.project-page .project-recommend__single {
    margin-bottom: 30px;
}

/*--------------------------------------------
# 当前位置 start
 --------------------------------------------*/
 .current-location{
    height: 50px;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    align-items: center;    font-size: 14px;
}
.current-location2{
    margin-top: -20px;
}
.current-location .current-location__inner{
    position: relative;
    padding: 13px 0px;
    height: 24px;
    line-height: 24px;
    font-family: "Microsoft Yahei";
    color: #9e9e9e;
    display: flex;
    align-items: center;
}
.current-location .current-location__inner .home{
    display: block;
    width: 20px;
    height: 16px;
}
.current-location .current-location__inner span{
    padding-right: 5px;
    color: var(--thm-black);
    padding-left: 5px;
}
.current-location .current-location__inner a{
    color: var(--thm-black);
}
.current-location .current-location__inner a:last-child{
    color: var(--thm-primary);
}
.current-location .current-location__inner a:hover{
    color: var(--thm-primary);
}
/*--------------------------------------------
# 当前位置 end
 --------------------------------------------*/

