/* 全局样式 */
.app-content {
  display: flex;
  flex-direction: column;
}

/* 英雄区 */
.performance {
  background-color: #f0f8fb;
  border-radius: 8px;
  margin: 40px auto;
  padding: 60px 20px;
  width: 90%;
  max-width: 1200px;
}

.hero-content {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 36px;
  color: #1f2937;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-desc {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-btn {
  padding: 12px 32px;
  margin-right: 20px;
  background-color: #4096ff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.hero-btn-outline {
  padding: 12px 32px;
  border: 1px solid #4096ff;
  color: #4096ff;
  background-color: transparent;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

/* 通用区块样式 */
.core-value,
.scene-coverage,
.check-convert,
.convert-scene,
.deploy {
  padding: 60px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 28px;
  color: #1f2937;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title p {
  color: #6b7280;
  font-size: 16px;
}

/* 核心价值 */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.value-card {
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  background-color: white;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-icon {
  font-size: 40px;
  color: #4096ff;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f2937;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* 全场景覆盖 */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.scene-card {
  padding: 25px 20px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background-color: white;
}

.scene-icon {
  font-size: 36px;
  color: #4096ff;
  margin-bottom: 15px;
}

.scene-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f2937;
}

.scene-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* 核稿+转档 */
.check-convert {
  background-color: #f9fafb;
  border-radius: 8px;
  margin: 40px auto;
  padding: 60px 20px;
}

.check-list {
  width: 90%;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.col {
  padding: 0 10px;
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 25%;
  }
}

@media (max-width: 767px) {
  .col {
    width: 50%;
  }
}

.check-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.check-icon {
  font-size: 24px;
  color: #4096ff;
  margin-right: 15px;
}

.check-text {
  font-size: 16px;
  color: #374151;
}

/* 多场景转档 */
.convert-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.convert-card {
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background-color: white;
}

.convert-card h3 {
  font-size: 18px;
  color: #1f2937;
  margin-bottom: 10px;
}

.convert-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* 性能对比 */
.performance-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 90%;
  margin: 0 auto;
}

.performance-card {
  padding: 30px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.performance-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #1f2937;
}

.performance-data {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.our-speed {
  font-size: 24px;
  font-weight: 700;
  color: #4096ff;
}

.vs {
  font-size: 18px;
  color: #6b7280;
}

.industry-speed {
  font-size: 20px;
  color: #9ca3af;
  text-decoration: line-through;
}

.performance-desc {
  color: #374151;
  font-size: 16px;
}

/* 部署方案 */
.deploy-list {
  width: 90%;
  margin: 0 auto;
}

.el-collapse {
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}

.el-collapse-item {
  border-bottom: 1px solid #e5e7eb;
}

.el-collapse-item:last-child {
  border-bottom: none;
}

.el-collapse-header {
  padding: 16px 20px;
  font-size: 16px;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9fafb;
}

.el-collapse-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.el-collapse-content.show {
  max-height: 500px;
  padding: 15px 20px;
}

.deploy-content {
  padding: 15px 0;
  line-height: 1.8;
  color: #6b7280;
  font-size: 14px;
}

/* 联系我们区块样式 */
.contact-section {
  padding: 60px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
  background-color: #f9fafb;
  border-radius: 8px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: 90%;
  margin: 0 auto;
}

/* 二维码样式 */
.qrcode-group {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  justify-content: center;
}

.qrcode-item {
  text-align: center;
  flex-shrink: 0;
}

.qrcode-img {
  width: 180px;
  height: 180px;
  border: 1px solid #e2e8f0;
  padding: 10px;
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 8px;
}

.qrcode-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qrcode-desc {
  font-size: 16px;
  color: #1f2937;
  font-weight: 500;
}

/* 联系方式样式 */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.contact-icon {
  font-size: 24px;
  color: #4096ff;
  margin-right: 15px;
}

.contact-text {
  color: #374151;
}

/* 底部 */
.footer {
  text-align: center;
  line-height: 20px;
  padding: 5px 0;
  margin-top: auto;
}

.footer-content p {
  margin: 5px 0px;
  font-size: 14px;
  opacity: 0.8;
}

/* 报价模块全局样式 */
.pricing-template-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 60px;
}

.pricing-header {
  margin-bottom: 40px;
  text-align: center;
}

.pricing-header h1 {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: bold;
  color: #1f2937;
}

/* 报价卡片行布局 */
.pricing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 -10px;
}

/* 报价卡片列布局（响应式） */
.pricing-col {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  padding: 0 10px;
}

/* 报价卡片样式 */
.pricing-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.pricing-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* 热门标签 */
.pricing-card-popular {
  border: 2px solid #409eff;
}

.pricing-popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 5px 15px;
  font-size: 12px;
  color: white;
  background: #409eff;
  border-bottom-left-radius: 10px;
}

/* 卡片头部 */
.pricing-card-header {
  padding: 30px 20px 20px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-card-header h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #1f2937;
}

.pricing-price {
  margin-bottom: 15px;
}

.pricing-amount {
  font-size: 36px;
  font-weight: bold;
  color: #409eff;
}

.pricing-period {
  font-size: 14px;
  color: #6b7280;
  margin-left: 5px;
}

.pricing-description {
  font-size: 14px;
  color: #6b7280;
}

/* 卡片内容区 */
.pricing-card-body {
  padding: 20px;
}

.pricing-features {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features li i {
  margin-right: 10px;
  font-size: 16px;
}

.pricing-feature-disabled {
  color: #9ca3af;
}

/* 购买按钮 */
.pricing-button {
  width: 100%;
  height: 45px;
  font-size: 16px;
  background-color: #409eff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pricing-button:hover {
  background-color: #337ecc;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .pricing-row {
    flex-direction: column;
    align-items: center;
  }

  .pricing-col {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }

  .pricing-header h1 {
    font-size: 28px;
  }
}

/* 响应式适配 */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .value-cards,
  .scene-grid,
  .convert-cards {
    grid-template-columns: 1fr;
  }

  .contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .qrcode-group {
    gap: 20px;
  }

  .qrcode-img {
    width: 140px;
    height: 140px;
  }

  .contact-item {
    font-size: 16px;
  }
}
