
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
  overflow-x: hidden;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.fa-chevron-left:before {
  content: "\f053";
  color: #046190;
}
.fa-chevron-right:before {
  content: "\f054";
  color: #046190;
}
/* .carousel-slidehd{padding-top:100px;} */

.daohangbox{
  position: relative;
  /* height: 80px; */
  width: 100%;
  z-index: 999;
}
/* .daohangbox .nav-link{font-size:1rem;} */
.box-active{
position: fixed;
top: 0;
}

.j99{
  display: flex;align-content: center;
}

.j99 .rounded-2xl{
  flex-shrink: 0;margin-right: 20px;align-self: center;
}
.j98{display: flex;}


.mb-12 {
  margin-bottom: 2rem!important;
}

.text-sky-200,.text-sky-300,.text-gray-300,.text-sky-200,.text-sky-100{color:#fff!important;}

.text-hei{color:#333!important;}

.sky-gradient {
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
}

.ocean-gradient {
  background: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
}

.azure-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-bg {
  background: linear-gradient(135deg, #27b2f1 0%, #2f9cda 50%, #0ea5e9 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(20, 184, 166, 0.2) 0%, transparent 50%);
  z-index: 1;
}

.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, #0ea5e9, #3b82f6);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.pulse-dot {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.scroll-indicator {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.grid-pattern {
  background-image: 
    linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,176C672,181,768,139,864,122.7C960,107,1056,117,1152,138.7C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: 50% 100%;
  background-repeat: repeat-x;
  animation: wave 10s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ship-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.ship {
  position: absolute;
  bottom: 30px;
  left: -100%;
  width: 120px;
  height: 60px;
  animation: shipMove 15s linear infinite;
}

.ship-body {
  position: relative;
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.ship-deck {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: #0ea5e9;
  border-radius: 10px 10px 0 0;
}

.ship-smokestack {
  position: absolute;
  top: -35px;
  left: 30%;
  width: 15px;
  height: 15px;
  background: #0369a1;
  border-radius: 5px 5px 0 0;
}

.ship-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(56, 189, 248, 0.3);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  animation: wave 3s ease-in-out infinite;
}

.stat-counter {
  font-variant-numeric: tabular-nums;
}

.card-glow {
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.btn-outline {
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #0ea5e9;
  color: white;
  transform: translateY(-2px);
}

.mobile-menu {
  transition: transform 0.3s ease;
}

.mobile-menu.hidden {
  transform: translateX(100%);
}
.w600{width:900px;margin: 0 auto;}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #3b82f6);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.pain-card {
  transition: all 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.value-card {
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.function-card {
  transition: all 0.3s ease;
}

.function-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.version-card {
  transition: all 0.3s ease;
}

.version-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.interface-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.interface-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.data-flow {
  position: relative;
  overflow: hidden;
}

.data-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: dataFlow 3s infinite;
}

@keyframes dataFlow {
  100% {
    left: 100%;
  }
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  overflow: hidden;
  /* height: 100vh; */
  /* min-height: 600px; */
  padding-top: 80px;
}

/* .dssd1 .text-sky-500,.dssd1 .text-ocean-500{text-indent: 2em;} */
.interface-showcase img{ width: 100%;
  height: 100%;
  object-fit: cover;}

  .leading-relaxed55{line-height: 2!important;}
  .text-white{color:#fff!important;}
  .space-y-4 > :not([hidden]) ~ :not([hidden]) {
      --tw-space-y-reverse: 0;
      margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)))!important;;
      margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  }
  .dad111 .text-gray-500{    font-size: 1rem;color:#333;font-weight: bold;}

.carousel-slide {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  opacity: 1;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: white;
  width: 36px;
  border-radius: 6px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* Business Flow Diagram */
.business-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.flow-node {
  background: white;
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.flow-node:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.flow-arrow {
  display: flex;
  align-items: center;
  color: #0ea5e9;
  font-size: 20px;
}

/* Three-Tier Architecture */
.tier-architecture {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.tier-layer {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tier-layer:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tier-top {
  width: 60%;
  margin-left: 20%;
  border-left: 5px solid #0ea5e9;
}

.tier-middle {
  width: 80%;
  margin-left: 10%;
  border-left: 5px solid #3b82f6;
}

.tier-bottom {
  width: 100%;
  border-left: 5px solid #0c4a6e;
}

.tier-content {
  padding-left: 15px;
}

.tier-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0ea5e9;
}

.tier-desc {
  font-size: 14px;
  color: #64748b;
}

/* Three-Port Collaboration */
.port-collaboration {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.port-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.port-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.port-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.port-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0ea5e9;
}

.port-features {
  text-align: left;
  margin-top: 20px;
}

.port-feature {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
}

.port-feature i {
  color: #0ea5e9;
  margin-top: 3px;
}

/* System Architecture - Integrated Design */
.arch-integrated {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.arch-integrated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0ea5e9, #3b82f6, #14b8a6);
}

.arch-diagram {
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 20px; */
  /* margin: 30px 0; */
height: calc(100% - 56px);}

.a13131{display: flex!important;flex-direction: row!important;}
.ap1{width: calc(50% - 10px);margin-right: 40px;}
.ap2{width: calc(50% - 10px);}
.apbox{display: flex;}
.arch-layer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  transition: all 0.3s ease;
}

.arch-layer:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.arch-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arch-content {
  flex: 1;
}

.arch-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0ea5e9;
}

.arch-desc {
  font-size: 14px;
  color: #64748b;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.advantage-item {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.advantage-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0ea5e9;
}

.advantage-desc {
  font-size: 13px;
  color: #64748b;
}

/* Interface Showcase */
.interface-showcase {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  /* gap: 30px; */
  /* margin-top: 40px; */
}

.interface-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.interface-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.interface-img {
  height: 200px;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.interface-content {
  padding: 20px;
}

.interface-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0ea5e9;
}

.interface-desc {
  font-size: 14px;
  color: #64748b;
}

/* Version Comparison */
.version-comparison {
  /* display: grid; */
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.version-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.version-header {
  padding: 30px;
  text-align: center;
  color: white;
}

.version-features {
  padding: 30px;
}

.version-feature {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 15px;
}

.version-feature i {
  color: #0ea5e9;
  margin-top: 3px;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #0ea5e9;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  outline: none;
}

/* Section spacing */
section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.mySwiper5{/* padding-bottom:30px!important; */}
#functions .swiper-backface-hidden .swiper-slide{height:300px!important;}
#features .swiper-backface-hidden .swiper-slide{height:170px!important;}
#interface .swiper-backface-hidden .swiper-slide{height:319px!important;}
#architecture .w600{width:100%!important;}
.bcvx{margin-bottom: 0.2rem!important;}

.guarantee-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #0ea5e9;
}

.guarantee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 15px; */
}

.guarantee-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0284c7;
}

.guarantee-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}
.certificate-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.certificate-img {
  width: 100%;
  height: auto;
  display: block;
}

.certificate-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}
/* .eqwee .lg\:grid-cols-2 {
  grid-template-columns: 3fr 7fr!important;
} */
.a113{width:27%;float: left;margin-right:3%;}
.a114{width:70%;float: left;}
.eqwee .text-2xl {
  font-size: 1.1rem!important;
}
.eqwee .p-4 {
  padding: 0.25rem;
}
.eqwee .text-lg {
  font-size: 1rem;
  line-height: 1.25rem;
}
.eqwee .mt-6 {
  margin-top: 0.25rem;
}
.mySwiper76>.swiper-button-next,.mySwiper76>.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  color: #0284c7;
  border-radius: 50%;

}
.mySwiper76>.swiper-button-next:after,.mySwiper76>.swiper-button-prev:after {
font-size: 16px;
font-weight: bold;
}
.swiper-pagination-bullet {
  width: 15px!important;
  height: 15px!important;
}
.mySwiper76>.swiper-wrapper {
  align-items: center;
}

@media screen and (min-width:968px) and (max-width:1300px){
  .container {
    max-width: 98%!important;
}
#functions .swiper-backface-hidden .swiper-slide {
  height: 330px!important;
}
.text-xl {
  font-size: 1rem!important;
  line-height: 1.75rem;
}
/* .text-gray-600{font-size: 0.5rem!important;} */
.lg\:text-5xl,.lg\:text-6xl {
  font-size: 1.75rem!important;
  line-height: 1;
}
.text-2xl {
  font-size: 1rem!important;
}
#home .carousel-slide .p-8 {
  padding: 0.5rem!important;
}
#home .carousel-slide .p-8 .mb-6 {
  margin-bottom: 0.5rem;
}
.dadd311313{display: none;}
.guarantee-card {
  padding: 5px 20px;
}
.guarantee-title {
  font-size: 1rem!important;
  line-height: 1.3;
}
.guarantee-desc {
  font-size: 1rem!important;
  line-height: 1.1;
}


}


@media screen and (max-width: 968px) {
  .dasdasd11{height: auto!important;max-width: 100%;}
  .mySwiper76 .swiper-button-prev,.mySwiper76 .swiper-button-next{
    display: none!important;
  }
  /* #home{
    padding-bottom: 20px;
} */
  .ap1{width: 100%;margin-right: 0px;}
  .ap2{width: 100%;margin-top: 2rem;}
  .apbox{display: block;}
  .dn{display:none!important;}
  .w600{width:auto;}
  .px-8 {
    padding-left: 1rem!important;
    padding-right: 1rem!important;
}
.mySwiper7 .p-8{padding:20px 10px;}
.mySwiper7 .space-y-4 > :not([hidden]) ~ :not([hidden]){margin-top:10px!important;}
.text-4xl {
  font-size: 1.5rem!important;
  line-height: 1.7rem!important;
}
.text-2xl {
  font-size: 1rem!important;
  line-height: 1.3rem!important;
}
.text-lg {
  font-size: 1rem!important;
  line-height: 1.5rem!important;
}
.px-6 {
  padding-left: 0.75rem!important;
  padding-right: 0.75rem!important;
}
.p-4 {
  padding: 0.5rem!important;
}
.mySwiper7 h4 {
  font-size: 0.75rem!important;
}
.mySwiper7 p {
  font-size: 0.75rem!important;
}
/* #home{padding-top: 30px!important;} */
.carousel-slide{    top: 0;}

.j99{
  display: flex;

  flex-direction: column;
}

.j99 .rounded-2xl{
  flex-shrink: 0;margin-right: 0px;align-self: center;
}
.j98{display: flex;flex-direction: column;}
.j98 .rounded-2xl{margin: 0 auto;margin-bottom: 1.5rem;}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.5rem!important;
}
.arch-integrated {

  padding: 40px 10px;

}
.a13131 {
  display: flex!important;
  flex-direction: column!important;
}
#contact .p-8 {
  padding: 2rem 10px 0.5rem 10px;
}
#contact .mb-8 {
  margin-bottom: 0.5rem;
}
.contact-form {
  padding: 40px 10px;
}
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  margin-right: calc(0.5rem * var(--tw-space-x-reverse))!important;
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)))!important;
}

#functions .swiper-backface-hidden .swiper-slide{height:auto!important;}
#features .swiper-backface-hidden .swiper-slide{height:auto!important;}
#interface .swiper-backface-hidden .swiper-slide{height:auto!important;}
.a114{width:100%;}
.a114 .p-8 {
  padding: 0.5rem;
}
.carousel-prev,.carousel-next {
  display: none;
}

/* 外层swiper容器 mySwiper76 */
.mySwiper76 {
  height: auto !important;
  overflow: visible !important; /* ✅关键：关闭垂直裁切，只保留水平滚动裁切 */
}
.mySwiper76 > .swiper-wrapper {
  /* height: auto !important; */
}
.mySwiper76 .swiper-slide {
  height: auto !important;
  overflow: visible !important; /* slide也要取消垂直裁剪 */
}

}

@media screen and (max-width: 767px) {
  .yingying{
    box-shadow: 0 5px 12px rgb(0 0 0 / 20%);
  border-radius: 1.5rem;
  }
}