.jz {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fd:hover,
.fd:focus {
  -webkit-animation: fd 1s;
  animation: fd 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
@-webkit-keyframes fd {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
@keyframes fd {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
@keyframes menu1 {
  0% {
    opacity: 0;
    transform: translateX(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes myfirst {
  0%,
  100% {
    -webkit-transform: translate(0, -5px) rotateZ(0);
  }
  50% {
    -webkit-transform: translate(0, 0) rotateZ(0);
  }
}
@-webkit-keyframes myfirst1 {
  0%,
  100% {
    -webkit-transform: translate(0, -10px) rotateZ(0);
  }
  50% {
    -webkit-transform: translate(0, 0) rotateZ(0);
  }
}
@keyframes myfirst2 {
  0%,
  100% {
    -webkit-transform: translate(-5px, 0);
  }
  50% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes msClock {
  0%,
  70%,
  100% {
    transform: rotate(0) scale(1);
  }
  10%,
  30% {
    transform: rotate(-15deg) scale(1.1);
  }
  20%,
  40% {
    transform: rotate(15deg) scale(1.1);
  }
}
.button.dark {
  --shadow: 0 2px 8px -1px rgba(21, 25, 36, 0.32);
  --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, 0.5);
}
.button.white {
  --shadow: 0 2px 8px -1px rgba(18, 22, 33, 0.04);
  --shadow-hover: 0 4px 20px -2px rgba(18, 22, 33, 0.12);
}
.button {
  --text: #fff;
  --font-size: 16px;
  --duration: 0.5s;
  --move-hover: -4px;
  font-family: 'Roboto';
  line-height: var(--font-size);
  display: block;
  outline: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: var(--font-size);
  background: var(--background);
  color: var(--text);
  box-shadow: var(--shadow);
  -webkit-transform: translateY(var(--y));
  transform: translateY(var(--y));
  transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}
.button span {
  text-align: center;
}
.button span i {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
}
.button span i:nth-child(1) {
  --d: 0.05s;
}
.button span i:nth-child(2) {
  --d: 0.1s;
}
.button span i:nth-child(3) {
  --d: 0.15s;
}
.button span i:nth-child(4) {
  --d: 0.2s;
}
.button span i:nth-child(5) {
  --d: 0.25s;
}
.button span i:nth-child(6) {
  --d: 0.3s;
}
.button span i:nth-child(7) {
  --d: 0.35s;
}
.button span i:nth-child(8) {
  --d: 0.4s;
}
.button span i:nth-child(9) {
  --d: 0.45s;
}
.button span i:nth-child(10) {
  --d: 0.5s;
}
.button span i:nth-child(11) {
  --d: 0.55s;
}
.button:hover {
  --y: var(--move-hover);
  --shadow: var(--shadow-hover);
  --move: -4px;
  --shadow-active: 0 3px 1px rgba(0, 0, 0, 0.2);
}
.button:hover i {
  -webkit-animation: move var(--duration) linear var(--d);
  animation: move var(--duration) linear var(--d);
}
.button.smoke {
  --move: 12px;
  --move-y: -8px;
  --blur: 4px;
}
.button.smoke:hover i {
  --duration: 1s;
  -webkit-animation: smoke var(--duration) linear var(--d);
  animation: smoke var(--duration) linear var(--d);
}
.button.drive {
  --move: 16px;
  --skew: 25deg;
  --skew-fast: 40deg;
  --skew-bounce: -12px;
}
.button.drive:hover i {
  --duration: 1s;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: drive var(--duration) linear var(--d);
  animation: drive var(--duration) linear var(--d);
}
.btnstyle1 {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  box-sizing: border-box;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
}
.btnstyle1::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  background-color: #006577;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}
.btnstyle1::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  background-color: #006577;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}
.btnstyle1:hover::after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btnstyle1:hover::before {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btnstyle2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: background-color 0.6s, color 0.3s;
  transition: background-color 0.6s, color 0.3s;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}
.btnstyle2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #006577;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  -webkit-transform: scale3d(0.6, 0.6, 1);
  transform: scale3d(0.6, 0.6, 1);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}
.btnstyle2:hover {
  color: #333;
  background-color: #fff;
}
.btnstyle2:hover::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
@-webkit-keyframes move {
  40% {
    -webkit-transform: translateY(var(--move));
    transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}
@keyframes move {
  40% {
    -webkit-transform: translateY(var(--move));
    transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}
@-webkit-keyframes smoke {
  45%,
  55% {
    -webkit-filter: blur(var(--blur));
    filter: blur(var(--blur));
  }
  50%,
  50.1% {
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(var(--move)) translateY(var(--move-y));
    transform: translateX(var(--move)) translateY(var(--move-y));
  }
  50.1% {
    -webkit-transform: translateX(calc(var(--move) * -1));
    transform: translateX(calc(var(--move) * -1));
  }
}
@keyframes smoke {
  45%,
  55% {
    -webkit-filter: blur(var(--blur));
    filter: blur(var(--blur));
  }
  50%,
  50.1% {
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(var(--move)) translateY(var(--move-y));
    transform: translateX(var(--move)) translateY(var(--move-y));
  }
  50.1% {
    -webkit-transform: translateX(calc(var(--move) * -1));
    transform: translateX(calc(var(--move) * -1));
  }
}
@-webkit-keyframes drive {
  40% {
    opacity: 1;
  }
  55% {
    -webkit-transform: skewX(var(--skew)) translateX(var(--move));
    transform: skewX(var(--skew)) translateX(var(--move));
  }
  56% {
    -webkit-transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
    transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
  }
  55%,
  56% {
    opacity: 0;
  }
  75% {
    -webkit-transform: skewX(var(--skew));
    transform: skewX(var(--skew));
  }
  85% {
    -webkit-transform: skewX(var(--skew-bounce));
    transform: skewX(var(--skew-bounce));
  }
}
@keyframes drive {
  40% {
    opacity: 1;
  }
  55% {
    -webkit-transform: skewX(var(--skew)) translateX(var(--move));
    transform: skewX(var(--skew)) translateX(var(--move));
  }
  56% {
    -webkit-transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
    transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
  }
  55%,
  56% {
    opacity: 0;
  }
  75% {
    -webkit-transform: skewX(var(--skew));
    transform: skewX(var(--skew));
  }
  85% {
    -webkit-transform: skewX(var(--skew-bounce));
    transform: skewX(var(--skew-bounce));
  }
}
@keyframes movec {
  0%,
  100% {
    clip: rect(0, 300px, 5px, 0);
  }
  25% {
    clip: rect(0, 300px, 210px, 295px);
  }
  50% {
    clip: rect(205px, 300px, 210px, 0);
  }
  75% {
    clip: rect(0, 5px, 210px, 0px);
  }
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 125, 178, 0.1), 0 0 0 10px #187db2;
  }
  100% {
    box-shadow: 0 0 0 10px #187db2, 0 0 0 15px rgba(24, 125, 178, 0);
  }
}
@keyframes ripple2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 67, 0.1), 0 0 0 10px #ffcc43;
  }
  100% {
    box-shadow: 0 0 0 10px #ffcc43, 0 0 0 15px rgba(255, 204, 67, 0);
  }
}
@keyframes tra1 {
  0% {
    transform: scale(0);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes tra2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotateZ(0);
  }
  50% {
    transform: rotateZ(180deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.1), 0 0 0 10px rgba(51, 51, 51, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(51, 51, 51, 0.1), 0 0 0 15px rgba(51, 51, 51, 0);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -moz-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -moz-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -moz-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -moz-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -moz-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    -moz-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    -moz-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.btn-wavy {
  --btn-wavy-bg: black;
  --btn-wavy-color: white;
  --btn-wavy-border-color: black;
  color: var(--btn-wavy-color);
}
.btn-wavy-bg {
  background: var(--btn-wavy-bg);
  border-color: var(--btn-wavy-border-color);
}
.btn-wavy:hover {
  --btn-wavy-bg: transparent;
  --btn-wavy-color: black;
}
.btn-wavy:hover .btn-wavy-bg {
  transform: scale(1.05);
}
.btn-wavy.inverse-color {
  --btn-wavy-bg: transparent;
  --btn-wavy-color: black;
  --btn-wavy-border-color: black;
}
.btn-wavy.inverse-color:hover {
  --btn-wavy-bg: black;
  --btn-wavy-color: white;
}
#wavy-line-1 {
  filter: url("#wavy-filter-1");
}
#wavy-line-2 {
  filter: url("#wavy-filter-2");
}

/* banner */
.banner {
  width: 100%;
  position: relative;
}
.banner .prev1 {
  width: 50px;
  height: 50px;
  display: block;
  background: url("../images/arrows.png") no-repeat left center;
  transition: 0.5s;
  position: absolute;
  top: 50%;
  left: 100px;
  z-index: 999;
  transform: translateY(-25px);
}
.banner .next1 {
  width: 50px;
  height: 50px;
  display: block;
  background: url("../images/arrows.png") no-repeat right center;
  transition: 0.5s;
  transform: translateY(-25px);
  position: absolute;
  top: 50%;
  right: 100px;
  z-index: 999;
}
.swiper-banner {
  width: 100%;
  height: 100%;
}
.swiper-banner .swiper-slide a,
.swiper-banner .swiper-slide a img {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-banner .swiper-pagination-bullets {
  bottom: 30px !important;
}
.swiper-banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 8px !important;
  background: rgba(255, 255, 255);
  opacity: 0.8;
}
.swiper-banner .swiper-pagination-bullet-active {
  background: #006577;
}
.biaoti {
  width: 282px;
  height: 64px;
  transition: 1s;
}
.biaoti img {
  display: block;
}
.biaoti h3 {
  position: relative;
  margin-top: 11px;
  font-size: 26px;
  line-height: 26px;
  color: #333;
  display: inline-block;
}
.biaoti h3::after {
  width: 38px;
  height: 5px;
  background: url("../images/bt1.png") no-repeat center;
  content: "";
  position: absolute;
  top: 11px;
  right: -44px;
}
.biaoti h3 a {
  color: #333;
}
.product {
  width: 100%;
  height: 993px;
  padding-top: 50px;
  box-sizing: border-box;
  overflow: hidden;
}
.product .biaoti {
  position: absolute;
  top: 0px;
  left: 0px;
}
.product .classify {
  width: 240px;
  float: left;
  margin-top: 90px;
}
.product .classify li.on a {
  background: url("../images/mo2.png") no-repeat right center;
}
.product .classify li.on a::after {
  width: 32px;
  background: #006577;
}
.product .classify li {
  width: 100%;
  margin-top: 65px;
  font-size: 16px;
  color: #333;
}
.product .classify li a {
  line-height: 33px;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  box-sizing: border-box;
  padding: 0 60px 0 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  background: url(../images/mo2.png) no-repeat 250px center;
}
.product .classify li a::after {
  width: 12px;
  height: 1px;
  background-color: #eeeeee;
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
}
.product .arrow {
  width: 152px;
  height: 36px;
  position: absolute;
  top: 8px;
  right: 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: url("../images/hd1.png") no-repeat left center;
  box-sizing: border-box;
  padding-right: 63px;
}
.product .arrow::after {
  width: 32px;
  height: 36px;
  background: url("../images/mo1.png") no-repeat center;
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
}
.product .arrow a {
  display: block;
  width: 36px;
  height: 36px;
}
.product .swiper-product {
  float: right;
  height: 396px;
  margin-top: 97px;
  width: 965px;
  overflow: hidden;
  position: relative;
}
.product .swiper-product .tit {
  letter-spacing: 3.6px;
  color: #d0d0d0;
  font-family: arial;
  font-size: 14px;
  line-height: 10px;
  position: absolute;
  bottom: 2px;
  right: 0px;
}
.product .swiper-product .swiper-slide {
  width: 380px;
}
.product .swiper-product .swiper-slide:hover .tu img {
  transform: scale(1.2);
}
.product .swiper-product .swiper-slide:hover .ti {
  color: #006577;
  font-weight: bold;
}
.product .swiper-product .swiper-slide-active {
  width: 545px;
}
.product .swiper-product .swiper-slide-active .tu {
  height: 330px;
}
.product .swiper-product .swiper-slide-active .ti {
  box-sizing: border-box;
  padding-right: 55px;
  font-weight: bold;
  background: url(../images/mo3.png) no-repeat right 20px center;
  color: #006577;
}
.product .swiper-product .tu {
  display: block;
  width: 100%;
  height: 270px;
  transition: 0.5s;
  overflow: hidden;
  border:1px solid #e5e5e5;
  box-sizing: border-box;
}
.product .swiper-product .tu img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 1s;
}
.product .swiper-product .ti {
  display: block;
  width: 255px;
  height: 65px;
  line-height: 65px;
  border-bottom: 1px solid #e5e5e5;
  float: right;
  text-align: right;
  box-sizing: border-box;
  padding-right: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  background: url(../images/mo3.png) no-repeat right -50px center;
}
.product .list {
  width: 100%;
  margin-top: 63px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product .list li:hover {
  background-color: #ffffff;
  box-shadow: 2px 3.5px 16px 0px rgba(0, 0, 0, 0.06);
}
.product .list li:hover .tu img {
  transform: scale(1.2);
}
.product .list li:hover .ti {
  color: #006577;
}
.product .list li:hover .mo {
  color: #f4921b;
  border-bottom: 1px solid #f4921b;
}
.product .list li {
  width: 290px;
  height: 307px;
  background-color: #f6f6f6;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px;
  transition: 0.5s;
}
.product .list li .tu {
  display: block;
  width: 100%;
  height: 206px;
  overflow: hidden;
}
.product .list li .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.product .list li .ti {
  display: block;
  float: left;
  line-height: 84px;
  width: 170px;
  box-sizing: border-box;
  padding-left: 23px;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  background: url(../images/ti1.png) no-repeat 5px 37px;
}
.product .list li .mo {
  display: block;
  width: 83px;
  height: 20px;
  float: right;
  margin-top: 40px;
  font-family: arial;
  font-size: 14px;
  line-height: 9px;
  color: #666;
  transition: 0.3s;
  border-bottom: 1px solid #a0a0a0;
}
.product .list li .mo i:nth-child(4) {
  margin-left: 5px;
}
.product .list li .mo i:nth-child(9) {
  margin-left: 5px;
}
.reason {
  width: 100%;
  height: 920px;
  overflow: hidden;
  background: url("../images/bg1.jpg") no-repeat center bottom;
  padding-top: 102px;
  box-sizing: border-box;
}
.reason .slideTxtBox {
  width: 100%;
  margin-top: 37px;
  position: relative;
}
.reason .slideTxtBox .capitalize {
  color: #006577;
  line-height: 36px;
  width: 128px;
  float: right;
  display: block;
}
.reason .slideTxtBox .wavy-line {
  width: 83px;
  height: 1px;
  background-color: #172645;
  position: absolute;
  top: 17px;
  left: -65px;
}
.reason .slideTxtBox .mo {
  display: block;
  width: 128px;
  height: 36px;
  background: url("../images/mo4.png") no-repeat right center;
  box-sizing: border-box;
  padding-right: 38px;
  font-size: 14px;
  color: #006577;
  text-align: right;
  line-height: 36px;
  position: absolute;
  top: 143px;
  right: 0px;
  z-index: 9999;
}
.reason .slideTxtBox .hd {
  width: 650px;
  height: 68px;
  position: absolute;
  top: 442px;
  right: 0px;
  z-index: 9999;
}
.reason .slideTxtBox .hd ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reason .slideTxtBox .hd ul li:nth-child(2) {
  background: url("../images/ysico2.png") no-repeat center top;
}
.reason .slideTxtBox .hd ul li:nth-child(2).on {
  background: url("../images/ysico21.png") no-repeat center top;
}
.reason .slideTxtBox .hd ul li:nth-child(3) {
  background: url("../images/ysico3.png") no-repeat center top;
}
.reason .slideTxtBox .hd ul li:nth-child(3).on {
  background: url("../images/ysico31.png") no-repeat center top;
}
.reason .slideTxtBox .hd ul li:nth-child(4) {
  background: url("../images/ysico4.png") no-repeat center top;
}
.reason .slideTxtBox .hd ul li:nth-child(4).on {
  background: url("../images/ysico41.png") no-repeat center top;
}
.reason .slideTxtBox .hd ul li.on {
  background: url("../images/ysico11.png") no-repeat center top;
}
.reason .slideTxtBox .hd ul li.on::after {
  height: 58px;
}
.reason .slideTxtBox .hd ul li {
  padding-top: 52px;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
  background: url("../images/ysico1.png") no-repeat center top;
  font-size: 16px;
  line-height: 16px;
  color: #333;
  transition: 0.5s;
  position: relative;
}
.reason .slideTxtBox .hd ul li::after {
  width: 1px;
  height: 0;
  background-color: #959595;
  position: absolute;
  bottom: 100px;
  left: 50%;
  content: "";
  transition: 0.5s;
}
.reason .slideTxtBox .bd {
  height: 548px !important;
}
.reason .slideTxtBox .tu {
  width: 548px;
  height: 548px;
  background: url("../images/yuan1.png") no-repeat center;
  box-sizing: border-box;
  padding: 11px;
  float: left;
}
.reason .slideTxtBox .tu img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.reason .slideTxtBox .zi {
  float: right;
  width: 650px;
  margin-top: 148px;
  position: relative;
}
.reason .slideTxtBox .zi .mo {
  display: block;
  width: 193px;
  height: 36px;
  background: url("../images/mo4.png") no-repeat center;
  box-sizing: border-box;
  padding-right: 38px;
  font-size: 14px;
  color: #006577;
  text-align: right;
  line-height: 36px;
  position: absolute;
  top: -5px;
  right: 0px;
}
.reason .slideTxtBox .zi .ti {
  line-height: 24px;
  font-size: 24px;
  color: #006577;
  font-weight: bold;
}
.reason .slideTxtBox .zi .ti i {
  font-family: arial;
  font-size: 24px;
}
.reason .slideTxtBox .zi p {
  font-family: arial;
  font-size: 14px;
  line-height: 10px;
  color: #999999;
  margin: 16px 0 28px;
  text-transform: uppercase;
}
.reason .slideTxtBox .zi .jie {
  width: 100%;
  line-height: 36px;
  letter-spacing: 0px;
  color: #333333;
  font-size: 16px;
}
.reason .slideTxtBox .dh {
  width: 455px;
  height: 80px;
  margin-top: 30px;
  float: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reason .slideTxtBox .dh p {
  line-height: 80px;
  box-sizing: border-box;
  padding-left: 36px;
  background: url("../images/dh2.png") no-repeat left center;
  font-family: arial;
  font-size: 30px;
  color: #fff;
}
.reason .slideTxtBox .dh .zx {
  float: right;
  width: 80px;
  height: 80px;
  display: block;
  background: url("../images/zx.png") no-repeat center;
}
.reason .slideTxtBox .arrow {
  width: 308px;
  height: 44px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 36px 0 0 195px;
  float: left;
}
.reason .slideTxtBox .arrow a {
  display: block;
  width: 140px;
  height: 44px;
  background: url("../images/jt1.png") no-repeat center;
  line-height: 44px;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  padding-left: 63px;
}
.reason .slideTxtBox .arrow .next {
  background: url("../images/jt2.png") no-repeat center;
  box-sizing: border-box;
  padding-left: 43px;
  color: #fff;
}
.case {
  width: 100%;
  height: 920px;
  padding-top: 65px;
  box-sizing: border-box;
  overflow: hidden;
}
.case .biaoti {
  float: left;
}
.case .mos {
  width: 32px;
  height: 5px;
  float: right;
  margin-top: 25px;
  background: url("../images/mo1.png") no-repeat center;
}
.case .swiper-case {
  width: 100%;
  height: 750px;
  padding-top: 80px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.case .swiper-case .swiper-slide {
  width: 396px;
  height: 455px;
  background: #fff;
  position: relative;
  z-index: 999;
  transition: 0.5s;
  text-align: center;
}
.case .swiper-case .swiper-slide .shu {
  color: #eeeeee;
  font-weight: bold;
  font-family: simsun;
  line-height: 50px;
  font-size: 72px;
  position: absolute;
  bottom: -145px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
  opacity: 0;
}
.case .swiper-case .swiper-slide::after {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  content: "";
  border: 1px solid #006577;
  border-radius: 50%;
  position: absolute;
  bottom: -80px;
  left: 50%;
  margin-left: -4px;
  opacity: 0;
  transition: 0.5s;
}
.case .swiper-case .swiper-slide:hover .tu img {
  transform: scale(1.2);
}
.case .swiper-case .swiper-slide:hover .ti {
  color: #006577;
  background: url("../images/dian2.jpg") no-repeat left center;
}
.case .swiper-case .swiper-slide .tu {
  display: block;
  width: 100%;
  height: 297px;
  transition: 0.5s;
  overflow: hidden;
}
.case .swiper-case .swiper-slide .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.case .swiper-case .swiper-slide .ti {
  display: inline-block;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 95%;
  transition: 0.3s;
  font-size: 16px;
  line-height: 16px;
  height: 17px;
  box-sizing: border-box;
  padding-left: 16px;
  background: url("../images/dian1.jpg") no-repeat left center;
  margin: 42px auto 20px;
}
.case .swiper-case .swiper-slide .jie {
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  box-sizing: border-box;
  padding: 0 25px;
  color: #999999;
  font-size: 15px;
}
.case .swiper-case .swiper-slide-next {
  transform: scale(1.11, 1);
  margin-top: -47px;
  height: 568px;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
}
.case .swiper-case .swiper-slide-next::after {
  opacity: 1;
}
.case .swiper-case .swiper-slide-next .shu {
  opacity: 1;
}
.case .swiper-case .swiper-slide-next .tu {
  height: 356px;
}
.case .swiper-case .swiper-slide-next .ti {
  font-size: 20px;
  margin: 42px 0 25px;
  color: #006577;
  font-weight: bold;
  height: 21px;
  background: url("../images/dian2.jpg") no-repeat left center;
  transform: scale(0.89, 1);
}
.case .swiper-case .swiper-slide-next .jie {
  line-height: 30px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  transform: scale(0.89, 1);
  padding: 0;
}
.case .swiper-case .swiper-slide-next .mo {
  display: block;
  width: 44px;
  height: 44px;
  background: url("../images/mo5.png") no-repeat center;
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: scale(0.89, 1);
  margin-left: -22px;
}
.case .swiper-case .arrow {
  width: 100%;
  height: 46px;
  position: absolute;
  bottom: 51px;
  left: 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.case .swiper-case .arrow a {
  display: block;
  width: 46px;
  height: 46px;
  background: #dbdbdb url(../images/jt3.png) no-repeat center;
  transition: 0.5s;
  border-radius: 50%;
}
.case .swiper-case .arrow a:hover {
  background-color: #006577 !important;
}
.case .swiper-case .arrow .next3 {
  background: #dbdbdb url(../images/jt4.png) no-repeat center;
}
.case .swiper-case .arrow::after {
  width: 1185px;
  height: 1px;
  background-color: #e5e5e5;
  position: absolute;
  top: 50%;
  left: 57px;
  content: "";
}
.about {
  width: 100%;
  height: 920px;
  background: url("../images/bg.jpg") no-repeat center;
  overflow: hidden;
  padding-top: 80px;
  box-sizing: border-box;
}
.about .left {
  width: 642px;
  transition: 1s;
}
.about .left .biaoti {
  float: left;
}
.about .left .chen {
  float: right;
  font-size: 16px;
  line-height: 16px;
  margin-top: 28px;
  color: #333;
}
.about .left .shu {
  display: block;
  margin: 35px 0 90px;
}
.about .left .ti {
  font-size: 18px;
  line-height: 18px;
  color: #333;
}
.about .left .yi {
  color: #999999;
  font-family: arial;
  font-size: 14px;
  line-height: 12px;
  margin: 15px 0;
}
.about .left em {
  display: block;
  width: 46px;
  height: 3px;
  background-color: #006577;
}
.about .left .jie {
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 36px;
  letter-spacing: 0px;
  color: #666666;
  font-size: 16px;
  margin: 50px 0;
}
.about .left .capitalize {
  color: #006577;
  line-height: 34px;
  width: 128px;
  float: right;
  display: block;
}
.about .left .wavy-line {
  width: 83px;
  height: 1px;
  background-color: #172645;
  position: absolute;
  top: 17px;
  left: -65px;
}
.about .left .mo {
  margin-left: 66px;
  display: block;
  width: 128px;
  height: 36px;
  background: url("../images/mo6.png") no-repeat right center;
  position: relative;
  box-sizing: border-box;
  padding-right: 18px;
  font-size: 14px;
  color: #006577;
  text-align: right;
  line-height: 34px;
}
.about .left .mo i {
  font-family: arial;
  font-size: 14px;
}
.about .left .mo i:nth-child(4) {
  margin-left: 5px;
}
.about .left .mo i:nth-child(9) {
  margin-left: 5px;
}
.about .left .tit {
  width: 100%;
  height: 50px;
  background: url(../images/ti3.png) no-repeat left 13px;
  margin-top: 84px;
}
.about .left .tit p {
  font-weight: bold;
  font-family: simsun;
  font-size: 20px;
  line-height: 20px;
  color: #333;
}
.about .left .tit span {
  display: block;
  margin-top: 18px;
  color: #999999;
  font-weight: bold;
  font-family: simsun;
  font-weight: 100;
  letter-spacing: -1px;
  font-size: 14px;
  line-height: 14px;
}
.about .right {
  width: 500px;
  background: url(../images/ti2.png) no-repeat left 12px;
  transition: 1s;
}
.about .right p {
  box-sizing: border-box;
  padding-left: 35px;
  font-weight: bold;
  font-family: simsun;
  font-size: 20px;
  line-height: 20px;
  color: #333;
}
.about .right img {
  display: block;
  margin-top: 17px;
}
.news {
  width: 100%;
  height: 990px;
  padding-top: 54px;
  box-sizing: border-box;
  overflow: hidden;
}
.news .biaoti {
  float: left;
}
.news .hd {
  width: 380px;
  height: 38px;
  margin-top: 10px;
  float: right;
  line-height: 38px;
  background: url("../images/mo1.png") no-repeat right center;
}
.news .hd ul {
  box-sizing: border-box;
  padding-right: 75px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news .hd ul p:last-child {
  display: none;
}
.news .hd ul p {
  font-size: 16px;
  color: #c4c4c4;
}
.news .hd ul li.on a {
  color: #333;
  font-weight: bold;
}
.news .hd ul li {
  color: #999999;
  font-size: 18px;
  transition: 0.3s;
}
.news .hd ul li a {
  color: #999999;
  transition: 0.3s;
}
.news .bd {
  width: 100%;
  margin-top: 50px;
}
.news .bd .to {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news .bd .to li:hover .tu img {
  transform: scale(1.2);
}
.news .bd .to li:hover .ti {
  color: #006577;
}
.news .bd .to li:hover .mo {
  background: url("../images/mo8.png") no-repeat center;
}
.news .bd .to li:nth-child(2),
.news .bd .to li:nth-child(3) {
  border-left: none;
}
.news .bd .to li {
  width: 33.3333%;
  height: 511px;
  background-color: #ffffff;
  border: solid 1px #e5e5e5;
  box-sizing: border-box;
  padding: 20px;
}
.news .bd .to li .tu {
  display: block;
  width: 100%;
  height: 248px;
  overflow: hidden;
}
.news .bd .to li .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
}
.news .bd .to li .shi {
  width: 100%;
  height: 26px;
  line-height: 26px;
  margin: 30px 0;
  color: #999999;
  font-family: arial;
  font-size: 16px;
}
.news .bd .to li .shi span {
  float: right;
  color: #e9e9e9;
  font-family: arial;
  font-size: 36px;
  font-weight: bold;
}
.news .bd .to li .ti {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  box-sizing: border-box;
  padding-left: 25px;
  font-size: 16px;
  line-height: 16px;
  color: #333;
  position: relative;
}
.news .bd .to li .ti::after {
  width: 10px;
  height: 3px;
  background-color: #e9e9e9;
  position: absolute;
  top: 6px;
  left: 0px;
  content: "";
}
.news .bd .to li .jie {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #999999;
  margin: 25px 0 32px;
}
.news .bd .to li .mo {
  display: block;
  float: right;
  width: 34px;
  height: 34px;
  background: url("../images/mo7.png") no-repeat center;
  transition: 0.3s;
}
.news .bd .bo {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news .bd .bo li:hover {
  border-bottom: 1px solid #006577;
}
.news .bd .bo li:hover .ti {
  color: #006577;
}
.news .bd .bo li {
  width: 400px;
  height: 80px;
  transition: 0.5s;
  margin-top: 35px;
  border-bottom: 1px solid #e5e5e5;
}
.news .bd .bo li .ti {
  display: block;
  width: 100%;
  line-height: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  padding-left: 35px;
  background: url("../images/ti4.png") no-repeat left center;
  margin-bottom: 25px;
}
.news .bd .bo li .shi {
  font-family: arial;
  font-size: 16px;
  line-height: 12px;
  color: #999999;
  float: left;
}
.news .bd .bo li .mo {
  float: right;
  line-height: 12px;
  font-weight: bold;
  font-family: simsun;
  color: #777777;
  font-size: 16px;
}
.news .bd .bo li .mo i:nth-child(5) {
  margin-left: 5px;
}
.news .bd .bo li .mo i {
  font-weight: bold;
  font-family: simsun;
}
