@charset "UTF-8";
/*  页面重置样式  */
/* line 6, ../sass/_base.scss */
body, p, h1, h2, h3, h4, h5, li, span, i, ul, img, a, strong, input, button, textarea, select, dd, dl, dt, ol {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

/* line 12, ../sass/_base.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* line 16, ../sass/_base.scss */
body {
  font-family: "Arial", "microsoft yahei";
  font-size: 14px;
  line-height: 1;
  color: #333;
}

/* line 23, ../sass/_base.scss */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 29, ../sass/_base.scss */
li {
  list-style-type: none;
  float: left;
}

/* line 34, ../sass/_base.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 39, ../sass/_base.scss */
a, area {
  text-decoration: none;
  outline: none;
  color: #000;
}

/* line 45, ../sass/_base.scss */
img {
  border: none;
  vertical-align: middle;
}

/* line 50, ../sass/_base.scss */
i, var, em {
  font-style: normal;
}

/* line 54, ../sass/_base.scss */
button {
  font-family: "Arial", "microsoft yahei";
  font-size: 14px;
  outline: none;
  cursor: pointer;
  border: none;
  line-height: 1;
}

/* line 63, ../sass/_base.scss */
input[type="submit"] {
  border: none;
}

/* line 67, ../sass/_base.scss */
iframe {
  border: none;
}

/* line 71, ../sass/_base.scss */
input, select, textarea {
  outline: none;
  font-family: "Arial", "microsoft yahei";
  font-size: 14px;
}

/* line 77, ../sass/_base.scss */
textarea {
  resize: none;
  overflow-y: auto;
}

/* line 82, ../sass/_base.scss */
.at {
  margin: 0 auto;
}

/* line 86, ../sass/_base.scss */
.fl {
  float: left;
}

/* line 90, ../sass/_base.scss */
.fr {
  float: right;
}

/* line 94, ../sass/_base.scss */
.clear {
  clear: both;
}

/* line 98, ../sass/_base.scss */
.dt {
  display: table;
  width: 100%;
}

/* line 103, ../sass/_base.scss */
.fl-w {
  float: left;
  width: 100%;
}

/* line 108, ../sass/_base.scss */
.hide {
  display: none;
}

/* line 112, ../sass/_base.scss */
.ver-container {
  display: table;
  width: 100%;
  text-align: center;
}

/* line 118, ../sass/_base.scss */
.ver-container > * {
  vertical-align: middle;
  display: table-cell;
}

/* line 123, ../sass/_base.scss */
.swiper-button-disabled {
  cursor: no-drop !important;
  opacity: .5;
}

/* line 128, ../sass/_base.scss */
[class*=icon] {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 136, ../sass/_base.scss */
[class*=ico] {
  vertical-align: middle;
  display: inline-block;
}

/* line 141, ../sass/_base.scss */
.tab-inner {
  display: none;
}

/* line 146, ../sass/_base.scss */
.page-bann .p1 {
  margin-top: 0;
  margin-bottom: 0;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-stretch: normal;
  font-size: 20px;
  line-height: normal;
  color: white;
  white-space: normal;
}
/* line 157, ../sass/_base.scss */
.page-bann .s1 {
  letter-spacing: 1.5px;
}

/* line 161, ../sass/_base.scss */
.ml-15 {
  margin-left: 15px;
}

/* line 164, ../sass/_base.scss */
.ml-50 {
  margin-left: 50px;
}

/*动画*/
@-moz-keyframes ripple {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -moz-transform: scale(2);
    transform: scale(2);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}
/* line 16, ../sass/_funs.scss */
.ripple {
  -moz-animation-name: ripple;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}

@-moz-keyframes rotating {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* line 28, ../sass/_funs.scss */
.rotating {
  -moz-animation-name: rotating;
  -webkit-animation-name: rotating;
  animation-name: rotating;
}

@-moz-keyframes rotating_reverse {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotating_reverse {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes rotating_reverse {
  from {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
/* line 40, ../sass/_funs.scss */
.rotating_reverse {
  -moz-animation-name: rotating_reverse;
  -webkit-animation-name: rotating_reverse;
  animation-name: rotating_reverse;
}

@-moz-keyframes waving {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5, 0.8);
    transform: scale(0.5, 0.8);
  }
  50% {
    opacity: 0.7;
    -moz-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(1.8, 1.7);
    transform: scale(1.8, 1.7);
  }
}
@-webkit-keyframes waving {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5, 0.8);
    transform: scale(0.5, 0.8);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.8, 1.7);
    transform: scale(1.8, 1.7);
  }
}
@keyframes waving {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5, 0.8);
    -ms-transform: scale(0.5, 0.8);
    -webkit-transform: scale(0.5, 0.8);
    transform: scale(0.5, 0.8);
  }
  50% {
    opacity: 0.7;
    -moz-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(1.8, 1.7);
    -ms-transform: scale(1.8, 1.7);
    -webkit-transform: scale(1.8, 1.7);
    transform: scale(1.8, 1.7);
  }
}
/* line 58, ../sass/_funs.scss */
.waving {
  -moz-animation-name: waving;
  -webkit-animation-name: waving;
  animation-name: waving;
}

/* line 61, ../sass/_funs.scss */
._waving {
  -moz-animation: waving 10s linear infinite;
  -webkit-animation: waving 10s linear infinite;
  animation: waving 10s linear infinite;
}

@-moz-keyframes swing {
  0% {
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -moz-transform: rotate(-15deg) skewX(5deg) skewY(-2deg) scale(1.1);
    transform: rotate(-15deg) skewX(5deg) skewY(-2deg) scale(1.1);
  }
  100% {
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(-15deg) skewX(5deg) skewY(-2deg) scale(1.1);
    transform: rotate(-15deg) skewX(5deg) skewY(-2deg) scale(1.1);
  }
  100% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
}
@keyframes swing {
  0% {
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -moz-transform: rotate(-15deg) skewX(5deg) skewY(-2deg) scale(1.1);
    -ms-transform: rotate(-15deg) skewX(5deg) skewY(-2deg) scale(1.1);
    -webkit-transform: rotate(-15deg) skewX(5deg) skewY(-2deg) scale(1.1);
    transform: rotate(-15deg) skewX(5deg) skewY(-2deg) scale(1.1);
  }
  100% {
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
}
/* line 76, ../sass/_funs.scss */
.swing {
  position: relative;
  -moz-animation: swing 2.5s ease-in-out forwards infinite;
  -webkit-animation: swing 2.5s ease-in-out forwards infinite;
  animation: swing 2.5s ease-in-out forwards infinite;
  -moz-transform-origin: 50% -120% 50%;
  -ms-transform-origin: 50% -120% 50%;
  -webkit-transform-origin: 50% -120% 50%;
  transform-origin: 50% -120% 50%;
}

/* line 81, ../sass/_funs.scss */
.swing:before {
  position: absolute;
  content: '';
  bottom: 100%;
  height: 120%;
  width: 0.2em;
  background-color: #e7ce93;
  left: 50%;
  transform: translateX(-50%) skew(-3deg);
}

@-moz-keyframes waggle {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  75% {
    -moz-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  100% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes waggle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  75% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes waggle {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  75% {
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  100% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* line 106, ../sass/_funs.scss */
.waggle {
  -moz-animation-name: waggle;
  -webkit-animation-name: waggle;
  animation-name: waggle;
}

@-moz-keyframes click {
  from {
    -moz-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  to {
    -moz-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px);
  }
}
@-webkit-keyframes click {
  from {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  to {
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px);
  }
}
@keyframes click {
  from {
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  to {
    -moz-transform: translate(-20px, -20px);
    -ms-transform: translate(-20px, -20px);
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px);
  }
}
/* line 118, ../sass/_funs.scss */
.click {
  -moz-animation: click 1.5s ease-out both infinite;
  -webkit-animation: click 1.5s ease-out both infinite;
  animation: click 1.5s ease-out both infinite;
}

@-moz-keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 133, ../sass/_funs.scss */
.flash {
  -moz-animation-name: flash;
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* line 136, ../sass/_funs.scss */
.glitter {
  -moz-animation: flash 1s ease-in-out forwards infinite;
  -webkit-animation: flash 1s ease-in-out forwards infinite;
  animation: flash 1s ease-in-out forwards infinite;
}

/* line 140, ../sass/_funs.scss */
.fadingIn {
  overflow: hidden;
  opacity: 0;
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-filter: blur(0.1rem);
  filter: blur(0.1rem);
}
/* line 145, ../sass/_funs.scss */
.fadingIn.animate {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition: 1.5s;
  -o-transition: 1.5s;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

/* line 153, ../sass/_funs.scss */
.fadingInUp {
  opacity: 0;
  -moz-transform: translateY(2rem);
  -ms-transform: translateY(2rem);
  -webkit-transform: translateY(2rem);
  transform: translateY(2rem);
}
/* line 156, ../sass/_funs.scss */
.fadingInUp.animate {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
}

/* line 163, ../sass/_funs.scss */
.gaussBlur {
  -webkit-filter: blur(20px);
  filter: blur(20px);
}
/* line 165, ../sass/_funs.scss */
.gaussBlur.animate {
  -webkit-filter: blur(0);
  filter: blur(0);
  -moz-transition: 1s 0.5s;
  -o-transition: 1s 0.5s;
  -webkit-transition: 1s;
  -webkit-transition-delay: 0.5s;
  transition: 1s 0.5s;
}

/* line 9, ../sass/screen.scss */
body,
html {
  width: 100%;
  height: 100%;
}

/* line 15, ../sass/screen.scss */
html {
  overflow-x: hidden;
}

/* line 19, ../sass/screen.scss */
body {
  overflow-x: hidden;
}

/* line 23, ../sass/screen.scss */
.contain {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* line 29, ../sass/screen.scss */
.swiper1 {
  position: relative;
}
/* line 32, ../sass/screen.scss */
.swiper1 .swiper-pagination-bullet {
  background-color: #e71e43;
}

/* line 37, ../sass/screen.scss */
.carousel {
  width: 100%;
  height: 100vh;
  padding: 0 80px;
  float: left;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* line 46, ../sass/screen.scss */
.carousel .text {
  height: 100%;
  width: 100%;
  padding-top: 13%;
}
/* line 51, ../sass/screen.scss */
.carousel .text .labels {
  width: 100%;
  height: 35px;
  padding-left: 100px;
  position: relative;
  line-height: 35px;
  font-size: 16px;
  color: #e71e43;
}
/* line 60, ../sass/screen.scss */
.carousel .text .labels:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  width: 90px;
  height: 2px;
  background-color: #e71e43;
}
/* line 72, ../sass/screen.scss */
.carousel .text .txt {
  width: 100%;
  padding: 30px 0;
}
/* line 76, ../sass/screen.scss */
.carousel .text .txt h3 {
  line-height: 112px;
  font-size: 80px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  margin: 0;
}
/* line 84, ../sass/screen.scss */
.carousel .text .txt h4 {
  margin: 0;
  font-size: 40px;
  color: #999;
}

/* line 93, ../sass/screen.scss */
.carousel_wap {
  width: 100%;
  float: left;
  height: 400px;
  padding-top: 50px;
  padding-left: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* line 103, ../sass/screen.scss */
.carousel_wap .contain {
  padding: 0;
}
/* line 107, ../sass/screen.scss */
.carousel_wap .text {
  height: 100%;
  width: 100%;
  padding-bottom: 30px;
}
/* line 112, ../sass/screen.scss */
.carousel_wap .text .txt {
  padding: 0;
}
/* line 115, ../sass/screen.scss */
.carousel_wap .text .txt h3 {
  font-size: 26px;
  line-height: 50px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  margin: 0;
}
/* line 124, ../sass/screen.scss */
.carousel_wap .text .labels {
  padding-left: 30px;
  width: 100%;
  height: 35px;
  position: relative;
  line-height: 35px;
  font-size: 16px;
  color: #e71e43;
}
/* line 133, ../sass/screen.scss */
.carousel_wap .text .labels:after {
  width: 60px;
  height: 1px;
  left: -40px;
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  background-color: #e71e43;
}

/* line 147, ../sass/screen.scss */
.notification {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  padding: 15px 0 12px;
}
/* line 154, ../sass/screen.scss */
.notification p {
  margin-bottom: 5px;
}
/* line 158, ../sass/screen.scss */
.notification .link {
  color: #003b92;
}
/* line 162, ../sass/screen.scss */
.notification .btns {
  text-align: right;
}
/* line 166, ../sass/screen.scss */
.notification .btn {
  color: #fff !important;
  background-color: #e71e43;
  width: 73px;
  height: 26px;
  line-height: 26px;
  border-radius: 13px;
  padding: 0;
}
/* line 175, ../sass/screen.scss */
.notification .btn + .btn {
  margin-left: 17px;
}

/* line 181, ../sass/screen.scss */
.demo {
  text-align: center;
}
/* line 184, ../sass/screen.scss */
.demo a {
  cursor: pointer;
  display: inline-block;
  width: 130px;
  height: 40px;
  border-radius: 20px;
  background-color: #e71e43;
  color: #fff !important;
  text-align: center;
  line-height: 40px;
  box-shadow: 0 2px 10px 4px rgba(231, 30, 67, 0.2);
  text-decoration: none !important;
}

/* line 198, ../sass/screen.scss */
.header-null {
  width: 100%;
  height: 120px;
}

/* line 203, ../sass/screen.scss */
.header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
/* line 210, ../sass/screen.scss */
.header .box {
  height: 120px;
  padding: 0 80px;
}
/* line 216, ../sass/screen.scss */
.header .nav .logo {
  height: 120px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 223, ../sass/screen.scss */
.header .nav .logo i {
  display: inline-block;
  width: 80px;
  height: 58px;
  background: url("../images/db5c30_80x60.png") center no-repeat;
}
/* line 230, ../sass/screen.scss */
.header .nav .logo .logo-white {
  width: 100%;
  display: none;
}
/* line 235, ../sass/screen.scss */
.header .nav .logo .logo-red {
  width: 100%;
}
/* line 238, ../sass/screen.scss */
.header .nav .logo .logo-red img {
  width: 100%;
}
/* line 243, ../sass/screen.scss */
.header .nav .logo p {
  margin: 0;
}
/* line 248, ../sass/screen.scss */
.header .nav .list {
  height: 100%;
  padding: 0 30px;
  float: left;
}
/* line 253, ../sass/screen.scss */
.header .nav .list ul {
  width: 100%;
}
/* line 256, ../sass/screen.scss */
.header .nav .list ul li {
  padding: 42px 0;
  margin: 0 15px;
  min-width: 80px;
  text-align: center;
  height: 120px;
  position: relative;
}
/* line 264, ../sass/screen.scss */
.header .nav .list ul li .tit {
  line-height: 36px;
  font-size: 16px;
  height: 36px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
}
/* line 273, ../sass/screen.scss */
.header .nav .list ul li .tit a {
  color: #333;
  text-decoration: none;
}
/* line 277, ../sass/screen.scss */
.header .nav .list ul li .tit a:hover {
  color: #e71e43;
}
/* line 282, ../sass/screen.scss */
.header .nav .list ul li .tit i.more {
  display: inline-block;
  width: 26px;
  height: 36px;
  position: relative;
}
/* line 288, ../sass/screen.scss */
.header .nav .list ul li .tit i.more:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  transition: 0.5s;
  transform: rotate(45deg);
  width: 8px;
  height: 1px;
  background-color: #000;
  border-radius: 2px;
}
/* line 302, ../sass/screen.scss */
.header .nav .list ul li .tit i.more:before {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -2px;
  top: 50%;
  width: 8px;
  transition: 0.5s;
  transform: rotate(-45deg);
  height: 1px;
  background-color: #000;
  border-radius: 2px;
}
/* line 318, ../sass/screen.scss */
.header .nav .list ul li .nav-list {
  width: 322px;
  min-height: 100px;
  position: absolute;
  left: -50px;
  background-color: #fff;
  top: 90px;
  border-radius: 20px 20px;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
  padding: 15px 65px;
  display: none;
}
/* line 330, ../sass/screen.scss */
.header .nav .list ul li .nav-list a {
  display: block;
  width: 100%;
  text-align: left;
  line-height: 44px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
}
/* line 339, ../sass/screen.scss */
.header .nav .list ul li .nav-list a:hover {
  color: #e71e43;
}
/* line 347, ../sass/screen.scss */
.header .nav .list ul li.acti .tit i:after {
  background-color: #039;
  transform: rotate(-45deg);
}
/* line 352, ../sass/screen.scss */
.header .nav .list ul li.acti .tit i:before {
  background-color: #039;
  transform: rotate(45deg);
}
/* line 358, ../sass/screen.scss */
.header .nav .list ul li.acti .nav-list {
  display: block;
}
/* line 366, ../sass/screen.scss */
.header .nav .demo {
  padding: 40px 10px 0 202px;
}
/* line 371, ../sass/screen.scss */
.header .language {
  padding: 40px 0;
  position: relative;
}
/* line 375, ../sass/screen.scss */
.header .language a {
  line-height: 40px;
  color: #fff;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}
/* line 382, ../sass/screen.scss */
.header .language span {
  display: inline-block;
  width: 2px;
  height: 15px;
  background-color: #fff;
  vertical-align: text-top;
  margin: 0 10px;
}
/* line 395, ../sass/screen.scss */
.header.bgs .nav .logo i {
  background: url("../images/e90248_80x60.png") center no-repeat;
  background-size: cover;
}
/* line 400, ../sass/screen.scss */
.header.bgs .nav .logo .logo-red {
  display: none;
}
/* line 404, ../sass/screen.scss */
.header.bgs .nav .logo .logo-white {
  display: block;
}
/* line 407, ../sass/screen.scss */
.header.bgs .nav .logo .logo-white img {
  width: 100%;
}
/* line 413, ../sass/screen.scss */
.header.bgs .nav .list ul li .tit {
  color: #fff;
}
/* line 416, ../sass/screen.scss */
.header.bgs .nav .list ul li .tit a {
  color: #fff;
}
/* line 421, ../sass/screen.scss */
.header.bgs .nav .list ul li .tit i.more:after {
  background-color: #fff;
}
/* line 425, ../sass/screen.scss */
.header.bgs .nav .list ul li .tit i.more:before {
  background-color: #fff;
}
/* line 431, ../sass/screen.scss */
.header.bgs .nav .demo a {
  background-color: #fff;
  color: #e71e43 !important;
}
/* line 439, ../sass/screen.scss */
.header.bgs.fix .nav .logo i {
  background: url("../images/db5c30_80x60.png") center no-repeat;
}
/* line 443, ../sass/screen.scss */
.header.bgs.fix .nav .logo .logo-red {
  display: block;
}
/* line 447, ../sass/screen.scss */
.header.bgs.fix .nav .logo .logo-white {
  display: none;
}
/* line 452, ../sass/screen.scss */
.header.bgs.fix .nav .list ul li .tit {
  color: #333;
}
/* line 455, ../sass/screen.scss */
.header.bgs.fix .nav .list ul li .tit a {
  color: #333;
}
/* line 460, ../sass/screen.scss */
.header.bgs.fix .nav .list ul li .tit i.more:after {
  background-color: #333;
}
/* line 464, ../sass/screen.scss */
.header.bgs.fix .nav .list ul li .tit i.more:before {
  background-color: #333;
}
/* line 470, ../sass/screen.scss */
.header.bgs.fix .nav .demo a {
  background-color: #e71e43;
  color: #fff !important;
}
/* line 479, ../sass/screen.scss */
.header.bg-white .language span {
  background-color: #E71D43;
}
/* line 483, ../sass/screen.scss */
.header.bg-white .language a {
  color: #E71D43;
}
/* line 490, ../sass/screen.scss */
.header.fix {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
/* line 498, ../sass/screen.scss */
.header.fix .box {
  height: 80px;
}
/* line 503, ../sass/screen.scss */
.header.fix .nav .logo {
  height: 80px;
}
/* line 506, ../sass/screen.scss */
.header.fix .nav .logo img {
  max-height: 60%;
}
/* line 511, ../sass/screen.scss */
.header.fix .nav .list ul li {
  padding: 22px 0;
  height: 80px;
}
/* line 515, ../sass/screen.scss */
.header.fix .nav .list ul li .nav-list {
  top: 78px;
  border-radius: 0 0 20px 20px;
}
/* line 521, ../sass/screen.scss */
.header.fix .nav .demo {
  padding-top: 20px;
}
/* line 526, ../sass/screen.scss */
.header.fix .language {
  padding: 20px 0;
}
/* line 529, ../sass/screen.scss */
.header.fix .language span {
  background-color: #E71D43;
}
/* line 533, ../sass/screen.scss */
.header.fix .language a {
  color: #E71D43;
}

/* line 540, ../sass/screen.scss */
.wap-null {
  width: 100%;
  height: 60px;
  float: left;
}

/* line 546, ../sass/screen.scss */
.header-wap {
  width: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
}
/* line 555, ../sass/screen.scss */
.header-wap .box {
  height: 60px;
  padding: 0 20px;
}
/* line 560, ../sass/screen.scss */
.header-wap .logo {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 566, ../sass/screen.scss */
.header-wap .logo p {
  margin: 0;
}
/* line 570, ../sass/screen.scss */
.header-wap .logo img {
  height: 40px;
}
/* line 587, ../sass/screen.scss */
.header-wap .menu {
  width: 60px;
  height: 60px;
  position: relative;
  right: -15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 596, ../sass/screen.scss */
.header-wap .menu i {
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #666;
  border-radius: 2px;
  transition: 0.5s;
  position: relative;
}
/* line 605, ../sass/screen.scss */
.header-wap .menu i:after {
  content: '';
  position: absolute;
  left: 0;
  top: -10px;
  transition: 0.5s;
  width: 100%;
  border-radius: 2px;
  height: 3px;
  background-color: #666;
}
/* line 617, ../sass/screen.scss */
.header-wap .menu i:before {
  content: '';
  transition: 0.5s;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
}
/* line 630, ../sass/screen.scss */
.header-wap .menu.acti i {
  background: none;
}
/* line 633, ../sass/screen.scss */
.header-wap .menu.acti i:after {
  transform: rotate(45deg);
  left: 0;
  top: 0;
}
/* line 639, ../sass/screen.scss */
.header-wap .menu.acti i:before {
  transform: rotate(-45deg);
  left: 0;
  top: 0;
}
/* line 647, ../sass/screen.scss */
.header-wap .slide {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 60px;
  z-index: 99;
  display: none;
  box-shadow: 0 4px 8px rgba(51, 51, 51, 0.1);
}
/* line 658, ../sass/screen.scss */
.header-wap .slide .slide-content {
  width: 100%;
  background-color: #fff;
  float: left;
  border-top: 1px solid #e5e5e5;
}
/* line 665, ../sass/screen.scss */
.header-wap .slide .menus {
  width: 100%;
  padding: 10px 20px;
  float: left;
}
/* line 670, ../sass/screen.scss */
.header-wap .slide .menus ul {
  width: 100%;
}
/* line 673, ../sass/screen.scss */
.header-wap .slide .menus ul li {
  width: 100%;
  border-bottom: 1px dashed #e5e5e5;
  float: left;
}
/* line 678, ../sass/screen.scss */
.header-wap .slide .menus ul li:last-child {
  border: none;
}
/* line 682, ../sass/screen.scss */
.header-wap .slide .menus ul li h4 {
  font-size: 15px;
  margin: 0;
  height: 50px;
  width: 100%;
  line-height: 50px;
}
/* line 689, ../sass/screen.scss */
.header-wap .slide .menus ul li h4 a {
  color: #333;
  text-decoration: none;
}
/* line 695, ../sass/screen.scss */
.header-wap .slide .menus ul li i {
  display: inline-block;
  width: 50px;
  height: 50px;
  float: right;
  position: relative;
}
/* line 702, ../sass/screen.scss */
.header-wap .slide .menus ul li i:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: rotate(45deg);
  width: 8px;
  transition: 0.5s;
  height: 1px;
  background-color: #333;
}
/* line 714, ../sass/screen.scss */
.header-wap .slide .menus ul li i:before {
  content: '';
  position: absolute;
  right: 5px;
  transform: rotate(-45deg);
  top: 50%;
  width: 8px;
  transition: 0.5s;
  height: 1px;
  background-color: #333;
}
/* line 727, ../sass/screen.scss */
.header-wap .slide .menus ul li .menus-slide {
  width: 100%;
  padding-bottom: 10px;
  display: none;
}
/* line 732, ../sass/screen.scss */
.header-wap .slide .menus ul li .menus-slide a {
  line-height: 40px;
  border-bottom: 1px dashed #f5f5f5;
  font-size: 14px;
  display: block;
  width: 100%;
  color: #444;
  padding-left: 15px;
}
/* line 741, ../sass/screen.scss */
.header-wap .slide .menus ul li .menus-slide a:last-child {
  border-bottom: none;
}
/* line 748, ../sass/screen.scss */
.header-wap .slide .menus ul li.acti h4 i:after {
  transform: rotate(-45deg);
}
/* line 752, ../sass/screen.scss */
.header-wap .slide .menus ul li.acti h4 i:before {
  transform: rotate(45deg);
}
/* line 760, ../sass/screen.scss */
.header-wap .slide .search {
  width: 100%;
  height: 60px;
  float: left;
  background-color: #e71e43;
  padding: 10px 20px;
}
/* line 767, ../sass/screen.scss */
.header-wap .slide .search .input {
  width: 100%;
  height: 40px;
  /*display: flex;*/
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}
/* line 774, ../sass/screen.scss */
.header-wap .slide .search .input input {
  width: 80%;
  height: 40px;
  line-height: 40px;
  border: none;
  background: none;
  color: #fff;
  float: left;
}
/* line 783, ../sass/screen.scss */
.header-wap .slide .search .input input::-webkit-input-placeholder {
  color: #fff;
}
/* line 787, ../sass/screen.scss */
.header-wap .slide .search .input input.submit {
  width: 40px;
  height: 40px;
  background: url("../images/80bd9b_20x20.png") center no-repeat;
}

/* line 798, ../sass/screen.scss */
.footer {
  width: 100%;
  min-height: 100px;
  float: left;
}
/* line 807, ../sass/screen.scss */
.footer .contact {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
  float: left;
}
/* line 814, ../sass/screen.scss */
.footer .contact .company {
  width: 100%;
}
/* line 817, ../sass/screen.scss */
.footer .contact .company .logo {
  width: 100%;
  height: 68px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
/* line 825, ../sass/screen.scss */
.footer .contact .company .list {
  width: 100%;
  padding: 35px 0;
  max-width: 194px;
}
/* line 830, ../sass/screen.scss */
.footer .contact .company .list ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
/* line 835, ../sass/screen.scss */
.footer .contact .company .list ul li {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  position: relative;
}
/* line 841, ../sass/screen.scss */
.footer .contact .company .list ul li .ico {
  width: 40px;
  height: 40px;
}
/* line 845, ../sass/screen.scss */
.footer .contact .company .list ul li .ico img {
  width: 40px;
  height: 40px;
  border-right: 20px;
}
/* line 852, ../sass/screen.scss */
.footer .contact .company .list ul li .list-slide {
  width: 100px;
  height: 100px;
  padding: 5px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  margin-left: -50px;
  bottom: -110px;
  display: none;
}
/* line 863, ../sass/screen.scss */
.footer .contact .company .list ul li .list-slide:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: -8px;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
/* line 876, ../sass/screen.scss */
.footer .contact .company .list ul li .list-slide img {
  width: 100%;
  height: 100%;
}
/* line 882, ../sass/screen.scss */
.footer .contact .company .list ul li:hover .list-slide {
  display: block;
}
/* line 890, ../sass/screen.scss */
.footer .contact .link {
  width: 100%;
  float: left;
}
/* line 894, ../sass/screen.scss */
.footer .contact .link dl {
  float: left;
  width: auto;
  min-width: 100px;
  margin-right: 40px;
}
/* line 900, ../sass/screen.scss */
.footer .contact .link dl dt {
  width: 100%;
  height: 46px;
  line-height: 46px;
  font-size: 18px;
  font-weight: normal;
}
/* line 908, ../sass/screen.scss */
.footer .contact .link dl dd {
  width: 100%;
  line-height: 30px;
  font-size: 14px;
}
/* line 913, ../sass/screen.scss */
.footer .contact .link dl dd a {
  color: #676767;
}
/* line 920, ../sass/screen.scss */
.footer .contact .wx {
  width: auto;
  float: right;
}
/* line 924, ../sass/screen.scss */
.footer .contact .wx .imgs {
  width: 170px;
}
/* line 927, ../sass/screen.scss */
.footer .contact .wx .imgs img {
  width: 100%;
}
/* line 932, ../sass/screen.scss */
.footer .contact .wx .text {
  width: 100%;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  color: #9b9b9b;
}
/* line 942, ../sass/screen.scss */
.footer .copyright {
  width: 100%;
  padding: 17px 0;
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
  color: #aaa;
  letter-spacing: 1px;
  float: left;
}
/* line 952, ../sass/screen.scss */
.footer .copyright a {
  color: #bfbfbf;
  text-decoration: underline;
}
/* line 957, ../sass/screen.scss */
.footer .copyright img {
  width: 18px;
  margin-left: 12px;
  margin-right: 7px;
}

/* line 965, ../sass/screen.scss */
.service {
  width: 100%;
  min-height: 100px;
  padding-top: 50px;
  padding-bottom: 60px;
  float: left;
}
/* line 972, ../sass/screen.scss */
.service .title {
  width: 100%;
  padding-bottom: 10px;
  text-align: center;
}
/* line 977, ../sass/screen.scss */
.service .title h3 {
  line-height: 120px;
  font-size: 46px;
  margin: 0;
  color: #333;
}
/* line 984, ../sass/screen.scss */
.service .title p {
  margin: 0;
  line-height: 26px;
  color: #777;
}
/* line 991, ../sass/screen.scss */
.service .list {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
  float: left;
}
/* line 997, ../sass/screen.scss */
.service .list .box {
  width: 100%;
  min-height: 100px;
  max-width: 380px;
  margin: 0 auto;
  padding-top: 20px;
  border-radius: 20px;
}
/* line 1005, ../sass/screen.scss */
.service .list .box .imgs {
  width: 100%;
  height: 188px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
/* line 1014, ../sass/screen.scss */
.service .list .box .imgs img {
  max-width: 100%;
  max-height: 100%;
}
/* line 1020, ../sass/screen.scss */
.service .list .box .text {
  width: 100%;
  text-align: center;
  max-width: 235px;
  padding-top: 30px;
  margin: 0 auto;
}
/* line 1027, ../sass/screen.scss */
.service .list .box .text h5 {
  line-height: 56px;
  font-size: 20px;
  color: #333;
  margin: 0;
}
/* line 1034, ../sass/screen.scss */
.service .list .box .text p {
  line-height: 28px;
  margin: 8px 0;
  color: #666;
}
/* line 61, ../sass/_utils.scss */
.eng .service .list .box .text p {
  text-align: justify;
  text-align-last: center;
  word-break: break-all;
}
/* line 1047, ../sass/screen.scss */
.service .list .box .more {
  width: 100%;
  padding: 70px 0;
  text-align: center;
}
/* line 1052, ../sass/screen.scss */
.service .list .box .more a {
  display: inline-block;
  width: 200px;
  height: 50px;
  border-radius: 25px;
  background-color: #fff;
  color: #fff;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
}
/* line 1065, ../sass/screen.scss */
.service .list .box .con {
  width: 62px;
  height: 62px;
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  display: inline-block;
}
/* line 25, ../sass/_utils.scss */
.service .list .box .con-service {
  background-image: url('../images/con-service.png?1599532120');
}
/* line 25, ../sass/_utils.scss */
.service .list .box .con-panel {
  background-image: url('../images/con-panel.png?1641066662');
}
/* line 25, ../sass/_utils.scss */
.service .list .box .con-system {
  background-image: url('../images/con-system.png?1641066397');
}
/* line 1074, ../sass/screen.scss */
.service .list .box:hover {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
/* line 1078, ../sass/screen.scss */
.service .list .box:hover .more a {
  background-color: #f7f7fa;
  color: #039;
}
/* line 1085, ../sass/screen.scss */
.service .list .box.act .con-service {
  background-image: url('../images/con-service-active.png?1646830302');
}
/* line 1088, ../sass/screen.scss */
.service .list .box.act .con-panel {
  background-image: url('../images/con-panel-active.png?1646830278');
}
/* line 1091, ../sass/screen.scss */
.service .list .box.act .con-system {
  background-image: url('../images/con-system-active.png?1646830291');
}
/* line 1094, ../sass/screen.scss */
.service .list .box.act .imgs {
  width: 188px;
  margin: auto;
  background-color: #e71e43;
  border-radius: 50%;
  align-items: center;
  position: relative;
}
/* line 1101, ../sass/screen.scss */
.service .list .box.act .imgs:before {
  position: absolute;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background-color: #fb6e88;
  border-radius: 50%;
  bottom: 0;
  left: -17px;
}
/* line 1114, ../sass/screen.scss */
.service .list .content {
  width: 100%;
}
/* line 1117, ../sass/screen.scss */
.service .list .content ul {
  width: 100%;
  padding: 30px 0;
}
/* line 1121, ../sass/screen.scss */
.service .list .content ul li {
  width: 80%;
  min-height: 400px;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 10px;
  margin-bottom: 50px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f5f5f5;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
/* line 1135, ../sass/screen.scss */
.service .list .content ul li .imgs {
  width: 100%;
  text-align: center;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 1143, ../sass/screen.scss */
.service .list .content ul li .imgs img {
  max-height: 60%;
}
/* line 1148, ../sass/screen.scss */
.service .list .content ul li .text {
  width: 100%;
}
/* line 1151, ../sass/screen.scss */
.service .list .content ul li .text h5 {
  text-align: center;
  line-height: 40px;
  font-size: 22px;
  color: #333;
}
/* line 1158, ../sass/screen.scss */
.service .list .content ul li .text p {
  width: 100%;
  line-height: 26px;
  color: #666;
  text-align: center;
}
/* line 1166, ../sass/screen.scss */
.service .list .content ul li .more {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
/* line 1171, ../sass/screen.scss */
.service .list .content ul li .more a {
  display: inline-block;
  width: 180px;
  height: 50px;
  background-color: #f7f7fa;
  text-align: center;
  line-height: 50px;
  border-radius: 25px;
  color: #039;
  text-decoration: none;
}

/* line 1189, ../sass/screen.scss */
.data {
  width: 100%;
  height: 500px;
  float: left;
  background: #fafafb url("../images/589160_1195x500.jpg") center no-repeat;
  padding-top: 86px;
}
/* line 1196, ../sass/screen.scss */
.data .title {
  width: 100%;
  line-height: 76px;
  font-size: 48px;
  color: #333;
  text-align: center;
}
/* line 1204, ../sass/screen.scss */
.data .list {
  width: 100%;
  padding-top: 90px;
}
/* line 1208, ../sass/screen.scss */
.data .list .box {
  width: 100%;
  text-align: center;
}
/* line 1212, ../sass/screen.scss */
.data .list .box .text {
  width: 100%;
  height: 88px;
  font-size: 60px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 88px;
  color: #e71e43;
}
/* line 1222, ../sass/screen.scss */
.data .list .box .tit {
  width: 100%;
  line-height: 56px;
  font-size: 16px;
  color: #555;
}

/* line 1232, ../sass/screen.scss */
.solve {
  width: 100%;
  padding-bottom: 80px;
  float: left;
}
/* line 1237, ../sass/screen.scss */
.solve .title {
  width: 100%;
  padding-top: 50px;
  float: left;
}
/* line 1242, ../sass/screen.scss */
.solve .title h3 {
  text-align: center;
  line-height: 114px;
  font-size: 48px;
  margin-bottom: 30px;
}
/* line 1248, ../sass/screen.scss */
.solve .title h3 span {
  display: inline-block;
  width: auto;
  padding: 0 100px;
  position: relative;
}
/* line 1254, ../sass/screen.scss */
.solve .title h3 span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #d8d8d8;
}
/* line 1264, ../sass/screen.scss */
.solve .title h3 span:before {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -56px;
  bottom: -2px;
  width: 112px;
  z-index: 9;
  height: 8px;
  background-color: #e71e43;
}
/* line 1278, ../sass/screen.scss */
.solve .title p {
  text-align: center;
  width: 100%;
  font-size: 14px;
  line-height: 28px;
  color: #888;
  margin: 0;
}
/* line 1288, ../sass/screen.scss */
.solve .list {
  width: 100%;
  padding-top: 55px;
  float: left;
  position: relative;
}
/* line 1294, ../sass/screen.scss */
.solve .list .computer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}
/* line 1301, ../sass/screen.scss */
.solve .list .computer img {
  width: 50%;
}
/* line 1306, ../sass/screen.scss */
.solve .list .item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9;
  margin-bottom: 50px;
}
/* line 1315, ../sass/screen.scss */
.solve .list .item.item2 {
  display: flex;
  justify-content: space-between;
  /*padding: 0 3%;*/
  margin-bottom: 145px;
}
/* line 1322, ../sass/screen.scss */
.solve .list .item.item3 {
  display: flex;
  justify-content: space-between;
}
/* line 1327, ../sass/screen.scss */
.solve .list .item .box {
  width: 300px;
  height: 120px;
  float: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
/* line 1335, ../sass/screen.scss */
.solve .list .item .box a {
  display: -webkit-inline-box;
  text-decoration: none;
}
/* line 1340, ../sass/screen.scss */
.solve .list .item .box .imgs {
  width: 120px;
  height: 120px;
  background-color: #e71e43;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 1349, ../sass/screen.scss */
.solve .list .item .box .imgs.visible-lg {
  display: flex !important;
}
/* line 1354, ../sass/screen.scss */
.solve .list .item .box .text {
  width: calc(100% - 120px);
  padding-left: 10px;
  padding-right: 30px;
  height: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
/* line 1363, ../sass/screen.scss */
.solve .list .item .box .text .tit {
  width: auto;
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}
/* line 1370, ../sass/screen.scss */
.solve .list .item .box .text .tit span {
  display: block;
  width: 200%;
}
/* line 1376, ../sass/screen.scss */
.solve .list .item .box .text .txt {
  width: 100%;
  line-height: 1.6;
  font-size: 14px;
  color: #777;
  text-align: justify;
  word-break: break-all;
}
/* line 1386, ../sass/screen.scss */
.solve .list .item .box:hover .text .tit {
  color: #e71e43;
}

/* line 1394, ../sass/screen.scss */
.cooperation {
  width: 100%;
  background-color: #fafafb;
  min-height: 100px;
  float: left;
  padding-top: 50px;
  padding-bottom: 50px;
}
/* line 1402, ../sass/screen.scss */
.cooperation .title {
  width: 100%;
  text-align: center;
}
/* line 1406, ../sass/screen.scss */
.cooperation .title h3 {
  width: 100%;
  line-height: 72px;
  font-size: 46px;
  color: #333;
}
/* line 1413, ../sass/screen.scss */
.cooperation .title p {
  line-height: 24px;
  color: #666;
  margin: 0;
}
/* line 1420, ../sass/screen.scss */
.cooperation .list {
  max-width: 1300px;
  padding-bottom: 20px;
  margin: 0 auto;
  overflow: hidden;
}
/* line 1426, ../sass/screen.scss */
.cooperation .list .item {
  width: 20%;
  height: 740px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  float: left;
  text-align: center;
}
/* line 1435, ../sass/screen.scss */
.cooperation .list .item .box {
  width: 220px;
  height: 220px;
  border-radius: 10px;
  background-color: #fff;
  margin: 20px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
/* line 1446, ../sass/screen.scss */
.cooperation .list .item .box .imgs {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #e71e43;
}
/* line 1455, ../sass/screen.scss */
.cooperation .list .item .box .imgs img {
  max-width: 100%;
  max-height: 100%;
}
/* line 1461, ../sass/screen.scss */
.cooperation .list .item .box .img {
  width: 100%;
  height: 128px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 1468, ../sass/screen.scss */
.cooperation .list .item .box .img img {
  width: 100%;
}
/* line 1473, ../sass/screen.scss */
.cooperation .list .item .box .text {
  width: 100%;
  text-align: center;
  line-height: 42px;
  font-size: 15px;
  color: #999;
}
/* line 1484, ../sass/screen.scss */
.cooperation .content {
  width: 100%;
  padding: 0 20px;
}
/* line 1488, ../sass/screen.scss */
.cooperation .content ul {
  width: 100%;
}
/* line 1491, ../sass/screen.scss */
.cooperation .content ul li {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 1497, ../sass/screen.scss */
.cooperation .content ul li img {
  max-width: 100%;
  max-height: 100%;
}
/* line 1505, ../sass/screen.scss */
.cooperation + .demo {
  background-color: #fafafb;
  padding: 35px 0 14px;
  width: 100%;
}

/* line 1512, ../sass/screen.scss */
.banner {
  width: 100%;
  height: 500px;
  float: left;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* line 1520, ../sass/screen.scss */
.banner.bann2 {
  height: 400px;
}
/* line 1524, ../sass/screen.scss */
.banner.bann3 {
  height: 400px;
}
/* line 1528, ../sass/screen.scss */
.banner .contain {
  padding-top: 120px;
  height: 100%;
}
/* line 1533, ../sass/screen.scss */
.banner .text {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  max-width: 550px;
}
/* line 1542, ../sass/screen.scss */
.banner .tit {
  width: 100%;
  line-height: 72px;
  font-size: 40px;
}
/* line 1548, ../sass/screen.scss */
.banner .txt {
  width: 100%;
  padding: 10px 0;
  line-height: 32px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
  font-size: 20px;
}
/* line 1557, ../sass/screen.scss */
.banner .logo {
  width: 100%;
  text-align: center;
  padding-top: 100px;
  position: relative;
}
/* line 1563, ../sass/screen.scss */
.banner .logo img {
  max-width: 60%;
}
/* line 1568, ../sass/screen.scss */
.banner.bann6 .txt {
  font-size: 16px;
  line-height: 26px;
}

/* line 1574, ../sass/screen.scss */
.banner-wap {
  display: none;
}

/* line 1578, ../sass/screen.scss */
.customer {
  width: 100%;
  padding: 80px 0;
  float: left;
}
/* line 1583, ../sass/screen.scss */
.customer .list {
  width: 100%;
  padding: 120px 10px;
  float: left;
}
/* line 1588, ../sass/screen.scss */
.customer .list ul {
  width: 100%;
}
/* line 1591, ../sass/screen.scss */
.customer .list ul li {
  width: 100%;
  min-height: 100px;
  background-color: #fff;
  padding: 0 20px;
  padding-bottom: 30px;
}
/* line 1598, ../sass/screen.scss */
.customer .list ul li .imgs {
  width: 100%;
  text-align: center;
}
/* line 1602, ../sass/screen.scss */
.customer .list ul li .imgs .imgs-box {
  width: 140px;
  height: 140px;
  background-color: #fff;
  border-radius: 90px;
  margin: 0 auto;
  position: relative;
  margin-top: -70px;
  padding: 6px;
  border: 6px solid #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 1616, ../sass/screen.scss */
.customer .list ul li .imgs .imgs-box img {
  max-width: 60%;
  max-height: 60%;
}
/* line 1622, ../sass/screen.scss */
.customer .list ul li .imgs .text {
  width: 100%;
  line-height: 60px;
  font-size: 20px;
  color: #333;
}
/* line 1630, ../sass/screen.scss */
.customer .list ul li .inform {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
/* line 1637, ../sass/screen.scss */
.customer .list ul li .inform p {
  line-height: 24px;
  font-size: 15px;
  color: #666;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
/* line 1651, ../sass/screen.scss */
.customer .list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e71e43;
}
/* line 1656, ../sass/screen.scss */
.customer .box {
  width: 100%;
  margin: 15px 0;
  position: relative;
  border-radius: 15px;
  box-shadow: 0px 6px 20px 0px rgba(179, 179, 179, 0.1);
  overflow: hidden;
}
/* line 1664, ../sass/screen.scss */
.customer .box .imgs {
  width: 100%;
  height: 265px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 1672, ../sass/screen.scss */
.customer .box .slide {
  width: 100%;
  height: 100%;
  background: #039;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
  border-radius: 15px;
  padding: 10px 30px;
}
/* line 1684, ../sass/screen.scss */
.customer .box .slide .tit {
  width: 100%;
  line-height: 70px;
  font-size: 26px;
  color: #fff;
  text-align: center;
}
/* line 1692, ../sass/screen.scss */
.customer .box .slide .txt {
  width: 100%;
  color: #fff;
  line-height: 32px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
/* line 1704, ../sass/screen.scss */
.customer .box:hover .slide {
  opacity: 1;
}

/* line 1710, ../sass/screen.scss */
.news {
  width: 100%;
}
/* line 1713, ../sass/screen.scss */
.news .tabs {
  width: 100%;
}
/* line 1716, ../sass/screen.scss */
.news .tabs ul {
  width: 100%;
  margin: 0;
  float: left;
  padding: 30px 0;
}
/* line 1723, ../sass/screen.scss */
.news .tabs li {
  width: 160px;
  height: 50px;
  background-color: #fafafb;
  border-radius: 25px;
  color: #555;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  margin-right: 20px;
  font-size: 16px;
}
/* line 1735, ../sass/screen.scss */
.news .tabs li a {
  color: #555;
  text-decoration: none;
  display: block;
}
/* line 1741, ../sass/screen.scss */
.news .tabs li.acti {
  background-color: #039;
  color: #fff;
}
/* line 1745, ../sass/screen.scss */
.news .tabs li.acti a {
  color: #fff;
}
/* line 1749, ../sass/screen.scss */
.news .tabs li.acti:hover a {
  color: #fff;
}
/* line 1754, ../sass/screen.scss */
.news .tabs li:hover a {
  color: #039;
}
/* line 1760, ../sass/screen.scss */
.news .content {
  width: 100%;
  padding-bottom: 20px;
  float: left;
}
/* line 1773, ../sass/screen.scss */
.news .list li {
  width: 100%;
  padding: 36px 18px;
  background-color: #fafafb;
  border-radius: 10px;
  margin: 20px 0;
}
/* line 1780, ../sass/screen.scss */
.news .list li .col-lg-4 {
  width: 25%;
}
/* line 1784, ../sass/screen.scss */
.news .list li .col-lg-8 {
  width: 75%;
}
/* line 1792, ../sass/screen.scss */
.news .list .imgs img {
  width: 100%;
}
/* line 1797, ../sass/screen.scss */
.news .list .text {
  width: 100%;
  padding-left: 30px;
}
/* line 1802, ../sass/screen.scss */
.news .list .tit {
  width: 100%;
  line-height: 50px;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}
/* line 1810, ../sass/screen.scss */
.news .list .txt {
  width: 100%;
  line-height: 32px;
  font-size: 14px;
  color: #484848;
  padding-top: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
/* line 1822, ../sass/screen.scss */
.news .list .inf {
  width: 100%;
  height: 22px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
/* line 1829, ../sass/screen.scss */
.news .list .inf span {
  color: #999;
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
}
/* line 1835, ../sass/screen.scss */
.news .list .inf img {
  height: 12px;
  margin-right: 2px;
}
/* line 1842, ../sass/screen.scss */
.news .more {
  width: 100%;
  text-align: center;
}
/* line 1846, ../sass/screen.scss */
.news .more a {
  display: inline-block;
  width: 160px;
  height: 36px;
  border: 1px solid #e71e43;
  text-align: center;
  line-height: 34px;
  color: #e71e43;
  border-radius: 18px;
  text-decoration: none;
}
/* line 1857, ../sass/screen.scss */
.news .more a:hover {
  background-color: #e71e43;
  color: #fff;
}

/* line 1865, ../sass/screen.scss */
.join {
  width: 100%;
}
/* line 1868, ../sass/screen.scss */
.join .list {
  padding: 96px 0 20px;
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
/* line 1876, ../sass/screen.scss */
.join .list li {
  margin-bottom: 70px;
}
/* line 1880, ../sass/screen.scss */
.join .list .tit {
  min-width: 240px;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  background-color: #003399;
  text-align: center;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  display: inline-block;
  padding: 0 15px;
}
/* line 1892, ../sass/screen.scss */
.join .list .text, .join .list .txt {
  padding: 0 5px;
  line-height: 30px;
  margin-top: 20px;
  font-size: 16px;
  margin-bottom: 0;
}
/* line 1900, ../sass/screen.scss */
.join .list .txt {
  margin-top: 15px;
}

/* line 1906, ../sass/screen.scss */
.contacts {
  width: 100%;
  min-height: 100px;
  background-color: #fff;
  padding-bottom: 90px;
  float: left;
}
/* line 1913, ../sass/screen.scss */
.contacts .contain {
  max-width: 932px;
}
/* line 1917, ../sass/screen.scss */
.contacts .cont {
  width: 100%;
  margin: 0 auto;
  padding: 42px 0;
}
/* line 1922, ../sass/screen.scss */
.contacts .cont .title {
  width: 100%;
  line-height: 132px;
  font-size: 38px;
  color: #333;
  text-align: center;
}
/* line 1930, ../sass/screen.scss */
.contacts .cont .form {
  width: 100%;
}
/* line 1933, ../sass/screen.scss */
.contacts .cont .form .item {
  width: 100%;
  height: auto;
  float: left;
  min-height: 56px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  margin: 10px 0;
  padding: 0 18px;
}
/* line 1944, ../sass/screen.scss */
.contacts .cont .form .labels {
  height: 54px;
  line-height: 54px;
  font-size: 18px;
  color: #282530;
  font-weight: normal;
  letter-spacing: 2px;
  width: 110px;
}
/* line 1954, ../sass/screen.scss */
.contacts .cont .form .input {
  width: calc(100% - 110px);
}
/* line 1958, ../sass/screen.scss */
.contacts .cont .form input {
  height: 54px;
  border: none;
  background: none;
  float: left;
  color: #333;
  width: 100%;
  font-size: 18px;
}
/* line 1968, ../sass/screen.scss */
.contacts .cont .form textarea {
  border: none;
  font-size: 16px;
  width: 100%;
  height: 118px;
  padding: 12px 0;
  line-height: 28px;
}
/* line 1977, ../sass/screen.scss */
.contacts .cont .form .box {
  padding-right: 10px;
}
/* line 1980, ../sass/screen.scss */
.contacts .cont .form .box input {
  width: 14px;
  height: 14px;
  float: left;
  margin: 20px 0;
  outline: none;
}
/* line 1988, ../sass/screen.scss */
.contacts .cont .form .box label {
  font-size: 14px;
  padding: 0 4px;
  font-weight: normal;
  color: #555;
  margin: 0;
  line-height: 54px;
  display: inline;
}
/* line 2000, ../sass/screen.scss */
.contacts .cont .form .slide-input {
  width: 100%;
  position: relative;
  float: left;
  top: -10px;
  display: none;
}
/* line 2007, ../sass/screen.scss */
.contacts .cont .form .slide-input input {
  height: 40px;
  font-size: 14px;
  border-radius: 4px;
  padding: 0 12px;
  background-color: #f5f5f5;
}
/* line 2016, ../sass/screen.scss */
.contacts .cont .form .button {
  width: 100%;
  text-align: center;
  padding-top: 40px;
  float: left;
}
/* line 2023, ../sass/screen.scss */
.contacts .cont .form button {
  width: 160px;
  height: 50px;
  background-color: #039;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 50px;
  border-radius: 25px;
}

/* line 2037, ../sass/screen.scss */
.address {
  width: 100%;
  min-height: 100px;
  background-color: #fafafb;
  float: left;
  padding-bottom: 90px;
}
/* line 2044, ../sass/screen.scss */
.address .title {
  width: 100%;
  padding-top: 36px;
  line-height: 148px;
  font-size: 36px;
  color: #333;
  text-align: center;
}
/* line 2053, ../sass/screen.scss */
.address .list {
  width: 100%;
}
/* line 2056, ../sass/screen.scss */
.address .list .item {
  width: 100%;
}
/* line 2059, ../sass/screen.scss */
.address .list .item .tit {
  width: 100%;
  line-height: 78px;
  color: #333;
  text-align: center;
  font-size: 22px;
}
/* line 2067, ../sass/screen.scss */
.address .list .item .text {
  width: 100%;
  text-align: center;
  font-size: 15px;
  line-height: 32px;
  color: #6e6e6e;
  min-height: 128px;
}
/* line 2075, ../sass/screen.scss */
.address .list .item .text span {
  margin: 0 6px;
}
/* line 2080, ../sass/screen.scss */
.address .list .item .imgs {
  width: 100%;
  text-align: center;
  padding: 24px 0;
}
/* line 2085, ../sass/screen.scss */
.address .list .item .imgs .box {
  width: 100%;
  max-width: 324px;
  height: 156px;
  padding: 3px;
  margin: 0 auto;
  background-color: #d4e9fd;
}
/* line 2093, ../sass/screen.scss */
.address .list .item .imgs .box img {
  width: 100%;
  height: 100%;
}

/* line 2103, ../sass/screen.scss */
.medias {
  width: 100%;
  padding: 70px 0;
  float: left;
}
/* line 2109, ../sass/screen.scss */
.medias .title {
  width: 100%;
  line-height: 98px;
  font-size: 36px;
  color: #333;
  text-align: center;
}
/* line 2117, ../sass/screen.scss */
.medias .list {
  width: 100%;
  padding: 50px 0;
}
/* line 2121, ../sass/screen.scss */
.medias .list .box {
  width: 100%;
  position: relative;
}
/* line 2125, ../sass/screen.scss */
.medias .list .box a {
  text-decoration: none;
}
/* line 2129, ../sass/screen.scss */
.medias .list .box .box-slide {
  width: 200px;
  height: 220px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  margin-left: -100px;
  top: -230px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 12px;
  padding-top: 15px;
  display: none;
}
/* line 2142, ../sass/screen.scss */
.medias .list .box .box-slide:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #fff;
}
/* line 2155, ../sass/screen.scss */
.medias .list .box .box-slide:before {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -12px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 12px solid #f1f1f1;
}
/* line 2168, ../sass/screen.scss */
.medias .list .box .box-slide .wx {
  width: 100%;
  text-align: center;
}
/* line 2173, ../sass/screen.scss */
.medias .list .box .box-slide .txt {
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  color: #666;
}
/* line 2182, ../sass/screen.scss */
.medias .list .box .imgs {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 2189, ../sass/screen.scss */
.medias .list .box .imgs .imgs-box {
  width: 180px;
  height: 180px;
  background-color: #f7f7fa;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 2198, ../sass/screen.scss */
.medias .list .box .imgs .imgs-box i {
  display: inline-block;
  width: 180px;
  height: 180px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* line 2206, ../sass/screen.scss */
.medias .list .box .imgs .imgs-box i.ico1 {
  background-image: url("../images/07656c_180x180.png");
}
/* line 2211, ../sass/screen.scss */
.medias .list .box .imgs .imgs-box i.ico2 {
  background-image: url("../images/6cde43_179x179.png");
}
/* line 2216, ../sass/screen.scss */
.medias .list .box .imgs .imgs-box i.ico3 {
  background-image: url("../images/74e2d6_180x180.png");
}
/* line 2221, ../sass/screen.scss */
.medias .list .box .imgs .imgs-box i.ico4 {
  background-image: url("../images/fa43d5_180x180.png");
}
/* line 2229, ../sass/screen.scss */
.medias .list .box .text {
  width: 100%;
  line-height: 44px;
  font-size: 18px;
  color: #444;
  text-align: center;
}
/* line 2238, ../sass/screen.scss */
.medias .list .box:hover .imgs .imgs-box i.ico1 {
  background-image: url("../images/7fc556_180x180.png");
}
/* line 2242, ../sass/screen.scss */
.medias .list .box:hover .imgs .imgs-box i.ico2 {
  background-image: url("../images/9e29ed_179x179.png");
}
/* line 2246, ../sass/screen.scss */
.medias .list .box:hover .imgs .imgs-box i.ico3 {
  background-image: url("../images/aa4063_180x180.png");
}
/* line 2250, ../sass/screen.scss */
.medias .list .box:hover .imgs .imgs-box i.ico4 {
  background-image: url("../images/994edb_180x180.png");
}

/* line 2258, ../sass/screen.scss */
.about {
  width: 100%;
  padding-bottom: 40px;
  float: left;
}
/* line 2263, ../sass/screen.scss */
.about .item {
  width: 100%;
  float: left;
}
/* line 2268, ../sass/screen.scss */
.about .list {
  width: 100%;
  padding: 20px 0;
}
/* line 2272, ../sass/screen.scss */
.about .list .inform {
  width: 100%;
}
/* line 2276, ../sass/screen.scss */
.about .list .inform .imgs {
  width: 100%;
  text-align: center;
}
/* line 2280, ../sass/screen.scss */
.about .list .inform .imgs img {
  width: 100%;
  max-width: 380px;
}
/* line 2286, ../sass/screen.scss */
.about .list .inform .text {
  width: 100%;
  padding: 20px 0;
  /*padding-right: 20px;*/
  padding-right: 40px;
}
/* line 2292, ../sass/screen.scss */
.about .list .inform .text p {
  line-height: 42px;
  margin: 0;
  font-size: 16px;
  color: #444;
  text-align: right;
  position: relative;
}
/* line 2300, ../sass/screen.scss */
.about .list .inform .text p:after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  margin-top: -6px;
  width: 6px;
  height: 10px;
  background-color: #e71e43;
}
/* line 2314, ../sass/screen.scss */
.about .list .content {
  width: 100%;
  /*height: 630px;*/
  position: relative;
  padding-left: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 50px;
}
/* line 2324, ../sass/screen.scss */
.about .list .content .text {
  width: 100%;
  height: auto;
  padding: 60px 80px;
  background-color: #fff;
  box-shadow: 0px 6px 30px 0px rgba(179, 179, 179, 0.2);
  border-radius: 20px;
}
/* line 2332, ../sass/screen.scss */
.about .list .content .text .logo {
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
/* line 2337, ../sass/screen.scss */
.about .list .content .text .logo img {
  max-width: 40%;
}
/* line 2342, ../sass/screen.scss */
.about .list .content .text .tit {
  width: 100%;
}
/* line 2345, ../sass/screen.scss */
.about .list .content .text .tit h3 {
  line-height: 32px;
  font-size: 24px;
  color: #e71e43;
}
/* line 2351, ../sass/screen.scss */
.about .list .content .text .tit h4 {
  line-height: 50px;
  color: #666767;
  padding: 10px 0;
}
/* line 2358, ../sass/screen.scss */
.about .list .content .text .txt {
  width: 100%;
}
/* line 2361, ../sass/screen.scss */
.about .list .content .text .txt p {
  line-height: 32px;
  font-size: 15px;
  color: #555;
  margin: 0;
}
/* line 2369, ../sass/screen.scss */
.about .list .content .text .labels {
  width: 100%;
  padding: 20px 0;
}
/* line 2373, ../sass/screen.scss */
.about .list .content .text .labels p {
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
/* line 2380, ../sass/screen.scss */
.about .list .content .text .more {
  width: 100%;
  padding: 30px 0 0;
}
/* line 2384, ../sass/screen.scss */
.about .list .content .text .more a {
  display: inline-block;
  width: 160px;
  height: 50px;
  background-color: #fafafb;
  border-radius: 25px;
  color: #10409f;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
}
/* line 2395, ../sass/screen.scss */
.about .list .content .text .more a:hover {
  background-color: #10409f;
  color: #fff;
  font-size: 15px;
}
/* line 2404, ../sass/screen.scss */
.about .list .content.content-fl {
  padding-left: 0;
  padding-right: 50px;
}
/* line 2408, ../sass/screen.scss */
.about .list .content.content-fl .tit h3 {
  color: #039;
}
/* line 2415, ../sass/screen.scss */
.about .member {
  width: 100%;
  min-height: 100px;
  float: left;
}
/* line 2420, ../sass/screen.scss */
.about .member .tit {
  width: 100%;
  padding-top: 15px;
  line-height: 210px;
  font-size: 24px;
  color: #333;
}
/* line 2428, ../sass/screen.scss */
.about .member .list {
  width: 100%;
}
/* line 2431, ../sass/screen.scss */
.about .member .list ul {
  width: 100%;
  overflow: hidden;
}
/* line 2435, ../sass/screen.scss */
.about .member .list ul li {
  width: 33.3%;
}
/* line 2438, ../sass/screen.scss */
.about .member .list ul li .imgs {
  width: 100%;
  height: 182px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 2445, ../sass/screen.scss */
.about .member .list ul li .imgs img {
  width: 140px;
  height: 140px;
  border-radius: 70px;
}
/* line 2452, ../sass/screen.scss */
.about .member .list ul li .text {
  width: 100%;
  line-height: 44px;
  font-size: 16px;
  color: #909090;
  text-align: center;
}

/* line 2466, ../sass/screen.scss */
.disadvantage {
  width: 100%;
  min-height: 100px;
  float: left;
}
/* line 2472, ../sass/screen.scss */
.disadvantage .title {
  width: 100%;
  padding: 55px 0;
}
/* line 2476, ../sass/screen.scss */
.disadvantage .title h3 {
  line-height: 80px;
  font-size: 36px;
  color: #333;
  text-align: center;
}
/* line 2484, ../sass/screen.scss */
.disadvantage .list {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
/* line 2490, ../sass/screen.scss */
.disadvantage .list .item {
  width: 100%;
  min-height: 160px;
  *zoom: 1;
}
/* line 38, D:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
.disadvantage .list .item:after {
  content: "";
  display: table;
  clear: both;
}
/* line 2495, ../sass/screen.scss */
.disadvantage .list .item .imgs {
  width: 90px;
  height: 90px;
  border-radius: 45px;
  background-color: #fff;
  box-shadow: 0 6px 20px 0 rgba(0, 51, 153, 0.1);
  margin: 5px 0;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 2508, ../sass/screen.scss */
.disadvantage .list .item .text {
  width: calc(100% - 90px);
  max-width: 560px;
  padding-left: 45px;
}
/* line 2513, ../sass/screen.scss */
.disadvantage .list .item .text h5 {
  line-height: 40px;
  font-size: 22px;
  color: #4a4a4a;
  margin: 0;
}
/* line 2520, ../sass/screen.scss */
.disadvantage .list .item .text p {
  margin: 0;
  padding: 10px 0;
  line-height: 26px;
  font-size: 14px;
  color: #666;
}

/* line 2532, ../sass/screen.scss */
.solution {
  width: 100%;
  float: left;
}
/* line 2537, ../sass/screen.scss */
.solution .list {
  width: 100%;
  padding: 45px 0;
  float: left;
}
/* line 2542, ../sass/screen.scss */
.solution .list .row {
  margin-right: 0;
  margin-left: 0;
}
/* line 2547, ../sass/screen.scss */
.solution .list .item {
  width: 100%;
  height: 500px;
}
/* line 2551, ../sass/screen.scss */
.solution .list .item .text {
  width: 100%;
  /*max-width: 570px;*/
  min-height: 100%;
  /*margin-right: 140px;*/
}
/* line 2556, ../sass/screen.scss */
.solution .list .item .text .tit {
  width: 100%;
  min-height: 294px;
}
/* line 2560, ../sass/screen.scss */
.solution .list .item .text .tit h5 {
  line-height: 46px;
  font-size: 26px;
  padding: 20px 0;
  margin: 0;
}
/* line 2567, ../sass/screen.scss */
.solution .list .item .text .tit p {
  line-height: 30px;
  margin: 0;
  font-size: 15px;
  color: #666;
}
/* line 2575, ../sass/screen.scss */
.solution .list .item .text .imgs {
  width: 100%;
}
/* line 2578, ../sass/screen.scss */
.solution .list .item .text .imgs img {
  max-width: 100%;
}
/* line 2584, ../sass/screen.scss */
.solution .list .item .echart {
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 2593, ../sass/screen.scss */
.solution .list .item .echart img {
  max-width: 90%;
  max-height: 90%;
}
/* line 2600, ../sass/screen.scss */
.solution .list.list-item2 .item .text {
  padding-right: 20px;
  padding-left: 40px;
}

/* line 2655, ../sass/screen.scss */
.panel {
  width: 100%;
  min-height: 100px;
  background-color: #f00;
  float: left;
  box-shadow: none !important;
}
/* line 2662, ../sass/screen.scss */
.panel .tabs {
  width: 100%;
  padding: 40px 0 5px;
  float: left;
}
/* line 2667, ../sass/screen.scss */
.panel .tabs ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
/* line 2673, ../sass/screen.scss */
.panel .tabs ul li {
  width: 15.5%;
  height: 110px;
  background-color: #f7f7fa;
  border-radius: 6px;
  display: flex;
  cursor: pointer;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin-bottom: 35px;
}
/* line 2685, ../sass/screen.scss */
.panel .tabs ul li .datas {
  min-width: 50px;
  height: 30px;
  background-color: #e71e43;
  border-radius: 15px;
  position: absolute;
  right: -20px;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  padding: 0 15px;
  top: 10px;
  opacity: 0;
  transition: 0.5s;
  z-index: 10;
}
/* line 2703, ../sass/screen.scss */
.panel .tabs ul li .ico {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 2710, ../sass/screen.scss */
.panel .tabs ul li .ico i {
  display: inline-block;
  width: 50px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
/* line 2720, ../sass/screen.scss */
.panel .tabs ul li .text {
  width: 100%;
  line-height: 28px;
  font-size: 15px;
  color: #666;
  text-align: center;
}
/* line 2728, ../sass/screen.scss */
.panel .tabs ul li.acti {
  background-color: #039;
}
/* line 2731, ../sass/screen.scss */
.panel .tabs ul li.acti .text {
  color: #fff;
}
/* line 2736, ../sass/screen.scss */
.panel .tabs ul li:hover .datas {
  opacity: 1;
}
/* line 2743, ../sass/screen.scss */
.panel .content {
  width: 100%;
  min-height: 100px;
  float: left;
  padding-bottom: 40px;
}
/* line 2750, ../sass/screen.scss */
.panel .content .item {
  padding: 25px 10px;
  margin-bottom: 20px;
  -moz-box-shadow: 0 0 14px 1px rgba(204, 204, 204, 0.3);
  -webkit-box-shadow: 0 0 14px 1px rgba(204, 204, 204, 0.3);
  box-shadow: 0 0 14px 1px rgba(204, 204, 204, 0.3);
}
/* line 2755, ../sass/screen.scss */
.panel .content .item.bar {
  padding: 15px 10px;
}
/* line 2759, ../sass/screen.scss */
.panel .content .item img {
  width: 100%;
}

/* line 2766, ../sass/screen.scss */
.alert {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 1000;
}
/* line 2776, ../sass/screen.scss */
.alert .demos {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 2783, ../sass/screen.scss */
.alert .demos .demos-box {
  width: 96%;
  max-width: 860px;
  min-height: 300px;
  background-color: #fff;
  border-radius: 20px;
  display: none;
  padding: 18px 60px;
  position: relative;
}
/* line 2793, ../sass/screen.scss */
.alert .demos .demos-box .closes {
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  line-height: 40px;
  text-align: right;
  color: #333;
  border-radius: 20px;
  z-index: 999;
}
/* line 2809, ../sass/screen.scss */
.alert .demos .demos-box .title {
  width: 100%;
  line-height: 78px;
  font-size: 30px;
  color: #333;
}
/* line 2816, ../sass/screen.scss */
.alert .demos .demos-box .list {
  width: 100%;
}
/* line 2819, ../sass/screen.scss */
.alert .demos .demos-box .list .item {
  width: 100%;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  margin: 10px 0;
  padding: 0 18px;
  float: left;
}
/* line 2827, ../sass/screen.scss */
.alert .demos .demos-box .list .item .labels {
  height: 54px;
  line-height: 54px;
  font-size: 18px;
  color: #282530;
  font-weight: normal;
  letter-spacing: 2px;
  width: 110px;
}
/* line 2837, ../sass/screen.scss */
.alert .demos .demos-box .list .item .input {
  width: calc(100% - 110px);
}
/* line 2840, ../sass/screen.scss */
.alert .demos .demos-box .list .item .input .seles {
  width: 100%;
}
/* line 2843, ../sass/screen.scss */
.alert .demos .demos-box .list .item .input .seles .box {
  padding-right: 10px;
}
/* line 2846, ../sass/screen.scss */
.alert .demos .demos-box .list .item .input .seles .box input {
  width: 14px;
  height: 14px;
  float: left;
  margin: 20px 0;
  outline: none;
}
/* line 2854, ../sass/screen.scss */
.alert .demos .demos-box .list .item .input .seles .box label {
  font-size: 14px;
  padding: 0 4px;
  font-weight: normal;
  color: #555;
  margin: 0;
  line-height: 54px;
  display: inline;
}
/* line 2866, ../sass/screen.scss */
.alert .demos .demos-box .list .item .input .slide-input {
  width: 100%;
  position: relative;
  float: left;
  top: -10px;
  display: none;
}
/* line 2873, ../sass/screen.scss */
.alert .demos .demos-box .list .item .input .slide-input input {
  width: 100%;
  height: 40px;
  font-size: 14px;
  border-radius: 4px;
  padding: 0 12px;
  background-color: #f5f5f5;
}
/* line 2883, ../sass/screen.scss */
.alert .demos .demos-box .list .item .input input {
  width: 100%;
  height: 54px;
  border: none;
  font-size: 18px;
}
/* line 2890, ../sass/screen.scss */
.alert .demos .demos-box .list .item .input textarea {
  width: 100%;
  height: 118px;
  border: none;
  padding: 12px 0;
  line-height: 28px;
  font-size: 16px;
}
/* line 2902, ../sass/screen.scss */
.alert .demos .demos-box .submit {
  width: 100%;
  text-align: center;
  padding: 25px 0;
  float: left;
}
/* line 2908, ../sass/screen.scss */
.alert .demos .demos-box .submit button {
  width: 160px;
  height: 50px;
  border-radius: 25px;
  background-color: #e71e43;
  color: #fff;
  font-size: 16px;
}

/* line 2921, ../sass/screen.scss */
.news_detail {
  width: 100%;
  margin-top: 35px;
  padding-bottom: 50px;
  float: left;
}
/* line 2927, ../sass/screen.scss */
.news_detail .contain {
  overflow: hidden;
}
/* line 2931, ../sass/screen.scss */
.news_detail .cont {
  width: 100%;
  max-width: 800px;
  float: left;
}
/* line 2936, ../sass/screen.scss */
.news_detail .cont .title {
  width: 100%;
  min-height: 100px;
}
/* line 2940, ../sass/screen.scss */
.news_detail .cont .title h3 {
  line-height: 72px;
  font-size: 32px;
  margin: 0;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}
/* line 2948, ../sass/screen.scss */
.news_detail .cont .title h6 {
  margin: 0;
  line-height: 44px;
  padding-top: 5px;
  letter-spacing: 2px;
  font-size: 16px;
}
/* line 2955, ../sass/screen.scss */
.news_detail .cont .title h6 span {
  color: #bcbcbc;
}
/* line 2959, ../sass/screen.scss */
.news_detail .cont .title h6 em {
  color: #bcbcbc;
  padding: 0 20px;
}
/* line 2966, ../sass/screen.scss */
.news_detail .cont .intr {
  width: 100%;
}
/* line 2969, ../sass/screen.scss */
.news_detail .cont .intr .txt {
  width: 100%;
}
/* line 2972, ../sass/screen.scss */
.news_detail .cont .intr .txt p {
  line-height: 32px;
  color: #494949;
  font-size: 16px;
  padding: 10px 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
/* line 2980, ../sass/screen.scss */
.news_detail .cont .intr .txt p img {
  width: 100%;
}
/* line 2986, ../sass/screen.scss */
.news_detail .cont .intr .imgs {
  width: 100%;
  padding: 40px 0;
  text-align: center;
}
/* line 2991, ../sass/screen.scss */
.news_detail .cont .intr .imgs img {
  max-width: 100%;
}
/* line 2998, ../sass/screen.scss */
.news_detail .abouts {
  width: 100%;
  min-height: 100px;
}
/* line 3002, ../sass/screen.scss */
.news_detail .abouts .title {
  width: 100%;
  line-height: 60px;
  font-size: 28px;
  color: #333;
}
/* line 3010, ../sass/screen.scss */
.news_detail .abouts .list a {
  color: #333;
  font-size: 16px;
  text-decoration: none;
}
/* line 3016, ../sass/screen.scss */
.news_detail .abouts .list li {
  width: 100%;
  line-height: 40px;
  position: relative;
  padding-left: 20px;
  height: 40px;
  overflow: hidden;
}
/* line 3024, ../sass/screen.scss */
.news_detail .abouts .list li:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #d0d0d0;
}
/* line 3037, ../sass/screen.scss */
.news_detail .abouts .list li:hover:after {
  background-color: #e71e43;
}
/* line 3041, ../sass/screen.scss */
.news_detail .abouts .list li:hover a {
  color: #e71e43;
}

/* line 3050, ../sass/screen.scss */
.cooperate {
  width: 100%;
  min-height: 100px;
  padding-top: 45px;
}
/* line 3055, ../sass/screen.scss */
.cooperate .content {
  width: 100%;
  max-width: 875px;
  min-height: 300px;
}
/* line 3060, ../sass/screen.scss */
.cooperate .content .bann {
  width: 100%;
}
/* line 3063, ../sass/screen.scss */
.cooperate .content .bann img {
  max-width: 100%;
}
/* line 3068, ../sass/screen.scss */
.cooperate .content .types {
  width: 100%;
  max-width: 800px;
}
/* line 3072, ../sass/screen.scss */
.cooperate .content .types .tit {
  width: 100%;
  line-height: 100px;
  font-size: 32px;
  color: #333;
}
/* line 3079, ../sass/screen.scss */
.cooperate .content .types .text {
  width: 100%;
  line-height: 28px;
  font-size: 14px;
  color: #333;
}
/* line 3086, ../sass/screen.scss */
.cooperate .content .types .list {
  width: 100%;
  padding-top: 30px;
}
/* line 3090, ../sass/screen.scss */
.cooperate .content .types .list ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
/* line 3095, ../sass/screen.scss */
.cooperate .content .types .list ul li {
  width: auto;
}
/* line 3098, ../sass/screen.scss */
.cooperate .content .types .list ul li .imgs {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 3106, ../sass/screen.scss */
.cooperate .content .types .list ul li .txt {
  width: 100%;
  text-align: center;
}
/* line 3110, ../sass/screen.scss */
.cooperate .content .types .list ul li .txt h5 {
  line-height: 30px;
  font-size: 18px;
  color: #333;
  margin: 0;
}
/* line 3117, ../sass/screen.scss */
.cooperate .content .types .list ul li .txt p {
  line-height: 28px;
  font-size: 14px;
  color: #666;
  margin: 0;
}
/* line 3129, ../sass/screen.scss */
.cooperate .content .advant {
  width: 100%;
  padding-top: 74px;
  max-width: 800px;
}
/* line 3134, ../sass/screen.scss */
.cooperate .content .advant ul {
  width: 100%;
}
/* line 3137, ../sass/screen.scss */
.cooperate .content .advant ul li {
  width: 100%;
  margin-bottom: 50px;
}
/* line 3141, ../sass/screen.scss */
.cooperate .content .advant ul li .imgs {
  width: 40%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 3148, ../sass/screen.scss */
.cooperate .content .advant ul li .imgs img {
  max-width: 100%;
  max-height: 100%;
}
/* line 3154, ../sass/screen.scss */
.cooperate .content .advant ul li .text {
  width: 60%;
  height: 320px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
/* line 3161, ../sass/screen.scss */
.cooperate .content .advant ul li .text h4 {
  line-height: 42px;
  font-size: 22px;
  color: #333;
  font-weight: bold;
  margin: 0;
}
/* line 3169, ../sass/screen.scss */
.cooperate .content .advant ul li .text p {
  line-height: 40px;
  font-size: 18px;
  margin: 0;
  color: #666;
}
/* line 3176, ../sass/screen.scss */
.cooperate .content .advant ul li .text.fr {
  text-align: right;
}
/* line 3184, ../sass/screen.scss */
.cooperate .content .download {
  width: 100%;
  float: left;
  max-width: 800px;
}
/* line 3189, ../sass/screen.scss */
.cooperate .content .download .tit {
  width: 100%;
  line-height: 72px;
  font-size: 32px;
  color: #333;
}
/* line 3196, ../sass/screen.scss */
.cooperate .content .download .list {
  padding: 20px 0;
  float: left;
  width: 100%;
}
/* line 3201, ../sass/screen.scss */
.cooperate .content .download .list ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
/* line 3206, ../sass/screen.scss */
.cooperate .content .download .list ul li {
  width: auto;
}
/* line 3209, ../sass/screen.scss */
.cooperate .content .download .list ul li .imgs {
  width: 100%;
  height: 126px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 3217, ../sass/screen.scss */
.cooperate .content .download .list ul li .text {
  width: 100%;
  line-height: 42px;
  font-size: 16px;
  color: #333;
  text-align: center;
}
/* line 3229, ../sass/screen.scss */
.cooperate .content .leaveMessage {
  width: 100%;
  padding-top: 60px;
  float: left;
}
/* line 3234, ../sass/screen.scss */
.cooperate .content .leaveMessage .tit {
  width: 100%;
  line-height: 88px;
  font-size: 32px;
  color: #111;
}
/* line 3241, ../sass/screen.scss */
.cooperate .content .leaveMessage .conts {
  width: 100%;
  padding: 15px 0;
  float: left;
}
/* line 3246, ../sass/screen.scss */
.cooperate .content .leaveMessage .conts .item {
  width: 100%;
  margin: 12px 0;
  float: left;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 0 20px;
}
/* line 3254, ../sass/screen.scss */
.cooperate .content .leaveMessage .conts .item .lab {
  width: 60px;
  height: 54px;
  line-height: 54px;
  font-size: 16px;
}
/* line 3261, ../sass/screen.scss */
.cooperate .content .leaveMessage .conts .item .text {
  width: calc(100% - 60px);
}
/* line 3264, ../sass/screen.scss */
.cooperate .content .leaveMessage .conts .item .text .input {
  width: 100%;
}
/* line 3267, ../sass/screen.scss */
.cooperate .content .leaveMessage .conts .item .text .input input {
  width: 100%;
  height: 54px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}
/* line 3277, ../sass/screen.scss */
.cooperate .content .leaveMessage .conts .item .text .textarea {
  width: 100%;
}
/* line 3280, ../sass/screen.scss */
.cooperate .content .leaveMessage .conts .item .text .textarea textarea {
  width: 100%;
  height: 150px;
  padding: 11px 0;
  line-height: 32px;
  font-size: 16px;
  color: #333;
  border: none;
  background: none;
}
/* line 3294, ../sass/screen.scss */
.cooperate .content .leaveMessage .conts .button {
  width: 100%;
  text-align: center;
  float: left;
  padding: 50px 0;
}
/* line 3300, ../sass/screen.scss */
.cooperate .content .leaveMessage .conts .button button {
  width: 160px;
  height: 50px;
  background-color: #039;
  border-radius: 25px;
  color: #fff;
}
/* line 3312, ../sass/screen.scss */
.cooperate .sidebar {
  width: 100%;
}
/* line 3315, ../sass/screen.scss */
.cooperate .sidebar .links {
  width: 100%;
}
/* line 3318, ../sass/screen.scss */
.cooperate .sidebar .links .tit {
  width: 100%;
  line-height: 46px;
  font-size: 26px;
  color: #111;
}
/* line 3325, ../sass/screen.scss */
.cooperate .sidebar .links .list {
  width: 100%;
}
/* line 3328, ../sass/screen.scss */
.cooperate .sidebar .links .list ul {
  width: 100%;
}
/* line 3331, ../sass/screen.scss */
.cooperate .sidebar .links .list ul li {
  width: 100%;
  line-height: 40px;
  font-size: 16px;
  color: #666;
  padding-left: 20px;
  position: relative;
}
/* line 3339, ../sass/screen.scss */
.cooperate .sidebar .links .list ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background-color: #d0d0d0;
  border-radius: 5px;
}
/* line 3351, ../sass/screen.scss */
.cooperate .sidebar .links .list ul li a {
  color: #666;
}

/* line 3361, ../sass/screen.scss */
.case {
  width: 100%;
}
/* line 3364, ../sass/screen.scss */
.case .contain {
  display: table;
}
/* line 3368, ../sass/screen.scss */
.case .intrs {
  width: 100%;
  position: relative;
  float: left;
  min-height: 1100px;
}
/* line 3374, ../sass/screen.scss */
.case .intrs .servicesImage {
  width: 100%;
  height: 1070px;
  padding: 0 60px;
  justify-content: center;
  align-items: center;
  display: none;
}
/* line 3382, ../sass/screen.scss */
.case .intrs .servicesImage img {
  max-width: 100%;
}
/* line 3387, ../sass/screen.scss */
.case .intrs .text {
  width: 100%;
  padding-top: 152px;
}
/* line 3391, ../sass/screen.scss */
.case .intrs .text .tit {
  width: 100%;
  max-width: 665px;
  font-size: 40px;
  padding: 24px 0;
  line-height: 56px;
  color: #333;
  position: relative;
}
/* line 3400, ../sass/screen.scss */
.case .intrs .text .tit:after {
  content: "";
  position: absolute;
  left: -44px;
  top: 0;
  height: 100%;
  width: calc(100% + 88px);
  /*border: 1px solid #f48fa1;*/
}
/* line 3410, ../sass/screen.scss */
.case .intrs .text .tit:before {
  content: "";
  position: absolute;
  left: -36px;
  top: -12px;
  height: 100%;
  width: calc(100% + 88px);
  /*border: 1px solid #fcd9df;*/
}
/* line 3421, ../sass/screen.scss */
.case .intrs .text .txt {
  width: 100%;
  padding: 40px 0;
}
/* line 3425, ../sass/screen.scss */
.case .intrs .text .txt p {
  line-height: 26px;
  font-size: 14px;
  color: #333;
}
/* line 3431, ../sass/screen.scss */
.case .intrs .text .txt h3 {
  line-height: 32px;
  font-size: 20px;
  color: #333;
  margin: 70px 0;
}
/* line 3440, ../sass/screen.scss */
.case .intrs .imgs {
  width: auto;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 40%;
}
/* line 3447, ../sass/screen.scss */
.case .intrs .imgs img {
  width: 100%;
  min-height: 1100px;
}
/* line 3454, ../sass/screen.scss */
.case .custs {
  width: 100%;
  min-height: 100px;
  background-color: #fafafa;
  float: left;
}
/* line 3460, ../sass/screen.scss */
.team + .case .custs {
  background-color: transparent;
  margin-bottom: 87px;
}
/* line 3465, ../sass/screen.scss */
.case .custs .title {
  width: 100%;
  padding-top: 56px;
  font-size: 40px;
  line-height: 150px;
  text-align: center;
}
/* line 3473, ../sass/screen.scss */
.case .custs .cont {
  width: 100%;
  min-height: 100px;
  text-align: center;
  position: relative;
  float: left;
}
/* line 3480, ../sass/screen.scss */
.case .custs .cont .prev-wap, .case .custs .cont .next-wap {
  width: 40px;
  height: 40px;
  background: #e71e43;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
  z-index: 98;
}
/* line 3494, ../sass/screen.scss */
.case .custs .cont .prev-wap {
  left: 5px;
}
/* line 3498, ../sass/screen.scss */
.case .custs .cont .next-wap {
  outline: none;
  right: 5px;
}
/* line 3503, ../sass/screen.scss */
.case .custs .cont .cont-wap {
  width: 100%;
}
/* line 3506, ../sass/screen.scss */
.case .custs .cont .cont-wap .lists {
  width: 100%;
}
/* line 3509, ../sass/screen.scss */
.case .custs .cont .cont-wap .lists ul {
  width: 100%;
}
/* line 3512, ../sass/screen.scss */
.case .custs .cont .cont-wap .lists ul li {
  width: 100% !important;
}
/* line 3518, ../sass/screen.scss */
.case .custs .cont .cont-wap .logo {
  width: 100%;
}
/* line 3521, ../sass/screen.scss */
.case .custs .cont .cont-wap .logo img {
  width: 100%;
}
/* line 3526, ../sass/screen.scss */
.case .custs .cont .cont-wap .text {
  width: 100%;
  text-align: left;
}
/* line 3530, ../sass/screen.scss */
.case .custs .cont .cont-wap .text .txt {
  width: 100%;
}
/* line 3533, ../sass/screen.scss */
.case .custs .cont .cont-wap .text .txt p {
  margin: 24px 0;
  font-size: 16px;
  line-height: 34px;
  color: #555;
  text-align: justify;
}
/* line 3542, ../sass/screen.scss */
.case .custs .cont .cont-wap .text .imgs {
  width: 100%;
  text-align: center;
}
/* line 3546, ../sass/screen.scss */
.case .custs .cont .cont-wap .text .imgs img {
  max-width: 100%;
}
/* line 3553, ../sass/screen.scss */
.case .custs .cont .prev, .case .custs .cont .next {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  cursor: pointer;
  outline: none;
  top: 50%;
  margin-top: -40px;
}
/* line 3565, ../sass/screen.scss */
.case .custs .cont .prev:after, .case .custs .cont .prev:before, .case .custs .cont .next:after, .case .custs .cont .next:before {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -10px;
  top: 50%;
  width: 20px;
  height: 3px;
  background-color: #e61e43;
  border-radius: 2px;
}
/* line 3577, ../sass/screen.scss */
.case .custs .cont .prev:hover, .case .custs .cont .next:hover {
  background-color: #e61e43;
}
/* line 3580, ../sass/screen.scss */
.case .custs .cont .prev:hover:after, .case .custs .cont .next:hover:after {
  background-color: #fff;
}
/* line 3584, ../sass/screen.scss */
.case .custs .cont .prev:hover:before, .case .custs .cont .next:hover:before {
  background-color: #fff;
}
/* line 3590, ../sass/screen.scss */
.case .custs .cont .next {
  left: 0;
}
/* line 3593, ../sass/screen.scss */
.case .custs .cont .next:after {
  margin-top: -8px;
  transform: rotate(135deg);
}
/* line 3598, ../sass/screen.scss */
.case .custs .cont .next:before {
  margin-top: 4px;
  transform: rotate(-135deg);
}
/* line 3604, ../sass/screen.scss */
.case .custs .cont .prev {
  right: 0;
}
/* line 3607, ../sass/screen.scss */
.case .custs .cont .prev:after {
  margin-top: -8px;
  transform: rotate(45deg);
}
/* line 3612, ../sass/screen.scss */
.case .custs .cont .prev:before {
  margin-top: 4px;
  transform: rotate(-45deg);
}
/* line 3618, ../sass/screen.scss */
.case .custs .cont .list {
  width: 100%;
  max-width: 785px;
  margin: 0 auto;
}
/* line 3623, ../sass/screen.scss */
.case .custs .cont .list ul {
  width: 100%;
}
/* line 3626, ../sass/screen.scss */
.case .custs .cont .list ul li {
  width: 100%;
}
/* line 3629, ../sass/screen.scss */
.case .custs .cont .list ul li .logo {
  width: 100%;
}
/* line 3632, ../sass/screen.scss */
.case .custs .cont .list ul li .logo img {
  width: 100%;
}
/* line 3637, ../sass/screen.scss */
.case .custs .cont .list ul li .text {
  width: 100%;
  text-align: left;
}
/* line 3641, ../sass/screen.scss */
.case .custs .cont .list ul li .text .txt {
  padding-top: 6px;
  width: 100%;
}
/* line 3645, ../sass/screen.scss */
.case .custs .cont .list ul li .text .txt p {
  font-size: 16px;
  color: #555;
  text-align: justify;
}
/* line 3652, ../sass/screen.scss */
.case .custs .cont .list ul li .text .imgs {
  width: 100%;
  text-align: center;
}
/* line 3656, ../sass/screen.scss */
.case .custs .cont .list ul li .text .imgs img {
  max-width: 100%;
}

/* line 3668, ../sass/screen.scss */
.customs {
  width: 100%;
  min-height: 100px;
  float: left;
  padding: 60px 0;
}
/* line 3674, ../sass/screen.scss */
.customs .title {
  width: 100%;
  text-align: center;
}
/* line 3678, ../sass/screen.scss */
.customs .title h4 {
  line-height: 78px;
  font-size: 48px;
  color: #333;
}
/* line 3684, ../sass/screen.scss */
.customs .title p {
  line-height: 38px;
  font-size: 16px;
  color: #666;
}
/* line 3691, ../sass/screen.scss */
.customs .list {
  width: 100%;
  padding: 60px 0;
}
/* line 3695, ../sass/screen.scss */
.customs .list ul {
  width: 100%;
}
/* line 3699, ../sass/screen.scss */
.customs .list li {
  width: 20%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
/* line 3708, ../sass/screen.scss */
.customs .list img {
  max-width: 100%;
  max-height: 100%;
}

/* line 3715, ../sass/screen.scss */
.course {
  width: 100%;
  min-height: 80px;
  float: left;
  padding: 80px 0;
}
/* line 3721, ../sass/screen.scss */
.course .imgs {
  width: 100%;
  text-align: center;
}
/* line 3725, ../sass/screen.scss */
.course .imgs img {
  width: auto;
  max-width: 100%;
}
/* line 3731, ../sass/screen.scss */
.course .imgs-wap {
  width: 100%;
  text-align: center;
  display: none;
}
/* line 3736, ../sass/screen.scss */
.course .imgs-wap img {
  width: 100%;
}

/* line 3742, ../sass/screen.scss */
.informl {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  margin-top: 30px;
}
/* line 3749, ../sass/screen.scss */
.informl .tits {
  width: 100%;
  text-align: center;
  line-height: 80px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
}
/* line 3758, ../sass/screen.scss */
.informl .conts {
  width: 100%;
  background-color: #fff;
  display: table;
  margin-top: 40px;
  padding: 30px 50px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}
/* line 3767, ../sass/screen.scss */
.informl .conts .item {
  width: 100%;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  margin: 10px 0;
  padding: 0 18px;
  float: left;
}
/* line 3775, ../sass/screen.scss */
.informl .conts .item .labels {
  height: 54px;
  line-height: 54px;
  font-size: 18px;
  color: #282530;
  font-weight: normal;
  letter-spacing: 2px;
  width: 110px;
}
/* line 3785, ../sass/screen.scss */
.informl .conts .item .input {
  width: calc(100% - 110px);
}
/* line 3788, ../sass/screen.scss */
.informl .conts .item .input .seles {
  width: 100%;
}
/* line 3791, ../sass/screen.scss */
.informl .conts .item .input .seles .box {
  padding-right: 10px;
}
/* line 3794, ../sass/screen.scss */
.informl .conts .item .input .seles .box input {
  width: 14px;
  height: 14px;
  float: left;
  margin: 20px 0;
  outline: none;
}
/* line 3802, ../sass/screen.scss */
.informl .conts .item .input .seles .box label {
  font-size: 14px;
  padding: 0 4px;
  font-weight: normal;
  color: #555;
  margin: 0;
  line-height: 54px;
  display: inline;
}
/* line 3814, ../sass/screen.scss */
.informl .conts .item .input .slide-input {
  width: 100%;
  position: relative;
  float: left;
  top: -10px;
  display: none;
}
/* line 3821, ../sass/screen.scss */
.informl .conts .item .input .slide-input input {
  width: 100%;
  height: 40px;
  font-size: 14px;
  border-radius: 4px;
  padding: 0 12px;
  background-color: #f5f5f5;
}
/* line 3831, ../sass/screen.scss */
.informl .conts .item .input input {
  width: 100%;
  height: 54px;
  border: none;
  font-size: 18px;
}
/* line 3838, ../sass/screen.scss */
.informl .conts .item .input textarea {
  width: 100%;
  height: 118px;
  border: none;
  padding: 12px 0;
  line-height: 28px;
  font-size: 16px;
}
/* line 3849, ../sass/screen.scss */
.informl .conts .submit {
  width: 100%;
  text-align: center;
  padding: 25px 0;
  float: left;
}
/* line 3855, ../sass/screen.scss */
.informl .conts .submit button {
  width: 160px;
  height: 50px;
  border-radius: 25px;
  background-color: #e71e43;
  color: #fff;
  font-size: 16px;
}

/* line 3867, ../sass/screen.scss */
.fix-cont {
  width: 100px;
  position: fixed;
  right: 30px;
  top: 50%;
  margin-top: -210px;
  z-index: 10;
}
/* line 3875, ../sass/screen.scss */
.fix-cont .list {
  width: 100%;
}
/* line 3878, ../sass/screen.scss */
.fix-cont .list ul {
  width: 100%;
  margin: 0;
}
/* line 3882, ../sass/screen.scss */
.fix-cont .list ul li {
  width: 85px;
  height: 85px;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  border-radius: 8px;
  margin: 1px 0;
  cursor: pointer;
}
/* line 3891, ../sass/screen.scss */
.fix-cont .list ul li .tels {
  height: 80px;
  background-color: #fff;
  width: 240px;
  position: absolute;
  right: 110px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  top: 10px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 80px;
  color: #333;
  display: none;
  text-align: center;
}
/* line 3906, ../sass/screen.scss */
.fix-cont .list ul li .tels:after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
}
/* line 3920, ../sass/screen.scss */
.fix-cont .list ul li .codes {
  width: 240px;
  height: 240px;
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  right: 110px;
  background-color: #fff;
  padding: 30px;
  top: -70px;
  display: none;
}
/* line 3932, ../sass/screen.scss */
.fix-cont .list ul li .codes img {
  width: 100%;
}
/* line 3936, ../sass/screen.scss */
.fix-cont .list ul li .codes:after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
}
/* line 3950, ../sass/screen.scss */
.fix-cont .list ul li .ico {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 3957, ../sass/screen.scss */
.fix-cont .list ul li .ico .phone {
  width: 35px;
}
/* line 3961, ../sass/screen.scss */
.fix-cont .list ul li .ico .wechat {
  width: 44px;
}
/* line 3965, ../sass/screen.scss */
.fix-cont .list ul li .ico .kefu {
  width: 40px;
}
/* line 3970, ../sass/screen.scss */
.fix-cont .list ul li .gotop {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
/* line 3977, ../sass/screen.scss */
.fix-cont .list ul li .gotop a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
/* line 3986, ../sass/screen.scss */
.fix-cont .list ul li .gotop .imgs {
  width: 100%;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 3993, ../sass/screen.scss */
.fix-cont .list ul li .gotop .imgs img {
  width: 25px;
}
/* line 3998, ../sass/screen.scss */
.fix-cont .list ul li .gotop .txt {
  width: 100%;
  line-height: 30px;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
/* line 4007, ../sass/screen.scss */
.fix-cont .list ul li:hover {
  background-color: #ff4a6b;
}
/* line 4010, ../sass/screen.scss */
.fix-cont .list ul li:hover .tels {
  display: block;
}
/* line 4014, ../sass/screen.scss */
.fix-cont .list ul li:hover .codes {
  display: block;
}

/* line 4023, ../sass/screen.scss */
.team {
  float: left;
  width: 100%;
  padding-top: 114px;
}
/* line 4029, ../sass/screen.scss */
.team .title h3 {
  text-align: center;
  font-size: 36px;
  margin: 0 0 54px;
  color: #333;
}
/* line 4038, ../sass/screen.scss */
.team .core .item {
  position: relative;
  box-shadow: 0 0 29px 2px rgba(204, 204, 204, 0.3);
  margin: 0 auto;
}
/* line 4043, ../sass/screen.scss */
.team .core .item .pic img {
  width: 100%;
}
/* line 4047, ../sass/screen.scss */
.team .core .item .mask {
  background-color: rgba(6, 0, 0, 0.65);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 55px 35px;
  color: #fff;
  text-align: center;
  display: none;
}
/* line 4060, ../sass/screen.scss */
.team .core .item:hover .mask {
  display: block;
}
/* line 4064, ../sass/screen.scss */
.team .core .item .tt {
  font-size: 24px;
}
/* line 4068, ../sass/screen.scss */
.team .core .item .txt, .team .core .item .info {
  font-size: 16px;
  line-height: 1.875;
}
/* line 4072, ../sass/screen.scss */
.team .core .item .txt span, .team .core .item .info span {
  display: block;
}
/* line 4076, ../sass/screen.scss */
.team .core .item .txt i, .team .core .item .info i {
  display: none;
}
/* line 4081, ../sass/screen.scss */
.team .core .item .txt {
  padding: 18px 0 15px;
  position: relative;
}
/* line 4085, ../sass/screen.scss */
.team .core .item .txt:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e71e43;
}
/* line 4096, ../sass/screen.scss */
.team .core .item .info {
  margin-top: 15px;
}
/* line 4102, ../sass/screen.scss */
.team .peo {
  margin-bottom: 98px;
  margin-top: 99px;
}
/* line 4106, ../sass/screen.scss */
.team .peo .title {
  font-size: 30px;
}
/* line 4110, ../sass/screen.scss */
.team .peo .pic {
  width: 145px;
  height: 145px;
  border: 1px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}
/* line 4118, ../sass/screen.scss */
.team .peo .name {
  font-size: 20px;
  margin: 12px 0 15px;
}
/* line 4123, ../sass/screen.scss */
.team .peo p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
}
/* line 4129, ../sass/screen.scss */
.team .peo .txt {
  float: left;
  padding-left: 25px;
  width: calc(100% - 145px);
}
/* line 4135, ../sass/screen.scss */
.team .peo .item {
  background-color: #e71e43;
  padding: 55px 35px;
  text-align: center;
  color: #fff;
}
/* line 4141, ../sass/screen.scss */
.team .peo .item .pic {
  margin: 20px auto;
  width: 160px;
  height: 160px;
  border-width: 2px;
}
/* line 4148, ../sass/screen.scss */
.team .peo .item .name {
  font-size: 24px;
}
/* line 4152, ../sass/screen.scss */
.team .peo .item p {
  line-height: 30px;
}
/* line 4157, ../sass/screen.scss */
.team .peo .right {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
/* line 4163, ../sass/screen.scss */
.team .peo .child {
  padding: 0;
  overflow: hidden;
  margin-top: 45px;
}
/* line 4168, ../sass/screen.scss */
.team .peo .child:first-child, .team .peo .child:nth-child(2) {
  margin-bottom: 50px;
}
/* line 4172, ../sass/screen.scss */
.team .peo .child .pic {
  float: left;
}

/* line 4179, ../sass/screen.scss */
.policy {
  float: left;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 50px;
}
/* line 4185, ../sass/screen.scss */
.policy .title {
  font-size: 40px;
}
/* line 4189, ../sass/screen.scss */
.policy .date, .policy .content p {
  font-size: 15px;
  line-height: 30px;
  margin-top: 30px;
}
/* line 4196, ../sass/screen.scss */
.policy .content a {
  color: #003b92;
  text-decoration: underline;
  cursor: pointer;
}
/* line 4201, ../sass/screen.scss */
.policy .content .table {
  width: auto;
}
/* line 4204, ../sass/screen.scss */
.policy .content .table-bordered {
  border-color: #333;
}
/* line 4206, ../sass/screen.scss */
.policy .content .table-bordered thead > tr > th {
  text-align: center;
  background-color: #d0cecf;
  font-weight: normal;
}
/* line 4211, ../sass/screen.scss */
.policy .content .table-bordered tbody > tr > td {
  height: 26px;
}
/* line 4214, ../sass/screen.scss */
.policy .content .table-bordered thead > tr > th, .policy .content .table-bordered tbody > tr > td {
  border-color: #333;
  padding: 6px;
}
