﻿html,
body {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1640px) {
  .container {
    width: 1600px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1240px) and (max-width: 1639px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1239px) {
  .container {
    width: 980px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: 690px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .container {
    margin: 0 20px;
  }
}

/* header */
.header-fix {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all ease 0.2s;
  user-select: none;
}
.header-fix.bg {
  height: 80px;
  padding: 10px 32px;
  background-color: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 31%);
}
.header-fix .menu-toggle {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  width: 58px;
  padding-left: 24px;
}
.header-fix .logo {
  width: 76px;
  height: 38px;
  transition: all ease 0.2s;
}
.header-fix .bd-ico {
  width: 50px;
  height: 30px;
  transition: all ease 0.2s;
}
.header-fix.bg .logo {
  width: 57px;
  height: auto;
}
.header-fix.bg .bd-ico {
  width: 34px;
  height: auto;
}

.header-fix .logo.white,
.header-fix .bd-ico.white {
  display: none;
}
.header-fix.white .logo.white,
.header-fix.white .bd-ico.white {
  display: block;
}
.header-fix.white .logo.default,
.header-fix.white .bd-ico.default {
  display: none;
}
.header-fix .cnt-link {
  display: none;
}
.header-fix.bg .cnt-link {
  display: block;
}
@media screen and (max-width: 767px) {
  .header-fix.bg .cnt-link {
    display: none;
  }
}
.header-fix .cnt-link ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  line-height: 60px;
  font-size: 20px;
}
.header-fix .cnt-link ul li {
  width: 150px;
  text-align: center;
}
.header-fix .cnt-link ul li a {
  display: block;
}
@media screen and (max-width: 1199px) {
  .header-fix .cnt-link ul li {
    width: 130px;
  }
}
@media screen and (max-width: 960px) {
  .header-fix .cnt-link ul li {
    width: 96px;
  }
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .header-fix.bg,
  .header-fix {
    height: 60px;
    padding: 10px 32px;
    background-color: #fff;
  }
  .header-fix.no-bg {
    background-color: transparent;
  }
  .header-fix .logo {
    width: 57px;
    height: auto;
  }
  .header-fix .bd-ico {
    width: 34px;
    height: auto;
  }
  .main-container {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .header-fix.bg,
  .header-fix {
    height: 60px;
    padding: 10px 32px;
    background-color: #fff;
  }
  .header-fix.no-bg {
    background-color: transparent;
  }
  .header-fix .logo {
    width: 57px;
    height: auto;
  }
  .header-fix .bd-ico {
    width: 34px;
    height: auto;
  }
  .main-container {
    margin-top: 60px;
  }
}

/* menu */
.fullscreen-menu {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: #000;
  padding: 60px;
  overflow: auto;
  display: none;
}
.fullscreen-menu::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #ffffffdd;
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  backdrop-filter: saturate(150%) blur(8px);
  z-index: -1;
}
.fullscreen-menu .menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 96px;
  font-size: 16px;
}
.fullscreen-menu .menu-top a {
  margin-right: 6px;
}
.fullscreen-menu .menu-top .close {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 28px;
  color: #999;
  border: 1px solid #999;
  text-align: center;
  line-height: 56px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.fullscreen-menu .menu-top .close:hover {
  color: #333;
  border-color: #333;
}
.fullscreen-menu .menu-top .back-old {
  color: #999;
}
.fullscreen-menu .menu-top .back-old:hover {
  color: #1a8fcc;
}
.fullscreen-menu .menu-top .back-old svg {
  margin-right: 4px;
}

.fullscreen-menu .main-menu {
  display: flex;
  justify-content: center;
  padding-left: 80px;
}
.fullscreen-menu .main-menu .menu-top-level {
  width: 262px;
  margin: 0 15px;
  padding-left: 20px;
}
.fullscreen-menu .main-menu .menu-top-level .link-top {
  font-size: 28px;
  line-height: 48px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5em;
}
.fullscreen-menu .main-menu .menu-top-level .menu-child {
  font-size: 18px;
  line-height: 48px;
  font-weight: 400;
}
.fullscreen-menu .mobile-menu {
  display: none;
}
.fullscreen-menu .mobile-menu li {
  color: #000000;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5em;
  text-align: center;
  padding: 20px;
}
.fullscreen-menu .mobile-menu li a {
  display: block;
}

@media screen and (max-width: 1499px) {
  .fullscreen-menu .main-menu {
    padding: 0;
    justify-content: space-around;
  }
  .fullscreen-menu .main-menu .menu-top-level {
    width: auto;
    padding-left: 0;
  }
  .fullscreen-menu .menu-top {
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 1023px) {
  .fullscreen-menu {
    padding: 40px;
  }
  .fullscreen-menu .menu-top {
    margin-bottom: 36px;
  }
  .fullscreen-menu .main-menu .menu-top-level .link-top {
    font-size: 24px;
  }
  .fullscreen-menu .main-menu .menu-top-level .menu-child {
    font-size: 16px;
    line-height: 44px;
  }
  .fullscreen-menu .menu-top .close {
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 24px;
  }
  .fullscreen-menu .menu-top a.logo-link img {
    width: 57px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .fullscreen-menu {
    padding: 28px;
  }
  .fullscreen-menu .mobile-menu {
    display: block;
  }
  .fullscreen-menu .main-menu {
    display: none;
  }
  .fullscreen-menu .menu-top {
    font-size: 14px;
    align-items: flex-start;
  }
  .fullscreen-menu .menu-top a.logo-link {
    display: block;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 481px) {
  .fullscreen-menu .mobile-menu li {
    font-size: 24px;
  }

  .fullscreen-menu .menu-top .close {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 20px;
  }
}
@media screen and (orientation: landscape) and (max-height: 620px) {
  .fullscreen-menu {
    padding: 20px 40px;
  }
  .fullscreen-menu .menu-top {
    margin-bottom: 28px;
  }
}

/* footer-copy */
.footer-copy {
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-weight: 400;
  line-height: 28px;
}
.footer-copy .r {
  text-align: right;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .footer-copy {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer-copy {
    padding: 10px 20px;
    line-height: 22px;
    font-size: 12px;
  }
  .footer-copy .r {
    padding-left: 1em;
  }
}
@media screen and (max-width: 481px) {
  .footer-copy {
    padding: 12px 7px;
    line-height: 20px;
  }
  .footer-copy p {
    padding: 7px;
  }
  .footer-copy .r {
    padding-left: 7px;
  }
}

/* main section swiper */
.home-swipe-tip {
  position: absolute;
  bottom: 6px;
  left: 50%;
  font-size: 50px;
  color: #fff;
  z-index: 100;
  margin-left: -25px;
  animation: upDown infinite alternate 1s linear;
}
@keyframes upDown {
  from {
    transform: translateY(-10px);
    opacity: 0.3;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.swiper-vertical {
  width: 100%;
  height: 100%;
}

.slider,
.slider-item img {
  width: 100%;
  height: 100%;
}
.slider-item img {
  object-fit: cover;
}
.slider-item img.mobile {
  display: none;
}
.slider-pagination.swiper-horizontal > .swiper-pagination-bullets,
.slider-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 80px;
}
.main-container
  .slider-pagination.swiper-horizontal
  > .swiper-pagination-bullets,
.main-container
  .slider-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 30px;
}
.slider-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 4px;
  background-color: #fff;
  opacity: 0.5;
  border-radius: 0;
  margin: 0 5px;
}
.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .slider-item img.mobile {
    display: block;
  }
  .slider-item img.web {
    display: none;
  }
}

/* case */
.section-case {
  padding: 60px 0;
}

.case-out-box {
  max-height: 100%;
  overflow: hidden;
  position: relative;
}
.section-case .section-title,
.section-case .more,
.case-mobile-box {
  display: none;
}
.section-case.show-slogan .case-out-box {
  opacity: 0;
  visibility: hidden;
}
.case-out-box .top-fader,
.case-out-box .bottom-fader {
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  z-index: 10;
}
.case-out-box .top-fader {
  top: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffffff),
    to(#ffffff00)
  );
  background: linear-gradient(180deg, #ffffffff, #ffffff00);
  -webkit-backdrop-filter: saturate(100%) blur(5px);
  backdrop-filter: saturate(100%) blur(5px);
}
.case-out-box .bottom-fader {
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#ffffffff),
    to(#ffffff00)
  );
  background: linear-gradient(0deg, #ffffffff, #ffffff00);
  -webkit-backdrop-filter: saturate(100%) blur(5px);
  backdrop-filter: saturate(100%) blur(5px);
}
@keyframes slideUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
.section-case .case-wrapper {
  width: calc(100vw - 320px);
  margin: 0 auto;
  -webkit-animation: slideUp 32s linear infinite;
  animation: slideUp 32s linear infinite;
}
.section-case .case-wrapper:hover {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
@media screen and (max-width: 1239px) {
  .section-case .case-wrapper {
    width: calc(100% - 180px);
  }
}
@media screen and (max-width: 767px) {
  .section-case {
    padding: 60px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .section-case .section-title {
    display: block;
  }
  .case-out-box {
    display: none;
  }
  .case-mobile-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
  }
  .section-case .case-wrapper {
    width: 100%;
    padding: 0 20px;
    -webkit-animation: none;
    animation: none;
  }
  .section-case .more {
    display: block;
    width: 240px;
    height: 48px;
    line-height: 46px;
    color: #000;
    font-size: 20px;
    text-align: center;
    border: 1px solid #000;
    margin: 10px 0;
    border-radius: 6px;
  }
}
@media screen and (max-width: 481px) {
  .section-case .more {
    height: 36px;
    line-height: 34px;
    width: 160px;
    font-size: 16px;
  }
}
.case-wrapper.category-case {
  max-width: 1640px;
  padding: 60px 20px 0;
  margin: 0 auto;
}

.case-wrapper .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 4px 0;
}
.case-wrapper .row .item {
  width: calc(33.3% - 22px);
  height: auto;
  border-radius: 12px;
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
}
.case-wrapper.category-case .row .empty {
  width: calc(33.3% - 22px);
  opacity: 0;
}
.case-wrapper .row .item img {
  width: 100%;
  /* height: 344px; */
  display: block;
  object-fit: cover;
}
.case-wrapper .row .item .info-panel {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 80px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}
.case-wrapper .row .item .mobile-info-pannel {
  display: none;
  white-space: nowrap;
  overflow: hidden;
  color: #979797;
  font-size: 12px;
  line-height: 1.5em;
  padding: 8px 0;
}
.case-wrapper .row .item .mobile-info-pannel h4 {
  font-size: 14px;
  line-height: 2em;
  color: #262626;
}
@media screen and (min-width: 1921px) {
  .case-wrapper .row .item {
    width: calc(25% - 24px);
  }
  .case-wrapper.category-case .row .item {
    width: calc(33.3% - 22px);
  }
}
@media screen and (max-width: 1440px) {
  .case-wrapper.category-case {
    padding: 40px 20px 0;
  }
  .case-wrapper .row .item .info-panel {
    padding: 50px;
  }
  .case-wrapper .row .item img {
    /* height: 300px; */
  }
}
@media screen and (max-width: 1239px) {
  .case-wrapper .row .item .info-panel {
    padding: 10px 30px;
  }
}
@media screen and (max-width: 1023px) {
  .case-wrapper .row .item {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 899px) {
  .case-wrapper .row .item img {
    /* height: 260px; */
  }
}
@media screen and (max-width: 767px) {
  .case-wrapper.category-case {
    padding: 20px 20px 0;
  }
  .case-wrapper .row .item {
    margin-bottom: 20px;
    border-radius: 0;
  }
  .case-wrapper .row .item img {
    /* height: 232px; */
    border-radius: 8px;
  }
  .case-wrapper .row .item .mobile-info-pannel {
    display: block;
  }
}
@media screen and (max-width: 541px) {
  .case-wrapper.category-case {
    padding: 20px 16px 0;
  }

  .case-wrapper .row .item {
    width: 100%;
    margin-bottom: 16px;
  }
  .section-case .case-wrapper {
    padding: 0 14px;
  }
  .section-case .case-wrapper .row .item {
    width: calc(50% - 7px);
    border-radius: 8px;
    margin-bottom: 24px;
  }
  .case-wrapper .row .item img {
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .case-wrapper .row .item .info-panel,
  .case-wrapper .row .item:hover .info-panel {
    display: none;
  }
}
.case-wrapper .row .item .info-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #00000088;
  -webkit-backdrop-filter: saturate(100%) blur(2px);
  backdrop-filter: saturate(100%) blur(2px);
  z-index: -1;
}
.case-wrapper .row .item:hover .info-panel {
  visibility: visible;
  opacity: 1;
}
.case-wrapper .row .item .info-panel h4 {
  font-size: 36px;
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  line-height: calc(1em + 12px);
  max-width: 9em;
  max-height: calc(4em + 48px);
  overflow: hidden;
  margin-bottom: 0.5em;
}
.case-wrapper .row .item .info-panel p {
  font-size: 14px;
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  line-height: 28px;
}
@media screen and (max-width: 1239px) and (min-width: 1024px) {
  .case-wrapper .row .item .info-panel h4 {
    font-size: 28px;
    max-height: calc(3em + 36px);
  }
  .case-wrapper .row .item .info-panel p {
    line-height: 22px;
  }
}

/* service */
.section-service {
  padding-top: 100px;
}
@media screen and (max-width: 1023px) {
  .section-service {
    padding-top: 60px;
  }
}
.swiper-service {
  width: calc(100vw - 440px);
  margin: 0 auto;
  padding: 50px 0 20px;
}
.swiper-service .swiper-slide img {
  border-radius: 16px;
  display: block;
  box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 30%);
  opacity: 0.4;
  width: 100%;
}
.swiper-service .swiper-slide.swiper-slide-visible img {
  opacity: 1;
}
.swiper-service .swiper-slide.swiper-slide-active img {
  opacity: 1;
}
.service-btn-nav {
  font-size: 42px;
  color: #c9c9c9;
  position: absolute;
  top: calc(50% + 10px);
  cursor: pointer;
}
.service-btn-nav.service-btn-prev {
  left: 120px;
}
.service-btn-nav.service-btn-next {
  right: 120px;
}
.service-btn-nav:hover {
  color: #1a8fcc;
}
@media screen and (max-width: 1559px) {
  .swiper-service {
    width: calc(100vw - 320px);
    top: calc(35% + 22px);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1239px) {
  .swiper-service {
    width: 100vmin;
    padding: 50px 20px 20px;
  }
  .service-btn-nav.service-btn-prev {
    left: 80px;
  }
  .service-btn-nav.service-btn-next {
    right: 80px;
  }
}
@media screen and (max-width: 1023px) {
  .service-btn-nav.service-btn-prev {
    left: 40px;
  }
  .service-btn-nav.service-btn-next {
    right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-service {
    position: relative;
    top: 0;
    transform: translateY(0);
  }
  .service-btn-nav.service-btn-prev,
  .service-btn-nav.service-btn-next {
    display: none;
  }
}

/* product index & cate */
.section-product.section .section-title {
  display: none;
}
.product-swiper {
  height: 100%;
  width: 100%;
}

.product-cate-item,
.product-swiper .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  position: relative;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 45px;
}
@media screen and (max-width: 767px) {
  .section-product {
    background-color: #000;
    padding-top: 60px;
  }
  .section-product.section .section-title {
    display: block;
    color: #fff;
  }
  .product-swiper {
    height: calc(100% - 120px);
  }
  .product-swiper .swiper-slide {
    width: calc(100% - 60px);
    border-radius: 16px;
    padding: 56px 36px;
  }
}
@media screen and (max-width: 481px) {
  .product-swiper .swiper-slide {
    border-radius: 10px;
    padding: 36px 24px;
  }
}
@media screen and (max-width: 481px) and (max-height: 650px) {
  .product-swiper {
    height: calc(100% - 100px);
  }
  .product-swiper .swiper-slide {
    padding: 16px;
  }
}

.product-cate-list {
  max-width: 1640px;
  padding: 60px 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
.product-cate-list .product-cate-item {
  padding: 64px 48px;
  height: 820px;
  border-radius: 12px;
  width: calc(33.3% - 22px);
  margin-bottom: 32px;
  position: relative;
  z-index: 0;
}
.product-cate-list .product-cate-item-empty {
  width: calc(33.3% - 22px);
}

.product-cate-item.prod-01,
.product-swiper .swiper-slide.prod-01 {
  background-image: url(/Images/NodePic/20220802114124813.jpg);
}
.product-cate-item.prod-02,
.product-swiper .swiper-slide.prod-02 {
  background-image: url(/Images/NodePic/20220802144233846.jpg);
}

.product-cate-item.prod-03,
.product-swiper .swiper-slide.prod-03 {
  background-image: url(/Images/NodePic/20220802144344302.jpg);
}

.product-cate-item.prod-04,
.product-swiper .swiper-slide.prod-04 {
  background-image: url(/Images/NodePic/20220802144357928.jpg);
}

.product-cate-item.prod-05,
.product-swiper .swiper-slide.prod-05 {
  background-image: url(/Images/NodePic/20220802144413525.jpg);
}

.product-cate-item.prod-06,
.product-swiper .swiper-slide.prod-06 {
  background-image: url(/Images/NodePic/20220802144428481.jpg);
}

.product-cate-item.prod-07,
.product-swiper .swiper-slide.prod-07 {
  background-image: url(/Images/NodePic/20220802144442709.jpg);
}

.product-cate-item.prod-08,
.product-swiper .swiper-slide.prod-08 {
  background-image: url(/Images/NodePic/20220802144459359.jpg);
}

.product-cate-item.prod-09,
.product-swiper .swiper-slide.prod-09 {
  background-image: url(/Images/NodePic/20220802144514975.jpg);
}

.product-cate-item.prod-10,
.product-swiper .swiper-slide.prod-10 {
  background-image: url(/Images/NodePic/20220802144529816.jpg);
}
.product-cate-item::before,
.product-swiper .swiper-slide::before {
  background-color: rgba(0, 0, 0, 0.85);
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 102%;
  height: 102%;
  top: -1%;
  left: -1%;
}
@media screen and (max-width: 767px) {
  .product-cate-item::before,
  .product-swiper .swiper-slide::before {
    background-color: rgba(0, 0, 0, 0.65);
  }
}
.product-cate-item:hover::before,
.product-swiper .swiper-slide:hover::before {
  background-color: #177cb0b3;
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
}
.product-cate-item .prod-head,
.product-swiper .prod-head {
  transition: all ease 0.5s;
  transform-origin: top left;
}
.product-cate-item .prod-head.hover,
.product-swiper .prod-head.hover {
  transform: scale(1.1) translateY(20px);
}
.product-cate-item .prod-head h3,
.product-swiper .prod-head h3 {
  font-size: 42px;
  line-height: 58px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 16px;
}
.product-cate-item .prod-head h5,
.product-swiper .prod-head h5 {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 28px;
}
.product-cate-item .prod-bottom,
.product-swiper .prod-bottom {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.product-cate-item .prod-bottom .hover-out,
.product-swiper .prod-bottom .hover-out {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.product-cate-item .hover-in,
.product-swiper .swiper-slide .hover-in {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation-duration: 500ms;
}
.product-cate-item .btn-link,
.product-swiper .swiper-slide .btn-link {
  position: absolute;
  bottom: 0;
  padding: 0 0.5em;
  line-height: 40px;
  border-radius: 3px;
  border: 1px solid #fff;
  width: 128px;
  text-align: center;
  margin: 20px 0;
  display: block;
}
.product-cate-item .btn-link:hover,
.product-swiper .swiper-slide .btn-link:hover {
  color: #fff;
  background-color: #ffffff33;
}
.product-cate-item .hover-in .prod-func,
.product-swiper .swiper-slide .hover-in .prod-func {
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
}
.product-cate-item .hover-in .prod-func .item,
.product-swiper .swiper-slide .hover-in .prod-func .item {
  padding: 18px 0;
  display: flex;
  align-items: center;
  width: 170px;
}
.product-cate-item .hover-in .prod-func .item .icon-svg,
.product-swiper .swiper-slide .hover-in .prod-func .item .icon-svg {
  font-size: 24px;
  margin-right: 10px;
}
.product-cate-item .hover-in p,
.product-swiper .swiper-slide .hover-in p {
  font-size: 14px;
  line-height: 2em;
}
.product-cate-item:hover .hover-out,
.product-swiper .swiper-slide:hover .hover-out {
  display: none;
}

@media screen and (min-width: 768px) {
  .section-product.show-slogan .product-swiper .swiper-slide .hover-out,
  .section-product.show-slogan .product-swiper .swiper-slide .prod-head {
    display: none;
  }
}

.product-cate-item .divider,
.product-swiper .swiper-slide .divider {
  width: 48px;
  height: 5px;
  margin: 40px 0;
  background-color: #fff;
}
.product-cate-item .hover-out .divider,
.product-swiper .swiper-slide .hover-out .divider {
  background-color: #1a8fcc;
}
.product-cate-item .keypoint-wrap,
.product-swiper .swiper-slide .keypoint-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 288px;
}
.product-cate-item .keypoint-wrap .keypoint,
.product-swiper .swiper-slide .keypoint-wrap .keypoint {
  width: 120px;
  border: 1px solid #fff;
  height: 36px;
  line-height: 34px;
  text-align: center;
  border-radius: 3px;
  margin-right: 20px;
  margin-bottom: 20px;
}

@media screen and (orientation: landscape) and (max-aspect-ratio: 16/10) and (max-width: 1399px) and (min-width: 1024px) {
  .product-swiper .swiper-slide {
    padding: 80px 36px 40px;
  }
  .product-swiper .prod-head h3 {
    font-size: 28px;
    line-height: 40px;
  }
}
@media screen and (orientation: landscape) and (max-width: 1023px) and (min-width: 768px) {
  .product-swiper .swiper-slide {
    padding: 56px 36px;
  }
  .product-swiper .prod-head h3 {
    font-size: 28px;
    line-height: 40px;
  }
}

@media screen and (max-width: 1399px) {
  .product-cate-list .product-cate-item {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 1000px) and (min-width: 900px) {
  .product-cate-item .hover-in .prod-func .item,
  .product-swiper .swiper-slide .hover-in .prod-func .item {
    width: 50%;
  }
}
@media screen and (max-width: 899px) {
  .product-cate-list .product-cate-item {
    width: 100%;
  }
  .product-cate-item .keypoint-wrap,
  .product-swiper .swiper-slide .keypoint-wrap {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .product-cate-list {
    padding: 40px 20px 0;
  }
  .product-cate-list .product-cate-item {
    padding: 56px 36px;
    height: 804px;
  }
}
@media screen and (max-width: 521px) {
  .product-cate-item .prod-head h3,
  .product-swiper .prod-head h3 {
    font-size: 28px;
    line-height: 40px;
  }
  .product-cate-item .prod-head h5,
  .product-swiper .prod-head h5 {
    font-size: 16px;
  }
  .product-cate-item .divider,
  .product-swiper .swiper-slide .divider {
    margin: 30px 0;
  }
}

@media screen and (max-width: 481px) {
  .product-cate-list .product-cate-item {
    height: 720px;
    padding: 36px 24px;
  }

  .product-cate-item .hover-in p,
  .product-swiper .swiper-slide .hover-in p {
    line-height: 1.5em;
  }
  .product-cate-item .prod-head h3,
  .product-swiper .prod-head h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .product-cate-item .prod-head h5,
  .product-swiper .prod-head h5 {
    font-size: 14px;
  }
  .product-cate-item .hover-in .prod-func .item,
  .product-swiper .swiper-slide .hover-in .prod-func .item {
    padding: 14px 0;
    width: 50%;
    font-size: 12px;
  }
  .product-cate-item .hover-in .prod-func .item .icon-svg,
  .product-swiper .swiper-slide .hover-in .prod-func .item .icon-svg {
    font-size: 20px;
    margin-right: 8px;
  }
  .product-cate-item .btn-link,
  .product-swiper .swiper-slide .btn-link {
    width: 112px;
    margin: 14px 0;
    line-height: 36px;
  }
  .product-cate-item .keypoint-wrap .keypoint,
  .product-swiper .swiper-slide .keypoint-wrap .keypoint {
    width: calc(50% - 20px);
  }

  .product-cate-item .divider,
  .product-swiper .swiper-slide .divider {
    margin: 16px 0;
  }
}

@media screen and (max-width: 481px) and (max-height: 650px) {
  .product-swiper .swiper-slide .hover-in .prod-func .item {
    padding: 8px 0;
  }
  .product-swiper .swiper-slide .keypoint-wrap .keypoint {
    margin-right: 16px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 360px) {
  .product-cate-list {
    padding: 32px 14px 0;
  }
  .product-cate-list .product-cate-item {
    height: 560px;
    border-radius: 8px;
  }
  .product-cate-item .keypoint-wrap,
  .product-swiper .swiper-slide .keypoint-wrap {
    width: auto;
  }
}

.section-case .slogan,
.section-product .slogan {
  position: absolute;
  z-index: 1000;
  color: #fff;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 1.5em;
  font-size: 120px;
  font-weight: 600;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-case .slogan p,
.section-product .slogan p {
  --headline-gradient-start: #194bb5;
  --headline-gradient-end: #009de4;
  --headline-gradient-shimmer: #5ac8fa;
  --headline-gradient-direction: 90deg;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  --gradient-highlight-spread: 20%;
  --gradient-shimmer-angle: 100deg;
  --gradient-position: 140%;
  --gradient-position-start: 140;
  --gradient-position-end: -40;
  background-image: linear-gradient(
      var(--gradient-shimmer-angle),
      transparent calc(50% - var(--gradient-highlight-spread)),
      var(--headline-gradient-shimmer),
      transparent calc(50% + var(--gradient-highlight-spread))
    ),
    linear-gradient(
      var(--headline-gradient-direction),
      var(--headline-gradient-start),
      var(--headline-gradient-end)
    );
  background-repeat: no-repeat;
  background-size: 200% 100%, 100% 100%;
  background-position: var(--gradient-position) 50%, 50% 50%;
  transition: all ease 0.5s;
  animation-duration: 1.5s;
}
.section-product .slogan p:hover {
  --gradient-position: -30%;
}
.section-case.show-slogan .slogan,
.section-product.show-slogan .slogan {
  display: flex;
}
@media screen and (max-width: 1239px) {
  .section-case .slogan,
  .section-product .slogan {
    font-size: 100px;
  }
}
@media screen and (max-width: 1023px) {
  .section-case .slogan,
  .section-product .slogan {
    font-size: 84px;
  }
}
@media screen and (max-width: 767px) {
  .section-case.show-slogan .slogan,
  .section-product.show-slogan .slogan {
    display: none;
  }
  .section-case.show-slogan .case-out-box {
    opacity: 1;
    visibility: visible;
  }
}

/* client */
.section-client {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.clients-list {
  width: 1720px;
  position: relative;
  overflow: hidden;
  margin: 24px auto;
}
.clients-list .left-fader,
.clients-list .right-fader {
  position: absolute;
  z-index: 10;
  top: 0;
  height: 100%;
  width: 220px;
}
.clients-list .left-fader {
  left: 0;
  background: linear-gradient(to right, #fff, #ffffff00);
}
.clients-list .right-fader {
  right: 0;
  background: linear-gradient(to left, #fff, #ffffff00);
}

@keyframes slideToRight {
  from {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
  }
}
@-webkit-keyframes slideToRight {
  from {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
  }
}

.clients-list .cnt-box .item {
  display: flex;
  width: fit-content;
  align-items: center;
  -webkit-animation: slideToRight 42s linear infinite;
  animation: slideToRight 42s linear infinite;
}
.clients-list .cnt-box .item:nth-child(odd) {
  -webkit-animation: slideToRight 36s linear infinite;
  animation: slideToRight 36s linear infinite;
}
.clients-list .cnt-box .item:nth-child(4) {
  -webkit-animation: slideToRight 48s linear infinite;
  animation: slideToRight 48s linear infinite;
}
.clients-list .cnt-box .item img {
  display: block;
  user-select: none;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .section-client {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .section-client {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .clients-list .cnt-box .item img {
    height: auto;
    width: 100vw;
  }
}
@media screen and (max-width: 767px) {
  .clients-list .cnt-box .item img {
    height: 60px;
  }
}

/* main setion swiper current side tip */
.page-names {
  position: fixed;
  z-index: 1000;
  height: 190px;
  left: 0;
  top: 50%;
  margin-top: -95px;
}
.page-names .name-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 106px;
}
.page-names .name-item::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #c9c9c9;
}
.page-names .name-item.current::before {
  background-color: #1a8fcc;
  width: 64px;
}
.page-names .name-item span {
  font-size: 16px;
  line-height: 18px;
  opacity: 0;
  color: #1a8fcc;
  visibility: hidden;
  margin-left: 10px;
  white-space: nowrap;
}
.page-names .name-item.current span {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1239px) {
  .page-names .name-item {
    width: 86px;
  }
  .page-names .name-item.current span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .page-names {
    display: none;
  }
}

/* section title */
.section .section-title {
  font-size: 40px;
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  color: #000000;
  line-height: calc(1.5em);
  padding: 18px 0;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .section .section-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .section .section-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 481px) {
  .section .section-title {
    font-size: 24px;
  }
}

/* category page */
.cate-banner {
  width: auto;
  height: 31.25vw;
  position: relative;
}
.cate-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.cate-banner .count-down,
.cate-banner .cate-txt {
  font-size: 80px;
  font-family: HarmonyOS Sans SC;
  font-weight: 300;
  line-height: 1em;
  color: #ffffff;
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  top: calc(50% - 64px);
  text-align: center;
}
.cate-banner .count-down {
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.cate-banner .count-down .divider {
  width: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 100px;
}
.cate-banner .count-down .val {
  font-size: 114px;
  line-height: 1em;
  vertical-align: top;
  font-weight: bold;
}
.cate-banner .count-down .desc {
  font-size: 24px;
  line-height: 2em;
  white-space: nowrap;
}
.cate-banner .count-down sup {
  font-size: 40px;
  line-height: 1em;
  font-weight: bold;
}
.cate-banner .count-down .item p:not(.desc) {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 1239px) {
  .cate-banner {
    height: 360px;
  }
  .cate-banner .count-down,
  .cate-banner .cate-txt {
    font-size: 60px;
  }
  .cate-banner .count-down .divider {
    margin: 0 80px;
  }
  .cate-banner .count-down .val {
    font-size: 60px;
  }
  .cate-banner .count-down sup {
    font-size: 24px;
  }
  .cate-banner .count-down .desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  .cate-banner .count-down,
  .cate-banner .cate-txt {
    font-size: 40px;
    padding: 0 1em;
    top: calc(50% - 20px);
    line-height: calc(1em + 10px);
  }
  .cate-banner .count-down {
    top: calc(50% - 40px);
  }

  .cate-banner .count-down .divider {
    margin: 0 60px;
  }
  .cate-banner .count-down .val {
    font-size: 48px;
  }
  .cate-banner .count-down sup {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cate-banner {
    height: 280px;
  }
  .cate-banner .count-down,
  .cate-banner .cate-txt {
    font-size: 32px;
    top: calc(50% - 16px);
  }
  .cate-banner .count-down .divider {
    margin: 0 40px;
  }
  .cate-banner .count-down {
    top: calc(50% - 40px);
  }
}
@media screen and (max-width: 481px) {
  .cate-banner {
    height: 200px;
  }
  .cate-banner .count-down,
  .cate-banner .cate-txt {
    top: calc(50% - 1em);
  }
  .cate-banner .count-down .divider {
    margin: 0 30px;
  }
  .cate-banner .count-down .val {
    font-size: 36px;
  }
  .cate-banner .count-down sup,
  .cate-banner .count-down .desc {
    font-size: 12px;
  }
}

/* sub-nav */
.sub-nav {
  height: 68px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* position: sticky; */
  /* z-index: 1002; */
  background: #fff;
  top: 0;
}
.sub-nav .sub-item {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 65px;
  border-bottom: 3px solid transparent;
  margin: 0 56px;
}
.sub-nav .sub-item.current {
  color: #1a8fcc;
  border-color: #1a8fcc;
}
.sub-nav .sub-item:hover {
  color: #1a8fcc;
  border-color: #1a8fcc;
}
.sub-nav .sub-item a {
  display: block;
  padding: 3px 4px 0;
}
@media screen and (max-width: 1239px) {
  .sub-nav .sub-item {
    margin: 0 28px;
  }
}
@media screen and (max-width: 1023px) {
  .sub-nav {
    height: 60px;
  }
  .sub-nav .sub-item {
    font-size: 16px;
    line-height: 57px;
  }
}
@media screen and (max-width: 767px) {
  .sub-nav {
    position: static;
    z-index: 1;
    height: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 20px 10px 2px;
    box-shadow: none;
  }

  .sub-nav .sub-item {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    line-height: 44px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    text-align: center;
  }
  .sub-nav .sub-item.current {
    border-color: #1a8fcc;
    background-color: #1a8fcc;
    color: #fff;
  }
}
@media screen and (max-width: 481px) {
  .sub-nav {
    padding: 15px 8px 1px;
  }
  .sub-nav .sub-item {
    width: calc(50% - 16px);
    margin: 0 8px 15px;
    font-size: 14px;
    line-height: 40px;
  }
  .sub-nav .sub-item a {
    padding: 0;
  }
}

/* pager */

.hope_pager_web,
.hope_pager_mobile {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.inputPager_des {
  display: none;
}

.hope_pager_web .inputPager_page a {
  display: inline-block;
  margin-left: 10px;
  padding: 0 7px;
  border: 1px solid #eee;
  background-color: #fff;
  color: #646464;
  line-height: 26px;
  min-width: 28px;
  text-align: center;
  border-radius: 4px;
}
.hope_pager_web .inputPager_page a.p_1st,
.hope_pager_web .inputPager_page a.p_last {
  display: none;
}

.hope_pager_mobile .inputPager_page a {
  display: inline-block;
  padding: 0 3px;
  background-color: #fff;
  color: #646464;
  line-height: 26px;
  min-width: 28px;
  text-align: center;
  border-radius: 4px;
}

.hope_pager_web .inputPager_page input {
  margin-left: 7px;
  padding: 0 7px;
  border: 1px solid #eee;
  background-color: #fff;
  color: #646464;
  vertical-align: top;
  border-radius: 4px;
}

.hope_pager_mobile .inputPager_page input {
  margin-left: 7px;
  padding: 0 5px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #b59563;
  vertical-align: top;
  border-radius: 4px;
}
.hope_pager_web a:not([disabled="disabled"]):hover,
.hope_pager_web a.p_cur {
  background-color: #1a8fcc;
  border-color: #1a8fcc;
  color: #fff;
}

#pageNum {
  width: 20px;
  margin-left: 7px;
  height: 24px;
  -webkit-appearance: none;
}
#pageNum:hover {
  border-color: #1a8fcc;
}

#btnPage {
  background: #b2b2b2;
  color: #fff;
  cursor: pointer;
  border: none;
  height: 26px;
  -webkit-appearance: none;
}
#btnPage:hover {
  background-color: #1a8fcc;
}

.hope_pager_mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .hope_pager_web .inputPager_page input {
    display: none;
  }
}

/* footer */
.site-footer {
  padding: 40px 0 0;
  background-color: #f2f2f2;
}
.site-footer .inner-footer {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  color: #000;
}
.site-footer .inner-footer .link-top {
  font-size: 18px;
  line-height: 40px;
}
.site-footer .inner-footer .menu-child,
.site-footer .inner-footer .contact-detail {
  font-size: 14px;
  line-height: 32px;
  padding-top: 6px;
  color: #595959;
  font-weight: 400;
}
.site-footer .inner-footer .contact .qrcode {
  width: 84px;
  height: 84px;
  display: block;
  margin-top: 6px;
}
.site-footer .copyright {
  text-align: center;
  line-height: 1.5em;
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  color: #666;
}
.site-footer .copyright a {
  margin-right: 0.5em;
}
@media screen and (max-width: 1640px) {
  .site-footer .inner-footer {
    padding: 0 20px;
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .site-footer .inner-footer {
    display: none;
  }
  .site-footer {
    padding: 0;
  }
  .site-footer .copyright {
    margin-top: 0;
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .site-footer .copyright {
    font-size: 12px;
  }
}

/* news */
.news-wrapper {
  max-width: 1240px;
  padding: 80px 20px 20px;
  margin: 0 auto;
}
.news-wrapper .item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.news-wrapper .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.news-wrapper .item .poster {
  width: 750px;
  flex: 0 0 auto;
  height: 500px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transform: rotate(0);
}
.news-wrapper .item .poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .news-wrapper .item:hover .poster img {
    transform: scale(1.08);
  }
}
.news-wrapper .item .info-panel {
  width: 520px;
  height: 330px;
  background-color: #f9f9f9c7;
  padding: 60px 64px;
  margin-left: -60px;
  position: relative;
  z-index: 2;
}
.news-wrapper .item:nth-child(2n) .info-panel {
  margin-left: 0;
  margin-right: -60px;
}
.news-wrapper .item .info-panel h3 {
  font-size: 24px;
  --line: 40px;
  line-height: var(--line);
  max-height: calc(var(--line) * 2);
  overflow: hidden;
  text-align: justify;
  font-weight: bold;
}
.news-wrapper .item .info-panel p {
  font-size: 14px;
  color: #959595;
  margin: 0.5em 0;
  line-height: 2em;
  max-height: 6em;
  overflow: hidden;
}
@media screen and (max-width: 1239px) {
  .news-wrapper .item .poster {
    width: 600px;
    flex: 1 0 auto;
    height: 420px;
  }
}
@media screen and (max-width: 1023px) {
  .news-wrapper .item .poster {
    width: 450px;
    flex: 1 0 auto;
    height: 320px;
  }
  .news-wrapper .item .info-panel {
    width: 480px;
    height: 240px;
    padding: 40px 48px;
  }
  .news-wrapper .item .info-panel h3 {
    font-size: 20px;
    --line: 32px;
  }
}
@media screen and (max-width: 767px) {
  .news-wrapper {
    padding-top: 40px;
  }
  .news-wrapper .item {
    display: block;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
  }
  .news-wrapper .item .poster {
    height: auto;
  }
  .news-wrapper .item .info-panel,
  .news-wrapper .item:nth-child(2n) .info-panel {
    width: 100%;
    margin: 0;
    padding: 28px;
    height: auto;
  }
}
@media screen and (max-width: 481px) {
  .news-wrapper {
    padding: 20px 14px;
  }
  .news-wrapper .item {
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .news-wrapper .item .info-panel,
  .news-wrapper .item:nth-child(2n) .info-panel {
    padding: 16px;
  }
  .news-wrapper .item .info-panel h3 {
    font-size: 18px;
    --line: 26px;
  }
  .news-wrapper .item .info-panel p {
    font-size: 12px;
  }
}
@media screen and (max-width: 360px) {
  .news-wrapper .item {
    margin-bottom: 15px;
    border-radius: 8px;
  }
  .news-wrapper .item .info-panel {
    background-color: #f2f3f9;
  }
}

/*** 服务/产品页面 ***/
.prodList .prod,
.prodList .prod .container {
  position: relative;
  height: 450px;
}

.prodImgLeft,
.prodImgRight {
  position: absolute;
}

.prodIntro {
  position: absolute;
  top: 0;
  width: 450px;
  z-index: 30;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.prodList .toL {
  left: 0;
}

.prodList .toR {
  right: 0;
}

.prodImgLeft,
.prodImgRight {
  top: 30px;
  width: 560px;
  z-index: 20;
}

.prodImgLeft img,
.prodImgRight img {
  display: block;
  width: 100%;
}

.prodList .prod .name {
  font-size: 36px;
  margin-bottom: 18px;
  line-height: 54px;
  color: #1a8fcc;
}

.prodList .prod .introTxt {
  font-size: 14px;
  line-height: 24px;
  color: #525252;
}

.prodList .prod .more {
  line-height: 40px;
  height: 40px;
  color: #fff;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 24px;
  display: inline-block;
  background-color: #1a8fcc;
}
.prodList .prod .more:hover {
  background-color: #009de4;
}

.prodList .prod.softDev,
.prodList .prod.wechatDev,
.prodList .prod.appletDev,
.prodList .prod.design {
  background-color: #f2f2f2;
}

@media screen and (max-width: 1239px) {
  .prodList .prod,
  .prodList .prod .container {
    height: 400px;
  }
  .prodImgLeft,
  .prodImgRight {
    top: 40px;
    width: 448px;
  }
}

@media screen and (max-width: 1023px) {
  .prodList .prod,
  .prodList .prod .container {
    height: 310px;
  }
  .prodImgLeft,
  .prodImgRight {
    display: none;
  }
  .prodIntro {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .prodList.servicepage {
    text-align: center;
  }
  .prodIntro {
    align-items: center;
  }
  .prodList.servicepage .container {
    overflow: hidden;
  }
}

.prodList .prod.structure .name {
  color: #6699cc;
}

.prodList .prod.structure .more {
  background-color: #6699cc;
}

.prodList .prod.website .name {
  color: #fca300;
}

.prodList .prod.website .more {
  background-color: #fca300;
}

.prodList .prod.softDev .name {
  color: #41c5bf;
}

.prodList .prod.softDev .more {
  background-color: #41c5bf;
}

.prodList .prod.Appdesign .name {
  color: #5dbce8;
}

.prodList .prod.Appdesign .more {
  background-color: #5dbce8;
}

.prodList .prod.wechatDev .name {
  color: #44b549;
}

.prodList .prod.wechatDev .more {
  background-color: #44b549;
}

.prodList .prod.appletDev .name {
  color: #605ab0;
}

.prodList .prod.appletDev .more {
  background-color: #605ab0;
}

.prodList .prod.drupalDev .name {
  color: #2aa8e0;
}

.prodList .prod.drupalDev .more {
  background-color: #2aa8e0;
}

.prodList .prod.design .name {
  color: #fd6067;
}

.prodList .prod.design .more {
  background-color: #fd6067;
}

.intro-container {
  width: 1400px;
  margin: 0 auto;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}
.intro-container:last-child {
  border: none;
}

.intro-container .name h3 {
  font-size: 40px;
  line-height: 1.5em;
  font-weight: 400;
  color: #000000;
}
.intro-container .name p {
  font-size: 24px;
  line-height: 32px;
}
.intro-container .name p.sub-tip {
  font-size: 14px;
  color: #999;
}
.intro-container .intro-download {
  margin-top: 36px;
}
.intro-container .intro-download img {
  width: 156px;
  height: 204px;
  display: block;
}

.intro-container .detail-content {
  width: 1020px;
  font-size: 16px;
  line-height: 2em;
}
.intro-container .detail-content p {
  text-align: justify;
}
.contactInfoMapContainer {
  width: 100%;
  height: 610px;
}
.contactInfoMapContainer .contactInfoMap {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.intro-container .detail-content .contact-info {
  width: 750px;
  height: 220px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  transform: translateY(-120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 56px 42px 42px;
  font-size: 16px;
  line-height: 36px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  color: #333333;
}
.intro-container .detail-content .contact-info .qrcode {
  width: 114px;
  height: 114px;
  display: block;
}
.intro-container .detail-content .contact-info .qrcode + span {
  font-size: 14px;
  text-align: center;
  display: block;
  line-height: 22px;
}

.intro-container .customers-list {
  display: flex;
  flex-wrap: wrap;
}
.intro-container .customers-list li {
  width: 25%;
  height: 120px;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
}
.intro-container .customers-list li img {
  width: 180px;
  display: block;
  margin: auto;
  z-index: 99;
  max-width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.intro-container .customers-list li:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.intro-container .software-copyright {
  display: flex;
  flex-wrap: wrap;
}
.intro-container .software-copyright li {
  width: 20%;
  padding: 12px;
  max-height: 264px;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
}
.intro-container .software-copyright li img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1430px) {
  .intro-container {
    width: 100%;
    padding: 48px 20px;
  }
  .intro-container .detail-content {
    flex: 1;
    padding-left: 40px;
  }
}
@media screen and (max-width: 1239px) {
  .intro-container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 32px 30px;
  }
  .intro-container .name {
    margin-bottom: 16px;
  }
  .intro-container .name p {
    display: none;
  }
  .intro-container .detail-content {
    width: 100%;
    padding: 0;
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 1023px) {
  .intro-container .name h3 {
    font-size: 36px;
    font-weight: bold;
  }
  .intro-container .customers-list li {
    height: 100px;
    padding: 20px 30px;
  }
  .intro-container .customers-list li img {
    width: 100%;
  }
  .intro-container .software-copyright li {
    width: 25%;
    height: auto;
    max-height: initial;
  }
}
@media screen and (max-width: 849px) {
  .intro-container .detail-content .contact-info {
    width: 100%;
    transform: translateY(0);
    box-shadow: none;
    padding: 36px 20px;
  }
}
@media screen and (max-width: 767px) {
  .intro-container {
    padding: 24px 20px;
  }
  .intro-container .name h3 {
    font-size: 24px;
  }
  .intro-container .detail-content {
    font-size: 15px;
  }
  .intro-container .customers-list li {
    width: 33.3%;
    height: 92px;
    padding: 16px 20px;
  }
  .intro-container .software-copyright li {
    width: 33.3%;
  }

  .intro-container .detail-content .contact-info {
    flex-wrap: wrap;
    height: auto;
    padding: 20px 0 0;
  }
  .intro-container .detail-content .contact-info p {
    width: 100%;
  }
  .intro-container .detail-content .contact-info .qrcode,
  .intro-container .detail-content .contact-info .qrcode + span {
    margin: 0 auto;
  }
}
@media screen and (max-width: 481px) {
  .intro-container .detail-content {
    font-size: 14px;
  }

  .intro-container .software-copyright li {
    width: 50%;
  }
}

/* content */
.path {
  font-size: 14px;
  line-height: 22px;
  padding: 22px 0 8px;
  color: #999;
}

.dynamicContent {
  padding-bottom: 50px;
}

.dynamicContent .title {
  font-size: 36px;
  line-height: calc(1em + 4px);
  padding: 20px 0;
  font-weight: bold;
  color: #1e1e1e;
}

.dynamicContent .info {
  margin-bottom: 50px;
}

.dynamicContent .info span {
  display: inline-block;
  font-size: 14px;
  color: #7f7f7f;
  margin-right: 32px;
  vertical-align: middle;
  line-height: 20px;
}

.dynamicContent .info .shareWrap {
  display: inline-block;
  vertical-align: middle;
  color: #7f7f7f;
}

.dynamicContent .info .shareWrap .bdsharebuttonbox {
  display: inline-block;
  vertical-align: middle;
}

.dynamicContent .contentBody {
  border-bottom: 1px dashed #c8c8c8;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.dynamicContent .contentBody p {
  line-height: 1.5;
  margin-bottom: 20px;
}

.dynamicContent .bottom {
  color: #7f7f7f;
  font-size: 14px;
  text-align: center;
}

.dynamicContent .bottom .bdsharebuttonbox {
  display: inline-block;
  vertical-align: middle;
}

.dynamicContent .bottom .btn-return {
  font-size: 16px;
  padding: 0 24px;
  width: 142px;
  height: 42px;
  line-height: 42px;
  display: block;
  color: #fff;
  border-radius: 4px;
  background-color: #fb8b01;
  margin: 15px auto;
}

.dynamicContent img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* 服务页面-IT架构 */
.Service {
  text-align: center;
}

.SerContent {
  padding: 80px 0;
}

.SerBottomZero {
  padding-bottom: 0px;
}

.ServiceTitle {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #2f2f2f;
  margin-bottom: 20px;
}

.ServiceSubtitle {
  font-size: 20px;
  text-align: center;
  color: #8f8f8f;
  margin-bottom: 50px;
  line-height: normal;
}

.SerContentTxt {
  font-size: 24px;
  color: #2f2f2f;
  margin-top: 24px;
}

.SerContentTxtSub {
  font-size: 16px;
  color: #8f8f8f;
  margin-top: 20px;
}

.SerContentTxtSubEng {
  font-size: 36px;
  color: #bebebe;
  font-weight: 300;
  margin-top: 8px;
}

.SerBgcolor {
  background-color: #f2f2f2;
}

.SerContent .ServiceButtom a:hover {
  color: #fff;
}

.IT2innerall {
}

.IT2inner {
  float: left;
  box-sizing: border-box;
  width: 32%;
  margin-right: 2%;
  padding: 36px;
  background-color: #fff;
  box-shadow: 2px 2px 1px #eaeaea;
}

.IT2inner:last-child {
  margin-right: 0px;
}

.IT4inner {
  float: left;
  box-sizing: border-box;
  width: 30%;
  padding: 36px;
}

.IT4inner:last-child {
  margin-right: 0px;
}

.arrowtor {
  background-image: url("images/arrow.png");
  width: 5%;
  height: 51px;
  background-position: center;
  background-repeat: no-repeat;
}

.IT4arrow {
  float: left;
  margin-top: 60px;
}

.ServiceButtom {
  width: 246px;
  height: 60px;
  border-radius: 4px;
  margin: 0 auto;
  color: #fff;
  font-size: 24px;
  box-sizing: border-box;
  padding: 17px;
  display: block;
}
a.ServiceButtom:hover {
  color: #fff;
}

.but1 {
  background-color: #6699cc;
}

.but1:hover {
  background-color: #5a85b0;
}

/* 服务页面-网站建设 */
.Web5inner {
  float: left;
  box-sizing: border-box;
  width: 28.3%;
  margin: 0 2.5% 5% 2.5%;
  margin-bottom: 40px;
  padding: 36px;
  background-color: #fcfcfc;
  box-shadow: 2px 2px 1px #eaeaea;
}

.Web5inner:last-child {
  margin-right: 0px;
}

.but2 {
  background-color: #fca300;
}

.but2:hover {
  background-color: #d58a00;
}

/* 服务页面-软件开发 */
.Software4inner {
  float: left;
  box-sizing: border-box;
  width: 28.3%;
  margin: 0 2.5%;
  padding: 36px;
  background-color: #f2f2f2;
}

.Software4inner:last-child {
  margin-right: 0px;
}

.but3 {
  background-color: #41c6be;
}

.but3:hover {
  background-color: #39b7b1;
}

/* 服务页面-微信开发 */
.WeChat1inner {
  float: left;
  box-sizing: border-box;
  width: 30%;
  margin-right: 5%;
  margin-bottom: 40px;
  padding: 36px;
  background-color: #fcfcfc;
  box-shadow: 2px 2px 1px #eaeaea;
}

.WeChat1inner:last-child {
  margin-right: 0px;
}

.but4 {
  background-color: #43b748;
}

.but4:hover {
  background-color: #42a447;
}
@media screen and (max-width: 1239px) {
  .SoftwareContainer1 img {
    width: 90%;
  }

  .SoftwareContainer2 .arrowtor {
    display: none;
  }

  .SoftwareContainer2 .IT4inner {
    width: 33%;
    padding: 4px;
  }

  .SoftwareContainer2 p {
    font-size: 16px;
    margin-top: 2px;
    margin-bottom: 8px;
  }

  .SoftwareContainer3 img {
    width: 90%;
  }

  .SoftwareContainer4 img {
    width: 80%;
  }
}
@media screen and (max-width: 1023px) {
  .SerContentTxt {
    font-size: 20px;
    margin-top: 10px;
  }

  .IT2inner {
    width: 90%;
    margin: 0 5% 2% 5%;
    padding: 30px;
  }

  .IT2innerall .IT2inner img {
    width: 10%;
  }
}
@media screen and (max-width: 767px) {
  .SerContent {
    padding: 40px 0;
  }

  .ServiceTitle {
    font-size: 30px;
  }

  .ServiceSubtitle {
    font-size: 16px;
    margin-left: 5%;
    margin-right: 5%;
  }

  .SerBottomZero {
    padding-bottom: 0px;
  }

  .SerContentTxtSubEng {
    display: none;
  }

  .IT2inner {
    padding: 20px;
  }

  .StructureContainer .IT4inner img {
    width: 8%;
    vertical-align: middle;
  }

  .StructureContainer .IT4arrow {
    float: initial;
    transform: rotate(90deg);
    margin: 0 auto;
    width: 25%;
  }

  .StructureContainer .IT4inner {
    float: initial;
    width: 100%;
    padding: 20px;
  }

  .StructureContainer .IT4inner .SerContentTxt {
    display: inline;
    vertical-align: middle;
    margin-left: 16px;
  }

  .WebContainer2 .arrowtor {
    display: none;
  }

  .WebContainer2 .IT4inner {
    float: initial;
    width: 100%;
    padding: 20px;
  }

  .WebContainer4 .IT4inner {
    width: 33%;
  }

  .WebContainer4 .arrowtor {
    display: none;
  }

  .ServiceButtom {
    width: 180px;
    height: 48px;
    border-radius: 4px;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    box-sizing: border-box;
    padding: 16px;
  }

  /* 服务页面-网站建设*/
  .Web5inner {
    padding: 20px;
  }

  .WebContainer5 .Web5inner img {
    width: 60%;
  }

  .WebContainer .arrowtor {
    display: none;
  }
  /* 服务页面-软件开发 */
  .SoftwareContainer2 img {
    width: 40%;
  }

  .SoftwareContainer4 .Software4inner {
    padding: 8px;
  }

  .Software4inner:last-child {
    margin-right: 0px;
  }

  .SoftwareContainer4 .SerContentTxt {
    font-size: 14px;
  }

  /* 服务 微信开发 */
  .WeChat1inner {
    padding: 10px;
  }

  .WeChat1inner img {
    width: 50%;
  }

  .WeChat1inner .SerContentTxt {
    font-size: 16px;
  }

  .WeChatContainer2 .arrowtor {
    display: none;
  }

  .WeChatContainer2 .IT4inner {
    padding: 10px;
    width: 33%;
  }

  .WeChatContainer2 .SerContentTxt {
    font-size: 16px;
  }

  .WeChatContainer2 img {
    width: 46%;
  }

  .WeChatContainer3 img {
    width: 80%;
  }
}
@media screen and (max-width: 481px) {
  .ServiceTitle {
    font-size: 24px;
  }
  .Web5inner {
    padding: 10px;
  }
  .WebContainer4 .IT4inner {
    padding: 16px 0;
  }
}

/* 产品子栏目 */
.ProductButton {
  width: 246px;
  height: 60px;
  border-radius: 4px;
  margin: 0 auto;
  color: #fff;
  font-size: 24px;
  box-sizing: border-box;
  padding: 17px;
  text-align: center;
  display: block;
}
.ProductButton:hover {
  color: #fff;
}

/* 产品页面-HopeCMS系统 */
.CMSheader {
  position: relative;
  padding: 0;
  width: 100%;
  height: 859px;
  max-height: 859px;
}

.CMSbanner {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 859px;
  max-height: 859px;
  z-index: 1;
  overflow: hidden;
}

.CMSbanner img {
  display: block;
  position: relative;
  height: 100%;
}

.CMSContent {
  height: 500px;
}

.CMSBgcolor {
  background-color: #f5f6f7;
}

.CMSSmallTitle {
  font-size: 40px;
  color: #1b4e8d;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.CMSFeatureList {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.CMS1Third {
  width: 30%;
  margin: 40px 0;
  text-align: center;
}

.CMS1Third img {
  width: 30%;
}

.CMS1Fourth {
  width: 23%;
  margin: 40px 0;
  text-align: center;
}

.CMSContentTxt {
  font-size: 28px;
  line-height: 1.5;
  color: #1b4e8d;
  text-align: center;
  margin-top: 28px;
}

.CMSContentSubTxt {
  font-size: 16px;
  line-height: 1.5;
  color: #1b4e8d;
  text-align: center;
  margin-top: 16px;
}

.CMSContent .container {
  position: relative;
}

.CMStoLImg,
.CMStoRImg {
  display: block;
  position: absolute;
}

.CMStoLImg {
  left: 0;
  top: 108px;
  width: 45%;
}

.CMStoRImg {
  right: 0;
  top: 72px;
  width: 50%;
}

.CMStoLImgMobile,
.CMStoRImgMobile {
  display: none;
}

.CMStoLTxt,
.CMStoLTxt2,
.CMStoRTxt,
.CMStoRTxt2,
.CMSCenterTxt {
  position: absolute;
}

.CMStoLTxt {
  left: 0;
  top: 160px;
  width: 600px;
}

.CMStoLTxt2 {
  left: 0;
  top: 160px;
  width: 600px;
}

.CMStoRTxt {
  right: 0;
  top: 160px;
  width: 600px;
}

.CMStoRTxt2 {
  right: 0;
  top: 180px;
  width: 600px;
}

.CMSCenterTxt {
  left: 0;
  top: 0;
  width: 100%;
}

.CMSCenterImg {
  width: 64%;
  margin-top: 40px;
}

.CMScontenth4 {
  font-size: 36px;
  color: #0093eb;
  margin-bottom: 20px;
  font-weight: normal;
  font-weight: 500;
}

.CMScontentp {
  font-size: 18px;
  color: #333;
  line-height: 30px;
}

.CMScontentMobile {
  display: none;
}

.CMSFootnote {
  font-size: 12px;
  color: #808080;
  margin-top: 24px;
  line-height: 24px;
}

.CMSContentCenter {
  text-align: center;
}

.CMSContentCenter h4 {
  padding-top: 60px;
  font-weight: normal;
  font-weight: 500;
}

.CMSFooter {
  padding: 60px 0;
}

.CMSBut {
  background-color: #0093eb;
}

.CMSBut:hover {
  background-color: #28b2f7;
}

.CMSBut a:hover {
  color: #fff;
}

/* 案例栏目页 */
@media screen and (min-width: 1921px) {
  .CMSheader,
  .CMSbanner {
    height: 43vw;
    max-height: unset;
  }

  .CMSbanner img {
    display: block;
    position: relative;
    width: 100%;
    height: unset;
  }
}

@media screen and (max-width: 1239px) {
  .CMSContent {
    height: 440px;
  }

  .CMSContent.CMSFeature {
    height: 480px;
  }

  .CMStoLTxt {
    width: 46%;
    margin: 0 4% 0 0;
    top: 150px;
  }

  .CMStoLTxt2 {
    width: 46%;
    margin: 0 4% 0 0;
    top: 150px;
  }

  .CMStoRTxt {
    width: 50%;
    margin: 0 0 0 5%;
    top: 144px;
  }

  .CMStoRTxt2 {
    width: 50%;
    margin: 0 0 0 5%;
    top: 144px;
  }
  .CMSSmallTitle,
  .FKSmallTitle,
  .AMSSmallTitle,
  .UISmallTitle,
  .JewelCRMSmallTitle,
  .FIMSSmallTitle,
  .EDSSmallTitle,
  .EDSSmallTitle {
    font-size: 36px;
  }
  .SmallTitleImg {
    width: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .CMSheader {
    margin-top: 40px;
    height: 450px;
    max-height: 450px;
  }

  .CMSbanner {
    height: 450px;
    max-height: 450px;
  }
  .CMSContent {
    height: 340px;
  }

  .CMSContent.CMSContentCenter {
    height: 360px;
  }

  .CMSContent.CMSFeature {
    height: 440px;
  }

  .CMSSmallTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .SmallTitleImg {
    width: 8%;
  }
  .CMS1Third,
  .CMS1Fourth {
    margin: 40px 0;
  }

  .CMS1Third img {
    width: 40%;
  }

  .CMSContentTxt {
    font-size: 22px;
  }

  .CMSContentSubTxt {
    display: none;
  }

  .CMStoLImg {
    top: 90px;
    width: 50%;
  }

  .CMStoRImg {
    top: 80px;
    width: 50%;
  }

  .CMStoLTxt {
    width: 46%;
    margin: 0 4% 0 0;
    top: 108px;
  }

  .CMStoLTxt2 {
    width: 46%;
    margin: 0 4% 0 0;
    top: 108px;
  }

  .CMStoRTxt {
    width: 46%;
    margin: 0 0 0 4%;
    top: 108px;
  }

  .CMStoRTxt2 {
    width: 46%;
    margin: 0 0 0 4%;
    top: 108px;
  }

  .CMScontenth4 {
    font-size: 30px;
  }

  .CMScontentp {
    font-size: 16px;
    line-height: 24px;
  }

  .CMSContentCenter h4 {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .CMSheader {
    margin-top: 40px;
    height: 300px;
    max-height: 300px;
  }

  .CMSbanner {
    height: 300px;
    max-height: 300px;
  }
  .CMSContent {
    height: auto;
    padding: 40px 0;
  }

  .CMSContent.CMSContentCenter {
    height: auto;
  }

  .CMSContent.CMSFeature {
    height: 440px;
  }
  .CMSSmallTitle {
    font-size: 24px;
  }

  .CMSContentCenter h4 {
    padding-top: 0;
  }
  .CMS1Third,
  .CMS1Fourth {
    margin: 40px 0;
  }

  .CMS1Third img {
    width: 50%;
  }
  .CMSContentTxt {
    font-size: 16px;
    margin-top: 16px;
  }

  .CMStoLImg,
  .CMStoRImg {
    display: none;
  }

  .CMSCenterImg {
    width: 72%;
  }

  .CMStoLImgMobile,
  .CMStoRImgMobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 20px auto 0 auto;
  }

  .CMScontentp {
    display: none;
  }

  .CMScontentMobile {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 2;
    text-align: center;
  }

  .CMStoRTxt,
  .CMStoRTxt2 {
    left: 0;
  }

  .CMStoLTxt,
  .CMStoLTxt2,
  .CMStoRTxt,
  .CMStoRTxt2,
  .CMSCenterTxt {
    position: relative;
    width: initial;
    top: 0;
    margin: 0;
  }

  .CMScontenth4 {
    font-size: 24px;
    text-align: center;
  }

  .ProductButton {
    width: 180px;
    height: 48px;
    border-radius: 4px;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    box-sizing: border-box;
    padding: 16px;
  }
}
@media screen and (max-width: 481px) {
  .CMSheader,
  .CMSbanner {
    height: 250px;
    max-height: 250px;
  }
  .CMSContent.CMSFeature {
    height: 380px;
  }
}

/* 产品页面-HopeLIMS */
.LIMSheader {
  position: relative;
  padding: 0;
  width: 100%;
  height: 837px;
  max-height: 837px;
}

.LIMSbanner {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 837px;
  max-height: 837px;
  z-index: 1;
  overflow: hidden;
}

.LIMSbanner img {
  display: block;
  position: relative;
  height: 100%;
}

.LIMSContent {
  height: 560px;
}

.LIMSContent.LIMSContentCenter {
  height: 560px;
}

.LIMSBgcolor {
  background-color: #f5fbf6;
}

.LIMSSmallTitle {
  font-size: 40px;
  color: #333;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.LIMSSmallTitle2 {
  font-size: 18px;
  color: #3cb348;
  text-align: center;
  margin-bottom: 60px;
}

.LIMSFeatureList {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.LIMS1inner {
  float: left;
  width: 20%;
  text-align: center;
}

.LIMS1innerDot {
  float: left;
  background-image: url(images/LIMS00dot.png);
  width: 6%;
  height: 10px;
  margin: 0;
}

.LIMSContentTxt {
  font-size: 28px;
  line-height: 1.5;
  color: #3cb348;
  text-align: center;
  margin-top: 28px;
}

.LIMSContentSubTxt {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin-top: 16px;
}

.LIMSContent .container {
  position: relative;
}

.LIMStoLImg,
.LIMStoRImg,
.LIMStoRImg2 {
  display: block;
  position: absolute;
}

.LIMStoLImg {
  left: 0;
  top: 80px;
  width: 40%;
}

.LIMStoRImg {
  right: 0;
  top: 150px;
  width: 50%;
}

.LIMStoRImg2 {
  right: 0;
  top: 90px;
  width: 50%;
}

.LIMStoLImgMobile,
.LIMStoRImgMobile {
  display: none;
}

.LIMStoLTxt,
.LIMStoLTxt2,
.LIMStoRTxt,
.LIMStoRTxt2 {
  position: absolute;
}

.LIMStoLTxt {
  left: 0;
  top: 220px;
  width: 600px;
}

.LIMStoLTxt2 {
  left: 0;
  top: 160px;
  width: 600px;
}

.LIMStoRTxt {
  right: 0;
  top: 220px;
  width: 600px;
}

.LIMStoRTxt2 {
  right: 0;
  top: 180px;
  width: 600px;
}

.LIMSCenterImg {
  width: 70%;
}

.LIMScontenth4 {
  font-size: 36px;
  color: #3cb348;
  margin-bottom: 20px;
  font-weight: normal;
  font-weight: 500;
}

.LIMScontentp {
  font-size: 18px;
  color: #333;
  line-height: 30px;
}

.LIMScontentMobile {
  display: none;
}

.LIMSFootnote {
  font-size: 12px;
  color: #808080;
  margin-top: 24px;
  line-height: 24px;
}

.LIMSContentCenter {
  text-align: center;
}

.LIMSContentCenter h4 {
  padding-top: 60px;
  font-weight: normal;
  font-weight: 500;
}

.LIMSFooter {
  padding: 60px 0;
}

.LIMSBut {
  background-color: #3cb348;
}

.LIMSBut:hover {
  background-color: #31963c;
}

.LIMSBut a:hover {
  color: #fff;
}

@media screen and (min-width: 1921px) {
  .LIMSheader,
  .LIMSbanner {
    height: 41.667vw;
    max-height: unset;
  }

  .LIMSbanner img {
    display: block;
    position: relative;
    width: 100%;
    height: unset;
  }
}

@media screen and (max-width: 1239px) {
  .LIMSContent {
    height: 440px;
  }

  .LIMSContent.LIMSContentCenter {
    height: 540px;
  }

  .LIMStoLImg {
    top: 70px;
    width: 40%;
  }

  .LIMStoRImg {
    top: 110px;
    width: 50%;
  }

  .LIMStoRImg2 {
    top: 70px;
    width: 50%;
  }

  .LIMStoLTxt {
    width: 46%;
    margin: 0 4% 0 0;
    top: 160px;
  }

  .LIMStoLTxt2 {
    width: 46%;
    margin: 0 4% 0 0;
    top: 160px;
  }

  .LIMStoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 160px;
  }

  .LIMStoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 160px;
  }
}
@media screen and (max-width: 1023px) {
  .LIMSheader {
    height: 450px;
    max-height: 450px;
  }

  .LIMSbanner {
    height: 450px;
    max-height: 450px;
  }

  .LIMSContent {
    height: 320px;
  }

  .LIMSContent.LIMSContentCenter {
    height: 380px;
  }

  .LIMSSmallTitle {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .LIMSSmallTitle2 {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .LIMS1inner {
    width: 20%;
    margin: 0 2.5%;
  }

  .LIMS1inner img {
    width: 80%;
  }

  .LIMS1innerDot {
    display: none;
  }

  .LIMSContentTxt {
    font-size: 22px;
  }

  .LIMSContentSubTxt {
    display: none;
  }

  .LIMStoLImg {
    top: 48px;
    width: 40%;
  }

  .LIMStoRImg {
    top: 96px;
    width: 50%;
  }

  .LIMStoRImg2 {
    top: 48px;
    width: 50%;
  }

  .LIMStoLTxt {
    width: 46%;
    margin: 0 4% 0 0;
    top: 108px;
  }

  .LIMStoLTxt2 {
    width: 46%;
    margin: 0 4% 0 0;
    top: 108px;
  }

  .LIMStoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 96px;
  }

  .LIMStoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 96px;
  }

  .LIMScontenth4 {
    font-size: 30px;
  }

  .LIMScontentp {
    font-size: 16px;
    line-height: 24px;
  }

  .LIMSContentCenter h4 {
    padding-top: 50px;
  }

  .LIMSCenterImg {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .LIMSheader {
    height: 330px;
    max-height: 330px;
  }

  .LIMSbanner {
    height: 330px;
    max-height: 330px;
  }

  .LIMSheader .container {
    width: 320px;
    margin-left: -160px;
  }

  .LIMSContent {
    height: auto;
    padding: 40px 0;
  }

  .LIMSContent.LIMSContentCenter {
    height: auto;
  }

  .LIMSContentCenter h4 {
    padding-top: 40px;
  }

  .LIMS1inner {
    width: 20%;
    margin: 0 2.5%;
  }

  .LIMSSmallTitle {
    font-size: 24px;
  }

  .LIMSContentTxt {
    font-size: 16px;
    margin-top: 16px;
  }

  .LIMStoLImg,
  .LIMStoRImg,
  .LIMStoRImg2 {
    display: none;
  }

  .LIMSCenterImg {
    display: none;
  }

  .LIMStoLImgMobile,
  .LIMStoRImgMobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 20px auto 0 auto;
  }

  .LIMScontentp {
    display: none;
  }

  .LIMScontentMobile {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 2;
    text-align: center;
  }

  .LIMStoRTxt,
  .LIMStoRTxt2 {
    left: 0;
  }

  .LIMStoLTxt,
  .LIMStoLTxt2,
  .LIMStoRTxt,
  .LIMStoRTxt2 {
    position: relative;
    width: initial;
    top: 0;
    margin: 0;
  }

  .LIMScontenth4 {
    font-size: 24px;
    text-align: center;
  }

  .LIMSCenterTxt {
    position: absolute;
    margin: 0 20px;
    left: 0;
    top: 108px;
    width: initial;
  }
}
@media screen and (max-width: 481px) {
  .LIMSheader,
  .LIMSbanner {
    height: 250px;
    max-height: 250px;
  }

  .LIMSFeatureList {
    flex-flow: row wrap;
  }

  .LIMS1inner {
    width: 46%;
    margin: 20px 0;
  }

  .LIMS1inner img {
    width: 64%;
  }
}

/* 产品页面-MMS系统 */
.MMSheader {
  position: relative;
  padding: 0;
  width: 100%;
  height: 831px;
  max-height: 831px;
}

.MMSbanner {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 831px;
  max-height: 831px;
  z-index: 1;
  overflow: hidden;
}

.MMSbanner img {
  display: block;
  position: relative;
  height: 100%;
}

.MMSCenterImg {
  display: block;
  width: 60%;
  margin: 0 auto;
}

.MMSspec {
  color: #383838;
}

.MMSContent {
  text-align: center;
}

.MMS1inner {
  float: left;
  text-align: center;
  width: 20%;
  margin: 0 6.25%;
  height: 320px;
}

.MMStitle {
  font-size: 24px;
  color: #383838;
  margin: 20px 0;
}

.MMSpara {
  font-size: 16px;
  color: #383838;
  line-height: 28px;
  text-align: left;
}

.MMScontenth4 {
  font-size: 38px;
  color: #383838;
  padding-top: 70px;
  margin-bottom: 20px;
}

.MMScontentp {
  font-size: 20px;
  color: #383838;
  margin-bottom: 50px;
  line-height: 20px;
}

.MMSBgcolor {
  background-color: #faf8f5;
}

.MMSBut {
  background-color: #e25e3a;
}

.MMSBut:hover {
  background-color: #ce5433;
}

.MMSBut a:hover {
  color: #fff;
}

@media screen and (min-width: 1921px) {
  .MMSheader,
  .MMSbanner {
    height: 42vw;
    max-height: unset;
  }

  .MMSbanner img {
    display: block;
    position: relative;
    width: 100%;
    height: unset;
  }
}
@media screen and (max-width: 1023px) {
  .MMSheader,
  .MMSbanner {
    height: 450px;
    max-height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .MMSheader,
  .MMSbanner {
    height: 300px;
    max-height: 300px;
  }

  .MMSCenterImg {
    width: 80%;
  }

  .MMSspec {
    font-size: 20px;
  }

  .MMS1inner {
    float: left;
    text-align: center;
    width: 40%;
    margin: 0 5%;
    height: 360px;
  }

  .MMStitle {
    font-size: 20px;
    margin: 20px 0;
  }

  .MMSpara {
    font-size: 14px;
    line-height: 28px;
    text-align: left;
  }

  .MMScontenth4 {
    font-size: 24px;
  }

  .MMScontentp {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

/* 产品页面-刑侦工具包 */
.FKheader {
  position: relative;
  padding: 0;
  width: 100%;
  height: 800px;
  max-height: 800px;
}

.FKbanner {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 800px;
  max-height: 800px;
  z-index: 1;
  overflow: hidden;
}

.FKbanner img {
  display: block;
  position: relative;
  height: 100%;
}

.FKContent {
  height: 480px;
}

.FKBgcolor {
  background-color: #e6faff;
}

.FKSmallTitle {
  font-size: 40px;
  color: #0093eb;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 80px;
}

.FKContentTxt {
  font-size: 28px;
  line-height: 1.5;
  color: #0093eb;
  text-align: center;
  margin-top: 28px;
}

.FKContentSubTxt {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin-top: 16px;
}

.FKContent .container {
  position: relative;
}

.FKtoLImg,
.FKtoRImg,
.FKtoRImg2 {
  display: block;
  position: absolute;
}

.FKtoLImg {
  left: 0;
  top: 80px;
  width: 40%;
}

.FKtoRImg {
  right: 0;
  top: 100px;
  width: 40%;
}

.FKtoLImgMobile,
.FKtoRImgMobile {
  display: none;
}

.FKtoLTxt,
.FKtoLTxt2,
.FKtoRTxt,
.FKtoRTxt2 {
  position: absolute;
}

.FKtoLTxt {
  left: 0;
  top: 160px;
  width: 600px;
}

.FKtoLTxt2 {
  left: 0;
  top: 160px;
  width: 600px;
}

.FKtoRTxt {
  right: 0;
  top: 160px;
  width: 600px;
}

.FKtoRTxt2 {
  right: 0;
  top: 180px;
  width: 600px;
}

.FKCenterImg {
  width: 70%;
}

.FKcontenth4 {
  font-size: 36px;
  color: #0093eb;
  margin-bottom: 20px;
  font-weight: normal;
  font-weight: 500;
}

.FKcontentp {
  font-size: 18px;
  color: #333;
  line-height: 30px;
}

.FKcontentMobile {
  display: none;
}

.FKFootnote {
  font-size: 12px;
  color: #808080;
  margin-top: 24px;
  line-height: 24px;
}

.FKContentCenter {
  text-align: center;
}

.FKContentCenter h4 {
  padding-top: 60px;
  font-weight: normal;
  font-weight: 500;
}

.FKFooter {
  padding: 60px 0;
}

.FKBut {
  background-color: #0093eb;
}

.FKBut:hover {
  background-color: #28b2f7;
}

.FKBut a:hover {
  color: #fff;
}

@media screen and (min-width: 1921px) {
  .FKheader,
  .FKbanner {
    height: 41.667vw;
    max-height: unset;
  }

  .FKbanner img {
    display: block;
    position: relative;
    width: 100%;
    height: unset;
  }
}

@media screen and (max-width: 1239px) {
  .FKheader {
    height: 600px;
    max-height: 600px;
  }

  .FKbanner {
    height: 600px;
    max-height: 600px;
  }

  .FKContent {
    height: 420px;
  }

  .FKtoLTxt {
    width: 56%;
    margin: 0 4% 0 0;
    top: 144px;
  }

  .FKtoLTxt2 {
    width: 56%;
    margin: 0 4% 0 0;
    top: 144px;
  }

  .FKtoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 120px;
  }

  .FKtoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 120px;
  }
}
@media screen and (max-width: 1023px) {
  .FKheader,
  .FKbanner {
    height: 450px;
    max-height: 450px;
  }

  .FKContent {
    height: 340px;
  }

  .FKSmallTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .FK1Third,
  .FK1Fourth {
    margin: 40px 0;
  }

  .FK1Fifth {
    margin: 40px 2%;
  }

  .FK1Fourth img {
    width: 36%;
  }

  .FKContentTxt {
    font-size: 22px;
  }

  .FKContentSubTxt {
    display: none;
  }

  .FKtoLImg {
    top: 76px;
    width: 40%;
  }

  .FKtoRImg {
    top: 96px;
    width: 34%;
  }

  .FKtoLTxt {
    width: 64%;
    margin: 0 2% 0 0;
    top: 90px;
  }

  .FKtoLTxt2 {
    width: 56%;
    margin: 0 4% 0 0;
    top: 108px;
  }

  .FKtoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 96px;
  }

  .FKtoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 96px;
  }

  .FKcontenth4 {
    font-size: 30px;
  }

  .FKcontentp {
    font-size: 16px;
    line-height: 24px;
  }

  .FKContentCenter h4 {
    padding-top: 50px;
  }

  .FKCenterImg {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .FKheader,
  .FKbanner {
    height: 300px;
    max-height: 300px;
  }

  .FKheader .container {
    width: 320px;
    margin-left: -160px;
  }

  .FKContent {
    height: auto;
    padding: 40px 0;
  }

  .FKContent.FKContentCenter {
    height: auto;
  }

  .FKContentCenter h4 {
    padding-top: 40px;
  }

  .FKSmallTitle {
    font-size: 24px;
  }

  .FKContentTxt {
    font-size: 16px;
    margin-top: 16px;
  }

  .FKtoLImg,
  .FKtoRImg {
    display: none;
  }

  .FKCenterImg {
    display: none;
  }

  .FKtoLImgMobile,
  .FKtoRImgMobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 20px auto 0 auto;
  }

  .FKcontentp {
    display: none;
  }

  .FKcontentMobile {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 2;
    text-align: center;
  }

  .FKtoRTxt,
  .FKtoRTxt2 {
    left: 0;
  }

  .FKtoLTxt,
  .FKtoLTxt2,
  .FKtoRTxt,
  .FKtoRTxt2 {
    position: relative;
    width: initial;
    top: 0;
    margin: 0;
  }

  .FKcontenth4 {
    font-size: 24px;
    text-align: center;
  }

  .FKCenterTxt {
    position: absolute;
    margin: 0 20px;
    left: 0;
    top: 108px;
    width: initial;
  }
}
@media screen and (max-width: 481px) {
  .FKheader,
  .FKbanner {
    height: 230px;
    max-height: 230px;
  }
}

/* 产品页面-HopeAMS */
.AMSheader {
  position: relative;
  padding: 0;
  width: 100%;
  height: 800px;
  max-height: 800px;
}

.AMSbanner {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 800px;
  max-height: 800px;
  z-index: 1;
  overflow: hidden;
}

.AMSbanner img {
  display: block;
  position: relative;
  height: 100%;
}

.AMSContent {
  height: 500px;
}

.AMSContent.AMSContentCenter {
  height: 640px;
}

.AMSBgcolor {
  background-color: #e6faff;
}

.AMSSmallTitle {
  font-size: 40px;
  color: #0093eb;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 80px;
}

.AMSFeatureList {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.AMS1Third {
  width: 30%;
  margin: 40px 0;
  text-align: center;
}

.AMS1Fourth {
  width: 23%;
  margin: 40px 0;
  text-align: center;
}

.AMS1Fifth {
  width: 16%;
  margin: 40px 2%;
  text-align: center;
}

.AMS1Third img {
  width: 27%;
}

.AMS1Fourth img {
  width: 30%;
}

.AMSContentTxt {
  font-size: 28px;
  line-height: 1.5;
  color: #0093eb;
  text-align: center;
  margin-top: 28px;
}

.AMSContentSubTxt {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin-top: 16px;
}

.AMSContent .container {
  position: relative;
}

.AMStoLImg,
.AMStoRImg,
.AMStoRImg2 {
  display: block;
  position: absolute;
}

.AMStoLImg {
  left: 0;
  top: 80px;
  width: 36%;
}

.AMStoRImg,
.AMStoRImg2 {
  right: 0;
  top: 100px;
  width: 40%;
}

.AMStoLImgMobile,
.AMStoRImgMobile {
  display: none;
}

.AMStoLTxt,
.AMStoLTxt2,
.AMStoRTxt,
.AMStoRTxt2 {
  position: absolute;
}

.AMStoLTxt {
  left: 0;
  top: 160px;
  width: 600px;
}

.AMStoLTxt2 {
  left: 0;
  top: 160px;
  width: 600px;
}

.AMStoRTxt {
  right: 0;
  top: 160px;
  width: 600px;
}

.AMStoRTxt2 {
  right: 0;
  top: 180px;
  width: 600px;
}

.AMSCenterImg {
  width: 70%;
}

.AMScontenth4 {
  font-size: 36px;
  color: #0093eb;
  margin-bottom: 20px;
  font-weight: normal;
  font-weight: 500;
}

.AMScontentp {
  font-size: 18px;
  color: #333;
  line-height: 30px;
}

.AMScontentMobile {
  display: none;
}

.AMSFootnote {
  font-size: 12px;
  color: #808080;
  margin-top: 24px;
  line-height: 24px;
}

.AMSContentCenter {
  text-align: center;
}

.AMSContentCenter h4 {
  padding-top: 60px;
  font-weight: normal;
  font-weight: 500;
}

.AMSFooter {
  padding: 60px 0;
}

.AMSBut {
  background-color: #0093eb;
}

.AMSBut:hover {
  background-color: #28b2f7;
}

.AMSBut a:hover {
  color: #fff;
}

@media screen and (min-width: 1921px) {
  .AMSheader,
  .AMSbanner {
    height: 41.667vw;
    max-height: unset;
  }

  .AMSbanner img {
    display: block;
    position: relative;
    width: 100%;
    height: unset;
  }
}

@media screen and (max-width: 1239px) {
  .AMSContent {
    height: 440px;
  }

  .AMSContent.AMSContentCenter {
    height: 600px;
  }

  .AMSContent.AMSFeature {
    height: 480px;
  }

  .AMStoLTxt {
    width: 56%;
    margin: 0 4% 0 0;
    top: 144px;
  }

  .AMStoLTxt2 {
    width: 56%;
    margin: 0 4% 0 0;
    top: 144px;
  }

  .AMStoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 120px;
  }

  .AMStoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 144px;
  }
}
@media screen and (max-width: 1023px) {
  .AMSheader,
  .AMSbanner {
    height: 450px;
    max-height: 450px;
  }

  .AMSContent {
    height: 340px;
  }

  .AMSContent.AMSContentCenter {
    height: 490px;
  }

  .AMSContent.AMSFeature {
    height: 440px;
  }

  .AMSSmallTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .AMS1Third,
  .AMS1Fourth {
    margin: 30px 0;
  }

  .AMS1Fifth {
    margin: 30px 2%;
  }

  .AMS1Fourth img {
    width: 36%;
  }

  .AMSContentTxt {
    font-size: 22px;
  }

  .AMSContentSubTxt {
    display: none;
  }

  .AMStoLImg {
    top: 76px;
    width: 40%;
  }

  .AMStoRImg {
    top: 96px;
    width: 40%;
  }

  .AMStoRImg2 {
    top: 80px;
    width: 40%;
  }

  .AMStoLTxt {
    width: 56%;
    margin: 0 4% 0 0;
    top: 120px;
  }

  .AMStoLTxt2 {
    width: 56%;
    margin: 0 4% 0 0;
    top: 108px;
  }

  .AMStoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 84px;
  }

  .AMStoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 120px;
  }

  .AMScontenth4 {
    font-size: 30px;
  }

  .AMScontentp {
    font-size: 16px;
    line-height: 24px;
  }

  .AMSContentCenter h4 {
    padding-top: 50px;
  }

  .AMSCenterImg {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .AMSheader,
  .AMSbanner {
    height: 300px;
    max-height: 300px;
  }

  .AMSheader .container {
    width: 320px;
    margin-left: -160px;
  }

  .AMSContent {
    height: auto;
    padding: 40px 0;
  }

  .AMSContent.AMSContentCenter {
    height: auto;
  }

  .AMSContentCenter h4 {
    padding-top: 40px;
  }

  .AMS1Third,
  .AMS1Fourth {
    margin: 30px 0;
  }

  .AMS1Fifth {
    margin: 30px 2%;
  }

  .AMSSmallTitle {
    font-size: 24px;
  }

  .AMSContentTxt {
    font-size: 16px;
    margin-top: 16px;
  }

  .AMStoLImg,
  .AMStoRImg,
  .AMStoRImg2 {
    display: none;
  }

  .AMSCenterImg {
    display: none;
  }

  .AMStoLImgMobile,
  .AMStoRImgMobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 20px auto 0 auto;
  }

  .AMScontentp {
    display: none;
  }

  .AMScontentMobile {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 2;
    text-align: center;
  }

  .AMStoRTxt,
  .AMStoRTxt2 {
    left: 0;
  }

  .AMStoLTxt,
  .AMStoLTxt2,
  .AMStoRTxt,
  .AMStoRTxt2 {
    position: relative;
    width: initial;
    top: 0;
    margin: 0;
  }

  .AMScontenth4 {
    font-size: 24px;
    text-align: center;
  }

  .AMSCenterTxt {
    position: absolute;
    margin: 0 20px;
    left: 0;
    top: 108px;
    width: initial;
  }
}
@media screen and (max-width: 640px) {
  .AMSFeatureList.AMSFifthList {
    flex-flow: row wrap;
    justify-content: center;
  }

  .AMS1Third img {
    width: 40%;
  }

  .AMS1Fifth {
    width: 30%;
    margin: 30px 1.5%;
  }

  .AMS1Fifth img {
    width: 64%;
  }
}

@media screen and (max-width: 481px) {
  .AMSFeatureList {
    flex-flow: row wrap;
  }

  .AMS1Third {
    margin: 30px 1.5%;
  }

  .AMS1Third img {
    width: 50%;
  }

  .AMS1Fourth {
    width: 46%;
    margin: 30px 0;
  }
}

/* 产品页面-HopeUI */
.UIheader {
  position: relative;
  padding: 0;
  width: 100%;
  height: 800px;
  max-height: 800px;
}

.UIbanner {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 800px;
  max-height: 800px;
  z-index: 1;
  overflow: hidden;
}

.UIbanner img {
  display: block;
  position: relative;
  height: 100%;
}

.UIContent {
  height: 480px;
}

.UIBgcolor {
  background-color: #e6faff;
}

.UISmallTitle {
  font-size: 40px;
  color: #0093eb;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 80px;
}

.UIFeatureList {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.UI1Third {
  width: 30%;
  margin: 40px 0;
  text-align: center;
}

.UI1Fourth {
  width: 23%;
  margin: 40px 0;
  text-align: center;
}

.UI1Fifth {
  width: 16%;
  margin: 40px 2%;
  text-align: center;
}

.UI1Fourth img {
  width: 30%;
}

.UIContentTxt {
  font-size: 28px;
  line-height: 1.5;
  color: #0093eb;
  text-align: center;
  margin-top: 28px;
}

.UIContentSubTxt {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin-top: 16px;
}

.UIContent .container {
  position: relative;
}

.UItoLImg,
.UItoRImg,
.UItoRImg2 {
  display: block;
  position: absolute;
}

.UItoLImg {
  left: 0;
  top: 80px;
  width: 40%;
}

.UItoRImg,
.UItoRImg2 {
  right: 0;
  top: 100px;
  width: 40%;
}

.UItoLImgMobile,
.UItoRImgMobile {
  display: none;
}

.UItoLTxt,
.UItoLTxt2,
.UItoRTxt,
.UItoRTxt2 {
  position: absolute;
}

.UItoLTxt {
  left: 0;
  top: 135px;
  width: 600px;
}

.UItoLTxt2 {
  left: 0;
  top: 160px;
  width: 600px;
}

.UItoRTxt {
  right: 0;
  top: 160px;
  width: 600px;
}

.UItoRTxt2 {
  right: 0;
  top: 180px;
  width: 600px;
}

.UICenterImg {
  width: 70%;
}

.UIcontenth4 {
  font-size: 36px;
  color: #0093eb;
  margin-bottom: 20px;
  font-weight: normal;
  font-weight: 500;
}

.UIcontentp {
  font-size: 18px;
  color: #333;
  line-height: 30px;
}

.UIcontentMobile {
  display: none;
}

.UIFootnote {
  font-size: 12px;
  color: #808080;
  margin-top: 24px;
  line-height: 24px;
}

.UIContentCenter {
  text-align: center;
}

.UIContentCenter h4 {
  padding-top: 60px;
  font-weight: normal;
  font-weight: 500;
}

.UIFooter {
  padding: 60px 0;
}

.UIBut {
  background-color: #0093eb;
}

.UIBut:hover {
  background-color: #28b2f7;
}

.UIBut a:hover {
  color: #fff;
}

@media screen and (min-width: 1921px) {
  .UIheader,
  .UIbanner {
    height: 41.667vw;
    max-height: unset;
  }

  .UIbanner img {
    display: block;
    position: relative;
    width: 100%;
    height: unset;
  }
}

@media screen and (max-width: 1239px) {
  .UIContent {
    height: 440px;
  }

  .UIContent.UIFeature {
    height: 480px;
  }

  .UItoLTxt {
    width: 56%;
    margin: 0 4% 0 0;
    top: 80px;
  }

  .UItoLTxt2 {
    width: 56%;
    margin: 0 4% 0 0;
    top: 144px;
  }

  .UItoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 120px;
  }

  .UItoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 135px;
  }
}
@media screen and (max-width: 1023px) {
  .UIheader,
  .UIbanner {
    height: 450px;
    max-height: 450px;
  }

  .UIContent {
    height: 340px;
  }

  .UIContent.UIContentCenter {
    height: 320px;
  }

  .UIContent.UIFeature {
    height: 440px;
  }

  .UISmallTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .UI1Third,
  .UI1Fourth {
    margin: 40px 0;
  }

  .UI1Fifth {
    margin: 40px 2%;
  }

  .UI1Fourth img {
    width: 36%;
  }

  .UIContentTxt {
    font-size: 22px;
  }

  .UIContentSubTxt {
    display: none;
  }

  .UItoLImg {
    top: 76px;
    width: 40%;
  }

  .UItoRImg {
    top: 96px;
    width: 34%;
  }

  .UItoRImg2 {
    top: 80px;
    width: 40%;
  }

  .UItoLTxt {
    width: 64%;
    margin: 0 2% 0 0;
    top: 48px;
  }

  .UItoLTxt2 {
    width: 56%;
    margin: 0 4% 0 0;
    top: 100px;
  }

  .UItoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 84px;
  }

  .UItoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 108px;
  }

  .UIcontenth4 {
    font-size: 30px;
  }

  .UIcontentp {
    font-size: 16px;
    line-height: 24px;
  }

  .UIContentCenter h4 {
    padding-top: 50px;
  }

  .UICenterImg {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .UIheader,
  .UIbanner {
    height: 300px;
    max-height: 300px;
  }

  .UIheader .container {
    width: 320px;
    margin-left: -160px;
  }

  .UIContent {
    height: auto;
    padding: 40px 0;
  }

  .UIContent.UIContentCenter {
    height: auto;
  }

  .UIContentCenter h4 {
    padding-top: 40px;
  }

  .UI1Third,
  .UI1Fourth {
    margin: 40px 0;
  }

  .UI1Fifth {
    margin: 40px 2%;
  }

  .UISmallTitle {
    font-size: 24px;
  }

  .UIContentTxt {
    font-size: 16px;
    margin-top: 16px;
  }

  .UItoLImg,
  .UItoRImg,
  .UItoRImg2 {
    display: none;
  }

  .UICenterImg {
    display: none;
  }

  .UItoLImgMobile,
  .UItoRImgMobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 20px auto 0 auto;
  }

  .UIcontentp {
    display: none;
  }

  .UIcontentMobile {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 2;
    text-align: center;
  }

  .UItoRTxt,
  .UItoRTxt2 {
    left: 0;
  }

  .UItoLTxt,
  .UItoLTxt2,
  .UItoRTxt,
  .UItoRTxt2 {
    position: relative;
    width: initial;
    top: 0;
    margin: 0;
  }

  .UIcontenth4 {
    font-size: 24px;
    text-align: center;
  }

  .UICenterTxt {
    position: absolute;
    margin: 0 20px;
    left: 0;
    top: 108px;
    width: initial;
  }
}

@media screen and (max-width: 640px) {
  .UIFeatureList.UIFifthList {
    flex-flow: row wrap;
    justify-content: center;
  }

  .UI1Third img {
    width: 60%;
  }

  .UI1Fifth {
    width: 30%;
    margin: 30px 1.5%;
  }

  .UI1Fifth img {
    width: 64%;
  }
}

@media screen and (max-width: 481px) {
  .UIFeatureList {
    flex-flow: row wrap;
  }

  .UI1Third {
    margin: 30px 1.5%;
  }

  .UI1Third img {
    width: 50%;
  }

  .UI1Fourth {
    width: 46%;
    margin: 30px 0;
  }
}

/* 产品页面-JewelCRM */
.JewelCRMheader {
  position: relative;
  padding: 0;
  width: 100%;
  height: 840px;
  max-height: 840px;
}

.JewelCRMbanner {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 840px;
  max-height: 840px;
  z-index: 1;
  overflow: hidden;
}

.JewelCRMbanner img {
  display: block;
  position: relative;
  height: 100%;
}

.JewelCRMContent {
  height: 480px;
}

.JewelCRMBgcolor {
  background-color: #ffe2c4;
}

.JewelCRMBgcolor2 {
  background-color: #fff6ed;
}

.JewelCRMSmallTitle {
  font-size: 40px;
  color: #b85c00;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 80px;
}

.JewelCRMFeatureList {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.JewelCRM1Third {
  width: 30%;
  margin: 40px 0;
  text-align: center;
}

.JewelCRM1Fourth {
  width: 23%;
  margin: 40px 0;
  text-align: center;
}

.JewelCRM1Fifth {
  width: 18%;
  margin: 40px 0;
  text-align: center;
}

.JewelCRM1Fourth img {
  width: 30%;
}

.JewelCRMContentTxt {
  font-size: 28px;
  line-height: 1.5;
  color: #b85c00;
  text-align: center;
  margin-top: 28px;
}

.JewelCRMContentSubTxt {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin-top: 16px;
}

.JewelCRMContent .container {
  position: relative;
}

.JewelCRMtoLImg,
.JewelCRMtoRImg {
  display: block;
  position: absolute;
}

.JewelCRMtoLImg {
  left: 0;
  top: 80px;
  width: 40%;
}

.JewelCRMtoRImg {
  right: 0;
  top: 80px;
  width: 40%;
}

.JewelCRMtoLImgMobile,
.JewelCRMtoRImgMobile {
  display: none;
}

.JewelCRMtoLTxt,
.JewelCRMtoLTxt2,
.JewelCRMtoRTxt,
.JewelCRMtoRTxt2 {
  position: absolute;
}

.JewelCRMtoLTxt {
  left: 0;
  top: 135px;
  width: 600px;
}

.JewelCRMtoLTxt2 {
  left: 0;
  top: 160px;
  width: 600px;
}

.JewelCRMtoRTxt {
  right: 0;
  top: 160px;
  width: 600px;
}

.JewelCRMtoRTxt2 {
  right: 0;
  top: 180px;
  width: 600px;
}

.JewelCRMCenterImg {
  width: 70%;
}

.JewelCRMcontenth4 {
  font-size: 36px;
  color: #b85c00;
  margin-bottom: 20px;
  font-weight: normal;
  font-weight: 500;
}

.JewelCRMcontentp {
  font-size: 18px;
  color: #333;
  line-height: 30px;
}

.JewelCRMcontentMobile {
  display: none;
}

.JewelCRMFootnote {
  font-size: 12px;
  color: #808080;
  margin-top: 24px;
  line-height: 24px;
}

.JewelCRMContentCenter {
  text-align: center;
}

.JewelCRMContentCenter h4 {
  padding-top: 60px;
  font-weight: normal;
  font-weight: 500;
}

.JewelCRMFooter {
  padding: 60px 0;
}

.JewelCRMBut {
  background-color: #b85c00;
}

.JewelCRMBut:hover {
  background-color: #db6e00;
}

.JewelCRMBut a:hover {
  color: #fff;
}

@media screen and (min-width: 1921px) {
  .JewelCRMheader,
  .JewelCRMbanner {
    height: 41.667vw;
    max-height: unset;
  }

  .JewelCRMbanner img {
    display: block;
    position: relative;
    width: 100%;
    height: unset;
  }
}

@media screen and (max-width: 1239px) {
  .JewelCRMContent {
    height: 440px;
  }

  .JewelCRMtoLTxt {
    width: 56%;
    margin: 0 4% 0 0;
    top: 108px;
  }

  .JewelCRMtoLTxt2 {
    width: 56%;
    margin: 0 4% 0 0;
    top: 128px;
  }

  .JewelCRMtoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 96px;
  }

  .JewelCRMtoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 135px;
  }
}
@media screen and (max-width: 1023px) {
  .JewelCRMheader,
  .JewelCRMbanner {
    height: 450px;
    max-height: 450px;
  }

  .JewelCRMContent {
    height: 340px;
  }

  .JewelCRMContent.JewelCRMContentCenter {
    height: 320px;
  }

  .JewelCRMSmallTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .JewelCRM1Fourth {
    margin: 40px 0;
  }

  .JewelCRMContentTxt {
    font-size: 24px;
  }

  .JewelCRMContentSubTxt {
    display: none;
  }

  .JewelCRMtoLImg {
    top: 76px;
    width: 40%;
  }

  .JewelCRMtoRImg {
    top: 76px;
    width: 40%;
  }

  .JewelCRMtoLTxt {
    width: 56%;
    margin: 0 4% 0 0;
    top: 72px;
  }

  .JewelCRMtoLTxt2 {
    width: 56%;
    margin: 0 4% 0 0;
    top: 100px;
  }

  .JewelCRMtoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 76px;
  }

  .JewelCRMtoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 96px;
  }

  .JewelCRMcontenth4 {
    font-size: 30px;
  }

  .JewelCRMcontentp {
    font-size: 16px;
    line-height: 24px;
  }

  .JewelCRMContentCenter h4 {
    padding-top: 50px;
  }

  .JewelCRMCenterImg {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .JewelCRMheader,
  .JewelCRMbanner {
    height: 300px;
    max-height: 300px;
  }

  .JewelCRMheader .container {
    width: 320px;
    margin-left: -160px;
  }

  .JewelCRMContent {
    height: auto;
    padding: 40px 0;
  }

  .JewelCRMContent.JewelCRMContentCenter {
    height: auto;
  }

  .JewelCRMContentCenter h4 {
    padding-top: 40px;
  }

  .JewelCRM1Fourth {
    margin: 40px 0;
  }

  .JewelCRMSmallTitle {
    font-size: 24px;
  }

  .JewelCRMContentTxt {
    font-size: 16px;
    margin-top: 16px;
  }

  .JewelCRMtoLImg,
  .JewelCRMtoRImg {
    display: none;
  }

  .JewelCRMCenterImg {
    display: none;
  }

  .JewelCRMtoLImgMobile,
  .JewelCRMtoRImgMobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 20px auto 0 auto;
  }

  .JewelCRMcontentp {
    display: none;
  }

  .JewelCRMcontentMobile {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 2;
    text-align: center;
  }

  .JewelCRMtoRTxt,
  .JewelCRMtoRTxt2 {
    left: 0;
  }

  .JewelCRMtoLTxt,
  .JewelCRMtoLTxt2,
  .JewelCRMtoRTxt,
  .JewelCRMtoRTxt2 {
    position: relative;
    width: initial;
    top: 0;
    margin: 0;
  }

  .JewelCRMcontenth4 {
    font-size: 24px;
    text-align: center;
  }

  .JewelCRMCenterTxt {
    position: absolute;
    margin: 0 20px;
    left: 0;
    top: 108px;
    width: initial;
  }
}
@media screen and (max-width: 481px) {
  .JewelCRMFeatureList {
    flex-flow: row wrap;
  }

  .JewelCRM1Fourth {
    width: 46%;
    margin: 30px 0;
  }
}

/* 产品页面-HopeFIMS */
.FIMSheader {
  position: relative;
  padding: 0;
  width: 100%;
  height: 840px;
  max-height: 840px;
}

.FIMSbanner {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 840px;
  max-height: 840px;
  z-index: 1;
  overflow: hidden;
}

.FIMSbanner img {
  display: block;
  position: relative;
  height: 100%;
}

.FIMSContent {
  height: 480px;
}

.FIMSBgcolor {
  background-color: #daf5f0;
}

.FIMSBgcolor2 {
  background-color: #eefffd;
}

.FIMSSmallTitle {
  font-size: 40px;
  color: #1ab394;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 80px;
}

.FIMSFeatureList {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.FIMS1Third {
  width: 30%;
  margin: 40px 0;
  text-align: center;
}

.FIMS1Fourth {
  width: 23%;
  margin: 40px 0;
  text-align: center;
}

.FIMS1Fifth {
  width: 18%;
  margin: 40px 0;
  text-align: center;
}

.FIMS1Fourth img {
  width: 30%;
}

.FIMSContentTxt {
  font-size: 28px;
  line-height: 1.5;
  color: #1ab394;
  text-align: center;
  margin-top: 28px;
}

.FIMSContentSubTxt {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin-top: 16px;
}

.FIMSContent .container {
  position: relative;
}

.FIMStoLImg,
.FIMStoRImg {
  display: block;
  position: absolute;
}

.FIMStoLImg {
  left: 0;
  top: 80px;
  width: 40%;
}

.FIMStoRImg {
  right: 0;
  top: 80px;
  width: 40%;
}

.FIMStoLImgMobile,
.FIMStoRImgMobile {
  display: none;
}

.FIMStoLTxt,
.FIMStoLTxt2,
.FIMStoRTxt,
.FIMStoRTxt2 {
  position: absolute;
}

.FIMStoLTxt {
  left: 0;
  top: 135px;
  width: 600px;
}

.FIMStoLTxt2 {
  left: 0;
  top: 160px;
  width: 600px;
}

.FIMStoRTxt {
  right: 0;
  top: 160px;
  width: 600px;
}

.FIMStoRTxt2 {
  right: 0;
  top: 180px;
  width: 600px;
}

.FIMSCenterImg {
  width: 70%;
}

.FIMScontenth4 {
  font-size: 36px;
  color: #1ab394;
  margin-bottom: 20px;
  font-weight: normal;
  font-weight: 500;
}

.FIMScontentp {
  font-size: 18px;
  color: #333;
  line-height: 30px;
}

.FIMScontentMobile {
  display: none;
}

.FIMSFootnote {
  font-size: 12px;
  color: #808080;
  margin-top: 24px;
  line-height: 24px;
}

.FIMSContentCenter {
  text-align: center;
}

.FIMSContentCenter h4 {
  padding-top: 60px;
  font-weight: normal;
  font-weight: 500;
}

.FIMSFooter {
  padding: 60px 0;
}

.FIMSBut {
  background-color: #1ab394;
}

.FIMSBut:hover {
  background-color: #11d9b1;
}

.FIMSBut a:hover {
  color: #fff;
}

@media screen and (min-width: 1921px) {
  .FIMSheader,
  .FIMSbanner {
    height: 41.667vw;
    max-height: unset;
  }

  .FIMSbanner img {
    display: block;
    position: relative;
    width: 100%;
    height: unset;
  }
}

@media screen and (max-width: 1239px) {
  .FIMSContent {
    height: 440px;
  }

  .FIMStoLTxt {
    width: 56%;
    margin: 0 4% 0 0;
    top: 108px;
  }

  .FIMStoLTxt2 {
    width: 56%;
    margin: 0 4% 0 0;
    top: 128px;
  }

  .FIMStoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 96px;
  }

  .FIMStoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 135px;
  }
}

@media screen and (max-width: 1023px) {
  .FIMSheader,
  .FIMSbanner {
    height: 450px;
    max-height: 450px;
  }

  .FIMSContent {
    height: 340px;
  }

  .FIMSContent.FIMSContentCenter {
    height: 320px;
  }

  .FIMSSmallTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .FIMS1Fourth {
    margin: 40px 0;
  }

  .FIMSContentTxt {
    font-size: 24px;
  }

  .FIMSContentSubTxt {
    display: none;
  }

  .FIMStoLImg {
    top: 76px;
    width: 40%;
  }

  .FIMStoRImg {
    top: 76px;
    width: 40%;
  }

  .FIMStoLTxt {
    width: 56%;
    margin: 0 4% 0 0;
    top: 72px;
  }

  .FIMStoLTxt2 {
    width: 56%;
    margin: 0 4% 0 0;
    top: 100px;
  }

  .FIMStoRTxt {
    width: 56%;
    margin: 0 0 0 4%;
    top: 76px;
  }

  .FIMStoRTxt2 {
    width: 56%;
    margin: 0 0 0 4%;
    top: 96px;
  }

  .FIMScontenth4 {
    font-size: 30px;
  }

  .FIMScontentp {
    font-size: 16px;
    line-height: 24px;
  }

  .FIMSContentCenter h4 {
    padding-top: 50px;
  }

  .FIMSCenterImg {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .FIMSheader,
  .FIMSbanner {
    height: 300px;
    max-height: 300px;
  }

  .FIMSheader .container {
    width: 320px;
    margin-left: -160px;
  }

  .FIMSContent {
    height: auto;
    padding: 40px 0;
  }

  .FIMSContent.FIMSContentCenter {
    height: auto;
  }

  .FIMSContentCenter h4 {
    padding-top: 40px;
  }

  .FIMS1Fourth {
    margin: 40px 0;
  }

  .FIMSSmallTitle {
    font-size: 24px;
  }

  .FIMSContentTxt {
    font-size: 16px;
    margin-top: 16px;
  }

  .FIMStoLImg,
  .FIMStoRImg {
    display: none;
  }

  .FIMSCenterImg {
    display: none;
  }

  .FIMStoLImgMobile,
  .FIMStoRImgMobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 20px auto 0 auto;
  }

  .FIMScontentp {
    display: none;
  }

  .FIMScontentMobile {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 2;
    text-align: center;
  }

  .FIMStoRTxt,
  .FIMStoRTxt2 {
    left: 0;
  }

  .FIMStoLTxt,
  .FIMStoLTxt2,
  .FIMStoRTxt,
  .FIMStoRTxt2 {
    position: relative;
    width: initial;
    top: 0;
    margin: 0;
  }

  .FIMScontenth4 {
    font-size: 24px;
    text-align: center;
  }

  .FIMSCenterTxt {
    position: absolute;
    margin: 0 20px;
    left: 0;
    top: 108px;
    width: initial;
  }
}
@media screen and (max-width: 481px) {
  .FIMSFeatureList {
    flex-flow: row wrap;
  }

  .FIMS1Fourth {
    width: 46%;
    margin: 30px 0;
  }
}

/* 产品页面-专家抽取工具 */
.EDTheader {
  position: relative;
  padding: 0;
  width: 100%;
  height: 800px;
  max-height: 800px;
}

.EDTbanner {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 800px;
  max-height: 800px;
  z-index: 1;
  overflow: hidden;
}

.EDTbanner img {
  display: block;
  position: relative;
  height: 100%;
}

.EDTContent {
  height: 500px;
  background-color: #fcfcfc;
}

.EDTBgcolor {
  background-color: #e6faff;
}

.EDTSmallTitle {
  font-size: 40px;
  color: #0092ea;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 80px;
}

.EDTContent .container {
  position: relative;
}

.EDTtoLImg,
.EDTtoRImg,
.EDTtoRImg2 {
  display: block;
  position: absolute;
}

.EDTtoLImgMobile,
.EDTtoRImgMobile {
  display: none;
}

.EDTtoLImg {
  left: 0;
  top: 96px;
  width: 50%;
  max-width: 540px;
}

.EDTtoRImg {
  right: 0;
  top: 96px;
  width: 50%;
  max-width: 540px;
}

.EDTtoRImg2 {
  right: 0;
  top: 56px;
  width: 50%;
  max-width: 480px;
}

.EDTtoRTxt {
  position: absolute;
  right: 0;
  top: 190px;
  width: 560px;
}

.EDTtoLTxt {
  position: absolute;
  left: 0;
  top: 190px;
  width: 560px;
}

.EDTtoLTxt2 {
  position: absolute;
  left: 0;
  top: 144px;
  width: 560px;
}

.EDTCenterImg {
  width: 70%;
}

.EDTordinal {
  position: absolute;
  left: 0;
  top: -72px;
  font-size: 96px;
  font-weight: bolder;
  font-weight: 900;
  color: #f0f5fd;
  line-height: 1;
  z-index: 1;
}

.EDTcontenth4 {
  position: relative;
  font-size: 36px;
  color: #0092ea;
  margin-bottom: 20px;
  font-weight: normal;
  font-weight: 500;
  z-index: 20;
}

.EDTcontentp {
  font-size: 18px;
  color: #333;
  line-height: 30px;
  z-index: 20;
}

.EDTcontentMobile {
  display: none;
}

.EDTFooter {
  padding: 60px 0;
}

.EDTBut {
  background-color: #0092ea;
}

.EDTBut:hover {
  background-color: #28b2f7;
}

.EDTBut a:hover {
  color: #fff;
}

@media screen and (min-width: 1921px) {
  .EDTheader,
  .EDTbanner {
    height: 41.667vw;
    max-height: unset;
  }

  .EDTbanner img {
    display: block;
    position: relative;
    width: 100%;
    height: unset;
  }
}

@media screen and (max-width: 1239px) {
  .EDTtoLTxt {
    width: 46%;
    margin: 0 4% 0 0;
    top: 160px;
  }

  .EDTtoLTxt2 {
    width: 46%;
    margin: 0 4% 0 0;
    top: 150px;
  }

  .EDTtoRTxt {
    width: 46%;
    margin: 0 0 0 4%;
    top: 180px;
  }
}
@media screen and (max-width: 1023px) {
  .EDTheader,
  .EDTbanner {
    height: 450px;
    max-height: 450px;
  }

  .EDTSmallTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .EDTContent {
    height: 360px;
  }

  .EDTContentTxt {
    font-size: 24px;
  }

  .EDTContentSubTxt {
    display: none;
  }

  .EDTtoLImg {
    width: 55%;
    top: 72px;
  }

  .EDTtoRTxt {
    width: 42%;
    margin: 0 0 0 3%;
    top: 108px;
  }

  .EDTtoLTxt {
    width: 42%;
    margin: 0 3% 0 0;
    top: 108px;
  }

  .EDTtoLTxt2 {
    width: 42%;
    margin: 0 3% 0 0;
    top: 96px;
  }

  .EDTtoRImg {
    width: 55%;
    top: 72px;
  }

  .EDTtoRImg2 {
    width: 55%;
    top: 48px;
  }

  .EDTcontenth4 {
    font-size: 24px;
  }

  .EDTcontentp {
    font-size: 16px;
    line-height: 24px;
  }

  .EDTCenterImg {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .EDTheader,
  .EDTbanner {
    height: 300px;
    max-height: 300px;
  }

  .EDTheader .container {
    width: 320px;
    margin-left: -160px;
  }

  .EDTContent {
    height: auto;
    padding: 40px 0;
  }

  .EDTSmallTitle {
    font-size: 24px;
  }

  .EDTContentTxt {
    font-size: 16px;
  }

  .EDTCenterImg {
    display: none;
  }

  .EDTtoLImg,
  .EDTtoRImg,
  .EDTtoRImg2 {
    display: none;
  }

  .EDTtoLImgMobile,
  .EDTtoRImgMobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 20px auto 0 auto;
  }

  .EDTcontentMobile {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 2;
    text-align: center;
  }

  .EDTordinal {
    display: none;
  }

  .EDTcontenth4 {
    text-align: center;
  }

  .EDTcontentp {
    display: none;
  }

  .EDTcontentMobile {
    display: block;
  }

  .EDTtoRTxt {
    left: 0;
  }

  .EDTtoLTxt,
  .EDTtoRTxt,
  .EDTtoLTxt2 {
    position: relative;
    width: initial;
    top: 0;
    margin: 0;
  }

  .EDTContentCenter {
    text-align: left;
  }

  .EDTCenterTxt {
    position: absolute;
    margin: 0 20px;
    left: 0;
    top: 106px;
    width: initial;
  }
}

/* 产品页面-专家抽取系统 */
.EDSheader {
  position: relative;
  padding: 20px 0;
  height: calc(45vw + 40px);
  max-height: 720px;
}

.EDSbanner {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  max-height: 720px;
  z-index: 1;
  overflow: hidden;
}

.EDSbanner .PC {
  display: block;
  position: relative;
  width: 100%;
}

.EDSbanner .Mobile {
  display: none;
}

.EDSintro {
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 20;
}

.EDSinterface {
  position: relative;
  max-width: 50vw;
  margin: 20px calc(50% - 25vw) 0;
  z-index: 10;
}

.EDStitle {
  font-size: 32px;
  color: #fff;
  line-height: 2;
  text-align: center;
}

.EDSinfo {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  text-align: center;
}

.EDSContent {
  height: 500px;
}

.EDScontentMobile {
  display: none;
}

.EDSSmallTitle {
  font-size: 40px;
  color: #0092ea;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 80px;
}

.EDSContent .container {
  position: relative;
}

.EDStoLImg,
.EDStoRImg {
  display: block;
  position: absolute;
}

.EDStoLImgMobile,
.EDStoRImgMobile {
  display: none;
}

.EDStoLImg {
  left: 0;
  top: 56px;
  width: 50%;
  z-index: 10;
}

.EDStoRImg {
  right: 0;
  top: 56px;
  width: 50%;
  z-index: 10;
}

.EDStoRTxt {
  position: absolute;
  right: 0;
  top: 144px;
  width: 480px;
}

.EDStoLTxt {
  position: absolute;
  left: 0;
  top: 144px;
  width: 480px;
}

.EDStoRTxt2 {
  position: absolute;
  right: 0;
  top: 144px;
  width: 480px;
}

.EDSCenterImg {
  width: 70%;
}

.EDSordinal {
  position: absolute;
  left: 0;
  top: -72px;
  font-size: 96px;
  font-weight: bolder;
  font-weight: 900;
  color: #f6f8fd;
  line-height: 1;
  z-index: 1;
}

.EDScontenth4 {
  position: relative;
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
  font-weight: normal;
  font-weight: 500;
  text-align: left;
  z-index: 20;
}

.EDSlist {
  position: relative;
  width: 100%;
  list-style-type: none;
  z-index: 20;
}

.EDSitem {
  font-size: 16px;
  color: #666;
  line-height: 2;
}

.EDSitem::before {
  content: "\2022";
  color: #0092ea;
  margin-block-start: 1rem;
  margin-block-end: 1rem;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
  padding-right: 1rem;
  z-index: 20;
}

.EDSFooter {
  padding: 60px 0;
}

.EDSBut {
  background-color: #0092ea;
}

.EDSBut:hover {
  background-color: #28b2f7;
}

.EDSBut a:hover {
  color: #fff;
}

@media screen and (min-width: 1921px) {
  .EDSinterface {
    position: relative;
    max-width: 960px;
    margin: 20px calc(50% - 480px) 0;
    z-index: 10;
  }
}
@media screen and (max-width: 1023px) {
  .EDSheader {
    padding: 20px 0 80px 0;
    height: calc(50vw + 140px);
  }

  .EDSbanner {
    max-height: 400px;
  }

  .EDSbanner .PC {
    display: none;
  }

  .EDSbanner .Mobile {
    display: block;
    position: relative;
    height: 100%;
  }

  .EDSinterface {
    max-width: 60vw;
    margin: 20px calc(50% - 30vw) 0;
  }

  .EDSSmallTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .EDStitle {
    font-size: 26px;
  }

  .EDSinfo {
    font-size: 14px;
  }

  .EDSContent {
    height: 360px;
  }

  .EDSContentSubTxt {
    display: none;
  }

  .EDStoLImg {
    top: 70px;
    width: 56%;
  }

  .EDStoRTxt {
    width: 40%;
    margin: 0 0 0 4%;
    top: 110px;
  }

  .EDStoLTxt {
    width: 40%;
    margin: 0 4% 0 0;
    top: 110px;
  }

  .EDStoRTxt2 {
    width: 40%;
    margin: 0 0 0 4%;
    top: 110px;
  }

  .EDStoRImg {
    top: 50px;
    width: 56%;
  }

  .EDSordinal {
    top: -48px;
    font-size: 72px;
  }

  .EDScontenth4 {
    font-size: 26px;
  }

  .EDSitem {
    font-size: 14px;
    color: #666;
    line-height: 2;
  }

  .EDSCenterImg {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .EDSheader {
    height: calc(60vw + 200px);
  }

  .EDSSmallTitle {
    font-size: 24px;
  }

  .EDSContent {
    height: auto;
    padding: 20px 0;
  }

  .EDSContentTxt {
    font-size: 16px;
  }

  .EDScontentMobile {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 2;
    text-align: center;
  }

  .EDScontenth4 {
    text-align: center;
  }

  .EDStoLImg,
  .EDStoRImg {
    display: none;
  }

  .EDStoLImgMobile,
  .EDStoRImgMobile {
    display: block;
    position: relative;
    width: 100%;
  }

  .EDSordinal {
    display: none;
  }

  .EDSlist {
    display: none;
  }

  .EDSCenterImg {
    display: none;
  }

  .EDStoRTxt {
    left: 0;
  }

  .EDStoLTxt,
  .EDStoRTxt,
  .EDStoRTxt2 {
    position: relative;
    width: initial;
    top: 0;
    margin: 0;
  }

  .EDSContentCenter {
    text-align: left;
  }

  .EDSCenterTxt {
    position: absolute;
    margin: 0 20px;
    left: 0;
    top: 106px;
    width: initial;
  }

  .ProductButton {
    width: 180px;
    height: 48px;
    border-radius: 4px;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    box-sizing: border-box;
    padding: 16px;
  }
}
@media screen and (max-width: 481px) {
  .EDSheader {
    height: calc(75vw + 220px);
  }
}

/*tool bar*/
.toolbar-layer,
.toolbar-item {
  background: url(images/toolbar.png) no-repeat;
}

.toolbar {
  position: fixed;
  z-index: 500;
  bottom: 300px;
  right: 22px;
  display: none;
}

.toolbar-item {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  margin-top: 1px;
  -webkit-transition: background-position 0.5s;
  transition: background-position 0.5s;
}

.toolbar-item:hover .toolbar-layer {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.toolbar-item-weixin {
  background-position: 0 -798px;
}

.toolbar-item-weixin:hover {
  background-position: 0 -860px;
}

.toolbar-item-weixin .toolbar-layer {
  height: 212px;
  background-position: 0 0;
}

.toolbar-item-top {
  background-position: 0 -674px;
}

.toolbar-item-top:hover {
  background-position: 0 -736px;
}

.toolbar-layer {
  position: absolute;
  right: 46px;
  bottom: -10px;
  width: 172px;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: 95% 95%;
  -ms-transform-origin: 95% 95%;
  transform-origin: 95% 95%;
  -webkit-transform: scale(0.01);
  -ms-transform: scale(0.01);
  transform: scale(0.01);
  -webkit-transition: all 1s;
  transition: all 1s;
}

/* 返回顶部按钮 */
#goTop {
  width: 52px;
  height: 52px;
  position: relative;
  left: 0;
  margin-left: 0;
  bottom: 0;
}

/* 厚朴摄影 */

.photoSwiper .swiper-slide .slider-bg {
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}

.photoSwiper .swiper-slide .slider-bg .slider-bg-1920 {
  display: none;
}

.photoSwiper .swiper-slide .slider-bg .slider-bg-3200 {
  display: block;
  width: 100%;
  height: 100%;
}
.photoSwiper .swiper-button-white {
  color: #fff;
}

@media screen and (max-width: 3200px) {
  .photoSwiper .swiper-slide .slider-bg {
    width: auto;
    height: 100%;
  }

  .photoSwiper .swiper-slide .slider-bg .slider-bg-3200 {
    width: auto;
  }
}

@media screen and (max-width: 1920px) {
  .photoSwiper .swiper-slide {
    height: 600px;
  }

  .photoSwiper .swiper-slide .slider-bg .slider-bg-1920 {
    display: block;
    height: 100%;
  }

  .photoSwiper .swiper-slide .slider-bg .slider-bg-3200 {
    display: none;
  }
}

@media screen and (max-width: 1440px) {
  .photoSwiper .swiper-slide {
    height: 450px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .photoSwiper .swiper-slide {
    height: 400px;
  }
}

@media screen and (min-width: 601px) and (max-width: 767px) {
  .photoSwiper .swiper-slide {
    height: 400px;
  }
}

@media screen and (max-width: 600px) {
  .photoSwiper .swiper-slide {
    height: 360px;
  }

  .swiper-button-prev.swiper-button-white,
  .swiper-button-next.swiper-button-white {
    height: 20px;
    margin-top: -10px;
    --swiper-navigation-size: 20px;
  }
}

@media screen and (max-width: 425px) {
  .photoSwiper .swiper-slide {
    height: 300px;
  }
}

.photo-container .cate-name {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  justify-items: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  font-size: 24px;
  color: #313131;
  padding: 40px 0 20px 0;
}
.photo-container .cate-name > a {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  justify-items: flex-start;
  align-content: center;
  align-items: center;
}
.photo-container .cate-name .icon-svg {
  margin-right: 8px;
}
.photo-container .cate-art-list {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-start;
  justify-items: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  /* width: 100%; */
  margin: 0 -10px;
}
.photo-container .cate-art-list li {
  display: block;
  width: calc(25% - 20px);
  padding: 0;
  margin: 0 10px 30px;
}
@media screen and (min-width: 1240px) and (max-width: 1639px) {
  .photo-container .cate-art-list li {
    width: calc(33.3% - 20px);
  }
}
.photo-container .cate-art-list li:nth-child(3n) {
  /* margin-right: 0; */
}

.photo-container .cate-art-list li .photo {
  width: 100%;
  height: 210px;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.photo-container .cate-art-list li a {
  display: block;
}

.photo-container .cate-art-list li .photo:hover {
  box-shadow: 5px 5px 5px #ccc;
  z-index: 10;
}

.photo-container .cate-art-list li .photo img {
  display: block;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.photo-container .cate-art-list li .photo img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 1239px) {
  .photo-container .cate-art-list li {
    width: calc(33.3% - 20px);
  }

  .photo-container .cate-art-list li .photo {
    height: 170px;
  }
}

@media screen and (max-width: 1023px) {
  .photo-container .cate-art-list li {
    width: calc(50% - 20px);
  }

  .photo-container .cate-art-list li:nth-child(3n + 3) {
    /* margin-right: 30px; */
  }

  .photo-container .cate-art-list li:nth-child(2n + 2) {
    /* margin-right: 0; */
  }

  .photo-container .cate-art-list li .photo {
    height: 183px;
  }
}

@media screen and (max-width: 767px) {
  .photo-container .cate-art-list li {
    width: calc(50% - 20px);
  }

  .photo-container .cate-art-list li .photo {
    height: calc((50vw - 48px) * 9 / 16);
  }
}

@media screen and (max-width: 540px) {
  .photo-container .cate-art-list {
    margin: 0;
  }
  .photo-container .cate-art-list li {
    width: calc(100%);
  }

  .photo-container .cate-art-list li .photo {
    height: calc((100vw - 66px) * 9 / 16);
  }

  .photo-container .cate-art-list li,
  .photo-container .cate-art-list li:nth-child(3n + 3),
  .photo-container .cate-art-list li:nth-child(2n + 2) {
    margin-right: 0;
    margin-left: 0;
  }
}
