/* FRMCS解决方案专属样式 - 与HTML完全分离 */
.frmcs-container {
  padding: 30px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.frmcs-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2f5;
}
.frmcs-header h1 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
}
.frmcs-header .tag-line {
  font-size: 18px;
  color: #34495e;
  margin-bottom: 10px;
}
.frmcs-header .desc {
  font-size: 14px;
  color: #7f8c8d;
}
.main-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.content-section {
  margin-bottom: 60px;
  width: 100%;
}
.section-title {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 25px;
  padding-left: 10px;
  border-left: 4px solid #3498db;
}
.section-desc {
  font-size: 15px;
  color: #596978;
  line-height: 1.8;
  margin-bottom: 30px;
}
/* 技术对比图样式 */
.tech-compare-img {
  width: 80%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 30px;
  display: block;
}
/* 优势板块布局 */
.advantages-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.advantage-card {
  width: calc(33.333% - 15px);
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.advantage-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.advantage-card .card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}
.advantage-card .card-title {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}
.advantage-card .card-desc {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.7;
}
/* 场景板块布局 */
.scene-item {
  margin-bottom: 35px;
  width: 100%;
}
.scene-item .scene-title {
  font-size: 16px;
  color: #34495e;
  margin-bottom: 10px;
  font-weight: 600;
}
.scene-item .scene-desc {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 15px;
}
.scene-img {
  width: 90%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
}
/* 架构与参数样式 */
.param-img, .architecture-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
}
.param-list {
  list-style: none;
  padding-left: 0;
}
.param-list li {
  font-size: 14px;
  color: #596978;
  line-height: 1.8;
  padding: 8px 0;
  border-bottom: 1px dashed #eef2f5;
}
.param-list li:before {
  content: "•";
  color: #3498db;
  margin-right: 10px;
}
/* 服务板块样式 */
.service-flow-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
}
/* 技术适配板块样式（替换成功案例） */
.adaptation-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.adaptation-card {
  width: calc(50% - 10px);
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.adaptation-card .adaptation-title {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.adaptation-card .adaptation-icon {
  width: 40px;
  height: 40px;
}
.adaptation-card .adaptation-desc {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 20px;
}
.adaptation-card .adaptation-list {
  list-style: none;
  padding-left: 0;
}
.adaptation-card .adaptation-list li {
  font-size: 13px;
  color: #596978;
  line-height: 1.7;
  padding: 5px 0;
}
.adaptation-card .adaptation-list li:before {
  content: "✓";
  color: #2ecc71;
  margin-right: 8px;
}
/* 页脚样式 */
.frmcs-footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #eef2f5;
  margin-top: 50px;
}
.frmcs-footer .footer-title {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}
.frmcs-footer .footer-desc {
  font-size: 14px;
  color: #7f8c8d;
}
.footer-brand-img {
  width: 200px;
  height: auto;
  margin: 15px auto;
  display: block;
}
/* 响应式适配 */
@media (max-width: 768px) {
  .advantage-card {
    width: calc(50% - 10px);
  }
  .adaptation-card {
    width: 100%;
  }
  .frmcs-header h1 {
    font-size: 28px;
  }
  .section-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .advantage-card {
    width: 100%;
  }
  .tech-compare-img, .scene-img {
    width: 100%;
  }
  .frmcs-header h1 {
    font-size: 24px;
  }
  .section-title {
    font-size: 20px;
  }
}