:root {
  --primary-color: #ff7300;
  --text-color-gray: #727171;
  --text-color-dark: #3f4654;
  --text-color-darker: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, "PingFang SC", "Microsoft YaHei", sans-serif;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: var(--text-color-darker);
}

ul {
  list-style: none;
}

section {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 48px 0;
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 64px;
  z-index: 999;
  background-color: #fff;
  border-bottom: 1px solid rgba(63, 70, 84, 0.08);
}

header.sticky {
  background-color: #fff;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.02);
}

.header-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.header-wrapper .header-logo {
  display: block;
  max-width: 120px;
}

.header-wrapper nav {
  position: absolute;
  top: 64px;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: -1;
  padding-top: 16px;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.2s;
}

.header-wrapper nav.show {
  transform: scaleY(1);
}

.header-wrapper nav > a {
  display: block;
  font-size: 14px;
  line-height: 56px;
  border-bottom: 1px solid #efefef;
  color: #999;
  font-weight: bold;
}

.header-wrapper nav > a.active,
.header-wrapper nav > a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.header-wrapper .burger {
  position: relative;
  width: 32px;
  height: 32px;
}

.header-wrapper .burger > span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  top: 5px;
  left: 2px;
  opacity: 1;
  transition: all 0.2s;
}

.header-wrapper .burger > span:nth-child(2) {
  top: 15px;
}

.header-wrapper .burger > span:nth-child(3) {
  top: 25px;
}

.header-wrapper .burger.click > span:nth-child(2) {
  opacity: 0;
}

.header-wrapper .burger.click > span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.header-wrapper .burger.click > span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.login-wrapper {
  position: absolute;
  top: 16px;
  right: 64px;
}

.login-wrapper .login-btn {
  display: block;
  font-size: 14px;
  line-height: 32px;
  padding: 0 16px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--primary-color);
}

.login-wrapper .login-box {
  max-width: 160px;
  padding: 20px;
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #fff;
  border-radius: 8px;
  transform: translateX(-50%) translateY(8px);
  z-index: 50;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}

.login-wrapper:hover .login-box {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(16px);
}

.login-wrapper .login-box::before {
  content: "";
  display: block;
  border-top: 8px solid transparent;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.login-wrapper .login-box a {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--text-color-dark);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.2s;
}

.login-wrapper .login-box a + a {
  margin-top: 16px;
}

.login-wrapper .login-box a:hover {
  color: var(--primary-color);
}

.banner-wrapper {
  position: relative;
  margin-top: 64px;
  overflow: hidden;
}
.banner-wrapper .banner-bg {
  height: 640px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner-wrapper .banner-bg#banner-mobile {
  display: block;
}
.banner-wrapper .banner-bg#banner-pc {
  display: none;
}
.banner-wrapper .banner-box {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-wrapper .banner-box > img {
  display: block;
  max-width: 280px;
}
.banner-wrapper .banner-box > a {
  display: block;
  text-align: center;
  padding: 0 16px;
  font-size: 12px;
  color: #fff;
  line-height: 32px;
  background-color: var(--primary-color);
  border-radius: 16px;
  margin-top: 16px;
}

.banner-wrapper .banner-content {
  width: 100%;
}

.banner-wrapper .banner-content > p {
  font-size: 20px;
  color: #3e3a39;
}
.banner-wrapper .banner-content > h1 {
  font-size: 32px;
  color: #3e3a39;
}
.banner-wrapper .banner-content > a {
  display: inline-block;
  text-align: center;
  padding: 0 20px;
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  background-color: var(--primary-color);
  border-radius: 8px;
  margin-top: 16px;
}

.automove-wrapper {
  overflow: hidden;
  position: relative;
  padding: 0;
}

.automove-wrapper::before,
.automove-wrapper::after {
  content: "";
  display: block;
  width: 48px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 50;
}

.automove-wrapper::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}

.automove-wrapper::after {
  right: 0;
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}

.automove-wrapper .automove-box {
  display: flex;
  flex-wrap: nowrap;
  padding: 16px 0;
  animation: automove 40s linear 0s infinite;
}

@keyframes automove {
  100% {
    transform: translate(-800px);
  }
}

.automove-wrapper .automove-box img {
  flex-shrink: 0;
  width: 56px;
  height: 28px;
  margin: 0 12px;
  object-fit: contain;
}

.scene-wrapper {
  padding: 0;
}

.section-title {
  font-size: 20px;
  color: var(--text-color-darker);
  text-align: center;
  margin-bottom: 24px;
}

.scene-wrapper .scene-item {
  display: flex;
  flex-direction: column;
  background-color: #f4f4f4;
  border-radius: 16px;
  padding: 24px 16px;
  position: relative;
}

.scene-wrapper .scene-line {
  display: none;
}

.scene-wrapper .scene-item + .scene-item {
  margin-top: 16px;
}

.scene-wrapper .scene-content h3 {
  font-size: 18px;
  color: #333;
}

.scene-wrapper .scene-content ul {
  margin-top: 16px;
}

.scene-wrapper .scene-content ul li + li {
  margin-top: 8px;
}

.scene-wrapper .scene-content ul li h4 {
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}

.scene-wrapper .scene-content ul li h4 > span {
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  transform: scale(0.5);
}

.scene-wrapper .scene-content ul li h4 > span::before,
.scene-wrapper .scene-content ul li h4 > span::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.scene-wrapper .scene-content ul li h4 > span::before {
  transform: scale(2);
  opacity: 0.1;
}

.scene-wrapper .scene-content ul li h4 > span::after {
  transform: scale(1);
  opacity: 0.6;
  animation: pointlight 1s linear 0s infinite;
}

@keyframes pointlight {
  100% {
    transform: scale(2);
    opacity: 0.1;
  }
}

.scene-wrapper .scene-content ul li p {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-color-gray);
  margin-top: 4px;
  padding-left: 24px;
}

.scene-wrapper .scene-img {
  margin-top: 16px;
}

.scene-wrapper .scene-img > img {
  display: block;
}

.service-wrapper .service-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 12px;
  column-gap: 12px;
}

.service-wrapper .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  border: 1px solid #ffea96;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: 0.2s;
}

.service-wrapper .service-item:hover {
  border-color: transparent;
  background: linear-gradient(
    90deg,
    rgba(255, 196, 148, 0.5),
    rgba(255, 234, 150, 0.5)
  );
}

.service-wrapper .service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.service-wrapper .service-content {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-color-darker);
  text-align: center;
}

.service-wrapper .service-qrcode {
  grid-column: 1/4;
  background-image: linear-gradient(
    to top,
    rgba(255, 196, 148, 0.5),
    rgba(255, 234, 150, 0.5)
  );
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-wrapper .service-qrcode > img {
  display: block;
  max-width: 144px;
}

.service-wrapper .service-qrcode .service-content {
  text-align: left;
  margin-top: 0;
  margin-left: 0;
}

.service-wrapper .service-qrcode .service-content > h3 {
  color: #3e3a39;
  font-size: 18px;
}

.service-wrapper .service-qrcode .service-content > p {
  color: #727171;
  font-size: 14px;
  border-top: 1px solid var(--primary-color);
  margin-top: 16px;
  padding-top: 16px;
}

.service-wrapper .service-mess {
  font-size: 12px;
  color: #999;
  margin: 16px 0;
  text-align: center;
}

.comment-wrapper {
  overflow: hidden;
  background-color: #f4f4f4;
}

.comment-wrapper .swiper-container {
  overflow: visible;
}

.comment-wrapper .swiper-slide {
  width: 320px;
  filter: blur(5px);
  opacity: 0;
}

.comment-wrapper .swiper-slide-active {
  opacity: 1;
  filter: blur(0);
}

.comment-wrapper .swiper-slide-prev,
.comment-wrapper .swiper-slide-next {
  opacity: 1;
}

.comment-box {
  width: 1120px;
  height: 480px;
  position: relative;
  margin: 0 auto;
}

.comment-box .comment-inner {
  width: 100%;
  height: 100%;
}

.comment-box .comment-inner .comment-img {
  width: 768px;
  height: 384px;
  position: absolute;
  transition: 0.2s;
  filter: blur(6px);
  margin-top: 48px;
}

.comment-box .comment-inner .comment-img img {
  width: 100%;
  height: 100%;
}

.comment-wrapper .comment-item{
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.comment-wrapper .comment-item_hd{
  padding-top: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.comment-wrapper .comment-item_bd{
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.comment-wrapper .comment-item_bd>img{
  display: block;
  height: 44px;
  object-fit: contain;
  object-position: 0%;
}
.comment-wrapper .comment-item_bd>h3{
  font-size: 18px;
  color: #3E3A39;
  margin-top: 12px;
}
.comment-wrapper .comment-item_bd>p{
  font-size: 14px;
  line-height: 22px;
  height: 66px;
  color: #727171;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comment-wrapper .swiper-arrows{
  display: block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
.comment-wrapper .swiper-arrows.swiper-arrows-prev{
  left: 0;
}
.comment-wrapper .swiper-arrows.swiper-arrows-next{
  right: 0;
}

.case-wrapper {
  padding-bottom: 0;
}

.case-wrapper .case-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-wrapper .case-navbar a {
  display: block;
  font-size: 14px;
  line-height: 44px;
  color: #999;
  font-weight: bold;
  margin: 0 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.case-wrapper .case-navbar a.active {
  color: #333;
  border-color: var(--text-color-darker);
}

.case-wrapper .swiper-container {
  margin-top: 24px;
}

.case-box .case-item_bd {
  height: 240px;
  padding: 32px 24px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
}
.case-box .case-content{
  position: relative;
  height: 100%;
}
.case-box .case-content>h3{
  font-size: 18px;
}
.case-box .case-content>p{
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.6;
}
.case-box .case-content>ul{
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  font-size: 14px;
}
.case-box .case-content>ul>li+li{
  margin-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  padding-left: 16px;
}
.case-box .case-content>ul>li>p{
  font-size: 18px;
  margin-top: 8px;
}
.case-box .case-content>ul>li>p>span{
  font-size: 14px;
  margin-left: 4px;
}
.case-box .case-item_ft{
  height: 240px;
}
.case-box .case-item_ft>img{
  display: block;
  height: 100%;
  object-fit: cover;
}

.client-wrapper {
  background-color: #f4f4f4;
}

.client-wrapper .client-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(10, 44px);
  justify-content: space-between;
  row-gap: 12px;
  column-gap: 12px;
}

.client-wrapper .client-item {
  border-radius: 4px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.client-wrapper .client-mess {
  font-size: 12px;
  color: #999;
  margin: 16px 0;
  text-align: center;
}

.index-footer {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #222629;
  opacity: 0.8;
  z-index: 1;
}

.index-footer .index-footer-box {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.index-footer .index-footer-box h2 {
  font-size: 20px;
}

.index-footer .index-footer-box p {
  font-size: 12px;
  margin-top: 16px;
}

.index-footer .index-footer-box a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  margin-top: 24px;
  line-height: 44px;
  border-radius: 8px;
  padding: 0 24px;
  background-color: var(--primary-color);
}

.footer-wrapper {
  background-color: #222629;
}

.footer-wrapper .footer-bar {
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  padding: 16px 0;
  border-top: 1px solid #727171;
  text-align: center;
}

.footer-wrapper .footer-bar a,
.footer-wrapper .footer-bar a:link,
.footer-wrapper .footer-bar a:visited {
  color: #fff;
}

.footer-wrapper .footer-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  padding: 48px 0;
}

.footer-wrapper .footer-col {
  margin-bottom: 24px;
  color: #fff;
}

.footer-wrapper .footer-col > h4 {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 16px;
}

.footer-wrapper .footer-col-content {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

.footer-wrapper .footer-col-content > a {
  display: block;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
}

.footer-wrapper .footer-col-content a + a {
  margin-top: 12px;
}

.footer-wrapper .footer-col-content > a > img {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.footer-wrapper .footer-col-content > h5 {
  font-size: 14px;
  margin-top: 12px;
}

.footer-wrapper .footer-col-content > h5:first-child {
  margin-top: 0;
}

.footer-wrapper .footer-col-content .footer-tel {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
  margin-top: 8px;
}

.footer-wrapper .footer-col-content > span,
.footer-wrapper .footer-col-content .footer-addr {
  color: var(--text-color-gray);
  margin-top: 4px;
  font-size: 12px;
}

.footer-wrapper .footer-qrcode-box {
  flex-direction: row;
}

.footer-wrapper .footer-qrcode-item {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

.footer-wrapper .footer-qrcode-item + .footer-qrcode-item {
  margin-left: 12px;
}

.footer-wrapper .footer-qrcode-item > img {
  display: block;
  margin-top: 12px;
}

.footer-wrapper .footer-qrcode-item > span {
  display: block;
  color: var(--text-color-gray);
  margin-top: 12px;
}

.sidebar-wrapper {
  position: relative;
  z-index: 999;
}

.sidebar-wrapper .sidebar-box {
  position: fixed;
  top: 70%;
  right: 16px;
  transform: translate(0, -50%);
}

.sidebar-wrapper .sidebar-item {
  position: relative;
  width: 48px;
  cursor: pointer;
}
.sidebar-wrapper .sidebar-item + .sidebar-item {
  margin-top: 8px;
}
.sidebar-wrapper .sidebar-item > img {
  display: block;
}

.sidebar-wrapper .sidebar-item#sidebar-gotop {
  visibility: hidden;
  opacity: 0;
  transform: translateY(50%);
  transition: all 0.2s;
}
.sidebar-wrapper .sidebar-item.show-gotop#sidebar-gotop {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.sidebar-wrapper .sidebar-qrcode {
  display: none;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.modal-wrapper.modal-show {
  visibility: visible;
  opacity: 1;
}

.modal-wrapper .modal-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-container {
  z-index: 1;
}
.modal-wrapper .modal-box {
  width: 240px;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
}
.modal-wrapper .modal-box > h2 {
  color: var(--primary-color);
  font-size: 18px;
}
.modal-wrapper .modal-box > img {
  margin-top: 8px;
}
.modal-wrapper .modal-box > span {
  color: var(--text-color-gray);
  font-size: 14px;
  margin-top: 8px;
}

.modal-wrapper#modal-consult img {
  display: block;
  max-width: 1080px;
}

/* Page About Start */

.about-page-bg {
  background-color: #f0f1f3;
  background-size: cover;
  background-position: center;
  z-index: -10;
  margin-top: -32px;
}

.intro-wrapper {
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.intro-wrapper .intro-box h2 {
  font-size: 16px;
  color: #333;
}

.intro-wrapper .intro-box p {
  font-size: 14px;
  color: #727171;
  line-height: 1.5;
  padding: 16px 0;
  margin: 16px 0;
  border-top: 1px solid #c9caca;
  border-bottom: 1px solid #c9caca;
}

.process-wrapper {
  padding: 0;
}

.process-wrapper .process-box {
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 32px 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.process-wrapper .process-img #process-img-pc {
  display: none;
}

.spirit-wrapper .spirit-box ul {
  margin-bottom: 32px;
}

.spirit-wrapper .spirit-box ul > li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
}

.spirit-wrapper .spirit-box ul > li > img {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.spirit-wrapper .spirit-box ul > li h4 {
  font-size: 14px;
  color: #3e3a39;
}

.spirit-wrapper .spirit-box ul > li p {
  font-size: 12px;
  color: #727171;
  margin-top: 4px;
}

.spirit-wrapper .swiper-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.spirit-wrapper .swiper-arrows > a {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 16px;
}
.spirit-wrapper .spirit-item_hd >h3{
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
}
.spirit-wrapper .spirit-item_hd >.spirit-img{
  display: none;
}
.spirit-wrapper .spirit-img{
  height: 0;
  padding-top: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}

.honor-wrapper {
  background-color: #fff;
}

.honor-wrapper .honor-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}

.honor-wrapper .honor-box > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.honor-wrapper .honor-box > li > img {
  display: block;
  width: 48px;
  height: 48px;
}

.honor-wrapper .honor-box > li > p {
  font-size: 12px;
  color: #3e3a39;
  margin-top: 12px;
}

.invest-wrapper {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.invest-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.invest-wrapper .invest-box {
  position: relative;
  z-index: 10;
}

.invest-wrapper .section-title {
  color: #fff;
}

.invest-wrapper .invest-box > ul {
  text-align: center;
  color: #fff;
}

.invest-wrapper .invest-box > ul > li {
  padding: 24px 0;
}

.invest-wrapper .invest-box > ul > li > h3 {
  font-size: 40px;
}

.invest-wrapper .invest-box > ul > li > h3 > span {
  font-size: 14px;
  margin-left: 8px;
  font-weight: normal;
}

.invest-wrapper .invest-box > ul > li > p {
  font-size: 14px;
  margin-top: 8px;
}

.index-footer-2::before {
  display: none;
}

.index-footer-2 .index-footer-box a {
  color: var(--primary-color);
  background-color: #fff;
}

.index-footer-3::before {
  display: none;
}
.index-footer-3 .index-footer-box h2 {
  line-height: 1.5;
}
.index-footer-3 .index-footer-box img {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  margin-top: 16px;
}

/* Page About End */

/* Page Product_ddsy Start */

.body-bg {
  background-repeat: repeat-y;
  background-size: cover;
  background-position: top;
}

.product-nav-wrapper {
  position: relative;
  padding-top: 40px;
}

.product-nav-wrapper .product-nav {
  position: absolute;
  top: -40px;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.product-nav-wrapper .product-nav a {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 14px;
  color: #3e3a39;
  font-weight: bold;
  transition: all 0.3s;
}

.product-nav-wrapper .product-nav a > span {
  padding: 8px;
  border-radius: 50%;
  background-color: #ffe3cc;
  margin-bottom: 4px;
}

.product-nav-wrapper .product-nav a > span > img {
  display: block;
  width: 20px;
  height: 20px;
}

.product-nav-wrapper .product-nav a.active,
.product-nav-wrapper .product-nav a:hover {
  color: #fff;
}
.product-nav-wrapper .product-nav a.active > span,
.product-nav-wrapper .product-nav a:hover > span {
  background-color: #fff;
}
.product-nav-wrapper .product-nav a.active::after,
.product-nav-wrapper .product-nav a:hover::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  bottom: -4px;
  background-image: url(../images/nav_bg_active.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  border-radius: 20px;
  z-index: -1;
}
.product-banner > img {
  display: block;
  margin-top: 20px;
}

.section2 {
  padding: 56px 0;
}
.section2 .section-title {
  color: #3e3a39;
}
.section2 .section-desc {
  font-size: 14px;
  font-weight: normal;
  margin-top: 4px;
}

.bg-white {
  background: #fff;
}

.product-box {
  display: flex;
  flex-wrap: wrap;
}

.product-box > a {
  width: 50%;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-box > a .product-img {
  width: 144px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
}
.product-box > a .product-img > img {
  display: block;
  height: 100%;
  object-fit: cover;
}
.product-box > a > h3 {
  font-size: 16px;
  color: #3e3a39;
  margin-top: 8px;
}
.product-box > a > p {
  font-size: 12px;
  color: #727171;
  line-height: 16px;
  margin-top: 8px;
}

.product-tabs {
  display: flex;
  height: 80px;
}
.product-tabs a {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 12px;
  color: #3e3a39;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #efefef;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.product-tabs a + a {
  margin-left: 8px;
}

.product-tabs a > span {
  padding: 8px;
  border-radius: 50%;
  background-color: #ffe3cc;
  margin-bottom: 4px;
}

.product-tabs a > span > img {
  display: block;
  width: 20px;
  height: 20px;
}

.product-tabs a.active,
.product-tabs a:hover {
  color: #fff;
}
.product-tabs a.active > span,
.product-tabs a:hover > span {
  background-color: #fff;
}
.product-tabs a.active::after,
.product-tabs a:hover::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/nav_bg_active.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}
.product-box2 {
  background-color: #fff;
  border-radius: 20px;
  margin-top: 12px;
  padding: 16px;
}
.product-box2 .product-box2_lf {
  padding: 16px;
}
.product-box2 h2 {
  font-size: 18px;
  color: #3e3a39;
}
.product-box2 p {
  font-size: 12px;
  line-height: 24px;
  color: #727171;
  margin-top: 8px;
}
.product-box2 ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.product-box2 ul > li {
  width: 50%;
  line-height: 24px;
  font-size: 12px;
  color: #727171;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  padding-left: 32px;
  margin-top: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.product-box2 img {
  display: block;
}
.product-tabs2 {
  position: relative;
}
.product-tabs2 a {
  display: block;
  border-radius: 4px;
  background-color: #fafafa;
  padding: 16px 24px;
  position: relative;
  overflow: hidden;
}
.product-tabs2 a + a {
  margin-top: 12px;
}

.product-tabs2 a > h3 {
  font-size: 14px;
  font-weight: bold;
  color: #3e3a39;
}
.product-tabs2 a > p {
  font-size: 12px;
  color: #727171;
  margin-top: 8px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-tabs2 a.active {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.product-tabs2 a.active::after {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff7300;
}
.product-box3 .product-swiper {
  margin-top: 8px;
}
.product-box3 .product-swiper img {
  display: block;
  object-fit: contain;
  height: 100%;
}

.product-tabs2.active a {
  background-color: #fff;
}
.product-tabs2.active::after {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff7300;
}
.product-box4 > ul > li + li {
  margin-top: 16px;
}
.product-box4 > ul > li > h3 {
  font-size: 18px;
  color: #3e3a39;
}
.product-box4 > ul > li > p {
  font-size: 14px;
  color: #727171;
  margin-top: 8px;
}
.product-box4 > img {
  display: block;
  object-fit: contain;
  margin-top: 16px;
}

.product-box5 {
  display: flex;
  flex-wrap: wrap;
}
.product-box5 > li {
  width: 50%;
  padding: 8px;
}
.product-box5 > li img {
  display: block;
  width: 80px;
  height: 80px;
}
.product-box5 > li h3 {
  font-size: 18px;
  color: #3e3a39;
}

.product-box5 > li p {
  font-size: 14px;
  color: #727171;
  margin-top: 8px;
}
.product-box6 > li {
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.product-box6 > li + li {
  margin-top: 16px;
}
.product-box6 > li > img {
  display: block;
  width: 120px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.product-box6 > li > p {
  flex: 1;
  padding: 16px;
}
.product-box6 > li > p > span {
  display: block;
  padding-left: 16px;
  position: relative;
  font-size: 14px;
}
.product-box6 > li > p > span + span {
  margin-top: 8px;
}
.product-box6 > li > p > span::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #3e3a39;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.product-box7 > li {
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}
.product-box7 > li + li {
  margin-top: 16px;
}
.product-box7 > li > img {
  display: block;
}
.product-box7_bd {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px 32px;
  margin-top: -48px;
}
.product-box7_bd > img:first-child {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
}
.product-box7_bd h3 {
  font-size: 18px;
  color: #3e3a39;
  margin-top: 12px;
}

.product-box7_bd p {
  font-size: 14px;
  color: #727171;
  margin-top: 8px;
}
.product-box7_bd > img:last-child {
  display: block;
  width: 160px;
  height: 160px;
  margin-top: 16px;
}
.product-box8 {
  display: flex;
  flex-wrap: wrap;
}
.product-box8 > li {
  width: 50%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-box8 > li > img {
  display: block;
  width: 80px;
  height: 80px;
}
.product-box8 > li > h3 {
  font-size: 18px;
  color: #3e3a39;
  margin-top: 16px;
}

.product-box8 > li > p {
  font-size: 12px;
  color: #727171;
  margin-top: 8px;
}

.banner-wrapper-2 {
  position: relative;
  margin-top: 64px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
}
.banner-wrapper-2 .banner-content {
  text-align: center;
  line-height: 1.5;
  z-index: 10;
  color: #3e3a39;
  position: relative;
}
.banner-wrapper-2 .banner-content > p {
  font-size: 14px;
}

.banner-wrapper-2 .banner-content > h1 {
  font-size: 28px;
}
.banner-wrapper-2 .banner-content > a {
  display: inline-block;
  margin-top: 16px;
  padding: 0 24px;
  font-size: 14px;
  color: #fff;
  line-height: 40px;
  background-color: var(--primary-color);
  border-radius: 8px;
}
.banner-wrapper-2 .banner-img {
  display: block;
  margin-top: 32px;
}
.banner-wrapper-2 .banner-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.banner-wrapper-2 .banner-content.white {
  color: #fff;
}
/* Page Product_ddsy End */

/* Page Service Start */

.service-box {
  display: flex;
  flex-wrap: wrap;
}
.service-content-1 .service-box > li {
  width: 50%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-content-1 .service-box > li > img {
  display: block;
  width: 80px;
  height: 80px;
}
.service-content-1 .service-box > li > h3 {
  font-size: 16px;
  color: #3e3a39;
  margin-top: 12px;
}
.service-content-1 .service-box > li > p {
  font-size: 12px;
  color: #727171;
  margin-top: 8px;
}
.service-content-4 .service-box {
  margin-bottom: 16px;
  justify-content: center;
}
.service-content-4 .service-box > li {
  width: 48%;
  padding: 24px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1%;
}
.service-content-4 .service-box > li > h3 {
  font-size: 16px;
  color: #3e3a39;
  position: relative;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding-left: 28px;
}
.service-content-4 .service-box > li > p {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #727171;
  margin-top: 12px;
  line-height: 24px;
}
.service-content-7 {
  overflow: hidden;
}
.service-content-7 .service-box {
  flex-wrap: nowrap;
  animation: serviceMove 40s linear 0s infinite;
}
.service-content-7 .service-box > li {
  width: 240px;
  flex-shrink: 0;
  padding: 0 8px;
}

@keyframes serviceMove {
  100% {
    transform: translate(-1440px);
  }
}
.service-content-7 .service-item {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.service-content-7 .service-item_hd {
  position: relative;
  width: 100%;
  padding-top: 75%;
  border-radius: 20px;
  overflow: hidden;
}
.service-content-7 .service-item_hd > img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  object-fit: cover;
}
.service-content-7 .service-item_bd {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 16px;
}
.service-content-7 .service-item_bd > img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-top: -32px;
  z-index: 10;
  position: relative;
  margin-bottom: 16px;
}
.service-content-7 .service-item_bd > p {
  font-size: 12px;
  color: #727171;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-content-7 .service-item_bd > h3 {
  font-size: 32px;
  color: #3e3a39;
  margin-top: 24px;
}
.service-content-7 .service-item_bd > h3 > span {
  font-size: 14px;
  color: #727171;
  margin-left: 4px;
}
/* Page Service End */

/* Page Partners Start */

.partners-content-1 {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

@keyframes mapBgBreath {
  0%{
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.partners-content-1::before,
.partners-content-1::after {
  content: "";
  display: block;
  background-image: radial-gradient(transparent, rgba(255, 115, 0, 0.1));
  border-radius: 50%;
  position: absolute;
  animation: mapBgBreath 2s linear 0s infinite;
  z-index: 1;
  width: 200%;
  padding-top: 200%;
  left: -50%;
  bottom: -160%;
}
.partners-content-1::after {
  animation-delay: .3s;
}

.partners-content-1 .partners-img {
  position: relative;
  z-index: 10;
}

.partners-box{
  display: flex;
  flex-wrap: wrap;
}

.partners-content-2 .partners-box>li{
  width: 50%;
  background-image: linear-gradient(180deg, #F3F3F3, #F2EEEA);
}
.partners-content-2 .partners-box>li:nth-child(even){
  background-image: linear-gradient(180deg, #F1F1F0, #FBE9DD);
}
.partners-content-2 .partners-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 8px;
}
.partners-content-2 .partners-item>img{
  display: block;
  width: 96px;
}
.partners-content-2 .partners-item>h3{
  font-size: 14px;
  color: #3E3A39;
  line-height: 1.6;
  margin-top: 8px;
}
.partners-content-2 .partners-item>p{
  font-size: 12px;
  color: #727171;
  line-height: 1.6;
  margin-top: 8px;
}
.partners-content-3 .partners-box>li{
  width: 100%;
  margin-bottom: 16px;
}
.partners-content-3 .partners-item{
  border: 1px solid #efefef;
  border-radius: 16px;
  padding: 24px 16px;
  height: 100%;
}
.partners-content-3 .partners-item>h3{
  font-size: 16px;
  line-height: 24px;
  color: #3E3A39;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position-y: 2px;
  padding-left: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #efefef;
}
.partners-content-3 .partners-item>p{
  font-size: 12px;
  color: #3E3A39;
  line-height: 1.6;
  margin-top: 12px;
}
.partners-content-3 .partners-item p:last-child{
  color: #727171;
  margin-top: 0;
  margin-top: 4px;
}

.partners-content-4 .partners-box>li{
  width: 100%;
  margin-bottom: 16px;
}
.partners-content-4 .partners-item_hd {
  position: relative;
  width: 100%;
  padding-top: 75%;
  border-radius: 20px;
  overflow: hidden;
}
.partners-content-4 .partners-item_hd > img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  object-fit: cover;
}
.partners-content-4 .partners-item_bd{
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  margin: -48px 8px 0;
  padding: 16px;
  text-align: center;
}
.partners-content-4 .partners-item_bd>h3{
  font-size: 16px;
  color: #3E3A39;
}
.partners-content-4 .partners-item_bd>p{
  font-size: 14px;
  color: #727171;
  line-height: 1.6;
  margin-top: 8px;
}
.partners-content-5 .partners-item{
  padding: 16px 56px;
}
.partners-content-5 .partners-item_hd{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .1);
}
.partners-content-5 .partners-item_hd>img{
  display: block;
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
}
.partners-content-5 .partners-item_hd>h3{
  font-size: 16px;
  color: #3E3A39;
}
.partners-content-5 .partners-item_bd{
  position: relative;
  height: 200px;
  padding: 32px;
  border-radius: 20px;
  background-image: linear-gradient(45deg, #FFC978, #FF8026);
  margin-top: 16px;
}
.partners-content-5 .partners-item_bd>p{
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}
.partners-content-5 .partners-item_bd::before,
  .partners-content-5 .partners-item_bd::after{
  content: '';
  display: block;
   width: 32px;
   height: 24px;
   position: absolute;
   background-repeat: no-repeat;
   background-size: contain;
   background-position: center;
}
.partners-content-5 .partners-item_bd::before{
   background-image: url(../images/content_5_dotb.png);
   bottom: -8px;
   left: 16px;
}
.partners-content-5 .partners-item_bd::after{
   background-image: url(../images/content_5_dott.png);
   top: -8px;
   right: 16px;
}
.partners-box{
  position: relative;
}
.partners-box .swiper-arrows{
  display: block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
.partners-box .swiper-arrows.swiper-arrows-prev{
  left: 0;
}
.partners-box .swiper-arrows.swiper-arrows-next{
  right: 0;
}
/* Page Partners End */
