.page {
  min-height: 100vh;
  padding: 28rpx;
  box-sizing: border-box;
  background: linear-gradient(180deg, #f4f7fb 0%, #eef3ff 100%);
}

.top-card,
.section {
  margin-bottom: 24rpx;
  padding: 28rpx;
  border-radius: 24rpx;
  background: #ffffff;
  box-shadow: 0 14rpx 40rpx rgba(15, 23, 42, 0.06);
}

.top-row,
.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title,
.section-title {
  font-size: 32rpx;
  font-weight: 700;
  color: #101828;
}

.price {
  font-size: 30rpx;
  font-weight: 700;
  color: #039855;
}

.hint {
  display: block;
  margin-top: 12rpx;
  font-size: 24rpx;
  color: #667085;
}

.link-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #175cd3;
  font-size: 24rpx;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16rpx;
  margin-top: 18rpx;
}

.info-item {
  padding: 18rpx;
  border-radius: 20rpx;
  background: #f8fafc;
}

.info-item.full {
  grid-column: span 2;
}

.label {
  display: block;
  font-size: 22rpx;
  color: #667085;
  margin-bottom: 8rpx;
}

.value {
  display: block;
  font-size: 26rpx;
  font-weight: 600;
  color: #101828;
  line-height: 1.5;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16rpx;
  margin-top: 18rpx;
}

.choice-card {
  padding: 22rpx 24rpx;
  border-radius: 20rpx;
  border: 2rpx solid #e4e7ec;
  background: #fafafa;
}

.choice-card.active {
  border-color: #12b76a;
  background: #ecfdf3;
}

.choice-title {
  display: block;
  font-size: 28rpx;
  font-weight: 600;
  color: #101828;
}

.choice-hint {
  display: block;
  margin-top: 8rpx;
  font-size: 22rpx;
  color: #667085;
}

.count-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28rpx;
  margin-top: 20rpx;
}

.count-btn {
  width: 80rpx;
  height: 80rpx;
  line-height: 80rpx;
  border-radius: 50%;
  background: #eef4ff;
  color: #175cd3;
  font-size: 36rpx;
  font-weight: 700;
}

.count-value {
  min-width: 80rpx;
  text-align: center;
  font-size: 36rpx;
  font-weight: 700;
  color: #101828;
}

.count-hint {
  display: block;
  margin-top: 18rpx;
  text-align: center;
  color: #667085;
  font-size: 24rpx;
}

.input,
.textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 16rpx;
  padding: 22rpx 20rpx;
  border-radius: 18rpx;
  background: #f8fafc;
  font-size: 26rpx;
  color: #101828;
}

.textarea {
  min-height: 160rpx;
}

.submit {
  width: 100%;
  height: 92rpx;
  line-height: 92rpx;
  border-radius: 24rpx;
  background: linear-gradient(135deg, #12b76a 0%, #039855 100%);
  color: #ffffff;
  font-size: 30rpx;
  font-weight: 600;
}

.submit[disabled] {
  opacity: 0.5;
}
