
*,::after,::before {box-sizing: border-box;}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}
body, html {
    font-size: 16px;
    font-family: "Microsoft YaHei", "微软雅黑","Poppins", sans-serif;
    font-weight: 400;
    color: #7C7885;
    margin: 0;
    padding: 0;
    cursor: pointer;
  }
  
  body {position: relative;}
  
  ::-moz-selection {
    background: #292f36;
    color: #fff;
  }
  
  ::selection {
    background: #292f36;
    color: #fff;
  }
  
  a,a:link, a:hover, a:active, a:visited {
    text-decoration: none;
  }
  
  ul, ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  textarea, textarea:focus, input, input:focus, button, button:focus {
    outline: none;
    resize: inherit;
  }
  
  .owl-carousel .owl-item img {
    display: block;
    width: auto;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family:"Microsoft YaHei", "微软雅黑", "Open Sans", sans-serif;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.4;
  }
  
  h1, .h1 {
    font-size: 40px;
  }
  
  h2, .h2 {
    font-size: 36px;
  }
  
  h3, .h3 {
    font-size: 2.9rem;
  }
  
  h4, .h4 {
    font-size: 2.5rem;
  }
  
  h5, .h5 {
    font-size: 1.467rem;
  }
  
  h6, .h6 {
    font-size: 16px;
  }
  
  p {
    line-height: 1.8;
    margin: 0;
  }

  .page-wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .section {
    padding: 5% 0;
  }

  .bg-color-grey{background: #F9F9FB;}

  .header {
    padding: 10px 0;
    -webkit-transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
    transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
  }
  
  .header .navbar-brand {
    padding: 0;
    color: #fff;
    margin-right: 0;
    text-transform: capitalize;
  }
  
  .header .navbar-brand img {
    display: none;
  }
    
  .header .navbar-brand .img-fluid {
    max-height: 85px;
  }
  .header .navbar-brand img.logo-transparent {
    display: block;
  }
  
  .header .nav-item .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 30px 18px !important;
    letter-spacing: 0.6px;
    display: block;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .header .nav-item .nav-link:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: #fff;
  }
  
  .header .nav-item .nav-link.active {
    opacity: 1;
  }
  
  .header .nav-item .nav-link:not(.active):after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    z-index: 7;
    content: '';
    position: absolute;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
    background: #fff;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  
  .header .nav-item .nav-link:not(.active):hover:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  
  .header .nav-item:hover > a {
    color: #fff;
    opacity: 1;
  }
  
  .header .nav-item.dropdown:hover .nav-link:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  
  .header .nav-item.dropdown .dropdown-menu {
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 15px 0 rgba(194, 188, 210, 0.2);
            box-shadow: 0 3px 15px 0 rgba(194, 188, 210, 0.2);
  }
  
  .header .nav-item.dropdown .dropdown-menu .dropdown-item {
    width: 100%;
    color: #000;
    font-size: 14px;
    display: block;
    font-weight: 400;
    padding: 12px 20px;
    position: relative;
    text-transform: capitalize;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  
  .header .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    color: #fff;
    background: #2891F9;
    border-bottom-color: #2891F9;
  }
  
  .header .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
    border-bottom: 0;
  }
  
  .header .nav-item.dropdown .dropdown-toggle {
    padding-right: 25px !important;
  }
  
  .header .nav-item.dropdown .dropdown-toggle:after {
    display: inline-block;
    margin-left: 0;
    vertical-align: initial;
    content: "";
    border: none;
  }
  
  .header .nav-item.dropdown .dropdown-toggle:before {
    content: "\f078";
    top: 50%;
    right: 0;
    position: absolute;
    font-weight: 700;
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  
  .header .nav-item.dropdown .dropdown-toggle[aria-expanded="true"]:before {
    top: 28px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  
  .header .navbar-toggler {
    outline: none;
    border: none;
    border-radius: 0;
    padding: 0 10px 0 0;
  }
  
  .header .navbar-toggler .togler-icon-inner span {
    height: 3px;
    margin: 5px;
    width: 30px;
    display: block;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .header .navbar-toggler .togler-icon-inner span:nth-child(2) {
    width: 20px !important;
    margin-left: auto;
  }
  
  .header .navbar-toggler .togler-icon-inner span:last-child {
    margin-bottom: 0;
  }
  
  .header .navbar-toggler[aria-expanded="true"] .togler-icon-inner span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
            transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .header .navbar-toggler[aria-expanded="true"] .togler-icon-inner span:nth-child(2) {
    opacity: 0;
  }
  
  .header .navbar-toggler[aria-expanded="true"] .togler-icon-inner span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-5px, -6px);
            transform: rotate(45deg) translate(-5px, -6px);
  }
  
  /* Header Shrink */
  .header-shrink {
    border-bottom: none;
    padding: 0;
    background: #fff;
    -webkit-box-shadow: 0 3px 15px 0 rgba(194, 188, 210, 0.2);
            box-shadow: 0 3px 15px 0 rgba(194, 188, 210, 0.2);
  }
  
  .header-shrink .nav-item:hover .nav-link {
    color: #2891F9;
  }
  
  .header-shrink .nav-item .default-nav-btn {
    border-color: #2891F9;
  }
  
  .header-shrink .nav-item .default-nav-btn span {
    z-index: 1;
    color: #2891F9;
  }
  
  .header-shrink .nav-item .default-nav-btn:hover {
    color: #fff;
  }
  
  .header-shrink .nav-item .default-nav-btn:hover span {
    color: #fff;
  }
  
  .header-shrink .nav-item .default-nav-btn:hover:after {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  
  .header-shrink .nav-item .default-nav-btn:after {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    position: absolute;
    background: #2891F9;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
    -webkit-transition: -webkit-transform 400ms cubic-bezier(0.65, 0, 0.35, 1);
    transition: -webkit-transform 400ms cubic-bezier(0.65, 0, 0.35, 1);
    transition: transform 400ms cubic-bezier(0.65, 0, 0.35, 1);
    transition: transform 400ms cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 400ms cubic-bezier(0.65, 0, 0.35, 1);
  }
  
  .header-shrink .nav-item .nav-link {
    color: #000;
    opacity: 1;
  }
  
  .header-shrink .nav-item .nav-link.active, .header-shrink .nav-item .nav-link:hover {
    color: #2891F9;
  }
  
  .header-shrink .nav-item .nav-link:after {
    background: #2891F9;
  }
  
  .header-shrink .nav-item .nav-link:not(.active):after {
    background: #2891F9;
  }
  
  .header-shrink .navbar-toggler .togler-icon-inner span {
    background-color: #000;
  }
  
  .header-shrink .white-btn {
    color: #fff !important;
    background: #2891F9;
    border: 1px solid #2891F9;
    -webkit-box-shadow: 0 15px 30px 0 rgba(82, 104, 242, 0.15);
            box-shadow: 0 15px 30px 0 rgba(82, 104, 242, 0.15);
  }
  
  .header-shrink .white-btn:hover {
    color: #fff !important;
    -webkit-box-shadow: none;
            box-shadow: none;
  background-color:#158CE8; background:-webkit-linear-gradient(top, #1B9AEE ,#158CE8);
    -webkit-animation: pulsePrimary 1s 1 ease-in-out forwards;
            animation: pulsePrimary 1s 1 ease-in-out forwards;
  }

  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}


.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.white-btn {
  font-weight: 500;
  padding: 10px 30px;
  text-align: center;
  border-radius: 500px;
  display: inline-block;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: capitalize;
  color: #000 !important;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15); cursor:pointer;
}

.white-btn:hover {
  background: transparent;
  color: #fff !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-animation: pulseWhite 1s 1 ease-in-out forwards;
          animation: pulseWhite 1s 1 ease-in-out forwards;
}

.primary-btn {
  font-weight: 500;
  padding: 2% 5%;
  text-align: center;
  border-radius: 500px;
  display: inline-block;
  background: #2891F9;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: capitalize;
  color: #fff !important;
  border: 1px solid #2891F9;
  -webkit-box-shadow: 0 15px 30px 0 rgba(82, 104, 242, 0.15);
          box-shadow: 0 15px 30px 0 rgba(82, 104, 242, 0.15); margin-bottom:4%;
}
.primary-btn.tel{
	font-size:32px;
	font-family: Arial, Helvetica, sans-serif;
}
.primary-btn.tel i{ margin-right:12px;}
.primary-btn:hover {
  color: #fff !important;
  -webkit-box-shadow: none;
          box-shadow: none;
background-color:#158CE8; background:-webkit-linear-gradient(top, #1B9AEE ,#158CE8);
  -webkit-animation: pulsePrimary 1s 1 ease-in-out forwards;
          animation: pulsePrimary 1s 1 ease-in-out forwards;
}

.outline-btn {
  font-weight: 500;
  padding: 10px 30px;
  text-align: center;
  border-radius: 500px;
  display: inline-block;
  background: transparent;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #fff;
  color: #fff !important;
}

.outline-btn:hover {
  background: #fff;
  color: #000 !important;
  -webkit-animation: pulseWhite 1s ease-in-out forwards;
          animation: pulseWhite 1s ease-in-out forwards;
}

.outline-btn-black {
  font-weight: 500;
  padding: 10px 30px;
  text-align: center;
  border-radius: 500px;
  display: inline-block;
  background: transparent;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #000;
  color: #000 !important;
}

.outline-btn-black:hover {
  background: #2891F9;
  border: 1px solid #fff;
  color: #fff !important;
  -webkit-animation: pulseWhite 1s ease-in-out forwards;
          animation: pulseWhite 1s ease-in-out forwards;
}

.scroll-top-btn {

  opacity: 0;
  right: 10px;
  width: 60px;
  height: 60px;
  z-index: 144;
  line-height: 60px;
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  position: fixed;
  visibility: hidden;
  color: #fff !important;
  background: #2891F9;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
    bottom: 30px;
}

.scroll-top-btn:hover {
  color: #fff !important;
  -webkit-animation: pulsePrimary 1s 1 ease-in-out;
          animation: pulsePrimary 1s 1 ease-in-out;
}

.scroll-top-btn.active {
  opacity: 1;
  bottom: 30px;
  visibility: visible;
}


.banner {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../img/bannerbg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.banner .hero-inner h6 {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}

.banner .hero-inner h1 {
  margin-bottom: 3%;
  color: #fff;
}

.banner .hero-inner h2 {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  font-family: "Microsoft YaHei", "微软雅黑","Poppins", sans-serif;
  color: #fff;
  margin-bottom:3.5%;
  opacity: 0.75;
}

.banner .hero-inner p{color: #fff;font-weight: 300;opacity: 0.75;}

.banner .hero-inner .btn-group .outline-btn {
  margin-right: 20px;
}

.hero-img {
  position: relative;
  text-align: right;
}

.hero-img img {
  text-align: right;
  display: inline-block;
}



#miaoshu .text{padding: 20px;}
#miaoshu .text li{margin-bottom: 1rem;}
#miaoshu .pic{padding: 20px;}
#miaoshu .pic h4{font-size:1rem;}
#miaoshu .pic-flex{display:flex;}
#miaoshu .pic-flex .flex-iteam{flex:1;text-align:center;}
#miaoshu .pic-flex .flex-iteam p {font-size:0.75rem;}

.text-grid{margin-top: 4%;margin-bottom: 4%;display: grid;grid-template-columns: repeat(5, 1fr);grid-gap: 20px;}
.text-grid .iteam{box-shadow:5px 5px 10px 0px rgb(0 0 0 / 20%);padding: 20px;}
.text-grid .iteam h3{font-size:1rem;}
.text-grid .iteam p{text-align: center;font-size: 1.2rem;font-weight: bold;}
.text-grid .iteam:hover{background-color: #2891F9;color: #fff;transition: 0.5s ease, transform 1s ease-in-out;}
.text-grid .iteam:hover h3{color: #fff;}

#tedian .td-grid{display: grid;grid-template-columns: 40% 60%;}
.td-iteam .text{padding-left: 20px;}
#tedian .td-grid-msi{display: grid;grid-template-columns: 75% auto;}
.msi {padding-left: 40px;}
.msi p{text-align: center;font-size: 0.75rem;}
#fujian .text{margin-top: 4%;display: grid;grid-template-columns: repeat(3, 1fr);grid-gap: 20px;}
#fujian .text p{
  border-bottom: 1px #2891f9 solid;
  box-shadow:5px 5px 10px 0px rgb(0 0 0 / 20%);
  padding: 30px 0 30px 20px;
  background: linear-gradient(to left, transparent 50%, #2891F9 50%);
  background-size: 200% 100%;
  background-position: right;
  transition: background-position 0.5s ease-in-out;
}
#fujian .text i{display: none;padding-left: 20px;font-size: 1rem;}
#fujian .text p:hover{color: #fff;background-position: left;transition: 0.5s ease, transform 1s ease-in-out;}
#fujian .text p:hover i{display: inline;}
#changjing {
  animation: gradientFlow 12s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
  background-size: 400% 400%;
  will-change: background-position;
  position: relative;
  overflow: hidden;
  z-index: -1;
}

@keyframes gradientFlow {
  0% {
    background-image: linear-gradient(45deg,#ff0000 0%,#ff00ff 25%,#0000ff 50%,#00ffff 75%,#00ff00 100%);
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-image: linear-gradient(135deg,#00ff00 0%,#ffff00 25%,#ff0000 50%,#0000ff 75%,#00ffff 100%);
    background-position: 0% 50%;
  }
  75% {
    background-position: 100% 50%;
  }
  100% {
    background-image: linear-gradient(225deg,#ffff00 0%,#ff0000 25%,#0000ff 50%, #00ff00 75%,#00ffff 100%);
    background-position: 0% 50%;
  }
}

#changjing::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: glowEffect 8s infinite;
}
 
@keyframes glowEffect {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; transform: scale(1.1); }
}

#lingyu .ly-grid{display: grid;grid-template-columns: 50% 50%;}
.flex-container {display: flex;flex-wrap: wrap;column-gap: 2%;} 
.flex-item {flex: 0 0 100%;padding: 20px 0;border-bottom: 2px #2891F9 solid;} 
.flex-item:nth-child(n+4):nth-child(-n+15) {flex: 0 0 32%;}
.flex-item span{color: #666;font-size: 0.8rem;padding-left: 5%;}
.flex-item:hover{background-color: #2891F9;color: #fff;transition: 0.5s ease, transform 1s ease-in-out;padding-left: 10px;}
.flex-item:hover span{color: #fff;}
.flex-container-msi {display: flex;flex-wrap: wrap;column-gap: 2%;} 
.flex-item-msi {flex: 0 0 100%;padding: 20px 0;border-bottom: 2px #2891F9 solid;} 
.flex-item-msi:nth-child(n+7):nth-child(-n+9) {flex: 0 0 32%;}
.flex-item-msi span{color: #666;font-size: 0.8rem;padding-left: 5%;}
.flex-item-msi:hover{background-color: #2891F9;color: #fff;transition: 0.5s ease, transform 1s ease-in-out;padding-left: 10px;}
.flex-item-msi:hover span{color: #fff;}


#changjing .tit h2{color: #fff;text-shadow: 2px 2px 4px rgba(0,0,0,0.5);animation: contentFade 3s ease-in-out infinite;}
#changjing .text{margin-top: 5%;display: grid;grid-template-columns: repeat(4, 1fr);grid-gap: 20px;justify-items: center;}
#changjing .text p{color: #fff;text-align: center;border: 1px #fff solid;border-radius: 50%;width: 150px;height: 150px;line-height: 150px;text-shadow: 2px 2px 4px rgba(0,0,0,0.5);animation: contentFade 3s ease-in-out infinite;}
#dingzhi .text{margin-bottom: 4rem;}
.other{display: grid;grid-template-columns: repeat(4, 1fr);grid-gap: 20px;}
.other .team-img{padding: 14px;}
.other .team-img img{overflow: hidden;transform: scale(1);transition: 0.5s ease, transform 1s ease-in-out;}
.other .team-tit h3{margin:0 auto;padding: 1rem 0;text-align: center;font-size: 1rem;}
.other .team:hover .team-tit {background-color: #2891F9;}
.other .team:hover .team-tit h3{color: #fff;}
.other .team:hover .team-img img{overflow: hidden;transform: scale(1.1);}
#contact .lx-grid{margin-top: 5%;display: grid;grid-template-columns:auto 50%;grid-gap: 20px;}
#contact .lx-grid h3{font-size: 1rem;}
.lx-grid-team1 .about p {font-size: 0.8rem;text-align: justify;}
.lx-grid-team2{display: flex;justify-content: space-around;}
.lx-grid-team2 .cont p {font-size: 0.8rem;}

.footer {
	padding-top:120px;
	background-image: url(../img/bg-footer.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size:cover;
}

.footer .footer-top { padding-bottom:3%;

}

.footer .footer-top .footer-widget {
  margin-bottom: 3%;
}

.footer .footer-top .footer-widget .footer-desc {
  color: #fff;
  opacity: 0.75;
  margin-bottom:3.5%;
}

.footer .footer-top .footer-widget .footer-title {
  color: #fff;
  margin-bottom: 3%;
  position: relative;
  font-size: 16px;
}

.footer .footer-top .footer-widget .footer-title:after {
  content: "";
  display: block;
  background: #fff;
  margin-top: 10px;
  width: 50px;
  height: 2px;
}

.footer .footer-top .footer-widget .footer-social-links a {
  width: 60px;
  height: 60px;
  color: #fff;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 20px;
}

.footer .footer-top .footer-widget .footer-social-links a:hover {
  color: #2891F9 !important;
  background: #fff;
  -webkit-animation: pulseWhite 1s 1 ease-in-out;
          animation: pulseWhite 1s 1 ease-in-out;
}

.footer .footer-top .footer-widget .footer-social-links a:last-child {
  margin-right: 0;
}

.footer .footer-top .footer-widget .footer-contact-info-list li {
  margin-bottom: 18px; 
}
.footer .footer-top .footer-widget .footer-contact-info-list li i{ width:30px; height:30px; border:#fff solid 1px; line-height:30px; text-align:center;  position:absolute; left:0px; top:0px;border-radius:100%;}
.footer .footer-top .footer-widget .footer-contact-info-list li:last-child {
  margin-bottom: 0;
}

.footer .footer-top .footer-widget .footer-contact-info-list li h6 {
  color: #fff; font-weight:normal;
  margin-bottom: 10px;padding-left:38px; position:relative; line-height:30px;
}

.footer .footer-top .footer-widget .footer-contact-info-list li p {
  color: #fff;
  opacity: 0.75;
  vertical-align: middle;
}

.footer .footer-top .footer-widget .footer-links li { float:left;}
.footer .footer-top .footer-widget .footer-links li img{ max-width:90%; display:block;}
.footer .footer-top .footer-widget .footer-links li p{ text-align:center; color:rgba(255,255,255,0.8); line-height:2.8;}
.footer .footer-top .footer-widget .footer-links li:last-child {
  margin-bottom: 0;
}

.footer .footer-top .footer-widget .footer-links li span {
  color: #fff;
  opacity: 0.75;
}

.footer .footer-top .footer-widget .footer-links li a {
  color: #fff;
  opacity: 0.75;
}

.footer .footer-top .footer-widget .footer-links li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer .footer-top .footer-widget .footer-links li:before {
  content: "";
  width: 10px;
  height: 2px;
  font-weight: 700;
  margin-right: 15px;
  background: #fff;
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; display:none;
}

.footer .footer-top .footer-widget .footer-links li:hover:before {width: 20px;}

.footer .copyright {background: rgba(255, 255, 255, 0.1); padding: 30px 0;}
.footer .copyright .copyright-text {color: #fff;opacity: 0.75; text-align:center;font-size: 0.8rem;}
.footer .copyright .copyright-text a{ color:#FFF;}

.call-button {display:none;}
.call-button::before {content: '\260E';}

@media only screen and (max-width: 991.98px) {
  .header .container {
    max-width: 100%;
    padding: 0;
  }
  .header .navbar-brand {
    padding: 10px 0 10px 15px;
  }
  .header .main-menu {
    background: #fff;
  }
  .header .main-menu .navbar-nav {
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
  }
  .header .main-menu .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }
  .header .main-menu .navbar-nav .nav-link {
    color: #000;
    padding: 10px 15px !important;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
    opacity: 1;
    border-bottom: 1px solid #eee;
  }
  .header .main-menu .navbar-nav .nav-link:after {
    display: none;
  }
  .header .main-menu .navbar-nav .nav-link.active {
    background: #2891F9;
    color: #fff !important;
    border-color: #2891F9;
  }
  .header .main-menu .navbar-nav .nav-link:not(.active):hover {
    background: #2891F9;
    color: #fff !important;
    border-color: #2891F9;
  }
  .header .main-menu .nav-item .dropdown-menu {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #edeffe;
  }
  .header .main-menu .nav-item .dropdown-menu .dropdown-item:hover {
    background: #2891F9;
  }
  .header .dropdown-toggle:before {
    top: 22px !important;
    right: 20px !important;
  }
  .header .dropdown-toggle[aria-expanded="true"]:before {
    top: 11px !important;
    -webkit-transform: rotate(180deg) !important;
            transform: rotate(180deg) !important;
  }
  .header .search-btn-mobile {
    display: block;
    position: absolute;
    top: 32px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    right: 60px;
  }
  .header.header-shrink .search-btn-mobile {
    color: #000;
  }
  .header .search-btn-resp {
    display: none;
  }
  .navbar-btn-resp {
    display: none !important;
  }
  /* Header Shrink */
  .header-shrink .nav-item:hover .nav-link {
    color: #2891F9;
  }
  .header-shrink .nav-item .nav-link {
    color: #000;
  }
  .header-shrink .nav-item .nav-link.active, .header-shrink .nav-item .nav-link:hover {
    color: #2891F9;
  }
  .header-shrink .nav-item .nav-link:after {
    background: #2891F9;
  }
  .header-shrink .nav-item .nav-link:not(.active):after {
    background: #2891F9;
  }
  .header-shrink .togler-icon-inner span {
    background-color: #000;
  }
  .hero-inner{margin-top: 25%;}
  .text-grid{grid-template-columns: repeat(3, 1fr);}
  #tedian .td-grid{grid-template-columns: 100%;}
  #tedian .td-grid-msi{grid-template-columns: 100%;}
  #fujian .text{grid-template-columns: repeat(2, 1fr);}
  #lingyu .ly-grid{grid-template-columns: 100%;}
  #contact .lx-grid{grid-template-columns: 100%;}
  .lx-grid-team2{justify-content: space-between;}
  .other{grid-template-columns: repeat(2, 1fr);}
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media screen and (min-width: 991.98px) {
	
  .dropdown-menu {
    border: 0;
    top: 100%;
    left: 0;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    color: #000;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    display: initial;
    min-width: 230px;
    border-radius: 0;
    position: absolute;
  }
  .dropdown-menu.show {
    opacity: 1;
    top: 100%;
    visibility: visible;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}


@media (min-width: 576px) {
    .container {max-width:540px}
}

@media (min-width: 768px) {
    .container {max-width:720px}
}

@media (min-width: 992px) {
    .container {
        max-width:980px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width:1240px
    }
}

@media only screen and (max-width: 768px) {
  .text-grid{grid-template-columns: repeat(2, 1fr);}
  #changjing .text{grid-template-columns: repeat(2, 1fr);}
  .msi{padding-left: 0;}
  #miaoshu .pic-flex{flex-direction: column;flex-wrap: wrap;}
  .call-button {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 48px;
    background-color: #000000a1;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.call-button::before {content: '\260F';}
}
@media only screen and (max-width: 576px) {
  #fujian .text{grid-template-columns:100%;}
  .flex-item:nth-child(n+4):nth-child(-n+15) {flex: 0 0 48%;}
  .lx-grid-team2{flex-direction: column;gap: 20px;}
}
@media only screen and (max-width: 420px) {
  .text-grid{grid-template-columns: 100%;}
  .other{grid-template-columns:100%;}
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
            transform: translateX(96px);
  }
}
@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
            transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
            transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
            transform: translateX(-31px);
  }
}

@-webkit-keyframes pulseWhite {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulseWhite {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes pulsePrimary {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(82, 104, 242, 0.4);
            box-shadow: 0 0 0 0 rgba(82, 104, 242, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(82, 104, 242, 0);
            box-shadow: 0 0 0 20px rgba(82, 104, 242, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(82, 104, 242, 0);
            box-shadow: 0 0 0 0 rgba(82, 104, 242, 0);
  }
}

@keyframes pulsePrimary {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(82, 104, 242, 0.4);
            box-shadow: 0 0 0 0 rgba(82, 104, 242, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(82, 104, 242, 0);
            box-shadow: 0 0 0 20px rgba(82, 104, 242, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(82, 104, 242, 0);
            box-shadow: 0 0 0 0 rgba(82, 104, 242, 0);
  }
}

@-webkit-keyframes shadowIn {
  0% {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2);
  }
}

@keyframes shadowIn {
  0% {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2);
  }
}

@-webkit-keyframes iconPulse {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes iconPulse {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}