<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.voice-recognition-banner {
  background: linear-gradient(45deg, #0086d1, #1faeff);
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.voice-recognition-banner::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(-25deg);
}
.voice-recognition-banner .banner-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
}
.voice-recognition-banner .banner-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}
.voice-recognition-banner .banner-content .subtitle {
  font-size: 24px;
  margin-bottom: 15px;
  opacity: 0.9;
}
.voice-recognition-banner .banner-content .description {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
}
.voice-recognition-banner .banner-content .banner-btns {
  margin-top: 40px;
}
.voice-recognition-banner .banner-content .banner-btns .layui-btn {
  margin: 0 10px;
  padding: 0 40px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  transition: all 0.3s ease;
}
.voice-recognition-banner .banner-content .banner-btns .layui-btn.layui-btn-primary {
  background: #fff;
  color: #333;
  border: none;
}
.voice-recognition-banner .banner-content .banner-btns .layui-btn.layui-btn-primary:hover {
  background: #fff;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}
.application-scenarios {
  padding: 80px 0;
  background: #f8f9fa;
}
.application-scenarios .scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.application-scenarios .scenario-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.application-scenarios .scenario-card:hover {
  transform: translateY(-5px);
  border-color: #0086d1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.application-scenarios .scenario-card:hover .icon img {
  transform: scale(1.1);
}
.application-scenarios .scenario-card .icon {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 15px;
  width: 120px;
  height: 120px;
}
.application-scenarios .scenario-card .icon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 15px;
}
.application-scenarios .scenario-card h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
.application-scenarios .scenario-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
  min-height: 60px;
}
.application-scenarios .scenario-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.application-scenarios .scenario-card .feature-list li {
  padding: 6px 16px;
  color: #666;
  font-size: 14px;
  background: rgba(0, 134, 209, 0.1);
  border-radius: 20px;
  color: #0086d1;
}
.tech-advantages {
  padding: 80px 0;
  background: #fff;
}
.tech-advantages .advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.tech-advantages .advantage-item {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.tech-advantages .advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.tech-advantages .advantage-item .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.tech-advantages .advantage-item .icon i {
  font-size: 36px;
  color: #0086d1;
}
.tech-advantages .advantage-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}
.tech-advantages .advantage-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.section-title {
  text-align: center;
  font-size: 36px;
  color: #333;
  margin-bottom: 50px;
  font-weight: bold;
}
.margin-top-30 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .voice-recognition-banner {
    padding: 80px 0;
  }
  .voice-recognition-banner .banner-content h1 {
    font-size: 32px;
  }
  .voice-recognition-banner .banner-content .subtitle {
    font-size: 20px;
  }
  .voice-recognition-banner .banner-content .description {
    font-size: 16px;
  }
  .tech-advantages .advantages-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .tech-advantages .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  .application-scenarios .scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .application-scenarios .scenarios-grid {
    grid-template-columns: 1fr;
  }
  .application-scenarios .scenario-card p {
    min-height: auto;
  }
}
.tech-summary {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}
.tech-summary .summary-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}
.tech-summary .summary-content .section-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 30px;
}
.tech-summary .summary-content .summary-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 30px;
}
.tech-summary .summary-content .summary-text .contact-btn {
  margin-top: 30px;
}
.tech-summary .summary-content .summary-text .contact-btn .layui-btn {
  padding: 0 50px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  background-color: #0086d1;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.tech-summary .summary-content .summary-text .contact-btn .layui-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 134, 209, 0.3);
}
.tech-summary .summary-content .summary-text .contact-btn .layui-btn.layui-btn-primary {
  background: #fff;
  color: #333;
  border: none;
}
.tech-summary .summary-content .summary-text .contact-btn .layui-btn.layui-btn-primary:hover {
  background: #fff;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-image: url("https://picsum.photos/1920/1080?random=10");
  background-size: cover;
  background-position: center;
}
.parallax-section .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.parallax-section .summary-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.parallax-section .summary-content .section-title {
  color: #fff;
}
.parallax-section .summary-content p {
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .future-outlook {
    padding: 60px 0;
  }
  .future-outlook .outlook-content {
    padding: 0 20px;
  }
  .future-outlook .outlook-content .outlook-text p {
    font-size: 16px;
  }
}
</pre></body></html>