.hero {
  width: 100%;
  height: 415px;
  background: url(../image//package-selection/hero-bg.png) 100% no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
}
.hero .w-1200 {
  display: flex;
  flex-direction: column;
  gap: 42px;
  margin-top: 72px;
}
.hero p {
  width: 442px;
  overflow-wrap: break-word;
  color: rgba(4, 68, 95, 1);
  font-size: 38px;
  font-family: Poppins-Bold;
  font-weight: 700;
}

.hero a {
  background-color: rgba(69, 106, 118, 1);
  border-radius: 6px;
  width: 85.5px;
  height: 32.5px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: Microsoft YaHei-Bold;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}

.package-selection {
  padding: 24px 0 64px;
  display: flex;
  justify-content: center;
}
/* 套餐容器：响应式网格布局，默认一行2个，小屏一行1个 */
.package-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 套餐卡片：美化样式 + hover 交互 */
.package-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.package-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* 卡片内容区域 */
.card-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.card-text {
  flex: 1;
  margin-right: 16px;
}
.card-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}
.card-name {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}
.card-features {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.card-price {
  font-size: 18px;
  font-weight: 600;
  color: #e63946;
  margin-top: 16px;
}
.card-price del {
  font-size: 14px;
  font-weight: normal;
  color: #999;
  margin-left: 4px;
}

/* 卡片图标 */
.card-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* 购买按钮 */
.buy-btn {
  width: 100%;
  height: 40px;
  background-color: #fff;
  border: 1px solid #e63946;
  color: #e63946;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.buy-btn:hover {
  background-color: #e63946;
  color: #fff;
}

/* 响应式适配：小屏调整卡片宽度 */
@media (max-width: 768px) {
  .package-container {
    grid-template-columns: 1fr;
  }
}

.tips-box {
  border-radius: 12px;
  padding: 16px 20px;
  margin: 32px auto;
}

/* 提示行：弹性布局，自适应排列 */
.tips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}
.tips-row img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.tips-row:last-child {
  margin-bottom: 0;
}

/* 提示项：菱形图标+文字 */
.tips-item {
  display: flex;
  align-items: center;
  line-height: 1.5;
  overflow-wrap: break-word;
  color: rgba(4, 68, 95, 1);
  font-size: 23px;
  font-family: Poppins-Bold;
  font-weight: 700;
  text-align: left;
  white-space: nowrap; /* 强制单行 */
  text-overflow: ellipsis; /* 显示省略号 */
}
/* 菱形图标（替代原有的◇字符） */
.tips-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(4, 68, 95, 1);
  transform: rotate(45deg);
  margin-right: 12px;
}

/* 响应式：小屏下每行1个提示项 */
@media (max-width: 768px) {
  .tips-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.package-selection .free-package {
  width: 100%;
  height: 495px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: url(../image/package-selection/free-package-bg.png) center no-repeat;
  background-size: 100% 100%;
  margin-top: 24px;
}

.package-selection .free-package p {
  color: rgba(255, 255, 255, 1);
  font-size: 38px;
  font-family: Poppins-Bold;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.package-selection .free-package a {
  box-shadow: 4px 8px 25px 0px rgba(62, 134, 245, 0.25);
  width: 194px;
  height: 87px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 25px;
  color: rgba(62, 134, 245, 1);
  font-size: 20px;
  font-family: Poppins-Bold;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}