/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

:root {
    --thm-font: 'Microsoft YaHei', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #545A61;
    --thm-gray-rgb: 123, 121, 129;
    --thm-primary: #1660E1;
    --thm-primary-rgb: 25, 137, 251;
    --thm-black: #333333;
    --thm-black-rgb: 27, 24, 37;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-extra: #42d9be;
    --thm-extra-rgb: 66, 217, 190;
    --thm-bdr-color: #dae3e9;
    --thm-bdr-color-rgb: 218, 227, 233;
    --thm-bdr-radius: 8px;
    --thm-th:#333333;
    --thm-td:#545A61;
}
img{
    border-radius: 6px;
}
.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::placeholder {
    color: inherit;
    opacity: 1;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    opacity: 0.40;
    z-index: -1;
}

canvas {
    display: block;
}
.main-menu-opacity{
    padding: 0 80px;
    background-color: #fff;
    opacity: 0.5;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--thm-primary);
    color: var(--thm-base);

    font-size: 14px;
    text-transform: uppercase;
    padding: 3px 30px 3px;
    border-radius: 8px;
    transition: all 0.3s linear;
    overflow: hidden;
    letter-spacing: 0.2em;
    z-index: 1;
}
.thm-btn.no-bg {
    margin-left: 20px;
    padding: 2px 29px 2px;
    color: var(--thm-primary);
    border: 1px solid var(--thm-primary);
    background-color:transparent;
    overflow: visible;
}
.digit .thm-btn.no-bg {
    color: #fff;
    background-color: var(--thm-primary);
    margin-top: 20px;
    margin-left: 0;
}
.cta-one .thm-btn.no-bg {
    color: var(--thm-primary);
    border: 1px solid var(--thm-primary);
    background-color:#fff;
}
.case-meal .thm-btn.no-bg{
    color: #fff;
}

.thm-btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--thm-black);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    border-radius: 8px;
    z-index: -1;
}

.thm-btn:hover:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.thm-btn:hover {
    color: var(--thm-base);

}
 /* 二维码弹出层样式 */
    .qr-code-popup {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 1px;
        padding: 10px;
        background: #0c0c0c;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }
    .qr-code-popup.active {
        max-height: 230px; /* 根据二维码实际高度调整 */
        opacity: 1;
    }
    .qr-code-popup img {
        width: 140px;
        height: auto;
    }

    @media (max-width: 768px) {
        .qr-code-popup {
            left: 0;
            transform: none;
        }
    }

    .qr-code-popup1 {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 1px;
        padding: 10px;
        background: #0c0c0c;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }
    .qr-code-popup1.active {
        max-height: 230px; /* 根据二维码实际高度调整 */
        opacity: 1;
    }
    .qr-code-popup1 img {
        width: 140px;
        height: auto;
    }

    @media (max-width: 768px) {
        .qr-code-popup1 {
            left: 0;
            bottom: 100%;
            transform: none;
        }
    }



.section-title {
    padding-top: 45px;
    padding-bottom: 35px;
}

.section-title__tagline {
    display: inline-flex;
    color: var(--thm-gray);
    font-size: 18px;
    align-items: center;
    line-height: 30px;
    margin-bottom: 2px;
    font-weight: 500;
}

.section-title__title {
    margin: 0;
    font-weight: 600;
    color: var(--thm-black);
    font-size: 28px;
    line-height: 60px;
    letter-spacing: 0.03em;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--thm-primary);
    color: #fff;
    cursor: pointer;
}


.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* scroll to top */
.scroll-to-top {
    display: none;
    width: 45px;
    height: 45px;
    background: var(--thm-primary);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--thm-black);
}

.scroll-to-top:hover i {
    color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.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-address {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header__top-address li {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 35px;
}

.main-header__top-address li+li {
    margin-left: 30px;
}

.main-header__top-address li .icon span {
    font-size: 14px;
    color: var(--thm-base);

}

.main-header__top-address li .text {
    margin-left: 10px;
}

.main-header__top-address li .text p {
    font-size: 12px;
    font-weight: 500;
    color: #ada8ba;
    margin: 0;
}

.main-header__top-address li .text a {
    font-size: 12px;
    font-weight: 500;
    color: #ada8ba;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header__top-address li .text a:hover {
    color: var(--thm-base);

}

.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;
    padding: 0 80px;
    z-index: 91;
}

.main-menu-wrapper {
    position: relative;
    display: block;
}

.main-menu-wrapper-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-menu-wrapper__left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-menu-wrapper__logo {
    position: relative;
    float: left;
    margin-right: 165px;
}

.main-menu-wrapper__main-menu {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper__right {
    position: relative;
    display: flex;
    float: right;
    align-items: center;
}

.main-menu-wrapper__call {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.main-menu-wrapper__call-icon {
    font-size: 30px;
    color: var(--thm-primary);
    -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: 10px;
}

.main-menu-wrapper__call-number h5 {
    color: var(--thm-black);
    font-size: 20px;
    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__search-box-cart-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8.5px 0;
}

.main-menu-wrapper__cart {
    display: block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color:var(--thm-primary);
    border-radius: 6px;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper__cart {
    margin-left: 25px;
}

.main-menu-wrapper__search:hover {
    color: var(--thm-extra);
}

.main-menu-wrapper__cart:hover {
    color: var(--thm-extra);
}









.stricky-header.main-menu {
    padding: 0 80px;
    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;
}

@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>li,
.stricky-header .main-menu__list>li {
    padding-top: 20px;
    padding-bottom: 20px;
    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;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--thm-gray);
    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-primary);
    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-black);
    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-extra);
}

.main-menu .main-menu__list>li:hover>a::before {
    background-color: var(--thm-extra);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: var(--thm-bdr-radius);
    border-bottom-right-radius: var(--thm-bdr-radius);
}


.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 {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.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: 16px;
    line-height: 30px;
    color: var(--thm-black);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
}
.main-menu .main-menu__list li ul li.current>a,
.stricky-header .main-menu__list li ul li.current>a {
    font-weight: bold;
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    background-color: var(--thm-primary);
    color: #fff;
}

.main-menu .main-menu__list li ul li>ul,
.stricky-header .main-menu__list li ul li>ul {
    top: 0;
    left: 100%;
}

.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: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important
    }
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.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-primary);
    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;
    }
}


/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.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;
}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--thm-text-dark);
    cursor: pointer;
}

.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-secondary);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.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-bottom: 30px;
}

.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;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--thm-primary);
    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-primary);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--thm-primary);
    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
--------------------------------------------------------------*/
.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;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-primary);
}

.search-popup__content .thm-btn i {
    margin: 0;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-slider .swiper-slide {
    position: relative;
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    mix-blend-mode: luminosity;
    opacity: .8;
}


.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: 180px;
    padding-bottom: 275px;
    z-index: 30;
}
.main-slider.sc-saas .container {
    position: relative;
    padding-top: 176px;
    padding-bottom: 176px;
    z-index: 30;
}

.main-slider__content {
    position: relative;
    display: block;
    z-index: 30;
}

.main-slider__content .title-line{
    position: relative;
    padding: 0 25px;
    text-align: center;
    z-index: 1;
}
.main-slider__content .title-line::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--thm-black);
    opacity: 0.8;
}

.main-slider h2 {
    margin: 0;
    margin-bottom: 20px;
    color: #000;
    font-weight: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-size: 38px;
    line-height: 45px;
    letter-spacing:0.02em;
    z-index: 30;
}

.main-slider p {
    font-size: 20px;
    color: #000;
    margin: 0;
    line-height: 30px;
    margin-bottom: 53px;
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
    letter-spacing: 0.1em;
    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 .thm-btn,
.main-slider .swiper-slide-active p,
.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active p {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.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: 63px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--thm-base);

    background: transparent;
    border: 2px solid rgba(var(--thm-base-rgb), 1);
    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: 1;
}

.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 Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
}

.main-slider-two .container {
    padding-top: 203px;
    padding-bottom: 220px;
}

.main-slider-two .main-slider__content {
    position: relative;
    display: block;
    text-align: center;
    z-index: 1;
}


.main-slider-two__map {
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 410px;
    width: 582px;
    transform: translateX(-50%);
    opacity: 0.15;
    z-index: -1;
}

.main-slider-two h3 {
    font-size: 90px;
    color: var(--thm-base);

    line-height: 90px;
    font-weight: lighter;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-120px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
}

.main-slider-two .swiper-slide-active h3 {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider-two h2 {
    letter-spacing: 0;
}

.main-slider-two h2 span {
    position: relative;
    display: inline-block;
}

.main-slider-two h2 span:before {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    content: "";
    height: 5px;
    background-color: var(--thm-base);
}

.main-slider-two p {
    margin-bottom: 43px;
}

.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;
}



/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    padding: 99px 0 208px;
}

.brand-one .swiper-container {
    padding: 0 10px;
}

.brand-one .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-one .swiper-slide img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0.3;
    width: auto;
}

.brand-one .swiper-slide img:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
    position: relative;
    display: block;
    padding: 0;
    z-index: 1;
    margin-top: -110px;
}
.feature-one-tpbg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color:#fff;
    opacity: 0.8;
    z-index: -1;
}

.feature-one__top {
    position: relative;
    display: block;
}

.feature-one__single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    border-radius: var(--thm-bdr-radius); */
    padding: 20px;
}

.feature-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 5px;
}

.feature-one__icon span {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 65px;
    font-size: 65px;
    color: var(--thm-extra);
    transform: scale(1);
    transition: transform 500ms linear, color 500ms linear;
}
.icon-ft{
    background-repeat: no-repeat;
   background-position: center center;
   background-size:contain; 
}
.icon-ft-one{
    background-image: url(../pic/icon-ft-one.png);
}
.icon-ft-two{
    background-image: url(../pic/icon-ft-two.png);
}
.icon-ft-three{
    background-image: url(../pic/icon-ft-three.png);
}
.icon-ft-four{
    background-image: url(../pic/icon-ft-four.png);
}

.feature-one__single:hover .feature-one__icon span {
    transform: scale(.9);
    color: var(--thm-primary);
}

.feature-one__text {
    margin-left: 30px;
}

.feature-one__text h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 30px;
}

.feature-one__text p {
    font-size: 16px;
    margin: 0;
    line-height: 30px;
}
.feature-one__text .add{
    font-size: 13px;
    padding-left: 2px;
}
.feature-one__text .year{
    font-size: 10px;
    padding-left: 2px;
}

.feature-one__bottom {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--thm-bdr-color);
    padding-bottom: 38px;
    padding-top: 7px;
}

.feature-one__bottom-inner {
    position: relative;
    display: block;
    text-align: center;
}

.feature-one__bottom-inner p {
    font-size: 16px;
    margin: 0;
}

.feature-one__bottom-inner a {
    color: var(--thm-primary);
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-one__bottom-inner a:hover {
    color: var(--thm-extra);
}

.feature-one__bottom-inner a:before {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 2px;
    content: "";
    background-color: var(--thm-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-one__bottom-inner a:hover:before {
    background-color: var(--thm-extra);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one__left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.about-one__img-box {
    position: relative;
    display: block;
}

.about-one__img-box:before {
    position: absolute;
    top: 0;
    left: -50px;
    width: 30px;
    height: 200px;
    background-color: var(--thm-extra);
    content: "";
    border-radius: var(--thm-bdr-radius);
}

.about-one__img-box:after {
    position: absolute;
    top: 220px;
    left: -50px;
    width: 30px;
    height: 200px;
    background-color: var(--thm-primary);
    content: "";
    border-radius: var(--thm-bdr-radius);
}

.about-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-one__img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.about-one__img:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.about-one__img>img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
}

.about-one__small-img {
    position: absolute;
    bottom: -90px;
    left: -120px;
    z-index: 2;
}

.about-one__small-img>img {
    border-radius: var(--thm-bdr-radius);
}

.about-one__right {
    position: relative;
    display: block;
}

.about-one__right .section-title {
    margin-bottom: 28px;
}

.about-one__text {
    margin: 0;
}

.about-one__points-box {
    position: relative;
    display: block;
    margin-left: 21px;
    margin-top: 32px;
}

.about-one__points-box:before {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: -21px;
    content: "";
    background-color: var(--thm-primary);
    width: 2px;
}

.about-one__points {
    position: relative;
    display: block;
}

.about-one__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__points li+li {
    margin-top: 6px;
}

.about-one__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__points li .icon span {
    font-size: 20px;
    color: var(--thm-extra);
}

.about-one__points li .text {
    margin-left: 16px;
}

.about-one__points li .text p {
    color: var(--thm-black);
    margin: 0;
}

.about-one__it-solutions {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--thm-bdr-color);
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 39px;
}

.about-one__it-solutions-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__it-solutions-icon span {
    font-size: 70px;
    color: var(--thm-extra);
    position: relative;
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.about-one__it-solutions:hover .about-one__it-solutions-icon span {
    transform: rotateY(360deg);
}

.about-one__it-solutions-text-box {
    margin-left: 20px;
}

.about-one__it-solutions-text {
    font-weight: 600;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
}



/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 0;
}
.services-one .service-tabs{
    margin-bottom: 40px;
    border-bottom: 1px solid #e6e6e6;
}
.services-one .service-tabs .tab-item.active .item-ac::before{
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -50px;
    bottom: -1px;
    width: 100px;
    height: 2px;
    background-color: var(--thm-primary);
}

.services-one .swiper-container {
  height: 334px;
  width: 100%;
  position: relative;
}
.services-one.part-saas .swiper-container{
    height: 454px;
}

.services-one .swiper-slide{
    display: flex;
    align-items: center;
}
.services-one .swiper-slide-content{
    width: 60%;
}


.services-one .row {
    --bs-gutter-x: 15px;
}

.services-one__single {
    position: relative;
    display: block;
    z-index: 2;
}

.services-one__single:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
}

.services-one .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 334px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    mix-blend-mode: luminosity;
}

.services-one.part-saas .swiper-container{
    height: 454px;

}
.services-one.part-saas .image-layer{
    height: 454px;
}
.services-one .container {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 30;
}
.services-one.part-saas .container {
    padding-top: 0;
    padding-bottom: 0;
}

.services-one__icon {
    position: relative;
    height: 130px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 500ms ease;
    -webkit-transition-delay: 400ms;
    -moz-transition-delay: 400ms;
    -ms-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    transition-delay: 400ms;
    z-index: 2;
}
.services-item-title{
    height: 50px;
    line-height: 50px;
    text-align: center;
}
.services-one .sc-ul{
    margin-left: 20px;
    list-style-type: none;
}
.services-one .sc-ul li{
    font-size: 14px;
    margin: 15px 0;
}

.services-one .sc-ul li h3{
    font-weight: bold;
    font-size: 18px;
    opacity: 0;
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  transition: .2s ease .5s;
}

.services-one .sc-ul li h3 .icon-cr {
    display: inline-block; /* 转换为块级元素以便设置尺寸 */
    width: 18px;    /* 整体容器宽度（控制渐变圆环最大范围） */
    height: 18px;   /* 整体容器高度 */
    position: relative; /* 作为伪元素的定位基准 */
    margin-right: 2px;
}
.services-one .sc-ul li h3 .icon-cr:hover {
  transform: scale(1.1);
}
.services-one .sc-ul li h3 .icon-cr::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;   /* 实心圆直径 */
    height: 6px;  /* 实心圆直径 */
    border-radius: 50%;
    background: #2563eb; /* 主色（可根据实际主题调整） */
}
.services-one .sc-ul li:hover::after h3 .icon-cr {
  background: radial-gradient(circle, rgba(2, 26, 247, 0.8) 0%, transparent 70%);
}
.tab-item.active .services-item-title{
    font-weight: bold;
    color: #2563eb;
}


.services-one .sc-ul li p{
    margin: 5px 0 0;
    padding: 0;
    padding-left: 20px;
    line-height: 20px;
     opacity: 0;
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  transition: .2s ease .6s;
}

.services-one .swiper-slide-active .sc-ul li h3{
   opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  transition: .4s ease .3s;
}
.services-one .swiper-slide-active .sc-ul li p{
    opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  transition: .4s ease .4s;
}

.services-one .left-content{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 30px;
    width:43%;
    color: #fff;
}
.services-one .left-content .left-content-t{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 0 20px;
}
.services-one .left-content .left-content-t::before{
    content: '';
    position: absolute;
    bottom: 0;
    left:0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #0146a0 0%, transparent 90%);
    opacity: 0.6;
}
.services-one .left-content .sc-ul{
    padding: 0;
    margin: 10px 0 20px;
}
.services-one .left-content .sc-ul li{
    position: relative;
    line-height: 20px;
    margin: 10px 0;
    padding-left: 10px;
}
.services-one .left-content .sc-ul li .icon-lt-cr{
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px;
}
.services-one .left-content .sc-ul li .icon-lt-cr::before{
    content: '';
    position: absolute;
    top: 50%;
    left:0;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #2563eb;
}
.services-one .left-content .sc-ul li .icon-lt-cr::after {
    content: '';
    position: absolute;
    top: 50%;
    left:0;
    transform: translate(-50%, -50%);
    width: 6px;  /* 渐变圆环最大直径（与容器同宽高） */
    height: 6px; /* 渐变圆环最大直径 */
    border-radius: 50%;
    /* 径向渐变：从主色开始，1px间隔后逐渐透明 */
    background: radial-gradient(circle, #f1e9e9 0%, #0dcaf0 3px, #0921e4 60%);
}

.services-one .left-content .thm-btn{
    border: 1px solid #0dcaf0;
}

.services-one .icon-sc{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size:contain;
}
.services-one .icon-sc-one{
   background-image: url(../pic/icon-sc-one.jpg);
}
.services-one .icon-sc-two{
    background-image: url(../pic/icon-sc-two.jpg);
}
.services-one .icon-sc-three{
    background-image: url(../pic/icon-sc-three.jpg);
}

.services-one .icon-sc-four{
    background-image: url(../pic/icon-sc-four.jpg);
}


/*--------------------------------------------------------------
# Solution One
--------------------------------------------------------------*/
.solution-one {
    position: relative;
    display: block;
    padding: 0 0 0;
    z-index: 1;
    background-color: var(--thm-white);
}

.solution-one .solution-one-bg {
    position: absolute;
    width: 100%;
    height: 368px;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}
.solution-one .section-content{
    display: flex;
    align-items: center;
    height: 368px;
}
.solution-one .section-content .section-tabs{
    width: 30%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-right: 3px solid #f1f1f1;
}
.solution-one .section-tabs .section-tab-item{
    position: relative;  /* 为伪元素定位 */
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: left;
    padding-left: 50px;
    margin: 10px 0;
    cursor: pointer; 
    transition: all 0.3s ease; 
}
.section-tabs .section-tab-item.active {
    color: var(--thm-primary);
    font-weight: bold;
    border-left: 2px solid #2563eb; 
    background: linear-gradient(to right, #a9cbf7 0%, transparent 80%);
}

.solution-one h4{
   font-weight: bold;
}

.solution-one .swiper-container{
    width: 65%;
    height: 368px;
    margin-left: 5%;
}
.solution-one .swiper-container .swiper-slide{
    height: 100%; /* 滑块高度与容器一致 */
    display: flex;
    align-items: center; /* 内容垂直居中（可选） */
}

.solution-one .swiper-container .container p{
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}

.solution-one .swiper-container .container p .sv{
    margin-right: 25px;
    padding-left: 26px;
    position: relative;
    font-size: 16px;
    line-height: 25px;
}
.solution-one .swiper-container .container p .sv:before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: cover;
}

.solution-one .swiper-container .container p .sv.s1:before{
    background-image: url(../svg/sv-s1.svg);
}
.solution-one .swiper-container .container p .sv.s2:before{
    background-image: url(../svg/sv-s2.svg);
}
.solution-one .swiper-container .container p .sv.s3:before{
    background-image: url(../svg/sv-s3.svg);
}
.solution-one .swiper-container .container p .sv.s4:before{
    background-image: url(../svg/sv-s4.svg);
}
.solution-one .swiper-container .container p .sv.s5:before{
    background-image: url(../svg/sv-s5.svg);
}
.solution-one .swiper-container .container p .sv.s6:before{
    background-image: url(../svg/sv-s6.svg);
}

.solution-one .swiper-container .container p .sv.p2-1:before{
    background-image: url(../svg/p2-1.svg);
}
.solution-one .swiper-container .container p .sv.p2-2:before{
    background-image: url(../svg/p2-2.svg);
}
.solution-one .swiper-container .container p .sv.p2-3:before{
    background-image: url(../svg/p2-3.svg);
}
.solution-one .swiper-container .container p .sv.p2-4:before{
    background-image: url(../svg/p2-4.svg);
}

.solution-one .swiper-container .container p .sv.p3-1:before{
    background-image: url(../svg/p3-1.svg);
}
.solution-one .swiper-container .container p .sv.p3-2:before{
    background-image: url(../svg/p3-2.svg);
}
.solution-one .swiper-container .container p .sv.p3-3:before{
    background-image: url(../svg/p3-3.svg);
}
.solution-one .swiper-container .container p .sv.p3-4:before{
    background-image: url(../svg/p3-4.svg);
}

.solution-one .swiper-container .container p .sv.p4-1:before{
    background-image: url(../svg/p4-1.svg);
}
.solution-one .swiper-container .container p .sv.p4-2:before{
    background-image: url(../svg/p4-2.svg);
}
.solution-one .swiper-container .container p .sv.p4-3:before{
    background-image: url(../svg/p4-3.svg);
}
.solution-one .swiper-container .container p .sv.p4-4:before{
    background-image: url(../svg/p4-4.svg);
}
.solution-one .swiper-container .container .item-ft-btn{
    margin-top: 40px;
}


/*--------------------------------------------------------------
# Fun One
--------------------------------------------------------------*/
.fun-one {
    position: relative;
    display: block;
    padding: 0;
}

.news-page {
    padding-bottom: 120px;
}

.fun-one__single {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
}
.fun-one-item{
    width: 20%;
}

.fun-one__img {
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    overflow: hidden;
    z-index: 10;
}

.fun-one__img img {
    width: 100%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    transition: all 500ms ease;
    transform: scale(1);
}

.fun-one__single:hover .fun-one__img img {
    transform: scale(1.05);
}

.fun-one__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);

    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
}

.fun-one__img>a>span {
    position: relative;
}

.fun-one__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;
}

.fun-one__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%);
}

.fun-one__img>a:hover>span::before,
.fun-one__img>a:hover>span::after {
    background-color: var(--thm-primary);
}

.fun-one__single:hover .fun-one__img>a {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.fun-one__date-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--thm-base);
    padding: 17px 22px 20px;
    border-top-right-radius: 8px;
}

.fun-one__date-box p {
    font-size: 14px;
    color: var(--thm-black);
    font-weight: 800;
    margin: 0;
    line-height: 17px;
    text-align: center;
}

.fun-one__content {
    position: relative;
    display: block;
    width:100%;
    height: 240px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 30px 10px rgb(0, 0, 0, .08);
    margin-top: -40px;
    padding: 50px 25px 30px;
    border-bottom: 3px solid transparent;
    border-radius: 8px;
    transition: all 500ms ease;
    z-index: 1;
}

.fun-one__single:hover .fun-one__content {
    border-bottom: 3px solid var(--thm-extra);
}

.fun-one__meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
}

.fun-one__meta li+li {
    margin-left: 10px;
}

.fun-one__meta li a {
    color: var(--thm-gray);
    font-size: 14px;
    transition: all 500ms ease;
}

.fun-one__meta li a:hover {
    color: var(--thm-extra);
}

.fun-one__meta li a i {
    color: var(--thm-extra);
}

.fun-one__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
}

.fun-one__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.fun-one__single:hover .fun-one__title a {
    color: var(--thm-primary);
}

.fun-one__text {
    font-size: 14px;
    color: #858A8F;
    margin: 0;
    line-height: 20px;
    padding-top: 13px;
    padding-bottom: 8px;
}

.fun-one__read-more-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    display: inline-block;
    transition: all 500ms ease;
}

.fun-one__read-more-btn:hover {
    color: var(--thm-extra);
}

/*--------------------------------------------------------------
pro-sw
--------------------------------------------------------------*/
.pro-sw{
    position: relative;
   display: block;
}
.pro-sw__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.pro-sw__img {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.pro-sw__img img {
    width: 100%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    transition: all 500ms ease;
    transform: scale(1);
}
.pro-sw__single:hover .pro-sw__img img {
    transform: scale(1.05);
}

.pro-sw__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);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
}

.pro-sw__img>a>span {
    position: relative;
}

.pro-sw__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;
}

.pro-sw__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%);
}

.pro-sw__img>a:hover>span::before,
.pro-sw__img>a:hover>span::after {
    background-color: var(--thm-primary);
}

.pro-sw__single:hover .pro-sw__img>a {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
    z-index: 99;
}
.pro-sw__date-box {
    position: absolute;
    display: flex;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #3A444B;
}

.ew-one{
    position: relative;
    display: block;
}
.ew-one .section-title{
    margin-top: 0;
}
.ew-one .ew-one-bg{
    width: 1350px;
    margin: 0 auto;
    padding:50px 0;
    background-color: #F5F7FB;
}
.ew-one .pro-xn-item{
    width: 20%;
}

.ew-one .fun-one__content{
    border-radius: 8px;
    height: 220px;
}
.ew-one .fun-one__text{
    padding: 15px 15px 0;
    margin-top: 15px;
}
/*--------------------------------------------------------------
# pro-sw"
--------------------------------------------------------------*/
.pro-xn{
    position: relative;
    display: block;
    padding-bottom: 40px;
}
.pro-xn-item{
    width: 20%;
}
.pro-xn__img-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}
.pro-xn__img-box .pro-xn__img-box-bg{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    border: 1px solid #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    z-index: -1;
}
.pro-xn__img-box .box-title{
    position: relative;
    display: block;
    text-align: center;
    color: var(--thm-black);
    font-weight: 600;
    font-size: 18px;
}
.pro-xn__img-box .box-txt{
    text-align: center;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 20px;
}
.pro-xn__img-box h3{
    font-size: 18px;
    color: var(--thm-primary);
    position: relative;
    padding-left: 25px;
    font-weight: 600;
    margin: 10px 0;
}
.pro-xn__img-box h3::before{
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url(../pic/pro/pro-ico.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.pro-xn__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.pro-xn__img:after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.pro-xn__img-box:hover .pro-xn__img:after {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}

.pro-xn__img img {
    width: 100%;
    border-radius: 5px;
}


/*--------------------------------------------------------------
# pro-bd"
--------------------------------------------------------------*/
.pro-bd{
    position: relative;
    display: block;
}
.pro-bd .row{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pro-bd-item{
    width: 100px;
    height: 100px;
    margin: 0 20px;
    padding: 0;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.pro-bd-item img{
    width: 100%;
    height: 100%;
}

.pro-bd-item:after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.pro-bd-item:hover .pro-bd-item:after {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}

.pro-bd-item img {
    width: 100%;
    border-radius: 5px;
}

.pro-sc{
    position: relative;
    display: block;
}
.pro-sc .r-img{
    position: relative;
    display: block;
    width: 65px;
}
.pro-sc .r-img img{
    width: 100%;
    height: 100%;
}
.pro-sc .left_row{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px; 
}
.pro-sc .left_row .r-img-ft{
    width: 100%;
    height: 2px;
    display: block;
    margin: 15px 0;
    background: linear-gradient(to right, #0363e0 0%, transparent 100%);
}
.pro-sc .left_row .left_row-title{
    font-size: 18px;
    font-weight: 600;
    color: #3A3A3A;
    line-height: 24px;
}
.pro-sc .left_row .left_row-txt{
    margin-top: 10px;
    font-size: 16px;
    color: #5B5B5B;
    line-height: 24px;
}

.pro-yy{
    position: relative;
    display: block;
}
.pro-yy .row{
    background-color: #F4F7FD;
    border: 1px solid #F0F2F5;
    border-radius: 2px;
    padding: 50px 60px 20px;
    box-shadow: 2px 0 10px 0 rgba(232, 243, 246, 0.9);
}
.pro-yy .title-line{
    position: relative;
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
.pro-yy .title-line .l-img{
    width: 60px;
    height: 60px;
    display: block;
}
.pro-yy .title-line .l-img img{
    width: 100%;
    height: 100%;
}
.pro-yy .r-title{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 90%;
    padding-left: 20px;
}
.pro-yy .r-title .r-title-t{
    font-size: 18px;
    font-weight: 600;
    color: #3A3A3A;
    line-height: 50px;
}
.pro-yy .r-title .r-img-ft{
    width: 100%;
    height: 2px;
    display: block;
    margin-top: 10px;
    background: linear-gradient(to right, #0363e0 0%, transparent 80%);
}
.pro-yy  .p_row-txt{
    font-size: 16px;
    color: #5B5B5B;
    line-height: 22px;
    letter-spacing: 1px;
    margin: 30px 0;
    width: 90%;
}


.pro-yee{
    position: relative;
    display: block;
}
.pro-yee .item{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 40px;
    background-color: #EEFBFF;
}
.pro-yee .title-line{
    position: relative;
    display: flex;
    flex-direction: row;
    margin-bottom: 25px;
}
.pro-yee .title-line .l-img{
    width: 60px;
    height: 60px;
    display: block;
}
.pro-yee .title-line .l-img img{
    width: 100%;
    height: 100%;
}
.pro-yee .r-title{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 90%;
    padding-left: 20px;
}
.pro-yee .r-title .r-title-t{
    font-size: 18px;
    font-weight: 600;
    color: #3A3A3A;
    line-height: 40px;
}
.pro-yee .r-title .r-img-ft{
    width: 100%;
    height: 2px;
    display: block;
    margin-top: 10px;
    background: linear-gradient(to right, #0363e0 0%, transparent 90%);
}
.pro-yee .item-content{
    padding-left: 80px;
}
.pro-yee .item-content.p10{
    padding-left: 10px;
}
.pro-yee  .p_row-txt{
    font-size: 16px;
    color: #5B5B5B;
    line-height: 20px;
    width: 90%;
}
.pro-yee  .p_row-txt.x{
    padding-left: 30px;
    position: relative;
}
.pro-yee  .p_row-txt.x::before{
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../pic/solution/痛点.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pro-mc{
    position: relative;
    display: block;
    margin-top: 40px;
}
.pro-mc .pro-mc-bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size:100% 100%;
    background-position: center bottom;
    background-blend-mode: luminosity;
    opacity: 1;
    z-index: -1;
    background-image: url('../pic/solution/cd-bg.jpg');
    background-color: linear-gradient(to right, #F6FEFF 0%, #E8FBFF 90%);
}
.pro-mc .left-content{
    width: 50%;
    margin-top: 50px;
    padding-bottom: 44px;
}
.pro-mc .item{
    margin: 30px 0;
}
.pro-mc .left-content .title-t{
    font-weight: 600;
    font-size: 23px;
    color: #1660E1;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.pro-mc .left-content .title-ft {
    width: 100%;
    height: 2px;
    display: block;
    margin: 15px 0;
    background: linear-gradient(to right, #0363e0 0%, transparent 100%);
}
.pro-mc .item-content .p_row-txt{
    position: relative;
    font-family: Microsoft JhengHei UI, Microsoft JhengHei UI;
    font-weight: 400;
    font-size: 16px;
    color: #545A61;
    line-height: 24px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-left: 30px;
}
.pro-mc .item-content .p_row-txt::before{
    content: '';
    position: absolute;
    left: -30px;
    width: 25px;
    height: 25px;
    background-image: url(../pic/pro/pro-ico.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.pro-dzkf{
    position: relative;
    display: block;
    height: 650px;
}
.pro-dzkf .container .module-title .module-title-h,
.pro-dzkf .container .module-title .module-title-t{
    color: #fff;
}

.pro-dzkf .module-title-t{
    color: #fff;
}


.td-one{
   position: relative;
   display: block;
}
.td-one .td-one-content{
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size:cover;
}
.td-one .text-center{
    padding-bottom: 100px;
}
.td-one .container{
    padding: 100px 30px 50px;
    
}
.td-one .container .row{
    width: 90%;
    margin: 0 auto;
}
.td-one .td-one-h5{
    font-weight: bold;
    margin: 25px 0;
    text-align: center;
}
.td-one .marginTop{
    margin-top: -215px;
}
.td-one .pro-xn__img-box {
    position: relative;
    display: block;
    padding: 0;
    box-shadow: 0 10px 15px 0 rgba(187,216,246, 0.8);
    border-radius: 10px;
}
.td-one .img-box{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px 30px;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.td-one .img-box .img-box-img{
    width: 80px;
    height: 80px;
}
.td-one .img-box .img-box-img img{
    width: 100%;
    height: 100%;
}

.td-one .img-box .img-box-th{
    font-weight: bold;
    font-size: 20px;
    color: #363636;
    height: 60px;
    line-height: 60px;
    margin: 10px 0;
}
.td-one .img-box .img-box-td{
    font-size: 14px;
    line-height: 20px;
    color:#707070;
    text-align: center;
}


/*--------------------------------------------------------------
# taste-one
--------------------------------------------------------------*/
.taste-one{
   position: relative;
   display: block;
   padding: 0;
}
.taste-one .container{
    padding: 100px 30px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}
.taste-one .part-one-content{
    background: linear-gradient(to right, #F6FAFD,#DFF7FF);
}
.taste-one .part-two-content{
    background: linear-gradient(to right, #DFF7FF,#F6FAFD);
}
.taste-one .part-two-content .container{
    padding: 80px 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    display: flex;
    justify-content: flex-end;
}
.taste-one .part-one-content .left-content{
    width: 52%;
}
.taste-one .part-two-content .left-content{
    width: 48%;
}
.taste-one .left-content .left-content-t{
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    color: #3D4346;
    position: relative;
}
.taste-one .left-content .left-content-t::before{
    content: '';
    position: absolute;
    left: 0;
    top: -40px;
    width: 120px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: cover;
}
.taste-one .left-content .left-content-t.one::before{
    background-image: url(../pic/taste/one.png);
}
.taste-one .left-content .left-content-t.two::before{
    background-image: url(../pic/taste/two.png);
}

.taste-one .left-content .sc-ul{
    margin:15px 0 30px;
    padding: 0;
    list-style-type: none;
}
.taste-one .left-content .sc-ul li{
    font-size: 16px;
    color: #7E868C;
    line-height: 22px;
    margin: 10px 0;
    padding-left: 8px;
}
.taste-one .left-content .sc-ul.dd li .icon-lt-cr{
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px;
}
.taste-one .left-content .sc-ul.dd li::before{
    content: '';
    position: absolute;
    top: 11px;
    left:0;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #2563eb;
}
.taste-one .left-content .sc-ul.dd li::after {
    content: '';
    position: absolute;
    top: 11px;
    left:0;
    transform: translate(-50%, -50%);
    width: 6px;  /* 渐变圆环最大直径（与容器同宽高） */
    height: 6px; /* 渐变圆环最大直径 */
    border-radius: 50%;
    /* 径向渐变：从主色开始，1px间隔后逐渐透明 */
    background: radial-gradient(circle, #2563eb, rgb(186, 203, 248));
}
.taste-one .section-title__title{
    font-size: 26px;
}
.taste-one .part-three-content .container{
    padding: 30px 100px 30px;
    background-position: center;
    background-size: cover;
}
.taste-one .part-three-content .sc-ul li{
    margin: 15px 0;
}
.taste-one .part-three-content .sc-ul h3{
    font-size: 16px;
    color: #fff;
    position: relative;
    padding-left: 25px;
}
.taste-one .part-three-content .sc-ul p{
    font-size: 14px;
    color: #fff;
    margin: 10px 0;
    padding-left: 3px;
}
.taste-one .part-three-content .sc-ul h3::before{
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(../pic/pro/pro-ico.png);
    background-repeat: no-repeat;
    background-size: cover;
}


/*--------------------------------------------------------------
# taste-two 
--------------------------------------------------------------*/
.taste-two{
   position: relative;
   display: block;
}
.taste-two .container{
    height: 380px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.taste-two .part-one-content .container{
    background-image: url(../pic/solution/t_1.png);
}
.taste-two .part-two-content{
    background-image: url(../pic/solution/t_2.jpg);
}
.taste-two .part-one-content{
    background: linear-gradient(to right, #F6FAFD,#DFF7FF);
}
.taste-two .left-content{
    margin-top: 50px;
}
.taste-two .part-three-content,
.taste-two .part-two-content,
.taste-two .part-one-content
{
    background-repeat: no-repeat;
    background-position: center center;
    background-size:100% 100%;
}

.taste-two .part-two-content .left-content .sc-ul li{
    color: #fff;
}

.taste-two .part-two-content .left-content .left-content-t{
    color: #fff;
}

.taste-two .part-two-content .container{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.taste-two .part-one-content .left-content{
    width: 52%;
}
.taste-two .part-two-content .left-content{
    width: 48%;
}
.taste-two .left-content .left-content-t{
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    color: #3D4346;
    position: relative;
}
.taste-two .left-content .left-content-t::before{
    content: '';
    position: absolute;
    left: 0;
    top: -40px;
    width: 120px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: cover;
}
.taste-two .left-content .left-content-t.one::before{
    background-image: url(../pic/taste/one.png);
    background-size: 70%;
}
.taste-two .left-content .left-content-t.two::before{
    background-image: url(../pic/taste/two.png);
    background-size: 70%;
}
.taste-two .left-content .left-content-t.three::before{
    background-image: url(../pic/taste/three.png);
    background-size: 70%;
}

.taste-two .left-content .sc-ul{
    margin:15px 0 30px;
    padding: 0;
    list-style-type: none;
}
.taste-two .left-content .sc-ul li{
    font-size: 16px;
    color: #7E868C;
    line-height: 22px;
    margin: 10px 0;
    padding-left: 8px;
}
.taste-two .left-content .sc-ul li .icon-lt-cr{
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px;
}
.taste-two .left-content .sc-ul li::before{
    content: '';
    position: absolute;
    top: 11px;
    left:0;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2563eb;
}
.taste-two .section-title__title{
    font-size: 26px;
}

.project-integral-two{
    position: relative;
    display: block;
    margin-bottom: 40px;
}
.project-integral-three{
    position: relative;
    display: block;
    background-color: #DFF7FF;
    padding: 1px 0 50px;
    z-index: 1;
}
.project-integral-three.mealcard{
    padding: 1px 0;
    background-color: #F5F6FA;
}
.project-integral-three .sc-ul{
    list-style: none;
}
.project-integral-three .sc-ul li{
    margin: 20px 0;
}
.project-integral-three .sc-ul h3{
    font-size: 18px;
    color: #333333;
    position: relative;
    padding-left: 30px;
    font-weight: 600;
    margin: 10px 0;
}
.project-integral-three .sc-ul p{
    font-size: 16px;
    color: #576971;
    padding-left: 30px;
    line-height: 22px;
}
.project-integral-three .sc-ul h3::before{
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url(../pic/pro/pro-ico.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.project-integral-three .content-center{
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.project-integral-four{
    position: relative;
    display: block;
}
.project-integral-four .item{
    width: 250px;
    height: 270px;
}
.project-integral-four .jg-item{
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-integral-four .item img{
    width: 100%;
    height: 100%;
}
.project-integral-four .row{
    padding: 30px 0;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #E6EFFC 0%, #DFF2FC 100%);
}
.project-integral-four .pro-i-f-list{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
}
.project-integral-four .pro-i-f-list img{
    width: 100%;
}


/*--------------------------------------------------------------
# Product One
--------------------------------------------------------------*/
.pro-one {
    position: relative;
    display: block;
    padding: 0 0 0;
    z-index: 1;
    background-color: var(--thm-white);
}


.pro-one .pro-one-bg {
    position: absolute;
    width: 100%;
    height: 490px;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.8;
    z-index: -1;
}
.pro-one .pro-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 490px;
}

.pro-one .pro-item{
    position: relative;
    display: flex;
    width: 100%;
    height:110px;
    margin: 8px 0;
    flex-direction: row;
    justify-content:flex-start;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}
.pro-one .pro-item .pro-item-bg{
    position: absolute;
    width: 100%;
    height: 110px;
    display: block;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.4;
    z-index: -1;
}
.pro-one .pro-item .pro-item-title{
    text-align: center;
    font-size: 24px;
    width: 140px;
}
.pro-one .pro-item .pro-item-title::after{
    position: absolute;
    content: "";
    top: -30px;
    right: 0;
    width: 2px;
    height: 85px;
    background-color: var(--thm-white);
    opacity: 0.8;
    z-index: -1;
    box-shadow: 0px 10px 10px 2px rgb(0, 0, 0, .05);
}
.pro-one  .pro-item-ms{
    padding: 0 15px;
    width: 180px;
}
.pro-one  .pro-item-ms p{
    margin: 0;
    padding: 0;
    line-height: 20px;
}
.pro-one  .pro-item-ms .ms-t{
    font-size: 14px;
}
.pro-one  .pro-item-ms .ms-f{
    font-size: 15px;
    color: #1989fb;
    padding-left: 22px;
    line-height: 24px;
    font-weight: bold;
    margin-top: 5px;
}
.pro-one  .pro-item-ms .ms-f:before{
    content: '';
    position: absolute;
    left: 10px;
    width: 25px;
    height: 25px;
    background-image: url(../pic/pro/pro-ico.png);;
    background-repeat: no-repeat;
    background-size: cover;
}
.pro-one .pro-item .pic-item{
    position: relative;
    display: flex;
    margin-left: 10px;
}
.pro-one .pro-item .pic-item div{
    display: block;
    width: 120px;
    height: 80px;
    margin: 0 9px;
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px;
    background-color: #fff;
}
.pro-one .pro-item .pic-item div img{
    width: 100%;
    height: 100%;
}


.pay-one{
    position: relative;
    display: block;
    z-index: 1;
}

.pay-one .pay-one-bg{
    position:relative;
    width: 100%;
    height: 426px;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 1;
    z-index: -1;
}

/*--------------------------------------------------------------
# Cta One
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    display: block;
    margin-top: 40px;
    z-index: 1;
}

.cta-one__container {
    position: relative;
    display: block;
    width: 100%;
    background-color: var(--thm-extra);
    border-radius: var(--thm-bdr-radius);
    margin: 0 auto;
    z-index: 1;
}

.cta-one-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: luminosity;
    opacity: 1;
    z-index: -1;
}


.cta-one__inner {
    position: relative;
    display: block;
    text-align: center;
    padding: 50px 0 50px;
}

.cta-one__sub-title {
    font-weight: 600;
    color: var(--thm-base);

    margin: 0;
    padding-bottom: 15px;
}

.cta-one__title {
    font-size: 30px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 60px;
    margin-bottom: 20px;
}

.cta-one__btn {
    background-color: var(--thm-black);
}

.cta-one__btn:after {
    background-color: var(--thm-base);
}

.cta-one__btn:hover:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.cta-one__btn:hover {
    color: var(--thm-primary);
}


/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
    position: relative;
    display: block;
    padding: 0;
}

.news-page {
    padding-bottom: 120px;
}

.news-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.news-one__img {
    position: relative;
    display: block;
    border-radius: 6px 56px 6px 6px;
    overflow: hidden;
}

.news-one__img img {
    width: 100%;
    border-top-right-radius:55px;
    border-top-left-radius: 8px;
    transition: all 500ms ease;
    transform: scale(1);
}

.news-one__single:hover .news-one__img img {
    transform: scale(1.05);
}

.news-one__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);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
}

.news-one__img>a>span {
    position: relative;
    font-size: 16px;
    padding-left: 10px;
}

.news-one__img>a>span::before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
     background-repeat: no-repeat;
    background-size: cover;
}
.news-one__img>a>span.fa-1::before {
    background-image: url('../pic/services/m_p1.png');
}
.news-one__img>a>span.fa-2::before {
    background-image: url('../pic/services/m_p2.png');
}
.news-one__img>a>span.fa-3::before {
    background-image: url('../pic/services/m_p3.png');
}
.news-one__img>a>span.fa-4::before {
    background-image: url('../pic/services/m_p4.png');
}
.news-one__img>a>span.fa-5::before {
    background-image: url('../pic/services/m_p5.png');
}
.news-one__img>a>span.fa-6::before {
    background-image: url('../pic/services/m_p6.png');
}

.news-one__single:hover .news-one__img>a {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}
.news-one__single:hover .news-one__date-box{
    visibility: hidden;
    opacity: 0;
    transition: all 500ms ease;
}
.news-one__date-box-tag{
    position: absolute;
    top: 15px;
    left: 0;
    width: 60px;
    height: 26px;
    line-height: 26px;
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    background: linear-gradient(to right, #56C9F8 0%, #3692E9 100%);
    color: #fff;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
}
.news-one__date-box-txt{
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding:15px 20px;
    box-sizing: border-box;
    background: linear-gradient( 180deg, rgba(22,96,225,0) 0%, #1660E1 99%);
    color: #fff;
    text-align: center;
    z-index: 99;
}
.news-one__date-box-txt .box-txt{
    position: absolute;
    bottom:3%;
}
.integral .news-one__date-box-txt .box-txt{
    position: absolute;
    bottom:3%;
}
.news-one__date-box-txt .h{
    padding: 0;
    margin: 0;
    font-family: Microsoft JhengHei UI, Microsoft JhengHei UI;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.news-one__date-box-txt .txt{
    font-family: Microsoft JhengHei UI, Microsoft JhengHei UI;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.news-one__date-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--thm-base);
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: #2563eb;
    color: #fff;
    font-size: 14px;
    text-align: center;
}
.news-one__date-box .far{
    position: relative;
    padding:10px;
}
.news-one__date-box .far::before{
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
    left: -3px;
    background-repeat: no-repeat;
    background-size: cover;
}
.news-one__date-box .far.fa-1::before{
    background-image: url('../pic/services/m_p1.png');
}
.news-one__date-box .far.fa-2::before{
    background-image: url('../pic/services/m_p2.png');
}
.news-one__date-box .far.fa-3::before{
    background-image: url('../pic/services/m_p3.png');
}
.news-one__date-box .far.fa-4::before{
    background-image: url('../pic/services/m_p4.png');
}
.news-one__date-box .far.fa-5::before{
    background-image: url('../pic/services/m_p5.png');
}
.news-one__date-box .far.fa-6::before{
    background-image: url('../pic/services/m_p6.png');
}


.news-one__date-box p {
    font-size: 14px;
    color: var(--thm-black);
    font-weight: 800;
    margin: 0;
    line-height: 17px;
    text-align: center;
}

.news-one__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
    padding: 20px 42px 30px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: 3px solid transparent;
    transition: all 500ms ease;
}

.news-one__single:hover .news-one__content {
    border-bottom: 3px solid var(--thm-extra);
}

.news-one__meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
}

.news-one__meta li+li {
    margin-left: 10px;
}

.news-one__meta li a {
    color: var(--thm-gray);
    font-size: 14px;
    transition: all 500ms ease;
}

.news-one__meta li a:hover {
    color: var(--thm-extra);
}

.news-one__meta li a i {
    color: var(--thm-extra);
}

.news-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.news-one__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.news-one__single:hover .news-one__title a {
    color: var(--thm-primary);
}

.news-one__text {
    font-size: 16px;
    margin: 0;
    line-height: 30px;
    padding-top: 13px;
    padding-bottom: 8px;
}

.news-one__read-more-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    display: inline-block;
    transition: all 500ms ease;
}

.news-one__read-more-btn:hover {
    color: var(--thm-extra);
}

/*--------------------------------------------------------------
# Site About
--------------------------------------------------------------*/
.about-one{
    position: relative;
    display: block;
}
.about-one .about-content{
    padding: 50px 90px;
    background-color: #edf8fe;
    background-image: url('../pic/about/about-content.jpg');
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: right bottom;
    border-radius: 5px;
}
.about-one .about-content p{
    font-size: 16px;
    line-height: 28px;
    color: var(--thm-gray);
    letter-spacing: 1px;
}
.about-pp{
    position: relative;
    display: block;
    margin-top: 44px;
}
.about-pp .about-pp-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    opacity: 1;
    z-index: -1;
}
.about-pp .item{
    width: 380px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,246,250,0.7);
    box-shadow: 0px 4px 15px 0px rgba(22,96,225,0.2);
    border-radius: 6px 6px 6px 6px;
    border: 1px solid rgba(255,255,255,0.6);
}
.about-pp .item .about-pp__icon{
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
}

.about-pp .item .about-pp__icon img{
    width: 100%;
    height: 100%;
}
.about-pp .item .about-pp__title{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 65px;
    padding-right: 50px;
}
.about-pp .item .about-pp__title::before{
    content: '';
    position: absolute;
    top: 0;
    left: 35px;
    width: 1px;
    height: 51px;
    background: linear-gradient(to bottom, rgba(22, 96, 225, 1) 0%, rgba(55, 125, 255, .3) 80%);

}
.about-pp .item .about-pp__title .about-pp__title-h{
    font-family: Microsoft JhengHei UI, Microsoft JhengHei UI;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    color: var(--thm-black);
    font-style: normal;
    text-transform: none;
    margin: 0;
    padding: 0;
}
.about-pp .item .about-pp__title .about-pp__title-p{
    font-family: Microsoft JhengHei UI, Microsoft JhengHei UI;
    font-weight: 400;
    height: 22px;
    line-height: 22px;
    font-size: 16px;
    color: var(--thm-gray);
    font-style: normal;
    text-transform: none;
    margin: 0;
    padding: 0;
}
.about-pp .about-pp__map{
    position: relative;
    display: block;
    margin-top: 650px;
    padding-bottom: 50px;
}
.about-pp .about-pp__map .about-pp__map-title{
    font-family: Microsoft JhengHei UI, Microsoft JhengHei UI;
    font-weight: bold;
    font-size: 20px;
    color: var(--thm-black);
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.about-pp .about-pp__map .about-pp__map-list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 10px 0;
}
.about-pp .about-pp__map .about-pp__map-list li{
    margin-right: 30px;
    font-size: 16px;
    color: var(--thm-gray);
}


.about-culture{
    position: relative;
    display: block;
    padding-bottom: 50px;
}
.about-culture .about-culture-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 1;
    z-index: -1;
}

.about-culture .row.mg20{
    margin-top: 20px;
}
.about-culture .item{
    height: 205px;
    padding: 40px 50px;
    background: rgba(255,255,255,0.3);
    box-shadow: 0px 4px 15px 0px rgba(22,96,225,0.2);
    border-radius: 6px 6px 6px 6px;
    border: 1px solid #FFFFFF;
}

.about-culture .item .about-culture-h{
    color: var(--thm-black);
    margin-bottom: 24px;
}
.about-culture .item .about-culture-p{
    font-family: Microsoft JhengHei UI, Microsoft JhengHei UI;
    font-weight: 400;
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.about-culture .item .about-culture-centerul{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.about-culture .item .about-culture-centerul ul{
    list-style: none;
    padding: 0;
    margin: 0 30px;
}
.about-culture .item .about-culture-centerul ul li{
    font-family: Microsoft JhengHei UI, Microsoft JhengHei UI;
    font-weight: 400;
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.about-me{
    position: relative;
    display: block;
    margin-top: 40px;
}
.about-me .address{
    margin-top: 100px;
}
.about-me .contact{
    margin-top: 40px;
}
.about-me h4{
    position: relative;
    padding-left: 35px;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}
.about-me p{
    padding-left: 35px;
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 22px;
}
.about-me h4::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.about-me .address h4::before{
    background-image: url('../pic/about/address.png');
}
.about-me .contact h4::before{
    background-image: url('../pic/about/tel.png');  
}

.about-partner{
     position: relative;
    display: block;
}
.about-partner .about-partner__carousel,
.about-partner .about-partner__carousel2,
.about-partner .about-partner__carousel3{
    padding: 0;
}
.about-partner .about-partner__carousel .owl-nav,
.about-partner .about-partner__carousel2 .owl-nav,
.about-partner .about-partner__carousel3 .owl-nav{
    display: none;
}

.about-partner .about-partner__carousel:hover .owl-nav,
.about-partner .about-partner__carousel2:hover .owl-nav,
.about-partner .about-partner__carousel3:hover .owl-nav{
    display: none;
}
.about-partner .owl-stage-outer{
    padding: 5px 0;
}
.about-partner .owl-carousel .owl-item img{
    width: 156px;
    height: 80px;
    box-shadow: 0px 0px 7px 0px rgba(55,125,255,0.1);
    border-radius: 6px 6px 6px 6px;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background-color: #1b1825;
}

.site-footer__top {
    position: relative;
    display: block;
    background-color: var(--thm-black);
}

.site-footer__top-inner {
    position: relative;
    display: flex;
    padding: 60px 0 40px;
    z-index: 1;
}

.site-footer__top-inner .ft-left{
    width: 80%;
}
.site-footer__top-inner .ft-right{
    width: 20%;
}

.site-footer-map {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.04;
    z-index: -1;
}

.footer-widget__about {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.footer-widget__contact-Phoe{
    margin: 30px 0 0;
    padding: 0;
}
.footer-widget__contact-Phoe a{
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    text-align: right;
}
.footer-widget__about-text {
    font-size: 12px;
    color: #fff;
    margin: 0;
    line-height: 22px;
    text-align: right;
}

.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: 16px;
    color: var(--thm-base);

    font-weight: 800;
    line-height: 30px;
    margin-bottom: 30px;
}
.footer-logo{
    width: 150px;
    height: 50px;
}
.footer-logo img{
    width: 100%;
    height: 100%;
}
.footer-widget__links {
    position: relative;
    display: block;
}

.footer-widget__links-list {
    position: relative;
    display: block;
    float: left;
    margin-right: 30px;
}

.footer-widget__links-list li+li {
    margin-top: 0px;
}

.footer-widget__links-list li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #ada8ba;
    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>a::after {
    transform: scale(1, 1);
    transform-origin: right center;
}

.footer-widget__links-list li a:hover {
    color: var(--thm-base);

}

.footer-widget__links-list-two {
    margin-right: 0px;
}

.footer-widget__contact {
    position: relative;
    display: block;
}

.footer-widget__contact-text {
    font-size: 14px;
    color: #ada8ba;
    margin: 0;
    line-height: 30px;
    margin-bottom: 10px;
    padding-top: 3px;
}

.footer-widget__contact-list {
    position: relative;
    display: block;
}

.footer-widget__contact-list li {
    display: flex;
    justify-content: flex-end;
}

.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-extra);
}

.footer-widget__contact-list li .text {
    margin-left: 10px;
}

.footer-widget__contact-list li .text p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 30px;
}

.footer-widget__contact-list li .text p a {
    color: var(--thm-base);

    transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:hover {
    color: var(--thm-extra);
}

.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-primary);
    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;
    width: 100%;
    margin: 0 auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #100d16;
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content:center;
    padding: 15px 0;
}

.site-footer__bottom-text {
    font-size: 14px;
    font-weight: 500;
    margin: 0 20px;
    color: #ada8ba;
}

.site-footer__bottom-text a {
    color: #ada8ba;
    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);

}

/*--------------------------------------------------------------
# Business Growth
--------------------------------------------------------------*/
.business-growth {
    position: relative;
    display: block;
    background-color: #eef3f7;
    padding: 0 0 120px;
    z-index: 1;
}

.business-growth__top {
    padding: 120px 0 120px;
    position: relative;
    display: block;
    z-index: 1;
}

.business-growth-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-primary);
    z-index: -1;
}

.business-growth__left {
    position: relative;
    display: block;
}

.business-growth__left .section-title__tagline {
    color: var(--thm-base);

}

.business-growth__left .section-title__title {
    color: var(--thm-base);

}

.business-growth__right {
    position: relative;
    display: block;
    margin-top: 12px;
}

.business-growth__right-text {
    margin: 0;
    color: #cce5ff;
    line-height: 37px;
}

.business-growth__bottom {
    position: relative;
    display: block;
    margin-top: -120px;
    z-index: 2;
}

.business-growth__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.business-growth__img {
    position: relative;
    display: block;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    overflow: hidden;
}

.business-growth__img::before {
    position: absolute;
    content: '';
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-top-left-radius: 8px;
    z-index: 1;
    transition: all 500ms ease;
}

.business-growth__single:hover .business-growth__img::before,
.business-growth__single:hover .business-growth__img::after {
    width: 50%;
}

.business-growth__img::after {
    position: absolute;
    content: '';
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    height: 100%;
    right: 0px;
    top: 0px;
    border-top-right-radius: 8px;
    transition: all 500ms ease;
}

.business-growth__img img {
    width: 100%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    transition: all 500ms ease;
    transform: scale(1.05);
}

.business-growth__single:hover .business-growth__img img {
    transform: scale(1);
}

.business-growth__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    padding: 44px 50px 44px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.business-growth__content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--thm-primary);
    height: 10px;
    transition: all 500ms ease;
}



.business-growth__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 26px;
    margin-bottom: 16px;
}

.business-growth__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.business-growth__single:hover .business-growth__title a {
    color: var(--thm-extra);
}

.business-growth__text {
    font-size: 16px;
    margin: 0;
    line-height: 30px;
}

.business-growth__find {
    position: relative;
    display: block;
}

.business-growth__find-inner {
    position: relative;
    display: block;
    text-align: center;
    border-bottom: 1px solid var(--thm-bdr-color);
    padding-top: 18px;
    padding-bottom: 39px;
}

.business-growth__find-inner p {
    font-size: 16px;
    margin: 0;
}

.business-growth__find-inner a {
    color: var(--thm-primary);
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.business-growth__find-inner a:before {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 2px;
    content: "";
    background-color: var(--thm-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.business-growth__find-inner a:hover {
    color: var(--thm-extra);
}

.business-growth__find-inner a:hover:before {
    background-color: var(--thm-extra);
}

/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.welcome-one__left {
    position: relative;
    display: block;
    margin-right: 100px;
    margin-top: -60px;
    z-index: 2;
}

.welcome-one__img-box {
    position: relative;
    display: block;
}

.welcome-one__img-box:before {
    position: absolute;
    top: 0;
    right: -60px;
    width: 30px;
    height: 390px;
    content: "";
    background-color: var(--thm-extra);
    border-radius: var(--thm-bdr-radius);
}

.welcome-one__img {
    position: relative;
    display: block;
    border-radius: var(--thm-bdr-radius);
    overflow: hidden;
}

.welcome-one__img:after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.welcome-one__img-box:hover .welcome-one__img:after {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}

.welcome-one__img img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
}

.welcome-one__certified {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    position: absolute;
    bottom: 0;
    right: -60px;
    padding: 40px 40px 36px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 2;
}

.welcome-one__certified-icon {
    position: relative;
    display: block;
    margin-bottom: 3px;
}

.welcome-one__certified-icon span {
    font-size: 63px;
    color: var(--thm-primary);
    position: relative;
    display: inline-block;
    transform: rotateY(0deg);
    transition: all 500ms ease;
}

.welcome-one__certified:hover .welcome-one__certified-icon span {
    transform: rotateY(180deg);
    color: var(--thm-extra);
}

.welcome-one__certified-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.welcome-one__right {
    position: relative;
    display: block;
    padding-top: 60px;
}

.welcome-one__right .section-title {
    margin-bottom: 38px;
}

.welcome-one__right-text {
    margin: 0;
}

.welcome-one__funded {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--thm-bdr-color);
    border-bottom: 1px solid var(--thm-bdr-color);
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 40px;
    margin-bottom: 35px;
}

.welcome-one__funded-content {
    margin-left: 30px;
}

.welcome-one__funded-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 33px;
}

.welcome-one__funded-text span {
    font-size: 24px;
    font-weight: 800;
    color: var(--thm-extra);
}

.welcome-one__funded-name {
    font-size: 24px;
    color: var(--thm-primary);
    font-family: var(--thm-reey-font);
    line-height: 34px;
    font-weight: 400;
}

.welcome-one__funded-name span {
    font-size: 20px;
    font-weight: 500;
    color: var(--thm-black);
    font-family: var(--thm-font);
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
    position: relative;
    display: block;
    padding: 120px 0 230px;
    z-index: 1;
    background-color: var(--thm-black);
}

.video-one-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
    background-color: var(--thm-black);
}


.video-one-bg.jarallax div div {
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
}

.video-one__inner {
    position: relative;
    display: block;
    text-align: center;
}

.video-one__video-link {
    position: relative;
    display: inline-block;
}

.video-one__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    line-height: 108px;
    text-align: center;
    font-size: 25px;
    color: var(--thm-base);

    background-color: var(--thm-extra);
    border-radius: var(--thm-bdr-radius);
    margin: 0 auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.video-one__video-icon:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 108px;
    height: 108px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-extra-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-extra-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--thm-extra-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: var(--thm-bdr-radius);
}

.video-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.video-one__title {
    font-size: 50px;
    font-weight: 800;
    line-height: 60px;
    margin-top: 45px;
    color: var(--thm-base);

}

/*--------------------------------------------------------------
# Help
--------------------------------------------------------------*/
.help {
    position: relative;
    display: block;
    padding: 0 0 120px;
    margin-top: -120px;
    z-index: 1;
}

.help__box {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
    border-radius: var(--thm-bdr-radius);
}

.help__single {
    position: relative;
    float: left;
    max-width: 300px;
    width: 100%;
}

.help__single:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    content: "";
    width: 1px;
    background-color: var(--thm-bdr-color);
}

.help__single:nth-child(1):before {
    display: none;
}

.help__single:nth-child(2):before {
    display: none;
}

.help__box-one {
    max-width: 285px;
}

.help__box-one-content {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 52px 60px 52px;
    border-top-left-radius: 8px;
    z-index: 1;
}

.help__box-one-content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0%;
    content: "";
    background-color: var(--thm-extra);
    border-top-left-radius: 8px;
    opacity: 0;
    transition: all 500ms ease;
    z-index: -1;
}

.help__single:hover .help__box-one-content:before {
    height: 100%;
    opacity: 1;
}

.help__box-one-title {
    font-size: 26px;
    color: var(--thm-base);

    font-weight: 800;
    line-height: 34px;
}

.help__box-one-img {
    position: relative;
    display: block;
    border-bottom-left-radius: 8px;
    overflow: hidden;
}

.help__box-one-img::before {
    position: absolute;
    content: '';
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-bottom-left-radius: 8px;
    z-index: 1;
    transition: all 500ms ease;
}

.help__single:hover .help__box-one-img::before,
.help__single:hover .help__box-one-img::after {
    width: 50%;
}

.help__box-one-img::after {
    position: absolute;
    content: '';
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    height: 100%;
    right: 0px;
    top: 0px;
    border-bottom-right-radius: 8px;
    transition: all 500ms ease;
}

.help__box-one-img img {
    width: 100%;
    border-bottom-left-radius: 8px;
    transition: all 500ms ease;
    transform: scale(1.05);
}

.help__single:hover .help__box-one-img img {
    transform: scale(1);
}

.help__box-two {
    position: relative;
    display: block;
}

.help__box-two-content {
    position: relative;
    display: block;
    padding-top: 50px;
    padding-bottom: 44px;
    padding-left: 65px;
    padding-right: 65px;
}

.help__box-two-icon {
    position: relative;
    height: 70px;
    width: 70px;
    background-color: #eef3f7;
    border-radius: 50%;
    font-size: 35px;
    color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    z-index: 1;
}

.help__box-two-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    border-radius: 50%;
    transform: scale(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;
}

.help__single:hover .help__box-two-icon:before {
    transform: scale(1);
}

.help__box-two-icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    transition: all 500ms ease;
}

.help__single:hover .help__box-two-icon span {
    color: var(--thm-base);

    transform: rotateY(180deg);
}

.help__box-two-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    margin-top: 22px;
    margin-bottom: 21px;
}

.help__box-two-title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.help__single:hover .help__box-two-title a {
    color: var(--thm-primary);
}

.help__box-two-text {
    font-size: 16px;
    margin: 0;
    line-height: 30px;
}

.help__box-last {
    max-width: 285px;
}

.help__box-last .help__box-two-content {
    padding-right: 50px;
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
    position: relative;
    display: block;
    padding: 0 0 100px;
}

.project-two__container {
    position: relative;
    display: block;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.project-two .project-one__single {
    margin-bottom: 70px;
}

.project-two .project-one__title {
    font-size: 24px;
    line-height: 30px;
}

.project-two .project-one__content {
    padding: 22px 30px 29px;
    margin-top: -78px;
}

.project-two .project-one__arrow {
    top: 50%;
    right: 20px;
}

.project-two__carousel {
    position: relative;
    display: block;
}

.project-two__carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: 18px;
    right: 0px;
    left: 0;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--thm-black);
    opacity: .4;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.project-two__carousel.owl-carousel .owl-dot.active {
    background: var(--thm-extra);
    opacity: 1;
    height: 13px;
    width: 13px;
}

.project-two__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-two {
    position: relative;
    display: block;
}

.brand-two__inner {
    position: relative;
    display: block;
    border-top: 1px solid var(--thm-bdr-color);
    padding: 98px 0 99px;
}

.brand-two .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.brand-two .swiper-slide img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0.3;
    max-width: 100%;
}

.brand-two .swiper-slide img:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# Industries We Serve
--------------------------------------------------------------*/
.industries-we-serve {
    position: relative;
    display: block;
    padding: 120px 0 240px;
    background-color: var(--thm-black);
    z-index: 1;
}

.industries-we-serve-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
    z-index: -1;
}

.industries-we-serve-shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.industries-we-serve__left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.industries-we-serve__left .section-title {
    margin-bottom: 28px;
}

.industries-we-serve__left .section-title__tagline {
    color: #ada8ba;
}

.industries-we-serve__left .section-title__title {
    color: var(--thm-base);

}

.industries-we-serve__text {
    color: #ada8ba;
    margin: 0;
}

.industries-we-serve__points {
    position: relative;
    display: block;
    margin-top: 33px;
}

.industries-we-serve__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.industries-we-serve__points li+li {
    margin-top: 6px;
}

.industries-we-serve__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.industries-we-serve__points li .icon span {
    font-size: 20px;
    color: var(--thm-extra);
}

.industries-we-serve__points li .text {
    margin-left: 20px;
}

.industries-we-serve__points li .text p {
    font-size: 20px;
    color: var(--thm-base);

    margin: 0;
}

.industries-we-serve__right {
    position: relative;
    display: block;
    margin-left: 60px;
}

.industries-we-serve__boxes {
    position: relative;
    display: block;
}

.industries-we-serve__boxes li {
    position: relative;
    background-color: #100d16;
    border-radius: var(--thm-bdr-radius);
    max-width: 200px;
    float: left;
    width: 100%;
    text-align: center;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 39px 0 35px;
}

.industries-we-serve__boxes li:nth-child(1) {
    margin-left: 0;
}

.industries-we-serve__boxes li:nth-child(3) {
    margin-left: 0;
    margin-bottom: 0;
}

.industries-we-serve__boxes li:nth-child(4) {
    margin-bottom: 0;
}

.industries-we-serve__icon {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.industries-we-serve__icon span {
    position: relative;
    display: inline-block;
    font-size: 64px;
    color: var(--thm-primary);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.industries-we-serve__boxes li:hover .industries-we-serve__icon span {
    color: var(--thm-base);

    transform: rotateY(360deg);
}

.industries-we-serve__title {
    font-size: 18px;
    color: var(--thm-base);

    font-weight: 600;
    line-height: 22px;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    z-index: 3;
}

.team-one__container {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    max-width: 1595px;
    width: 100%;
    margin: -120px auto 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 120px 0 150px;
    z-index: 3;
}

.team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-one__img {
    position: relative;
    display: block;
    border-radius: var(--thm-bdr-radius);
    overflow: hidden;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.team-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    transform: translateY(100%);
    transition: all 500ms ease;
    border-radius: var(--thm-bdr-radius);
    z-index: 1;
}

.team-one__single:hover .team-one__img:before {
    transform: translateY(0);
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.team-one__img img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
    transition: all 500ms ease;
    transform: scale(1);
}

.team-one__single:hover .team-one__img img {
    transform: scale(1.05);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.team-one__social {
    position: absolute;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    right: 0;
    left: 0;
    transform: scaleY(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transform-origin: bottom center;
    z-index: 2;
}

.team-one__single:hover .team-one__social {
    transform: scaleY(1.0);
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.team-one__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;
}

.team-one__social a:hover {
    color: var(--thm-base);

    transform: rotate(360deg);
    background-color: var(--thm-extra);
}

.team-one__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-extra);
    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;
}

.team-one__social a:hover:before {
    transform: scaleX(1.0);
}

.team-one__social a+a {
    margin-left: 10px;
}

.team-one__content {
    position: relative;
    display: block;
    text-align: center;
    padding: 23px 0 26px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1;
}

.team-one__content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: scaleY(0);
    z-index: -1;
}

.team-one__single:hover .team-one__content:before {
    transform: scaleY(1);
}

.team-one__name {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
}

.team-one__title {
    font-size: 12px;
    margin: 0;
    line-height: 24px;
}

/*--------------------------------------------------------------
# Why Choose
--------------------------------------------------------------*/
.why-choose {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 0 0 120px;
    z-index: 3;
}

.why-choose-shape-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background-position: top right;
    background-repeat: no-repeat;
    z-index: -1;
}

.why-choose__left {
    position: relative;
    display: block;
    margin-left: -376px;
    margin-top: -60px;
    z-index: 5;
}

.why-choose__img {
    position: relative;
    display: block;
}

.why-choose__img img {
    width: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.why-choose__right {
    position: relative;
    display: block;
    margin-left: 70px;
    padding-top: 120px;
}

.why-choose__right .section-title {
    margin-bottom: 36px;
}

.why-choose__right .section-title__tagline {
    color: var(--thm-base);

}

.why-choose__right .section-title__title {
    color: var(--thm-base);

}

.why-choose__right-text-box {
    margin-right: -58px;
}

.why-choose__right-text {
    font-size: 20px;
    color: var(--thm-base);

    margin: 0;
}

.why-choose__progress {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 38px;
}

.why-choose__progress-single {
    position: relative;
    display: block;
}

.why-choose__progress-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 28px;
    color: var(--thm-base);

    margin-bottom: 10px;
}

.why-choose__progress .bar {
    position: relative;
    width: 100%;
    height: 10px;
    background: rgba(var(--thm-black-rgb), 0.09);
    border-radius: 30px;
    margin-bottom: 19px;
}

.why-choose__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 10px;
    border-radius: 30px;
    background: var(--thm-extra);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.why-choose__progress .count-text {
    position: absolute;
    right: 0px;
    bottom: 20px;
    color: var(--thm-base);

    line-height: 24px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.why-choose__progress .bar-inner.counted .count-text {
    opacity: 1;
}

.why-choose__progress .bar.marb-0 {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
    display: block;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 550px;
    width: 100%;
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.news-two__left {
    position: relative;
    display: block;
    margin-right: 30px;
    z-index: 5;
}

.news-two .section-title {
    margin-bottom: 28px;
}

.news-two__text {
    margin: 0;
    padding-bottom: 31px;
}

.news-two__right {
    position: relative;
    display: block;
    margin-right: -360px;
}

.news-two__carousel {
    position: relative;
    display: block;
}

.news-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0 0 0;
    margin-right: 0px;
}

.news-two__carousel .owl-stage-outer .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.news-two__carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    visibility: visible;
    transition: all 200ms linear;
}

.news-two__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 165px;
    left: -405px;
}

.news-two__carousel.owl-theme .owl-nav .owl-next {
    height: 65px;
    width: 65px;
    background: transparent;
    border-radius: 50%;
    color: #bab9bd;
    font-size: 23px;
    text-align: center;
    border: 2px solid #bab9bd;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-two__carousel.owl-theme .owl-nav .owl-prev {
    height: 65px;
    width: 65px;
    background: transparent;
    border-radius: 50%;
    color: #bab9bd;
    font-size: 23px;
    text-align: center;
    transform: rotate(180deg);
    border: 2px solid #bab9bd;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-two__carousel.owl-theme .owl-nav .owl-next:hover,
.news-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    color: var(--thm-primary);
    border: 2px solid var(--thm-primary);
}

.about-history{
    position: relative;
    display: block;
    z-index: 2;
    margin-bottom: 40px;
}
.about-history .about-history__single{
    position: relative;
    display: block;
}
.about-history .about-history__content{
    position: relative;
    display: block;
    height: 155px;
    padding-left: 15px;
    padding-right: 20px;
}
.about-history .about-history__content::before{
    position: absolute;
    top: 0;
    left: 6px;
    height: 100%;
    width: 1px;
    background: linear-gradient(to top, rgba(22, 96, 225, 1) 0%, rgba(255, 255, 255, .3) 80%);
    content: "";
}
.about-history .about-history__content::after{
    position: absolute;
    bottom: -6px; /* 调整垂直位置与内容对齐 */
    left: 0px; /* 向左偏移覆盖线条边缘 */
    content: "";
    width: 12px; /* 圆点直径 */
    height: 12px; /* 圆点直径 */
    background: #1660E1; /* 主题色 */
    border-radius: 50%; /* 圆形 */
    border: 2px solid #D1E2FF; /* 浅色边框增加层次感 */
    box-shadow: 0 0 0 2px #1660E133; /* 微弱投影 */
}

.about-history .about-history__content .about-history__title{
    font-size: 18px;
    color: var(--thm-black);
    line-height: 28px;
    font-weight: bold;
}

.about-history .about-history__content .about-history__text{
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 20px;
}

.about-history .about-history__year{
    border-top: 1px solid #1660E1;
    font-size: 26px;
    color: var(--thm-black);
    font-weight: bold;
    line-height: 80px;
    height: 80px;
}


.about-history__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 15px;
    height:40px;
    width: 40px;
    border-radius: 50%;
    color: #AAB0B7;
    font-size: 23px;
    text-align: center;
    background: rgba(255,255,255,0.6);
    box-shadow: 0px 0px 8px 0px #DCE7FB;
    border-radius: 140px 140px 140px 140px;
}

.about-history__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 15px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #AAB0B7;
    font-size: 23px;
    text-align: center;
    background: rgba(255,255,255,0.6);
    box-shadow: 0px 0px 8px 0px #DCE7FB;
    border-radius: 140px 140px 140px 140px;
    transform: rotate(180deg);
}

.about-history__carousel.owl-theme .owl-nav .owl-next:hover,
.about-history__carousel.owl-theme .owl-nav .owl-prev:hover {
    color: var(--thm-primary);
    border: 2px solid var(--thm-primary);
}


/*--------------------------------------------------------------
# CTA Two
--------------------------------------------------------------*/
.cta-two {
    position: relative;
    display: block;
    z-index: 2;
}

.cta-two__container {
    position: relative;
    display: block;
    max-width: 1600px;
    width: 100%;
    background-color: var(--thm-extra);
    border-radius: var(--thm-bdr-radius);
    margin: 0 auto;
    z-index: 2;
    padding-left: 15px;
    padding-right: 15px;
}

.cta-two-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.10;
    -webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
    z-index: -1;
}

.cta-two__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 112.5px 0;
}

.cta-two__title {
    font-size: 50px;
    color: var(--thm-base);

    font-weight: 800;
    line-height: 60px;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 140px 0 140px;
    z-index: 1;
}
.page-header.digit{
    padding: 110px 0;
}

.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: 1;
}


.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: left;
}
.digit .page-header__inner {
    width: 60%;
}

.page-header__inner h2 {
    margin: 0;
    margin-bottom: 12px;
    color: #000;
    font-weight: 600;
    opacity: 1;
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-size: 38px;
    line-height: 45px;
    letter-spacing: 0.02em;
}
.page-header__inner p {
    font-size: 20px;
    color: #0e0e0e;
    margin: 0;
    line-height: 24px;
    margin-bottom: 30px;
    opacity: 1;
    transition-delay: 2500ms;
    transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease;
    letter-spacing: 0.1em;
}
.page-header__inner .page-header__inner_h{
    margin-bottom: 15px;
}
.page-header__inner .page-header__inner_h h2 {
    margin-bottom: 0;
}
.page-header__inner .page-header__inner_p p {
    font-size: 20px;
    color: #0e0e0e;
    margin: 0;
    line-height: 26px;
    opacity: 1;
    transition-delay: 2500ms;
    transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease;
    letter-spacing: 0.1em;
}
.ew .page-header__inner h2{
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
}
.ew .page-header__inner p{
    color: #fff;
    width: 46%;
    font-size: 18px;
}
.case-meal .page-header__inner h2{
    font-weight: bold;
    color: #fff;
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
}
.case-meal .page-header__inner p{
    color: #fff;
    width: 55%;
    font-size: 18px;
}

.thm-breadcrumb {
    position: relative;
    display: block;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: #ada8ba;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li+li {
    margin-left: 5px;
}

.thm-breadcrumb li a {
    color: #ada8ba;
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover {
    color: var(--thm-base);

}

.thm-breadcrumb li:hover a {
    color: var(--thm-base);

}


/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
    margin-top: 0;
}

.site-footer-two .site-footer__top-inner {
    padding: 116px 0 120px;
}

.site-footer-two .site-footer-map {
    bottom: -95px;
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.service-details__right {
    position: relative;
    display: block;
}

.service-details__img {
    position: relative;
    display: block;
}

.service-details__img img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
}

.service-details__content {
    position: relative;
    display: block;
    margin-top: 29px;
}

.service-details__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    margin-bottom: 20px;
}

.service-details__text {
    margin: 0;
}

.service-details__text-2 {
    margin: 0;
    padding-top: 35px;
}

.service-details__benefits {
    position: relative;
    display: block;
    margin-top: 51px;
    margin-bottom: 60px;
}

.service-details__benefits-img {
    position: relative;
    display: block;
}

.service-details__benefits-img img {
    width: 100%;
}

.service-details__benefits-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    margin-bottom: 36px;
    margin-top: -11px;
}

.service-details__benefits-text {
    font-size: 20px;
    margin: 0;
    color: var(--thm-primary);
}

.service-details__benefits-list {
    position: relative;
    display: block;
    margin-top: 33px;
}

.service-details__benefits-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.service-details__benefits-list li+li {
    margin-top: 6px;
}

.service-details__benefits-list li .icon {
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
}

.service-details__benefits-list li .icon span {
    font-size: 12px;
    color: var(--thm-extra);
}

.service-details__benefits-list li .text {
    margin-left: 10px;
}

.service-details__benefits-list li .text p {
    font-size: 18px;
    margin: 0;
    color: var(--thm-gray);
    font-weight: 500;
}

.service-details__faq {
    position: relative;
    display: block;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: var(--thm-bdr-radius);
    background-color: #eef3f7;
}

.faq-one-accrodion .accrodion.active {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 21px 40px 21px;
    padding-right: 27px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 28px;
    color: var(--thm-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    background-color: var(--thm-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--thm-black);
}

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 13px;
    color: var(--thm-primary);
    ;
    position: absolute;
    top: 50%;
    right: 0;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
    color: var(--thm-black);
    ;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 0px 40px 40px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.faq-one-accrodion .accrodion.active .accrodion-content {
    background-color: var(--thm-base);
}

.faq-one-accrodion .accrodion-content p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 34px;
}

.service-details__sidebar {
    position: relative;
    display: block;
}

.service-details__sidebar-service {
    position: relative;
    display: block;
    background: #eef3f7;
    padding: 45px 25px 36px;
    border-radius: var(--thm-bdr-radius);
}

.service-details__sidebar-title {
    font-size: 20px;
    font-weight: 800;
    padding-left: 25px;
    margin-bottom: 18px;
}

.service-details__sidebar-service-list {
    margin: 0;
}

.service-details__sidebar-service-list li+li {
    margin-top: 6px;
}

.service-details__sidebar-service-list li a {
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 3px 25px;
    border-radius: var(--thm-bdr-radius);
}

.service-details__sidebar-service-list li.current a,
.service-details__sidebar-service-list li:hover a {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, .05);
    color: var(--thm-black);
}

.service-details__sidebar-service-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--thm-black);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-details__sidebar-service-list li.current a span,
.service-details__sidebar-service-list li:hover a span {
    color: var(--thm-black);
    transform: translateY(-50%) scale(1);
}

.service-details__need-help {
    position: relative;
    display: block;
    padding: 50px 50px 43px;
    margin-top: 30px;
    text-align: center;
    border-radius: var(--thm-bdr-radius);
    z-index: 1;
}

.service-details__need-help-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    border-radius: var(--thm-bdr-radius);
    z-index: -1;
}

.service-details__need-help-bg-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-primary-rgb), .90);
    border-radius: var(--thm-bdr-radius);
    z-index: -1;
}

.service-details__need-help-icon {
    height: 75px;
    width: 75px;
    background-color: var(--thm-base);
    color: var(--thm-primary);
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 22px;
    transition: all 500ms ease;
}

.service-details__need-help-icon:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);

}

.service-details__need-help-text-box {
    font-size: 20px;
    color: var(--thm-base);

    font-weight: 600;
    line-height: 33px;
}

.service-details__need-help-contact {
    position: relative;
    display: block;
    margin-top: 28px;
}

.service-details__need-help-contact a {
    font-size: 30px;
    color: var(--thm-base);

    font-weight: 800;
    transition: all 500ms ease;
}

.service-details__need-help-contact a:hover {
    color: var(--thm-black);
}

.service-details__need-help-contact p {
    font-size: 14px;
    color: #cce5ff;
    margin: 0;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/*Project Page*/
.project-page {
    padding: 120px 0 90px;
}

.project-page .project-one__single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.project-details__img-box {
    position: relative;
    display: block;
}

.project-details__img-box img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
}

.project-details__details-box {
    border-radius: var(--thm-bdr-radius);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    padding: 38px 50px 30px;
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    z-index: 3;
}

.project-details__details-info li {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.project-details__details-info li:nth-child(3) {
    margin-left: 110px;
}

.project-details__details-info li:nth-child(4) {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

.project-details__details-info li+li {
    margin-left: 120px;
}

.project-details__client {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.project-details__name {
    color: var(--thm-primary);
    margin: 0;
    font-size: 16px;
}

.project-details__social-list {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.project-details__social-list 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-black);
    background-color: #eef3f7;
    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;
}

.project-details__social-list a:hover {
    color: var(--thm-base);

    transform: rotate(360deg);
}

.project-details__social-list a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    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;
}

.project-details__social-list a:hover:before {
    transform: scaleX(1.0);
}

.project-details__social-list a+a {
    margin-left: 10px;
}

.project-details__content {
    position: relative;
    display: block;
    margin-top: 74px;
}

.project-details__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    margin-bottom: 35px;
}

.project-details__text-1 {
    margin: 0;
    padding-bottom: 33px;
}

.project-details__text-2 {
    margin: 0;
}

.project-details__list {
    position: relative;
    display: block;
    padding-left: 20px;
    margin-top: 43px;
}

.project-details__list:before {
    position: absolute;
    left: 0;
    top: 7px;
    bottom: 7px;
    content: "";
    background-color: var(--thm-primary);
    width: 2px;
}

.project-details__list li {
    position: relative;
    display: flex;
    align-items: center;
}

.project-details__list li+li {
    margin-top: 6px;
}

.project-details__list li .icon {
    display: flex;
    align-items: center;
}

.project-details__list li .icon span {
    font-size: 20px;
    color: var(--thm-extra);
}

.project-details__list li .text {
    margin-left: 15px;
}

.project-details__list li .text p {
    margin: 0;
    color: var(--thm-black);
}

.project-details__pagination-box {
    position: relative;
    display: block;
    text-align: center;
    border-top: 1px solid var(--thm-bdr-color);
    border-bottom: 1px solid var(--thm-bdr-color);
    padding: 48px 0;
    margin-top: 113px;
}

.project-details__pagination li {
    display: inline-block;
}

.project-details__pagination li.next {
    float: left;
    position: relative;
}

.project-details__pagination li a {
    font-size: 18px;
    color: var(--thm-black);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 500ms ease;
}

.project-details__pagination li a:hover {
    color: var(--thm-primary);
}

.project-details__pagination li.next i {
    position: relative;
    transform: rotate(180deg);
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
}

.project-details__pagination li.previous {
    position: relative;
    float: right;
}

.project-details__pagination li.previous i {
    margin-left: 10px;
    font-size: 20px;
}

/*--------------------------------------------------------------
# Similar Work
--------------------------------------------------------------*/
.simialr-work {
    position: relative;
    display: block;
    padding: 0 0 90px;
}

.simialr-work .project-one__single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.news-details__left {
    position: relative;
    display: block;
}

.news-details__img {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.news-details__img img {
    width: 100%;
}

.news-details__date-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--thm-base);
    padding: 17px 22px 20px;
    border-top-right-radius: 8px;
}

.news-details__date-box p {
    font-size: 14px;
    color: var(--thm-black);
    font-weight: 800;
    margin: 0;
    line-height: 17px;
    text-align: center;
}

.news-details__content {
    position: relative;
    display: block;
}

.news-details__meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
}

.news-details__meta li+li {
    margin-left: 10px;
}

.news-details__meta li a {
    color: var(--thm-gray);
    font-size: 14px;
    transition: all 500ms ease;
}

.news-details__meta li a:hover {
    color: var(--thm-extra);
}

.news-details__meta li a i {
    color: var(--thm-extra);
}

.news-details__title {
    font-size: 34px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 24px;
}

.news-details__text-1 {
    margin: 0;
    padding-bottom: 37px;
}

.news-details__text-2 {
    margin: 0;
}

.news-details__text-3 {
    margin: 0;
}

.news-details__bottom {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0 30px;
    margin-top: 51px;
    border-top: 1px solid var(--thm-bdr-color);
}

.news-details__bottom p {
    margin: 0;
}

.news-details__tags span {
    color: var(--thm-black);
    font-weight: 800;
    font-size: 20px;
    margin-right: 16px;
}

.news-details__tags a {
    position: relative;
    color: var(--thm-base);

    font-size: 11px;
    font-weight: 800;
    background-color: var(--thm-primary);
    display: inline-block;
    padding: 3px 15px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: var(--thm-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-details__tags a:hover {
    background-color: var(--thm-black);
    color: var(--thm-base);

}

.news-details__tags a+a {
    margin-left: 6px;
}

.news-details__social-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.news-details__social-list 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-black);
    background-color: #eef3f7;
    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;
}

.news-details__social-list a:hover {
    color: var(--thm-base);

    transform: rotate(360deg);
}

.news-details__social-list a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    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;
}

.news-details__social-list a:hover:before {
    transform: scaleX(1.0);
}

.news-details__social-list a+a {
    margin-left: 10px;
}

.news-details__pagenation-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 51px;
}

.news-details__pagenation {
    position: relative;
    display: block;
}

.news-details__pagenation li {
    position: relative;
    float: left;
    font-size: 22px;
    color: var(--thm-black);
    background-color: #eef3f7;
    font-weight: 700;
    line-height: 36px;
    padding: 51px 0px;
    border-radius: var(--thm-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    max-width: 370px;
    width: 100%;
    padding-left: 60px;
}

.news-details__pagenation li+li {
    margin-left: 30px;
}

.news-details__pagenation li:hover {
    background-color: var(--thm-extra);
    color: var(--thm-base);

}
.digit-one{
    position: relative;
    display: block;
}
.digit-one .digit-one-bg {
    width: 1350px;
    margin: 0 auto;
    padding: 50px 0;
    background-color: #F5F7FB;
}
.digit-two{
    position: relative;
    display: block; 
}
.digit-two .part-one-content{
    background: rgba(93,214,252,0.1);
}
.digit-two .container {
    position: relative;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.part-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
   background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    z-index: -1;
  }
.digit-two .left-content .sc-ul{
    margin:15px 0 30px;
    padding: 0;
    list-style-type: none;
}
.digit-two .left-content .sc-ul li{
    font-size: 18px;
    color: #7E868C;
    line-height: 22px;
    margin: 30px 0;
    padding-left: 8px;
}
.digit-two .left-content .sc-ul li .icon-lt-cr{
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px;
}
.digit-two .left-content .sc-ul li::before{
    content: '';
    position: absolute;
    top: 11px;
    left:0;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #2563eb;
}
.digit-two .left-content .sc-ul li::after {
    content: '';
    position: absolute;
    top: 11px;
    left:0;
    transform: translate(-50%, -50%);
    width: 6px;  /* 渐变圆环最大直径（与容器同宽高） */
    height: 6px; /* 渐变圆环最大直径 */
    border-radius: 50%;
    /* 径向渐变：从主色开始，1px间隔后逐渐透明 */
    background: radial-gradient(circle, #2563eb, rgb(186, 203, 248));
}

.digit-three{
    position: relative;
    display: block;
}
.digit-three .mg0{
    margin-top: 1px;
}
.digit-three .mg100{
    margin-top: 100px;
}
.digit-three .part-one-content{
    padding: 5px 0 40px;
}
.digit-three .part-two-content{
    padding: 40px 0;
    background-color: #F5F6FA;
}
.digit-three .part-three-content{
    padding: 40px 0;
}
.digit-three .part-four-content{
    padding: 40px 0;
    background-color: #EAEEF7;
}


.digit-three ul,
.digit-three p{
    list-style: none;
    padding: 0;
    margin: 0;
}
.digit-three  .left-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.digit-three .left-content-t{
    font-family: Microsoft JhengHei UI, Microsoft JhengHei UI;
    font-weight: bold;
    font-size: 20px;
    color: var(--thm-black);
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.digit-three .left-content .sc-ul li{
    font-size: 18px;
    color: #7E868C;
    line-height: 22px;
    margin: 25px 0;
    padding-left: 10px;
}
.digit-three .left-content .sc-ul li .icon-lt-cr{
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px;
}
.digit-three .left-content .sc-ul li::before{
    content: '';
    position: absolute;
    top: 11px;
    left:0;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2563eb;
}

.digit-three .right-content .img-ul{
    display: flex;
}
.digit-three .right-content .img-ul li{
    display: block;
}
.digit-three .part-one-content .right-content .img-ul li img{
    width:200px;
}
.digit-three .right-content .img2-ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.digit-three .right-content .img2-ul li{
    display: block;
}
.digit-three .right-content .img2-ul li img{
    width:195px;
}

.digit-three  .part-two-content .left-content{
    margin-left: 60px;
}
.digit-three  .row.sm{
    display: none;
}

.digit-three .part-three-content img{
    width: 100%;
}

.digit-four{
    position: relative;
    display: block;
}
.digit-four{
    position: relative;
    display: block;
}
.digit-four .part-one-content{
    padding: 64px 45px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-one__title,
.comment-form__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 53px;
}

.comment-one__single {
    display: -webkit-box;
    display: flex;
    border-bottom: 1px solid var(--thm-bdr-color);
    padding-bottom: 50px;
    margin-bottom: 58px;
}

.comment-one__content {
    position: relative;
    margin-left: 35px;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 20px;
    color: var(--thm-black);
    font-weight: 800;
    margin-bottom: 40px;
}

.comment-one__content h3 span {
    font-size: 16px;
    color: var(--thm-primary);
    font-weight: 500;
    margin-left: 5px;
}

.comment-one__content p {
    margin: 0;
}

.comment-one__btn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 25px;
}

.comment-one__image img {
    border-radius: 50%;
}

.comment-form .comment-form__title {
    margin-top: -7px;
}

.comment-one__form .row {
    --bs-gutter-x: 20px;
}

.comment-form__input-box {
    position: relative;
    display: block;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 70px;
    width: 100%;
    border: none;
    background: #eef3f7;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
    border-radius: var(--thm-bdr-radius);
    outline: none;
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    display: block;
}

.comment-form__input-box textarea {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    height: 195px;
    width: 100%;
    background: #eef3f7;
    padding: 20px 30px 30px;
    border: none;
    border-radius: var(--thm-bdr-radius);
    outline: none;
    margin-bottom: 20px;
    display: block;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 21px;
}

.sidebar__search {
    position: relative;
    display: block;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--thm-extra);
    color: var(--thm-base);

    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    height: 80px;
    border-radius: var(--thm-bdr-radius);
    width: 100%;
    padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: var(--thm-base);

    opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
    color: var(--thm-base);

    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-base);

    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-base);

    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: var(--thm-base);

    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-base);

}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-base);

}

.sidebar__search-form button[type="submit"] {
    background-color: transparent;
    color: var(--thm-base);

    font-size: 24px;
    position: absolute;
    top: 0;
    right: 18px;
    bottom: 0;
    width: 60px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
}

.sidebar__categories {
    position: relative;
    display: block;
    background: #eef3f7;
    padding: 45px 25px 36px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar__categories .sidebar__title {
    margin-left: 25px;
}

.sidebar__categories-list {
    margin: 0;
}

.sidebar__categories-list li+li {
    margin-top: 6px;
}

.sidebar__categories-list li a {
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 3px 25px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar__categories-list li a:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, .05);
    color: var(--thm-black);
}

.sidebar__categories-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--thm-black);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sidebar__categories-list li a:hover span {
    color: var(--thm-black);
    transform: translateY(-50%) scale(1);
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 45px 50px 43px;
    background-color: #eef3f7;
    border-radius: var(--thm-bdr-radius);
}

.sidebar__post .sidebar__title {
    margin-bottom: 27px;
}

.sidebar__post-list {
    margin: 0;
}

.sidebar__post-list li {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-bottom: 1px solid var(--thm-base);
    padding-bottom: 33px;
}

.sidebar__post-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar__post-list li+li {
    margin-top: 21px;
}

.sidebar__post-image {
    margin-right: 20px;
}

.sidebar__post-image>img {
    width: 60px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar__post-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 26px;
    color: var(--thm-black);
}

.sidebar__post-content_meta {
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-gray);
    display: block;
}

.sidebar__post-content_meta i {
    font-size: 14px;
    color: var(--thm-extra);
    padding-right: 4px;
}

.sidebar__post-content h3 a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.sidebar__post-list li:hover .sidebar__post-content h3 a {
    color: var(--thm-primary);
}

.sidebar__tags {
    position: relative;
    display: block;
    background: #eef3f7;
    padding: 47px 45px 50px;
    border-radius: var(--thm-bdr-radius);
}

.sidebar__tags .sidebar__title {
    margin-left: 5px;
    margin-bottom: 36px;
}

.sidebar__tags-list {
    margin-top: -10px;
}

.sidebar__tags-btn {
    position: relative;
    color: var(--thm-black);
    font-size: 12px;
    font-weight: 800;
    background-color: var(--thm-base);
    display: inline-block;
    padding: 2px 15px;
    margin-left: 5px;
    margin-top: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__tags-btn:after {
    background-color: var(--thm-primary);
}

.sidebar__tags-list a+a {
    margin-left: 5px;
    margin-top: 10px;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.contact-page__left {
    position: relative;
    display: block;
}

.contact-page__left .section-title {
    margin-bottom: 25px;
}

.contact-page__text {
    margin: 0;
    padding-bottom: 40px;
}

.contact-page__social-list {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.contact-page__social-list 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-black);
    background-color: #eef3f7;
    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;
}

.contact-page__social-list a:hover {
    color: var(--thm-base);

    transform: rotate(360deg);
}

.contact-page__social-list a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    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;
}

.contact-page__social-list a:hover:before {
    transform: scaleX(1.0);
}

.contact-page__social-list a+a {
    margin-left: 10px;
}

.contact-page__right {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Contact Details
--------------------------------------------------------------*/
.contact-details {
    position: relative;
    display: block;
}

.contact-details__inner {
    position: relative;
    display: block;
    border-top: 1px solid var(--thm-bdr-color);
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-details__single {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-details__icon {
    position: relative;
    height: 50px;
    width: 50px;
    background-color: var(--thm-extra);
    font-size: 20px;
    color: var(--thm-base);

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.contact-details__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    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;
}

.contact-details__single:hover .contact-details__icon:before {
    transform: scaleX(1.0);
}

.contact-details__icon span {
    position: relative;
    display: inline-block;
}

.contact-details__content {
    position: relative;
    display: block;
    margin-left: 20px;
}

.contact-details__sub-title {
    font-size: 14px;
    margin: 0;
    line-height: 24px;
}

.contact-details__content h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--thm-black);
    line-height: 28px;
}

.contact-details__content h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--thm-black);
    line-height: 26px;
}

.contact-details__content h4 a {
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-details__content h4 a:hover {
    color: var(--thm-extra);
}

.contact-details__single-2 {
    margin-left: 85px;
}

.contact-details__single-3 {
    margin-left: 160px;
}

/*--------------------------------------------------------------
# Contact Page Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
    position: relative;
    display: block;
    z-index: 2;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 518px;
    width: 100%;
    max-width: 1595px;
    margin: 0 auto;
    border-radius: var(--thm-bdr-radius);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about-two__left {
    position: relative;
    display: block;
    margin-right: 62px;
}

.about-two__img {
    position: relative;
    display: block;
}

.about-two__img img {
    width: 100%;
    border-radius: var(--thm-bdr-radius);
}

.about-two__right {
    position: relative;
    display: block;
    margin-left: -30px;
}

.about-two__right .section-title {
    margin-bottom: 28px;
}

.about-two__text-1 {
    margin: 0;
    padding-bottom: 19px;
}

.about-two__text-2 {
    font-size: 24px;
    color: var(--thm-primary);
    font-weight: 600;
    margin: 0;
    line-height: 40px;
    padding-bottom: 39px;
}

.about-two__progress {
    display: flex;
    align-items: center;
    line-height: 0;
}

.about-two__progress-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

@media (min-width: 768px) {
    .about-two__progress-wrap {
        grid-template-columns: repeat(2, 290px);
    }
}

.about-two__progress-box {
    position: relative;
    display: inline-block;
}

.about-two__progress-box canvas {
    transform: rotate(90deg);
}

.about-two__progress-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translateY(-50%) translateX(-50%);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: var(--thm-black);
}

.about-two__progress h3 {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 800;
    color: var(--thm-black);
    width: 120px;
    margin-left: 20px;
}

/*About Page Video*/
.about-page-video {
    padding-bottom: 110px;
}

/*About Page Team*/
.about-page-team {
    padding: 120px 0 90px;
}

/*Services Two*/
.services-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.services-two:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    content: "";
    background-color: #eef3f7;
    z-index: -1;
}

/*Business Growth Two*/
.business-growth-two {
    position: relative;
    display: block;
    background-color: var(--thm-base);
}

.business-growth-two .business-growth__top {
    padding: 0px 0 120px;
}

.business-growth-two .section-title__tagline {
    color: var(--thm-gray);
}

.business-growth-two .section-title__title {
    color: #353535;
}

.business-growth-two .business-growth__right-text {
    color: var(--thm-gray);
}

.container .module-title{
    padding-top: 45px;
    padding-bottom: 30px;
    text-align: center;
}
.container .module-title .module-title-h{
    margin: 0;
    font-weight: 600;
    color: var(--thm-th);
    font-size: 28px;
    line-height: 60px;
    letter-spacing: 0.03em;
}

.container .module-title .module-title-t{
    display: inline-flex;
    color: var(--thm-gray);
    font-size: 16px;
    align-items: center;
    line-height: 20px;
    margin-bottom: 2px;
    font-weight: 500;
}

.container .module-titles{
    padding-top: 45px;
    padding-bottom: 35px;
    text-align: center;
}
.container .module-titles .module-title-h{
    margin: 0;
    font-weight: 600;
    color: var(--thm-black);
    font-size: 28px;
    line-height: 60px;
    letter-spacing: 0.03em;
}

.container .module-titles .module-title-t{
    display: inline-flex;
    color: var(--thm-gray);
    font-size: 16px;
    align-items: center;
    line-height: 30px;
    margin-bottom: 2px;
    font-weight: 500;
}
.case-content-p{
    margin-top: 50px;
}
.case-ms-p{
    font-size: 16px;
    line-height: 24px;
}
.case-bf-h{
    font-size: 22px;
    font-weight: bold;
}
.case-bf-p{
    margin-top: 25px;
    line-height: 24px;
    font-size: 16px;
}
.case-fa{
    position: relative;
    display: block;
    background-color: #F5F6FA;
    padding: 30px 0 40px;
}
.case-fa .container .module-title {
    padding: 0;
    text-align: center;
}
.case-fa .part-item{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.case-fa h5{
    margin-bottom: 30px;
}
.case-fa .part-item .hd{
    display: inline-block;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    color: var(--thm-black);
    background: linear-gradient( 90deg, rgba(22,96,225,0.4) 0%, rgba(22,96,225,0) 100%);
    border-radius: 6px 6px 6px 6px;
    padding: 0 20px;
    font-weight: bold;
}
.case-fa .part-item img{
    display: inline-block;
    width: 45px;
    height: 45px;
}
.case-fa .part-item p{
    font-size: 16px;
    line-height: 24px;
    color: var(--thm-gray);
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
}
.case-fa__single{
    padding: 30px 40px;
    background-color: #fff;
    height: 100%;
    border-radius: 6px;
}
.case-fa .part-item p.c-hd{
    font-size: 20px;
    font-weight: bold;
}
.case-fa .part-item p.line{
    width: 336px;
    height: 0px;
    border-radius: 0px 0px 0px 0px;
    border: 1px solid;
    border-image: linear-gradient(90deg, rgba(22, 96, 225, 1), rgba(55, 125, 255, 0)) 1 1;
    margin: 20px 0;
}
.case-fa .bj-ms{
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--thm-gray);
    margin-bottom: 30px;
}
.case-fa .bj-p{
    position: relative;
    padding-left:70px;
    margin: 0;
    font-size: 18px;
    line-height: 64px;
    font-weight: bold;
    color: var(--thm-gray);
    background: rgba(220,231,251,0.4);
    border-radius: 6px 6px 6px 6px;
    margin: 10px 0;
}
.case-fa .bj-p::before{
    content: '';
    position: absolute;
    left: 42px;
    top: 21px;
    width: 21px;
    height: 21px;
    background-image: url(../pic/case/x.png);
    background-repeat: no-repeat;
    background-size: cover;
}


.case-hz{
    position: relative;
    display: block;
    background-color: #F5F6FA;
    padding: 30px 0 40px;
    margin-top: 40px;
}
.case-hz .container .module-title {
    padding: 0;
    text-align: center;
}
.case-hz .item{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    height: 100%;
    background-color: #F9FAFC;
    align-items: center;
    border-radius: 6px;
}
.case-hz .item p{
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: var(--thm-gray);
}

.case-hz .item h5{
    position: relative;
    display: flex;
    height: 45px;
    line-height: 45px;
    margin: 8px 0 15px;
    padding-left: 50px;
    font-size: 20px;
    font-weight: 600;
    color: var(--thm-black);
}
.case-hz .item h5::before{
    content: '';
    position: absolute;
    left: 0;
    width: 45px;
    height: 45px;
    background-image: url(../pic/case/cg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.case-fx{
    position: relative;
    display: block;
    background-color:#fff;
    padding: 30px 0 0;
}
.case-fx .container .module-title {
    padding: 0;
    text-align: center;
}

.case-fx .case-fx__single p{
    font-size: 16px;
    line-height: 24px;
    color: var(--thm-gray);
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
}
.case-fx .case-fx__single{
    padding: 30px 40px;
    background-color: #fff;
    height: 100%;
    border-radius: 6px;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.case-fx .case-fx__single p.c-hd{
    font-weight: bold;
    font-size: 20px;
}
.case-fx .case-fx__single p.line{
    width: 336px;
    height: 0px;
    border-radius: 0px 0px 0px 0px;
    border: 1px solid;
    border-image: linear-gradient(90deg, rgba(22, 96, 225, 1), rgba(55, 125, 255, 0)) 1 1;
    margin: 20px 0;
}
.case-fx .case-cg-p{
    padding: 45px 40px;
    background: rgba(93,214,252,0.1);
    border-radius: 5px 5px 5px 5px;
    line-height: 24px;
    font-size: 16px;
}

.casebf-al{
    position: relative;
    display: block;
    margin-top: 10px;
    padding: 40px 0;
}
.casebf-al::before{
    content: "";
    position: absolute;
    top: -10px; /* 阴影的高度 */
    left: 0;
    width: 100%;
    height: 10px; /* 阴影的高度 */
    background: linear-gradient(to bottom, rgba(216, 216, 216, 0.1), transparent); /* 创建渐变阴影 */
}

.casebf-al .case-content-p{
    padding-right: 30px;
}


.case-solve{
    position: relative;
    display: block;
}

.case-solve .part-one-content{
    padding-bottom: 20px;
}
.case-solve .part-two-content{
    padding: 40px 0 20px;
    background-color: #F5F6FA;
}
.case-solve .part-three-content{
    padding: 30px 0 5px;
}
.case-solve .part-four-content{
    padding: 30px 0 10px;
    background-color: #e6e9f0;
}
.case-solve .part-five-content{
    padding: 30px 0 0;
}




/* 右侧悬浮层 */
.float-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000; /* 确保在其他内容上方 */
}
/* 初始隐藏悬浮层 */
/* .float-sidebar {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
} */

/* 滚动后显示状态 */
.float-sidebar.visible {
    opacity: 1;
    visibility: visible;
}

.float-item {
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
}

.float-icon {
    display: block;
    width: 50px;
    height: 50px;
    background:var(--thm-primary);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 7px;
    transition: all 0.3s ease;
}

.float-icon:hover {
    background: var(--thm-black);
}

.float-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 保持图片比例 */
}

/* 悬停提示框 */
.float-tooltip {
    position: absolute;
    right: 60px; /* 图标右侧留出空间 */
    top: 50%;
    transform: translateY(-50%);
    background: #333333;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap; /* 文字不换行 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.float-tooltip.qrcode {
    padding: 8px;
}

.float-item:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
}

/* 扫码体验弹窗 */
.qr-code-popup-r {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    display: block; 
    min-width: 140px;
    text-align: center;
}

.qr-code-popup-r img {
    width: 120px;
    height: 120px;
}

.qr-code-popup-r .qr-tip {
    color: #666;
    font-size: 12px;
    margin: 0;
}

 .Lelem{
            display: none;
  }
.page-header-bg.service-saas-bg{
    background-image: url(../img/sc-br.jpg);
}
.page-header-bg.service-bg{
    background-image: url(../img/services-banner.jpg);
}
.cta-one-bg.services{
    background-image: url(../pic/services/dzkf.jpg);
}
.page-header-bg.services-supply-sm{
    background-image: url(../img/qc-br.jpg);
}
.about-pp-bg{
    background-image: url(../pic/about/pp_bg.jpg);
}
.page-header-bg.case-meal{
    background-image: url(../img/case1-banner.jpg);
}
.image-layer.index{
    background-image: url(../pic/main-slider-1.jpg);
}
.pay-one-bg.index{
    background-image: url(../pic/pay.jpg);
}
.page-header-bg.project-employee{
    background-image: url(../pic/solution/ew-banner.jpg);
}
.part-bg.project-digit{
    background-image: url(../pic/pro/digit/part2_bg.png);
}
.img-ul-sm{
    display: none;
}


