/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 文本样式 */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.05rem;
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 0.1rem;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 列表样式 */
ul,
ol {
    margin-bottom: 0.1rem;
    padding-left: 0.2rem;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

li {
    margin-bottom: 0.05rem;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.1rem;
}

th,
td {
    padding: 0.075rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

th {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* 表单样式 */
form {
    margin-bottom: 0.1rem;
}

label {
    display: block;
    margin-bottom: 0.05rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.05rem 0.075rem;
    margin-bottom: 0.1rem;
    border: 1px solid #ced4da;
    border-radius: 0.025rem;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.02rem rgba(0, 123, 255, 0.25);
}

button,
input[type="submit"],
input[type="button"] {
    display: inline-block;
    padding: 0.05rem 0.1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 0.025rem;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    transition: background-color 0.2s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #0056b3;
}

/* 图片样式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-style: none !important;
}

/* 辅助类 */
.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 0.1rem;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.05rem;
}

.mb-2 {
    margin-bottom: 0.1rem;
}

.mb-3 {
    margin-bottom: 0.15rem;
}

.mb-4 {
    margin-bottom: 0.2rem;
}

/* 响应式基础设置 */
@media (max-width: 76.8rem) {
    html {
        font-size: 1.4rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    th,
    td {
        padding: 0.05rem;
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

html,
body {
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: PingFangSC;
    color: #fff;
    background: rgba(0, 12, 22, 1);
    scroll-behavior: smooth;

}

#app {
    height: 100%;
    /* max-width: 192rem; */
    margin: 0 auto;
    min-width: 37.5rem;
    padding-bottom: 10rem;
    position: relative;

}

/* 这里可以添加原有的CSS样式 */
.swiper-pagination {
    .swiper-pagination-bullet {
        background: rgba(255, 255, 255);
        border-radius: 0.4rem;
        height: 0.7rem;
        width: 0.7rem;
        opacity: 0.4;
        transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
        width: 1.8rem;
        height: 0.7rem;
        background: #FFFFFF;
        border-radius: 0.4rem;
        opacity: 1;
    }
}

.light-rays-container {
    position: absolute;
    top: 0;
}

/* 图片基础格式化 */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
}

/* 图片容器样式 */
.img-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto 0.15rem;
}

/* 图片对齐方式 */
.img-left {
    float: left;
    margin-right: 0.15rem;
    margin-bottom: 0.1rem;
}

.img-right {
    float: right;
    margin-left: 0.15rem;
    margin-bottom: 0.1rem;
}

.img-center {
    margin-left: auto;
    margin-right: auto;
}

/* 图片边框与圆角 */
.img-border {
    border: 0.4rem solid #ffffff;
    box-shadow: 0 0 0 0.1rem #e0e0e0;
}

.img-radius-sm {
    border-radius: 0.4rem;
}

.img-radius-md {
    border-radius: 0.8rem;
}

.img-radius-lg {
    border-radius: 1.2rem;
}

.img-circle {
    border-radius: 50%;
    object-fit: cover;
}

/* 图片阴影效果 */
.img-shadow-sm {
    box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
}

.img-shadow-md {
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
}

.img-shadow-lg {
    box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.15);
}

/* 图片悬停动画效果 */
.img-hover-zoom {
    transition: transform 0.3s ease;
}

.img-hover-zoom:hover {
    transform: scale(1.03);
}

.img-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-hover-lift:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

/* 图片说明文字样式 */
.img-caption {
    display: block;
    font-size: 0.09rem;
    color: #666;
    text-align: center;
    margin-top: 0.05rem;
    line-height: 1.4;
}

/* 响应式图片适配 */
@media (max-width: 76.8rem) {

    .img-left,
    .img-right {
        float: none;
        margin-left: auto;
        margin-right: auto;
        max-width: 80%;
    }

    .img-caption {
        font-size: 0.085rem;
    }
}

/* 页面特定样式 */
.header-box {
    min-height: 89rem;
    background: url('assets/img/bg.png') no-repeat center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.nav-box .animated-content {
    width: 100%;
}

@media (min-width: 76.8rem) {
    .header-box {
        min-height: 89rem;
    }
}

.header-box>.header-title {
    padding: 0 2rem;
}

.nav-box {
    position: fixed;
    left: 50%;
    top: 3.2rem;
    transform: translateX(-50%);
    height: 8rem;
    z-index: 22;
    width: 100%;
    padding: 0 4rem;
    display: flex;
    justify-content: center;
}

.nav {
    margin: 0 auto;
    height: 8rem;
    width: 100%;
    position: relative;
    max-width: 140rem;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 4rem;
    background: rgba(7, 23, 25, 0.58);
    border: 1px solid rgba(63, 128, 108, 0.31);
    backdrop-filter: blur(10px);

}

.home-header-title {
    position: absolute;
    top: 29rem;
    max-width: 140rem;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 21;
}

.nav a {
    color: #fff;
    text-decoration: none;
}

.nav-list>div {
    height: 100%;
}

.nav-list>div a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 3rem;
}

.nav-list>div a div {
    padding: 1.3rem 2.3rem;

}

.nav-list>div a div.active {
    background: url(assets/img/nav-active.png) 100% no-repeat;
    background-size: 100% 100%;

}

.nav-list>div a:hover,
.nav-list>div a.active {
    background: url(assets/img/2.png) 100% no-repeat;
    color: #1BFA8E !important;
    background-size: 100% 100%;
    opacity: 1;
}


/* .nav::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 4rem;
    border: 1px solid transparent;
    background: rgba(7, 23, 25, 0.58);
} */

.nav .line {
    position: absolute;
    left: 19.5rem;
    height: 1px;
    width: 16.7rem;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(270deg, rgba(63, 128, 108, 0), rgba(89, 154, 136, 1), rgba(115, 182, 165, 0));
}

.nav .line1 {
    position: absolute;
    left: 52.9rem;
    height: 7.9rem;
    width: 15.7rem;
    bottom: 0;
    z-index: 2;
    /* background: url(assets/img/2) 100% no-repeat;
    background-size: 100% 100%; */
}

.nav .line2 {
    position: absolute;
    left: 71.1rem;
    height: 1px;
    width: 10.7rem;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(270deg, rgba(63, 128, 108, 0), rgba(89, 154, 136, 1), rgba(115, 182, 165, 0));
}

.nav .line3 {
    position: absolute;
    right: 13.4rem;
    height: 1px;
    width: 16.7rem;
    top: 0;
    z-index: 2;
    background: linear-gradient(270deg, rgba(63, 128, 108, 0), rgba(89, 154, 136, 1), rgba(115, 182, 165, 0));
}

.logo {
    width: 15.8rem;
    height: 4.1rem;
    position: relative;
    z-index: 3;
}

.nav-list {
    display: flex;
    font-size: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
    height: 100%;
}


/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    z-index: 100;
}

.hamburger {
    display: block;
    width: 2.4rem;
    height: 0.3rem;
    background-color: #fff;
    border-radius: 0.2rem;
    transition: all 0.3s ease;
}

@media (max-width: 50rem) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        right: 0;
        top: 6rem;
        padding: 3rem 3rem;
        border-radius: 0.5rem;
        z-index: 22;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 8px;
        height: auto;
    }

    .nav-list.active {
        font-size: 2rem;
        white-space: nowrap;
    }

    .nav-list>div {
        width: 100%;
        padding: 1rem 0;
        margin-left: 0 !important;
        height: auto;
    }

    .nav-list.active {
        display: flex !important;
        /* flex-direction: column; */
    }
}

@font-face {
    font-family: 'AppleSystemUIFont';
    /* 你给字体的名称 */
    src: url('/fonts/AlimamaShuHeiTi-Bold.otf') format('otf'),
        /* WOFF2格式 */
        url('/fonts/AlimamaShuHeiTi-Bold.otf') format('otf');
    /* WOFF格式 */
    font-weight: normal;
    font-style: normal;
}

.header-title {
    max-width: 92.6rem;
    font-size: 7.6rem;
    line-height: 10rem;
    font-family: AppleSystemUIFont;
    width: 100%;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    margin: 0 auto;
    background-image: -webkit-linear-gradient(45.79022896802817deg, #9DFFB8 1%, #FFFFFF 57%, #9DFFB8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 76.8rem) {
    .header-box .header-title {
        font-size: 7rem;
        line-height: 9.8rem;
    }
}

.header-sub-title .animate-gradient {

    font-size: 4rem;
    line-height: 5.6rem;
    margin-top: 0.8rem;
    margin-bottom: 2.8rem;
}

.header-sub-ipt {
    border-radius: 2.8rem;
    position: relative;
    max-width: 45.8rem;
    width: 100%;
    height: 5.8rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    line-height: 2rem;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.header-sub-ipt::before {
    position: absolute;
    content: ' ';
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
    top: 0;
}

.header-sub-ipt::after {
    position: absolute;
    content: ' ';
    width: 100%;
    height: 100%;
    z-index: 2;
    left: 0;
    top: 0;
    background: rgba(15, 56, 47, 0.52);
}

.header-sub-ipt>div {
    position: relative;
    z-index: 3;
    margin-left: 2.6rem;
    display: flex;
    align-items: center;
}

.header-sub-ipt>div>img {
    width: 5.7rem;
    height: 3.6rem;
    margin-left: 2.2rem;
}

.content {
    width: 100%;
    max-width: 192rem;
    margin: -4rem auto 0;
    background: radial-gradient(6% 4% at 50% -1%, rgba(6, 63, 46, 0.7) 0%, #000815 100%), #000C16;
}

.content-card-box {
    margin-top: -13rem;
    padding: 0 20px;

    display: flex;
    align-items: center;
    position: relative;
}

.content-card-box-bg {
    height: 24.1rem;
    background: url('./assets/img/bg-1.png') no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.content-card {
    width: 100%;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 140rem;
    margin: 0 auto;
}

.content-card>div {
    width: 30rem;
    height: 17rem;
    position: relative;
    padding-top: 2.3rem;
    text-align: center;

}

.content-card>div .number-scroll-digit {
    background-image: -webkit-linear-gradient(34.97765473449846deg, #92FFB0 0%, #FBFFFE 44%, #9DFFB8 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.content-card>div .unit-suffix {
    background-image: -webkit-linear-gradient(34.97765473449846deg, #92FFB0 0%, #FBFFFE 44%, #9DFFB8 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.content-card>div .num {
        font-size: 5rem;
    font-weight: 500;
    line-height: 5rem;
    margin-bottom: 0.3rem;
    overflow: hidden;
    display: flex;
    line-height: normal;

    background-image: -webkit-linear-gradient(34.97765473449846deg, #92FFB0 0%, #FBFFFE 44%, #9DFFB8 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.content-card>div .label {
    color: #5C867D;
    line-height: 3.2rem;
    font-size: 2.4rem;

        width: 21.8rem;
}


@media screen and (min-width: 42rem) {
    .content-card>div {
        width: 29rem;
        height: 17rem;
        position: relative;
        padding-top: 2.3rem;
    }

    .content-card {

        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .content-card>div .num {
        font-size: 6rem;


    }
   
    
}

.content-card>div.line::before {
    position: absolute;
    content: ' ';
    right: 0rem;
    top: 50%;
    transform: translateY(-50%);
    height: 8rem;
    width: 1px;
    display: none;
    background: linear-gradient(180deg, rgba(106, 191, 140, 0) 0%, #8AE7A8 51%, rgba(96, 178, 132, 0) 100%);
}

@media screen and (min-width: 70rem) {
    .content-card>div.line::before {
        display: block;
    }

    .content-card {
        justify-content: space-between;
    }
}

.content-desc-box {
    margin-top: 10rem;
    padding: 0 2rem;
}

.content-desc {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 140rem;
    margin: 0 auto;
    /* margin: 0 auto; */
}

.content-desc-l-box {
    display: flex;
    width: 100%;
    justify-content: center;
}

.content-desc-l-box-r {
    flex: 1;
}

.content-desc .btn {
    width: 12.5rem;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    justify-content: center;
    height: 6rem;
    width: 21.5rem;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(73, 149, 112, 1);
    background: linear-gradient(138deg, rgba(73, 149, 112, 1), rgba(140, 234, 170, 1), rgba(70, 146, 109, 1));
    border-radius: 3rem;
    box-shadow: inset 0rem 0 2rem 0rem rgba(200, 255, 229, 0.39);


}

.mb3 {
    margin-bottom: 3rem;
}

.content-desc .btn::before {
    content: ' ';
    background: rgba(5, 18, 11, 0.9);
    border: 0.2rem solid transparent;
    border-radius: 3rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-desc .btn>i {
    width: 1.2rem;
    height: 1.2rem;
    background: #1BFA8E;
    border-radius: 50%;
    margin-right: 0.9rem;
    position: relative;
    z-index: 2;
}

.content-desc .btn>span {
    font-size: 2rem;
    color: #5A916C;
    line-height: 2.8rem;
    background-image: -webkit-linear-gradient(180deg, #BDFFD2 0%, #5A916C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.content-desc .content-desc-l {
    max-width: 84.7rem;

}

.content-desc .desc {
    line-height: 5rem;
    font-size: 3.4rem;
    margin-bottom: 1.4rem;
    min-height: 16.8rem;
    font-family: AppleSystemUIFont;

    background-image: -webkit-linear-gradient(34.97765473449846deg, #92FFB0 0%, #FBFFFE 44%, #9DFFB8 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.content-desc .desc-sub {
    color: #5C867D;
    font-size: 2.6rem;
    line-height: 3rem;
    margin-bottom: 5.3rem;
}

.desc-sub-card {
    display: flex;
    font-size: 2.4rem;
    min-height: 3.3rem;
    margin-bottom: 11rem;
}

.desc-sub-card>div+div {
    margin-left: 1.8rem;
}

.desc-sub-card img {
    margin-left: 1.9rem;
    width: 20.9rem;
    height: 7.53rem;
    margin-bottom: 0.8rem;
}

.content-desc-l-box-r {
    /* display: none; */
    display: block;
}

.content-desc .content-desc-bg {
    position: absolute;
    left: 79.2rem;
    top: -5.3rem;
}

.content-desc .content-desc-bg img {
    width: 72.3rem;
    height: auto;

}

@media screen and (min-width: 90rem) {

    .content-desc-l-box-r {
        display: block;
    }

    .content-desc .content-desc-bg {
        position: absolute;
        left: 79.2rem;
        top: -5.3rem;
    }

    .content-desc .content-desc-bg img {
        display: block;
    }
}

@media screen and (max-width: 60rem) {

    .content-desc .content-desc-bg {
        position: initial;
    }

    .desc-sub-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .desc-sub-card>div {
        margin-bottom: 2rem;
    }

    .content-desc-l-box-r {
        display: none;
    }
}


.content-desc-b {
    width: 100%;
    max-width: 140.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-desc .content-desc-b .title {
    display: flex;
    align-items: center;
    color: #6F6F6F;
    font-size: 2.8rem;
    margin-bottom: 4.1rem;
    line-height: 2.8rem;
}

.content-desc .content-desc-b .title i {
    width: 1.6rem;
    height: 1.6rem;
    background: #1BFA8E;
    margin-right: 0.8rem;
    border-radius: 50%;
}

.content-desc-b-c-box {
    display: grid;
    grid-template-columns: 1fr;
}

.content-desc-b-c-box .line {
    display: none;
}

.content-desc-b-c {
    width: 90%;
    position: relative;
    /* padding-left: 2.8rem; */
    margin-top: 2rem;
}

.content-desc-b-c>img {
    width: 8rem;
    height: 8rem;
    margin-bottom: 2.2rem;
}

.content-desc-b-c>.label {
    line-height: 3rem;
    color: #FFFFFF;
    font-size: 3.2rem;
}

.content-desc-b-c>.text {
    line-height: 3rem;
    color: #6F6F6F;
    font-size: 2.4rem;
    margin-top: 0.6rem;
}

.content-desc-b-c-box .line {
    width: 1px;
    height: 8rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, rgba(106, 191, 140, 0) 0%, #8AE7A8 51%, rgba(96, 178, 132, 0) 100%);
}

@media screen and (min-width: 45rem) {
    .content-desc-b-c-box {
        grid-template-columns: 1fr 1fr;
    }

    .content-desc-b-c-box .content-desc-b-c {
        /* margin: 2rem auto 0; */
    }

    .content-desc-b-c-box .content-desc-b-c .line,
    .content-desc-b-c-box .content-desc-b-c:nth-child(2) .line {
        display: none;
    }

    .content-desc-b-c>img {
        width: 6rem;
        height: 6rem;
        margin-bottom: 2.2rem;
    }

    .content-desc-b-c {
        width: 33.6rem;
    }

    .content-desc-b-c>.label {
        font-size: 2.2rem;
    }

    .content-desc-b-c>.text {
        font-size: 1.8rem;
        margin-top: 0;
    }

    .content-desc .content-desc-b>.title {
        font-size: 2rem;
    }

    .content-desc .content-desc-b>.title i {
        width: 1.2rem;
        height: 1.2rem;
    }
}

@media screen and (min-width: 80rem) {
    .content-desc-b-c-box {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .content-desc-b-c-box .content-desc-b-c:nth-child(2) .line {
        display: block;
    }
}

.decision {
    margin-top: 10rem;
}

.button {
    width: 12.5rem;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    justify-content: center;
    height: 6rem;
    width: 21.5rem;
    cursor: pointer;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid rgba(73, 149, 112, 1);
    background: linear-gradient(138deg, rgba(73, 149, 112, 1), rgba(140, 234, 170, 1), rgba(70, 146, 109, 1));
    border-radius: 3rem;
    box-shadow: inset 0rem 0 2rem 0rem rgba(200, 255, 229, 0.39);
}

.button::before {
    content: ' ';
    background: rgba(5, 18, 11, 0.9);
    border: 0.2rem solid transparent;
    border-radius: 3rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.button>i {
    width: 1.2rem;
    height: 1.2rem;
    background: #1BFA8E;
    border-radius: 50%;
    margin-right: 0.9rem;
    position: relative;
    z-index: 2;
}

.button>span {
    font-size: 2rem;
    color: #5A916C;
    line-height: 2.8rem;
    background-image: -webkit-linear-gradient(180deg, #BDFFD2 0%, #5A916C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.decision>.button {
    width: 29.8rem;
    margin: 0 auto 3rem;
}

.w298 {
    width: 29.8rem;
}

.ball {
    background: url('assets/img/bg8.png') no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 2rem 0;
}

.ball img {
    width: 100%;
    max-width: 140rem;
    height: auto;
    margin: 0 auto;
}

.ball .list {
    display: flex;
    margin: 0 auto 5.2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.ball .list .line {
    height: 8rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(106, 191, 140, 0) 0%, #8AE7A8 51%, rgba(96, 178, 132, 0) 100%);
    margin: 0 5rem;
    display: none;
}

@media screen and (min-width: 58rem) {
    .ball .list .line {
        display: block;
    }
}

.ball .list .list-item {
    display: flex;
    text-align: left;
    margin-top: 2rem;
}

.ball .list .list-item .icon {
    width: 6rem;
    height: 6rem;
    margin-right: 1.5rem;
}

.ball .list .list-item-r .title {
    font-size: 2.2rem;
    color: #FFFFFF;
    line-height: 3rem;
    margin-bottom: 0.4rem;
}

.ball .list .list-item-r .desc {
    color: #6F6F6F;
    font-size: 1.8rem;
    line-height: 3rem;
    width: 33.8rem;
}

.content-title {
    text-align: center;
    font-size: 4rem;
    line-height: 5.6rem;
    margin: 0 auto;
    font-family: AppleSystemUIFont;

}

.content-title span {
    font-family: AppleSystemUIFont;
    background-image: -webkit-linear-gradient(34.97765473449846deg, #92FFDA 0%, #FBFFFE 44%, #98FFDC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.content-card1 {
    display: flex;
    max-width: 146.8rem;
    width: 100%;
    flex-wrap: wrap;
    margin: 0.7rem auto 0;
    align-items: center;
    text-align: left;
    justify-content: center;
}

.content-card1-box {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background: url('assets/img/1.png') no-repeat;
    background-size: 100% 100%;
}

.content-card1-line {
    background: linear-gradient(214deg, rgba(18, 139, 91, 0) 0%, #6FFFCF 50%, rgba(41, 191, 148, 0) 100%);
    height: 0.2rem;
}

.content-card1 .content-card1-l {
    width: 66.4rem;
    height: 62.4rem;
    background: url('assets/img/bg1.png') no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-card1 .content-card1-l>div {
    position: absolute;
    width: 55.2rem;
    height: 48.8rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    background: linear-gradient(172deg, rgba(238, 238, 238, 0) 0%, #D8D8D8 100%);
    z-index: 1;
}

.content-card1 .content-card1-l>video {
    width: 55.2rem;
    height: 48.8rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.content-card1-e {
    width: 80.4rem;
}

.content-sub-title {
    margin-top: 2rem;
    color: #6F6F6F;
    line-height: 3rem;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.content-card1 .content-card1-r .particle-container {
    height: 23.4rem;
    width: 100%;
    margin-left: 2rem;
    margin-top: 2rem;
}

.content-card1 .content-card1-r .card {
    margin: 0 auto;

}

.content-card1 .content-card1-r .card1 {
    padding-top: 1rem;
    padding-left: 2.5rem;
}

.content-card1 .content-card1-r .card1 img {
    width: 8rem;
    height: 8rem;
    margin-bottom: 2.2rem;
}

.content-card1 .content-card1-r .card1 .title {
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 1rem;
}

.content-card1 .content-card1-r .card1 .desc {
    font-size: 2.4rem;
    color: #6F6F6F;
    line-height: 2.5 rem;
    margin-bottom: 0.7rem;
}

@media screen and (min-width: 44rem) {
    .content-card1 .content-card1-r .particle-container {
        height: 23.4rem;
        width: 38.2rem;
        margin-left: 2rem;
        margin-top: 2rem;
    }

    .card-responsive {
        grid-template-columns: 1fr 1fr !important;
    }

    .content-card1 .content-card1-r .card {
        margin: 0;
    }

    .content-card1 .content-card1-r .card1 img {
        width: 9rem;
        height: 9rem;
        margin-bottom: 1.8rem;
    }

    .content-card1 .content-card1-r .card1 .title {
        font-size: 2.4rem;
        line-height: 3.3rem;
        margin-bottom: 1rem;
    }

    .content-card1 .content-card1-r .card1 .desc {
        font-size: 2rem;
        color: #5C867D;
        line-height: 2.5rem;
        margin-bottom: 0.7rem;
    }
}

.w900 {
    max-width: 90rem;
}

.w1000 {
    max-width: 100rem;
}

.content-cont {
    position: relative;
    text-align: center;
}

.content-cont>div {
    position: relative;
    z-index: 2;
}

.content-cont .content-sub-title {
    max-width: 74.7rem;
    margin: 2rem auto 0.7rem;
}

.content-revolution .button {
    margin-bottom: 3rem;
}

.content-revolution {
    padding-top: 9.8rem;
}

.content-revolution-card {
    margin-top: 6rem;
}

.swiper {
    width: 100%;
    height: 100%;
}

.content-revolution-card .swiper-slide {
    padding: 0;
    margin-bottom: 4.7rem;
    width: 54rem;

    position: relative;
    height: 18rem;
    overflow: hidden;
}

.content-revolution-card .swiper-slide .swiper-slide-item {
    background: url('assets/img/bg2.png') no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 18rem;
    /* margin-left: 2rem; */
    padding: 3.5rem 3.5rem 3.5rem 2.8rem;
}

.swiper-slide-item1,
.swiper-slide-item2,
.swiper-slide-item3,
.swiper-slide-item4,
.swiper-slide-item5 {
    height: 18rem;
    border-radius: 1rem;

    overflow: hidden;
}

.content-revolution-card .swiper-slide+.swiper-slide {
    /* margin-left: 2rem; */
}

.content-revolution-card .swiper-slide .title {
    font-size: 2.8rem;
    line-height: 4rem;
    margin-bottom: 1.7rem;
}

.content-revolution-card .swiper-slide .desc {
    color: rgba(111, 111, 111, 1);
    line-height: 3rem;
    font-size: 1.8rem;
    width: 47.2rem;
}

.content-revolution-card .swiper-slide .desc span {
    color: rgba(27, 250, 142, 1);
}

.w397 {
    width: 39.7rem;
}

.certificates {
    margin-top: 10rem;
    margin-bottom: 6.8rem;
}

.certificates .button {
    margin-bottom: 3rem;
    width: 21.8rem;
}

.certificates .content-title {
    padding: 0 1rem;
}

.accordion {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.accordion .accordion-item {
    height: 60.3rem;
    position: relative;
    width: 37.1rem;
    transition: all 0.5s;

}

.accordion .accordion-item1 {
    background: url('assets/img/card4.png') no-repeat center;
    background-size: auto 100%;
}

.accordion .accordion-item2 {
    background: url('assets/img/card5.png') no-repeat center;
    background-size: auto 100%;
}

.accordion .accordion-item3 {
    background: url('assets/img/card6.png') no-repeat center;
    background-size: auto 100%;
}

.accordion .accordion-item4 {
    background: url('assets/img/card7.png') no-repeat center;
    background-size: auto 100%;
}

.accordion .accordion-item.active {
    width: 81.6rem;
    background-size: auto 100%;
}

.accordion .accordion-item.active .accordion-c {
    background: transparent;
}

.accordion .accordion-item.active .accordion-c .label {
    color: #FFFFFF;
}

.accordion-c {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 0;
    top: 0;
}

.accordion .accordion-item>img {
    object-fit: contain;
}

.accordion-c>.label {
    position: absolute;
    top: 47.1rem;
    left: 3.5rem;
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.accordion-c>.label>.title {
    width: 24.4rem;
}

.accordion-c>.label>.desc {
    font-size: 1.8rem;
    color: #BFBFBF;
    line-height: 3.6rem;
}

@media screen and (min-width: 70rem) {
    .accordion {
        flex-wrap: nowrap;
    }

    .accordion .accordion-item {
        width: 37.1rem;
        height: 70.3rem;
    }

    .accordion .accordion-item.active {
        width: 81.6rem;
    }

    .accordion-c>.label {
        top: 57.1rem;
    }
}

.w747 {
    max-width: 74.7rem;
    margin: 2rem auto 0;
}

.volume {
    padding-top: 10.9rem;
    min-height: 73rem;
    background: url("assets/img/bg4.png") no-repeat;
    background-size: 100% 100%;
    padding-bottom: 7rem;
}

.volume-card {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.volume .btn-box {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.volume .content-sub-title {
    line-height: 5.6rem;
    font-size: 4rem;
    background-image: -webkit-linear-gradient(34.97765473449846deg, #92FFDA 0%, #FBFFFE 44%, #98FFDC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    max-width: 100rem;
    margin: 0 auto 6rem;
    width: 100%;
}

.volume-card .volume-card-item {
    width: 100%;
    height: 100%;
    padding: 2.2rem 4.1rem;
    background: rgba(0, 0, 1, 1);
    border-radius: 1.1rem;

}

.volume-card>div {
    margin: 0 0.65rem;

}

.volume-card .volume-card-item>.label {
    width: 11rem;
    font-size: 3rem;
    line-height: 5rem;
    margin-bottom: 1.5rem;
    background-image: -webkit-linear-gradient(34.97765473449846deg, #92FFDA 0%, #FBFFFE 44%, #98FFDC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.volume-card .volume-card-item>.sub-label {
    color: #5C867D;
    line-height: 3rem;
    font-size: 2rem;
    width: 24.4rem;
}


.volume-card .volume-card-item1 {
    background: rgba(0, 0, 1, 1) url("assets/img/icon23.png") no-repeat 20.1rem 2.3rem;
    background-size: 11rem 11rem;
    height: 100%;
}

.volume-card .volume-card-item2 {
    background: rgba(0, 0, 1, 1) url("assets/img/icon25.png") no-repeat 20.1rem 2.3rem;
    height: 100%;

    background-size: 11rem 11rem;
}

.volume-card .volume-card-item3 {
    background: rgba(0, 0, 1, 1) url("assets/img/icon24.png") no-repeat 20.1rem 2.3rem;
    height: 100%;

    background-size: 11rem 11rem;
}

.volume-card .volume-card-item4 {

    background: rgba(0, 0, 1, 1) url("assets/img/icon26.png") no-repeat 20.1rem 2.3rem;
    height: 100%;
    background-size: 11rem 11rem;
}
.volume-card .animated-content > div {
    height: 100%;
}
.footer {
    min-height: 24rem;
    padding: 6.3rem 10rem 5.9rem;
    display: flex;
    justify-content: space-between;
    background: url("assets/img/bg10.png") no-repeat center center;
    background-size: cover;
}

@media screen and (max-width: 900px) {
    .volume-card {
        display: grid;
        grid-template-columns: 34rem 34rem;
        grid-template-rows: 22rem 22rem;
        grid-gap: 0.5rem;
        
    }


}

@media screen and (max-width: 500px) {
    .volume-card {
        /* display: flex; */
        display: grid;
        grid-template-columns: 1fr 1fr;

    }
    .volume-card  .volume-card-item{
        /* transform: scale(0.9) !important; */
    }
    .footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .volume-card>div {
        margin: 0;
    
    }
    .footer-b-t>div+div {
        margin-left: 4rem;
    }
}
.footer-l{
    width: 100%;
}
.footer-l > div {
   display: flex;
   width: 100%;

    
}
.footer-l .logoimg {
    width: 23.7rem;
    height: 6.2rem;
    margin-bottom: 2.8rem;
}

.footer-l .footer-l-b {
    display: flex;
    align-items: center;
}

.footer-l-b-b {
    color: #5C867D;
    font-size: 1.8rem;
}

.footer-l .text {
    margin-top: 2rem;
    color: #6F6F6F;
    line-height: 1.7rem;
    font-size: 1.2rem;
}

.footer-l .footer-l-b img {
    width: 2.6rem;
    height: 2.6rem;
    margin-right: 1.5rem;
}

.footer-b {
    text-align: right;
    flex: 1;
    font-size: 2.2rem;
    line-height: 3rem;
}

.footer-b-b {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.footer-b-t {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-b-t {
    font-size: 2rem;
    color: #5C867D;
}

.footer-b-t-b {
    display: flex;
    justify-content: flex-end;
    margin-top: 3.1rem;
}

.footer-b-t-b img {
    width: 2.6rem;
    height: 2.6rem;
    margin-left: 4rem;
}

.footer-b-t>div {
    display: flex;
    justify-content: flex-end;
}

.footer-b-t>div> div+div {
    margin-left: 11.1rem;
}

.footer-b-b {
    margin-top: 4rem;
}

:root {
    --background-dark: #060010;
    --border-color: #333;
    --white: hsl(0, 0%, 100%);
    --glow-x: 50%;
    --glow-y: 50%;
    --glow-intensity: 0;
    --glow-radius: 20rem;
    --glow-color: 0, 200, 83;
}

.bento-section {
    width: 100%;
    margin: 0 auto;
}

.card-responsive {

    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 23.4rem;
    width: 38.2rem;
    max-width: 100%;
    border-radius: 2rem;
    margin-top: 2rem;
    /* border: 1px solid var(--border-color); */
    font-weight: 300;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
    color: var(--white);
}

.card:hover {
    box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.15);
}

.card--border-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 0.6rem;
    background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y),
            rgba(var(--glow-color), calc(var(--glow-intensity) * 0.8)) 0%,
            rgba(var(--glow-color), calc(var(--glow-intensity) * 0.4)) 30%,
            transparent 60%);
    border-radius: inherit;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: subtract;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card--border-glow:hover::after {
    opacity: 1;
}

.card--border-glow:hover {
    box-shadow:
        0 0.4rem 2rem rgba(46, 24, 78, 0.4),
        0 0 3rem rgba(var(--glow-color), 0.2);
}

.card__header {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
    color: white;
}

.card__label {
    font-size: 1rem;
}

.card__content {
    display: flex;

}

.card__title {
    font-weight: normal;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.card__description {
    font-size: 0.75rem;
    line-height: 1.25;
    opacity: 0.9;
}

.text-clamp-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.particle {
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
}

.particle::before {
    content: '';
    position: absolute;
    top: -0.2rem;
    left: -0.2rem;
    right: -0.2rem;
    bottom: -0.2rem;
    background: rgba(var(--glow-color), 0.2);
    border-radius: 50%;
    z-index: -1;
}

@layer utilities {
    .number-scroll-container {
        @apply inline-block overflow-hidden relative;
    }

    .number-scroll-digit {
        @apply transition-transform duration-500 ease-out text-center;
    }

    .counter-card {
        @apply bg-white transition-all duration-300 hover:shadow-lg hover:-translate-y-1;
    }
}
@media screen and (max-width: 500px) {

    .footer-b-t>div> div +div {
        margin-left: 4rem;
    }
    .footer-l-b-b{
    font-size: 1.6rem;

    }
}