.header {
  background: linear-gradient(to bottom, #0058ff 0, #007eff 50%, #e4ebf1 100%);
}
body > div {
  overflow: hidden;
}

.REVIVE.header,
.OA.header,
.SOU.model-title {
  background: #007aff;
}
.banner-img-div {
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.banner-img-div img {
  width: 85%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 5px;
  background: #ffffff;
  border: 8px solid #795548;
  box-shadow: 0 0 0 50px rgba(125, 135, 18, 0.3) inset, 0 0 30px rgb(255 211 211 / 80%) inset;
}
.banner-img-div img {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.banner-img-div img[src] {
  opacity: 1; /* 当src属性有值（图片开始加载）时显示 */
}
.HeaderSection {
  position: relative;
  background: url(/static/index/pageAbout/asdfawe5g4687brt345bhwr.png) 100% 0;
}
.tmHeaderBox {
  padding-top: 10%;
  padding-bottom: 10%;
}
.HeaderBox {
  position: relative;
  z-index: 1;
  min-height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.HeaderBox .page-title {
  padding: 6px 25px;
  margin-bottom: 10px;
  border-radius: 20px;
  background: #fff;
  color: #007eff;
}
.HeaderBox .page-tips {
  margin-bottom: 10px;
}
.HeaderBox .subDescription {
  max-width: 600px;
  margin: 0 auto;
}
.HeaderBox .btn {
  padding: 8px 25px;
  margin: 20px 0 20px;
}
.HeaderBox .price .num {
  color: #017eff;
}
.greenClolor {
  color: #86ffa2 !important;
}
.greenBg {
  background-color: #86ffa2 !important;
}
.HeaderBox .viewPkg {
  font-size: 16px;
  text-decoration: underline;
  color: #ffffff;
  margin-top: 4px;
}
.bg-item {
  position: absolute;
  z-index: 0;
  top: 20%;
  height: 200px;
  width: 200px;
  background: url(/static/index/pageAbout/35465waerdgarsdfg.png) no-repeat 0;
}
.bg-item2 {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  height: 200px;
  width: 200px;
  background: url(/static/index/pageAbout/asetq4w3e654gsergerg.png) no-repeat 100% 0;
}
.bg-item3 {
  position: absolute;
  z-index: 0;
  top: 5%;
  right: 50px;
  height: 150px;
  width: 150px;
  background: url(/static/index/pageAbout/dianaoigjdfg5454sd3fg54er.png) no-repeat 100% 0;
  animation: zoom-fade 5s infinite linear;
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
/* --------------------------- */
:root {
  --primary-color: #007bff;
  --bg-color: #f7f8fc;
  --card-bg: #ffffff;
  --text-title: #0f172a;
  --text-body: #64748b;
  --gap: 24px;
}
.model-box,
.price-model {
  padding-top: 50px;
  padding-bottom: 50px;
}
.model-title {
  margin-bottom: 50px;
  text-align: center;
}

.model-title h2 {
  font-size: 30px;
  position: relative;
  font-weight: 600;
  margin: 0 auto 30px;
  width: fit-content;
}
.model-title h2::after {
  content: "";
  width: 5px;
  height: 100%;
  background: #007eff;
  position: absolute;
  bottom: 0;
  left: -10px;
}
.model-title p {
  font-size: 16px;
  margin-top: 15px;
  color: #4f4f4f;
}
.model-title h2 span {
  color: var(--primary-color);
}
.choose-model {
  background-color: rgb(241 241 241 / 56%);
}
/* 核心网格布局：左2右3 */
.grid-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* 左侧略宽，增加视觉分量 */
  gap: var(--gap);
}

/* 左右列公共设置 */
.column {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* 卡片基础样式 */
.model-box .card {
  background: var(--card-bg);
  border-radius: 32px;
  padding: 40px;
  border: 1px solid rgba(0, 123, 255, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; /* 让卡片自动撑满列的高度 */
}

.model-box .card:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0, 123, 255, 0.12);
  border-color: var(--primary-color);
}

/* 左侧 2 个卡片：由于数量少，让它们平分高度 */
.left-col .card {
  flex: 1;
}

/* 右侧 3 个卡片：让它们平分高度 */
.right-col .card {
  flex: 1;
  padding: 20px 35px;
}

/* 内容元素样式 */
.title-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.title-box i {
  width: 54px;
  height: 54px;
  background: var(--primary-color);
  border-radius: 16px;
  display: inline-block;
  font-size: 30px;
  color: #ffffff;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.model-box .card h3 {
  font-size: 1.3rem;
  color: var(--text-title);
  font-weight: 700;
}

.model-box .card p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* 响应式处理 */
@media (max-width: 992px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
  }
  .model-title {
    text-align: center;
  }
  .model-title h2 {
    font-size: 2rem;
  }
  .choose-model .card {
    padding: 22px !important;
  }
}
/* ------------------------- */
.swiper-container,
.swiper-packages {
  overflow: hidden;
  padding: 0;
}
.price-model {
  background-color: #f7f8fc;
}
.packages-wrapper .swiper-slide,
.swiper-wrapper {
  height: auto !important;
}
/* 导航按钮样式 */
.packages-wrapper .swiper-button-next,
.packages-wrapper .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.packages-wrapper .swiper-button-next:after,
.packages-wrapper .swiper-button-prev:after {
  font-size: 20px;
  color: white;
}

/* 分页器样式 */
.price-model .swiper-pagination {
  position: relative;
}
.price-model .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #cbc9c9;
  opacity: 1;
}

.price-model .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.price-model .swiper-pagination {
  bottom: 20px !important;
}
.packages-container {
  display: flex;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  padding: 40px;
  gap: 60px;
  background: #ffffff;
}

.package-item {
  margin: 0 auto;
  height: 100%;
}
.packages_no {
  position: absolute;
  top: -8px;
  right: 25px;
  width: 35px;
  height: 45px;
  background-color: #007bff;
  border-radius: 0 0 5px 5px;
  z-index: 10;
  color: #ffffff;
  text-align: center;
  font-size: 1.5rem;
}
/* --- Left Column --- */
.package-item .content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-item h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.1;
}

.package-item .price {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1.5;
}

.package-item .description {
  font-size: 1.1rem;
  color: var(--text-body);
  margin: 10px 0;
}

.package-item .add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 60px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 20px;
  text-decoration: none;
  align-self: flex-start;
}

.package-item .add-to-cart-btn span {
  margin-right: 10px;
}

/* Features List */
.package-item .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-item .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.package-item .checkmark-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Inline SVG Checkmark */
.package-item .checkmark-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary-color);
}

.package-item .feature-content strong {
  display: block;
  font-weight: 700;
  color: var(--text-title);
  font-size: 15px;
  margin-bottom: 4px;
}

.package-item .feature-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-body);
}

/* --- Right Column: Blue Block --- */
.package-item .img-col {
  display: flex;
  justify-content: center;
  width: 350px;
  flex-shrink: 0;
}
.package-item .block-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.package-item .blue-block {
  display: block;
  width: 100%;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 5px;
  background: #ffffff;
  border: 8px solid #795548;
  box-shadow: 0 0 0 50px rgba(125, 135, 18, 0.3) inset, 0 0 30px rgb(255 211 211 / 80%) inset;
}
.mat3 {
  display: block;
  width: 80%;
  max-width: 600px;
  height: auto;
  margin: 2rem auto;
}

/* Ribbon Decor */

/* --- Responsive Design --- */
@media (max-width: 1100px) {
  .packages-container {
    padding: 50px;
    gap: 40px;
  }
  .package-item h1 {
    font-size: 2.5rem;
  }
  .package-item .price {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .packages-container {
    flex-direction: column;
    padding: 40px;
    gap: 20px;
  }
  .package-item h1 {
    font-size: 2.2rem;
    text-align: center;
  }
  .package-item .features-list {
    align-items: flex-start;
    text-align: left;
  }
  .package-item .img-col {
    width: 280px;
  }
}

@media (max-width: 600px) {
  .packages-container {
    padding: 30px;
    width: 92%;
  }
  .package-item h1 {
    font-size: 1.8rem;
  }
  .package-item .price {
    font-size: 2.4rem;
  }
  .package-item .feature-item {
    gap: 10px;
  }
}
/* 响应式设计 */
@media (max-width: 768px) {
  .banner-img-div {
    margin-top: 20px;
  }
  .banner-img-div img {
    width: 60%;
  }
}
/* --------------------------- */
