@charset "UTF-8";
:root {
  --color-primary: #1e3bb1;
  --color-primary-hover: #2d48f8;
}

html, body {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "pf";
  src: url("../font/PingFang-Regular.ttf");
}
@font-face {
  font-family: "pfb";
  src: url("../font/PingFang-Bold.ttf");
}
body {
  font-family: pf, MicroSoft Yahei, Arial;
}
body ul, body li, body h1, body h2, body h3, body h4, body h5, body p {
  padding: 0;
  margin: 0;
}
body li {
  list-style: none;
}
body a {
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}

.py {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1400px) {
  .py {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 1200px) {
  .py {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .py {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .py {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .py {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.pb {
  padding-bottom: 100px;
}
@media (max-width: 1400px) {
  .pb {
    padding-bottom: 80px;
  }
}
@media (max-width: 1200px) {
  .pb {
    padding-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .pb {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .pb {
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .pb {
    padding-bottom: 40px;
  }
}

.topbar {
  background-color: var(--color-primary);
  padding: 10px 0;
}
@media (max-width: 992px) {
  .topbar {
    display: none;
  }
}
.topbar .container-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .topbar .container-lg {
    flex-direction: column;
  }
}
.topbar .container-lg .topbar-left,
.topbar .container-lg .topbar-right {
  display: flex;
  align-items: center;
}
.topbar .container-lg .topbar-left .topbar-item,
.topbar .container-lg .topbar-right .topbar-item {
  color: #ffffff;
  font-size: 14px;
}
@media (max-width: 992px) {
  .topbar .container-lg .topbar-left .topbar-item,
  .topbar .container-lg .topbar-right .topbar-item {
    font-size: 13px;
  }
}
.topbar .container-lg .topbar-left .topbar-item > span,
.topbar .container-lg .topbar-right .topbar-item > span {
  margin-left: 5px;
}
@media (max-width: 992px) {
  .topbar .container-lg .topbar-left .topbar-item > span,
  .topbar .container-lg .topbar-right .topbar-item > span {
    margin-left: 2px;
  }
}
.topbar .container-lg .topbar-left .topbar-item .iconfont,
.topbar .container-lg .topbar-right .topbar-item .iconfont {
  font-size: 16px;
}
@media (max-width: 992px) {
  .topbar .container-lg .topbar-left .topbar-item .iconfont,
  .topbar .container-lg .topbar-right .topbar-item .iconfont {
    font-size: 14px;
  }
}
.topbar .container-lg .topbar-left .topbar-item {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .topbar .container-lg .topbar-right {
    margin-top: 10px;
  }
}
.topbar .container-lg .topbar-right .topbar-item {
  margin-left: 20px;
}

.navbar {
  overflow-x: clip;
  background-color: #ffffff;
  transition: all 0.2s ease 0s;
}
.navbar.top {
  box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
}
.navbar .container-lg {
  align-items: stretch;
  /*更改-webkit-内核滚动条样式*/
}
.navbar .container-lg ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}
.navbar .container-lg ::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px;
}
.navbar .container-lg ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--color-primary);
}
.navbar .container-lg .navbar-brand .logo {
  height: 50px;
}
@media (max-width: 992px) {
  .navbar .container-lg .navbar-brand .logo {
    height: 40px;
  }
}
@media (max-width: 576px) {
  .navbar .container-lg .navbar-brand .logo {
    height: 35px;
  }
}
.navbar .container-lg .navbar-collapse {
  flex-grow: 0;
  align-items: stretch;
}
@media (max-width: 768px) {
  .navbar .container-lg .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    max-height: 80vh;
    box-shadow: 0 54px 54px rgba(32, 32, 32, 0.1);
  }
  .navbar .container-lg .navbar-collapse.show {
    overflow-y: auto;
  }
}
.navbar .container-lg .navbar-collapse .nav-item {
  --bs-nav-link-color: #000;
  margin-left: 30px;
  position: relative;
  font-size: 16px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .navbar .container-lg .navbar-collapse .nav-item {
    font-size: 14px;
    margin-left: 18px;
  }
  .navbar .container-lg .navbar-collapse .nav-item:nth-last-child(1) > .dropdown, .navbar .container-lg .navbar-collapse .nav-item:nth-last-child(2) > .dropdown {
    left: auto;
    right: 0;
  }
}
@media (max-width: 768px) {
  .navbar .container-lg .navbar-collapse .nav-item {
    display: block;
    font-size: 15px;
    margin-left: 0;
  }
}
.navbar .container-lg .navbar-collapse .nav-item:hover > .nav-link {
  color: var(--color-primary);
}
.navbar .container-lg .navbar-collapse .nav-item:hover > .nav-link .iconfont {
  transform: rotate(180deg);
}
.navbar .container-lg .navbar-collapse .nav-item:hover > .dropdown {
  pointer-events: all;
  z-index: 10;
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.navbar .container-lg .navbar-collapse .nav-item:hover > .dropdown > .nav-item {
  opacity: 1;
  transform: rotateX(0);
}
.navbar .container-lg .navbar-collapse .nav-item .nav-link {
  width: 100%;
  padding: 0;
  font-weight:700;
}
@media (max-width: 768px) {
  .navbar .container-lg .navbar-collapse .nav-item .nav-link {
    padding: 12px 0;
  }
}
.navbar .container-lg .navbar-collapse .nav-item .nav-link .iconfont {
  display: inline-block;
  transition: all 0.3s ease 0s;
  margin-left:5px;
}
@media (max-width: 992px) {
  .navbar .container-lg .navbar-collapse .nav-item .nav-link .iconfont {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .navbar .container-lg .navbar-collapse .nav-item .nav-link .iconfont {
    display: none;
  }
}
.navbar .container-lg .navbar-collapse .nav-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #ffffff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  padding: 20px 5px;
  white-space: nowrap;
  font-size: 14px;
  z-index: 10;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  /*border-radius: 10px;*/
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .navbar .container-lg .navbar-collapse .nav-item .dropdown {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
    position: static;
    box-shadow: none;
    border: 1px solid #eee;
    padding: 5px 20px;
  }
}
.navbar .container-lg .navbar-collapse .nav-item .dropdown > .nav-item {
  opacity: 0;
  margin: 0;
  transform: rotateX(90deg);
  transition: all 0.7s ease 0s;
}
@media (max-width: 768px) {
  .navbar .container-lg .navbar-collapse .nav-item .dropdown > .nav-item {
    opacity: 1;
    transform: rotateX(0);
  }
}
.navbar .container-lg .navbar-collapse .nav-item .dropdown > .nav-item:hover > .dropdown {
  pointer-events: all;
  z-index: 10;
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.navbar .container-lg .navbar-collapse .nav-item .dropdown > .nav-item:hover > .dropdown > .nav-item {
  opacity: 1;
  transform: rotateX(0);
}
.navbar .container-lg .navbar-collapse .nav-item .dropdown > .nav-item > .nav-link {
  font-size: 14px;
  padding: 5px 15px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .navbar .container-lg .navbar-collapse .nav-item .dropdown > .nav-item > .nav-link {
    padding: 12px 0;
  }
}
.navbar .container-lg .navbar-collapse .nav-item .dropdown > .nav-item > .nav-link .iconfont {
  transform: rotate(270deg);
  margin-left: 30px;
}
.navbar .container-lg .navbar-collapse .nav-item .dropdown > .nav-item > .dropdown {
  top: 0;
  left: 100%;
  transform: translateX(20px);
}
@media (max-width: 768px) {
  .navbar .container-lg .navbar-collapse .nav-item .dropdown > .nav-item > .dropdown {
    transform: translateX(0) translateY(0);
  }
}
.navbar .container-lg .navbar-toggler {
  align-self: center;
  padding: 0;
  box-shadow: none;
  border: none;
  padding: 5px;
}
.navbar .container-lg .navbar-toggler .iconfont {
  font-size: 30px;
  color: #737373;
  font-weight: bold;
}
@media (max-width: 576px) {
  .navbar .container-lg .navbar-toggler .iconfont {
    font-size: 26px;
  }
}
.navbar .container-lg .navbar-toggler[aria-expanded=true] .icon-caidan {
  display: none;
}
.navbar .container-lg .navbar-toggler[aria-expanded=true] .icon-close {
  display: block;
}
.navbar .container-lg .navbar-toggler[aria-expanded=false] .icon-caidan {
  display: block;
}
.navbar .container-lg .navbar-toggler[aria-expanded=false] .icon-close {
  display: none;
}

#toTop {
  opacity: 0;
}
#toTop.show {
  opacity: 1;
}


.subscribe {
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top:40px;
  padding-bottom:40px;
}
.subscribe .home-title .title {
    margin-bottom:30px;
}
.subscribe .form-group {
  max-width: 690px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .subscribe .form-group {
    padding: 8px;
  }
}
@media (max-width: 768px) {
  .subscribe .form-group {
    padding: 5px;
  }
}
.subscribe .form-group input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 10px 20px;
  background-color: transparent;
  border-radius: 0;
  font-size: 16px;
}
@media (max-width: 992px) {
  .subscribe .form-group input {
    padding: 5px 20px;
  }
}
@media (max-width: 768px) {
  .subscribe .form-group input {
    padding: 7px 15px;
    font-size: 14px;
  }
}
.subscribe .form-group button {
  flex-shrink: 0;
  padding: 15px 50px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border: 0;
  border-radius: 50px;
  background-color: var(--color-primary);
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .subscribe .form-group button {
    padding: 10px 50px;
  }
}
@media (max-width: 768px) {
  .subscribe .form-group button {
    padding: 7px 30px;
    font-size: 14px;
  }
}
.subscribe .form-group button:hover {
  background-color: var(--color-primary-hover);
}

.footer {
  background-color: #27272c;
  color: #949494;
}
.footer a {
  color: #949494;
}
.footer a:hover {
    color:#ffffff;
}
.footer .ftitle {
    color:#ffffff;
    font-size:14px;
    margin-bottom:25px;
}
@media (max-width: 768px) {
    .footer .ftitle {
        margin-bottom:15px;
    }
    .upper-links {
        margin-bottom:25px;
    }
}
.footer .footer-upper {
  padding-top:70px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(239,239,239,.2);
}
@media (max-width: 1400px) {
  .footer .footer-upper {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
@media (max-width: 1200px) {
  .footer .footer-upper {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .footer .footer-upper {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .footer .footer-upper {
    padding-top: 50px;
  }
}
@media (max-width: 576px) {
  .footer .footer-upper {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
.footer .footer-upper .upper-brand .logo {
  display: block;
}
.footer .footer-upper .upper-brand .logo img {
  height: 50px;
  display: block;
}
@media (max-width: 768px) {
  .footer .footer-upper .upper-brand .logo img {
    height: 45px;
  }
}
.footer .footer-upper .upper-brand p {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .footer .footer-upper .upper-brand p {
    font-size: 15px;
  }
}
.social-list {
  display: flex;
}
.social-list a {
    position:relative;
  width: 40px;
  height: 40px;
  font-size: 16px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #585858;
  border-radius: 3px;
  box-shadow: 0 6px 21px 0 rgba(32, 32, 32, 0.08);
  transition: all 0.3s ease 0s;
}
.social-list a img {
    position:absolute;
    max-width:100px;
    bottom:60px;
    left:0;
    display:none;
}
.social-list a:hover {
  color: var(--color-primary);
}
.social-list a:hover img {
    display:block;
}
@media (max-width: 768px) {
  .social-list a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.footer .footer-upper .upper-links a {
  transition: all 0.3s ease 0s;
}
.footer .footer-upper .upper-links .list > a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  line-height:22px;
  margin-bottom:10px;
}
.footer .footer-upper .upper-links .list > a:last-child {
  margin-bottom: 0;
}
.footer .footer-lower {
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 12px;
}
.footer .footer-lower .ffbottom {
    display:flex;
}
.footer .footer-lower .ffbottom p:first-child {
    margin-right:auto;
}
@media (max-width: 768px) {
  .footer .footer-lower {
    font-size: 14px;
  }
  .footer .footer-lower .ffbottom {
      display:block;
  }
}
.footer .footer-lower a {
  display: inline;
}
.footer .footer-lower a:hover {
  text-decoration: underline;
}

.c-banner {
  background-color: var(--color-primary);
  text-align: center;
  padding-top: 60px;
  padding-bottom:60px;
}
@media (max-width: 1200px) {
  .c-banner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 992px) {
  .c-banner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .c-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .c-banner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.c-banner h1 {
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .c-banner h1 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .c-banner h1 {
    font-size: 26px;
  }
}
.c-banner nav {
  --bs-breadcrumb-divider: "";
  font-family: "iconfont" !important;
  font-size: 16px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .c-banner nav {
    font-size: 14px;
  }
}
.c-banner nav .breadcrumb {
  --bs-breadcrumb-item-active-color: #fff;
  --bs-breadcrumb-divider-color: #fff;
  margin-bottom: 0;
}
.c-banner nav .breadcrumb .breadcrumb-item a {
  color: #fff;
  display: inline;
}

.c-pagination {
  --bs-pagination-border-radius: 0;
  --bs-pagination-color: var(--color-primary);
  --bs-pagination-active-bg: var(--color-primary);
  --bs-pagination-active-color: #fff;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.c-pagination .page-item {
  padding: 0 7px;
}
.c-pagination .page-item a {
  border: none;
  border-radius: 4px !important;
  box-shadow: 0 8px 35px 0 rgba(32, 32, 32, 0.08);
  padding: 0 8px;
  line-height: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
}
.c-pagination .page-item a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.c-category {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
  z-index: 100;
}
.c-category.sticky {
  position: sticky;
  top: 76px;
  box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
}
@media (max-width: 992px) {
  .c-category.sticky {
    top: 66px;
  }
}
@media (max-width: 576px) {
  .c-category.sticky {
    top: 61px;
  }
}
@media (max-width: 576px) {
  .c-category {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.c-category .container {
  display: flex;
  flex-wrap: wrap;
}
.c-category .container a {
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 10px;
  padding: 8px 32px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  color: #777777;
  transition: all 0.3s ease 0s;
}
.c-category .container a.active, .c-category .container a:hover {
  background-color: var(--color-primary);
  color: #fff;
}
@media (max-width: 992px) {
  .c-category .container a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .c-category .container a {
    font-size: 15px;
    padding: 7px 30px;
  }
.c-category.smallnav .container a {
      font-size:13px;
      padding:5px 10px;
  }
}
@media (max-width: 576px) {
  .c-category .container a {
    font-size: 15px;
    padding: 5px 16px;
    margin-top: 8px;
    margin-bottom: 8px;
    margin-right: 16px;
  }
.c-category.smallnav .container a {
      font-size:12px;
      padding:5px 5px;
      margin-right:5px;
      margin-top:0;
  }
}

.c-list .c-list-card {
  height: 100%;
  padding: 10px 10px 23px;
  border-radius: 10px;
  box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease 0s;
}
.c-list .c-list-card .image {
  flex-shrink: 0;
  overflow: hidden;
  border-radius:7px 7px 0 0;
}
.c-list .c-list-card .image img {
  width: 100%;
  display: block;
  transition: all 0.5s ease 0s;
}
.c-list .c-list-card .text {
  flex: 1;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 23px;
  display: flex;
  flex-direction: column;
}
.c-list .c-list-card .text .tag {
  flex-shrink: 0;
  align-self: start;
  padding: 0 20px;
  background-color: #f5f5f5;
  color: var(--color-primary);
  font-size: 14px;
  line-height: 33px;
  margin-bottom: 18px;
  border-radius: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-list .c-list-card .text .tag {
    font-size: 13px;
    line-height: 36px;
  }
}
.c-list .c-list-card .text h3 {
  flex: 1;
  font-size: 20px;
  color: #000;
  line-height: 1.5;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .c-list .c-list-card .text h3 {
    font-size: 18px;
  }
}
.c-list .c-list-card .text .author {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.c-list .c-list-card .text .author .author-thumb {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .c-list .c-list-card .text .author .author-thumb {
    width: 40px;
    height: 40px;
  }
}
.c-list .c-list-card .text .author .author-text h4 {
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-list .c-list-card .text .author .author-text h4 {
    font-size: 14px;
  }
}
.c-list .c-list-card .text .author .author-text h4 span {
  font-weight: bold;
}
.c-list .c-list-card .text .author .author-text p {
  font-size: 14px;
  color: var(--color-primary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-list .c-list-card .text .author .author-text p {
    font-size: 13px;
  }
}
.c-list .c-list-card:hover {
  transform: translateY(-10px);
}
.c-list .c-list-card:hover .image img {
  transform: scale(1.1);
}
.c-list .c-list-card:hover .text h3 {
  color: var(--color-primary);
  text-decoration: underline;
}
.c-list.solution .c-list-card .text h3 {
  text-align:center;
}
.home-title .title {
  text-align: center;
  max-width: 825px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .home-title .title {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .home-title .title {
    margin-bottom: 30px;
  }
}
.home-title .title.white small {
  color: #ffffff;
}
.home-title .title.white h1 {
  color: #ffffff;
}
.home-title .title.white p {
  color: #ffffff;
}
.home-title .title small {
  display: inline-block;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--color-primary);
}
.home-title .title h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.4;
  color: #000000;
}
@media (max-width: 1200px) {
  .home-title .title h1 {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .home-title .title h1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .home-title .title h1 {
    font-size: 22px;
  }
}
.home-title .title p {
  font-size: 17px;
  color: #767676;
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .home-title .title p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .home-title .title p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .home-title .title p {
    font-size: 14px;
  }
}

.home-banners {
  background-color: #ffffff;
}
.home-banners .swiper-slide {
  position: relative;
}
.home-banners .swiper-slide .home-banner {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .home-banners .swiper-slide .home-banner {
    height: 45vh;
    object-fit: cover;
  }
}
.home-banners .swiper-slide .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
}
@media (max-width: 1600px) {
  .home-banners .swiper-slide .text {
    width: 600px;
  }
}
@media (max-width: 1400px) {
  .home-banners .swiper-slide .text {
    left: 40%;
  }
}
@media (max-width: 1200px) {
  .home-banners .swiper-slide .text {
    width: 500px;
  }
}
@media (max-width: 992px) {
  .home-banners .swiper-slide .text {
    padding: 15px;
    width: 100%;
    left: 0;
    text-align: center;
  }
}
.home-banners .swiper-slide .text h1 {
  font-size:46px;
  color: #fff;
  margin-bottom: 15px;
  font-weight:700;
  font-family: MicroSoft Yahei;
  letter-spacing:5px;
}
@media (max-width: 1600px) {
  .home-banners .swiper-slide .text h1 {
    font-size: 42px;
  }
}
@media (max-width: 1200px) {
  .home-banners .swiper-slide .text h1 {
    font-size: 38px;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .home-banners .swiper-slide .text h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .home-banners .swiper-slide .text h1 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .home-banners .swiper-slide .text h1 {
    font-size: 24px;
  }
}
.home-banners .swiper-slide .text h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 1600px) {
  .home-banners .swiper-slide .text h2 {
    font-size: 34px;
  }
}
@media (max-width: 1200px) {
  .home-banners .swiper-slide .text h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .home-banners .swiper-slide .text h2 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .home-banners .swiper-slide .text h2 {
    font-size: 20px;
  }
}
.home-banners .swiper-slide .text p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing:1px;
}
@media (max-width: 1600px) {
  .home-banners .swiper-slide .text p {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .home-banners .swiper-slide .text p {
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .home-banners .swiper-slide .text p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .home-banners .swiper-slide .text p {
    font-size: 14px;
  }
}
.home-banners .swiper-slide .text .button-group {
  display: inline-flex;
  flex-wrap: wrap;
}
.home-banners .swiper-slide .text .button-group .button {
  margin-right: 25px;
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  background-color: var(--color-primary);
  box-shadow: rgba(var(--color-primary), 0.12) 0px 7px 51px 0px;
  padding: 15px 60px;
  border-radius: 50px;
}
.home-banners .swiper-slide .text .button-group .button:last-child {
  margin-right: 0;
}
@media (max-width: 1600px) {
  .home-banners .swiper-slide .text .button-group .button {
    padding: 10px 50px;
  }
}
@media (max-width: 1200px) {
  .home-banners .swiper-slide .text .button-group .button {
    font-size: 15px;
    padding: 8px 40px;
    margin-right: 20px;
    margin-top: 15px;
  }
}
.home-banners .swiper-pagination {
  bottom: 30px;
}
.home-banners .swiper-pagination .swiper-pagination-bullet {
  width:100px;
  height:1px;
  border-radius:0;
  background-color:#ddd;
  opacity:1;
  transition: all 0.5s ease 0s;
  margin:0;
}
.home-banners .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color:var(--color-primary);
  height:3px;
  margin:0 2px;
  margin-bottom:-1px;
}

.home-category .category-item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  position: relative;
}
.home-category .category-item img {
  width: 100%;
  display: block;
  transition: all 0.5s ease 0s;
}
.home-category .category-item h3 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  color: #ffffff;
  z-index: 2;
  padding: 25px 20px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .home-category .category-item h3 {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .home-category .category-item h3 {
    font-size: 18px;
  }
}
.home-category .category-item .read-more {
  position: absolute;
  left: 20px;
  bottom: 25px;
  z-index: 2;
  color: #ffffff;
  font-size: 12px;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .home-category .category-item .read-more {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .home-category .category-item .read-more {
    font-size: 14px;
  }
}
.home-category .category-item .read-more .iconfont {
  line-height: 1;
  color: #ffffff;
  margin-left: 5px;
}
@media (max-width: 1200px) {
  .home-category .category-item .read-more .iconfont {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .home-category .category-item .read-more .iconfont {
    font-size: 14px;
  }
}
.home-category .category-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: #000000;
  opacity: 0.55;
}
.home-category .category-item:hover img {
  transform: scale(1.1);
}

.home-solutions {
  overflow: hidden;
  background-color: #f4f8ff;
}
.home-solutions .container {
  position: relative;
}
.home-solutions .container .main {
  margin: 0 100px;
  position: relative;
}
@media (max-width: 1400px) {
  .home-solutions .container .main {
    margin: 0 80px;
  }
}
@media (max-width: 1200px) {
  .home-solutions .container .main {
    margin: 0 60px;
  }
}
.home-solutions .container .main .map-img {
  width: 100%;
}
@keyframes breathe {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  75% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.home-solutions .container .main .dots a {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  border: 6px solid #3D00FC;
}
.home-solutions .container .main .dots a::before, .home-solutions .container .main .dots a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  z-index: 0;
  background-color: rgba(61,0,252, 0.3);
}
.home-solutions .container .main .dots a::before {
  animation: breathe 3s 0.75s infinite;
}
.home-solutions .container .main .dots a::after {
  animation: breathe 3s infinite;
}
.home-solutions .container .solutions {
  display: flex;
  flex-wrap: wrap;
  margin-top: -25px;
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 768px) {
  .home-solutions .container .solutions {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (max-width: 576px) {
  .home-solutions .container .solutions {
    margin-left: 0;
    margin-right: 0;
  }
}
.home-solutions .container .solutions .solution-item {
  display: block;
  width: 25%;
  text-align: center;
  color: #000;
  margin-top: 25px;
  font-size: 16px;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .home-solutions .container .solutions .solution-item {
    padding: 0 10px;
  }
}
@media (max-width: 576px) {
  .home-solutions .container .solutions .solution-item {
    width: 50%;
    padding: 0 10px;
  }
}
.home-solutions .container .solutions .solution-item img {
  width: 100%;
  margin-bottom: 5px;
}
.home-solutions .container .products {
  display: flex;
  justify-content: space-between;
}
.home-solutions .container .products .swiper-pagination {
    bottom:0;
}
.home-solutions .container .products .swiper-pagination .swiper-pagination-bullet {
    width:12px;
    height:12px;
}
.home-solutions .container .products .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color:var(--color-primary);
}
@media (max-width: 1200px) {
  .home-solutions .container .products {
    padding-bottom:30px;
  }
}
@media (max-width: 992px) {
  .home-solutions .container .products {
    flex-wrap: wrap;
  }
}
.home-solutions .container .products .product-item {
  display: block;
  width: 200px;
  text-align: center;
  color: #000;
  margin-top: 20px;
  font-size: 14px;
}
@media (max-width: 1400px) {
  .home-solutions .container .products .product-item {
    width: 160px;
  }
}
@media (max-width: 1200px) {
  .home-solutions .container .products .product-item {
    width: 120px;
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .home-solutions .container .products .product-item {
    width: 30%;
    margin-top: 30px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .home-solutions .container .products .product-item {
    width: 30%;
    margin-top: 25px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home-solutions .container .products .product-item {
    width: 50%;
    padding: 0 10px;
  }
}
.home-solutions .container .products .product-item img {
  width: 100%;
  margin-bottom: 5px;
}

.home-cases {
  background-color: #fff;
}
.home-cases .home-cases-swiper .swiper-slide {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .home-cases .home-cases-swiper .swiper-slide {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.home-cases .home-cases-swiper .swiper-slide img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
.home-cases .home-cases-swiper .swiper-slide h3 {
  font-size: 22px;
  position: relative;
  padding-left: 15px;
  display: inline-block;
  line-height: 1.4;
  margin-top: 20px;
  color: #000000;
  font-weight: bold;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .home-cases .home-cases-swiper .swiper-slide h3 {
    font-size: 18px;
    margin-top: 15px;
  }
}
.home-cases .home-cases-swiper .swiper-slide h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
}
.home-cases .home-cases-swiper .swiper-slide:hover h3 {
  color: var(--color-primary);
}
.home-cases .home-cases-swiper .button-group {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.home-cases .home-cases-swiper .button-group .swiper-prev,
.home-cases .home-cases-swiper .button-group .swiper-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  cursor: pointer;
  border: 1px solid #e1e1e1;
  line-height: 1;
  font-size: 16px;
  color: var(--color-primary);
  font-weight: bold;
  transition: all 0.5s ease 0s;
}
.home-cases .home-cases-swiper .button-group .swiper-prev:last-child,
.home-cases .home-cases-swiper .button-group .swiper-next:last-child {
  margin-right: 0;
}
.home-cases .home-cases-swiper .button-group .swiper-prev:hover,
.home-cases .home-cases-swiper .button-group .swiper-next:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}
@media (max-width: 992px) {
  .home-cases .home-cases-swiper .button-group .swiper-prev,
  .home-cases .home-cases-swiper .button-group .swiper-next {
    width: 45px;
    height: 45px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .home-cases .home-cases-swiper .button-group .swiper-prev,
  .home-cases .home-cases-swiper .button-group .swiper-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

.home-news {
  background-color: #f4f8ff;
}

.product-category {
  padding-bottom: 30px;
  background-color: #fff;
}
@media (max-width: 576px) {
  .product-category {
    padding-bottom: 20px;
  }
}
.product-category .container {
  display: flex;
  flex-wrap: wrap;
}
.product-category .container a {
  cursor: pointer;
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 15px;
  padding: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease 0s;
}
.product-category .container a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: all 0.3s ease 0s;
}
.product-category .container a.active, .product-category .container a:hover {
  color: var(--color-primary);
}
.product-category .container a.active::before, .product-category .container a:hover::before {
  transform: scaleX(1);
}
@media (max-width: 576px) {
  .product-category .container a {
    margin-top: 8px;
    margin-bottom: 8px;
    margin-right: 16px;
  }
}

.product-list .product-card {
  height: 100%;
  background-color: #ffffff;
  padding: 10px 10px 20px;
  border-radius: 10px;
  box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
  transition: all 0.5s ease 0s;
}
.product-list .product-card:hover {
  transform: translateY(-10px);
}
.product-list .product-card:hover h3 {
  color: var(--color-primary);
}
.product-list .product-card .img {
  margin-bottom: 20px;
  border-radius: 10px 10px 0 0;
  background-color: #f6f6f6;
}
.product-list .product-card .img img {
  width: 100%;
  display: block;
}
.product-list .product-card h3 {
  padding: 0 15px;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  font-weight: bold;
  transition: all 0.3s ease 0s;
  text-align:center;
}

.case .case-card {
  overflow: hidden;
  position: relative;
  border-radius:10px;
}
.case .case-card img {
  width: 100%;
  display: block;
  transition: all 1s ease 0s;
}
.case .case-card .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  padding: 20px;
  transform: translateY(100%);
  transition: all 0.5s ease 0s;
}
.product-detail-more {
    display:flex;
    justify-content:center;
    padding-top:40px;
}
.product-detail-more a {
    font-size:20px;
    color:#666666;
}
@media (max-width: 1200px) {
  .case .case-card .text {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .case .case-card .text {
    transform: translateY(0);
  }
  .product-detail-more {
    padding-top:20px;
}
.product-detail-more a {
    font-size:14px;
}
}
.case .case-card .text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .case .case-card .text h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .case .case-card .text h3 {
    font-size: 16px;
  }
}
.case .case-card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 2;
  transition: all 1s ease 0s;
}
.case .case-card::after {
  content: "\e8ae";
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  opacity: 0;
  z-index: 3;
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.5s ease 0s;
}
@media (max-width: 1200px) {
  .case .case-card::after {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .case .case-card::after {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
.case .case-card:hover img {
  transform: scale(1.1);
}
.case .case-card:hover .text {
  transform: translateY(0);
}
.case .case-card:hover::before {
  opacity: 1;
}
.case .case-card:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.news-detail {
  background-color: #ffffff;
}
.news-detail .main h1 {
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  margin-bottom:15px;
  color: #000;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.news-detail .main h1.allh1 {
  margin-bottom:100px;
}
.news-detail .main h1 span {
  color:#666666;
  font-size:22px;
}
@media (max-width: 1400px) {
  .news-detail .main h1.allh1 {
    margin-bottom:80px;
  }
}
@media (max-width: 1200px) {
  .news-detail .main h1 {
    font-size: 28px;
  }
    .news-detail .main h1 span {
    font-size:18px;
  }
  .news-detail .main h1.allh1 {
    margin-bottom:70px;
  }
}
@media (max-width: 992px) {
  .news-detail .main h1 {
    padding-bottom: 5px;
  }
    .news-detail .main h1.allh1 {
    margin-bottom:60px;
  }
  .xrd-i {
    order: 1;
    margin-bottom: 30px;
    }
    .xrd-t {
    order: 2;
    }
}
@media (max-width: 768px) {
  .news-detail .main h1 {
    font-size: 26px;
  }
    .news-detail .main h1.allh1 {
    margin-bottom:50px;
  }
}
@media (max-width: 576px) {
  .news-detail .main h1 {
    font-size: 24px;
  }
      .news-detail .main h1 span {
    font-size:16px;
  }
  .news-detail .main h1.allh1 {
    margin-bottom:40px;
  }
  .xrd-i {
    margin-bottom: 20px;
    }
}
.news-detail .main .text-muted {
  font-size:14px;
  color: #999999;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .news-detail .main .text-muted {
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .news-detail .main .text-muted {
    margin-bottom: 20px;
  }
}
.news-detail .main .content {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  text-align: justify;
}
.news-detail .main .content img {
  max-width: 100%;
  border-radius:10px;
}
.news-detail .main .turning {
  background-color: #f9fafc;
  margin-top: 30px;
  padding: 10px;
  border-radius: 10px;
}
.news-detail .main .turning a {
  display: block;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
}
.news-detail .main .turning a:hover {
  color: var(--color-primary);
}
.news-detail .sidebar .plate {
  margin-top: 30px;
}
.news-detail .sidebar .plate:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .news-detail .sidebar .plate:first-child {
    margin-top: 30px;
  }
}
.news-detail .sidebar .plate h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}
@media (max-width: 1200px) {
  .news-detail .sidebar .plate h3 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .news-detail .sidebar .plate h3 {
    font-size: 20px;
  }
}
.news-detail .sidebar .plate .plate-item {
  margin-top: 25px;
  display: flex;
}
@media (max-width: 576px) {
  .news-detail .sidebar .plate .plate-item {
    margin-top: 20px;
  }
}
.news-detail .sidebar .plate .plate-item img {
  width: 120px;
  /*height: 120px;*/
  margin-right: 20px;
  /*object-fit: cover;*/
  border-radius: 10px;
  background-color:#f6f6f6;
}
@media (max-width: 1200px) {
  .news-detail .sidebar .plate .plate-item img {
    width: 110px;
    height: 110px;
    margin-right: 10px;
  }
}
.news-detail .sidebar .plate .plate-item .item-text h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .news-detail .sidebar .plate .plate-item .item-text h4 {
    font-size: 17px;
  }
}
.news-detail .sidebar .plate .plate-item .item-text p {
  font-size: 12px;
  color: var(--color-primary);
}
@media (max-width: 1200px) {
  .news-detail .sidebar .plate .plate-item .item-text p {
    font-size: 15px;
  }
}
.news-detail .sidebar .plate .plate-item:hover .item-text h4 {
  color: var(--color-primary);
}

.contact .contact-info {
  margin-bottom: 60px;
  border-radius: 10px;
  box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
  background-color: #fff;
  padding: 35px;
  position: relative;
}
@media (max-width: 1200px) {
  .contact .contact-info {
    padding: 30px;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .contact .contact-info {
    padding: 15px;
    margin-bottom: 40px;
  }
}
.contact .contact-info:last-child {
  margin-bottom: 10px;
}
.contact .contact-info h1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align:center;
}
@media (max-width: 1200px) {
  .contact .contact-info h1 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .contact .contact-info h1 {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.contact .contact-info::before {
  content: "";
  width: calc(100% + 20px);
  height: 100%;
  position: absolute;
  bottom: -10px;
  left: -10px;
  z-index: -1;
  border-radius: 10px;
  box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
  background-color: #fff;
}
.contact .contact-info .contact-info-item .item-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact .contact-info .contact-info-item .item-header {
    margin-bottom: 15px;
  }
}
.contact .contact-info .contact-info-item .item-header .iconfont {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  background-color: #f4f8ff;
  border-radius: 50%;
  font-size:30px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  margin-right: 18px;
}
@media (max-width: 1200px) {
  .contact .contact-info .contact-info-item .item-header .iconfont {
    width: 55px;
    height: 55px;
    font-size: 30px;
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .contact .contact-info .contact-info-item .item-header .iconfont {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}
.contact .contact-info .contact-info-item .item-header .text h4 {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 5px;
}
@media (max-width: 1200px) {
  .contact .contact-info .contact-info-item .item-header .text h4 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .contact .contact-info .contact-info-item .item-header .text h4 {
    font-size: 18px;
  }
}
.contact .contact-info .contact-info-item .item-header .text p {
  font-size: 16px;
}
@media (max-width: 1200px) {
  .contact .contact-info .contact-info-item .item-header .text p {
    font-size: 14px;
  }
}
.contact .contact-info .contact-info-item .item-body p {
  font-size: 14px;
  margin-bottom: 2px;
  color: #767676;
}
@media (max-width: 1200px) {
  .contact .contact-info .contact-info-item .item-body p {
    font-size: 16px;
  }
}
.contact .contact-info .contact-info-item .item-body p:last-child {
  margin-bottom: 0;
}

.contact-section {
  background-color: #fff;
}
.contact-section .section-box {
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
}
@media (max-width: 1200px) {
  .contact-section .section-box {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .contact-section .section-box {
    padding: 15px;
  }
}
.contact-section .section-box .contact-map {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-color: #eeeeee;
  border-radius: 10px;
}
.contact-section .section-box .contact-map .amap-logo,.contact-section .section-box .contact-map .amap-copyright {
  display:none !important;
}
.contact-section .section-box form h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .contact-section .section-box form h2 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .contact-section .section-box form h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.contact-section .section-box form p {
  font-size: 17px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .contact-section .section-box form p {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .contact-section .section-box form p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.contact-section .section-box form .form-control {
  margin-bottom: 20px;
  resize: none;
  background-color: #f4f8ff;
  padding: 15px 25px;
  border-radius:5px;
  font-size: 15px;
  color: #000000;
}
.contact-section .section-box form .form-control:focus {
  box-shadow: none;
}
@media (max-width: 1200px) {
  .contact-section .section-box form .form-control {
    padding: 10px 20px;
    border-radius: 25px;
  }
}
@media (max-width: 768px) {
  .contact-section .section-box form .form-control {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .contact-section .section-box form .form-control {
    padding: 8px 16px;
    border-radius: 20px;
  }
}
.contact-section .section-box form .form-check {
  margin-bottom: 20px;
}
.contact-section .section-box form .form-check .form-check-input:focus {
  box-shadow: none;
}
.contact-section .section-box form .form-check .form-check-label {
  font-size: 15px;
}
@media (max-width: 768px) {
  .contact-section .section-box form .form-check .form-check-label {
    font-size: 14px;
  }
}
.contact-section .section-box form .form-check .form-check-label a {
  display: inline;
}
.contact-section .section-box form button {
  font-size: 16px;
  padding: 15px 50px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border: 0;
  width: 100%;
  border-radius: 50px;
  background-color: var(--color-primary);
  box-shadow: 0 7px 51px 0 rgba(31, 18, 253, 0.12);
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .contact-section .section-box form button {
    padding: 12px 40px;
  }
}
@media (max-width: 768px) {
  .contact-section .section-box form button {
    padding: 10px 30px;
  }
}

.about .about-intros {
  overflow: hidden;
}
.about .about-intros .multimedia img, .about .about-intros .multimedia video {
  width: 100%;
  display: block;
  border-radius:10px;
}
.about .about-intros h1 {
  color: #000;
  font-size:36px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .about .about-intros h1 {
    font-size: 36px;
  }
}
@media (max-width: 1200px) {
  .about .about-intros h1 {
    font-size: 32px;
    margin-bottom: 25px;
  }
}
@media (max-width: 992px) {
  .about .about-intros h1 {
    margin-top: 30px;
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .about .about-intros h1 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .about .about-intros h1 {
    font-size: 22px;
  }
}
.about .about-intros .content {
  color: #555;
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 768px) {
  .about .about-intros .content {
    font-size: 14px;
  }
}
.about .about-intros .content img {
  max-width: 100%;
}
.about .about-idea {
  overflow: hidden;
  background-color: #f9fafc;
}
.about .about-idea .idea-item {
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
}
.about .about-idea .idea-item:hover .thumb .iconfont {
  transform: translateY(-20px) scale(1.5);
}
.about .about-idea .idea-item .thumb img {
    width:45px;
    height:45px;
  transition: all 0.3s ease 0s;
}
.about .about-idea .idea-item:hover .thumb img {
  transform: translateY(-20px) scale(1.5);
}
.about .about-idea .idea-item .thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color:#f4f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .about .about-idea .idea-item .thumb {
    width: 50px;
    height: 50px;
  }
}
.about .about-idea .idea-item .thumb .iconfont {
  font-size: 30px;
  color: var(--color-primary);
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .about .about-idea .idea-item .thumb .iconfont {
    font-size: 26px;
  }
}
.about .about-idea .idea-item h3 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .about .about-idea .idea-item h3 {
    font-size: 20px;
    margin-top: 15px;
  }
}
.about .about-idea .idea-item p {
  font-size: 16px;
  color: #767676;
}
@media (max-width: 1200px) {
  .about .about-idea .idea-item p {
    font-size: 15px;
  }
}
.about .about-course {
  overflow: hidden;
  background-position: center;
  background-size:100% auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.about .about-course .home-title .title h1 {
  color: #fff;
}
.about .about-course .about-course-swiper {
  padding: 0 150px;
}
@media (max-width: 1400px) {
  .about .about-course .about-course-swiper {
    padding: 0 120px;
  }
}
@media (max-width: 1200px) {
  .about .about-course .about-course-swiper {
    padding: 0 100px;
  }
}
@media (max-width: 992px) {
  .about .about-course .about-course-swiper {
    padding: 0 150px;
  }
}
@media (max-width: 768px) {
  .about .about-course .about-course-swiper {
    padding: 0 60px;
  }
}
@media (max-width: 576px) {
  .about .about-course .about-course-swiper {
    padding: 0 20px;
  }
}
.about .about-course .about-course-swiper .swiper-slide {
  height: auto;
  padding: 0 40px;
  border-left: 2px solid #fff;
  opacity: 0.2;
  transition: all 0.4s ease 0s;
}
@media (max-width: 768px) {
  .about .about-course .about-course-swiper .swiper-slide {
    padding: 0 30px;
  }
}
@media (max-width: 576px) {
  .about .about-course .about-course-swiper .swiper-slide {
    padding: 0 20px;
  }
}
.about .about-course .about-course-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.about .about-course .about-course-swiper .swiper-slide.swiper-slide-active + div, .about .about-course .about-course-swiper .swiper-slide.swiper-slide-active + div + div {
  opacity: 1;
}
@media (max-width: 1200px) {
  .about .about-course .about-course-swiper .swiper-slide.swiper-slide-active + div + div {
    opacity: 0.2;
  }
}
@media (max-width: 992px) {
  .about .about-course .about-course-swiper .swiper-slide.swiper-slide-active + div {
    opacity: 0.2;
  }
}
.about .about-course .about-course-swiper .swiper-slide h1 {
  color: #fff;
  font-size:22px;
  font-weight:bold;
  line-height: 1;
  margin-bottom:5px;
}
@media (max-width: 1400px) {
  .about .about-course .about-course-swiper .swiper-slide h1 {
    font-size:20px;
  }
}
@media (max-width: 576px) {
  .about .about-course .about-course-swiper .swiper-slide h1 {
    font-size: 18px;
  }
}
.about .about-course .about-course-swiper .swiper-slide .content {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 1400px) {
  .about .about-course .about-course-swiper .swiper-slide .content {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .about .about-course .about-course-swiper .swiper-slide .content {
    font-size: 15px;
  }
}
.about .about-course .about-course-swiper .swiper-slide .content p {
  margin-bottom: 30px;
}
.about .about-select {
  overflow: hidden;
  background-color: #f9fafc;
}
.about .about-select .multimedia img, .about .about-select .multimedia video {
  width: 100%;
  display: block;
  border-radius:10px;
}
.about .about-select h2 {
  color: var(--color-primary);
  font-size: 20px;
  margin-bottom: 15px;
}
.about-partners .swout {
    position:relative;
    padding-left:100px;
    padding-right:100px;
}
.about-partners .swout .swiper-prev,.about-partners .swout .swiper-next {
    position:absolute;
    top:50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color:#f9fafc;
    font-size: 16px;
    color: var(--color-primary);
    font-weight: bold;
    transition: all 0.5s ease 0s;
    transform:translateY(-50%);
    outline:none;
}
.about-partners .swout .swiper-prev {
    left:10px;
}
.about-partners .swout .swiper-next {
    right:10px;
}
.about-partners .swout .swiper-prev:hover,.about-partners .swout .swiper-next:hover {
    background-color:var(--color-primary);
}
.about-partners .swout .swiper-prev:hover::before,.about-partners .swout .swiper-next:hover::before {
    color:#fff;
}
@media (max-width: 992px) {
  .about .about-select h2 {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .about .about-select h2 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .about .about-select h2 {
    font-size: 16px;
  }
}
.about .about-select h1 {
  color: #000;
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .about .about-select h1 {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .about .about-select h1 {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .about .about-select h1 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .about .about-select h1 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .about .about-select h1 {
    font-size: 20px;
  }
}
.about .about-select .advantages {
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
}
.about .about-select .advantages .advantage {
  display: flex;
}
.about .about-select .advantages .advantage::before {
  content: "\e745";
  font-family: "iconfont";
  color: var(--color-primary);
  font-weight: bold;
  font-size: 16px;
  margin-right: 10px;
}
.about .about-select .content {
  color: #555;
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 768px) {
  .about .about-select .content {
    font-size: 14px;
  }
}
.about .about-select .content img {
  max-width: 100%;
}
.about .about-partners .about-partners-swiper .swiper-slide {
    width:auto!important;
}
.about .about-partners .about-partners-swiper .swiper-slide img {
  user-select: none;
  width: 100%;
  display: block;
  opacity: 0.7;
  filter: grayscale(0.95);
  -webkit-filter: grayscale(0.95);
}
.about .about-partners .about-partners-swiper .swiper-slide img:hover {
  opacity: 1;
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.about .about-news {
  background-color: #f9fafc;
}
.about .about-news .c-list-card {
  box-shadow: none;
}

.product-detail-introduce .product-detail-swiper img {
  width: 100%;
  display: block;
}
.product-detail-introduce .product-detail-thumbs-swiper {
  margin-top: 10px;
}
@media (max-width: 992px) {
  .product-detail-introduce .product-detail-thumbs-swiper {
    margin-top: 5px;
  }
}
.product-detail-introduce .product-detail-thumbs-swiper .swiper-slide {
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.3s ease 0s;
}
.product-detail-introduce .product-detail-thumbs-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.product-detail-introduce .product-detail-thumbs-swiper .swiper-slide img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .product-detail-introduce .detail-text {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .product-detail-introduce .detail-text {
    margin-top: 25px;
  }
}
.product-detail-introduce .detail-text h1 {
  color: #272727;
  font-size: 42px;
  font-weight: bold;
  line-height: 52px;
}
@media (max-width: 1400px) {
  .product-detail-introduce .detail-text h1 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 1200px) {
  .product-detail-introduce .detail-text h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 992px) {
  .product-detail-introduce .detail-text h1 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (max-width: 768px) {
  .product-detail-introduce .detail-text h1 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 576px) {
  .product-detail-introduce .detail-text h1 {
    font-size: 20px;
    line-height: 30px;
  }
}
.product-detail-introduce .detail-text p {
  color: #939393;
  font-size: 18px;
  line-height: 28px;
  margin-top: 35px;
}
@media (max-width: 992px) {
  .product-detail-introduce .detail-text p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .product-detail-introduce .detail-text p {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .product-detail-introduce .detail-text p {
    font-size: 15px;
  }
}

.product-detail-series {
  background-color: #f9fafc;
}
.product-detail-series .content {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}
.product-detail-series .content img {
  max-width: 100%;
}

.product-detail-parameters .categorys {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .product-detail-parameters .categorys {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .product-detail-parameters .categorys {
    margin-bottom: 10px;
  }
}
.product-detail-parameters .categorys .category {
  color: #939393;
  font-size: 18px;
  line-height: 22px;
  cursor: pointer;
  margin: 0 15px;
  padding-bottom: 5px;
  border-bottom: 4px solid transparent;
}
@media (max-width: 992px) {
  .product-detail-parameters .categorys .category {
    font-size: 17px;
    margin: 0 10px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .product-detail-parameters .categorys .category {
    font-size: 16px;
    margin: 0 10px;
    margin-bottom: 15px;
  }
}
.product-detail-parameters .categorys .category:hover {
  color:var(--color-primary);
}
.product-detail-parameters .categorys .category.active {
  color:var(--color-primary);
  border-color:var(--color-primary);
}
.product-detail-parameters .table {
  --bs-border-width: 0px;
  --bs-table-striped-bg: #f7f9fa;
  --bs-table-striped-color: #272727;
  margin-bottom: 0;
}
.product-detail-parameters .table th, .product-detail-parameters .table td {
  padding:10px 20px;
  font-size: 16px;
}
@media (max-width: 992px) {
  .product-detail-parameters .table th, .product-detail-parameters .table td {
    padding: 15px 20px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .product-detail-parameters .table th, .product-detail-parameters .table td {
    padding: 12px 17px;
  }
}
@media (max-width: 576px) {
  .product-detail-parameters .table th, .product-detail-parameters .table td {
    padding: 7px 10px;
    font-size: 15px;
  }
}
.product-detail-parameters .table th {
  width: 40%;
  color: #272727;
  border-right: 1px solid #E0E0E0;
}
.product-detail-parameters .table td {
  width: 60%;
  color: #272727;
}

.product-detail-feature {
  background-color: #f9fafc;
}
.product-detail-feature .feature-card {
  overflow:hidden;
  position:relative;
  cursor:default;
}
.product-detail-feature .feature-card .img img {
  width: 100%;
  display: block;
  border-radius:10px;
}
.product-detail-feature .feature-card .text {
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 25px;
  text-align:center;
}
@media (max-width: 1200px) {
  .product-detail-feature .feature-card .text {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .product-detail-feature .feature-card .text {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .product-detail-feature .feature-card .text {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .product-detail-feature .feature-card .text {
    padding: 20px;
  }
}
.product-detail-feature .feature-card .text h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
  font-weight:bold;
}
@media (max-width: 1200px) {
  .product-detail-feature .feature-card .text h3 {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .product-detail-feature .feature-card .text h3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .product-detail-feature .feature-card .text h3 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .product-detail-feature .feature-card .text h3 {
    font-size: 20px;
  }
}
.product-detail-feature .feature-card .text p {
  font-size: 15px;
  color: #666666;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .product-detail-feature .feature-card .text p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .product-detail-feature .feature-card .text p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .product-detail-feature .feature-card .text p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .product-detail-feature .feature-card .text p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.product-detail-feature .feature-card .text .more {
  font-size: 14px;
  color: #0c5adb;
}
@media (max-width: 1200px) {
  .product-detail-feature .feature-card .text .more {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .product-detail-feature .feature-card .text .more {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .product-detail-feature .feature-card .text .more {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .product-detail-feature .feature-card .text .more {
    font-size: 14px;
  }
}
.product-detail-facility {
  background-color: #f9fafc;
}
.product-detail-facility .product-detail-facility-swiper .swiper-slide img {
  width: 100%;
  display: block;
}
.product-detail-facility .product-detail-facility-swiper .swiper-slide h1 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color:#333333;
}
.product-detail-facility .product-detail-facility-swiper .swiper-slide:hover h1 {
  color:var(--color-primary);
}
.product-detail-facility .product-detail-facility-swiper {
    padding-bottom:40px;
}
.psout {
    position:relative;
    padding-left:100px;
    padding-right:100px;
}
.product-detail-facility .swiper-prev,.product-detail-facility .swiper-next {
    position:absolute;
    top:40%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color:#ffffff;
    font-size: 16px;
    color: var(--color-primary);
    font-weight: bold;
    transition: all 0.5s ease 0s;
    transform:translateY(-50%);
    outline:none;
}
.product-detail-facility .swiper-prev {
    left:10px;
}
.product-detail-facility .swiper-next {
    right:10px;
}
.product-detail-facility .swiper-prev:hover,.product-detail-facility .swiper-next:hover {
    background-color:var(--color-primary);
}
.product-detail-facility .swiper-prev:hover::before,.product-detail-facility .swiper-next:hover::before {
    color:#fff;
}
@media (max-width: 1200px) {
  .product-detail-facility .product-detail-facility-swiper .swiper-slide h1 {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .product-detail-facility .product-detail-facility-swiper .swiper-slide h1 {
    margin-top: 15px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .product-detail-facility .product-detail-facility-swiper .swiper-slide h1 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .product-detail-facility .product-detail-facility-swiper .swiper-slide h1 {
    font-size: 17px;
  }
}

.service {
  overflow: hidden;
}
.service .service-item {
  position: relative;
}
.service .service-item .image img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .service .service-item .image img {
    height: 250px;
    object-fit: cover;
  }
}
.service .service-item .box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.service .service-item .box .container {
  height: 100%;
  display: flex;
  justify-content: flex-start;
}
.service .service-item .box .container .text {
  width: 50%;
  height: 100%;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .service .service-item .box .container .text {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .service .service-item .box .container .text {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .service .service-item .box .container .text {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .service .service-item .box .container .text {
    padding: 25px;
  }
}
.service .service-item .box .container .text h3 {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .service .service-item .box .container .text h3 {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .service .service-item .box .container .text h3 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .service .service-item .box .container .text h3 {
    font-size: 20px;
  }
}
.service .service-item .box .container .text p {
  font-size: 17px;
  margin-top: 25px;
}
@media (max-width: 1200px) {
  .service .service-item .box .container .text p {
    font-size: 15px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .service .service-item .box .container .text p {
    font-size: 14px;
  }
}
.service .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(to right, rgba(11, 17, 57, 0), rgba(11, 17, 57, 0.4));
}
@media (max-width: 992px) {
  .service .service-item::before {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .service .service-item::before {
    width: 100%;
  }
}
.service .service-item:nth-child(2n+1) .box .container {
  justify-content: flex-end;
}
.service .service-item:nth-child(2n+1)::before {
  left: auto;
  right: 0;
  background: linear-gradient(to left, rgba(11, 17, 57, 0), rgba(11, 17, 57, 0.4));
}
.service .service-item.head .box .home-title {
  display: flex;
  align-items: center;
}
.service .service-item.head .box .home-title .title h1 {
  color: #fff;
}
.service .service-item.head .box .home-title .title p {
  color: #fff;
}
.service .service-item.head::before {
  display: none;
}
.nservice .nsc {
  margin-bottom:30px;
}
.nservice .nsc .content {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}
.nservice .nsc .content img {
  max-width:100%;
  border-radius:10px;
}
.nservice .nsl .nslist li {
  position:relative;
  line-height:30px;
  padding:15px 20px;
  margin-bottom:20px;
  border-radius:5px;
  box-shadow: 0 10px 10px 0 rgba(32, 32, 32, 0.1);
}
.nservice .nsl .nslist li .service-pos {
  position:absolute;
  top:-80px;
}
.nservice .nsl .nslist li a {
  font-size:17px;
  font-weight:700;
  line-height:40px;
  color:#000;
}
.nservice .nsl .nslist li a .iconfont {
  transition: all 0.3s ease 0s;
  display:inline-block;
  margin-right:5px;
}
.nservice .nsl .nslist li a[aria-expanded='true'] .iconfont {
  transform:rotate(180deg);
}
.nservice .nsl .nslist li .nsshow {
  padding-top:10px;
  line-height:22px;
  color:#666666;
}
@media(max-width:576px){
  .nservice .nsl {
    padding-left:30px;
    padding-right:30px;
  }
  .nservice .nsl .nslist li a {
    line-height:22px;
    font-size:14px;
  }
  .nservice .nsl .nslist li .nsshow {
    font-size:13px;
  }
}
.rightbar {
    position:fixed;
    z-index:999999;
    right:0;
    bottom:0;
    transform:translateY(-120px);
}
.rightbar li {
    position:relative;
    width:60px;
    height:60px;
    margin-bottom:1px;
    background-color:rgba(0,0,0,.5);
    text-align:center;
}
.rightbar li a {
    color:#fff;
    font-size:12px;
    display:flex;
    flex-direction:column;
}
.rightbar li a .iconfont {
    font-size:26px;
    margin-bottom:-5px;
}
.rightbar li>div{
    display:none;
    position:absolute;
    top:0;
    right:60px;
    color:#fff;
    background-color:var(--color-primary);
    white-space: nowrap;
    line-height:60px;
    font-size:12px;
    padding:0 20px;
}
.rightbar li:hover>div {
    display:block;
}
.product-grid {
    display:grid;
    grid-template-rows:1fr 1fr;
    grid-template-columns:1fr 1fr 1fr;
    align-items:stretch;
}
.product-grid div {
    margin:10px;
    position:relative;
    overflow:hidden;
    border-radius:10px;
}
.product-grid div p {
    position:absolute;
    bottom:0;
    padding:0 20px;
    color:#ffffff;
    font-size:14px;
    width:100%;
    line-height:40px;
}
.product-grid div img {
    width:100%;
    height:100%;
    transition:all 1s ease 0s;
    object-fitcover
}
.product-grid div:hover img {
    transform:scale(1.1);
}
.product-qu div:first-child {
    grid-row:1 / 3;
}
.bggary {
    background-color:#f9fafc;
}
.product-st {
    grid-auto-flow:row dense;
    grid-template-areas:'a a b'
                        'c d b';
}
.product-st div:first-child {
    grid-column:1 / 3;
    grid-area:a;
}
.product-st div:nth-child(2) {
    grid-row:1 / 3;
    grid-area:b;
}
@media (max-width:992px) {
    .product-grid {
        grid-template-rows:1fr 1fr 1fr;
        grid-template-columns:1fr 1fr;
    }
    .product-qu div:first-child {
        grid-row:1 / 3;
    }
    .product-st {
        grid-template-rows:1fr 1fr 1fr;
        grid-template-columns:1fr 1fr;
        grid-template-areas:'a a'
                            'b c'
                            'b d';
    }
    .product-st div:nth-child(2) {
        grid-row:2 / 4;
    }
}
.custom-content-marker {
  position:relative;
  width:30px;
  height:37px;
}
.custom-content-marker img {
  width:100%;
  height:100%;
}
.test-img img {
    max-width:100%;
    border-radius:10px;
}
.test-img video {
    border-radius:10px;
}