@font-face {
    font-family: 'OUTFIT-REGULAR';
    src: url('OUTFIT-REGULAR.eot'); /* IE9 Compat Modes */
    src: url('OUTFIT-REGULAR.eot?#iefix') format('embedded-opentype'),
    url('OUTFIT-REGULAR.woff2') format('woff2'),
    url('OUTFIT-REGULAR.woff') format('woff'),
    url('OUTFIT-REGULAR.TTF') format('truetype');
}

@font-face {
    font-family: 'OUTFIT-MEDIUM';
    src: url('OUTFIT-MEDIUM.eot');
    src: url('OUTFIT-MEDIUM.eot?#iefix') format('embedded-opentype'),
    url('OUTFIT-MEDIUM.woff2') format('woff2'),
    url('OUTFIT-MEDIUM.woff') format('woff'),
    url('OUTFIT-MEDIUM.TTF') format('truetype');
}

@font-face {
    font-family: 'OUTFIT-LIGHT';
    src: url('OUTFIT-LIGHT.eot');
    src: url('OUTFIT-LIGHT.eot?#iefix') format('embedded-opentype'),
    url('OUTFIT-LIGHT.woff2') format('woff2'),
    url('OUTFIT-LIGHT.woff') format('woff'),
    url('OUTFIT-LIGHT.TTF') format('truetype');
}

@font-face {
    font-family: 'OUTFIT-BOLD';
    src: url('OUTFIT-BOLD.eot');
    src: url('OUTFIT-BOLD.eot?#iefix') format('embedded-opentype'),
    url('OUTFIT-BOLD.woff2') format('woff2'),
    url('OUTFIT-BOLD.woff') format('woff'),
    url('OUTFIT-BOLD.TTF') format('truetype');
}

body {
    font-family: "Microsoft YaHei","微软雅黑", 'OUTFIT-MEDIUM',sans-serif;
}
body h1,body h2,body h3,body h4,body h5,body h6{
    font-family:'OUTFIT-REGULAR'
}
input:focus, textarea:focus {
    outline: none;
    border: 1px solid #ccc; /* 可选：设置自定义边框颜色 */
}

/* 或者直接全局去除边框 */
input, textarea {
    border: none;
    outline: none;
}

/* 去除IE10+浏览器文本框后的小叉叉 */
input::-ms-clear {
    display: none;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-tip-big {
    font-size: 33px;
    font-weight: bold;
}

.btn-tip-small {
    font-size: 20px;
    font-weight: bold;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    color: var(--bs-white);
    font-size: 15px;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 33px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free", serif;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown-toggle:hover::after {
    content: "\f106";
}


.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar.navbar-expand-lg {
    justify-content: space-between !important;
}
.navbar-collapse {
    flex-grow: unset;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }


}


@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar-nav .nav-item .dropdown-menu {
        display: flex;
        flex-direction: column;
        visibility: hidden;
        top: 100%;
        transform-origin: 0% 0%;
        transition: .5s;
        z-index: 100;
        left: 0;
        right: 0;
        width: 100%;
    }

    .navbar-nav .nav-item {
        position: static;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .dropdown-column {
        flex: 1;
    }

    .navbar-light {
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .dropdown-menu a {
        color: #656766 ;
        display: block;
        border-radius: 0.2rem;
        padding: 0.3rem;
    }
    .dropdown-menu a:hover {
        color: #656766 ;
        background: #2a2a2a;
    }


    /* 确保下拉菜单内容与导航栏内容对齐 */
    .dropdown-menu .container {
        max-width: 1140px; /* 与Bootstrap容器宽度一致 */
        margin: 0 auto;
    }

}

.navbar>.container .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free", serif;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar>.container .dropdown-toggle:hover::after {
    content: "\f106";
}


.navbar > .container {
    position: relative;
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    height: 700px;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 90px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}




.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** home top start ***/

.topSize {
    font-size: calc(1rem + 2vw);
}
.homePlatform {
    background: linear-gradient(
            to right,
            #0cfdea 0%,      /* 左侧颜色 */
            #47fd78 40%,    /* 过渡色 */
            #0cfdea 50%,    /* 保持左侧颜色 */
            #0cfdea 60%,     /* 过渡回右侧颜色 */
            #0cfdea 100%     /* 右侧颜色 */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.homeBtn {
    display: inline-block;
    padding: 0.5rem 2rem;
    margin: 0px 1rem;
    border-radius: 2rem;
}
.homeEnterBtn {
    background: #0bfdeb;
    color: #000000;
}
.homeloginBtn {
    background: #222727;
    border: 1px solid #4b4b4b;
    box-shadow:
            0 0 0 1px rgba(0, 0, 0, 0.1), /* 轻微边框 */
            2px 2px 4px rgba(6, 165, 150, 0.15); /* 右下角投影 */
    transition: all 0.3s ease;
}

/*** home video end ***/



/*** home web3 Start ***/
.homeWeb3 {
    font-size: calc(1rem + 2vw);
}
.web3Show {
    background: #2a2a2a;
    border: 1px solid #4b4b4b;
    box-shadow:
            0 0 0 1px rgba(0, 0, 0, 0.1), /* 轻微边框 */
            2px 2px 4px rgba(6, 165, 150, 0.15); /* 右下角投影 */
    transition: all 0.3s ease;
    width: 21rem;
    height: 26rem;
    border-radius: 1.6rem;
    padding: 1rem 1.5rem;
    /* 主要内发光效果 */
    box-shadow:
            inset 0 0 15px rgba(255, 255, 255, 0.3),  /* 整体内发光 */
            inset 0 0 30px rgba(62, 62, 62, 0.15); /* 更柔和的扩散层 */

}
.web3Show p {
    color: #959595;
}
.transferLeft {
    transform: perspective(1200px) rotate(-8deg);
}

.transferRight {
    transform: perspective(1200px) rotate(8deg);
}
.scrollTechnical .scrollTechnicalLevel {
    padding-bottom: 6rem;
}
/*** home web3 End ***/

/*** regional start ***/
.regionalBg {
    background: url("../image/regionalbg.png") no-repeat;
    background-size: 100% 100%;
    padding: 2rem 2.6rem 2rem 2.6rem;
}
.regionalBanner {
    background: url("../image/regionalBannerBg.png") no-repeat;
    background-size: 100% 100%;
    padding: 1rem 0.6rem 0.6rem 0.6rem;
}
.regionalBanner h1 {
    font-size: calc(1rem + 2vw);
}
.regionalBanner b {
    background: linear-gradient(
            to right,
            #0cfdea 0%,      /* 左侧颜色 */
            #47fd78 40%,    /* 过渡色 */
            #0cfdea 50%,    /* 保持左侧颜色 */
            #0cfdea 60%,     /* 过渡回右侧颜色 */
            #0cfdea 100%     /* 右侧颜色 */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: calc(1rem + 2vw);
}
.regionalBanner li div {
    border-left: 1px dashed #919191;
    padding-left: 0.5rem;
}
.regionalBanner li div span {
    background: #2a2a2a;
    border: 1px #363636 solid;
    padding: 1px 0.3rem;
    margin-bottom: 0.3rem;
    display: inline-block;
}

.regionalBanner li:first-child  div{
    border: none;
}

.chainBanner {
    background: url("../image/chainBannerBg.png") no-repeat;
    background-size: 100% 100%;
}
.chainBanner li h1 {
    font-size: calc(1rem + 0.3vw);
}
.chainBanner li div {
    padding: 1.2rem 0.5rem 0.5rem 0.5rem;
}
/*** regional end ***/

/*** platform api start ***/
.framerContent {
    /* Ensure proper layout context if needed */
}

.progressBar {
    position: relative;
}

.progressBar .lineContainer {
    background-color: #2a2a2a;
    height: 100%;
    width: 2px;
    position: relative;
    overflow: visible;
    z-index: 1;
    padding: 0;
    transform: translateY(50%);
}
.progressBar .lineContainer.lastLine {
    width: 0px;
}

.progressBar .lineContainer .lineVariant {
    position: relative;
    width: 100%;
    height: 100%;
}

.progressBar .lineContainer .lineVariant.active {
    background: #ff733a;
}

.progressBar .lineContainer .lineVariant .progressFiller {
    aspect-ratio: 1;
    background-color: #2a2a2a;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    z-index: 2;
}


.progressBar .lineContainer .lineVariant .progressFiller.dot {
    background-color: #0bfdeb;
    width: 16px;
    height: 16px;
    z-index: 3;
}

/*** payments end ***/

/*** advantage Start ***/

.cardFlip {

}
.rotateLeft {
    transform: rotate(-15deg);
}

.rotateRight {
    transform: rotate(15deg);
}
.flipBox {
    width: 100%;
    height: 30rem;
    position: relative;
    transform-style: preserve-3d; /* 必须启用 3D 转换 */
    transform-origin: center;  /* 确保围绕中心旋转 */
    transition: transform 1s;
}

/* 包含正面和背面内容的容器 */
.flipBox .flipContent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    backface-visibility: hidden; /* 确保翻转时背面的内容隐藏 */
}

/* 正面：显示图文 */
.flipBox .rotateFront {
    z-index: 2;
}

/* 背面：显示图文 */
.flipBox .rotateBack {
    transform: rotateY(180deg); /* 背面旋转180度 */
}


.rotateFrontFirst {
    border: 1px solid #454545;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.1), inset 0 0 30px rgba(62, 62, 62, 0.15);
    background: #2a2a2a;
    border-radius: 0.6rem;
}

.rotateFrontSecond {
    background: #0cfdec;
    border-radius: 0.6rem;
}


.rotateBackFirst {
    height: 25rem;
    background: #010101;
    border: 1px solid #5a5a5a;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 2px 4px rgba(6, 165, 150, 0.15);
    transition: all 0.3s ease;
    border-radius: 1.6rem;
    padding: 1rem 1rem 1rem 1.6rem;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3), inset 0 0 30px rgba(62, 62, 62, 0.15);
}
.rotateBackSecond {
    height: 25rem;
    background: #000000;
    border: 1px solid #011a17;
    box-shadow:  0 0 15px rgba(0, 0, 0, 0.1), 2px 2px 4px rgba(2, 26, 26, 1);
    transition: all 0.3s ease;
    border-radius: 1.6rem;
    padding: 1rem 1rem 1rem 1.6rem;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 2px 4px rgba(2, 26, 26, 1);
}

.flipBox .rotateBack ul li{
    line-height: 2rem;
    text-indent: 1.6rem;
    margin-bottom: 1rem;
}

.rotateBackFirst ul li {
    background: url("../image/wrong.png") no-repeat left 18%;
}

.rotateBackSecond ul li {
    background: url("../image/right.png") no-repeat left 18%;
}

/*** advantage End ***/

/*** Features Start ***/

/*** rotate Start ***/
.rotateContent {
    pointer-events: none;
    height: 800px;
    position: relative;
    overflow: hidden;
}

.rotateText {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: calc(1rem + 0.3vw);
    z-index: 2;
    text-align: center;
}
.rotateBottomMask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 86%;
    background: linear-gradient(to bottom, transparent, #000000);
    z-index: 1;
}
/*** rotate end ***/

/*** wireframe start ***/
.xLine {
    position: relative;
    height: 1px;
    border-bottom: 1px #4d4d4d dashed;
}
.xLine::before,
.xLine::after {
    content: "+";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #4d4d4d;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    background: #000000;
    z-index: 10;
    padding: 2px;
}
.xLine::before {
    left: -5px;

}
.xLine::after {
    right: -5px;
}

.yLine {
    position: relative;
}

.yLine::before,
.yLine::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left:  1px #4d4d4d dashed;
    z-index: 9;
}

.yLine::before {
    left: 0;
}

.yLine::after {
    right: 0;
}

@media (min-width: 576px) {
    .mLine {
        position: relative;
        height: 100%;
    }

    .mLine::after{
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        border-left:  1px #4d4d4d dashed;
        transform: translateY(10px);
        z-index: 10;
    }
}
.leftLine {
    border-left:  1px #4d4d4d dashed;
}

/*** wireframe end ***/

/*** customers say End ***/
.customersLeft {
    background: #000000;
    box-shadow: inset 0 0 15px 5px rgba(27, 27, 27, 0.7);
    position: relative;
    border: #484848 1px solid;
    border-radius: 0.5rem;
}
.customersRight {
    background: #000000;
    box-shadow: inset 0 0 15px 5px rgba(27, 27, 27, 0.7);
    position: relative;
    border: #484848 1px solid;
    border-radius: 0.5rem;
}
.customersBottom {
    background: #000000;
    box-shadow: inset 0 0 30px 16px rgba(27, 27, 27, 0.8);
    position: relative;
    border: #484848 1px solid;
    border-radius: 1rem;
    height: 26rem;
}
.customersMiddle {
    border: #07988d 1px solid;
    box-shadow: inset 0 0 10px 16px rgba(2, 48, 44, 0.6);
}
/*** customers say End ***/


/*** home switch start ***/
.switchTab {
    background: #000000;
    box-shadow: inset 0 0 15px 5px rgba(27, 27, 27, 0.7);
    position: relative;
    border: #484848 1px solid;
    border-radius: 2rem;
    display: inline-block;
    padding: 0.3rem;
}
.switchTab li a {
    border: none !important;
    border-radius: 2rem !important;
    padding: 0.5rem 2rem;
}
.switchTab li a.active {
    background: #189188 !important;
    color: #0bfdeb !important;
}

/*** home switch End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: var(--bs-white);
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.offer-section .nav a.accordion-link h5 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--bs-white);
}
/*** Offer End ***/

/*** news Start ***/
.news .newsTag {
    background: #2a2a2a;
    padding: 0.3rem 0.8rem;
    color: #eeeeee;
}
.news .news-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.news .top1News {
    background: #0086ff;
    border-radius: 8px;
}
.news .top1News img {
    border-radius: 8px 8px 0px 0px;
}
.news  img {
    border-radius: 8px;
}
/*** news End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-secondary);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
}
/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

.team .team-item .team-img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-primary);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item  .testimonial-quote-left {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item  .testimonial-quote-right {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** common start ***/
.headerMenuShow {
    border-radius: 10px;
    background: #161616 !important;
    border: 1px solid #4b4b4b;
    padding: 0.6rem 0.6rem 0.6rem 0.6rem;
    box-shadow: 2px 2px 4px rgba(93, 151, 133, 0.25);
}
.headerMenuShow .iconBg {
    background: #363636;
    border-radius: 0.3rem;
    padding:  0.6rem;
}

.btnCircle {
    border-radius: 2rem;
    background: #222222;
    border: 1px solid #4b4b4b;
    display: inline-block;
    padding: 0.3rem 1.3rem;
    box-shadow: 2px 2px 4px rgba(93, 151, 133, 0.25);
}
.btnWhiteCircle {
    border-radius: 2rem;
    background: #ffffff;
    display: inline-block;
    padding: 0.3rem 1.3rem;
}
.btnGreenCircle {
    border-radius: 2rem;
    background: #0bfdeb;
    display: inline-block;
    padding: 0.3rem 1.3rem;
}



.line_below{
    position: relative;
    z-index: 10;
}
.imgBorder {
    border-radius: 1.2rem;
    border: 1px solid #4b4b4b;
}

.leftPading{
    padding-left: 1.6rem;
}

.lineBottom {
    border-bottom: #eeeeee solid 1px;
    margin: 0.5rem 0px;
}


/*** common end ***/

/*** market start ***/
.market .container{
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** market end ***/

.container-header {
    background:
            radial-gradient(
                    ellipse at left bottom,
                    rgba(14, 254, 254, 0.8) 0%,      /* 左下角主绿色 */
                    rgba(14, 254, 254, 0.4) 25%,     /* 绿色渐变过渡 */
                    rgba(14, 254, 254, 0.1) 46%,     /* 渐弱 */
                    transparent 70%                 /* 完全透明 */
            ),
            #000000;                          /* 黑色背景层 */
    background-blend-mode: normal;
}


/*** partners Start ***/
.partners {
    background: #000000;
    box-shadow: inset 0 0 36px 26px rgba(27, 27, 27, 0.7);
    border: #484848 1px solid;
    border-radius: 2rem;
}
.partners .partnerImgBg {

}

/*** partners end ***/

/*** solutions start ***/
.solutions {

}

.solutionsContent {

}

.solutionsContent li div {
    background: #2a2a2a;
    border: 1px solid #4b4b4b;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 2px 4px rgba(6, 165, 150, 0.15);
    transition: all 0.3s ease;
    border-radius: 1.6rem;
    padding: 1rem 2rem;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3), inset 0 0 30px rgba(62, 62, 62, 0.15);
}

.askList {

}
.askList .askItem {
    background: #2a2a2a;
    border: 1px solid #4b4b4b;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 2px 4px rgba(6, 165, 150, 0.15);
    transition: all 0.3s ease;
    border-radius: 1.6rem;
    padding: 1rem 2rem;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3), inset 0 0 30px rgba(62, 62, 62, 0.15);
}

.askList .aksExpand {
    background: #161616;
    padding: 0.2rem 0.4rem 0.2rem 0.4rem;
    border-radius: 0.3rem;
    border: #4b4b4b 1px solid;
}
/*** solutions end ***/

/*** Blockchain Links start ***/
.blockchainItem {
    background: #000000;
    border: 1px solid #4b4b4b;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 2px 4px rgba(6, 165, 150, 0.15);
    transition: all 0.3s ease;
    border-radius: 1.6rem;
    padding: 1rem 2rem;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3), inset 0 0 30px rgba(62, 62, 62, 0.15);
}

/*** Blockchain Links end ***/


/*** support start ***/

.support .support_title{
    color: #eeeeee;
    font-family: "OUTFIT-LIGHT";
    font-size: calc(1rem + 1.5vw);
}
.support_content{
    font-size: calc(0.3rem + 0.5vw);;
}
.support_comments {
    background: #000000;
    border: 1px solid #4b4b4b;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 2px 4px rgba(6, 165, 150, 0.15);
    transition: all 0.3s ease;
    border-radius: 1.6rem;
    padding: 1rem 2rem;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3), inset 0 0 30px rgba(62, 62, 62, 0.15);
}
.support_comments input ,.support_comments textarea{
    width: 100%;
    border: 1px #363636 solid;
    border-radius: 8px;
    padding: 6px;
    background: none;
    color: #787878;

}
.support_comments input:focus,
.support_comments textarea:focus {
    border-color: #0cfdec; /* Or any color you prefer */
}
.support_comments label{
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}
.support_comments .submit{
    background: #0cfdec;
    border-radius: 2rem;
    color: #000000;
    width: 100%;
    display: block;
    padding: 0.68rem 0px;
}
/*** support end ***/



/*** contact start ***/
.contactBorder {
    border: #7c7c7c 1px solid;
    border-radius: 5px;
}

.contactBorder1 {
    border: #363636 1px solid;
    border-radius: 5px;
    padding: 6px;
}
.contactTitle {
    display: inline-block;
}

.contact_comments {
    background: #000000;
    border: 1px solid #4b4b4b;
    transition: all 0.3s ease;
    border-radius: 2rem;
    padding: 1rem 2rem;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.3), inset 0 0 30px rgba(62, 62, 62, 0.15);
}
.contact_comments ul li {
    margin-bottom: 2rem;
}
/*** contact end ***/


/*** login start ***/

.loginContent {
    background: #000000;
    border: 1px solid #4b4b4b;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 2px 4px rgba(6, 165, 150, 0.15);
    transition: all 0.3s ease;
    border-radius: 1.6rem;
    padding: 1rem 2rem;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3), inset 0 0 30px rgba(62, 62, 62, 0.15);
}
.loginContent input ,.loginContent textarea{
    width: 100%;
    border: 1px #363636 solid;
    border-radius: 8px;
    padding: 6px;
    background: none;
    color: #787878;
}
.loginContent input:focus,
.loginContent textarea:focus {
    border-color: #0cfdec; /* Or any color you prefer */
}
.loginContent label{
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}
.loginContent .submit{
    background: #0cfdec;
    border-radius: 2rem;
    color: #000000;
    width: 100%;
    display: block;
    padding: 0.68rem 0px;
}

.agree-checkbox {
    display: none;
}
/* Style the custom checkbox using label */
.agree-checkbox-label {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #4b4b4b; /* Border style */
    background-color: #000000; /* Default background */
    cursor: pointer;
    position: relative;
    margin-top: 0.2rem !important;
}


.agree-checkbox:checked + .agree-checkbox-label {
    background-color: #4CAF50; /* Checked background color */
    border-color: #4b4b4b;     /* Checked border color */
}

.agree-checkbox:checked + .agree-checkbox-label::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
    color: white;
    font-size: 14px;
}
/*** login end ***/

/*** Office start ***/
.office {

}
.office .banner h1{
    font-size: calc(1rem + 2vw);
    font-family: "OUTFIT-LIGHT";
}
.office .calendar{
    background: #eeeeee;
    border-radius: 1rem;
    color: #000000;
}
.office .calendar h1 {
    font-size: calc(4rem + 2vw);
    text-align: center;
}
.officeItem {
    list-style: none;
    margin: 0px;
    padding: 0px;
    color: #eeeeee;
}


.officeItem h1 {
    margin: 11rem 0px 3rem 0px;
}
.officeItem .officeContent {
    height: 6rem;
}
.coverage h1{
    font-size: calc(3rem + 1vw);
    font-family: "OUTFIT-LIGHT";
}

.coverage h3{
    font-size: calc(1rem + 1vw);
    color: #0086ff;
}
.nowButton {
    background: #0086ff;
    color: #eeeeee;
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 3px ;
    font-weight: bold;
    font-size: 1.3rem;
}
.nowButton:hover{
    color: #eeeeee;
}
/*** Office end ***/


/*** help end ***/
.help {

}
.helpSearch {
    border-radius: 30px;
    border: 1px solid #051b36;
    box-shadow: inset 0 0 8px rgba(125, 125, 125, 0.2);
}
.helpSearch input {
    background: none;
    color: #eeeeee;
}
.helpTitle {
  font-size: calc(2.3rem + 2vw);
  font-family: "OUTFIT-LIGHT";
}
.helpSearch input::placeholder {
    color: #eeeeee;
}
.helpSearch input:focus {
    border-color: transparent;
    outline: none;
}
.helpSearch .searchBtn {
    border-radius: 2rem;
}

.helpContent p {
    min-height: 4.6rem;
    height: auto;
}

/*** help end ***/

/*** news start ***/
.newsContent .infoContent {
  line-height: 1.8rem;
}

/*** news end ***/



/*** Footer Start ***/

.footer .footer-item {
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {

}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.btnSocial a{
    background: #2a2a2a;
    border: 1px solid #4b4b4b;
    box-shadow:
            0 0 0 1px rgba(0, 0, 0, 0.1), /* 轻微边框 */
            2px 2px 4px rgba(6, 165, 150, 0.15); /* 右下角投影 */
    transition: all 0.3s ease;
    box-shadow:
            inset 0 0 2px rgba(255, 255, 255, 0.3),  /* 整体内发光 */
            inset 0 0 10px rgba(62, 62, 62, 0.15); /* 更柔和的扩散层 */
}


/*** Footer End ***/



/*** copyright Start ***/
.
/*** copyright end ***/


