

body {
font-family: "微软雅黑", "Heiti SC", "Heiti TC", "SimHei", sans-serif;
color: #444444;
}

a {
  color: var(--link-color);
  text-decoration: none;
}
:root{
    --link-color: rgb(31,57,91);
}
a:hover {
  color: rgb(31,57,91);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "微软雅黑", "Heiti SC", "Heiti TC", "SimHei", sans-serif;
}

/*-返回顶部按钮-*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--link-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff6a40;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.updown {
    -webkit-animation: action 4s infinite alternate;
    animation: action 4s infinite alternate;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--link-color);
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  padding: 20px 0;
  background: hsla(0,0%,100%,.1);
  transition: all 0.5s;

}
#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit; /* 可选，如果需要继承背景色 */
  background-color: rgba(255, 255, 255, 0.5);
  /*backdrop-filter: blur(3px); */
  /* 应用滤镜效果 */
  z-index: -1; 
  /* 确保伪元素在内容之下 */

}
#header.header-scrolled::before ,
#header.header-inner-pages::before  {
background-color: rgba(255, 255, 255, 0.5);
    
}
#header.header-scrolled,
#header.header-inner-pages {
  /*background: rgba(21, 34, 43, 0.85);*/
  padding: 15px 0;
  background: hsla(0,0%,100%,.1);
}

#header .logo {
    /*全部大写*/
text-transform: uppercase;
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}

#header .logo a {
 color: var(--link-color);

}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 8px 36px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
text-transform: capitalize;
font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--link-color);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar > ul > li.active > a::before,
.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar>ul li.active a,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--link-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: 2px solid #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #fd3800;
  border-color: var(--link-color);
}

.navbar>ul>li>.getstarted:before {
  visibility: hidden;
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
text-transform: capitalize;
  color: #15222b;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--link-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x{
    color: #fff;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 7, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 18px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile a:focus,
.navbar-mobile a:active,
.navbar-mobile .active,
.navbar-mobile li:hover>a,
.navbar-mobile li:focus>a,
.navbar-mobile li:active>a
{
  color: var(--link-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown a i {
      border-radius: 50%;
  background: #00000014;
  padding: 6px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 30px 10px 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;

}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--link-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*搜索*/
    .search-box {
      position: fixed;
      width: 100%;
      height: 100px;
      top: 80px;
      left: 0;
      display: none;
      background: #ffffff26;
      backdrop-filter: blur(3px);
    }
.topbtn > a > i {
	font-size: 24px;
}
    .inputbox,
    .btn-search {
      padding: 15px;
      border: none;
      box-shadow: 2px 4px 12px #00000014;
    }

    .inputbox {
      border-radius: 10px 0 0 10px;
    }

    .btn-search {
      border-radius: 0 10px 10px 0;
      padding: 15px 22px;
      background: var(--link-color);
  color: #fff;
    }
    .butn-hov {
	text-align: center;
	color: var(--bs-body-bg);
	font-size: 28px;
text-transform: capitalize;
font-family: "微软雅黑", "Heiti SC", "Heiti TC", "SimHei", sans-serif;
}
    input:focus{
        outline: none;
    }
    @media(max-width:768px) {
      .topbtn {
        display: none;
      }
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 100vh;*/
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(13, 20, 26, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
text-transform: capitalize;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

.btn-get-started {
font-family: "微软雅黑", "Heiti SC", "Heiti TC", "SimHei", sans-serif;
text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--link-color);
  border: 2px solid var(--link-color);
}

.btn-get-started:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}
#hero .banner_img {
	overflow: hidden;
	border-radius: 0 0 24px 24px;
}
#hero .btn-watch-video:hover i {
  color: var(--link-color);
}
   .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      /*background: #fff;*/
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
#hero {
    margin-top: 72px;
}
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f0f4f8;
}

.section-title {
  padding-bottom: 40px;
 text-align: center;
}

.section-title h2 {

    padding: 0;
  margin-bottom: 5px;
  font-size: 36px;
  font-weight: 700;
text-transform: capitalize;
font-family: "微软雅黑", "Heiti SC", "Heiti TC", "SimHei", sans-serif;
  color: #263d4d;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: block;
  background: #ff8664;
    position: absolute;
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
  margin: 5px 0;
}

.section-title p {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1em;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
text-transform: capitalize;
  color: #333;
font-family: "微软雅黑", "Heiti SC", "Heiti TC", "SimHei", sans-serif;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 24px;
}

.about .content {
  font-size: 15px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #263d4d;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about .content ul i {
  font-size: 24px;
  color: var(--link-color);
  position: absolute;
  left: 0;
  top: -2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--link-color) 50%, rgba(255, 74, 23, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 74, 23, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid var(--link-color);
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------*/
.about-boxes {
  position: relative;
}

.about-boxes::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

.about-boxes .container,
.about-boxes .container-fluid {
  position: relative;
  z-index: 10;
}

.about-boxes .card {
  border-radius: 4px;
  border: 0;
  box-shadow: 2px 4px 12px #00000014;
  margin-bottom: 30px;
  overflow: hidden;
}
.about-boxes .card img{
    transition: all .5s;
}
.about-boxes .card:hover img{
      transform: scale(1.05);
}

.about-boxes .card-icon {
  text-align: center;
  margin-top: -32px;
}

/*.about-boxes .card-icon i {*/
/*  font-size: 32px;*/
/*  color: #fff;*/
/*  width: 64px;*/
/*  height: 64px;*/
/*  padding-top: 5px;*/
/*  text-align: center;*/
/*  background-color: var(--link-color);*/
/*  border-radius: 4px;*/
/*  text-align: center;*/
/*  border: 4px solid #fff;*/
/*  transition: 0.3s;*/
/*  display: inline-block;*/
/*}*/

.about-boxes .card-body {
  padding-top: 12px;
}

.about-boxes .card-title {
  font-weight: 700;
  text-align: center;
}

.about-boxes .card-title a {
  color: #15222b;
}

.about-boxes .card-title a:hover {
  color: var(--link-color);
}

.about-boxes .card-text {
  color: #5e5e5e;
}

.about-boxes .card:hover .card-icon i {
  background: #fff;
  color: var(--link-color);
}

@media (max-width: 1024px) {
  .about-boxes {
    background-attachment: scroll;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f0f4f8;
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #b5ccdb;
  padding: 15px;
  transition: 0.3s;
  color: #15222b;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--link-color);
}

.features .nav-link.active {
  background: var(--link-color);
  color: #fff;
  border-color: var(--link-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--link-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 4px;
  background: #fff;
}

.services .icon-box i {
  float: left;
  color: #333;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #365870;
  transition: 0.3s;
}

.services .icon-box .icon-box:hover h4 a {
  color: var(--link-color);
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover h4 a {
  color: var(--link-color);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(13, 20, 26, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #a1bdd1;
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--link-color);
  opacity: 1;
}

/*--------------------------------------------------------------
# products
--------------------------------------------------------------*/

#products{
    background: aliceblue;
}
/*列表*/
.products #products-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.products #products-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #e5edf3;
  border-radius: 4px;
}

.products #products-flters li:hover,
.products #products-flters li.filter-active {
  color: #fff;
  background: var(--link-color);
}

.products #products-flters li:last-child {
  margin-right: 0;
}


/*内容区*/
.products .products-item {
    position: relative;
}

.products .products-item .products-list{
        position: relative;
        background: #fff;
        margin-bottom: 24px;
        -webkit-border-radius: 18px;
        -moz-border-radius: 18px;
        border-radius: 18px;
        box-shadow: 2px 4px 12px #00000014;
        -webkit-transition: all .95s cubic-bezier(.2,1,.2,1),-webkit-transform .95s cubic-bezier(.2,1,.2,1);
}


.products .products-item img {
  position: relative;
  border-radius: 18px 24px 0 0;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.products .products-item .products-info {
    position: relative;
  transition: all ease-in-out 0.3s;
  color: var(--link-color);
  padding: 12px;
}

.products .products-item .products-info h4 {
  font-size: 18px;
  font-weight: 600;
}

.products .products-item .products-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.products .products-item .products-info .preview-link,
.products .products-item .products-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  transition: ease-in-out 0.3s;
}

.products .products-item .products-info .preview-link:hover,
.products .products-item .products-info .details-link:hover {
  color: #ffc1b0;
}

.products .products-item .products-info .details-link {
  right: 15px;
}

.products .products-item:hover img {
  top: 0px;
}

.products .products-item:hover .products-info {
  /*opacity: 1;*/
  /*bottom: 0;*/
}

/*--------------------------------------------------------------
# products Details
--------------------------------------------------------------*/
.products-details {
  padding-top: 40px;
}

.products-details .products-details-slider img {
  width: 100%;
}

.products-details .products-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.products-details .products-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--link-color);
}

.products-details .products-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--link-color);
}

.products-details .products-info {
  padding: 30px;
  box-shadow: 2px 4px 12px #00000014;
}

.products-details .products-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.products-details .products-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.products-details .products-info ul li+li {
  margin-top: 10px;
}

.products-details .products-description {
  padding-top: 30px;
}

.products-details .products-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.products-details .products-description p {
  padding: 0;
}


        #shufytheme_banner .section_shufytheme {
            background: #1c1c1c;
            position: relative
        }

        #shufytheme_banner .section_shufytheme .bg-shape {
            position: absolute;
            left: 0;
            bottom: 0;
            pointer-events: none;
            max-width: 100%;
            z-index: 2
        }

        #shufytheme_banner .section_shufytheme .shufytheme__mockup {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 100%;
            width: auto
        }

        #shufytheme_banner .section_shufytheme:before {
            content: '';
            background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, transparent 100%);
            background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, transparent 100%);
            background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, transparent 100%);
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 80%;
            z-index: 1
        }




/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  position: relative;
}

.team .container {
  position: relative;
  z-index: 10;
}

.team .member {
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  /*position: absolute;*/
  /*bottom: -50px;*/
  /*left: 20px;*/
  /*right: 20px;*/
  background: #fff;
  padding: 20px 15px;
  color: #15222b;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #15222b;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #7fa5c0;
  bottom: 0;
  left: 0;
}


.team .member .social {
  /*position: absolute;*/
  /*right: 15px;*/
  /*bottom: 15px;*/
}

.team .member .social a {
	transition: color 0.3s;
	color: #477392;
	display: block;
	padding: 10px;
	overflow-x: scroll;
}
.team .member .social a span{
      display: inline-block;
  font-size: 13px;
    transition: all .5s;
}

.team .member .social a:hover {
  color: var(--link-color);
}
.team .member .social a:hover span{
    margin-left: 1em;
}


.team .member .social i {
	font-size: 18px;
	margin: 0 20px 0 0;
	background: var(--link-color);
	padding: 5px 8px;
	color: #fff;
	border-radius: 4px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow:2px 4px 12px #00000014;
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--link-color);
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 2px 4px 12px #00000014;
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--link-color);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--link-color);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--link-color);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb, .breadcrumb a{
    color:white;
}

.breadcrumbs {
  padding: 15px 0;
  background: #f0f4f8;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #263d4d;
  content: ">";
}

@media (max-width: 992px) {
  .breadcrumbs {
    /*margin-top: 52px;*/
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: var(--link-color);
  font-size: 14px;
    box-shadow: 2px 4px 12px #00000014;
}

#footer .footer-top {

  /*border-top:1px solid #15222b;*/
  border-bottom: 1px solid #1d303c;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
font-family: "微软雅黑", "Heiti SC", "Heiti TC", "SimHei", sans-serif;
  color: var(--link-color);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--link-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid;
}

#footer .footer-top .social-links a:hover {
  background: var(--link-color);
  color: #f1f1f1;
  text-decoration: none;
}

#footer .footer-top h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--link-color);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--link-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--link-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--link-color);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  position: relative;
  border-radius: 4px;
  border: 1px solid #1f395b;
  overflow: hidden;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  padding: 15px;
  border: 0;
  width: calc(100% - 110px);
  /*box-shadow: 0 0 3px #1f395b;*/
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  color: #fff;
  font-size: 16px;
  padding: 0 20px;
  background: var(--link-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: var(--link-color);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}
#footer .mobilefooternav a {
	/*color: #fff;*/
	padding: 1em;
}
.appdownload{
    display: flex;
}
.appdownload a {
	width: 200px;
	height: auto;
	display: block;
	margin: 12px 12px 0 0;
}
.appdownload a img{
    width: 100%;
    height:100%;
}




    




/*sider*/

.search.flex-search:before {
font-family: "微软雅黑", "Heiti SC", "Heiti TC", "SimHei", sans-serif;
content: "\f002";
font-weight: 900;
position: relative;
z-index: 1;
margin-bottom: -42px;
float: right;
right: 12px;
line-height: 2.2;
padding-left: 3px;
text-align: center;
vertical-align: middle;
opacity: 0.9;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.search.flex-search:hover:before,
.search.flex-search:focus:before,
.search.flex-search:active:before {
opacity: 0.2;
content: "\f00e";
font-weight: 900;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}

.list-page {
background: #f4f7fa;
position: relative;
}
.list-content-sider {
padding: 15px;
border-radius: 4px;
background: #fff;
box-shadow:2px 4px 12px #00000014;
}
.list-content-title {
box-shadow: inset 0 -1px 0 #ddd;
display: inline-table;
    margin: 0 0 20px;
    /*font-size: 140%;*/
    line-height: 1.2;
    width: auto;
    padding-right: 30px;
    box-shadow: inset 0 -1px 0 #ddd;
    display: table;
}

.list-content-title::after {
clear: both;
display: block;
float: left;
content: "";
position: relative;
height: 2px;
width: 70%;
margin: 10px 30% 0 0;
border-radius: 2px;
padding: 0;
background: var(--link-color);
}
.list-menu{
    position: relative;
    
}
.list-menu a{
position: relative;
display: block;
border-bottom: 1px solid #e8e8e8;
-webkit-transition: 300ms;
transition: 300ms;
display: block;
/*padding: 5px 0;*/
line-height: 3em;
}
.list-menu a::after {
	clear: both;
	display: block;
	content: "";
	position: relative;
	height: 2px;
	width: 0%;
	border-radius: 2px;
	padding: 0;
	background: var(--link-color);
	transition: all .5s;
}
.list-menu a.active:after,
.list-menu a:hover:after{
    	width: 100%;
}
.list-menu a span{
display: inline-block;
  position: absolute;
  top: .5em;
  right: 0;
  width: 15%;
  line-height: 2em;
  cursor: pointer;
  font-size: 16px;
}
.page_tags a
{
display: inline-block;
padding: 4px 10px;
font-size: 85%;
color: var(--link-color);
border: 1px solid #ccc;
border-radius: 4px;
margin: 3px 0 3px 2px;
}
.page_tags a span
{
display: inline-block;
min-width: 8px;
margin: 0 -1px 0 3px;
padding: 3px 7px;
font-size: 11px;
font-weight: 700;
line-height: 1.3;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
background-color: rgba(0, 0, 0, 0.12);
border-radius: 10px;
}


.section-header-line h1 {
	font-weight: bold;
	margin-bottom: 1.5em;
}
.more-items {
    position: relative;
	border-radius: 18px;
	background: #fff;
	box-shadow: 2px 4px 12px #00000014;
	-webkit-transition: all .95s cubic-bezier(.2,1,.2,1),-webkit-transform .95s cubic-bezier(.2,1,.2,1);
	overflow: hidden;
}
.more-items a{
    display: block;
}
.more-items a ._img{
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}
.more-items a ._text{
    
}    
    .picture-card {
	position: relative;
	display: block;
	border-radius: 18px;
	background: #fafafa;
	margin: 12px 0;
	transition: all .5s;
}
    .picture-card:hover{
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        box-shadow: 2px 4px 12px #00000014;
    }

    .picture-card .picture-card-txt{
    margin: 0 auto;
  text-align: center;
  padding: 48px 5px;    
}
    .picture-card .picture-card-txt a{
        color: var(--link-color);
    }
    
    .picture-card .picture-card-txt a:hover{
            text-decoration: underline;
    }
    
.picture-card-img  {
	overflow: hidden;
	border-radius: 0 0 18px 18px;
}
.picture-card-img img {
	width: 100%;
}
   .min-banner-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
   }
   .min-banner-svg svg{
 
  background: border-box;
  display: block;
  width: 200%;
  max-width: 280%;
  height: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  transform: rotateX(180deg) translateX(-50%);
   } 
    

    
        .product-imgbox-swiper {
      border-radius: 24px;
      box-shadow: 2px 4px 12px #00000014;
      margin: 12px auto;
      position: relative;
      padding: 12px;
      background-color: white;
     position: relative;
    }
    .twoimghover ._img{
    position: relative;
    overflow: visible;
    width: 100%;
     aspect-ratio: 1 / 1; 
    }
        .products-list.twoimghover ._img img{
            height: 100%;
            width: 100%;
        }
    
    .twoimghover ._img .mainimg{
    position: relative;
    transition: all 0.3s linear;
    opacity: 1;
    height: auto;
  width: 100%;

}
.twoimghover ._img .viceimg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: all 0.3s linear;
    opacity: 0;
     }


.twoimghover ._img:hover .viceimg{
        opacity: 1;
}
.twoimghover ._img:hover .mainimg{
        opacity: 0;
}


    .product-imgbox-txt {
      /*position: absolute;*/
      top: 1em;
      margin: 0 auto;
      text-align: center;
      width: 100%;
      display: block;
    }

    .swiper-link-button {
      background: #d2d2d7a3;
      border-radius: 50%;
      transition: background .1s linear, color .1s linear, opacity .1s linear;
      width: 52px;
      height: 52px;
      color: #616163;
    }

    .swiper-link-button::after {
      font-size: 30px;
      font-weight: 900;
    }

    .swiper-link-button:hover {
      background: #dedee3b2;
      color: #000000a3;
      text-decoration: none;
    }
     .title-title{
         font-size: 28px;
     }

    .title-title>span{
        font-weight: bold;
        color: var(--bs-gray-900);
    }
    
   /* 默认隐藏 .footer-navbar-chevron 在桌面端 */
.footer-navbar-chevron {
  display: none;
}
    .footer-navbar-ul {
      display: block;
    }
.show-main-nav {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.show-main-nav a{
    position: relative;
    display: block;
    width: 320px;
    border: 1px solid var(--link-color);
    overflow: hidden;
    border-radius: 12px;
    z-index: 9;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 6px 12px;
    transition: all 1s;
}
.show-main-nav a::after{
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 1s;
    background: var(--link-color);
    z-index: -1;
}
.show-main-nav a:hover{
    color: #fff;
}
.show-main-nav a:hover::after{
    width: 100%;
}

.returnlist {
	display: flex;
	justify-content: center;
	margin: 12px 0;
}
 .section-header-line {
        position: relative;
    }
    
    .section-header-line:hover::after {
        width: 240px;
    }
    
    .section-header-line:after {
        content: "";
        width: 120px;
        height: 2px;
        display: block;
        background: #ff8664;
        position: absolute;
        top: 50px;
        left: 0;
        margin: 5px 0;
        transition: all .5s;
    }
    
    .count-box {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        width: 100%;
        background: aliceblue;
        margin-bottom: 24px;
        border-radius: 24px;
        padding: 12px;
        transition: all .5s;
    }
    
    .count-box i {
        font-size: 60px;
        color: var(--link-color);
        border-radius: 24px;
        width: 100px;
        height: 100px;
        text-align: center;
        transition: all .5s;
    }
    
    .count-box:hover {
        background: var(--link-color);
        color: #fff;
        transform: translateY(-10px);
    }
    .count-box:hover i {
        color: #fff;
    }

.article-item{
    border-radius: 4px;
  border: 0 
  box-shadow: 2px 4px 12px #00000014;
  margin-bottom: 30px;
  overflow: hidden;
  background: #fff;
  padding: 1em;
}
.article-item .acticle-txt h3{
    font-size: 16px;
    position: relative;
}
.article-item .acticle-txt h3:after{
    transition: all .5s;
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--link-color);
}
.article-item .acticle-txt p{
    font-size: 12px;
}

.ellipsis2{
    display: -webkit-box;  
    -webkit-box-orient: vertical;  
    -webkit-line-clamp: 2; 
    overflow: hidden;  
    text-overflow: ellipsis; 
    line-height: 1.5; 
}
.acticle-time i{
    margin-right: 6px;
    
}
.article-item ._img{
    overflow: hidden;
    border-radius: 24px;
}
.article-item ._img img{
   transition: all 1s;
}
.article-item:hover ._img img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
}
.article-item:hover  .acticle-txt h3:after{
    width: 100%;
}


.show-content{
    position: relative;
    overflow: hidden;
}

.show-content img{
    font-size: 0px;
    width: 95%;
    text-align: center;
    margin: 0 auto;
}

#pages {
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 30px 0;
}
#pages li.active span,
#pages li.disabled span,
#pages li:hover span,
#pages li:hover a
{
    color: #fff;
    background: var(--link-color);
}
#pages li a,
#pages li span
{
  padding: 12px;
  border: 1px solid #333;
  border-radius: 12px;
  margin: 6px;
}


    .autoplay-progress {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--swiper-theme-color);
    }

    .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: var(--swiper-theme-color);
      fill: none;
      stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg);
    }

    .develop-section {
      padding-bottom: 50px;
      position: relative;
      background: url(../images/productBase-features-bag.jpg) no-repeat;
      background-size: cover
    }

    .develop-title {
      padding: 50px 10px 30px;
      font-weight: normal;
      font-size: 36px;
      line-height: 46px;
      color: #252b3a;
      text-align: center;
      color: #ffffff
    }

    .container {
      max-width: 1200px;
      padding-left: 10px;
      padding-right: 10px;
      margin-left: auto;
      margin-right: auto;
      position: relative
    }


    .develop-features .develop-body {
      position: relative;
      height: 380px;
    }

    .develop-body .swiper-slide {
      background-color: transparent;
    }

    .develop-features .develop-body:after {
      content: "";
      width: 100%;
      height: 3px;
      background: url(../images/productBase-features-model.png) no-repeat;
      background-size: 100% auto;
      background-position: center;
      position: absolute;
      top: 122px;
      left: 0;
      z-index: 0
    }


    .features-item {
      position: relative;
    }

    .swiper-wrapper.features-item>* {
      text-align: center
    }

    .features-item h3 {
      font-size: 16px;
      line-height: 28px;
      margin:15px 0 50px;
      color: #ffffff;
      opacity: 0.7;
      transition: all 0.1s
    }

    .features-item i {
      position: absolute;
      width: 75%;
      height: 33px;
      background: url(../images/productBase-features-timeline.png) no-repeat;
      background-size: contain;
      background-position: right center;
      left: -25%;
      margin-left: 10px;
      top: 40px;
      z-index: 3
    }

    .features-item .features-info {
      display: block;
      margin: 0 auto;
      padding: 12px;
      transition: all 0.3s;
      border-radius: 2px
    }

    .features-item .features-info .features-info-i {
      font-size: 14px;
      color: #A0A2A8;
      line-height: 22px;
      margin-bottom: 10px
    }

    .features-item .features-info .features-info-s {
      font-size: 16px;
      color: #FFFFFF;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      height: 7.5em;
      line-height: 1.5em;


    }

    .features-item.dark i {
      background: url(../images/productBase-features-timeline-dark.png) no-repeat;
      background-size: contain;
      background-position: right center
    }

    /*鼠标悬浮效果*/
    .features-item:hover h3 {
      font-size: 22px;
      line-height: 28px;
      opacity: 0.9
    }

    .features-item:hover i {
      width: 75%;
      margin-left: 13px;
      background: url(../images/productBase-features-timeline-hover.png) no-repeat;
      background-size: contain;
      background-position: right center
    }

    .features-item:hover a {
      background: url(../images/productBase-features-info.png) no-repeat;
      background-size: 100% 100%
    }

    /*左右按钮*/
    .develop-features .swiper-button-prev {
      width: 30px;
      height: 40%;
      left: 0px;
      top: 30%;
      background: none;
    }


    .develop-features .swiper-button-next:after,
    .develop-features .swiper-button-prev:after {

      display: inline-block;
      position: absolute;
      width: 15px;
      height: 30px;
      top: 12%;

    }

    .develop-features .swiper-button-prev:after {
      content: "<";
      margin-top: -15px;
      left: 50%;
      margin-left: -7px
    }

    .develop-features .swiper-button-next {
      width: 30px;
      height: 40%;
      right: 0px;
      top: 30%;
      background: none
    }

    .develop-features .swiper-button-next:after {
      content: ">";
      margin-top: -15px;
      left: 50%;
      margin-left: -7px
    }














/* 在手机端展示 .footer-navbar-chevron */
@media only screen and (max-width: 768px) {
  .footer-navbar-chevron {
    display: inline-block;
  }
  #footer .footer-top .footer-links{
      border-bottom: 1px solid #dedede;
  }
      /* 默认隐藏 .footer-navbar-ul 在移动端 */
    .footer-navbar-ul {
      display: none;
    }
    
    
    
    
    
    
    
} 
    
    
    
    
    
    
    
    
    