/* 添加二级菜单的隐藏样式 */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.border-r-light{
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
}
/* 鼠标滑过显示二级菜单 */
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu .dropdown-item:hover{
    font-weight: bold;
    background: linear-gradient(to bottom right, #c4e86b 0%, #00bcb4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-gradient{
    background-image: linear-gradient(to bottom right, #c4e86b 0%, #00bcb4 100%);
    border: none;
}
.gradient-text {
    background: linear-gradient(to bottom right, #c4e86b 0%, #00bcb4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
.height-2{
    height: 2rem;
}
  .bg-company{
    width: 100%;
    background: url(../images/banner.jpg) center center;
    background-size: cover;
}
.card-img{
    height: 180px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.card-img img{
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}
.card-img:hover img{
    transform: translate3d(0px, -8px, 0px) scale(1.1);
    -webkit-transform: translate3d(0px, -8px, 0px) scale(1.1);
    -moz-transform: translate3d(0px, -8px, 0px) scale(1.1);
    -o-transform: translate3d(0px, -8px, 0px) scale(1.1);
    -ms-transform: translate3d(0px, -8px, 0px) scale(1.1);
}
.text-indent{
    text-indent: 2rem;
}
.text-shadow-black{
    text-shadow: 0 0 10px #000;
}
.text-shadow-white{
    text-shadow: 2px 0px 2px #fff
}
.page-link{
    color: #00bcbc;
}
.page-link.active, .active > .page-link{
    border-color: #00bcbc;
    background: linear-gradient(to bottom right, #c4e86b 0%, #00bcb4 100%);
}
.page-link:focus{
    color: #00bcbc;
    box-shadow: none;
}
.carousel2{
    top: 26%;
}
.suspend{
    width: 50px;
    position: fixed;
    right: 0;
    bottom: 20%;
    display: none;
    z-index: 1;
}
#phone , #email{
    position: relative;
}
#phone div, #email div{
    position: absolute;
    right: 8px;
    line-height: 40px;
    height: 42px;
    white-space: nowrap;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    color: #fff;
    padding: 0 16px;
    z-index: -1;
    opacity: 0;
}
#phone:hover div, #email:hover div{
    opacity: 1;
    transition: all .5s ease-in-out .4s;
	transform:translateX(-40px);
	-webkit-transform:translateX(-40px);
}
.newsTab .btn{
    border-radius: 20px;
    border: 1px solid #00bcbc;
    padding: 6px 24px;
}
.newsTab .btn.active{
    background-image: linear-gradient(to bottom right, #c4e86b 0%, #00bcbc 100%);
    border: none;
    color: #fff;
}
.swiperNav .swiper-slide {
    text-align: center;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiperNav .swiper-slide a{
    color: #000;
    text-decoration: none;
    padding: 0 20px;
}
.swiperNav .swiper-slide.active{
    background-image: linear-gradient(to bottom right, #c4e86b 0%, #00bcbc 100%);
    border-radius: 20px;
}
.swiperNav .swiper-slide.active a{
    color: #fff;
}
.fixed-top2 {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    z-index: 2;
  }
  .margin-initial{
    margin: initial;
  }
.animation-delay-2 {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.animation-delay-5 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.animated {
    opacity: 0;
}
.lang{
    position: absolute;
    right: .5rem;
    top: .92rem;
}
@media (max-width: 768px) {
    .box-hide {
        display: none !important;
    }
    .carousel2{
        left: 2%;
        right: 2%;
        text-align: center !important;
    }
    .carousel2 img{
        width: 70%;
        height: auto !important;
    }
    .card-img{
        height: 100px;
    }
    .fs-sm-8{
        font-size: .85rem !important;
    }
    .ellipsis-multiline {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 3.0em; /* 高度为字体大小的两倍 */
        line-height: 1.5em; /* 行高 */
        height: 3.0em; /* 高度为行高的两倍 */
      }
      .navbar-expand-md .navbar-nav {
        margin-top: .8rem;
      }
}
@media (max-width: 576px) {
    .carousel2 img{
        width: 98%;
        height: auto !important;
    }
}