* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
}
@media not screen and (max-width: 1024px) {
  body {
    min-width: 1420px;
  }
  .main-width {
    width: 1420px;
    margin: 0 auto;
  }
  .main-width > h1 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 64px;
    color: #ffffff;
  }

  .main-width > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 80px;
  }

  body {
    background-color: #212324;
  }
  .header {
    height: 96px;
    border-bottom: 1px solid #565658;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: #2a2a2b;
    box-shadow: 0px 8px 36px 0px rgba(0, 0, 0, 0.12);
    border-radius: 0px 0px 24px 24px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    z-index: 1;
  }
  .header-container {
    width: 100%;
    height: 96px;
  }
  .header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 70%;
    min-width: 1340px;
    margin: 0 auto;
  }
  .logo {
    width: 122px;
    height: 44px;
  }
  .en {
    width: 42px;
    height: 42px;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 20px;
  }
  .nav a {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
  }
  .nav a:hover {
    background: linear-gradient(180deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 300% 100%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: verticalFlow 4s linear infinite;
  }
  .nav .active {
    background: linear-gradient(180deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 100% 300%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: verticalFlow 4s linear infinite;
  }
  .banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
  }
  .banner-alpha {
    width: 60%;
  }
  .banner-alpha > h2 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 64px;
    color: #ffffff;
  }

  .banner-alpha > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 24px;
    color: #ffffff;
  }
  .banner-content {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 20px;
    color: #ffffff;
  }
  .banner-content > div {
    width: 430px;
    height: 446px;
    margin-bottom: 70px;
    transform: perspective(400px) rotateY(8deg);
  }

  .banner-content > div:hover::before {
    transform: perspective(400px) rotateY(-8deg);
  }
  .banner-content > div > img {
    width: 100%;
    height: 100%;

    --f: 0.1; /* the parallax factor (the smaller the better) */
    --r: 10px; /* radius */

    --_f: calc(100% * var(--f) / (1 + var(--f)));
    --_a: calc(90deg * var(--f));
    aspect-ratio: calc(1 + var(--f));
    object-fit: cover;
    clip-path: inset(0 var(--_f) 0 0 round var(--r));
    transform: perspective(400px) var(--_t, rotateY(var(--_a)));
    transition: 0.5s;
    cursor: pointer;
  }

  .banner-content > div > img:hover {
    clip-path: inset(0 0 0 var(--_f) round var(--r));
    --_t: translateX(calc(-1 * var(--_f))) rotateY(calc(-1 * var(--_a)));
  }
  .bg > img {
    width: 100%;
  }
  .bg {
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  .bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
  }
  .bg:hover::before {
    left: 100%;
    transition: all 0.6s ease-in-out;
  }
  .protocol {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
  }
  .tokenomics {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
  }
  .tokenomics-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .tokenomics-content > div {
    width: 680px;
    height: 582px;
    padding: 216px 60px 0;
    margin-bottom: 40px;
    position: relative;
  }
  .tokenomics-content > div:nth-child(1) {
    border-radius: 20px 20px 0px 20px;
    background: url("../static/tokenomics-1.png") no-repeat center center /
      cover;
  }
  .tokenomics-content > div:nth-child(2) {
    border-radius: 20px 0px 20px 20px;
    background: url("../static/tokenomics-2.png") no-repeat center center /
      cover;
  }
  .tokenomics-content > div:nth-child(3) {
    border-radius: 20px 0px 20px 20px;
    background: url("../static/tokenomics-3.png") no-repeat center center /
      cover;
  }
  .tokenomics-content > div:nth-child(4) {
    border-radius: 0px 20px 20px 20px;
    background: url("../static/tokenomics-4.png") no-repeat center center /
      cover;
  }
  .tokenomics-footer {
    border-top: 1px solid rgba(138, 171, 250, 0.42);
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 32px;
    color: #ffffff;
    padding: 30px 0;
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 30px;
  }
  .tokenomics-content > div > .content {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 24px;
    color: #b8b8b8;
    line-height: 32px;
  }
  .tokenomics-content > div > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 24px;
    color: #ffffff;
    line-height: 52px;
  }
  .tokenomics-content > div > p:nth-child(1) > span {
    color: #2bd8b1;
  }
  .tokenomics-content > div > p:nth-child(2) > span {
    color: #30cee8;
  }
  .tokenomics-content > div > p:nth-child(3) > span {
    color: #7aaff5;
  }
  .tokenomics-content > div > p:nth-child(4) > span {
    color: #b990ec;
  }
  .technology {
    display: flex;
    justify-content: space-between;
  }
  .technology > img {
    width: 668px;
    height: 358px;
  }
  .technology > .content {
    width: 692px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
  .technology > .content > h1 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 36px;
    color: #ffffff;
  }
  .technology > .content > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 18px;
    color: #c8c8c8;
  }
  .rwa {
    display: flex;
    justify-content: space-between;
    padding: 140px 0;
  }
  .rwa > .label > h1 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 40px;
    color: #ffffff;
  }
  .rwa > .label > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 60px;
  }
  .rwa > .label > img {
    width: 307px;
    height: 256px;
  }
  .rwa > .content {
    width: 1000px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
  }
  .rwa > .content > div {
    width: 100%;
    height: 114px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    color: #ffffff;
    padding: 20px 0px 20px 118px;
    font-size: 16px;
    border-radius: 10px;
    overflow: hidden;
  }
  .rwa > .content > div > p {
    font-size: 22px;
  }
  .rwa > .content > div:nth-child(1) {
    background: url("../static/rwa-1.png") no-repeat left center / cover;
  }
  .rwa > .content > div:nth-child(2) {
    background: url("../static/rwa-2.png") no-repeat left center / cover;
  }
  .rwa > .content > div:nth-child(3) {
    background: url("../static/rwa-3.png") no-repeat left center / cover;
  }
  .rwa > .content > div:nth-child(4) {
    background: url("../static/rwa-4.png") no-repeat left center / cover;
  }
  .ecosystems {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
  }
  .ecosystems-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .ecosystems-content > div {
    width: 680px;
    margin-bottom: 40px;
    position: relative;
  }
  .ecosystems-content > div > img {
    width: 680px;
    height: 540px;
    margin-bottom: 24px;
  }
  .ecosystems-footer > h1 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 14px;

    background: linear-gradient(90deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 300% 100%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: gradientFlow 4s linear infinite;
  }
  .ecosystems-footer > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 18px;
    color: #ffffff;
  }
  .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
  }
  .team-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .team-container > div {
    width: 332px;
    height: 418px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 172px 30px 0;
    box-sizing: border-box;
  }
  .team-container > div:nth-child(1) {
    background: url("../static/team-1.png") no-repeat center center / 100% 100%;
  }
  .team-container > div:nth-child(2) {
    background: url("../static/team-2.png") no-repeat center center / 100% 100%;
  }
  .team-container > div:nth-child(3) {
    background: url("../static/team-3.png") no-repeat center center / 100% 100%;
  }
  .team-container > div:nth-child(4) {
    background: url("../static/team-4.png") no-repeat center center / 100% 100%;
  }
  .team-container > div > h3 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
  }
  .team-container > div > h5 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 24px;
  }
  .team-container > div > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 14px;
    color: #ffffff;
  }

  .community {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
  }
  .community-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .community-container > div {
    width: 100%;
    height: 248px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    box-sizing: border-box;
    padding: 50px 156px;
  }
  .community-container > .end {
    align-items: flex-end;
    margin: 30px 0;
  }
  .community-container > div:nth-child(1) {
    background: url("../static/community-1.png") no-repeat center center / 100%
      100%;
  }
  .community-container > div:nth-child(2) {
    background: url("../static/community-2.png") no-repeat center center / 100%
      100%;
  }
  .community-container > div:nth-child(3) {
    background: url("../static/community-3.png") no-repeat center center / 100%
      100%;
  }
  .community-container > div:nth-child(4) {
    background: url("../static/community-4.png") no-repeat center center / 100%
      100%;
  }
  .community-container > div > h3 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 14px;

    background: linear-gradient(90deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 300% 100%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: gradientFlow 4s linear infinite;
  }

  .community-container > div > p {
    width: 610px;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 18px;
    color: #ffffff;
  }

  .roadmap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
  }
  .roadmap-container {
    height: 322px;
    background: url("../static/roadmap.png") no-repeat center center / 100% 100%;
  }
  .roadmap-content {
    height: 100%;
    position: relative;
  }
  .roadmap-item {
    width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
  }
  .roadmap-item > p {
    width: 243px;
    height: 90px;
    color: #8f8f8f;
    margin-top: 14px;
  }
  .roadmap-item > header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .roadmap-item > header > img {
    width: 46px;
    height: 46px;
    margin-right: 10px;
  }
  .roadmap-item > header > span {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 40px;

    background: linear-gradient(90deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 300% 100%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: gradientFlow 4s linear infinite;
  }

  @media screen and (max-width: 1920px) {
    .roadmap-item:nth-child(1) {
      bottom: 20px;
      left: 10%;
    }
    .roadmap-item:nth-child(2) {
      left: 30%;
      top: -50px;
    }
    .roadmap-item:nth-child(3) {
      right: 30%;
      top: 50px;
    }
    .roadmap-item:nth-child(4) {
      right: 10%;
      bottom: 150px;
    }
  }

  @media screen and (min-width: 1920px) {
    .roadmap-item:nth-child(1) {
      bottom: 20px;
      left: 15%;
    }
    .roadmap-item:nth-child(2) {
      left: 35%;
      top: -50px;
    }
    .roadmap-item:nth-child(3) {
      right: 35%;
      top: 50px;
    }
    .roadmap-item:nth-child(4) {
      right: 15%;
      bottom: 150px;
    }
  }

  .strategic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
  }
  .strategic-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .strategic-container > div {
    width: 450px;
    height: 630px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 272px 90px 0;
    box-sizing: border-box;
  }
  .strategic-container > div:nth-child(1) {
    background: url("../static/strategic-1.png") no-repeat center center / 100%
      100%;
  }
  .strategic-container > div:nth-child(2) {
    background: url("../static/strategic-2.png") no-repeat center center / 100%
      100%;
  }
  .strategic-container > div:nth-child(3) {
    background: url("../static/strategic-3.png") no-repeat center center / 100%
      100%;
  }
  .strategic-container > div > h3 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 24px;
    background: linear-gradient(90deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 300% 100%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: gradientFlow 4s linear infinite;
    margin-bottom: 30px;
  }
  .strategic-container > div > p {
    text-align: center;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 18px;
    color: #ffffff;
    line-height: 2;
  }
  .news {
    width: 1700px;
    margin: 20px auto;
    height: 394px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url("../static/news.png") no-repeat center center / 100% 100%;
  }
  .news > .main-width {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .news > .main-width > p {
    margin-bottom: 30px;
  }
  .news > p {
    width: 700px;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
  }
  .social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  .social > a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: 20px;
    text-decoration: none;
  }
  .social > a > img {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
  }
  .social > a > span {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
  }
  .footer {
    line-height: 108px;
    text-align: center;
    height: 108px;
    background: #121416;

    > span {
      font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
      font-weight: 300;
      font-size: 18px;

      background: linear-gradient(180deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

      background-size: 100% 300%;

      /* 关键步骤：将背景裁剪到文字区域 */
      -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
      background-clip: text;

      /* 将文字颜色设为透明，露出渐变背景 */
      color: transparent;

      /* 可选：增强渐变效果 */
      font-weight: bold;

      animation: verticalFlow 4s linear infinite;
    }
  }
}
@media (max-width: 1024px) {
  .main-width {
    width: 100%;
  }
  .main-width > h1 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 28px;
    color: #ffffff;
  }

  .main-width > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
  }

  body {
    background-color: #212324;
  }
  .header {
    position: fixed;
    border-bottom: 1px solid #565658;
    left: 0;
    right: 0;
    top: 0;
    background: #2a2a2b;
    box-shadow: 0px 8px 36px 0px rgba(0, 0, 0, 0.12);
    border-radius: 0px 0px 8px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    z-index: 1;
    height: 50px;
  }
  .header-container {
    width: 100%;
    height: 50px;
  }
  .header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
    height: 100%;
    margin: 0 auto;
    position: relative;
  }
  .logo {
    width: 80px;
  }
  .en {
    width: 28px;
    height: 28px;
  }
  .nav {
    position: absolute;
    background: #000;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    top: 100%;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
  }
  .nav a {
    flex: none;
    height: 37px;
    box-sizing: border-box;
    display: block;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid #565658;
    padding: 8px;
  }
  .nav.active {
    height: 332px;
  }
  .nav a:last-child {
    border-bottom: 0;
  }
  .nav a:hover {
    background: linear-gradient(180deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 300% 100%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: verticalFlow 4s linear infinite;
  }
  .nav .active {
    background: linear-gradient(180deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 100% 300%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: verticalFlow 4s linear infinite;
  }
  .banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 40px 0;
  }
  .banner-alpha {
    width: 90%;
    margin: 0 auto 20px;
  }
  .banner-alpha > h1 {
    font-size: 22px;
  }
  .banner-alpha > h2 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 20px;
    color: #ffffff;
  }
  .banner-alpha > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 12px;
    color: #ffffff;
  }
  .banner-content {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;

    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 12px;
    color: #ffffff;
  }
  .banner-content > div {
    float: left;
    width: 80%;
    clip-path: circle(62%);
    shape-outside: circle(43%);
    margin: 0 auto 20px;
  }

  .banner-content > div:hover::before {
    transform: perspective(400px) rotateY(-8deg);
  }
  .banner-content > div > img {
    width: 100%;
    height: 100%;
  }

  .banner-content > div > img:hover {
    clip-path: inset(0 0 0 var(--_f) round var(--r));
    --_t: translateX(calc(-1 * var(--_f))) rotateY(calc(-1 * var(--_a)));
  }

  .banner-content > p {
    float: right;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 12px;
    color: #ffffff;
  }
  .bg > img {
    height: 100%;
  }
  .bg {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
  }
  .bg:hover::before {
    left: 100%;
    transition: all 0.6s ease-in-out;
  }
  .protocol {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0 0;
  }
  .tokenomics {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0 0;
  }
  .tokenomics-content {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .tokenomics-content > div {
    width: 100%;
    height: 300px;
    padding: 120px 20px 0;
    margin-bottom: 20px;
    position: relative;
  }
  .tokenomics-content > div:nth-child(1) {
    border-radius: 20px 20px 0px 20px;
    background: url("../static/tokenomics-1.png") no-repeat center center / 100%
      100%;
  }
  .tokenomics-content > div:nth-child(2) {
    border-radius: 20px 0px 20px 20px;
    background: url("../static/tokenomics-2.png") no-repeat center center / 100%
      100%;
  }
  .tokenomics-content > div:nth-child(3) {
    border-radius: 20px 0px 20px 20px;
    background: url("../static/tokenomics-3.png") no-repeat center center / 100%
      100%;
  }
  .tokenomics-content > div:nth-child(4) {
    border-radius: 0px 20px 20px 20px;
    background: url("../static/tokenomics-4.png") no-repeat center center / 100%
      100%;
  }
  .tokenomics-footer {
    border-top: 1px solid rgba(138, 171, 250, 0.42);
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 12px;
    padding-top: 10px;
    color: #ffffff;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .tokenomics-content > div > .content {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 12px;
    color: #b8b8b8;
    line-height: 24px;
  }
  .tokenomics-content > div > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 12px;
    color: #ffffff;
    line-height: 24px;
  }
  .tokenomics-content > div > p:nth-child(1) > span {
    color: #2bd8b1;
  }
  .tokenomics-content > div > p:nth-child(2) > span {
    color: #30cee8;
  }
  .tokenomics-content > div > p:nth-child(3) > span {
    color: #7aaff5;
  }
  .tokenomics-content > div > p:nth-child(4) > span {
    color: #b990ec;
  }
  .technology {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
  }
  .technology > img {
    width: 100%;
    margin-top: 20px;
  }
  .technology > .content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
  .technology > .content > h1 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 18px;
    color: #ffffff;
  }
  .technology > .content > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 12px;
    color: #c8c8c8;
  }
  .rwa {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 0;
    width: 90%;
    margin: 0 auto;
  }
  .rwa > .label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .rwa > .label > h1 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 28px;
    color: #ffffff;
  }
  .rwa > .label > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
  }
  .rwa > .label > img {
    display: none;
  }
  .rwa > .content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  .rwa > .content > div {
    width: 100%;
    height: 94px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    color: #ffffff;
    padding: 10px 0px 10px 118px;
    font-size: 12px;
    border-radius: 10px;
    overflow: hidden;
  }
  .rwa > .content > div > p {
    font-size: 16px;
  }
  .rwa > .content > div:nth-child(1) {
    background: url("../static/rwa-1.png") no-repeat left center / cover;
  }
  .rwa > .content > div:nth-child(2) {
    background: url("../static/rwa-2.png") no-repeat left center / cover;
  }
  .rwa > .content > div:nth-child(3) {
    background: url("../static/rwa-3.png") no-repeat left center / cover;
  }
  .rwa > .content > div:nth-child(4) {
    background: url("../static/rwa-4.png") no-repeat left center / cover;
  }
  .ecosystems {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 0 48px;
  }
  .ecosystems-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .ecosystems-content > div {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
  }
  .ecosystems-content > div > img {
    width: 100%;
  }
  .ecosystems > p {
    margin-bottom: 20px;
  }
  .ecosystems-footer > h1 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 18px;

    background: linear-gradient(90deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 300% 100%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: gradientFlow 4s linear infinite;
  }
  .ecosystems-footer > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 12px;
    color: #ffffff;
  }
  .team {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 48px;
  }
  .team-container {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
  }
  .team-container > div {
    width: 332px;
    height: 418px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 172px 30px 0;
    box-sizing: border-box;
  }
  .team-container > div:nth-child(1) {
    background: url("../static/team-1.png") no-repeat center center / 100% 100%;
  }
  .team-container > div:nth-child(2) {
    background: url("../static/team-2.png") no-repeat center center / 100% 100%;
  }
  .team-container > div:nth-child(3) {
    background: url("../static/team-3.png") no-repeat center center / 100% 100%;
  }
  .team-container > div:nth-child(4) {
    background: url("../static/team-4.png") no-repeat center center / 100% 100%;
  }
  .team-container > div > h3 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
  }
  .team-container > div > h5 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 24px;
  }
  .team-container > div > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 14px;
    color: #ffffff;
  }

  .community {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
  }
  .community-container {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .community-container > div {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
  }
  .community-container > .end {
    align-items: flex-end;
    margin: 30px 0;
  }
  .community-container > div:nth-child(1) {
    background: url("../static/community-1.png") no-repeat center center / 100%
      100%;
  }
  .community-container > div:nth-child(2) {
    background: url("../static/community-2.png") no-repeat center center / 100%
      100%;
  }
  .community-container > div:nth-child(3) {
    background: url("../static/community-3.png") no-repeat center center / 100%
      100%;
  }
  .community-container > div:nth-child(4) {
    background: url("../static/community-4.png") no-repeat center center / 100%
      100%;
  }
  .community-container > div > h3 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 14px;

    background: linear-gradient(90deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 300% 100%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: gradientFlow 4s linear infinite;
  }

  .community-container > div > p {
    width: 90%;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 12px;
    color: #ffffff;
  }

  .roadmap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .roadmap-container {
    width: 90%;
    margin: 0 auto;
  }
  .roadmap-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .roadmap-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .roadmap-item > p {
    color: #8f8f8f;
    margin-bottom: 20px;
  }
  .roadmap-item > header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .roadmap-item > header > img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .roadmap-item > header > span {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 24px;

    background: linear-gradient(90deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 300% 100%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: gradientFlow 4s linear infinite;
  }

  .strategic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
  }
  .strategic-container {
    margin-top: 30px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  .strategic-container > div {
    width: 100%;
    height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 202px 20px 0;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  .strategic-container > div:nth-child(1) {
    background: url("../static/strategic-1.png") no-repeat center center / 100%
      100%;
  }
  .strategic-container > div:nth-child(2) {
    background: url("../static/strategic-2.png") no-repeat center center / 100%
      100%;
  }
  .strategic-container > div:nth-child(3) {
    background: url("../static/strategic-3.png") no-repeat center center / 100%
      100%;
  }
  .strategic-container > div > h3 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 24px;
    background: linear-gradient(90deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

    background-size: 300% 100%;

    /* 关键步骤：将背景裁剪到文字区域 */
    -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
    background-clip: text;

    /* 将文字颜色设为透明，露出渐变背景 */
    color: transparent;

    /* 可选：增强渐变效果 */
    font-weight: bold;

    animation: gradientFlow 4s linear infinite;
    margin-bottom: 30px;
  }
  .strategic-container > div > p {
    text-align: center;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
  }
  .news {
    width: 100%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    background: url("../static/news.png") no-repeat center center / 100% 100%;
  }
  .news > .main-width {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .news > .main-width > p {
    margin-bottom: 10px;
  }
  .news > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
  }
    .social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  .social > a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: 20px;
    text-decoration: none;
  }
  .social > a > img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
  }
  .social > a > span {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
  }
  .footer {
    line-height: 68px;
    text-align: center;
    height: 68px;
    background: #121416;

    > span {
      font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
      font-weight: 300;
      font-size: 13px;

      background: linear-gradient(180deg, #28de90 0%, #32ccfa 30%, #be94f2 60%);

      background-size: 100% 300%;

      /* 关键步骤：将背景裁剪到文字区域 */
      -webkit-background-clip: text; /* 兼容Webkit内核（Chrome/Safari） */
      background-clip: text;

      /* 将文字颜色设为透明，露出渐变背景 */
      color: transparent;

      /* 可选：增强渐变效果 */
      font-weight: bold;

      animation: verticalFlow 4s linear infinite;
    }
  }
}
