@charset "UTF-8";
/* 价格方案页：与 platform-ui PricingStaticResidential + price.vue 广告区对齐 */
.pricing-static-residential .pricing-section {
  padding: 100px 0 60px;
  background: #fff;
}
.pricing-static-residential .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.pricing-static-residential .pricing-calculator {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 968px) {
  .pricing-static-residential .pricing-calculator {
    grid-template-columns: 1fr;
  }
}
.pricing-static-residential .calculator-form {
  background: #f7f8fd;
  padding: 2.5rem;
  border-radius: 16px;
}
.pricing-static-residential .loading-state,
.pricing-static-residential .error-state {
  text-align: center;
  padding: 3rem 0;
  color: #666;
}
.pricing-static-residential .error-state {
  color: #ef4444;
}
.pricing-static-residential .form-group {
  margin-bottom: 2rem;
}
.pricing-static-residential .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.1rem;
}
.pricing-static-residential .continents-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  max-width: calc(120px * 3 + 2rem);
  gap: 1rem;
}
.pricing-static-residential .continent-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing-static-residential .continent-option:hover {
  border-color: #3580ff;
  transform: translateY(-2px);
}
.pricing-static-residential .continent-option.selected {
  border-color: #3580ff;
  background: #f0f4ff;
}
.pricing-static-residential .countries-grid,
.pricing-static-residential .locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}
.pricing-static-residential .country-option,
.pricing-static-residential .location-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing-static-residential .location-option {
  flex-direction: row;
}
.pricing-static-residential .country-option:hover,
.pricing-static-residential .location-option:hover {
  border-color: #3580ff;
  transform: translateY(-2px);
}
.pricing-static-residential .country-option.selected,
.pricing-static-residential .location-option.selected {
  border-color: #3580ff;
  background: #f0f4ff;
}
.pricing-static-residential .country-option .country-name {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.pricing-static-residential .stock-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: 100%;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
  background: #fff;
  border-radius: 12px;
}
.pricing-static-residential .ip-type-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pricing-static-residential .ip-type-option {
  padding: 1.5rem;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing-static-residential .ip-type-option:hover:not(.disabled) {
  border-color: #3580ff;
  transform: translateY(-2px);
}
.pricing-static-residential .ip-type-option.selected {
  border-color: #3580ff;
  background: #f0f4ff;
}
.pricing-static-residential .ip-type-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pricing-static-residential .ip-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.pricing-static-residential .ip-type-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.pricing-static-residential .ip-type-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3580ff;
}
.pricing-static-residential .ip-type-option p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}
.pricing-static-residential .calculator-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
  height: fit-content;
}
@media (max-width: 968px) {
  .pricing-static-residential .calculator-sidebar {
    position: static;
  }
}
.pricing-static-residential .calculator-info {
  background: #f7f8fd;
  padding: 2rem;
  border-radius: 16px;
}
.pricing-static-residential .calculator-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}
.pricing-static-residential .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-static-residential .info-list li {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}
.pricing-static-residential .price-summary {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 0;
  border: 1px solid #e9ecef;
}
.pricing-static-residential .price-summary .summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
}
.pricing-static-residential .price-summary .summary-item.total {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid #3580ff;
  border-bottom: none;
}
.pricing-static-residential .summary-value {
  font-weight: 600;
  color: #3580ff;
}
.pricing-static-residential .duration-native-select {
  max-width: 140px;
  font-weight: 600;
  color: #3580ff;
  border-color: #3580ff;
}
/* 仅作用于侧栏「立即购买」，勿用 .pricing-static-residential .btn，否则会放大顶栏 fragment 里的注册按钮 */
.pricing-static-residential .calculator-sidebar .btn.btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  background-color: #3580ff;
  border: none;
  border-radius: 8px;
  color: #fff;
}
.pricing-static-residential .calculator-sidebar .btn.btn-primary:hover:not(:disabled) {
  background-color: #2563eb;
}
.pricing-static-residential .calculator-sidebar .btn.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pricing-static-residential .discount-info {
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.25rem;
}
.pricing-static-residential .price-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* 价格页底部腰封：通栏、文案居中、无插图（替代原 ad-box 卡片） */
.price-ad-strip {
  width: 100%;
  margin: 3rem 0 0;
  padding: 2.75rem 1.25rem 3.25rem;
  text-align: center;
  background: linear-gradient(105deg, #e8f4f6 0%, #eef6ff 42%, #e4f0f6 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  box-sizing: border-box;
}

.price-ad-strip__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.price-ad-strip__title {
  color: #042c2e;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}

.price-ad-strip__subtitle {
  color: #3c4848;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.price-ad-strip__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.85rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #3580ff 0%, #2563eb 100%);
  box-shadow: 0 4px 14px rgba(53, 128, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-ad-strip__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(53, 128, 255, 0.42);
  color: #fff !important;
}

@media (max-width: 576px) {
  .price-ad-strip {
    margin-top: 2rem;
    padding: 2rem 1rem 2.5rem;
  }

  .price-ad-strip__title {
    font-size: 1.1rem;
  }

  .price-ad-strip__subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .price-ad-strip__btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
}
