.product-price-main {
  background-color: #F3F8FD;
  padding: 38px 120px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.price-header {
  text-align: center;
  padding: 24px 0;
  margin-bottom: 26px;
  box-sizing: border-box;
}

.price-header h2 {
  font-size: 36px;
  margin: 0px;
}

.price-header p {
  font-size: 14px;
  opacity: 0.4;
  margin: 14px 0;
}

.free-trial-banner {
  display: inline-block;
  background-color: #FCEFB4;
  padding: 10px 20px;
  border-radius: 20px;
  margin: 0px;
}

.free-trial-text {
  color: #FF7751;
  font-weight: bold;
}

.refund-text {
  color: #000;
  margin-left: 10px;
}

.price-plans-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.price-plan {
  flex: 1;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.plan-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.plan-title {
  font-size: 18px;
  font-weight: bold;
}

.recommended-badge {
  background: #FF7751;
  color: white;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 12px;
  margin-left: 10px;
}

.plan-price {
  font-size: 48px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}

.plan-price span {
  font-size: 14px;
  color: #666;
}

.feature-list {
  width: 160px;
  margin:0 auto 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.feature-icon {
  /* color: #4CAF50; */
  margin-right: 8px;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.buy-button {
  background: #4285F4;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  width: 100%;
  cursor: no-drop;
}
/* 第二块内容样式 */

.feature-title {
  font-size: 40px;
  line-height: 48px;
  color: #000000;
  text-align: center;
  margin: 0;
  margin-bottom: 15px;
}

.feature-description {
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #000000;
  opacity: 0.4;
  margin: 0;
}

.comparison-table-container {
  padding: 24px;
  background: #FFFFFF;
  margin-bottom: 40px;
  border-radius: 8px;
  margin-top: 40px;
  box-sizing: border-box;
  overflow: hidden;
}

.feature-comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.feature-comparison-table th {
  background-color: #BCD3FF;
  padding: 12px;
  text-align: left;
}

.feature-comparison-table tr:nth-child(even) {
  background-color: #E6EFFF;
}

.feature-comparison-table tr:nth-child(odd) {
  background-color: #FFFFFF;
}

.feature-comparison-table td {
  padding: 12px;
  border-bottom: 1px solid #E6EFFF;
}

.member-benefits {
  background: #FFFFFF;
  padding: 24px 0;
  text-align: center;
}

.benefits-title {
  font-size: 16px;
  color: #3D3D3D;
  line-height: 17px;
  font-weight: bold;
  margin-bottom: 12px;
}

.benefits-content {
  font-size: 14px;
  color: #3D3D3D;
}
/* 折扣规则样式 */
.discount-rules {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  margin: 40px auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

.discount-title {
  font-size: 16px;
  color: #3D3D3D;
  text-align: left;
  margin: 0;
  font-weight: 600;
}

.discount-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.discount-item {
  flex: 1;
  padding: 20px 0;
  border-radius: 6px;
}

.discount-subtitle {
  font-size: 16px;
  color: #000;
  margin: 0;
  margin-bottom: 15px;
  font-weight: 500;
}

.discount-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* 星级会员样式 */
.star-level-container {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
}

.star-level-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  background: linear-gradient(to right, #FFEE97, #ED9D52);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.star-image img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.star-level-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.star-level-discount {
  font-size: 16px;
  font-weight: bold;
  color: #FF7751;
}