@font-face {
    font-family: 'iconfont';
    src: url('/font/iconfont.ttf?t=1747752105148') format('truetype');
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
.bg-e{
    background-color: #EEE;
    color: black;
}
a{
    color:#2f318b;
}

@media screen and (max-width: 768px) {
  .header-upper-bar{
    display: none !important;
  }
} 


  .navbar-brand {
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .navbar-brand img {
    max-height: 49px;
    width: auto;
  }



.swiper {
    width: 100%;
    height: 50vh;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: slideInFromLeft 1s ease-in-out;
  }
  
  .swiper-slide .carousel-caption {
    animation: slideInFromRight 1s ease-in-out;
  }
  .swiper-slide .container .row .mb-30
  {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }  
  @keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }


.about-box {
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-box h5 {
    transition: color 0.3s ease;
}

.about-box:hover h5 {
    color: #007bff;
}

.about-box p {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.about-box:hover p {
    opacity: 1;
}

.about-img img {
    opacity: 0.8;
    transition: opacity 0.3s ease; 
  }
  
  .about-img img:hover {
    opacity: 0.9; 
  }





  .p-img {
    transition: transform 0.3s ease; /* 添加平滑的过渡效果 */
  }
  
  .p-img:hover {
    transform: scale(1.1); /* 鼠标悬停时放大10% */
  }


.service-item {
    height: 100%;
    /* 确保所有service item高度一致 */
    display: flex;
    flex-direction: column;
}

.service-item-header {
    flex: 1;
    /* 让header部分自适应高度 */
}

.service-item-des {
    flex: 1;
    /* 让描述部分自适应高度 */
}

.service-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item-header {
    flex: 1;
    transition: color 0.3s ease;
}

.service-item:hover .service-item-header {
    color: #007bff;
}

.service-item-des {
    flex: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-item-des {
    opacity: 1;
}


.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}
.feature-list i {
  color: #2f318b;
  position: absolute;
  left: 0;
  top: 3px;
}