.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}
.solution-banner {
  background: linear-gradient(45deg, #0086d1, #1faeff);
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  color: #fff;
}
.solution-banner::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(-25deg);
}
.solution-banner .banner-content {
  text-align: center;
}
.solution-banner .banner-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.solution-banner .banner-content p {
  font-size: 18px;
  opacity: 0.9;
}
.solution-banner .banner-content .banner-btns {
  margin-top: 20px;
}
.solution-banner .banner-content .banner-btns .layui-btn {
  margin: 0 10px;
}
.solution-banner .banner-content .banner-btns .layui-btn.layui-btn-primary {
  background: #fff;
  color: #333;
  border: none;
}
.solution-banner .banner-content .banner-btns .layui-btn.layui-btn-primary:hover {
  background: #fff;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}
.core-features {
  padding: 80px 0;
  background: #fff;
}
.core-features .feature-card {
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.core-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.core-features .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.core-features .feature-card .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.core-features .feature-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}
.core-features .feature-card p {
  color: #666;
  line-height: 1.6;
}
.application-scenarios {
  padding: 80px 0;
  background: #1c4ef7;
}
.application-scenarios .section-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}
.application-scenarios .section-desc {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.application-scenarios .scenario-tabs .tab-header {
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(250, 251, 255, 0.1);
}
.application-scenarios .scenario-tabs .tab-header .tab-item {
  padding: 15px 40px;
  color: hsla(0, 0%, 100%, 0.6);
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  min-width: 120px;
  flex: 1;
}
.application-scenarios .scenario-tabs .tab-header .tab-item:hover {
  color: #fff;
}
.application-scenarios .scenario-tabs .tab-header .tab-item.active {
  color: #fff;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content.active {
  display: flex;
  opacity: 1;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info {
  flex: 1;
  margin-left: 60px;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #fff;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 30px;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .related-industries,
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .related-abilities {
  margin-bottom: 25px;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .related-industries h4,
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .related-abilities h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .industry-tags .tag {
  display: inline-block;
  padding: 12px 35px;
  background: #f0f5ff;
  color: #4169e1;
  margin: 0 10px 10px 0;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .ability-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .ability-items .ability-item {
  padding: 12px 35px;
  border: 1px solid hsla(0, 0%, 100%, 0.8);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-image {
  flex: 1;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(211deg, rgba(188, 208, 255, 0.4) -1%, hsla(0, 0%, 100%, 0) 94%);
  border-radius: 5px;
}
.application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .application-scenarios {
    padding: 40px 0;
  }
  .application-scenarios .section-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .application-scenarios .section-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .application-scenarios .scenario-tabs .tab-header {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 15px;
    margin-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .application-scenarios .scenario-tabs .tab-header::-webkit-scrollbar {
    display: none;
  }
  .application-scenarios .scenario-tabs .tab-header .tab-item {
    padding: 10px 20px;
    font-size: 16px;
    min-width: auto;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content {
    flex-direction: column-reverse;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info {
    margin-left: 0;
    margin-top: 30px;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .related-industries,
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .related-abilities {
    margin-bottom: 20px;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .related-industries h4,
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .related-abilities h4 {
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .industry-tags .tag {
    padding: 8px 20px;
    font-size: 14px;
    margin: 0 5px 10px;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .ability-items {
    justify-content: center;
    gap: 10px;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .ability-items .ability-item {
    padding: 8px 20px;
    font-size: 14px;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-image {
    padding: 15px;
    margin: 0 -15px;
    background: none;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-image img {
    max-width: 100%;
    border-radius: 8px;
  }
}
@media screen and (max-width: 480px) {
  .application-scenarios .scenario-tabs .tab-header .tab-item {
    padding: 8px 15px;
    font-size: 14px;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info h3 {
    font-size: 20px;
  }
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .industry-tags .tag,
  .application-scenarios .scenario-tabs .tab-content .scenario-content .scenario-info .ability-items .ability-item {
    padding: 6px 15px;
    font-size: 13px;
  }
}
.tech-advantages {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.tech-advantages .advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .tech-advantages .advantages-list {
    grid-template-columns: 1fr;
  }
}
.tech-advantages .advantages-list .advantage-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.tech-advantages .advantages-list .advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.tech-advantages .advantages-list .advantage-card:hover .advantage-icon {
  background: #0086d1;
}
.tech-advantages .advantages-list .advantage-card:hover .advantage-icon i {
  color: #fff;
}
.tech-advantages .advantages-list .advantage-card .advantage-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 134, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.tech-advantages .advantages-list .advantage-card .advantage-icon i {
  font-size: 30px;
  color: #0086d1;
  transition: all 0.3s ease;
}
.tech-advantages .advantages-list .advantage-card .advantage-content {
  flex: 1;
}
.tech-advantages .advantages-list .advantage-card .advantage-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 500;
}
.tech-advantages .advantages-list .advantage-card .advantage-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}
.tech-advantages .advantages-list .advantage-card .advantage-content .feature-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tech-advantages .advantages-list .advantage-card .advantage-content .feature-points li {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.tech-advantages .advantages-list .advantage-card .advantage-content .feature-points li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0086d1;
}
.tech-advantages .advantages-list .advantage-card .advantage-content .feature-points li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .tech-advantages {
    padding: 40px 0;
  }
  .tech-advantages .advantage-card {
    padding: 20px;
  }
  .tech-advantages .advantage-card .advantage-icon {
    width: 50px;
    height: 50px;
  }
  .tech-advantages .advantage-card .advantage-icon i {
    font-size: 24px;
  }
  .tech-advantages .advantage-card .advantage-content h3 {
    font-size: 18px;
  }
  .tech-advantages .advantage-card .advantage-content p,
  .tech-advantages .advantage-card .advantage-content .feature-points li {
    font-size: 13px;
  }
}
.margin-top-30 {
  margin-top: 30px;
}
.scenario-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.scenario-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.scenario-card h3 {
  padding: 20px 20px 10px;
  font-size: 20px;
  color: #333;
}
.scenario-card p {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}
.advantage-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.advantage-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
}
.advantage-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}
.advantage-item p {
  color: #666;
  line-height: 1.6;
}
.tech-summary {
  padding: 80px 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);
}
.real-world-applications {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.real-world-applications h2 {
  margin-top: 60px;
}
.real-world-applications .application-card {
  margin-top: 60px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.real-world-applications .application-card h3 {
  margin-top: 60px;
  padding: 20px;
  font-size: 24px;
  color: #333;
  margin: 0;
  border-bottom: 1px solid #eee;
}
.real-world-applications .application-card .application-image {
  position: relative;
}
.real-world-applications .application-card .application-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.real-world-applications .application-card .application-info {
  padding: 20px;
}
.real-world-applications .application-card .application-info p {
  color: #666;
  margin-bottom: 15px;
}
.real-world-applications .application-card .application-info .benefit-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.real-world-applications .application-card .application-info .benefit-list li .layui-icon {
  color: #0086d1;
  margin-right: 10px;
}
.real-world-applications .application-card .application-info .benefit-list li span {
  color: #666;
}
.real-world-applications .counting-advantages .intro-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px;
}
.real-world-applications .counting-advantages .intro-section h3 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}
.real-world-applications .counting-advantages .intro-section .intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}
.real-world-applications .counting-advantages .advantages-title {
  text-align: center;
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}
.real-world-applications .counting-advantages .advantage-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.real-world-applications .counting-advantages .advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.real-world-applications .counting-advantages .advantage-item:hover .icon-wrapper {
  background: #0086d1;
}
.real-world-applications .counting-advantages .advantage-item:hover .icon-wrapper .layui-icon {
  color: #fff;
}
.real-world-applications .counting-advantages .advantage-item .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 134, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.real-world-applications .counting-advantages .advantage-item .icon-wrapper .layui-icon {
  font-size: 36px;
  color: #0086d1;
  transition: all 0.3s ease;
}
.real-world-applications .counting-advantages .advantage-item h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 500;
}
.real-world-applications .counting-advantages .advantage-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.real-world-applications .counting-advantages .advantage-item .feature-points {
  text-align: left;
  padding-left: 20px;
}
.real-world-applications .counting-advantages .advantage-item .feature-points li {
  color: #666;
  margin-bottom: 8px;
  position: relative;
}
.real-world-applications .counting-advantages .advantage-item .feature-points li:before {
  content: "•";
  color: #0086d1;
  position: absolute;
  left: -15px;
}
.speed-estimation {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.speed-estimation .estimation-content .intro-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.speed-estimation .estimation-content .intro-section h3 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}
.speed-estimation .estimation-content .intro-section .intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}
.speed-estimation .estimation-content .advantages-grid {
  margin-bottom: 80px;
}
.speed-estimation .estimation-content .advantages-grid .advantage-item {
  height: 100%;
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.speed-estimation .estimation-content .advantages-grid .advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.speed-estimation .estimation-content .advantages-grid .advantage-item:hover .icon-wrapper {
  background: #0086d1;
}
.speed-estimation .estimation-content .advantages-grid .advantage-item:hover .icon-wrapper .layui-icon {
  color: #fff;
}
.speed-estimation .estimation-content .advantages-grid .advantage-item .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 134, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.speed-estimation .estimation-content .advantages-grid .advantage-item .icon-wrapper .layui-icon {
  font-size: 30px;
  color: #0086d1;
  transition: all 0.3s ease;
}
.speed-estimation .estimation-content .advantages-grid .advantage-item h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 500;
}
.speed-estimation .estimation-content .advantages-grid .advantage-item p {
  color: #666;
  line-height: 1.6;
}
.speed-estimation .estimation-content .applications-showcase .showcase-title {
  text-align: center;
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}
.speed-estimation .estimation-content .applications-showcase .showcase-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}
.speed-estimation .estimation-content .applications-showcase .showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.speed-estimation .estimation-content .applications-showcase .showcase-card .showcase-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.speed-estimation .estimation-content .applications-showcase .showcase-card .showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speed-estimation .estimation-content .applications-showcase .showcase-card .showcase-content {
  padding: 30px;
}
.speed-estimation .estimation-content .applications-showcase .showcase-card .showcase-content h4 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}
.speed-estimation .estimation-content .applications-showcase .showcase-card .showcase-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.speed-estimation .estimation-content .applications-showcase .showcase-card .showcase-content .feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #666;
}
.speed-estimation .estimation-content .applications-showcase .showcase-card .showcase-content .feature-list li .layui-icon {
  color: #0086d1;
  margin-right: 10px;
}
.exercise-monitoring {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.exercise-monitoring .monitoring-content .intro-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.exercise-monitoring .monitoring-content .intro-section h3 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}
.exercise-monitoring .monitoring-content .intro-section .intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}
.exercise-monitoring .monitoring-content .advantages-grid {
  margin-bottom: 80px;
}
.exercise-monitoring .monitoring-content .advantages-grid .advantage-item {
  height: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}
.exercise-monitoring .monitoring-content .advantages-grid .advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.exercise-monitoring .monitoring-content .advantages-grid .advantage-item:hover .icon-wrapper {
  background: #0086d1;
}
.exercise-monitoring .monitoring-content .advantages-grid .advantage-item:hover .icon-wrapper .layui-icon {
  color: #fff;
}
.exercise-monitoring .monitoring-content .advantages-grid .advantage-item .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 134, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.exercise-monitoring .monitoring-content .advantages-grid .advantage-item .icon-wrapper .layui-icon {
  font-size: 24px;
  color: #0086d1;
  transition: all 0.3s ease;
}
.exercise-monitoring .monitoring-content .advantages-grid .advantage-item h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 500;
}
.exercise-monitoring .monitoring-content .advantages-grid .advantage-item p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}
.exercise-monitoring .monitoring-content .applications-showcase .showcase-title {
  text-align: center;
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}
.exercise-monitoring .monitoring-content .applications-showcase .showcase-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}
.exercise-monitoring .monitoring-content .applications-showcase .showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.exercise-monitoring .monitoring-content .applications-showcase .showcase-card .showcase-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.exercise-monitoring .monitoring-content .applications-showcase .showcase-card .showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exercise-monitoring .monitoring-content .applications-showcase .showcase-card .showcase-content {
  padding: 30px;
}
.exercise-monitoring .monitoring-content .applications-showcase .showcase-card .showcase-content h4 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}
.exercise-monitoring .monitoring-content .applications-showcase .showcase-card .showcase-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.exercise-monitoring .monitoring-content .applications-showcase .showcase-card .showcase-content .feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #666;
}
.exercise-monitoring .monitoring-content .applications-showcase .showcase-card .showcase-content .feature-list li .layui-icon {
  color: #0086d1;
  margin-right: 10px;
}
