.price-banner {
  position: relative;
  padding-top: 100px;
  width: 100%;
  height: 420px;
  background-color: #f7f8fa;
  overflow: hidden;
}
.price-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e5e6eb;
}
.price-banner .banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.price-banner .banner-inner .banner-text .banner-badge {
  display: inline-block;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #3370ff;
  background-color: rgba(51, 112, 255, 0.06);
  border: 1px solid rgba(51, 112, 255, 0.15);
  border-radius: 6px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.price-banner .banner-inner .banner-text h1 {
  margin: 0;
  font-size: 44px;
  color: #1d2129;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
}
.price-banner .banner-inner .banner-text h1 em {
  font-style: normal;
  color: #3370ff;
}
.price-banner .banner-inner .banner-text p {
  margin: 16px 0 0;
  font-size: 16px;
  color: #646a73;
  line-height: 1.8;
}
.price-banner .banner-inner .banner-text .banner-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding: 16px 0;
  border-top: 1px solid #e5e8ed;
}
.price-banner .banner-inner .banner-text .metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
}
.price-banner .banner-inner .banner-text .metric-item:first-child {
  padding-left: 0;
}
.price-banner .banner-inner .banner-text .metric-number {
  font-size: 24px;
  font-weight: 700;
  color: #1d2129;
  letter-spacing: -0.5px;
  line-height: 1;
}
.price-banner .banner-inner .banner-text .metric-label {
  font-size: 12px;
  color: #8f959e;
  font-weight: 500;
}
.price-banner .banner-inner .banner-text .metric-divider {
  width: 1px;
  height: 36px;
  background-color: #e5e8ed;
}
.price-banner .banner-inner .banner-visual {
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-banner .banner-inner .visual-illustration {
  width: 85%;
  position: relative;
}
.price-banner .banner-inner .visual-illustration img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  animation: banner-float 5s ease-in-out infinite alternate;
}
@keyframes banner-float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}
.price-section {
  width: 100%;
}
.price-section .product-showcase {
  padding: 60px 0 60px;
}
.price-section .product-showcase .showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.price-section .product-showcase .showcase-card {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.price-section .product-showcase .showcase-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}
.price-section .product-showcase .showcase-card .card-preview {
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.price-section .product-showcase .showcase-card .card-preview::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.price-section .product-showcase .showcase-card .card-preview img {
  width: 52%;
  height: 72%;
  object-fit: contain;
  position: relative;
  z-index: 0;
  transition: transform 0.4s ease;
}
.price-section .product-showcase .showcase-card:hover .card-preview img {
  transform: scale(1.05);
}
.price-section .product-showcase .showcase-card:nth-child(1) .card-preview {
  background: linear-gradient(135deg, #f0faf0 0%, #e8f5e8 50%, #dcedda 100%);
}
.price-section .product-showcase .showcase-card:nth-child(2) .card-preview {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
}
.price-section .product-showcase .showcase-card:nth-child(3) .card-preview {
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 50%, #fde68a 100%);
}
.price-section .product-showcase .showcase-card:nth-child(4) .card-preview {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
}
.price-section .product-showcase .showcase-card .card-body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.price-section .product-showcase .showcase-card .card-body .card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.price-section .product-showcase .showcase-card .card-body .card-top .card-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 4px;
  line-height: 1.5;
  flex-shrink: 0;
  text-transform: uppercase;
}
.price-section .product-showcase .showcase-card .card-body .card-top h3 {
  margin: 0;
  font-size: 18px;
  color: #1d1d1f;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.price-section .product-showcase .showcase-card .card-body .card-desc {
  margin: 0 0 18px;
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.7;
}
.price-section .product-showcase .showcase-card .card-body .card-features {
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  flex: 1;
}
.price-section .product-showcase .showcase-card .card-body .card-features li {
  font-size: 13px;
  color: #515154;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.price-section .product-showcase .showcase-card .card-body .card-features li::before {
  content: '';
  display: inline-flex;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.price-section .product-showcase .showcase-card .card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: gap 0.25s ease;
  text-decoration: none;
}
.price-section .product-showcase .showcase-card .card-body .card-link::after {
  content: '→';
  font-size: 15px;
  transition: transform 0.25s ease;
}
.price-section .product-showcase .showcase-card .card-body .card-link:hover {
  gap: 10px;
}
.price-section .product-showcase .showcase-card .card-body .card-link:hover::after {
  transform: translateX(3px);
}
.price-section .product-showcase .showcase-card:nth-child(1) .card-badge {
  color: #2b7a2b;
  background: #e8f5e8;
}
.price-section .product-showcase .showcase-card:nth-child(2) .card-badge {
  color: #c2410c;
  background: #ffedd5;
}
.price-section .product-showcase .showcase-card:nth-child(3) .card-badge {
  color: #a16207;
  background: #fef9c3;
}
.price-section .product-showcase .showcase-card:nth-child(4) .card-badge {
  color: #1e40af;
  background: #dbeafe;
}
.price-section .product-showcase .showcase-card:nth-child(1) .card-features li::before {
  background: #00b42a;
}
.price-section .product-showcase .showcase-card:nth-child(2) .card-features li::before {
  background: #ff7d00;
}
.price-section .product-showcase .showcase-card:nth-child(3) .card-features li::before {
  background: #f5a623;
}
.price-section .product-showcase .showcase-card:nth-child(4) .card-features li::before {
  background: #3370ff;
}
.price-section .product-showcase .showcase-card:nth-child(1) .card-link {
  color: #00b42a;
}
.price-section .product-showcase .showcase-card:nth-child(2) .card-link {
  color: #ff7d00;
}
.price-section .product-showcase .showcase-card:nth-child(3) .card-link {
  color: #e8970a;
}
.price-section .product-showcase .showcase-card:nth-child(4) .card-link {
  color: #3370ff;
}
.price-section .product-price {
  padding: 60px 0 80px;
}
.price-section .product-price .price-cards {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.price-section .product-price .price-cards .price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 280px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #e5e6eb;
  overflow: visible;
  transition: all 0.3s ease;
}
.price-section .product-price .price-cards .price-card:hover {
  border-color: #3370ff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.price-section .product-price .price-cards .price-card.recommended {
  border: 2px solid #3370ff;
  box-shadow: 0 8px 24px rgba(51, 112, 255, 0.1);
  transform: scale(1.03);
}
.price-section .product-price .price-cards .price-card.recommended:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 32px rgba(51, 112, 255, 0.15);
}
.price-section .product-price .price-cards .price-card .price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background-color: #3370ff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
}
.price-section .product-price .price-cards .price-card .price-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 20px;
}
.price-section .product-price .price-cards .price-card .price-card-header .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  background-color: #f7f8fa;
  border: 1px solid #e5e6eb;
}
.price-section .product-price .price-cards .price-card .price-card-header .card-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.price-section .product-price .price-cards .price-card .price-card-header h3 {
  margin: 0;
  font-size: 20px;
  color: #1d2129;
  font-weight: 600;
}
.price-section .product-price .price-cards .price-card .price-card-header .card-subtitle {
  margin-top: 6px;
  font-size: 13px;
  color: #86909c;
}
.price-section .product-price .price-cards .price-card .price-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 30px;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-amount {
  padding: 16px 0;
  text-align: center;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-amount .currency {
  font-size: 20px;
  color: #1d2129;
  font-weight: 700;
  vertical-align: top;
  line-height: 52px;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-amount .price-number {
  font-size: 44px;
  color: #1d2129;
  font-weight: 700;
  line-height: 1;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-amount .price-unit {
  font-size: 14px;
  color: #86909c;
  margin-left: 4px;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-amount.custom .price-number {
  font-size: 24px;
  color: #3370ff;
  line-height: 52px;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e6eb;
  margin: 8px 0 20px;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-features {
  width: 100%;
  margin: 0;
  padding: 0;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  list-style: none;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-features li.included {
  color: #4e5969;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-features li.included .icon-check {
  color: #00b42a;
  font-size: 14px;
  font-weight: bold;
  width: 18px;
  text-align: center;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-features li.excluded {
  color: #c9cdd4;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-features li.excluded .icon-cross {
  color: #e5e6eb;
  font-size: 14px;
  width: 18px;
  text-align: center;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-btn {
  margin-top: 24px;
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 8px;
  font-size: 14px;
  color: #4e5969;
  background-color: #f7f8fa;
  border: 1px solid #e5e6eb;
  transition: all 0.2s ease;
}
.price-section .product-price .price-cards .price-card .price-card-body .price-btn:hover {
  color: #3370ff;
  border-color: #3370ff;
  background-color: #f0f5ff;
}
.price-section .product-price .price-cards .price-card.recommended .price-card-body .price-btn {
  background-color: #3370ff;
  color: #fff;
  border-color: #3370ff;
}
.price-section .product-price .price-cards .price-card.recommended .price-card-body .price-btn:hover {
  background-color: #2a58f5;
  border-color: #2a58f5;
}
.price-section .product-price .price-cards .price-card.recommended .price-card-body .price-amount .currency,
.price-section .product-price .price-cards .price-card.recommended .price-card-body .price-amount .price-number {
  color: #3370ff;
}
.platform-cta {
  padding: 60px 0 80px;
}
.platform-cta .platform-stats {
  display: flex;
  justify-content: space-between;
  padding: 44px 48px;
  background-color: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 12px;
  margin-bottom: 48px;
}
.platform-cta .platform-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.platform-cta .platform-stats .stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background-color: #e5e6eb;
}
.platform-cta .platform-stats .stat-item:last-child::after {
  display: none;
}
.platform-cta .platform-stats .stat-item .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #1d2129;
  line-height: 1.2;
}
.platform-cta .platform-stats .stat-item .stat-label {
  padding-top: 8px;
  font-size: 14px;
  color: #86909c;
}
.platform-cta .cta-card {
  padding: 64px 48px;
  border-radius: 12px;
  background: url("../images/电影背景.jpg") no-repeat center;
  text-align: center;
}
.platform-cta .cta-card .cta-content h2 {
  margin: 0 0 12px;
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}
.platform-cta .cta-card .cta-content p {
  margin: 0 auto 32px;
  max-width: 460px;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}
.platform-cta .cta-card .cta-content .cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.platform-cta .cta-card .cta-content .cta-btns .cta-btn-primary {
  display: inline-block;
  padding: 0 32px;
  height: 44px;
  line-height: 44px;
  font-size: 15px;
  color: #fff;
  background-color: #3370ff;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.platform-cta .cta-card .cta-content .cta-btns .cta-btn-outline {
  display: inline-block;
  padding: 0 32px;
  height: 44px;
  line-height: 42px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.platform-cta .cta-card .cta-content .cta-btns .cta-btn-outline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
