.dot {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/*多行文本省略号*/
.dot2,
.dot3,
.dot4,
.dot5 {
  display: -moz-box;
  display: box;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-box-orient: vertical;
}
/*2行文本省略号*/
.dot2 {
  -webkit-line-clamp: 2;
}
/*3行文本省略号*/
.dot3 {
  -webkit-line-clamp: 3;
}
/*4行文本省略号*/
.dot4 {
  -webkit-line-clamp: 4;
}
/*5行文本省略号*/
.dot5 {
  -webkit-line-clamp: 5;
}
.Ispic {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.after {
  content: '';
  display: inline-block;
}
.after_a {
  content: '';
  position: absolute;
}
.el-color-picker__icon,
.el-input,
.el-textarea {
  display: block;
}
.el-form-item__content {
  line-height: 0.5rem;
}
[class*=flex_] {
  display: flex;
}
[class*=_ac] {
  align-items: center;
}
[class*=_ae] {
  align-items: flex-end;
}
[class*=_as] {
  align-items: flex-start;
}
[class*=_jc] {
  justify-content: center;
}
[class*=_js] {
  justify-content: space-between;
}
[class*=_je] {
  justify-content: flex-end;
}
[class*=_jf] {
  justify-content: flex-start;
}
.flex {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
.flex_row {
  flex-flow: row wrap;
}
.w1440 {
  width: 1440px;
  max-width: 92%;
  margin: 0 auto;
}
:root {
  --f14: 14px;
  --f15: 15px;
  --f16: 16px;
  --f18: 18px;
  --f20: 20px;
  --f22: 22px;
  --f24: 24px;
  --f26: 26px;
  --f28: 28px;
  --f30: 30px;
  --f32: 32px;
  --f34: 34px;
  --f36: 36px;
  --f38: 38px;
  --f40: 40px;
  --f42: 42px;
  --f44: 44px;
  --f46: 46px;
  --f48: 48px;
  --f55: 55px;
}
@media (max-width: 768px) {
  :root {
    --f26: 24px;
    --f28: 26px;
    --f30: 26px;
    --f34: 26px;
    --f36: 26px;
    --f38: 28px;
    --f40: 28px;
    --f42: 32px;
    --f44: 32px;
    --f46: 32px;
    --f48: 32px;
    --f55: 36px;
  }
}
body {
  overflow-x: hidden;
}
@media (max-width: 1024px) {
  body {
    overflow-x: inherit;
  }
}
.hidden {
  overflow: hidden;
}
.re {
  position: relative;
  z-index: 3;
}
.ani {
  transition: all 0.5s;
}
a:hover .ani {
  transform: scale(1.15);
}
.color {
  color: #037bcf;
}
.header {
  width: 100%;
  z-index: 10;
  position: relative;
}
.header .logo {
  max-width: 80px;
  display: flex;
  align-items: center;
}
.header .btn {
  display: block;
  width: 124px;
  line-height: 40px;
  text-align: center;
  background-color: #037bcf;
  color: #fff;
  border-radius: 25px;
}
.header .menuIcon {
  display: none;
}
.header .navTop {
  font-size: 16px;
}
@media (min-width: 1025px) {
  .header .navTop .ul {
    width: 640px;
    justify-content: space-between;
    margin-right: 80px;
  }
}
.header .navTop li {
  text-align: center;
  position: relative;
}
.header .navTop li span {
  display: block;
  position: relative;
}
.header .navTop li span a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  height: 100px;
  color: #333333;
}
@media (min-width: 1025px) {
  .header .navTop li.aon span a,
  .header .navTop li:hover span a {
    color: #037bcf;
  }
  .header .navTop li.aon span a::after,
  .header .navTop li:hover span a::after {
    opacity: 1;
  }
  .header .navTop li.wap_show {
    display: none;
  }
}
.header .navTop li .sub {
  position: absolute;
  left: -45px;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -10px, 0);
  -webkit-transform: translate3d(0, -10px, 0);
  -moz-transform: translate3d(0, -10px, 0);
  -o-transform: translate3d(0, -10px, 0);
  -ms-transform: translate3d(0, -10px, 0);
  backface-visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  width: 220px;
  background-color: #fff;
  white-space: nowrap;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  padding: 25px 25px 25px 45px;
}
.header .navTop li .sub::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  left: 55px;
  top: -16px;
}
.header .navTop li .sub .box a {
  display: block;
  line-height: 36px;
  text-align: left;
}
.header .navTop li.hover .sub {
  opacity: 1;
  transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  -moz-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  backface-visibility: hidden;
  pointer-events: auto;
}
@media screen and (max-width: 1024px) {
  .header .w1440 {
    height: 60px;
  }
  .header .menuIcon {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
  }
  .header #open_menu {
    z-index: 100;
    width: 25px;
    height: 18px;
    cursor: pointer;
    position: relative;
  }
  .header #open_menu i {
    display: inline-block;
    width: 80%;
    height: 2px;
    transform: translateY(-50%);
    background-color: #037bcf;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 5px;
  }
  .header #open_menu::before,
  .header #open_menu::after {
    width: 100%;
    height: 2px;
    background-color: #037bcf;
    border-radius: 5px;
    left: 0;
    content: '';
    position: absolute;
  }
  .header #open_menu::before {
    top: 0;
  }
  .header #open_menu::after {
    bottom: 0;
    top: auto;
  }
  .header #open_menu.open_menu_on i {
    opacity: 0;
  }
  .header #open_menu.open_menu_on:before {
    transform: rotate(45deg);
    top: 0.1rem;
  }
  .header #open_menu.open_menu_on:after {
    transform: rotate(-45deg);
    bottom: auto;
    top: 0.1rem;
  }
  .header .navTop {
    display: none;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-y: auto;
    visibility: hidden;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    line-height: 40px;
    margin-left: 0;
    display: block;
    padding: 0;
    transition: all 0.5s;
    opacity: 0;
    background-image: none;
    margin-right: 0;
    z-index: 106;
    padding-top: 60px;
    background-color: transparent;
  }
  .header .navTop::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 60px);
    background-color: rgba(0, 0, 0, 0.5);
  }
  .header .navTop.show {
    visibility: visible;
    right: 0;
    opacity: 1;
  }
  .header .navTop .ul {
    position: relative;
    height: 100%;
    max-height: 100%;
    width: 300px;
    margin: 0 0 0 auto;
    background-color: #fff;
    margin-right: 0;
    overflow: auto;
    display: block;
  }
  .header .navTop .ul li {
    float: none;
    height: auto;
    text-align: left;
    border-bottom: 1px solid #eee;
    margin: 0;
    width: 100%;
  }
  .header .navTop .ul li:hover span a,
  .header .navTop .ul li.aon span a {
    color: #333;
  }
  .header .navTop .ul li span {
    display: block;
    line-height: 60px;
    padding: 0 20px;
  }
  .header .navTop .ul li span a {
    padding-bottom: 0;
    line-height: normal;
    height: 60px;
    justify-content: flex-start;
    display: inline-flex;
    color: #333;
  }
  .header .navTop .ul li span a::before {
    display: none;
  }
  .header .navTop .ul li .sub {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    color: #999999;
    width: 100%;
    background-color: transparent;
    text-align: left;
    padding: 0 0 20px;
    min-width: auto;
    display: none;
    opacity: 1;
    white-space: normal;
    backface-visibility: hidden;
    pointer-events: auto;
  }
  .header .navTop .ul li .box {
    top: 0;
    box-shadow: none;
    text-align: left;
    display: block;
    padding-left: 5%;
    padding-top: 20px;
  }
  .header .navTop .ul li .box::before {
    display: none;
  }
  .header .navTop .ul li .box a {
    margin: 0;
    padding: 0;
    line-height: 46px;
    text-align: left;
    display: block;
    color: #333;
    background-color: transparent;
  }
  .header .navTop .ul .li_sub span {
    position: relative;
    display: block;
    padding-right: 20px;
  }
  .header .navTop .ul .li_sub .op {
    position: absolute;
    width: 14px;
    height: 14px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
  }
  .header .navTop .ul .li_sub .op::before,
  .header .navTop .ul .li_sub .op::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .header .navTop .ul .li_sub .op::before {
    width: 100%;
    height: 2px;
  }
  .header .navTop .ul .li_sub .op::after {
    width: 2px;
    height: 100%;
  }
  .header .navTop .ul .li_sub.hover .op::after {
    opacity: 0;
  }
}
@media screen and (max-width: 640px) {
  .header .logo {
    max-width: 100px;
  }
  .header .logo img {
    max-height: 40px;
  }
  .header .btn {
    line-height: 30px;
    width: 100px;
  }
}
.poImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.NYbanner {
  position: relative;
}
.NYbanner .banner img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.NYbanner .textwarp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  color: #222222;
  padding-top: 1rem;
}
.SingleBox {
  color: #222;
  line-height: calc(32 / 16);
}
.SingleBox img {
  height: auto!important;
}
@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes rotating {
  0% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
.swiper-button {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
}
.swiper-button::after {
  color: #fff;
  font-size: 18px;
}
.swiper-button:hover {
  background-color: #037bcf;
}
.swiper-button:hover::after {
  color: #fff;
}
.swiper-button-prev {
  left: -6%;
}
.swiper-button-next {
  right: -6%;
}
@media (max-width: 1400px) {
  .swiper-button-prev {
    left: -4%;
  }
  .swiper-button-next {
    right: -4%;
  }
}
@media screen and (max-width: 640px) {
  .swiper-button {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .swiper-button::after {
    font-size: 14px;
  }
}
.Hmore {
  display: inline-block;
  min-width: 175px;
  padding: 0 10px;
  line-height: 60px;
  text-align: center;
  background-color: #037bcf;
  color: #fff;
  border-radius: 50px;
  font-size: var(--f18);
}
.Hmore:hover{ color: #fff;}
@media screen and (max-width: 640px) {
  .Hmore {
    min-width: 100px;
    line-height: 40px;
    font-size: var(--f14);
  }
}
.Hbanner {
  position: relative;
}
.Hbanner .pic {
  position: relative;
  overflow: hidden;
}
.Hbanner .pic img {
  width: 100%;
}
.Hbanner .textwarp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  color: #000000;
  padding-bottom: 120px;
}
.Hbanner .textwarp .title {
  font-size: var(--f55);
}
.Hbanner .textwarp .des {
  font-size: var(--f55);
}
.Hbanner .textwarp .Hmore {
  min-width: 175px;
  line-height: 60px;
  margin-top: 5%;
  font-size: var(--f20);
}
.Hbanner .textwarp .Hmore:hover{color: #fff;}
.Hbanner .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.25rem;
  width: 92%;
  display: flex;
  align-items: center;
  gap: 0.08rem;
  justify-content: center;
}
.Hbanner .swiper-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  background-color: #3c75f4;
  margin: 0;
  border-radius: 0.25rem;
  opacity: 0.16;
}
.Hbanner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #037bcf;
  width: 0.16rem;
  opacity: 1;
}
.Hbanner .swiper-button {
  background-color: rgba(255, 255, 255, 0.48);
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  opacity: 1;
}
.Hbanner .swiper-button::after {
  font-size: 0.12rem;
  color: #fff;
}
.Hbanner .swiper-button:hover {
  background-color: #037bcf;
  opacity: 1;
}
.Hbanner .swiper-button:hover::after {
  color: #fff;
}
.Hbanner .swiper-button-prev {
  left: 2.4rem;
}
.Hbanner .swiper-button-next {
  right: 2.4rem;
}
.Hbanner .animate {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: translateY(0.5rem);
}
.Hbanner .animate:nth-child(2) {
  transition-delay: 0.2s;
}
.Hbanner .animate:nth-child(3) {
  transition-delay: 0.4s;
}
.Hbanner .swiper-slide-active .animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1600px) {
  .Hbanner .swiper-button-prev {
    left: 2%;
  }
  .Hbanner .swiper-button-next {
    right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .Hbanner .textwarp {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .Hbanner .textwarp {
    padding-bottom: 0;
  }
  .Hbanner .textwarp .title,
  .Hbanner .textwarp .des {
    font-size: var(--f24);
  }
  .Hbanner .textwarp .Hmore {
    line-height: 40px;
    min-width: 100px;
    font-size: var(--f16);
  }
}
.Habout {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  color: #666;
}
.Habout ul {
  justify-content: space-evenly;
  text-align: center;
  padding: 20px 0;
}
.Habout ul .numbox {
  font-size: var(--f48);
  color: #333333;
  line-height: 1.2;
  font-weight: bold;
}
.Habout ul .numbox sup {
  font-size: var(--f30);
}
@media screen and (max-width: 1024px) {
  .Habout {
    position: relative;
  }
  .Habout ul li {
    padding: 10px;
    width: 50%;
  }
}
.Htitle {
  text-align: center;
  margin-bottom: 3%;
}
.Htitle .htit {
  font-size: var(--f40);
  color: #333333;
}
.Htitle .hdes {
  font-size: var(--f16);
  color: #666666;
  margin-top: 15px;
}
.Hscheme {
  position: relative;
  padding: 6% 0 5%;
  background-color: #f7f7f7;
}
.Hscheme .flexbox {
  background-color: #fff;
  border-radius: 10px;
  padding: 3% 0;
  position: relative;
}
.Hscheme .flexbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: calc(450 / 1440 * 100%);
  height: 100%;
  background-image: linear-gradient(90deg, rgba(235, 247, 255, 0.5), #fff);
}
.Hscheme .left {
  width: calc(300 / 1440 * 100%);
  position: relative;
}
.Hscheme .left .swiper {
  height: 550px;
}
.Hscheme .left li {
  padding-left: calc(20 / 300 * 100%);
}
.Hscheme .left .box {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 0 calc(30 / 280 * 100%);
  font-size: var(--f16);
  color: #666;
  cursor: pointer;
  border-radius: 50px;
}
.Hscheme .left .icon {
  flex-shrink: 0;
  margin-right: 15px;
  width: 25px;
  text-align: center;
  filter: grayscale(100) opacity(0.9);
}
.Hscheme .left .swiper-slide-thumb-active .box {
  background-image: linear-gradient(90deg, #fff 60%, rgba(255, 255, 255, 0));
}
.Hscheme .left .swiper-slide-thumb-active .icon {
  filter: none;
}
.Hscheme .right {
  flex: 1;
  min-width: 0;
  padding-right: calc(32 / 1140 * 100%);
  font-size: var(--f16);
}
.Hscheme .topbox {
  position: relative;
}
.Hscheme .topbox .pic {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 7px;
}
.Hscheme .topbox .pic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 2;
}
.Hscheme .topbox .textwarp {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  color: #fff;
  padding: calc(50 / 1100 * 100%);
  min-height: 410px;
}
.Hscheme .topbox .title {
  font-size: var(--f30);
}
.Hscheme .topbox .label {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.Hscheme .topbox .label span {
  display: inline-flex;
  padding: 0 13px;
  line-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}
.Hscheme .topbox .des {
  line-height: calc(30 / 16);
}
.Hscheme .topbox .more {
  display: inline-block;
  min-width: 124px;
  padding: 0 10px;
  line-height: 38px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 25px;
  margin-top: 2.5%;
  border: 1px solid #fff;
}
.Hscheme .customer {
  padding-right: 1px;
}
.Hscheme .customer .title {
  margin: 20px 0 10px;
  color: #666666;
}
.Hscheme .customer a {
  display: block;
}
.Hscheme .customer .pic {
  border: 1px solid #efefef;
  border-radius: 7px;
  padding-top: calc(85 / 175 * 100%);
  position: relative;
  overflow: hidden;
}
.Hscheme .customer .pic i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Hscheme .customer .pic i img {
  max-height: 90%;
  max-width: 90%;
}
@media screen and (max-width: 768px) {
  .Hscheme .flexbox {
    flex-wrap: wrap;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }
  .Hscheme .left,
  .Hscheme .right {
    width: 100%;
  }
  .Hscheme .right {
    padding-right: 0;
  }
  .Hscheme .left {
    margin-bottom: 5%;
  }
  .Hscheme .left .swiper {
    height: auto;
  }
  .Hscheme .left li {
    padding-left: 0;
  }
  .Hscheme .left .box {
    padding: 10px;
    font-size: var(--f14);
  }
  .Hscheme .topbox .pic {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .Hscheme .topbox .textwarp {
    position: relative;
    min-height: 250px;
    padding: 20px;
  }
  .Hscheme .topbox .textwarp .title {
    font-size: var(--f24);
  }
  .Hscheme .topbox .textwarp .label {
    gap: 5px;
    margin: 10px 0;
  }
  .Hscheme .topbox .textwarp .label span {
    padding: 0 8px;
    line-height: 20px;
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  .Hscheme {
    padding: 10% 0;
  }
  .Hscheme .topbox .more {
    min-width: 100px;
    font-size: 14px;
  }
}
.Hpro {
  padding: 5% 0 3%;
}
.Hpro .swiper {
  margin-bottom: 3%;
  border-radius: 10px;
}
.Hpro .swiper-slide {
  height: auto;
}
.Hpro .box {
  display: flex;
  height: 100%;
  text-align: center;
  padding: 10%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column wrap;
  align-items: flex-start;
}
.Hpro .box:hover .more {
  background-color: #037bcf;
  color: #fff;
}
.Hpro .box:hover .pic {
  display: none;
}
.Hpro .box:hover .pic img {
  transform: scale(1.05);
}
.Hpro .box:hover .des {
  display: none;
}
.Hpro .box:hover .txt {
  display: block;
}
.Hpro .title {
  font-size: var(--f36);
  color: #037bcf;
}
.Hpro .txt,
.Hpro .des {
  font-size: var(--f16);
  color: #666666;
  text-align: left;
  margin: 10px 0 40px;
  line-height: calc(24/16);
}
.Hpro .pic {
  position: relative;
  padding-top: calc(150 / 288 * 100%);
  margin-bottom: 30px;
}
.Hpro .pic i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Hpro .pic i img {
  max-height: 100%;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hpro .txt {
  display: none;
}
.Hpro .btnbox {
  margin-top: auto;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}
.Hpro .more {
  min-width: 110px;
  padding: 0 10px;
  color: #037bcf;
  line-height: 34px;
  border: 1px solid rgba(3, 123, 207, 0.2);
  border-radius: 25px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
@media screen and (max-width: 640px) {
  .Hpro {
    padding: 10% 0;
  }
}
.Henterprise {
  background: url(../images/Hbox_bg.jpg) no-repeat center top #f7f7f7;
  padding: 6% 0;
}
.Henterprise .Htitle .htit,
.Henterprise .Htitle .hdes {
  color: #fff;
}
.Henterprise .list {
  position: relative;
}
.Henterprise .swiper {
  padding-bottom: 50px;
}
.Henterprise .swiper-slide {
  height: auto;
}
.Henterprise .box {
  display: flex;
  flex-flow: column wrap;
  padding: 11%;
  background-color: #fff;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0px 10px 30px 0px rgba(0, 46, 108, 0.05);
}
.Henterprise .box::before {
  content: '';
  position: absolute;
  right: 5%;
  top: 5%;
  width: 60px;
  height: 44px;
  background: url(../images/icon_line.svg) no-repeat center;
  background-size: contain;
}
.Henterprise .box::after {
  content: '';
  position: absolute;
  right: 12%;
  top: 100%;
  width: 58px;
  height: 24px;
  background: url(../images/icon_line2.png) no-repeat center;
  background-size: contain;
}
.Henterprise .icon {
  display: flex;
  height: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.Henterprise .icon img {
  max-height: 100%;
}
.Henterprise .des {
  margin: 20px 0;
  color: #666666;
  line-height: calc(24 / 14);
  position: relative;
  z-index: 2;
}
.Henterprise .other {
  margin-top: auto;
  margin-bottom: 0;
  color: #999999;
  position: relative;
  z-index: 2;
}
.Henterprise .other::before {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  background-color: #cccccc;
  margin: 40px 0 20px;
}
.Henterprise .other .tit {
  font-weight: bold;
  color: #666666;
  margin-bottom: 5px;
}
.Henterprise .swiper-button {
  top: 40%;
}
.Henterprise .link_logo {
  overflow: hidden;
  border-radius: 10px;
  gap: 2px;
}
.Henterprise .link_logo dl {
  width: calc((100% - 2px * 2) / 3);
  background-color: #fff;
}
.Henterprise .link_logo dt {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--f30);
  background: url(../images/tit_bg1.jpg) no-repeat center;
  background-size: cover;
}
.Henterprise .link_logo dl:nth-child(2) dt {
  background-image: url(../images/tit_bg2.jpg);
}
.Henterprise .link_logo dl:nth-child(3) dt {
  background-image: url(../images/tit_bg3.jpg);
}
.Henterprise .link_logo dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8%;
  gap: 15px 5px;
}
.Henterprise .link_logo dd .item {
  width: calc((100% - 5px * 3) / 4);
  text-align: center;
}
@media screen and (max-width: 640px) {
  .Henterprise {
    padding: 10% 0;
  }
  .Henterprise .link_logo dl {
    width: 100%;
    margin-bottom: 3%;
  }
}
.Hservice {
  padding: 5% 0;
  overflow: hidden;
}
.Hservice .tab_li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  font-size: var(--f20);
  margin-bottom: 30px;
}
.Hservice .tab_li li {
  padding-bottom: 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.Hservice .tab_li li:hover,
.Hservice .tab_li .on {
  color: #037bcf;
  border-bottom-color: #037bcf;
}
.Hservice .swiper {
  position: relative;
  max-width: 1050px;
  overflow: initial;
}
.Hservice .pic {
  position: relative;
  padding-top: calc(520 / 1050 * 100%);
}
.Hservice .pic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(26, 29, 90, 0.8), rgba(26, 29, 90, 0));
  z-index: 2;
}
.Hservice .box {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  display: block;
}
.Hservice .textwarp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  color: #fff;
  padding: 6%;
  align-items: flex-start;
  z-index: 3;
}
.Hservice .title {
  font-size: var(--f30);
}
.Hservice .des {
  max-width: 500px;
  margin: 25px 0 40px;
  font-size: var(--f16);
  line-height: calc(30 / 16);
}
.Hservice .btn {
  display: inline-block;
  min-width: 150px;
  padding: 0 10px;
  line-height: 48px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 25px;
  border: 1px solid #fff;
  cursor: pointer;
}
.Hservice .tab_con .con {
  display: none;
}
.Hservice .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.8;
}
.Hservice .swiper-slide:not(.swiper-slide-active) .textwarp {
  opacity: 0;
}
.Hservice .swiper-slide:not(.swiper-slide-active) .pic::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(3, 123, 207, 0.5), rgba(255, 255, 255, 0.5));
  z-index: 3;
}
.Hservice .swiper-button {
  opacity: 1;
  background-color: #fff;
}
.Hservice .swiper-button::after {
  color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
}
.Hservice .swiper-button:hover {
  background-color: #fff;
}
.Hservice .swiper-button:hover::after {
  color: #037bcf;
}
.Hservice .swiper-button-prev {
  left: -17%;
}
.Hservice .swiper-button-next {
  right: -17%;
}
@media screen and (max-width: 640px) {
  .Hservice .tab_li {
    gap: 10px;
    font-size: 16px;
  }
  .Hservice .pic {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .Hservice .textwarp {
    position: relative;
    min-height: 200px;
  }
  .Hservice .btn {
    min-width: 100px;
    line-height: 38px;
    font-size: 14px;
  }
}
.Hnews {
  background-color: #f7f7f7;
  padding: 5% 0;
}
.Hnews .list {
  width: calc(690 / 1440 * 100%);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.Hnews .titlebox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
  background: url(../images/tit_bg4.jpg) no-repeat center;
  background-size: cover;
  padding: 0 30px 0 40px;
  font-size: var(--f30);
  color: #fff;
}
.Hnews .more {
  display: inline-block;
  min-width: 120px;
  padding: 0 10px;
  line-height: 38px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 25px;
  border: 1px solid #fff;
  cursor: pointer;
  font-size: var(--f16);
}
.Hnews .ul {
  padding: 30px 40px 40px;
  line-height: 50px;
  font-size: var(--f16);
}
.Hnews time {
  color: #999999;
  margin-right: 30px;
}
.Hnews li a {
  color: #666666;
}
.Hnews li a:hover {
  color: #037bcf;
}
@media screen and (max-width: 640px) {
  .Hnews .titlebox {
    height: 60px;
    padding: 0 15px;
  }
  .Hnews .list {
    width: 100%;
    margin-bottom: 5%;
  }
  .Hnews .ul {
    padding: 15px;
    line-height: 36px;
  }
  .Hnews .more {
    min-width: 100px;
  }
}
.GetSolution {
  background: url(../images/bg.jpg) no-repeat center;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.GetSolution .title {
  font-size: var(--f40);
  line-height: 1.6;
  margin-bottom: 40px;
}
.GetSolution .btn {
  display: inline-block;
  min-width: 150px;
  padding: 0 10px;
  line-height: 48px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 25px;
  border: 1px solid #fff;
  cursor: pointer;
  font-size: var(--f18);
}
@media screen and (max-width: 640px) {
  .GetSolution {
    min-height: 200px;
  }
  .GetSolution .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .GetSolution .btn {
    min-width: 100px;
    line-height: 38px;
    font-size: 14px;
  }
}
.footer {
  background-color: #101623;
  padding-top: calc(100 / 1920 * 100%);
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer .fnav {
  width: 955px;
}
.footer .fnav dl {
  width: 140px;
}
.footer .fnav dl:last-child {
  width: auto;
}
.footer .fnav dt {
  font-size: var(--f18);
  margin-bottom: 15px;
}
.footer .fnav a {
  display: block;
  line-height: calc(30 / 14);
  color: rgba(255, 255, 255, 0.6);
}
.footer .fnav a:hover {
  color: #fff;
}
.footer .telbox {
  font-size: var(--f16);
  margin-bottom: 30px;
}
.footer .telbox .tel {
  font-size: var(--f40);
}
.footer .ewm {
  width: 130px;
  text-align: center;
}
.footer .ewm p {
  margin-top: 10px;
  opacity: 0.6;
}
.footer .Copyright {
  padding-top: calc(70 / 1440 * 100%);
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 30px;
}
.footer .Copyright a {
  color: rgba(255, 255, 255, 0.5);
}
.footer .Copyright a:hover {
  color: #fff;
}
.footer .Copyright .flink {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.4);
  gap: 10px;
}
.footer .Copyright .flink a {
  color: rgba(255, 255, 255, 0.4);
}
.footer .Copyright .flink a:hover {
  color: #fff;
}
.footer .Copyright .right {
  gap: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer .fnav {
    display: none;
  }
  .footer .navbox {
    justify-content: center;
    text-align: center;
  }
  .footer .ewm {
    margin: 0 auto;
  }
  .footer .Copyright {
    justify-content: center;
    text-align: center;
    padding-bottom: 10px;
  }
  .footer .Copyright .left {
    order: 2;
    margin-top: 10px;
  }
}
@media (max-width: 640px) {
  .footer .Copyright .flink {
    font-size: 12px;
    gap: 5px;
  }
}
.AggregationMain {
  background-color: #f7f7f7;
  padding: 40px 0 75px;
}
.AggregationMain .left {
  width: calc(1038 / 1440 * 100%);
}
.AggregationMain .right {
  width: calc(372 / 1440 * 100%);
}
.AggregationMain .re_title {
  color: #333333;
  font-size: var(--f20);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .AggregationMain .left,
  .AggregationMain .right {
    width: 100%;
  }
}
.bg_fff {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
}
.right_title {
  font-size: var(--f18);
  color: #333333;
  margin-bottom: 15px;
}
.itembox_one {
  padding: 60px 35px 70px;
}
.itembox_one .keyname {
  font-size: var(--f36);
}
.itembox_one .keyname span {
  color: #73a1bf;
}
.itembox_one .ul {
  margin-top: 10px;
}
.itembox_one li {
  border-top: 1px solid #e5e5e5;
}
.itembox_one li .box {
  padding: 30px 0;
  display: block;
}
.itembox_one li .box:hover .title {
  color: #037bcf;
}
.itembox_one li:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.itembox_one li .title {
  color: #333333;
  font-size: var(--f20);
}
.itembox_one li .des {
  line-height: calc(30 / 14);
  color: #666666;
  margin: 10px 0 5px;
}
.itembox_one li .time {
  color: #666666;
}
.itembox_two .list {
  gap: 10px;
}
.itembox_two .list a {
  display: inline-block;
  min-width: 108px;
  padding: 0 10px;
  line-height: 24px;
  border: 1px solid #037bcf;
  color: #037bcf;
  text-align: center;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.itembox_two .list a:hover {
  background-color: #037bcf;
  color: #fff;
}
.itembox_rmwz .search {
  width: 100%;
  position: relative;
  margin-bottom: 25px;
}
.itembox_rmwz .search .text {
  width: 100%;
  line-height: 50px;
  border: none;
  background-color: #f7f7f7;
  padding: 0 45px 0 20px;
}
.itembox_rmwz .search .text::placeholder {
  color: #999999;
}
.itembox_rmwz .search .search_btn {
  width: 40px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: url(../images/search2.png) no-repeat left center;
}
.itembox_rmwz .right_title {
  padding-left: 30px;
  background: url(../images/wz.png) no-repeat left center;
  margin-bottom: 5px;
}
.itembox_rmwz .list a {
  line-height: 36px;
  color: #666666;
}
.itembox_rmwz .list a:hover {
  color: #73a1bf;
}
.itembox_rmwz .list .num {
  display: inline-block;
  margin-right: 5px;
}
.itembox_rmwz .list li:first-child .num {
  color: #ff0000;
}
.itembox_rmwz .list li:nth-child(2) .num {
  color: #ffb400;
}
.itembox_rmwz .list li:nth-child(3) .num {
  color: #ffd800;
}
.itembox_ewm .pic {
  width: 130px;
  flex-shrink: 0;
  margin-right: 25px;
}
.itembox_ewm .txt {
  line-height: calc(30 / 14);
  color: #333333;
}
@media (max-width: 1200px) {
  .itembox_ewm .pic {
    width: 100px;
    margin-right: 10px;
  }
}
.itembox_other .right_title .more {
  font-size: var(--f14);
  color: #037bcf;
}
.itembox_other .box {
  align-items: flex-start;
}
.itembox_other .box:hover .title {
  color: #037bcf;
}
.itembox_other .pic {
  width: calc(120 / 320 * 100%);
  flex-shrink: 0;
  margin-right: 15px;
}
.itembox_other .pic i {
  display: block;
  width: 100%;
  padding-top: calc(73 / 120 * 100%);
  position: relative;
  overflow: hidden;
}
.itembox_other li:not(:last-child) {
  margin-bottom: 20px;
}
.itembox_other .title {
  font-size: var(--f16);
  color: #333333;
  line-height: calc(20 / 16);
}
.itembox_other .des {
  color: #666666;
  line-height: calc(20 / 14);
}
.re_name {
  margin-bottom: 40px;
}
.re_name .retit {
  padding-left: 20px;
  font-size: var(--f36);
  color: #393f4f;
  line-height: 1;
  border-left: 3px solid #393f4f;
}
.re_name a {
  color: #393f4f;
  font-size: var(--f15);
}
.re_name a:hover {
  color: #73a1bf;
}
.re_product {
  background-color: #ebf0f5;
  padding: 5% 0;
}
.re_product .ul {
  width: 100%;
  gap: 40px;
}
.re_product .pic {
  position: relative;
  overflow: hidden;
  padding-top: calc(200 / 330 * 100%);
}
.re_product li {
  width: calc((100% - 40px * 3) / 4);
}
.re_product .box {
  height: 100%;
  background-color: #fff;
  display: block;
}
.re_product .textwarp {
  padding: 15px 30px;
  display: flex;
  flex-flow: column wrap;
  height: 200px;
  width: 100%;
  align-items: flex-start;
}
.re_product .textwarp label {
  font-size: var(--f15);
  color: #393f4f;
}
.re_product .textwarp .title {
  margin: 10px 0;
  font-size: var(--f18);
  width: 100%;
}
.re_product a:hover .textwarp .title{color: #037bcf;}
.re_product .textwarp .des {
  font-size: var(--f15);
  color: #393f4f;
  line-height: calc(24 / 15);
}
.re_product .textwarp .btn {
  margin-top: auto;
  margin-bottom: 0;
  text-align: right;
  width: 100%;
}
.re_product .textwarp .more {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../images/more.png) no-repeat center;
  background-size: contain;
}
@media (max-width: 1024px) {
  .re_product .ul {
    gap: 15px;
    flex-wrap: wrap;
  }
  .re_product li {
    width: calc((100% - 15px * 3) / 4);
  }
  .re_product .textwarp {
    padding: 15px;
  }
}
@media (max-width: 640px) {
  .re_product {
    padding: 10% 0;
  }
  .re_product li {
    width: calc((100% - 15px) / 2);
  }
}
.re_case {
  padding: 5% 0 4%;
}
.re_case .pic {
  position: relative;
  height: 200px;
  overflow: hidden;
  width: calc(330 / 700 * 100%);
  flex-shrink: 0;
}
.re_case .pic i {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.re_case .ul {
  width: 100%;
}
.re_case li {
  width: 48.5%;
  margin-bottom: 3%;
}
.re_case .box {
  height: 100%;
  background-color: #ebf0f5;
}
.re_case .textwarp {
  flex: 1;
  padding: 20px 30px;
  display: flex;
  flex-flow: column wrap;
  min-width: 0;
  align-items: flex-start;
}
.re_case .textwarp label {
  font-size: var(--f15);
  color: #393f4f;
}
.re_case .textwarp .title {
  margin: 10px 0;
  font-size: var(--f18);
  width: 100%;
}
.re_case a:hover .textwarp .title{color: #037bcf;}
.re_case .textwarp .des {
  font-size: var(--f15);
  color: #393f4f;
  line-height: calc(24 / 15);
}
.re_case .textwarp .btn {
  margin-top: auto;
  margin-bottom: 0;
  text-align: right;
  width: 100%;
}
.re_case .textwarp .more {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../images/more.png) no-repeat center;
  background-size: contain;
}
@media (max-width: 1024px) {
  .re_case .textwarp {
    padding: 15px;
  }
}
@media (max-width: 640px) {
  .re_case {
    padding: 10% 0;
  }
  .re_case li {
    width: 100%;
  }
}

.re_case__news li .box{display: block;}
.re_case__news li{margin: 0;}
@media (min-width:1025px) {
  .re_case__news li{width: calc((100% - 10px * 3) / 4);}
  .re_case__news li:not(:nth-child(4n)){margin-right: 10px;}
  .re_case__news li:nth-child(4) ~ li{margin-top: 10px;}
}
@media (max-width: 1024px) {
  .re_case__news li{width: calc((100% - 10px) / 2);}
  .re_case__news li:not(:nth-child(2n)){margin-right: 10px;}
  .re_case__news li:nth-child(2) ~ li{margin-top: 10px;}
}
@media (max-width: 480px) {
  .re_case__news li{width: 100%;margin: 0 0 10px 0!important;}
}


.innerBanner div aside .more_news {
  display: inline-flex;
  min-width: 150px;
  line-height: 50px;
  background: #037bcf;
  font-size: var(--f18);
  width: auto;
  padding: 0;
  height: 50px;
  border-radius: 50px;
  justify-content: center;
}
.innerBanner div aside .more_news::before {
  display: none;
}
.soluInfo .soluconB .item .txtBox figure {
  height: 220px;
}
.Getquote_new {
  display: inline-flex;
  min-width: 200px!important;
  line-height: 50px;
  background: #037bcf !important;
  font-size: var(--f18);
  width: auto!important;
  padding: 0 10px!important;
  height: 50px;
  border-radius: 50px;
  color: #fff;
  margin-top: 10px;
  justify-content: center;
  text-align: center!important;
}
.Getquote_new::before {
  display: none;
}
.Getquote_new:hover {
  color: #fff;
}
.newListbom,
.caseInfo {
  background: #ebf0f5;
  padding-top: 3%;
}
.AggregationMain .infoTit {
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  padding-top: 0;
}
.AggregationMain .infoTit p span:first-child {
  margin-left: 0;
}
.AggregationMain .infoTit .label {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
  max-width: 810px;
}
.AggregationMain .infoTit .label .a {
  display: inline-flex;
  padding: 0 20px;
  line-height: 34px;
  border: 1px solid rgba(115, 161, 191, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
  color: #73a1bf;
}
.AggregationMain .ubtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8%;
}
.AggregationMain .ubtn > div {
  width: 48%;
}
.AggregationMain .ubtn .next {
  text-align: center;
}
.suspup {
  border-radius: 35px;
  background-color: #fff;
  text-align: center;
  padding: 5px;
  padding-top: 40px;
  right: 2%;
}
.suspup li .icon:not(.gettop) {
  background: none;
  width: 62px;
  height: auto;
  margin-bottom: 25px;
}
.suspup li .icon:not(.gettop)::before {
  content: '';
  display: block;
  width: 100%;
  height: 30px;
  background: url(../images/right_icon2.png) no-repeat center;
  margin-bottom: 10px;
}
.suspup li.li_tel .icon::before {
  background-image: url(../images/right_icon1.png);
}
.suspup li .gettop {
  width: 62px;
  height: 62px;
  background: url(../images/right_icon3.png) no-repeat center #037bcf !important;
  border-radius: 100%;
  margin: 0 auto;
}
.ZZ {
  z-index: 300;
}
.pupform {
  z-index: 301;
}


#aff-im-root *{font-family: sans-serif!important;}
.Page002193{zoom:1; overflow:hidden; text-align:center; padding:30px 0 5%; text-align:center;}
.Page002193 span{ padding:0px 3px; display:inline-block;}
.Page002193 a{ display:inline-block; margin:0px 2px; border:1px solid #d1d1d1; padding:0 1em; color:#666; line-height:35px; border-radius:3px;transition: .3s ease-out;}
.Page002193 a:hover{ color:#fff; border:1px solid #73a1bf; background:#73a1bf;}
.Page002193 .p_cur,.Page002193 .p_count,.Page002193 .p_total,.Page002193 .p_jump,.Page002193 .a_first,.Page002193 .a_end{ display:none;}
.Page002193 .p_cur b{ color:#73a1bf;}
.Page002193 .p_count b{ color:#73a1bf;}
.Page002193 .p_total b{ color:#73a1bf;}
.Page002193 .p_page em{ font-style:normal;}
.Page002193 .p_page em a{}
.Page002193 .p_page em a.a_cur{ color:#fff; background:#73a1bf; border-color:#73a1bf;}
.Page002193 .p_page b{ font-weight:normal;}
