/* 使用Tailwind CSS的container类，移除自定义container定义 */

@media (min-width: 960px) {
  .hamburger {
    display: block;
  }
}

.fixed {
  position: fixed;
}
.ud-header.fixed .header ul li a,  .ud-header.fixed .header .tel{
  color: #333;
}

/* 暗色模式下的fixed header样式 */
.dark .ud-header.fixed .header ul li a, .dark .ud-header.fixed .header .tel {
  color: #ffffff !important;
}
.banner {
  padding-top: 160px;
  position: relative;
  background: #3B82F6;
}

/* 暗模式下的banner样式 */
.dark .banner {
  background: #1e293b;
}

/* 暗模式下的通用样式 */
.dark body {
  background-color: #111928;
  color: #ffffff;
}

.dark .bg-white {
  background-color: #1f2937 !important;
}

.dark .text-dark {
  color: #ffffff !important;
}

.dark .text-body-color {
  color: #9ca3af !important;
}

.dark .border-stroke {
  border-color: #374151 !important;
}

.dark .shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2) !important;
}

/* 暗模式下的Hero section样式 */
.dark .bg-primary {
  background-color: #1e293b !important;
}

.dark section.bg-primary {
  background-color: #1e293b !important;
}

/* 暗模式下的卡片和容器样式 */
.dark .bg-gray-1 {
  background-color: #111928 !important;
}

.dark .bg-gray-2 {
  background-color: #1f2937 !important;
}
.banner .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/square.svg);
  mask-image: linear-gradient(transparent 10%, black);
  z-index: -1;
}
.banner .content {
  text-align: center;
}
.banner .toDownload {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  border: 1px solid rgb(255, 229, 229);
  margin-bottom: 30px;
}
.banner .toDownload a {
  color: #3c4858;
}
.banner .toDownload img {
  width: 20px;
  display: inline-block;
  margin-right: 10px;
}
.banner .toDownload img:nth-child(3) {
  margin-right: 0;
  margin-left: 10px;
}
.banner h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: bold;
}
.banner p {
  font-size: 18px;
  width: 50%;
  margin: 0 auto;
}


.banner .btn {
  margin-top: 30px;
}
.banner .slogo {
  width: 60%;
  margin: 0 auto;
}
.banner .slogo .item {
  margin: 10px 5px;
}
.banner .slogo  p {
  color: #fff;
  font-size: .875rem;
  margin: 0;
  width: 100%;
  text-align: center;
}
.banner .slogo img {
  width: 41px;
  filter: brightness(0) invert(100%) ;
  transition: all .2s;
}
.banner .slogo img:hover {
  filter:  invert(0) ;

}
.banner .ban {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  
}

.banner .btn a {
  padding: 0 20px;
  line-height: 46px;
  display: flex;
  margin: 0 10px;
  border-radius: 6px;
  align-items: center;
  transition: all .2s;
}
.banner .btn a:nth-child(1) {
  background: #fff;
  color: #111;
}
.banner .btn a:nth-child(1) img {
  width: 20px;
  display: inline-block;
  margin-right: 10px;
}
.banner .btn a:nth-child(2)  img {
  width: 20px;
  height: 16px;
  display: inline-block;
  margin-right: 10px;
}
.banner .btn a:hover {
  opacity: .8;
}
.banner .btn a:last-child {
  background: #3B82F6;
  color: #fff;
}

.bg-primary {
  background: #3B82F6;
}
.text-body-color {
  color: #637381;
}
.bg-secondary {
  background: rgb(19, 194 ,150);
}
.dark\:bg-dark-2:is(.dark *) {
  background-color: rgb(31 42 55)
}
.dark\:bg-dark:is(.dark *) {
  background-color: rgb(17 25 40);
}
.dark\:bg-dark-700:is(.dark *) {
  background-color: #090e34b3;
}
.text-gray-7 {
  color: rgb(206 212 218);
}
.hover-bg-dark:hover {
  background: #111928;
}
.dark\:bg-dark\/10:is(.dark *) {
  background-color: rgb(17 25 40 / .1);
}

.dark\:border-dark-3\/20:is(.dark *) {
  border-color: rgb(55 65 81 / .2);
}
.group:hover .group-hover\:text-primary {
  color: #3B82F6;
}
.text-primary {
  color: #3B82F6;
}
.bg-primary {
  background: #3B82F6;
}
.text-dark {
  color: rgb(17 25 40 );
}

/* 交互效果样式 */
.transition-all {
  transition: all 0.3s ease;
}

/* 按钮悬停效果 */
.btn a, .inline-flex {
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn a:hover, .inline-flex:hover {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* 卡片悬停效果 */
.group {
  transition: all 0.3s ease;
}

.group .relative.z-10 {
  transition: all 0.3s ease;
}

/* 数据库图标动画 */
.slogo .item img {
  transition: all 0.3s ease;
}

/* 进入视口动画 */
.wow {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.wow.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* 返回顶部按钮样式 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #3B82F6;
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.back-to-top:hover {
  background: #2563EB;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* 主题切换按钮动画 */
#theme-toggle {
  transition: all 0.3s ease;
}

#theme-toggle:hover {
  transform: scale(1.1);
}

/* 导航菜单动画 */
#navbarCollapse {
  transition: all 0.3s ease;
}

/* 页面加载动画 */
.main {
  opacity: 1;
}

/* 脉冲动画 */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* 弹跳动画 */
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -10px, 0);
  }
  70% {
    transform: translate3d(0, -5px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

.bounce {
  animation: bounce 1s infinite;
}

/* 渐入动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

/* 旋转动画 */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: rotate 2s linear infinite;
}

/* 缩放动画 */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.scaleIn {
  animation: scaleIn 0.5s ease-out;
}

/* 波纹效果 */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* 按钮相对定位以支持波纹效果 */
.btn a, .inline-flex {
  position: relative;
  overflow: hidden;
}

/* 加载动画 */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* 响应式优化 */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .wow {
    transform: translateY(20px);
  }
  
  /* Banner移动端优化 */
  .banner .content {
    padding: 0 1rem;
  }
  
  .banner .toDownload {
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 0.875rem;
  }
  
  .banner .toDownload img {
    width: 16px;
  }
  
  .banner .ban {
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
  }
  
  .banner .slogo {
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .banner .slogo .item {
    margin: 0.25rem;
    flex: 0 0 auto;
    text-align: center;
  }
  
  .banner .slogo p {
    font-size: 0.75rem !important;
    margin-top: 0.25rem;
  }
}

/* 无障碍访问优化 */
@media (prefers-reduced-motion: reduce) {
  .wow,
  .transition-all,
  .btn a,
  .inline-flex,
  .group,
  .slogo .item img,
  #theme-toggle,
  #navbarCollapse,
  .back-to-top {
    transition: none;
    animation: none;
  }
  
  .pulse,
  .bounce,
  .fadeInUp,
  .rotate,
  .scaleIn,
  .animate-spin {
    animation: none;
  }
}
@media (min-width: 540px) {
  .sm\:-mx-4 {
      margin-left:-1rem;
      margin-right: -1rem
  }

  .sm\:mb-8 {
      margin-bottom: 2rem
  }

  .sm\:mr-6 {
      margin-right: 1.5rem
  }

  .sm\:flex {
      display: flex
  }

  .sm\:h-8 {
      height: 2rem
  }

  .sm\:h-\[160px\] {
      height: 160px
  }

  .sm\:h-\[220px\] {
      height: 220px
  }

  .sm\:h-\[400px\] {
      height: 400px
  }

  .sm\:h-\[60px\] {
      height: 60px
  }

  .sm\:w-1\/2 {
      width: 50%
  }

  .sm\:w-\[41px\] {
      width: 41px
  }

  .sm\:max-w-\[60px\] {
      max-width: 60px
  }

  .sm\:gap-8 {
      gap: 2rem
  }

  .sm\:p-10 {
      padding: 2.5rem
  }

  .sm\:p-12 {
      padding: 3rem
  }

  .sm\:p-5 {
      padding: 1.25rem
  }

  .sm\:p-8 {
      padding: 2rem
  }

  .sm\:px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem
  }

  .sm\:px-12 {
      padding-left: 3rem;
      padding-right: 3rem
  }

  .sm\:px-4 {
      padding-left: 1rem;
      padding-right: 1rem
  }

  .sm\:px-\[30px\] {
      padding-left: 30px;
      padding-right: 30px
  }

  .sm\:py-12 {
      padding-top: 3rem;
      padding-bottom: 3rem
  }

  .sm\:text-2xl {
      font-size: 1.5rem;
      line-height: 2rem
  }

  .sm\:text-4xl {
      font-size: 2.25rem;
      line-height: 2.5rem
  }

  .sm\:text-\[28px\] {
      font-size: 28px
  }

  .sm\:text-\[40px\] {
      font-size: 40px
  }

  .sm\:text-lg {
      font-size: 1.125rem;
      line-height: 1.75rem
  }

  .sm\:leading-\[1\.2\] {
      line-height: 1.2
  }

  .sm\:leading-\[1\.44\] {
      line-height: 1.44
  }

  .sm\:leading-relaxed {
      line-height: 1.625
  }

  .sm\:leading-snug {
      line-height: 1.375
  }
}

@media (min-width: 720px) {
  .md\:mr-10 {
      margin-right:2.5rem
  }

  .md\:mr-4 {
      margin-right: 1rem
  }

  .md\:mr-6 {
      margin-right: 1.5rem
  }

  .md\:h-\[346px\] {
      height: 346px
  }

  .md\:h-\[400px\] {
      height: 400px
  }

  .md\:h-\[540px\] {
      height: 540px
  }

  .md\:w-1\/2 {
      width: 50%
  }

  .md\:w-1\/3 {
      width: 33.333333%
  }

  .md\:w-2\/3 {
      width: 66.666667%
  }

  .md\:w-5\/12 {
      width: 41.666667%
  }

  .md\:w-7\/12 {
      width: 58.333333%
  }

  .md\:flex-row {
      flex-direction: row
  }

  .md\:justify-start {
      justify-content: flex-start
  }

  .md\:justify-end {
      justify-content: flex-end
  }

  .md\:p-\[60px\] {
      padding: 60px
  }

  .md\:px-\[60px\] {
      padding-left: 60px;
      padding-right: 60px
  }

  .md\:py-\[120px\] {
      padding-top: 120px;
      padding-bottom: 120px
  }

  .md\:pt-\[130px\] {
      padding-top: 130px
  }

  .md\:text-\[28px\] {
      font-size: 28px
  }

  .md\:text-\[38px\] {
      font-size: 38px
  }

  .md\:text-\[40px\] {
      font-size: 40px
  }

  .md\:leading-\[1\.2\] {
      line-height: 1.2
  }

  .md\:leading-\[1\.42\] {
      line-height: 1.42
  }

  .md\:leading-\[1\.44\] {
      line-height: 1.44
  }
}

@media (min-width: 960px) {
  .lg\:visible {
      visibility:visible
  }

  .lg\:invisible {
      visibility: hidden
  }

  .lg\:static {
      position: static
  }

  .lg\:absolute {
      position: absolute
  }

  .lg\:top-\[110\%\] {
      top: 110%
  }

  .lg\:-mx-2 {
      margin-left: -.5rem;
      margin-right: -.5rem
  }

  .lg\:mb-0 {
      margin-bottom: 0
  }

  .lg\:mb-11 {
      margin-bottom: 2.75rem
  }

  .lg\:mb-4 {
      margin-bottom: 1rem
  }

  .lg\:mb-\[150px\] {
      margin-bottom: 150px
  }

  .lg\:mb-\[70px\] {
      margin-bottom: 70px
  }

  .lg\:ml-8 {
      margin-left: 2rem
  }

  .lg\:mr-2 {
      margin-right: .5rem
  }

  .lg\:mt-20 {
      margin-top: 5rem
  }

  .lg\:mt-\[60px\] {
      margin-top: 60px
  }

  .lg\:block {
      display: block
  }

  .lg\:flex {
      display: flex
  }

  .lg\:inline-flex {
      display: inline-flex
  }

  .lg\:hidden {
      display: none
  }

  .lg\:h-\[225px\] {
      height: 225px
  }

  .lg\:h-\[400px\] {
      height: 400px
  }

  .lg\:h-\[45\%\] {
      height: 45%
  }

  .lg\:h-\[500px\] {
      height: 500px
  }

  .lg\:w-1\/2 {
      width: 50%
  }

  .lg\:w-1\/3 {
      width: 33.333333%
  }

  .lg\:w-1\/4 {
      width: 25%
  }

  .lg\:w-2\/12 {
      width: 16.666667%
  }

  .lg\:w-3\/12 {
      width: 25%
  }

  .lg\:w-4\/12 {
      width: 33.333333%
  }

  .lg\:w-5\/12 {
      width: 41.666667%
  }

  .lg\:w-6\/12 {
      width: 50%
  }

  .lg\:w-7\/12 {
      width: 58.333333%
  }

  .lg\:w-8\/12 {
      width: 66.666667%
  }

  .lg\:w-auto {
      width: auto
  }

  .lg\:w-full {
      width: 100%
  }

  .lg\:gap-x-8 {
      -moz-column-gap: 2rem;
      column-gap: 2rem
  }

  .lg\:border-none {
      border-style: none
  }

  .lg\:\!bg-transparent {
      background-color: transparent!important
  }

  .lg\:p-0 {
      padding: 0
  }

  .lg\:p-10 {
      padding: 2.5rem
  }

  .lg\:px-0 {
      padding-left: 0;
      padding-right: 0
  }

  .lg\:px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem
  }

  .lg\:px-2 {
      padding-left: .5rem;
      padding-right: .5rem
  }

  .lg\:px-6 {
      padding-left: 1.5rem;
      padding-right: 1.5rem
  }

  .lg\:px-8 {
      padding-left: 2rem;
      padding-right: 2rem
  }

  .lg\:py-10 {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem
  }

  .lg\:py-12 {
      padding-top: 3rem;
      padding-bottom: 3rem
  }

  .lg\:py-20 {
      padding-top: 5rem;
      padding-bottom: 5rem
  }

  .lg\:py-6 {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem
  }

  .lg\:py-\[110px\] {
      padding-top: 110px;
      padding-bottom: 110px
  }

  .lg\:py-\[115px\] {
      padding-top: 115px;
      padding-bottom: 115px
  }

  .lg\:py-\[90px\] {
      padding-top: 90px;
      padding-bottom: 90px
  }

  .lg\:pb-20 {
      padding-bottom: 5rem
  }

  .lg\:pb-\[50px\] {
      padding-bottom: 50px
  }

  .lg\:pb-\[70px\] {
      padding-bottom: 70px
  }

  .lg\:pb-\[90px\] {
      padding-bottom: 90px
  }

  .lg\:pr-0 {
      padding-right: 0
  }

  .lg\:pt-\[100px\] {
      padding-top: 100px
  }

  .lg\:pt-\[120px\] {
      padding-top: 120px
  }

  .lg\:pt-\[160px\] {
      padding-top: 160px
  }

  .lg\:text-5xl {
      font-size: 3rem;
      line-height: 1
  }

  .lg\:text-base {
      font-size: 1rem;
      line-height: 1.5rem
  }

  .lg\:text-xl {
      font-size: 1.25rem;
      line-height: 1.75rem
  }

  .lg\:leading-\[1\.2\] {
      line-height: 1.2
  }

  .lg\:text-white {
      --tw-text-opacity: 1;
      color: rgb(255 255 255/var(--tw-text-opacity,1))
  }

  .lg\:opacity-0 {
      opacity: 0
  }

  .lg\:opacity-100 {
      opacity: 1
  }

  .lg\:shadow-lg {
      --tw-shadow: 0 10px 15px -3px rgb(0 0 0/0.1),0 4px 6px -4px rgb(0 0 0/0.1);
      --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);
      box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)
  }

  .group:hover .lg\:group-hover\:visible {
      visibility: visible
  }

  .group:hover .lg\:group-hover\:top-full {
      top: 100%
  }

  .group:hover .lg\:group-hover\:rotate-180 {
      --tw-rotate: 180deg;
      transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .lg\:dark\:bg-transparent:is(.dark *) {
      background-color: transparent
  }
}

@media (min-width: 1140px) {
  .xl\:-mx-4 {
      margin-left:-1rem;
      margin-right: -1rem
  }

  .xl\:mb-8 {
      margin-bottom: 2rem
  }

  .xl\:ml-14 {
      margin-left: 3.5rem
  }

  .xl\:mr-4 {
      margin-right: 1rem
  }

  .xl\:h-1\/2 {
      height: 50%
  }

  .xl\:h-\[310px\] {
      height: 310px
  }

  .xl\:h-\[500px\] {
      height: 500px
  }

  .xl\:w-1\/3 {
      width: 33.333333%
  }

  .xl\:w-1\/4 {
      width: 25%
  }

  .xl\:w-2\/12 {
      width: 16.666667%
  }

  .xl\:w-3\/12 {
      width: 25%
  }

  .xl\:w-4\/12 {
      width: 33.333333%
  }

  .xl\:w-5\/12 {
      width: 41.666667%
  }

  .xl\:w-8\/12 {
      width: 66.666667%
  }

  .xl\:gap-11 {
      gap: 2.75rem
  }

  .xl\:gap-x-12 {
      -moz-column-gap: 3rem;
      column-gap: 3rem
  }

  .xl\:p-14 {
      padding: 3.5rem
  }

  .xl\:px-4 {
      padding-left: 1rem;
      padding-right: 1rem
  }

  .xl\:pr-10 {
      padding-right: 2.5rem
  }

  .xl\:text-2xl {
      font-size: 1.5rem;
      line-height: 2rem
  }

  .xl\:text-\[42px\] {
      font-size: 42px
  }

  .xl\:text-lg {
      font-size: 1.125rem;
      line-height: 1.75rem
  }

  .xl\:leading-\[1\.21\] {
      line-height: 1.21
  }
}

.shadow-testimonial {
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.08);
}
.layout {
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.3);
  z-index: 4;
  position: fixed;
  top: 64px;
  left: 0;
}
.hambuger {
  display: npne;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
}
.hambuger span {
  height: 2px;
  width: 100%;
  background-color: #3c4858;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.hambuger span:last-child {
  margin-bottom: 0;
}
.hambuger.open span:nth-child(2) {
  display: none;
}
.hambuger.open span:nth-child(1) {
  transform: rotate(-45deg);
  margin-bottom: -1px;
}
.hambuger.open span:nth-child(3) {
  transform: rotate(45deg);
}
.hambuger.open + .nav {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 5;
  box-shadow: 0 10px 10px rgba(0,0,0,.1);
  padding-bottom: 30px;
  text-align: center;
}
.bg-dark {
  background-color: rgb(17 25 40);
}
#navbarToggler.open span:nth-child(1) {
  transform: rotate(-45deg) translateY(5px);
  margin-bottom: -1px;
}
#navbarToggler.open span:nth-child(3) {
  transform: rotate(45deg) translateY(-5px);
}
#navbarToggler.open span:nth-child(2) {
  display: none;
}