.Title {
  background-color: #f8fafc;
  padding: 2rem;
  text-align: center;
  box-shadow: inset 0-1px 0 0#e2e8f0;
}
.section-title h1 {
  font-size: 2rem;
}
.section-title p {
  font-size: 1rem;
}
.content {
  padding: 2rem 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.section_framework {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
}
.framework-image,
.framework-text {
  flex: 1;
}
.framework-image img,
.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.framework-text h2,
.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}
.framework-text p,
.intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}
.CompanyIntroduction {
  background-color: #fff;
  padding: 4rem 0;
}
.intro-block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}
.intro-image,
.intro-text {
  flex: 1;
}
.scene-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.scene-item {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.scene-item:hover {
  transform: translateY(-5px);
}
.scene-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.scene-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}
.text {
  font-size: 0.9rem;
  color: #344256;
}
.solution-list {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
.solution-list li {
  position: relative;
  padding: 0.8rem 0;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  border-bottom: 1px dashed #e2e8f0;
}
.solution-list li:last-child {
  border-bottom: none;
}
.solution-list li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 1.2rem;
  width: 8px;
  height: 8px;
  background: #4a90e2;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.solution-list li:hover {
  color: #2d3748;
  background: #f7fafc;
  border-radius: 4px;
  padding-left: 2rem;
  transition: all 0.3s ease;
}
.solution-list li:hover::before {
  transform: scale(1.5);
  background: #2b6cb0;
}
@media screen and (max-width: 1024px) {
  .footer-ul,
  .footer_right {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .intro-block {
    flex-direction: column !important;
  }
  .section_framework {
    padding: 10px;
    flex-direction: column;
  }
}
.codeBox .code img {
  width: 150px;
  height: 150px;
}
.codeBox p {
  text-align: center;
}

/* 移动端导航菜单 */
.mobile-nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 50vw;
  height: 100%;
  background: #fff;
  padding: 1rem;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav-ul {
  height: 100%;
}
.mobile-nav-li {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mobile-nav-li a {
  color: #000;
}
.close-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1rem;
}
