@media not screen and (max-width: 1024px) {
  .bar {
    display: none;
  }
  .tabs-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .tabs-header {
    width: 90%;
    display: flex;
    /* background: #1A1A1A; */
  }

  .tab-btn {
    flex: 1;
    border: none;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 88px;
  }

  .tab-btn > div {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    background: #1a1a1a;
  }
  .tab-btn > div > img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }
  .tab-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1a1a1a;
    /* background: linear-gradient(90deg, #ff9a9e, #a18cd1); */
    z-index: -1;
  }

  .tab-btn.active::before {
    background: linear-gradient(137deg, #28de90 0%, #32ccfa 46%, #be94f2 80%);
    border-radius: 8px;
    background-size: 300% 300%;

    animation: gradientFlowGo 2.5s linear infinite;
  }
  .tab-btn.active > div {
    border-radius: 8px;
  }
  .tab-btn:hover::before {
    background: linear-gradient(137deg, #28de90 0%, #32ccfa 46%, #be94f2 80%);
    border-radius: 8px;
    background-size: 300% 300%;

    animation: gradientFlowGo 2.5s linear infinite;
  }
  .tab-btn:hover div {
    border-radius: 8px;
  }
  .tab-btn.active > div {
    background-color: #565658;
  }
  .tab-btn.active .tab-icon {
    animation: pulse 1.5s infinite;
  }

  .tabs-content {
    min-height: 400px;
    position: relative;
  }

  .tab-pane {
    display: none;
    animation: fadeIn 0.8s ease forwards;
  }

  .tab-pane.active {
    display: block;
  }

  .tab-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0ff;
    max-width: 800px;
  }

  .tab-content-pane > h1 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 20px;
  }

  .tab-content-pane > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
  }
  .tab-content-pane > ul > li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: #aaaaaa;
    list-style: none;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .tab-content-pane > ul > li > div {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    white-space: nowrap;
  }
  .tab-pane-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 0;
    gap: 60px;
    font-size: 20px;
  }
  .tab-res {
    flex-direction: row-reverse;
  }
  .tab-pane-content > img {
    height: 396px;
  }
}
@media (max-width: 1024px) {
  .bar {
    width: 30px;
    height: 30px;
    margin-left: 10px;
  }
  .tabs-container {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
  }

  .tabs-header {
    width: 100%;
    display: flex;
  }

  .tab-btn {
    flex: 1;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 44px;
  }

  .tab-btn > div {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    background: #1a1a1a;
  }
  .tab-btn > div > img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
  .tab-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1a1a1a;
    /* background: linear-gradient(90deg, #ff9a9e, #a18cd1); */
    z-index: -1;
  }

  .tab-btn.active::before {
    background: linear-gradient(137deg, #28de90 0%, #32ccfa 46%, #be94f2 80%);
    border-radius: 8px;
    background-size: 300% 300%;

    animation: gradientFlowGo 2.5s linear infinite;
  }
  .tab-btn.active > div {
    border-radius: 8px;
  }
  .tab-btn:hover::before {
    background: linear-gradient(137deg, #28de90 0%, #32ccfa 46%, #be94f2 80%);
    border-radius: 8px;
    background-size: 300% 300%;

    animation: gradientFlowGo 2.5s linear infinite;
  }
  .tab-btn:hover div {
    border-radius: 8px;
  }
  .tab-btn.active > div {
    background-color: #565658;
  }
  .tab-btn.active .tab-icon {
    animation: pulse 1.5s infinite;
  }

  .tabs-content {
    min-height: 400px;
    position: relative;
  }

  .tab-pane {
    display: none;
    animation: fadeIn 0.8s ease forwards;
  }

  .tab-pane.active {
    display: block;
  }

  .tab-content-pane > h1 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
  }

  .tab-content-pane > p {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
  }
  .tab-content-pane > ul > li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    color: #aaaaaa;
    list-style: none;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .tab-content-pane > ul > li > div {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
  }
  .tab-pane-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px 0 0;
    font-size: 20px;
    gap: 30px;
  }
  .tab-res {
    flex-direction: column-reverse;
  }
  .tab-pane-content > img {
    width: 100%;
  }
}
/* 动画 */
@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
