/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Work Sans", sans-serif;
  color: #212529;
  font-style: normal;
  font-weight: 400;
}

a {
  color: #007bff;
}

a:hover {
  color: #0b6bd3;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Raleway", sans-serif;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 76px;
  transition: all 0.5s;
  z-index: 1001;
  transition: all 0.5s;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 750px) {
  #header {
    height: 65px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #7a6960;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 1919px) {
  #header .logo img {
    height: 56px;
  }
}

@media screen and (max-width: 750px) {
  #header .logo img {
    height: 45px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #333333;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 1919px) {
  .nav-menu a {
    font-size: 16px;
  }
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #0081cc;
  text-decoration: none;
}

.nav-menu .get-started a {
  background: #0081cc;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 25px;
}

.nav-menu .get-started a:hover {
  background: #ee7843;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: #333;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: #0081cc;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

.nav-lang {
  border: #00000015 solid 1px;
  padding: 6px 12px;
  border-radius: 3px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -50%;
  width: 50%;
  padding-top: 18px;
  background: #fff;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #333;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #19348d;
  text-decoration: none;
}

.mobile-nav .get-started a {
  background: #0081cc;
  color: #fff;
  border-radius: 50px;
  margin: 15px;
  padding: 10px 25px;
}

.mobile-nav .get-started a:hover {
  background: #ee7843;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 18px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #888;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
  position: relative;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.nav-language > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}
.mobile-nav .nav-language {
  position: absolute;
  left: 0;
  bottom: 20px;
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 34px;
  color: #333333;
}
.about {
  position: relative;
  text-align: left;
}
.about * {
  font-size: 16px;
  line-height: 1.8;
}
.about::after {
  position: absolute;
  content: "";
  top: -80px;
  right: 0;
  width: 80px;
  height: 57px;
  background-image: url(/static/assets/img/misc/yinhao.svg);
}

@media (max-width: 991px) {
  .about .about-img img {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .about .about-img img {
    max-width: 90%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  transform: translateY(-5px);
  border-color: #ef7f4d;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: #ef7f4d;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #212529;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #0081cc;
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(122, 105, 96, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #0081cc;
  margin: 0 4px;
  font-size: 18px;
  line-height: 1;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  line-height: 1;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #0081cc;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #0081cc;
  font-size: 18px;
  font-weight: 600;
  color: #0081cc;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  padding-top: 5px;
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #0081cc;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #0081cc;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  height: 80%;
  opacity: 0.5;
  transition: 0.3s;
}

.clients .owl-item img:hover {
  opacity: 1;
}

.clients .owl-nav,
.clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fbe2d8 !important;
}

.clients .owl-dot.active {
  background-color: #0081cc !important;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #0081cc;
  border-bottom: 3px solid #0081cc;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #0081cc;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdf1ec;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #7a6960;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ab9d95;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #0081cc;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #0081cc;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #0081cc;
  border-bottom: 3px solid #0081cc;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0;
  font-weight: 400;
  font-size: 13px;
}

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

.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;
  -webkit-animation: animate-loading 1s linear infinite;
  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;
}

.contact .php-email-form input {
  height: 44px;
}

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

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

.contact .php-email-form button[type="submit"]:hover {
  background: #ef7f4d;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #123c55;
  color: #3893c8;
  font-size: 14px;
}

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

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #5c5c5c;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #212529;
  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: #0081cc;
  font-size: 14px;
  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: #5c5c5c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #0081cc;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0081cc;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ef7f4d;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #212529;
}

#footer .credits a {
  color: #0081cc;
}

@media (max-width: 575px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}
.home-pro-item {
  position: relative;
  height: 160px;
  background-color: #f3f3f3;
  padding: 20px;
  display: flex;
  align-items: end;
  font-size: 16px;
  transition: all 0.3s;
}
.home-pro-item .photo-item-num {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 46px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0.1;
}
.home-pro-item .photo-item-icon {
  position: absolute;
  left: 20px;
  top: 20px;
}
.home-pro-item:hover {
  background-color: #3aa1de;
  color: #fff;
}

.photo-item-icon {
  width: 46px;
  height: 46px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/static/assets/img/misc/p1.svg);
}
.home-pro-item:hover .photo-item-icon {
  background-image: url(/static/assets/img/misc/p1-hover.svg);
}
.photo-item-icon.icon-1 {
  background-image: url(/static/assets/img/misc/p1.svg);
}
.home-pro-item:hover .icon-1 {
  background-image: url(/static/assets/img/misc/p1-hover.svg);
}
.photo-item-icon.icon-2 {
  background-image: url(/static/assets/img/misc/p2.svg);
}
.home-pro-item:hover .icon-2 {
  background-image: url(/static/assets/img/misc/p2-hover.svg);
}
.photo-item-icon.icon-3 {
  background-image: url(/static/assets/img/misc/p3.svg);
}
.home-pro-item:hover .icon-3 {
  background-image: url(/static/assets/img/misc/p3-hover.svg);
}
.photo-item-icon.icon-4 {
  background-image: url(/static/assets/img/misc/p4.svg);
}
.home-pro-item:hover .icon-4 {
  background-image: url(/static/assets/img/misc/p4-hover.svg);
}
.photo-item-icon.icon-5 {
  background-image: url(/static/assets/img/misc/p5.svg);
}
.home-pro-item:hover .icon-5 {
  background-image: url(/static/assets/img/misc/p5-hover.svg);
}

@media screen and (min-width: 991px) {
  .home-banner {
    height: 400px;
    overflow: hidden;
  }
}

.slick-dots li button:before {
  font-size: 12px !important;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
}

@media screen and (min-width: 991px) {
  .home-service {
    height: 340px;
  }
}

@media screen and (max-width: 990px) {
  .home-service {
    height: calc((100vw - 90px) / 2 * 1.5454);
  }
}

.home-service.js-slider .prevArrow,
.home-service.js-slider .nextArrow {
  background-color: #4f8dd6;
  text-align: center;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  cursor: pointer;
}

.js-slider i {
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
}

.js-slider i:hover:before {
  color: #ffffff;
}

.js-slider .prevArrow i:before {
  content: "\f3d2";
}

.js-slider .nextArrow i:before {
  content: "\f3d3";
}

@media screen and (min-width: 991px) {
  .js-slider .prevArrow {
    left: -50px;
  }

  .js-slider .nextArrow {
    right: -50px;
  }
}

@media screen and (max-width: 990px) {
  .js-slider .prevArrow {
    left: 0;
  }

  .js-slider .nextArrow {
    right: 0;
  }
}

.contact-info-box {
  flex: 1;
  text-align: center;
  padding: 24px 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #666666;
  border-radius: 5px;
  margin-bottom: 30px;
}

.contact-info-box img {
  display: block;
  text-align: center;
  font-size: 25px;
  margin-bottom: 15px;
  box-shadow: 0px 0px 30px #2926330d;
  width: 40px;
  height: 40px;
  line-height: 60px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 30px;
}

.service-pro {
  position: relative;
}
.service-pro .cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(315deg, #218ccd 1%, rgba(51, 157, 221, 0) 59%);
  z-index: 1;
}
.service-pro .contant {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}

.service-pro .photo-item img {
  width: 100%;
  height: auto;
}

.home-solution {
  position: relative;
}
.home-solution::after {
  position: absolute;
  content: "";
  top: calc(50% - 600px);
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  border-radius: 5000px;
  box-sizing: border-box;
  border: 100px solid #d3e7ff;
  z-index: 0;
}
.home-solution img {
  max-width: 100%;
  height: auto;
}

.cms-cate-box {
  text-align: left;
}
@media screen and (max-width: 1279px) {
  .cms-cate-box {
    margin-bottom: 24px;
  }
}
.cms-cate {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.cms-cate li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}
.cms-cate li a {
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cms-cate li.active a {
  font-size: 20px;
  font-weight: 500;
  position: relative;
}

.cms-cate li.active a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #0081cc;
  bottom: -12px;
  left: 0;
}

.tab-content-show {
  position: relative;
}

.tab-content-show .viewmore {
  position: absolute;
  right: 0;
  top: -63px;
}

.cms-news {
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cms-news:last-child {
  border-bottom: none;
}
.cms-news .cms-title {
  flex: 1;
}
.cms-news .cms-addtime {
  color: #888;
  text-align: right;
  font-size: 14px;
}

.home-cms-card {
  padding: 20px;
  text-align: left;
  color: #fff;
  border-radius: 6px;
  position: relative;
  margin-bottom: 12px;
}

.home-cms-card .img {
  position: absolute;
  right: 12px;
  bottom: 12px;
}

.home-cms-card .cms-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 12px;
}

.home-cms-card .cms-title-box .cms-title {
  font-size: 26px;
  font-weight: 500;
  position: relative;
}

.home-cms-card .cms-title-box .cms-title::after {
  content: "";
  position: absolute;
  width: 2em;
  height: 2px;
  background: #fff;
  bottom: -12px;
  left: 0;
}

.home-cms-card .news-list {
  height: 120px;
}

.home-cms-card .newsSwiper {
  height: 120px;
}

@media screen and (min-width: 991px) {
  .home-business-slider {
    width: 780px;
    height: 360px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 990px) {
  .home-business-slider {
    margin-bottom: -20px;
  }
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  grid-gap: 0px;
  margin-right: 30px;
}

.business-grid-mobile {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto auto;
  grid-gap: 0px;
  padding-bottom: 50px;
}

.home-business-slider .businessSwiper {
  height: 360px;
}

@media screen and (min-width: 991px) {
  .home-business {
    display: flex;
    gap: 30px;
  }
}

@media screen and (max-width: 990px) {
  .home-business {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.home-business .el-dialog {
  background: linear-gradient(180deg, #bbe4ff 0%, rgba(187, 228, 255, 0) 15%), #ffffff;
}

@media screen and (min-width: 991px) {
  .home-business-card {
    width: 360px;
    min-height: 170px;
    margin-bottom: 12px;
  }
  .home-business-contact {
    min-height: 180px;
  }
}
@media screen and (max-width: 990px) {
  .home-business-card {
    margin-bottom: 12px;
  }
}

.home-business-card {
  border-radius: 6px;
  background: linear-gradient(142deg, #64c6ff 0%, #2399df 99%);
  color: #fff;
  box-sizing: border-box;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  position: relative;
}

.business-title-box .business-title {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 990px) {
  .business-title-box .business-title {
    font-size: 20px;
  }
}

.business-title-box .business-subtitle {
  font-size: 16px;
  font-weight: normal;
}

.business-btn-box {
  flex: 1;
}

.business-title-box button {
  border-radius: 6px;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  width: auto;
}

.home-business-card .img {
  position: absolute;
  right: 0;
  bottom: 10px;
}

.home-business-card .img img {
  width: 100px;
  height: 100px;
}

.home-business-slider .business-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  padding: 15px;
  gap: 15px;
  background: #ffffff;
  box-sizing: border-box;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.business-item .business-user {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 12px;
  color: #666666;
}

.business-item .business-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  gap: 12px;
}

.business-item .business-bottom .item-id {
  color: #2a79cd;
  background-color: #d5efff;
  padding: 2px 8px;
}
.business-item .business-bottom .item-Arrow {
  color: #2a79cd;
  width: 20px;
}

.home-business-contact {
  text-align: left;
  background: linear-gradient(298deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%), #07b9b9;
  border-radius: 6px;
  color: #fff;
  box-sizing: border-box;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  position: relative;
}

.home-business-contact .business-title {
  font-size: 24px;
  font-weight: 500;
}

.home-business-contact .business-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-business-contact .img {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.business-contant-box .business-user {
  font-size: 14px;
  color: #333333;
  padding: 20px;
  border-radius: 6px;
  background: linear-gradient(95deg, #bbe4ff 5%, rgba(187, 228, 255, 0) 100%), #d6ecfd;
}

@media screen and (min-width: 991px) {
  .business-contant-box .business-user {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .business-contant-box .business-user .business-user-item {
    margin-right: 20px;
  }
}

@media screen and (max-width: 990px) {
  .business-contant-box .business-user .business-user-item {
    margin-bottom: 10px;
  }
}

.business-contant-box .business-user .business-user-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.business-contant-box .business-contant {
  font-size: 16px;
  color: #333333;
  min-height: 160px;
  max-height: 290px;
  overflow-y: scroll;
  gap: 10px;
  display: flex;
  text-align: left;
}

.business-contant-box .business-contant .business-id {
  padding: 5px 10px;
  background-color: #f1f1f1;
  text-align: center;
  min-width: 60px;
  box-sizing: border-box;
  border-radius: 6px;
}

.business-contant-box .business-contant .business-num .num {
  font-size: 18px;
  font-weight: 600;
}

.business-contant-box .business-contant .business-addtime {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
}

.business-list-box .business-item {
  display: flex;
  gap: 12px;
  align-items: top;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.business-list-box .business-item .business-id {
  padding: 5px 10px;
  background-color: #f1f1f1;
  text-align: center;
  min-width: 60px;
  box-sizing: border-box;
  border-radius: 6px;
}

.business-list-box .business-item .business-num .num {
  font-size: 18px;
  font-weight: 600;
}

.business-list-box .business-detail {
  flex: 1;
}
.business-list-box .business-detail .business-addtime {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
}

.single-faq-inner.card {
  text-align: left;
  box-shadow: none;
  border: none;
  margin-bottom: 12px;
}
.single-faq-inner .card-header {
  background: transparent;
  padding: 12px 0px 6px;
  color: #2a79cd;
  display: flex;
  gap: 12px;
}
.single-faq-inner .card-header h4 {
  font-size: 16px;
  flex: 1;
}

.single-faq-inner.card-act-hidden .card-header {
  color: #333333;
}
.single-faq-inner .card-block {
  padding: 0;
  font-size: 14px;
  line-height: 26px;
  color: #666666;
}

.card-header + .card-block {
  padding-top: 0px !important;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media screen and (min-width: 991px) {
  .el-dialog {
    width: 900px !important;
  }
}

@media screen and (max-width: 990px) {
  .el-dialog {
    margin-right: 20px;
    margin-right: 20px;
    width: calc(100vw - 40px) !important;
  }
}
.el-dialog__header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.el-dialog__body {
  padding-top: 20px;
}

.online-bar {
  position: fixed;
  right: 30px;
  bottom: 70px;
  z-index: 995;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  border-radius: 50%;
  padding: 1.25rem 0;
}
.customer-bar .customer-btn {
  position: relative;
}
.customer-bar .customer-btn span {
  display: flex;
  color: #fff;
  flex-direction: column;
  font-size: 0.75rem;
  text-align: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999;
  overflow: hidden;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  overflow: hidden;
}
.customer-bar img {
  width: 3.375rem;
  height: 3.375rem;
}
@keyframes breathing1 {
    0% {
        width: 80%;
        height: 80%;
        opacity: 1;
    }
    50% {
        width: 160%; 
        height: 160%;
        opacity: 0.5;
    }
    100% {
        width: 80%;
        height: 80%;
        opacity: 1;
    }
}

@keyframes breathing2 {
    0% {
        width: 60%;
        height: 60%;
        opacity: 1;
    }
    50% {
        width: 120%; 
        height: 120%;
        opacity: 0.5;
    }
    100% {
        width: 60%;
        height: 60%;
        opacity: 1;
    }
} 
.customer-btn:before,
.customer-btn:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  border-radius: 50%;
  background-color: #64C6FF;
  transform: translate(-50%, -50%);
}

.customer-btn:before {
  width: 80%;
  height: 80%;
  animation: breathing1 3.5s infinite ease-in-out;
}

.customer-btn:after {
  width: 60%;
  height: 60%;
  animation: breathing2 3.5s infinite ease-in-out;
  animation-delay: 0.25s;
}
