/* === Pricing Page === */
.page-pricing {
  padding-top: var(--header-height);
}

/* Pricing hero image floating animation */
@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.pricing-hero__image {
  animation: floatAnimation 4s ease-in-out infinite;
}

.main-bg {
  padding-bottom: 120px;
  background: url('../../images/price/pirce-icon1.png');
  background-size: cover;
}

/* Pricing Hero */
.pricing-hero {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero__title {
  font-weight: bold;
  font-size: 52px;
  color: #333333;
}

.pricing-hero__subtitle {
  font-weight: 400;
  font-size: 32px;
  color: #333333;
  text-align: center;
}

.pricing-hero__image {
  position: absolute;
  right: -110px;
  top: 12px;
  width: 355px;
  z-index: 0;
}

/* Level 1 tabs (pill style) */
.pricing-tabs-l1 {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* Pricing notice bar */
.pricing-notice {
  margin-bottom: 24px;
}

.pri-title {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  margin-bottom: 6px;
}

.pri-desc {
  font-size: 14px;
  color: #666666;
}

.pri-desc span {
  color: #FF1C1C;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Tab navigation (pill style) */
.tab__nav--pill {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 36px;
}

/* Tab滑动指示条 */
.tab__nav--pill .tab__indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #1890FF;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform-origin: left center;
}

.tab__item {
  width: 184px;
  height: 44px;
  text-align: center;
  line-height: 42px;
  background: transparent;
  border-radius: 22px;
  color: #333333;
  font-size: 20px;
  transition: all 0.3s ease;
}

.tab__item:hover {
  background: rgba(24, 144, 255, 0.1);
  color: #1890FF;
}

.tab__item--active {
  background: #1890FF;
  color: white;
  /* transform: scale(1.05); */
  box-shadow: 0px 4px 12px 0px rgba(43, 127, 255, 0.3);
}

.tab__item--active:hover {
  background: var(--color-primary);
  color: white;
}

.as-tabs-item{
  transition: 0.2s;
}

.as-tabs-item:hover{
  color:var(--color-primary);
}

/* Tab panels */
.tab__panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}

.tab__panel--active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Price content box */
.price-conBox {
  height: 634px;
  background: #FFFFFF;
  box-shadow: 0px 3px 33px 0px rgba(187, 208, 218, 0.72);
  border-radius: 20px;
  padding: 40px 38px 50px;
  box-sizing: border-box;
}

.pricing-card {
  box-shadow: 0px 2px 7px 0px rgba(226, 229, 231, 0.65);
  border-radius: 9px;
  padding: 28px 24px;
  height: 216px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.pricing-card__name {
  display: flex;
  align-items: center;
}

.pricing-card__name img {
  width: 19px;
}

.pricing-card__name span {
  margin-left: 5px;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
}

.pricing-card__desc {
  min-height: 66px;
  margin-top: 10px;
}

.pricing-card__desc p {
  font-size: 14px;
  color: #666666;
  line-height: 22px;
}

.pricing-card__price {
  color: #333333;
  font-weight: bold;
  margin-top: 20px;
  line-height: 1;
}

.pricing-card__currency {
  font-size: 14px;
}

.pricing-card__amount {
  font-size: 24px;
}

/* 蓝色 */
.price-lanse {
  background-image: url('../../images/price/price-icon9.png');
  background-size: cover;
}

/* 紫色 */
.price-zise {
  background-image: url('../../images/price/price-icon10.png');
  background-size: cover;
}

/* 深紫 */
.price-shenzi {
  background-image: url('../../images/price/price-icon11.png');
  background-size: cover;
}

/* 浅蓝 */
.price-qianlan {
  background-image: url('../../images/price/price-icon12.png');
  background-size: cover;
}

/* 橙色 */
.price-chengse {
  background-image: url('../../images/price/price-icon13.png');
  background-size: cover;
}

/* 青色 */
.price-qingse {
  background-image: url('../../images/price/price-icon14.png');
  background-size: cover;
}

.price-lineHen {
  font-size: 14px;
  color: #999999;
  text-decoration-line: line-through;
}

.pricing-card-rig {
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 23px;
  background: #FF1C1C;
  border-radius: 0px 9px 0px 9px;
  background-color: #FF1C1C;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  line-height: 23px;
}

.ai-tabs {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  margin-bottom: 10px;
}

.ai-tabs div {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.ai-tab-line {
  width: 1px;
  height: 17px;
  background: #E5E5E5;
  margin: 0 16px;
}

.ai-tabs div:last-child::after {
  display: none;
}

.ai-tabs-active {
  color: #1890FF !important;
}

.ai-tabs-active::before {
  position: absolute;
  bottom: -4px;
  content: "";
  width: 100%;
  height: 3px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #1890FF;
  display: inline-block;
}

.pricing-tabsbox-item {
  display: none;
}

.pricing-tabsbox2-item {
  display: none;
}

#ai-ams {
  display: block;
}

.pri-desc-ai {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
}

.pri-desc-ai span {
  color: #FF1C1C;
}

.pricing-bot-red {
  font-size: 14px;
  color: #FF1C1C;
  margin-top: 6px;
}

#ai-chuanqi {
  display: block;
}

.cta-bar {
  padding: 36px 0px;
  box-sizing: border-box;
  background-color: var(--color-primary);
  background-image: url('../../images/cta-bg2.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 94% 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-bar__title {
  font-weight: 400;
  font-size: 34px;
  color: #FFFFFF;
}

.cta-box {
  display: flex;
  margin-top: 26px;
}

.cta-bar__subtitle {
  margin-top: 16px;
  cursor: pointer;
}

.cta-right {
  margin-left: 34px;
}

.cta-txt1 {
  font-size: 20px;
  color: #FFFFFF;
}

.cta-txt2 {
  font-size: 16px;
  color: #FFFFFF;
}