﻿:root {
    --primary-color: #6d30fb;
    --secondary-color: #a12de4;
    --accent-color: #f81778;
    --text-color: #ffffff;
    --white-color: #fff;
    --background-color: rgba(0, 0, 0, 0.4);
    --border-color: #eee;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --hover-color: #6d30fb;
}

.logo {
    width: 126px;
    height: 42px;
    cursor: pointer;
}

.ve-nav-container {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #0D0D10;
    box-shadow: 0 2px 16px var(--shadow-color);
    transition: all 0.3s ease;
}

.ve-nav-container.scrolled {
    background: #0c0b0e;
    backdrop-filter: blur(8px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 59px;
    margin: 0 30px;
    width: calc(100% - 60px);
}

.nav-menu {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: none;
    background: transparent;
    gap: 14px;
    justify-content: flex-start;
    margin-left: 100px;
}

.menu-item {
    padding: 0 20px;
    font-size: 17px;
    color: var(--text-color);
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 120px;
    cursor: pointer;
    height: 100%;
}

.nav-item-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    height: 100%;
}

.nav-item-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    margin-top: calc(0.5em - -3px);
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 0.8;
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 50%;
    transition: transform 0.3s ease-in-out;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.nav-item-wrapper:hover::after {
    transform: scale3d(1, 1, 1);
    transform-origin: 0% 50%;
    transition-timing-function: ease;
}

.nav-item-wrapper_img {
    width: 32px;
    height: 29px;
}

.menu-item-text {
    font-weight: bold;
}

.rotated {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.titleColor {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    color: var(--accent-color);
}

.menu-item:hover {
    background: none;
    color: var(--hover-color);
}

.right {
    display: flex;
    align-items: center;
}

/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Source Han Sans CN, Source Han Sans CN, sans-serif;
  color: #333333;
  background-color: #fff;
}

.w-1200 {
  width: 1500px;
  margin: 0 auto;
}


/* 标题样式 */
.text-center {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 500;
  font-size: 34px;
  color: #1e293b;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.title_top {
  color: #2654cf;
  font-size: 18px;
  margin-bottom: 10px;
}

.text-center_back {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 500;
  font-size: 34px;
  color: #fff;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.title_top_back {
  color: #9fa1a6;
  font-size: 18px;
  margin-bottom: 10px;
}

.data-title {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}



/* 原有按钮样式 */
 .coolButton {
  background: linear-gradient(90deg, #2654cf 0%, #0838ba 100%);
  color: white;
  border: none;
  padding: 8px 25px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.coolButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 圆形滚动进度条样式 */
.backtop-wrapper {
  position: fixed;
  right: 100px;
  bottom: 100px;
  z-index: 1000;
  width: 40px;
  height: 40px;
}

.backtop-wrapper .circular-progress {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: all 0.1s ease;
  display: none;
}

.backtop-wrapper .el-backtop {
  position: absolute !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  z-index: 1;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 2.5px;
  left: 3px;
}

.backtop-wrapper .el-backtop i {
  color: #2654cf;
  font-weight: bold;
}

/* 横幅样式 */
.banner-wrapper {
  background: url("img/home/banner-bg.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 70vh;
}

.banner-content {
  padding: 20px;
}

.banner-text_content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.banner-title-wrapper{
  display: flex;
    align-items: center;
}

.banner-title-wrapper .banner-title {
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.banner-title-wrapper .banner-title span {
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
  background: linear-gradient(90deg, #2654cf 0%, #0838ba 100%);
  border-radius: 2px 2px 2px 2px;
  padding: 5px;
}

.banner_title {
  font-size: 44px;
  text-transform: none;
  font-weight: 700;
  color: #fff;
}
 .highlight-tag {

  color: #fff;
  border-radius: 2px 2px 2px 2px;
  padding: 2px 10px;
  margin-left: 10px;
  font-size: 30px;
  border-radius: 4px;
  width: 160px;
}
.highlight-tag .loader {
  --ANIMATION-DELAY-MULTIPLIER: 70ms;
  padding: 0;
  margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    gap: 35px;
}
.highlight-tag .loader span {
  padding:  0 0;
  margin: 0;
  letter-spacing: -5rem;
  animation-delay: 0s;
  transform: translateY(4rem);
  animation: hideAndSeek 1s alternate infinite cubic-bezier(0.86, 0, 0.07, 1);
}
.highlight-tag .loader .l {
  animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 0);
}
.highlight-tag .loader .o {
  animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 1);
}
.highlight-tag .loader .a {
  animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 2);
}
.highlight-tag .loader .d {
  animation-delay: calc(var(--ANIMATION-DELAY-MULTIPLIER) * 3);
}
.highlight-tag .letter {
  width: fit-content;
  height: 3rem;
}
.highlight-tag .i {
  margin-inline: 5px;
}
@keyframes hideAndSeek {
  0% {
    transform: translateY(4rem);
  }
  100% {
    transform: translateY(0rem);
  }
}

.banner_subtitle {
  width: 690px;
  height: 48px;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.char-animate {
  display: inline-block;
  opacity: 0;
  transform: translateX(-100%);
  animation: charSlideIn 0.5s forwards;
}

@keyframes charSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 轮播导航样式 */
.carousel-nav {
  margin-top: 50px;
  border-radius: 8px;
  display: flex;
  gap: 20px;
}

.carousel-info {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 4px 4px 4px 4px;
}

.carousel-info img {
  height: 100px;
}

.carousel-info h2 {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 500;
  font-size: 18px;
  color: #121212;
  font-style: normal;
  text-transform: none;
  margin-bottom: 10px;
}

.carousel-info p {
  color: #e0e0e0;
  font-size: 14px;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  color: #666666;
  line-height: 21px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.carousel-actions {
  flex: 2;
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 4px 4px 4px 4px;
}

.action-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: inherit;
}

.action-item-title {
  width: 90px;
  background: linear-gradient(90deg, #2654cf 0%, #0838ba 100%);
  border-radius: 2px 2px 2px 2px;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.price-btn {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  font-style: normal;
  text-transform: none;
  cursor: pointer;
  background: linear-gradient(135deg, #2654cf 0%, #0838ba 100%);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  box-shadow: 0 4px 12px rgba(38, 84, 207, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.price-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 84, 207, 0.4);
  background: linear-gradient(135deg, #0838ba 0%, #2654cf 100%);
}

.price-btn:hover::before {
  left: 100%;
}

.price-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(38, 84, 207, 0.3);
}

.action-item p {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 21px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

/* 产品包装样式 */
.product-wrapper {
  padding: 20px;
  margin-top: 70px;
}

.product-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.product_contentTitle {
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.internalTitle_bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}

.internalTitle_bottom_item {
  padding: 20px;
}

.internalTitle_bottom_title {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.internalTitle_bottom_title span {
  color: #2654cf;
}

.internalTitle_bottom_text {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.product-images {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.robot-image {
  height: 400px;
}

/* 功能模块样式 */
.feature-module {
  margin-top: 50px;
  padding: 50px 20px;
  text-align: center;
  background-image: url("img/home/homeimgK.png");
  background-size: cover;
  background-position: center;
}

.feature-cenct {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.feature-item {
  width: 100%;
  max-width: 280px;
  padding: 25px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-content {
  margin-bottom: 20px;
}

.icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #e8f3ff;
  border-radius: 50%;
  margin-bottom: 15px;
}

.icon svg {
  width: 30px;
  height: 30px;
}

.feature-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.feature-icon p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 定价计划样式 */
.pricing-plans {
  padding: 70px 20px;
}

.plans-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.plan {
  position: relative;
  width: 100%;
  box-shadow: inset 0px -1px 3px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px 4px 4px 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  transition: all 0.6s ease-in-out;
  background-color: #fff;
}

.plan:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.plan-header-container {
  width: 100%;
  background-color: #000000;
  padding: 20px 10px;
}

.plan-header {
  height: 60px;
}

.plan-header h3 {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: left;
}

.plan-header p {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.price-plan {
  margin: 20px 0;
  text-align: left;
  width: 100%;
}

.price {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: bold;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
}
.time {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
}

.price-usd {
  font-size: 18px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 0;
  margin-top: 5px;
}

.currency {
  font-size: 18px;
}

.note {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 20px;
}

.features-list {
  padding: 20px 10px;
  list-style: none;
  width: 100%;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333333;
  justify-content: flex-start;
}

.features-list li svg {
  margin-right: 8px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.plan-footer {
  padding: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* 步骤包装样式 */
.steps-wrapper {
  padding: 70px 0;
  background-image: url("img/home/homeimgK.png");
  background-size: cover;
  background-position: center;
}

.steps-content {
  margin: 0 auto;
}

.steps-title {
  text-align: center;
  margin-bottom: 50px;
}

.steps-title h2 {
  font-size: 26px;
  color: #333333;
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-item {
  text-align: center;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-item h3 {
  font-size: 18px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 20px;
}

.step-item p {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.step-icon {
  margin-bottom: 20px;
}

.step-icon img {
  width: 50px;
  transition: transform 0.5s ease;
}

.step-icon.flipping img {
  animation: flipHorizontal 0.5s forwards;
}

@keyframes flipHorizontal {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  51% {
    transform: rotateY(-90deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

/* 统计包装样式 */
.stats-wrapper {
  background-color: #100628;
  padding: 70px 0;
  background-image: url("img/home/jifang.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stats-content {
  margin: 0 auto;
}

.stats-title {
  text-align: center;
  margin-bottom: 50px;
}

.stats-title h2 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.stats-title p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
}

.stat-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

/* 评估中心样式 */
.assessmentCenter {
  padding: 100px 0;
  background-image: url("img/home/homeimgK.png");
  background-size: cover;
  background-position: center;
}

.assessmentCenter_content {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.review-card {
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-text {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 21px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 25px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details {
}

.reviewer-name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.reviewer-position {
  font-size: 14px;
  color: #666666;
}

/* 星级评分样式 */
.star-rating {
  color: #f59e0b;
  margin-bottom: 15px;
}

.star-rating i {
  margin-right: 2px;
}
:root {
    --footerBg: #0a0a0a;
    --textPrimary: #999999;
    --textSecondary: #666666;
    --borderColor: #333333;
    --accentColor: #1890ff;
}

.footer {
    background: var(--footerBg);
    color: var(--textPrimary);
    padding: 40px 0;
}

.footer .footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer .logo-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.footer .logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .company-info {
    text-align: left;
}

.footer .company-desc {
    line-height: 1.5;
    font-size: 14px;
    color: var(--textPrimary);
}

.footer .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid var(--borderColor);
    margin-top: 30px;
    padding-top: 30px;
}

.footer .payment-methods img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer .payment-methods div {
    display: flex;
    gap: 20px;
}

.footer .menu-section {
    display: flex;
    flex: 2;
    justify-content: space-evenly;
}

.footer .menu-column {
    margin: 0 40px;
}

.footer .menu-column h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 5px;
}

.footer .menu-column ul {
    list-style: none;
    padding: 0;
}

.footer .menu-column ul li {
    margin-bottom: 10px;
    cursor: pointer;
}

.footer .menu-column ul li:hover {
    color: var(--accentColor);
}

.footer .menu-column ul li.no-link {
    cursor: default;
}

.footer .menu-column ul li.no-link:hover {
    color: var(--textPrimary);
}

.footer .contact-section h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 5px;
}

.footer .contact-section ul {
    list-style: none;
    padding: 0;
}

.footer .contact-section ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .legal {
    text-align: center;
}

.footer .legal p {
    margin-bottom: 10px;
    font-size: 14px;
}