@charset "UTF-8";
@media screen and (max-width: 1800px) {
  html {
    font-size: 95px;
  }
}
@media screen and (max-width: 1700px) {
  html {
    font-size: 90px;
  }
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 85px;
  }
}
@media screen and (max-width: 1500px) {
  html {
    font-size: 80px;
  }
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 75px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 70px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 65px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 60px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 55px;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 50px;
  }
}
body::-webkit-scrollbar {
  /*height: 0;*/
  display: none;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.wh100 {
  width: 100%;
  height: 100%;
}

.a_dw {
  position: relative;
  top: -5.5555555556em;
}

.groui-select {
  margin-right: 15px;
  display: inline-block;
  position: relative;
  background-color: #fff;
  width: 240px;
}

.groui-select.select-active .select-options {
  visibility: visible;
  -webkit-animation-name: selectIn;
  -moz-animation-name: selectIn;
  -o-animation-name: selectIn;
  animation-name: selectIn;
}

.groui-select.select-active .select-label-input {
  box-shadow: 0 0 0 1px #19A7B3 inset;
}

.groui-select.select-active .select-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.groui-select .select-container {
  position: relative;
}

.groui-select .select-label-input {
  width: 100%;
  cursor: pointer;
  outline: none;
  border: none;
  box-shadow: 0 0 0 1px #e4e7ed inset;
  background-color: #fff;
  border-radius: 4px;
  line-height: 2.5;
  padding: 0 30px 0 15px;
  font-size: inherit;
  -webkit-transition: box-shadow 0.5s;
  -o-transition: box-shadow 0.5s;
  -moz-transition: box-shadow 0.5s;
  transition: box-shadow 0.5s;
}

.groui-select .select-icon {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 12px;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.groui-select .select-options {
  visibility: hidden;
  -webkit-animation-name: none;
  -moz-animation-name: none;
  -o-animation-name: none;
  animation-name: none;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  -o-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  min-width: 100%;
  left: 0;
  z-index: 9;
  padding: 10px 0;
  border-radius: 4px;
  top: 100%;
  max-height: 200px;
  border: solid 1px #e4e7ed;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  overflow: auto;
}

.groui-select .select-options::-webkit-scrollbar {
  width: 2px;
}

.groui-select .select-options::-webkit-scrollbar-thumb {
  width: 2px;
  background-color: #19A7B3;
}

.groui-select .select-option {
  padding: 0 10px;
  line-height: 2.4285714286;
  cursor: pointer;
  display: block;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.groui-select .select-option:hover, .groui-select .select-option.select-option-active {
  background-color: #19A7B3;
  color: #fff;
}

@-webkit-keyframes selectIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
}
@-moz-keyframes selectIn {
  0% {
    opacity: 0.3;
    -moz-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
}
@-o-keyframes selectIn {
  0% {
    opacity: 0.3;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 15px, 0);
  }
}
@keyframes selectIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 15px, 0);
    -moz-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
}
.my-time {
  -webkit-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  -o-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  -moz-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
}

.my-time::before, .my-time::after {
  -webkit-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  -o-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  -moz-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
}

.my-img-active {
  cursor: pointer;
}

.my-img-active.my-img-container, .my-img-active .my-img-container {
  overflow: hidden;
}

.my-img-active .my-img-target {
  -webkit-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  -o-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  -moz-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
}

.my-img-active:hover.my-img-target {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.my-img-active:hover .my-img-target {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.my-img-toggle {
  cursor: pointer;
}

.my-img-toggle.my-img-target, .my-img-toggle .my-img-target {
  position: relative;
  display: inline-block;
}

.my-img-toggle.my-img-target img, .my-img-toggle .my-img-target img {
  -webkit-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  -o-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  -moz-transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
  transition: all 1s cubic-bezier(0.43, 0.195, 0.02, 1);
}

.my-img-toggle.my-img-target img:nth-child(2), .my-img-toggle .my-img-target img:nth-child(2) {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.my-img-toggle:hover.my-img-target img:nth-child(1), .my-img-toggle:hover .my-img-target img:nth-child(1), .my-img-toggle.active.my-img-target img:nth-child(1), .my-img-toggle.active .my-img-target img:nth-child(1) {
  opacity: 0;
}

.my-img-toggle:hover.my-img-target img:nth-child(2), .my-img-toggle:hover .my-img-target img:nth-child(2), .my-img-toggle.active.my-img-target img:nth-child(2), .my-img-toggle.active .my-img-target img:nth-child(2) {
  opacity: 1;
}

.my-main img, .my-main video {
  -o-object-fit: cover;
  object-fit: cover;
}

.my-main a {
  color: inherit;
}

.my-main input, .my-main textarea {
  font-size: inherit;
  background-color: transparent;
  border: none;
  outline: none;
}

.my-main textarea {
  resize: none;
}

.my-more-active:hover.my-more, .my-more-active:hover .my-more {
  background-color: #47B8C2;
}

.my-more {
  line-height: 3.75;
  padding: 0 0.45rem;
  background-color: #19A7B3;
  border-radius: 60px;
  display: inline-block;
}

.my-more .more-text {
  color: #fff;
}

.my-more .more-icon {
  width: 1.25em;
  margin-left: 0.05rem;
  display: inline-block;
  vertical-align: text-bottom;
}

.my-banner {
  overflow: hidden;
  position: relative;
}

.my-banner .banner-img2 {
  display: none;
}

.my-banner .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 6.25em;
  background-color: rgba(0, 0, 0, 0.2);
}

.my-banner .box {
  height: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.my-banner .title {
  color: #fff;
}

.my-title {
  text-align: center;
}

.my-title.status1 {
  text-align: left;
}

.my-title.status1 .title-icon {
  margin-left: 0;
}

.my-title .title-text {
  line-height: 1.0416666667;
}

.my-title .title-text.status1 {
  color: #fff;
}

.my-title .title-icon {
  width: 24px;
  margin: 0 auto;
  margin-top: 0.32rem;
}

.my-scroll {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  padding-right: 6px;
}

.my-active2 {
  border-bottom: 1px solid #d9d9d9;
}

.my-active2 .box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 4.5;
}

.my-active2 .left {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.my-active2 .left .item {
  color: #999;
}

.my-active2 .left .item:not(.active):hover {
  color: #19A7B3;
}

.my-active2 .left .item.active {
  color: #333;
}

.my-active2 .left .item.home {
  height: 4.5em;
  width: 4.5em;
  background-color: #F7F7F7;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 0.24rem;
}

.my-active2 .left .item.home:hover {
  background-color: #19A7B3;
}

.my-active2 .left .item.home:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.my-active2 .left > img {
  margin: 0 0.12rem;
}

.my-active2 .right .item {
  position: relative;
}

.my-active2 .right .item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0.03rem;
  left: 0;
  bottom: 0;
  background-color: #19A7B3;
}

.my-active2 .right .item:hover, .my-active2 .right .item.active {
  color: #19A7B3;
}

.my-active2 .right .item:hover::before, .my-active2 .right .item.active::before {
  width: 100%;
}

.my-active2 .right .item + .item {
  margin-left: 0.48rem;
}

.my-nav .box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: safe center;
  -moz-box-pack: safe center;
  -ms-flex-pack: safe center;
  justify-content: safe center;
  line-height: 4.4444444444;
  overflow: auto;
}

.my-nav .box::-webkit-scrollbar {
  height: 4px;
}

.my-nav .box::-webkit-scrollbar-thumb {
  height: 4px;
  background-color: #19A7B3;
  cursor: pointer;
}

.my-nav .box > s {
  display: block;
  width: 2px;
  height: 0.7777777778em;
  background-color: #666666;
  margin: 0 0.64rem;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.my-nav .nav-item {
  color: #333;
  position: relative;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.my-nav .nav-item::before {
  position: absolute;
  content: "";
  width: 0.6666666667em;
  height: 0.8888888889em;
  background: url(../images/svg/information1.svg) no-repeat center center/100% 100%;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  bottom: 0.5em;
  opacity: 0;
}

.my-nav .nav-item:hover, .my-nav .nav-item.active {
  color: #19A7B3;
}

.my-nav .nav-item:hover::before, .my-nav .nav-item.active::before {
  opacity: 1;
}

.my-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
}

.my-modal .modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.my-modal .modal-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: safe center;
  -moz-box-align: safe center;
  -ms-flex-align: safe center;
  align-items: safe center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: auto;
  padding: 5vh 15px;
}

.my-modal .modal-main {
  position: relative;
  max-width: 100%;
}

.my-modal .modal-close {
  position: absolute;
  top: 0;
  right: -33px;
  width: 18px;
}

.my-modal .modal-close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.my-swiper-pagination.swiper-pagination-horizontal {
  bottom: 0;
}

.my-swiper-pagination.status1 .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.3);
}

.my-swiper-pagination.status1 .swiper-pagination-bullet-active {
  background-color: #fff;
}

.my-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  opacity: 1;
  background-color: rgba(25, 167, 179, 0.3);
  margin: 0 0.09rem;
}

.my-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #19A7B3;
  width: 0.5rem;
}

.my-swiper-button .swiper-button-prev .swiper-button-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.my-swiper-button .swiper-button {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0px 4px 9.2px rgba(0, 0, 0, 0.12);
  width: 0.6rem;
  height: 0.6rem;
  background-color: #fff;
  border-radius: 50%;
}

.my-swiper-button .swiper-button:hover {
  box-shadow: none;
  background-color: #19A7B3;
}

.my-swiper-button .swiper-button::after {
  display: none;
}

.my-swiper-button .swiper-button-icon {
  width: 0.24rem;
}

header.active {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

header.active .header {
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
}

.header.active {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}

.header .box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header .logo {
  width: 7.0625em;
  position: absolute;
  left: 0;
}

.header .nav {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.header .nav-item {
  position: relative;
  margin: 0 0.25rem;
}

.header .nav-item:hover .nav-link, .header .nav-item.active .nav-link {
  color: #19A7B3;
}

.header .nav-item:hover .nav-link s, .header .nav-item.active .nav-link s {
  opacity: 1;
}

.header .nav-item:hover .nav-child {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  opacity: 1;
}

.header .nav-link {
  line-height: 6.25;
}

.header .nav-link s {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  width: 1.875em;
  height: 2.5em;
  background: url(../images/svg/header3.svg) no-repeat center center/100% 100%;
  opacity: 0;
}

.header .nav-child {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 11.4285714286em;
  padding-top: 0.08rem;
  -webkit-transform: translate3d(0, 20px, 0);
  -moz-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  pointer-events: none;
  opacity: 0;
}

.header .nav-child-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 0.09rem 0;
}

.header .nav-li {
  white-space: nowrap;
  color: #666;
  line-height: 3.5714285714;
  padding: 0 0.14rem;
  display: block;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.header .nav-li:hover {
  color: #19A7B3;
}

.header .nav-li:hover s {
  opacity: 1;
}

.header .nav-li img {
  display: inline-block;
  vertical-align: middle;
  width: 1.4285714286em;
  margin-right: 0.14rem;
}

.header .nav-li s {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(right, rgba(25, 167, 179, 0) 0%, rgba(25, 167, 179, 0.15) 100%);
  background: -moz-linear-gradient(right, rgba(25, 167, 179, 0) 0%, rgba(25, 167, 179, 0.15) 100%);
  background: -o-linear-gradient(right, rgba(25, 167, 179, 0) 0%, rgba(25, 167, 179, 0.15) 100%);
  background: linear-gradient(270deg, rgba(25, 167, 179, 0) 0%, rgba(25, 167, 179, 0.15) 100%);
  opacity: 0;
}

.header .nav-li span {
  position: relative;
}

.header .right {
  position: absolute;
  right: 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-right: 0.33rem;
}

.header .item:hover .item-text {
  color: #19A7B3;
}

.header .item:hover .item-child {
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

.header .item:hover .item-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header .item-img {
  width: 1.5em;
}

.header .item-child {
  position: absolute;
  top: 100%;
  min-width: 100%;
  left: 50%;
  padding-top: 10px;
  -webkit-transform: translate3d(-50%, 20px, 0);
  -moz-transform: translate3d(-50%, 20px, 0);
  transform: translate3d(-50%, 20px, 0);
  opacity: 0;
  pointer-events: none;
}

.header .item-child-contianer {
  border-radius: 6px;
  padding: 0.05rem 0;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}

.header .item-link {
  line-height: 1.5;
  min-width: 3.5em;
  padding: 0.08rem 0;
  text-align: center;
  white-space: nowrap;
  display: block;
  position: relative;
}

.header .item-link:hover {
  color: #19A7B3;
}

.footer {
  background: url(../images/3.webp) no-repeat center bottom/cover;
  border-top: 4px solid #19A7B3;
}

.footer .top {
  padding-top: 0.8rem;
  padding-bottom: 0.72rem;
}

.footer .top .box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer .top .left {
  width: 3.1rem;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-right: 15px;
}

.footer .top .title {
  line-height: 1.3125;
  margin-bottom: 0.5rem;
}

.footer .top .input {
  position: relative;
  margin-bottom: 0.24rem;
}

.footer .top .input input {
  width: 100%;
  line-height: 1.3125;
  padding-bottom: 0.17rem;
  border-bottom: 1px solid #DDDDDD;
  padding-left: 2.0625em;
}

.footer .top .input input:focus {
  border-color: #19A7B3;
}

.footer .top .input input::-webkit-input-placeholder {
  color: #222;
}

.footer .top .input input:-moz-placeholder {
  color: #222;
}

.footer .top .input input::-moz-placeholder {
  color: #222;
}

.footer .top .input input:-ms-input-placeholder {
  color: #222;
}

.footer .top .input input::placeholder {
  color: #222;
}

.footer .top .input .icon {
  position: absolute;
  width: 1.25em;
  left: 0;
  top: 0;
}

.footer .top .links {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.footer .top .link {
  line-height: 1.2857142857;
  color: #999;
  margin-right: 0.37rem;
  margin-bottom: 0.11rem;
}

.footer .top .link:hover {
  color: #19A7B3;
  text-decoration: underline;
}

.footer .top .codes {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer .top .code {
  width: 50px;
  height: 50px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #7D7D7D;
  cursor: pointer;
  position: relative;
}

.footer .top .code + .code {
  margin-left: 0.1rem;
}

.footer .top .code:hover {
  background-color: #19A7B3;
}

.footer .top .code:hover .code-img-container {
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

.footer .top .code-icon {
  width: 24px;
}

.footer .top .code-img-container {
  width: 120px;
  max-width: initial;
  position: absolute;
  left: 50%;
  bottom: 100%;
  padding-bottom: 15px;
  -webkit-transform: translate3d(-50%, -20px, 0);
  -moz-transform: translate3d(-50%, -20px, 0);
  transform: translate3d(-50%, -20px, 0);
  opacity: 0;
  pointer-events: none;
}

.footer .top .code-img-container::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translate3d(-50%, 0, 0) rotate(45deg);
  -moz-transform: translate3d(-50%, 0, 0) rotate(45deg);
  transform: translate3d(-50%, 0, 0) rotate(45deg);
}

.footer .top .code-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}

.footer .top .nav {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 68.75%;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer .top .nav-li {
  display: block;
  color: #666;
  line-height: 1.3125;
}

.footer .top .nav-li:nth-child(1) {
  line-height: 1.3;
  color: #222;
  margin-bottom: 0.3rem;
}

.footer .top .nav-li + .nav-li {
  margin-top: 0.2rem;
}

.footer .top .nav-li:hover {
  color: #19A7B3;
  /*text-decoration: underline;*/
}

.footer .bottom {
  padding-bottom: 0.56rem;
}

.footer .bottom .box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer .bottom .left p {
  color: #999;
}

.footer .bottom .left a:hover {
  color: #19A7B3;
  text-decoration: underline;
}

.footer .bottom .text1 {
  line-height: 1.2857142857;
  margin-bottom: 0.06rem;
}

.footer .bottom .text2 {
  line-height: 1.5714285714;
}

.footer .bottom .right {
  width: 68.75%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-left: 15px;
}

.footer .bottom .title {
  line-height: 1.3;
  margin-bottom: 0.06rem;
}

.footer .bottom .infos {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer .bottom a.info:hover {
  color: #19A7B3;
  text-decoration: underline;
}

.footer .bottom .info {
  line-height: 1.5;
  color: #666;
  margin-right: 0.4rem;
}

.footer .bottom .info img {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 0.03rem;
  width: 1.5em;
}

.footer .bottom .links {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.footer .bottom .link {
  line-height: 1.2857142857;
  color: #999;
}

.footer .bottom .link:hover {
  color: #19A7B3;
  text-decoration: underline;
}

.footer .bottom .link + .link {
  margin-left: 0.2rem;
}

.index .section1 .swiper-slide {
  padding-top: 49.4791666667%;
}

.index .section1 .swiper-slide.active .slide-title, .index .section1 .swiper-slide.active .my-more {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.index .section1 .slide-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.index .section1 .slide-container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  background: -webkit-linear-gradient(left, #19A7B3 0%, rgba(25, 167, 179, 0) 50.45%);
  background: -moz-linear-gradient(left, #19A7B3 0%, rgba(25, 167, 179, 0) 50.45%);
  background: -o-linear-gradient(left, #19A7B3 0%, rgba(25, 167, 179, 0) 50.45%);
  background: linear-gradient(90deg, #19A7B3 0%, rgba(25, 167, 179, 0) 50.45%);
}

.index .section1 .slide-img2 {
  display: none;
}

.index .section1 .slide-video {
  background-color: #000;
}

.index .section1 .slide-video + .slide-img1 {
  display: none;
}

.index .section1 .slide-video video {
  -o-object-fit: contain;
  object-fit: contain;
}

.index .section1 .slide-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  width: 40px;
  display: none;
}

.index .section1 .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.index .section1 .slide-content .box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  color: #fff;
}

.index .section1 .slide-title, .index .section1 .my-more {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

.index .section1 .slide-title {
  line-height: 1.4583333333;
}

.index .section1 .swiper-bottom {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3;
  bottom: 4.2105263158%;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.index .section1 .swiper-bottom .swiper-button {
  position: relative;
  top: auto;
  margin-top: 0;
}

.index .section1 .swiper-bottom .swiper-button:hover::after {
  color: #19A7B3;
}

.index .section1 .swiper-bottom .swiper-button::after {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.index .section1 .swiper-bottom .swiper-pagination {
  position: relative;
  width: auto;
  bottom: auto;
  margin: 0 0.2rem;
}

.index .section1 .swiper-bottom .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  border-radius: 50px;
}

.index .section1 .swiper-bottom .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #19A7B3;
  width: 24px;
}

.index .section1 .my-more {
  margin-top: 0.6rem;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.index .section2 {
  background: url(../images/5.webp) no-repeat center center/cover;
  min-height: 9.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1rem;
  color: #fff;
}

.index .section2 .title {
  line-height: 1.3125;
  margin-bottom: 0.4rem;
}

.index .section2 .text {
  line-height: 1.5;
  width: 7.36rem;
  margin-bottom: 0.7rem;
}

.index .section2 .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1.23rem;
  padding-left: 0.59rem;
}

.index .section2 .item-num .countUp {
  font-family: Arial;
}

.index .section2 .item-num sup {
  margin-left: 0.08rem;
}

.index .section2 .item-title {
  line-height: 1.3;
  margin-top: 0.12rem;
}

.index .section3 {
  height: -webkit-calc(100vh + 400px);
  height: -moz-calc(100vh + 400px);
  height: calc(100vh + 400px);
  position: relative;
}

.index .section3 .section-sticky {
  position: sticky;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background: url(../images/15.webp) no-repeat center center/cover;
}

.index .section3 .content2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.index .section3 .img1 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.index .section3 .content {
  opacity: 0;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url(../images/6.webp) no-repeat center center/cover;
}

.index .section3 .info {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 43.7894736842%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  text-align: center;
}

.index .section3 .title {
  line-height: 1.0416666667;
  margin-bottom: 0.3rem;
}

.index .section3 .title2 {
  font-size: 1.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  white-space: nowrap;
  color: #47B8C2;
  opacity: 0.05;
}

.index .section3 .text {
  line-height: 1.5;
  color: #666666;
  margin-bottom: 0.56rem;
}

.index .section3 .list {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.index .section3 .svg {
  opacity: 0;
  pointer-events: none;
}

.index .section3 .svg.active path {
  -webkit-transform: scale(10) translate3d(var(--x), var(--y), 0);
  -moz-transform: scale(10) translate3d(var(--x), var(--y), 0);
  transform: scale(10) translate3d(var(--x), var(--y), 0);
}

.index .section3 .svg path {
  -webkit-transform: scale(1) translate3d(var(--x), var(--y), 0);
  -moz-transform: scale(1) translate3d(var(--x), var(--y), 0);
  transform: scale(1) translate3d(var(--x), var(--y), 0);
}

.index .section3 .item {
  position: absolute;
  display: block;
}

.index .section3 .item img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.index .section3 .item:hover .item-mask3 {
  opacity: 1;
}

.index .section3 .item:hover .item-title {
  color: #19A7B3;
  bottom: -17.0212765957%;
}

.index .section3 .item:nth-child(1) {
  left: 15.3125%;
  top: 24.4210526316%;
  width: 15.6666666667em;
}

.index .section3 .item:nth-child(2) {
  left: 32.03125%;
  top: 16.4210526316%;
  width: 14.4444444444em;
}

.index .section3 .item:nth-child(3) {
  left: 78.75%;
  top: 45.1578947368%;
  width: 14.4444444444em;
}

.index .section3 .item:nth-child(4) {
  left: 62.7083333333%;
  top: 19.7894736842%;
  width: 17.1111111111em;
}

.index .section3 .item:nth-child(5) {
  left: 9.1145833333%;
  top: 61.3684210526%;
  width: 14.4444444444em;
}

.index .section3 .item:nth-child(6) {
  left: 27.96875%;
  top: 62.7368421053%;
  width: 15.6666666667em;
}

.index .section3 .item:nth-child(7) {
  left: 57.96875%;
  top: 63.2631578947%;
  width: 15.5555555556em;
}

.index .section3 .item-img {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.index .section3 .item-img-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: 0px 4px 20px 0px rgba(25, 167, 179, 0.25);
}

.index .section3 .item-mask1 {
  position: absolute;
  top: -3.0769230769%;
  width: 118.8461538462%;
  max-width: initial;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.index .section3 .item-mask2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(top, rgba(0, 99, 167, 0) 39.5%, rgba(0, 99, 167, 0.7) 100%);
  background: -moz-linear-gradient(top, rgba(0, 99, 167, 0) 39.5%, rgba(0, 99, 167, 0.7) 100%);
  background: -o-linear-gradient(top, rgba(0, 99, 167, 0) 39.5%, rgba(0, 99, 167, 0.7) 100%);
  background: linear-gradient(180deg, rgba(0, 99, 167, 0) 39.5%, rgba(0, 99, 167, 0.7) 100%);
  border-radius: 50%;
}

.index .section3 .item-mask3 {
  position: absolute;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  max-width: initial;
  width: 100%;
  bottom: 1.7730496454%;
  opacity: 0;
  border-radius: 0 0 50px 50px;
}

.index .section3 .item-title {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  line-height: 1.3333333333;
  bottom: 14.2307692308%;
}

.index .section4 {
  padding-top: 1.3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background: url(../images/20.webp) no-repeat center bottom/cover;
}

.index .section4 .title {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.index .section4 .text {
  line-height: 1.0416666667;
}

.index .section4 .swiper {
  overflow: initial;
  padding-bottom: 0.64rem;
  margin-bottom: 0.15rem;
}

.index .section4 .swiper-slide:hover .slide-title {
  color: #19A7B3;
}

.index .section4 .swiper-slide:hover .slide-more {
  border-color: #19A7B3;
  background-color: #19A7B3;
}

.index .section4 .slide-img {
  border-radius: 0.15rem;
  margin-bottom: 0.39rem;
}

.index .section4 .slide-title {
  line-height: 1.3461538462;
  margin-bottom: 0.18rem;
  height: 2.6923076923em;
}

.index .section4 .slide-time {
  line-height: 1.1428571429;
  font-family: Arial;
  color: #666;
  margin-bottom: 0.35rem;
}

.index .section4 .slide-more {
  width: 2.3076923077em;
  height: 2.3076923077em;
  border-radius: 50%;
  border: 2px solid rgba(153, 153, 153, 0.5);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.index .section4 .slide-icon {
  width: 0.7692307692em;
}

.index .section4 .swiper-pagination {
  top: auto;
  bottom: 0;
  background-color: rgba(217, 217, 217, 0.4);
}

.index .section4 .swiper-pagination-progressbar-fill {
  background-color: #19A7B3;
}

.index .section4 .nums {
  color: rgba(153, 153, 153, 0.5);
}

.index .section4 .nums span {
  font-family: Arial;
}

.index .section4 .num-total {
  margin-left: 0.04rem;
}

.index .section4 .num-index {
  color: #19A7B3;
  margin-right: 0.05rem;
}

.index .section5 {
  padding-top: 1.3rem;
  padding-bottom: 0.72rem;
  background-color: #F6F7F8;
  overflow: hidden;
}

.index .section5 .title {
  line-height: 1.0416666667;
  margin-bottom: 0.6rem;
}

.index .section5 .list + .list {
  margin-top: 0.27rem;
}

.index .section5 .ul {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.index .section5 .lists {
  position: relative;
}

.index .section5 .lists::before, .index .section5 .lists::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 3.12rem;
  z-index: 3;
}

.index .section5 .lists::before {
  left: 0;
  background: -webkit-linear-gradient(right, rgba(246, 247, 248, 0) 0%, #F6F7F8 90%);
  background: -moz-linear-gradient(right, rgba(246, 247, 248, 0) 0%, #F6F7F8 90%);
  background: -o-linear-gradient(right, rgba(246, 247, 248, 0) 0%, #F6F7F8 90%);
  background: linear-gradient(270deg, rgba(246, 247, 248, 0) 0%, #F6F7F8 90%);
}

.index .section5 .lists::after {
  right: 0;
  background: -webkit-linear-gradient(left, rgba(246, 247, 248, 0) 0%, #F6F7F8 90%);
  background: -moz-linear-gradient(left, rgba(246, 247, 248, 0) 0%, #F6F7F8 90%);
  background: -o-linear-gradient(left, rgba(246, 247, 248, 0) 0%, #F6F7F8 90%);
  background: linear-gradient(90deg, rgba(246, 247, 248, 0) 0%, #F6F7F8 90%);
}

.index .section5 .item {
  width: 3.04rem;
  background-color: #fff;
  border-radius: 0.15rem;
  box-shadow: 0px 0.1rem 0.35rem 0px rgba(51, 51, 51, 0.05);
  margin: 0 0.15rem;
}

.index .section6 {
  background: url(../images/36.webp) no-repeat center center/cover;
}

.index .section6 .box {
  min-height: 3.15rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.index .section6 .title {
  color: #19A7B3;
  line-height: 1.3333333333;
  margin-bottom: 0.36rem;
}

.index .section6 .more {
  line-height: 1.3125;
}

.index .section6 .more:hover span {
  background-color: #47B8C2;
}

.index .section6 .more span {
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  width: 1.125em;
  height: 1.125em;
  border-radius: 50%;
  background-color: #19A7B3;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0.08rem;
}

.index .section6 .more span img {
  width: 0.3125em;
}

.about .section1 {
  background: url(../images/40.webp) no-repeat center center/cover;
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
}

.about .section1 .content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 6.8rem;
}

.about .section1 .info {
  width: 43.875%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 0.4rem;
}

.about .section1 .my-title {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-bottom: 0.4rem;
}

.about .section1 .text {
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: auto;
  line-height: 1.625;
  color: #555555;
}

.about .section1 .text span {
  color: #19A7B3;
}

.about .section1 .right {
  width: 38.75%;
  margin-left: auto;
  position: relative;
}

.about .section1 .img {
  border-radius: 3rem 0 3rem 0.7rem;
}

.about .section1 .list {
  position: absolute;
  bottom: 0;
  left: -25.4838709677%;
  width: 8.2608695652em;
  border-radius: 0 2rem 0 2rem;
  color: #fff;
  padding: 0.25rem 0.4rem 0.28rem;
  background: -webkit-linear-gradient(right, #19A7B3 28.58%, rgba(25, 167, 179, 0.94) 99.76%);
  background: -moz-linear-gradient(right, #19A7B3 28.58%, rgba(25, 167, 179, 0.94) 99.76%);
  background: -o-linear-gradient(right, #19A7B3 28.58%, rgba(25, 167, 179, 0.94) 99.76%);
  background: linear-gradient(270deg, #19A7B3 28.58%, rgba(25, 167, 179, 0.94) 99.76%);
}

.about .section1 .item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 0.4rem;
  padding-top: 0.25rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

.about .section1 .item:last-child {
  border-bottom: none;
}

.about .section1 .item-icon {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 0.8695652174em;
  margin-right: 0.16rem;
  margin-top: 0.0652173913em;
}

.about .section1 .item-num {
  margin-bottom: 0.05rem;
}

.about .section1 .item-num .countUp {
  font-family: Arial;
}

.about .section1 .item-title {
  line-height: 1.3125;
}

.about .section2 {
  padding-top: 0.8rem;
  padding-bottom: 0;
  background: url(../images/41.webp) no-repeat center center/cover;
}

.about .section2 .my-title {
  margin-bottom: 0.4rem;
}

.about .section2 .img {
  margin-bottom: 0.96rem;
}

.about .section2 .bg {
  margin-bottom: -1px;
}

.about .section3 {
  position: relative;
  height: 150vh;
}

.about .section3 .container {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
  padding-top: 5.5555555556em;
  background: url(../images/43.webp) no-repeat center center/cover;
}

.about .section3 .swiper {
  overflow: initial;
}

.about .section3 .swiper-slide {
  width: 81.625%;
  color: #fff;
}

.about .section3 .swiper-slide:last-child {
  width: 18.375%;
}

.about .section3 .swiper-slide-active .slide-img {
  width: 45.3292496172%;
  margin-top: 0;
}

.about .section3 .swiper-slide-active .slide-year {
  margin-left: 25.4211332312%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.about .section3 .swiper-slide-active .slide-text {
  margin-left: 53.751914242%;
  margin-top: -5.3684210526vh;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

.about .section3 .slide-img {
  -webkit-transition-duration: 1.5s;
  -moz-transition-duration: 1.5s;
  -o-transition-duration: 1.5s;
  transition-duration: 1.5s;
  width: 18.125%;
  margin-top: 5vh;
  margin-bottom: 3.5789473684vh;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
  position: relative;
  top: 0;
}

.about .section3 .slide-year {
  -webkit-transition-duration: 1.5s;
  -moz-transition-duration: 1.5s;
  -o-transition-duration: 1.5s;
  transition-duration: 1.5s;
  font-size: 1.2rem;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
  position: relative;
  top: 0;
}

.about .section3 .slide-text {
  -webkit-transition-duration: 1.5s;
  -moz-transition-duration: 1.5s;
  -o-transition-duration: 1.5s;
  transition-duration: 1.5s;
  width: 49.0045941807%;
  line-height: 1.5;
  -webkit-transform: translate3d(0, -20%, 0) scale(0.5);
  -moz-transform: translate3d(0, -20%, 0) scale(0.5);
  transform: translate3d(0, -20%, 0) scale(0.5);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
  position: relative;
  top: 0;
}

.about .section3 .swiper-pagination {
  display: none;
}

.about .section4 {
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
  position: relative;
}

.about .section4 .bg {
  position: absolute;
  width: 1.31rem;
  left: 0;
  bottom: 0;
  -webkit-transform: translate3d(0, 70%, 0);
  -moz-transform: translate3d(0, 70%, 0);
  transform: translate3d(0, 70%, 0);
}

.about .section4 .my-title {
  margin-bottom: 0.4rem;
}

.about .section4 .swiper {
  border-radius: 0.15rem;
}

.about .section4 .swiper-slide {
  width: 25%;
  height: 4.6rem;
}

.about .section4 .swiper-slide + .swiper-slide {
  border-left: 1px solid #E5E5E5;
}

.about .section4 .swiper-slide:hover .slide-content, .about .section4 .swiper-slide.active .slide-content {
  background-color: rgba(25, 167, 179, 0.3);
}

.about .section4 .swiper-slide:hover .slide-title, .about .section4 .swiper-slide:hover .slide-text, .about .section4 .swiper-slide.active .slide-title, .about .section4 .swiper-slide.active .slide-text {
  color: #fff;
}

.about .section4 .swiper-slide:hover .slide-line, .about .section4 .swiper-slide.active .slide-line {
  background-color: #fff;
}

.about .section4 .slide-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.about .section4 .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F5FAFA;
}

.about .section4 .slide-top {
  position: relative;
  width: 2.6666666667em;
  margin: 0.9rem auto 0.62rem;
}

.about .section4 .slide-info {
  padding-left: 10%;
  padding-right: 10%;
}

.about .section4 .slide-bg {
  position: absolute;
  width: 4.0833333333em;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  bottom: -0.7083333333em;
}

.about .section4 .slide-title {
  text-align: center;
  line-height: 1.3333333333;
}

.about .section4 .slide-line {
  width: 1.25em;
  height: 1px;
  margin: 0.28rem auto 0.23rem;
  display: block;
  background-color: rgba(153, 153, 153, 0.5);
}

.about .section4 .slide-text {
  line-height: 1.5;
  color: #666;
  text-align: center;
}

.about .section5 {
  padding-top: 0.8rem;
  min-height: 8.8rem;
  background: url(../images/81.webp) no-repeat center center/cover;
}

.about .section5 .my-title {
  margin-bottom: 0.6rem;
}

.about .section5 .swipers {
  position: relative;
}

.about .section5 .swiper {
  width: 100%;
  max-width: 1400px;
}

.about .section5 .swiper-slide {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about .section5 .item {
  width: 19.6428571429%;
  margin-right: 7.1428571429%;
  margin-bottom: 0.24rem;
  position: relative;
  cursor: pointer;
}

.about .section5 .item:hover .item-img {
  opacity: 1;
}

.about .section5 .item:hover .item-content {
  opacity: 0;
}

.about .section5 .item:nth-of-type(4n) {
  margin-right: 0;
}

.about .section5 .item-img {
  position: relative;
  z-index: 2;
  opacity: 0;
}

.about .section5 .item-img-target {
  width: 94.5454545455%;
  margin: 0 auto;
}

.about .section5 .item-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.about .section5 .item-icon {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 2.3333333333em;
}

.about .section5 .item-info {
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 0.06rem;
}

.about .section5 .item-time {
  line-height: 1.625;
  color: #333;
  margin-bottom: 0.02rem;
  font-family: Arial;
}

.about .section5 .item-title {
  line-height: 1.4444444444;
  color: #333;
}

.about .section5 .swiper-button-prev {
  -webkit-transform: translate3d(-90%, 0, 0);
  -moz-transform: translate3d(-90%, 0, 0);
  transform: translate3d(-90%, 0, 0);
}

.about .section5 .swiper-button-next {
  -webkit-transform: translate3d(90%, 0, 0);
  -moz-transform: translate3d(90%, 0, 0);
  transform: translate3d(90%, 0, 0);
}

.business .my-nav .box > s {
  margin: 0 0.48rem;
}

.business .section1 {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 2rem;
}

.business .section1 .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.business .section1 .bg2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.business .section1 .bg3 {
  position: absolute;
  width: 12.9166666667%;
  left: 8.125%;
  bottom: -0.36rem;
}

.business .section1 .bg4 {
  position: absolute;
  width: 26.7708333333%;
  right: 0;
  bottom: -2.41rem;
}

.business .section1 .content {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 1rem;
  padding-bottom: 7.8125%;
}

.business .section1 .text {
  color: #666666;
  line-height: 1.625;
  width: 9rem;
  max-width: 100%;
}

.business .section1 .my-title {
  margin-bottom: 0.4rem;
}

.business .section1 .icon {
  width: 5em;
  margin-left: 0.4rem;
  margin-top: 0.4rem;
}

.business .section1 .icon img {
  opacity: 0.07;
}

.business .section1 .img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.business .section1 .img-target {
  width: 72.9166666667%;
  margin-left: auto;
  border-radius: 0.15rem 0 0 0.15rem;
}

.business .section2 {
  padding-bottom: 0.8rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.business .section2.status1 {
  background-color: #F5FAFA;
  padding-top: 0.62rem;
  padding-bottom: 1.2rem;
}

.business .section2.status1 .bg {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin-top: -1.69rem;
}

.business .section2.status1 .swiper {
  width: 100%;
  max-width: 1560px;
}

.business .section2.status1 .item {
  width: 24.0384615385%;
  margin-right: 1.2820512821%;
  padding: 0.3rem 0.45rem 0.2rem;
}

.business .section2.status1 .item:nth-of-type(5n) {
  margin-right: 1.2820512821%;
}

.business .section2.status1 .item:nth-of-type(4n) {
  margin-right: 0;
}

.business .section2.status1 .item-title {
  margin-bottom: 0;
}

.business .section2.status1 .item-text {
  line-height: 1.4444444444;
  min-height: 4.3333333333em;
}

.business .section2.status1.status2 .item {
  padding: 0.2rem 0.45rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.business .section2.status1.status2 .item-text {
  min-height: initial;
}

.business .section2.status1.status2.status3 .swiper-slide {
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.business .section2.status1.status2.status3 .item {
  margin-right: 0;
  margin: 0 2.5641025641%;
}

.business .section2 .bg {
  display: none;
}

.business .section2 .my-title {
  margin-bottom: 0.4rem;
}

.business .section2 .swipers {
  position: relative;
}

.business .section2 .swiper {
  padding-bottom: 0.2rem;
}

.business .section2 .swiper-button {
  -webkit-transform: translate3d(0, -0.3rem, 0);
  -moz-transform: translate3d(0, -0.3rem, 0);
  transform: translate3d(0, -0.3rem, 0);
}

.business .section2 .swiper-button-prev {
  left: -0.7rem;
}

.business .section2 .swiper-button-next {
  right: -0.7rem;
}

.business .section2 .swiper-slide {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.business .section2 .item {
  width: 18.75%;
  margin-right: 1.5625%;
  min-height: 1.6rem;
  border-radius: 0.15rem;
  margin-bottom: 0.2rem;
  padding: 0.3rem;
  -webkit-clip-path: url(#clip1);
  clip-path: url(#clip1);
  background: rgba(25, 167, 179, 0.15) url(../images/svg/business2.svg) no-repeat;
  -o-background-size: auto 150%;
  background-size: auto 150%;
  background-position: 50% -200%;
  cursor: pointer;
}

.business .section2 .item:hover {
  background-color: #19A7B3;
  background-position: 50% 50%;
}

.business .section2 .item:hover .item-title, .business .section2 .item:hover .item-text, .business .section2 .item:hover .item-text p {
  color: #fff;
}

.business .section2 .item:nth-of-type(5n) {
  margin-right: 0;
}

.business .section2 .item-title {
  line-height: 2;
  text-align: center;
  color: #19A7B3;
  margin-bottom: 0.04rem;
}

.business .section2 .item-text {
  color: #666;
  line-height: 1.7777777778;
  min-height: 3.5555555556em;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.business .section2 .item-text p {
  color: #666;
}

.business .section3.status1 .mask {
  height: 105.4545454545%;
}

.business .section3 .text {
  color: #555;
  text-align: center;
  line-height: 1.625;
  margin-top: 0.4rem;
}

.business .section3 .content-box {
  position: relative;
}

.business .section3 .swiper-button-prev {
  left: -0.7rem;
}

.business .section3 .swiper-button-next {
  right: -0.7rem;
}

.business .section3 .content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.business .section3 .imgs {
  width: 40%;
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.business .section3 .mask {
  position: absolute;
  width: 92.5%;
  left: 7.5%;
  height: 4.6rem;
  top: -0.8rem;
  background-color: #F5FAFA;
  border-radius: 0.8rem;
}

.business .section3 .img-bg1 {
  position: absolute;
  width: 10.625%;
  top: 0.8rem;
  left: -7.5%;
}

.business .section3 .img-bg2 {
  position: absolute;
  width: 5.625%;
  top: 3.8rem;
  right: -1.28rem;
}

.business .section3 .imgs-container {
  position: relative;
}

.business .section3 .imgs-container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #19A7B3;
  opacity: 0.05;
  z-index: 3;
  border-radius: 0.15rem;
}

.business .section3 .img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 0.15rem;
  z-index: 2;
}

.business .section3 .img:first-child {
  position: relative;
}

.business .section3 .img.active {
  opacity: 1;
}

.business .section3 .content-container {
  position: relative;
  padding-bottom: 1.5rem;
  margin-top: 1.2rem;
}

.business .section3 .content-sticky {
  width: 100%;
  top: 0;
  left: 0;
}

.business .section3 .content-container .box {
  height: 100%;
}

.business .section3 .swiper {
  width: 100%;
  margin-left: 0;
}

.business .section3 .swiper-wrapper {
  height: auto;
}

.business .section3 .swiper-slide {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.business .section3 .slide-img {
  position: relative;
  width: 40%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border-radius: 15px;
  margin-right: 5%;
}

.business .section3 .slide-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #19A7B3;
  opacity: 0.05;
  z-index: 2;
}

.business .section3 .slide-info {
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 0;
  margin-right: 5%;
}

.business .section3 .slide-title {
  line-height: 1.5625;
  color: #19A7B3;
  margin-bottom: 0.4rem;
}

.business .section3 .slide-text {
  color: #666;
  line-height: 1.625;
  margin-bottom: 0.66rem;
}

.business .section3 .slide-text span {
  color: #19A7B3;
}

.business .section3 .slide-list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.business .section3 .slide-item {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 0.24rem 0.24rem;
  cursor: pointer;
  border-radius: 0.15rem;
  min-height: 3.25rem;
}

.business .section3 .slide-item:hover {
  background-color: #fff;
  box-shadow: 0px 5px 43.3px 0px rgba(0, 0, 0, 0.08);
}

.business .section3 .slide-item:hover .slide-mask, .business .section3 .slide-item:hover .slide-item-text {
  opacity: 1;
}

.business .section3 .slide-icon {
  display: block;
  width: 2.2222222222em;
  margin: 1.5555555556em auto 1.3888888889em;
}

.business .section3 .slide-icon img:nth-child(1) {
  position: relative;
}

.business .section3 .slide-icon img:not(.slide-mask) {
  z-index: 2;
}

.business .section3 .slide-mask {
  position: absolute;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  width: 3.6666666667em;
  max-width: initial;
  bottom: -0.6666666667em;
  z-index: 1;
  opacity: 0;
}

.business .section3 .slide-item-title {
  line-height: 1.3333333333;
  margin-bottom: 0.21rem;
  text-align: center;
}

.business .section3 .slide-item-text {
  line-height: 1.8571428571;
  color: #666;
  opacity: 0;
}

.business .section3 .slide-list2 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.business .section3 .slide-item2, .business .section3 .slide-item3 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  line-height: 2;
}

.business .section3 .slide-item2 img, .business .section3 .slide-item3 img {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 0.5em;
  opacity: 0.5;
  margin-right: 0.16rem;
  margin-top: 0.6875em;
}

.business .section3 .slide-item2 p, .business .section3 .slide-item3 p {
  color: #666666;
}

.business .section3 .slide-item2 {
  width: 49%;
  margin-bottom: 0.24rem;
}

.business .section3 .slide-item3 {
  width: 100%;
  margin-bottom: 0.08rem;
}

.business .section3 .slide-list3-text {
  line-height: 1.875;
  color: #666;
  margin-bottom: 0.08rem;
}

.business .section4 {
  overflow: hidden;
  padding-bottom: 1.7rem;
}

.business .section4 .my-title {
  margin-bottom: 0.4rem;
}

.business .section4 .swiper {
  padding-bottom: 30px;
  overflow: initial;
}

.business .section4 .swiper-slide {
  background: url(../images/103.webp) no-repeat center center/cover;
  box-shadow: 0px 0.04rem 0.26rem 0px rgba(51, 51, 51, 0.07);
  cursor: pointer;
  border-radius: 0.15rem;
  height: auto;
}

.business .section4 .swiper-slide:hover {
  box-shadow: none;
}

.business .section4 .swiper-slide:hover .slide-mask {
  opacity: 1;
}

.business .section4 .slide-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
  opacity: 0;
}

.business .section4 .slide-icon {
  width: 7.5em;
  margin: 0.45rem auto 0.35rem;
}

.business .section4 .slide-title {
  line-height: 1.5;
  margin-bottom: 0.5rem;
  text-align: center;
  padding: 0 0.2rem;
}

.business .section5 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
}

.business .section5.status1 {
  background-color: #F5FAFA;
}

.business .section5.status1 .bg {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin-top: -1.69rem;
}

.business .section5 .bg {
  display: none;
}

.business .section5 .my-title {
  margin-bottom: 0.4rem;
}

.business .section5 .swipers {
  position: relative;
}

.business .section5 .swiper {
  width: 100%;
  max-width: 1548px;
  padding-bottom: 0.68rem;
}

.business .section5 .slide-img {
  margin-bottom: 0.24rem;
}

.business .section5 .slide-title {
  line-height: 1.8;
}

.business .section5 .swiper-button {
  -webkit-transform: translate3d(0, -0.68rem, 0);
  -moz-transform: translate3d(0, -0.68rem, 0);
  transform: translate3d(0, -0.68rem, 0);
}

.business .section5 .swiper-button-prev {
  left: -0.5rem;
}

.business .section5 .swiper-button-next {
  right: -0.5rem;
}

.business .section6 {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  background: url(../images/120.webp) no-repeat center center/cover;
  position: relative;
}

.business .section6::before, .business .section6::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  height: 1.84rem;
}

.business .section6::before {
  top: 0;
  background: -webkit-linear-gradient(top, #F5FAFA 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(top, #F5FAFA 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(top, #F5FAFA 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, #F5FAFA 0%, rgba(255, 255, 255, 0) 100%);
}

.business .section6::after {
  bottom: 0;
  background: -webkit-linear-gradient(bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.business .section6 .my-title {
  margin-bottom: 0.93rem;
}

.business .section6 .swiper {
  padding-bottom: 0.3rem;
}

.business .section6 .swiper-slide {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.business .section6 .item {
  width: 100%;
  position: relative;
  cursor: pointer;
}

.business .section6 .item:hover .item-img {
  opacity: 1;
}

.business .section6 .item:hover .item-content {
  opacity: 0;
}

.business .section6 .item:nth-of-type(4n) {
  margin-right: 0;
}

.business .section6 .item-img {
  position: relative;
  z-index: 2;
  opacity: 0;
}

.business .section6 .item-img-target {
  width: 94.5454545455%;
  margin: 0 auto;
}

.business .section6 .item-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.business .section6 .item-icon {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 3.1111111111em;
}

.business .section6 .item-info {
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 0.2rem;
}

.business .section6 .item-time {
  line-height: 1.625;
  color: #333;
  margin-bottom: 0.02rem;
  font-family: Arial;
}

.business .section6 .item-title {
  line-height: 1.4444444444;
  color: #333;
}

.business .section7 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.business .section7 .my-title {
  position: relative;
  z-index: 2;
}

.business .section7 .container {
  position: relative;
  margin-top: -0.31rem;
  padding-bottom: 0.8rem;
}

.business .section7 .container .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96.875%;
  height: 6.61rem;
  display: block;
  background-color: #F5FAFA;
  border-radius: 0 3.3rem 3.3rem 0;
}

.business .section7 .content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.business .section7 .left {
  width: 40.625%;
  position: relative;
}

.business .section7 .left::before, .business .section7 .left::after {
  position: absolute;
  content: "";
  background-color: #19A7B3;
  border-radius: 50%;
}

.business .section7 .left::before {
  width: 10.3076923077%;
  height: 10.3076923077%;
  left: 15.3846153846%;
  top: 4.3076923077%;
  z-index: 3;
}

.business .section7 .left::after {
  width: 20.7692307692%;
  height: 20.7692307692%;
  left: 69.8461538462%;
  top: 77.3846153846%;
  opacity: 0.3;
}

.business .section7 .img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.business .section7 .right {
  width: 53%;
  padding-top: 1.71rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.business .section7 .title {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  color: #19A7B3;
  line-height: 1.5625;
  margin-bottom: 0.8rem;
}

.business .section7 .text {
  line-height: 1.625;
  color: #666;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: auto;
}

.business .section7 .text span {
  color: #19A7B3;
}

.business .section7 .bottom {
  padding-top: 0.6rem;
  background-color: #F5FAFA;
  position: relative;
}

.business .section7 .bottom .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border-radius: 1.62rem 0 0 0;
}

.business .section7 .bottom-title {
  text-align: center;
  color: #19A7B3;
  line-height: 1.6;
  margin-bottom: 0.63rem;
}

.business .section7 .swiper {
  overflow: initial;
}

.business .section7 .swiper-slide {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 0.24rem 0.24rem;
  cursor: pointer;
  border-radius: 0.15rem;
  min-height: 2.6rem;
}

.business .section7 .swiper-slide::before {
  position: absolute;
  content: "";
  width: 1px;
  right: 0;
  top: 0.55em;
  height: 6.9em;
  background: -webkit-linear-gradient(top, rgba(153, 153, 153, 0), rgba(153, 153, 153, 0.5490196078), rgba(153, 153, 153, 0.5490196078), rgba(153, 153, 153, 0));
  background: -moz-linear-gradient(top, rgba(153, 153, 153, 0), rgba(153, 153, 153, 0.5490196078), rgba(153, 153, 153, 0.5490196078), rgba(153, 153, 153, 0));
  background: -o-linear-gradient(top, rgba(153, 153, 153, 0), rgba(153, 153, 153, 0.5490196078), rgba(153, 153, 153, 0.5490196078), rgba(153, 153, 153, 0));
  background: linear-gradient(to bottom, rgba(153, 153, 153, 0), rgba(153, 153, 153, 0.5490196078), rgba(153, 153, 153, 0.5490196078), rgba(153, 153, 153, 0));
}

.business .section7 .swiper-slide:last-child::before {
  display: none;
}

.business .section7 .swiper-slide:hover {
  background-color: #fff;
  box-shadow: 0px 5px 43.3px 0px rgba(0, 0, 0, 0.08);
}

.business .section7 .swiper-slide:hover::before {
  opacity: 0;
}

.business .section7 .swiper-slide:hover .slide-mask, .business .section7 .swiper-slide:hover .slide-text {
  opacity: 1;
}

.business .section7 .slide-icon {
  display: block;
  width: 2em;
  margin: 1.4em auto 1.2em;
}

.business .section7 .slide-icon img:nth-child(1) {
  position: relative;
}

.business .section7 .slide-icon img:not(.slide-mask) {
  z-index: 2;
}

.business .section7 .slide-mask {
  position: absolute;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  width: 3.3em;
  max-width: initial;
  bottom: -0.6em;
  z-index: 1;
  opacity: 0;
}

.business .section7 .slide-title {
  line-height: 1.3;
  margin-bottom: 0.2rem;
  text-align: center;
}

.business .section7 .slide-text {
  line-height: 1.8571428571;
  color: #666;
  opacity: 0;
}

.business5 .section1 .text {
  width: 10rem;
}

.business5 .section3 .slide-title {
  margin-bottom: 0.8rem;
}

.business6 .section3 .slide-title {
  margin-bottom: 0.8rem;
}

.case .section1 {
  background: url(../images/53.webp) no-repeat top center/cover;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.case .section1 .my-title {
  margin-bottom: 0.4rem;
}

.case .section1 .screen {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.case .section1 .input {
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1px solid #000000;
}

.case .section1 .input .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.625em;
}

.case .section1 .input input {
  font-size: inherit;
  line-height: 2;
  width: 20em;
  outline: none;
  border: none;
  background-color: transparent;
}

.case .section1 .groui-select {
  margin-right: 0.4rem;
  width: auto;
  background-color: transparent;
}

.case .section1 .groui-select .select-container {
  padding: 0;
  border: 0;
  padding-bottom: 3px;
  border-radius: 0;
  border-bottom: 1px solid #000000;
}

.case .section1 .groui-select .select-container .select-label-input {
  font-size: inherit;
  line-height: 2;
  width: 15em;
  background-color: transparent;
  outline: none;
  border: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.case .section1 .groui-select .select-icon {
  right: 0;
}

.case .section1 .groui-select .select-container .select-icon {
  width: 1em;
}

.case .section1 .groui-select .select-container .select-icon img {
  width: 100%;
}

.case .section1 .groui-select .select-options {
  min-width: 100%;
  padding: 0.08rem 0.04rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.case .section1 .groui-select .select-options .select-option {
  text-align: center;
  font-size: inherit;
  color: #666666;
}

.case .section1 .groui-select .select-options .select-option:hover, .case .section1 .groui-select .select-options .select-option.select-option-active {
  color: #fff;
}

.case .section1 .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.1rem;
}

.case .section1 .list::after {
  position: relative;
  content: "";
  width: 31.25%;
  height: 0;
}

.case .section1 .item {
  width: 31.25%;
  margin-bottom: 0.5rem;
}

.case .section1 .item:hover .item-img {
  border-radius: 0 1.5rem 0 1.5rem;
}

.case .section1 .item:hover .item-title {
  color: #19A7B3;
}

.case .section1 .item-img {
  margin-bottom: 0.24rem;
}

.case .section1 .item-title {
  line-height: 1.8;
}

.case .section1 .item-text {
  line-height: 2.5714285714;
  color: #666666;
}

.case-detail .section1 {
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
}

.case-detail .section1 .box {
  max-width: 1200px;
}

.case-detail .section1 .title {
  line-height: 1.3125;
  text-align: center;
  margin-bottom: 0.24rem;
}

.case-detail .section1 .infos {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.24rem;
}

.case-detail .section1 .info {
  margin: 0 0.24rem;
  color: #999999;
  line-height: 1.75;
}

.case-detail .section1 .info img {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  margin-right: 0.08rem;
}

.case-detail .section1 .content {
  line-height: normal;
  padding: 0.36rem 0;
  border-top: 1px dashed #D9D9D9;
  border-bottom: 1px dashed #D9D9D9;
}

.case-detail .section1 .content-link{
    font-size: 16px;
    color: #999;
    margin-top: 40px;
    line-height: 22px;
}
.case-detail .section1 .content-link:hover{
    text-decoration: underline;
}

.case-detail .section1 .content-link img{
    display: inline-block;
    width: 16px;
    transform: translate3d(0, 2px, 0);
    margin-right: 3px;
}

.case-detail .section1 .content img {
  display: inline-block;
}

.case-detail .section1 .bottom {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.36rem;
}

.case-detail .section1 .list {
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 0;
  padding-right: 20px;
}

.case-detail .section1 .item {
  display: block;
  line-height: 1.75;
  color: #212121;
  padding-left: 1.5625em;
  position: relative;
}

.case-detail .section1 .item::before {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #D9D9D9;
  left: 0;
  top: 0.625em;
}

.case-detail .section1 .item + .item {
  margin-top: 0.12rem;
}

.case-detail .section1 .item:hover {
  color: #19A7B3;
}

.case-detail .section1 .item:hover::before {
  background-color: #19A7B3;
}

.case-detail .section1 .my-more {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(25, 167, 179, 0.2);
}

.style .section1, .news .section1 {
  padding-top: 1rem;
  padding-bottom: 1.2rem;
  background: url(../images/66.webp) no-repeat center top/cover;
}

.style .section1 .list, .news .section1 .list {
  margin-bottom: 0.4rem;
}

.style .section1 .item, .news .section1 .item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.24rem 0.24rem 0.24rem 0.4rem;
  background-position: 6.25% 90%;
  background-repeat: no-repeat;
  -o-background-size: 15.1875% auto;
  background-size: 15.1875% auto;
  border-radius: 0.15rem;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}

.style .section1 .item:hover, .news .section1 .item:hover {
  background-color: #19A7B3;
  background-image: url(../images/svg/style1.svg);
  box-shadow: 0px 8px 30px 6px rgba(25, 167, 179, 0.3);
}

.style .section1 .item:hover .item-time, .style .section1 .item:hover .item-time span, .style .section1 .item:hover .item-title, .style .section1 .item:hover .item-text, .style .section1 .item:hover .item-more, .news .section1 .item:hover .item-time, .news .section1 .item:hover .item-time span, .news .section1 .item:hover .item-title, .news .section1 .item:hover .item-text, .news .section1 .item:hover .item-more {
  color: #fff;
}

.style .section1 .item:hover .item-time, .news .section1 .item:hover .item-time {
  border-color: #fff;
}

.style .section1 .item:hover .item-more img, .news .section1 .item:hover .item-more img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.style .section1 .item-time, .news .section1 .item-time {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  padding-top: 0.12rem;
  border-top: 2px solid #19A7B3;
  color: #999;
  margin-top: 0.39rem;
}

.style .section1 .item-time span, .news .section1 .item-time span {
  color: #19A7B3;
}

.style .section1 .item-info, .news .section1 .item-info {
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 0;
  padding: 0.3rem 0.8rem 0.1rem 0.4rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.style .section1 .item-title, .news .section1 .item-title {
  line-height: 1.5;
}

.style .section1 .item-text, .news .section1 .item-text {
  line-height: 1.75;
  color: #666;
}

.style .section1 .item-more, .news .section1 .item-more {
  color: #19A7B3;
  line-height: 1.375;
}

.style .section1 .item-more img, .news .section1 .item-more img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.06rem;
}

.style .section1 .item-img, .news .section1 .item-img {
  width: 4.1rem;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.style .section1 .item-img img, .news .section1 .item-img img {
  width: 100%;
}

.news .section1 .my-title {
  margin-bottom: 0.4rem;
}

.information .section1 {
  background: url(../images/66.webp) no-repeat center top/cover;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
}

.information .section1 .my-title {
  margin-bottom: 0.4rem;
}

.information .section1 .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.information .section1 .item {
  width: 48.75%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.4rem;
  background-position: 11% 42px;
  background-repeat: no-repeat;
  -o-background-size: 31.1538461538% auto;
  background-size: 31.1538461538% auto;
  border-radius: 0.15rem;
}

.information .section1 .item:hover {
  background-color: #19A7B3;
  box-shadow: 0px 8px 30px 6px rgba(25, 167, 179, 0.3);
  background-image: url(../images/svg/style1.svg);
}

.information .section1 .item:hover .item-time, .information .section1 .item:hover .item-time span, .information .section1 .item:hover .item-title, .information .section1 .item:hover .item-text, .information .section1 .item:hover .item-text1 {
  color: #fff;
}

.information .section1 .item:hover .item-time {
  border-color: #fff;
}

.information .section1 .item:hover .item-text img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.information .section1 .item-time {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  padding-top: 0.12rem;
  border-top: 2px solid #19A7B3;
  color: #999;
}

.information .section1 .item-time span {
  color: #19A7B3;
}

.information .section1 .item-info {
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 0;
  padding-left: 0.4rem;
}

.information .section1 .item-title {
  line-height: 1.75;
  margin-bottom: 0.24rem;
  color: #333;
}

.information .section1 .item-text {
  line-height: 1.7142857143;
  color: #666666;
}

.information .section1 .item-text + .item-text {
  margin-top: 0.1rem;
}

.information .section1 .item-text img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.1rem;
}

.information .section1 .item-text1 {
  line-height: 2;
  margin-top: 0.1rem;
  color: #333;
}

.contact .section1 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: url(../images/146.webp) no-repeat center bottom/cover;
  overflow: hidden;
}

.contact .section1 .my-title {
  margin-bottom: 0.4rem;
}

.contact .section1 .swipers {
  position: relative;
}

.contact .section1 .swiper-button-prev {
  left: -0.5rem;
}

.contact .section1 .swiper-button-next {
  right: -0.5rem;
}

.contact .section1 .swiper {
  overflow: initial;
}

.contact .section1 .swiper-slide {
  width: 23.75%;
  background-color: #fff;
  border-radius: 0.15rem;
  box-shadow: 0px 5px 43.3px 0px rgba(0, 0, 0, 0.08);
  padding: 0.66rem 0.4rem 0.4rem 0.4rem;
  min-height: 4.6rem;
  height: auto;
}

.contact .section1 .swiper-slide:hover {
  background-color: #19A7B3;
  box-shadow: none;
}

.contact .section1 .swiper-slide:hover .slide-title {
  color: #fff;
}

.contact .section1 .swiper-slide:hover .slide-text {
  color: #fff;
}

.contact .section1 .swiper-slide:hover .slide-text a {
  color: #fff;
}

.contact .section1 .swiper-slide:hover .slide-more {
  color: #fff;
}

.contact .section1 .slide-icon {
  width: 5em;
  margin-bottom: 0.4rem;
}

.contact .section1 .slide-title {
  line-height: 1.3;
  margin-bottom: 0.32rem;
}

.contact .section1 .slide-text {
  line-height: 1.875;
  color: #666;
}

.contact .section1 .slide-text.tel {
  position: relative;
  z-index: 2;
}

.contact .section1 .slide-text a {
  color: #19A7B3;
  font-family: Arial;
}

.contact .section1 .slide-text a:hover {
  text-decoration: underline;
}

.contact .section1 .slide-more {
  color: #19A7B3;
  line-height: 1.375;
  margin-top: 0.33rem;
}

.contact .section1 .slide-more span {
  width: 1.375em;
  margin-left: 0.06rem;
  display: inline-block;
  vertical-align: bottom;
}

.contact .section1 .more-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.contact .section1 .swiper-pagination {
  display: none;
}

.contact .section2 {
  padding-top: 1.2rem;
  padding-bottom: 0.9rem;
  background-color: #FAFAFA;
}

.contact .section2 .my-title {
  margin-bottom: 0.4rem;
}

.contact .section2 .list {
  margin-bottom: 0.6rem;
}

.contact .section2 .item {
  padding: 0 0.5rem;
  border: 1px solid #EAEEF1;
  background-color: #fff;
}

.contact .section2 .item + .item {
  margin-top: 0.37rem;
}

.contact .section2 .item.active .item-top {
  border-bottom: 1px solid rgba(201, 201, 201, 0.3);
}

.contact .section2 .item.active .item-title {
  color: #19A7B3;
}

.contact .section2 .item.active .item-title::before {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.contact .section2 .item.active .item-btn span {
  color: #19A7B3;
}

.contact .section2 .item.active .item-icon img:nth-child(1) {
  opacity: 0;
}

.contact .section2 .item.active .item-icon img:nth-child(2) {
  opacity: 1;
}

.contact .section2 .item-top {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 0.24rem 0 0.28rem;
}

.contact .section2 .item-info {
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.contact .section2 .item-title {
  line-height: 1.5;
  margin-bottom: 0.08rem;
  position: relative;
}

.contact .section2 .item-title::before {
  position: absolute;
  content: "";
  left: -0.5rem;
  width: 0.06rem;
  height: 1em;
  top: 0.25em;
  background-color: #19A7B3;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
}

.contact .section2 .item-text {
  color: #666;
  line-height: 1.5;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact .section2 .item-text s {
  display: block;
  height: 1em;
  width: 1px;
  background-color: #666666;
  margin: 0 0.16rem;
}

.contact .section2 .item-text span + span {
  margin-left: 0.6rem;
}

.contact .section2 .item-btn {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0.1rem;
}

.contact .section2 .item-btn span {
  color: #93979A;
}

.contact .section2 .item-icon {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 1.5em;
  margin-left: 0.16rem;
  position: relative;
}

.contact .section2 .item-icon img:nth-child(2) {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}

.contact .section2 .item-bottom {
  padding: 0.4rem 0 0.4rem;
  display: none;
}

.contact .section2 .item-bottom-ul {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(201, 201, 201, 0.3);
}

.contact .section2 .item-bottom-ul s {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin: 0 1.23rem;
  border-left: 1px dashed rgba(201, 201, 201, 0.3);
}

.contact .section2 .item-bottom-li {
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.contact .section2 .item-bottom-title {
  line-height: 1.5;
  margin-bottom: 0.24rem;
  color: #2F3034;
}

.contact .section2 .item-bottom-text {
  line-height: 1.55;
  color: #666666;
}

.contact .section2 .item-bottom-text p + p {
  margin-top: 0.1rem;
}

.contact .section2 .item-tel {
  color: #666666;
  margin-top: 0.34rem;
  line-height: 1.3125;
}

.contact .section2 .item-tel img {
  display: inline-block;
  vertical-align: middle;
  width: 1.3125em;
  margin-right: 0.13rem;
}

.contact .section2 .item-tel a {
  color: #19A7B3;
  margin-left: 0.16rem;
}

.contact .section2 .item-tel a:hover {
  text-decoration: underline;
}

.contact .section3 {
  padding-top: 0.8rem;
}

.contact .section3 .my-title {
  margin-bottom: 0.44rem;
}

.contact .section3 .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 0.26rem;
}

.contact .section3 .list s {
  display: block;
  width: 1px;
  height: 1.7916666667em;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.contact .section3 .item {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.25;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact .section3 .item img {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 2.0833333333em;
  margin-right: 0.24rem;
  margin-top: -0.4166666667em;
}

.contact .section3 .item:first-child {
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-family: Arial;
}

.contact .section3 .item a:hover {
  color: #19A7B3;
  text-decoration: underline;
}

.contact-detail .section1 {
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
}

.contact-detail .section1 .box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-detail .section1 .img {
  width: 25%;
  border-radius: 0 1.5rem 0 1.5rem;
}

.contact-detail .section1 .info {
  width: 68.75%;
  padding-top: 0.08rem;
}

.contact-detail .section1 .title {
  line-height: 1.3125;
  margin-bottom: 0.4rem;
}

.contact-detail .section1 .text {
  line-height: 2;
  color: #666;
  margin-bottom: 0.4rem;
}

.contact-detail .section1 .tip {
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.contact-detail .section1 .tel a {
  color: #19A7B3;
}

.contact-detail .section1 .tel a:hover {
  text-decoration: underline;
}

.contact-detail .section1 .icon {
  position: absolute;
  width: 22.5%;
  right: 0;
  bottom: -0.6rem;
  opacity: 0.05;
}

.contact-detail .section2 {
  padding-top: 0.8rem;
  padding-bottom: 0.7rem;
  background-color: #F5FAFA;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.contact-detail .section2 .bg {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-detail .section2 .my-title {
  margin-bottom: 0.4rem;
}

.contact-detail .section2 .swipers {
  position: relative;
}

.contact-detail .section2 .swiper {
  width: 100%;
  max-width: 1552px;
  padding-bottom: 0.7rem;
}

.contact-detail .section2 .swiper-slide {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-detail .section2 .item {
  width: 22.5515463918%;
  margin-right: 1.0309278351%;
  height: 3rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  cursor: pointer;
}

.contact-detail .section2 .item:last-child {
  margin-right: 0;
}

.contact-detail .section2 .item.active {
  width: 52.8350515464%;
}

/*.contact-detail .section2 .item.active .item-left {*/
/*  width: 42.6829268293%;*/
/*}*/
.contact-detail .section2 .item.active .item-content {
  -webkit-transform: translate3d(0, 50%, 0);
  -moz-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
}

.contact-detail .section2 .item-left {
  width: 100%;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  position: relative;
  border-radius: 0.15rem;
  overflow: hidden;
}

.contact-detail .section2 .item-img {
  position: relative;
}

.contact-detail .section2 .item-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #19A7B3;
  opacity: 0.05;
}

.contact-detail .section2 .item-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #fff;
  line-height: 1.5;
  padding-bottom: 0.1rem;
  padding-left: 0.18rem;
  padding-right: 0.18rem;
}

.contact-detail .section2 .item-content p {
  position: relative;
}

.contact-detail .section2 .item-content::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.6rem;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.contact-detail .section2 .item-right {
  width: 100%;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background-color: #fff;
  padding: 0.5rem 0.4rem 0.3rem;
  border-radius: 0 1.2rem 0.15rem 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-detail .section2 .item-title {
  line-height: 1.5;
  color: #19A7B3;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-bottom: 0.34rem;
}

.contact-detail .section2 .item-text {
  color: #666666;
  line-height: 2;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: auto;
}

.contact-detail .section2 .swiper-button {
  -webkit-transform: translate3d(0, -0.7rem, 0);
  -moz-transform: translate3d(0, -0.7rem, 0);
  transform: translate3d(0, -0.7rem, 0);
  margin-top: 0;
}

.contact-detail .section2 .swiper-button-prev {
  left: -0.5rem;
}

.contact-detail .section2 .swiper-button-next {
  right: -0.5rem;
}

.contact-detail .section3 {
  padding-top: 0.7rem;
  padding-bottom: 1.2rem;
  background-color: #F5FAFA;
}

.contact-detail .section3 .my-title {
  margin-bottom: 0.4rem;
}

.contact-detail .section3 .content {
  height: 4rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-detail .section3 .img {
  width: 43.75%;
  border-radius: 0.14rem;
}

.contact-detail .section3 .info {
  height: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 48.125%;
}

.contact-detail .section3 .title {
  line-height: 1.5625;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(113, 200, 207, 0.3);
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  position: relative;
  margin-bottom: 0.4rem;
}

.contact-detail .section3 .title::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 2.5em;
  background-color: #19A7B3;
  height: 1px;
}

.contact-detail .section3 .text {
  line-height: 2;
  color: #666;
  overflow: auto;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  padding-right: 10px;
}

.search .section1 .box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #D9D9D9;
}

.search .section1 .box .title {
  line-height: 1.2083333333;
}

.search .section1 .box .input {
  position: relative;
}

.search .section1 .box .input input {
  width: 5.4rem;
  border: 1px solid #19A7B3;
  border-radius: 75px;
  line-height: 3;
  padding-left: 0.24rem;
  padding-right: 4.375em;
}

.search .section1 .box .input input::-webkit-input-placeholder {
  color: #999;
}

.search .section1 .box .input input:-moz-placeholder {
  color: #999;
}

.search .section1 .box .input input::-moz-placeholder {
  color: #999;
}

.search .section1 .box .input input:-ms-input-placeholder {
  color: #999;
}

.search .section1 .box .input input::placeholder {
  color: #999;
}

.search .section1 .box .icon {
  width: 3.375em;
  height: 2.375em;
  background-color: #19A7B3;
  border-radius: 75px;
  position: absolute;
  top: 0.3125em;
  right: 0.3125em;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.search .section1 .box .icon img {
  width: 1.25em;
}

.search .section1 .box .icon:hover {
  background-color: #47B8C2;
}

.search .section2 {
  padding-top: 0.4rem;
  padding-bottom: 1.2rem;
}

.search .section2 .title {
  line-height: 1.9444444444;
}

.search .section2 .title span {
  color: #19A7B3;
}

.search .section2 .list {
  margin-bottom: 0.5rem;
}

.search .section2 .item {
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed #D9D9D9;
  margin-top: 0.4rem;
  display: block;
}

.search .section2 .item:hover .item-title {
  color: #19A7B3;
}

.search .section2 .item-time {
  line-height: 1.75;
  color: #19A7B3;
  font-family: Arial;
  margin-bottom: 0.08rem;
}

.search .section2 .item-time img {
  display: inline-block;
  vertical-align: baseline;
  margin-right: 0.08rem;
  width: 0.875em;
}

.search .section2 .item-title {
  line-height: 1.75;
  margin-bottom: 0.16rem;
}

.search .section2 .item-title span {
  color: #19A7B3;
}

.search .section2 .item-text {
  color: #666;
  line-height: 1.9;
}

.search .section2 .item-text span {
  color: #19A7B3;
}

.my-active1 {
  width: 0.7rem;
  height: 0.7rem;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 5vh;
  right: 0.8rem;
  z-index: 900;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  -webkit-animation: ani1 1.25s infinite cubic-bezier(0.24, 0, 0.38, 1);
  -moz-animation: ani1 1.25s infinite cubic-bezier(0.24, 0, 0.38, 1);
  -o-animation: ani1 1.25s infinite cubic-bezier(0.24, 0, 0.38, 1);
  animation: ani1 1.25s infinite cubic-bezier(0.24, 0, 0.38, 1);
}

.my-active1:hover {
  background-color: #19A7B3;
  opacity: 1;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.my-active1 span {
  width: 40%;
}

.liuyan_tanchuang {
  position: fixed;
  width: 90%;
  max-width: 400px;
  display: none;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2010;
  border-radius: 2px;
  background: #000;
}

.liuyan_tanchuang .lox {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  color: #fff;
  line-height: 24px;
}

.liuyan_tanchuang .ico {
  width: 24px;
}

.liuyan_tanchuang .out {
  width: 20px;
  cursor: pointer;
  margin-top: 2px;
}

.liuyan_tanchuang .wz {
  width: -webkit-calc(100% - 48px);
  width: -moz-calc(100% - 48px);
  width: calc(100% - 48px);
  padding: 0 10px;
}

#form-modal .modal-main {
  background-color: #19A7B3;
  border-radius: 8px;
}

#form-modal .modal-close {
  width: 22px;
  top: 29px;
  right: 29px;
  cursor: pointer;
}

#form-modal .container {
  width: 800px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 8px 220px 8px 8px;
  padding: 0.74rem 0.9rem 0.8rem;
}

#form-modal .title {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.44rem;
}

#form-modal .form-item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#form-modal .form-item.code .form-input {
  padding-right: 9.0625em;
}

#form-modal .form-item.active .form-textarea, #form-modal .form-item.active .form-input {
  border-color: #D8261C;
}

#form-modal .form-item.active .form-error {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#form-modal .form-item.xy {
  font-size: 14px;
}

#form-modal .form-item.xy .form-checkbox {
  margin-right: 7px;
  position: relative;
}

#form-modal .form-item.xy .form-checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  border-radius: 2px;
  z-index: 2;
  cursor: pointer;
}

#form-modal .form-item.xy .form-checkbox input:checked + .form-checked {
  border-color: #1C45D8;
  background-color: #1C45D8;
}

#form-modal .form-item.xy .form-checkbox input:checked + .form-checked::after {
  opacity: 1;
}

#form-modal .form-item.xy .form-checked {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.06);
  border: solid 1px #404040;
  overflow: hidden;
  border-radius: 2px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

#form-modal .form-item.xy .form-checked::after {
  position: relative;
  content: "✔";
  color: #fff;
  font-size: 14px;
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  -o-transform: scale(0.1);
  transform: scale(0.1);
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

#form-modal .form-item.xy label {
  cursor: pointer;
  color: #404040;
}

#form-modal .form-item.xy a {
  color: #1C45D8;
}

#form-modal .form-item.xy a:hover {
  color: #19A7B3;
}

#form-modal .form-item.btns {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

#form-modal .form-label {
  width: 5em;
  margin-right: 0.2rem;
  line-height: 2.5;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

#form-modal .form-label::before {
  position: relative;
  content: "*";
  color: #FF0000;
  margin-right: 0.375em;
  opacity: 0;
}

#form-modal .form-label.required::before {
  opacity: 1;
}

#form-modal .form-content {
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

#form-modal .form-textarea, #form-modal .form-input {
  width: 100%;
  line-height: 2.375;
  border: 1px solid #D7D8DB;
  border-radius: 2px;
  padding: 0 0.2rem;
}

#form-modal .form-textarea:focus, #form-modal .form-input:focus {
  border-color: #19A7B3;
}

#form-modal .form-textarea {
  font-family: "微软雅黑";
  height: 108px;
}

#form-modal .form-error {
  position: absolute;
  left: 0;
  top: 100%;
  font-size: 12px;
  line-height: 18px;
  color: #ff0000;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

#form-modal .code-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 2.5em;
  cursor: pointer;
}

#form-modal .form-btn {
  display: inline-block;
  line-height: 3.5;
  background-color: #19A7B3;
  border-radius: 56px;
  padding: 0 1.74rem;
  color: #fff;
  cursor: pointer;
  margin: 0 auto;
}

#form-modal .form-btn:hover {
  background-color: #47B8C2;
}

@media (max-width: 1440px) {
  .index .section3 .list {
    font-size: 14px;
  }
  .index .section3 .item-title {
    font-size: 14px;
  }
  .business .my-nav .box > s {
    margin: 0 0.4rem;
  }
  #form-modal .container {
    width: 600px;
    padding-bottom: 0.7rem;
  }
}
@media (max-width: 1300px) {
  .index .section3 .list {
    font-size: 12px;
  }
  .index .section3 .item-title {
    font-size: 12px;
  }
}
@media (max-width: 1050px) {
  .a_dw {
    top: -50px;
  }
  .my-banner .content {
    padding-top: 0;
  }
  .mhead {
    position: relative;
  }
  header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .index .section2 .list {
    padding-left: 0;
  }
  .footer .top .nav {
    display: none;
  }
  .footer .top .left {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .footer .top .input {
    width: 250px;
    margin: 0 auto 0.24rem;
  }
  .footer .top .links, .footer .top .codes {
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer .top .link {
    margin: 0 0.18rem 0.11rem;
  }
  .footer .bottom .box {
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .footer .bottom .left {
    margin-bottom: 20px;
  }
  .footer .bottom .right {
    width: 100%;
    margin-left: 0;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .footer .bottom .infos {
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer .bottom .info {
    margin: 5px 0;
  }
  .footer .bottom .links {
    margin-top: 10px;
  }
  .footer .bottom .link {
    margin: 0 0.1rem 0.1rem;
  }
  .footer .bottom .link + .link {
    margin-left: 0.1rem;
  }
  .index .section3 {
    height: auto;
  }
  .index .section3 .section-sticky {
    height: auto;
  }
  .index .section3 .content2 {
    display: none;
  }
  .index .section3 .content {
    height: auto;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    opacity: 1;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .index .section3 .list {
    margin-top: 20px;
    position: relative;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .index .section3 .item {
    position: relative;
    left: auto !important;
    top: auto !important;
    margin-bottom: 20px;
    width: 30% !important;
  }
  .index .section3 .item:hover .item-title {
    bottom: auto;
  }
  .index .section3 .item-title {
    position: relative;
    bottom: auto;
    color: #19A7B3;
    margin-top: 10px;
    font-size: 14px;
  }
  .index .section3 .info {
    position: relative;
  }
  .about .section3 {
    height: auto;
  }
  .about .section3 .container {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .about .section3 .my-title {
    margin-bottom: 25px;
  }
  .about .section3 .swiper {
    padding-bottom: 30px;
  }
  .about .section3 .swiper-slide {
    width: 5.92rem;
  }
  .about .section3 .swiper-slide-last {
    display: none;
  }
  .about .section3 .swiper-slide .slide-img {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 0;
  }
  .about .section3 .swiper-slide .slide-year {
    margin-left: 0;
    margin-bottom: 20px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .about .section3 .swiper-slide .slide-text {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .about .section3 .swiper-pagination {
    display: block;
  }
  .business .section2.status1 .item {
    width: 32%;
    margin-right: 0;
  }
  .business .section2.status1 .item:nth-of-type(5n) {
    margin-right: 0;
  }
  .business .section2.status1.status2.status3 .swiper-slide {
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .business .section2.status1.status2.status3 .item {
    margin-left: 0;
    margin-right: 0;
  }
  .business .section2 .swiper-slide {
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .business .section2 .swiper-slide::after {
    position: relative;
    content: "";
    width: 32%;
    height: 0;
  }
  .business .section2 .item {
    width: 32%;
    margin-right: 0;
  }
  .business .section3 .slide-list {
    overflow: auto;
    padding-top: 0.8333333333em;
    margin-top: -0.8333333333em;
    padding-bottom: 5px;
  }
  .business .section3 .slide-list::-webkit-scrollbar {
    height: 3px;
  }
  .business .section3 .slide-list::-webkit-scrollbar-thumb {
    background-color: #19A7B3;
  }
  .business .section3 .slide-item {
    min-width: 150px;
  }
  .business .section7 .container .bg {
    height: 6rem;
  }
  .business .section7 .right {
    padding-top: 1rem;
  }
}
@media (max-width: 770px) {
  .padding50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .my-modal .modal-main {
    width: 100%;
  }
  .my-modal .modal-close {
    right: 0;
    top: -33px;
  }
  .my-banner .banner-img1 {
    display: none;
  }
  .my-banner .banner-img2 {
    display: block;
  }
  .my-nav {
    display: none;
  }
  .index .section1 .slide-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
  }
  .index .section1 .slide-video-target {
    display: none;
  }
  .index .section1 .slide-video-icon {
    display: block;
  }
  .index .section1 .swiper-slide {
    padding-top: 126.6666666667%;
  }
  .index .section1 .slide-img1 {
    display: none;
  }
  .index .section1 .slide-img2 {
    display: block;
  }
  .index .section1 .slide-img3 {
    display: none;
  }
  .index .section1 .slide-title, .index .section1 .my-more {
    -webkit-animation-name: none !important;
    -moz-animation-name: none !important;
    -o-animation-name: none !important;
    animation-name: none !important;
  }
  .index .section1 .swiper-button {
    display: none;
  }
  .index .section2 {
    position: relative;
    min-height: auto;
  }
  .index .section2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.3;
  }
  .index .section2 .list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .index .section2 .item {
    width: 50%;
    margin-bottom: 20px;
  }
  .index .section3 .item {
    width: 32% !important;
  }
  .index .section4 .slide-time {
    margin-bottom: 0;
  }
  .index .section4 .slide-more {
    display: none;
  }
  .index .section5 .item {
    width: 120px;
  }
  .index .section5 .lists::before, .index .section5 .lists::after {
    width: 100px;
  }
  .about .section1 .content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }
  .about .section1 .info {
    width: 100%;
    margin-bottom: 20px;
    padding-top: 0;
  }
  .about .section1 .right {
    width: 100%;
  }
  .about .section1 .img {
    height: auto;
    margin-bottom: 20px;
  }
  .about .section1 .img img {
    height: auto;
  }
  .about .section1 .list {
    position: relative;
    left: 0;
    width: 100%;
  }
  .about .section3 .swiper {
    overflow: hidden;
  }
  .about .section3 .slide-year {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .about .section3 .slide-text {
    font-size: 16px;
  }
  .about .section4 .swipers {
    position: relative;
    padding-bottom: 30px;
  }
  .about .section4 .slide-top {
    margin-top: 60px;
  }
  .about .section4 .swiper-slide {
    height: 280px;
  }
  .about .section4 .swiper-slide + .swiper-slide {
    border-left: none;
  }
  .about .section5 {
    min-height: initial;
    background-image: none;
  }
  .about .section5 .swiper {
    padding-bottom: 20px;
  }
  .about .section5 .swiper-button {
    display: none;
  }
  .about .section5 .swiper-slide {
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .about .section5 .item {
    width: 49%;
    margin-right: 0;
  }
  .about .section5 .item-content {
    opacity: 0;
  }
  .about .section5 .item-img {
    opacity: 1;
  }
  .about .section5 .item-img-target {
    width: 100%;
  }
  .my-swiper-button .swiper-button {
    display: none;
  }
  .business .section1 .content {
    padding-bottom: 14%;
  }
  .business .section1 .icon {
    width: 90px;
  }
  .business .section2.status1 .bg {
    margin-top: -50px;
  }
  .business .section2.status1 .item {
    width: 49%;
  }
  .business .section2 .swiper-slide {
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .business .section2 .swiper-slide::after {
    display: none;
  }
  .business .section2 .item {
    width: 49%;
    margin-right: 0;
  }
  .business .section3 {
    overflow: hidden;
    padding-bottom: 50px;
  }
  .business .section3 .my-title {
    margin-bottom: 20px;
  }
  .business .section3 .content-container {
    height: auto;
  }
  .business .section3 .content-sticky {
    height: auto;
  }
  .business .section3 .imgs {
    height: auto;
  }
  .business .section3 .content {
    padding-top: 0;
    height: auto;
  }
  .business .section3 .text {
    margin-bottom: 20px;
  }
  .business .section3 .imgs {
    display: none;
  }
  .business .section3 .list {
    width: 100%;
    margin-right: 0;
    height: auto;
  }
  .business .section3 .img-bg1, .business .section3 .img-bg2, .business .section3 .mask {
    display: none;
  }
  .business .section3 .swiper-wrapper {
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  .business .section3 .swiper-slide {
    height: auto;
    padding-top: 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .business .section3 .swiper-slide + .swiper-slide {
    margin-top: 20px;
  }
  .business .section3 .slide-img {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .business .section3 .slide-item {
    background-color: #fff;
    box-shadow: 0px 0.05rem 0.433rem 0px rgba(0, 0, 0, 0.08);
  }
  .business .section3 .slide-item .slide-mask, .business .section3 .slide-item .slide-item-text {
    opacity: 1;
  }
  .business .section3 .slide-item + .slide-item {
    margin-left: 10px;
  }
  .business .section4 .swiper-slide {
    width: 255px;
  }
  .business .section5 {
    padding-bottom: 50px;
  }
  .business .section6 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .business .section6 .swiper {
    padding-bottom: 30px;
  }
  .business .section6 .item-content {
    opacity: 0;
  }
  .business .section6 .item-img {
    opacity: 1;
  }
  .business .section6 .item-img-target {
    width: 100%;
  }
  .business .section7 {
    overflow: hidden;
  }
  .business .section7 .content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .business .section7 .container {
    margin-top: 20px;
  }
  .business .section7 .swiper {
    padding-bottom: 30px;
  }
  .business .section7 .swiper-slide {
    -webkit-flex: initial;
    -moz-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    min-height: initial;
    -ms-flex-negative: 0;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    background-color: #fff;
    box-shadow: 0px 0.05rem 0.433rem 0px rgba(0, 0, 0, 0.08);
  }
  .business .section7 .swiper-slide::before {
    display: none;
  }
  .business .section7 .swiper-slide .slide-mask, .business .section7 .swiper-slide .slide-text {
    opacity: 1;
  }
  .business .section7 .left {
    width: 100%;
  }
  .business .section7 .right {
    position: relative;
    width: 100%;
    padding-top: 20px;
  }
  .business5 .section3 .slide-title, .business6 .section3 .slide-title {
    margin-bottom: 20px;
  }
  .case .section1 .screen {
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .case .section1 .groui-select {
    width: 32%;
    margin-right: 10px;
  }
  .case .section1 .groui-select .select-container .select-label-input {
    width: 100%;
  }
  .case .section1 .input {
    width: 32%;
  }
  .case .section1 .input input {
    width: 100%;
  }
  .case .section1 .item {
    width: 100%;
  }
  .case-detail .my-active2 {
    display: none;
  }
  .case-detail .section1 .bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .case-detail .section1 .list {
    width: 100%;
    padding-right: 0;
  }
  .case-detail .section1 .my-more {
    margin: 25px auto 0;
  }
  .style .section1 .item, .news .section1 .item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .style .section1 .item-time, .news .section1 .item-time {
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    border: none;
    margin: 10px 0;
  }
  .style .section1 .item-info, .news .section1 .item-info {
    width: 100%;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    padding: 0;
  }
  .style .section1 .item-title, .news .section1 .item-title {
    margin-bottom: 10px;
  }
  .style .section1 .item-more, .news .section1 .item-more {
    display: none;
  }
  .style .section1 .item-img, .news .section1 .item-img {
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
  .information .section1 .item {
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .information .section1 .item-time {
    width: 100%;
    margin-bottom: 10px;
  }
  .information .section1 .item-info {
    padding-left: 0;
    width: 100%;
  }
  .contact .section1 .swiper {
    padding-bottom: 25px;
  }
  .contact .section1 .swiper-slide {
    width: 230px;
  }
  .contact .section1 .swiper-pagination {
    display: block;
  }
  .contact .section2 .item-btn span:nth-child(1) {
    display: none;
  }
  .contact .section2 .item-bottom-ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contact .section2 .item-bottom-ul s {
    display: none;
  }
  .contact .section2 .item-text span {
    margin-right: 15px;
  }
  .contact .section2 .item-text s {
    display: none;
  }
  .contact .section2 .item-bottom-li {
    width: 100%;
  }
  .contact .section2 .item-bottom-li:nth-child(3) {
    margin-top: 20px;
  }
  .contact .section3 .list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contact .section3 .list s {
    display: none;
  }
  .contact .section3 .item {
    width: 100%;
    -webkit-flex: initial;
    -moz-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    margin-bottom: 20px;
  }
  .contact .section3 .item:first-child {
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .contact-detail .my-active2 {
    display: none;
  }
  .contact-detail .section1 .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contact-detail .section1 .img {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-detail .section1 .info {
    width: 100%;
  }
  .contact-detail .section2 .item {
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }
  .contact-detail .section2 .item.active {
    width: 100%;
  }
  .contact-detail .section2 .item.active .item-left, .contact-detail .section2 .item.active .item-right {
    width: 100%;
  }
  .contact-detail .section2 .swiper-slide {
    height: auto;
  }
  .contact-detail .section2 .item-content {
    display: none;
  }
  .contact-detail .section2 .item-left {
    border-radius: 0.15rem 0.15rem 0 0;
  }
  .contact-detail .section2 .item-right {
    border-radius: 0 0 0.15rem 0.15rem;
  }
  .search .section1 .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .search .section1 .box .title {
    margin-bottom: 20px;
  }
  .search .section1 .box .input {
    width: 100%;
  }
  .search .section1 .box .input input {
    width: 100%;
  }
  .contact-detail .section3 .content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }
  .contact-detail .section3 .img {
    width: 100%;
    margin-bottom: 20px;
    height: auto;
  }
  .contact-detail .section3 .img img {
    height: auto;
  }
  .contact-detail .section3 .info {
    width: 100%;
  }
  .contact-detail .section3 .text {
    padding-right: 0;
  }
  .my-active1 {
    right: 10px;
  }
  #form-modal .container {
    width: 100%;
    border-radius: 8px 110px 8px 8px;
    padding: 40px 20px 20px;
  }
  #form-modal .title {
    margin-bottom: 20px;
  }
  #form-modal .modal-close {
    top: 10px;
    right: 10px;
    width: 16px;
  }
  #form-modal .form-item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #form-modal .form-label {
    width: 100%;
    margin-bottom: 5px;
    line-height: 1.5;
  }
  #form-modal .form-label::before {
    display: none;
  }
  #form-modal .form-label.required::before {
    display: inline-block;
  }
}
@-webkit-keyframes ani1 {
  100% {
    box-shadow: 0 0 0 20px transparent;
  }
}
@-moz-keyframes ani1 {
  100% {
    box-shadow: 0 0 0 20px transparent;
  }
}
@-o-keyframes ani1 {
  100% {
    box-shadow: 0 0 0 20px transparent;
  }
}
@keyframes ani1 {
  100% {
    box-shadow: 0 0 0 20px transparent;
  }
}