* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
ul,
li {
  list-style: none;
}
i {
  font-style: normal;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
  overflow: hidden;
  height: 0;
}
body {
  background-color: #f0fdf9;
  width: 100%;
  height: 100%;
}
.w {
  width: 1200px;
  margin: 0 auto;
}
.root header {
  background-image: url(../images/pc-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 45px;
  padding-bottom: 10px;
}
.root header .logo {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.root header .title {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.root header .txt {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.root header .square {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.root header .time {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.root header .logo {
  margin-bottom: 33px;
}
.root header .logo img {
  display: block;
  margin: 0 auto;
  width: 494px;
  height: 35px;
}
.root header .title {
  margin-bottom: 12px;
}
.root header .title img {
  display: block;
  margin: 0 auto;
  height: 120px;
}
.root header .txt {
  margin-bottom: 27px;
}
.root header .txt img {
  display: block;
  margin: 0 auto;
  height: 52px;
}
.root header .square {
  margin-bottom: 34px;
}
.root header .square img {
  display: block;
  margin: 0 auto;
  height: 69px;
}
.root header .time img {
  display: block;
  margin: 0 auto;
  height: 42px;
}
.root .img img {
  width: 100%;
  height: 100px;
}
.root main .txt {
  padding: 0 100px;
  font-size: 20px;
  line-height: 35px;
  padding-top:30px;
}
.root main .yicheng {
  display: grid;
  background-color: #52ddb1;
  padding: 20px;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  margin-top: 60px;
}
.root main .yicheng .theade {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #2ebe80, #0dac67);
  color: #fff;
  font-size: 19px;
  text-align: center;
  padding: 8px 0;
}
.root main .yicheng .theade span {
  display: inline-block;
  text-align: left;
}

.root main .yicheng .theade span:first-child {
  text-align: center;
  width: 400px;
  margin-right: 20px;
}

.root main .yicheng .theade span:last-child {
  text-align: center;
  width: 600px;
}

.root main .yicheng .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,  #2ebe80, #0dac67);
  color: #fff;
  font-size: 19px;
  padding: 12px 0;
  padding-right: 0px;
}
.root main .yicheng .circle span {
  display: inline-block;
  text-align: left;
}
.root main .yicheng .circle span:first-child {
  width: 400px;
  margin-right: 20px;
  text-align: center;
}
.root main .yicheng .circle span:last-child {
  width: 600px;
}

.root main .xuanchuan {
  margin-top: 88px;
}
.root main .xuanchuan .x-title img {
  display: block;
  height: 73px;
  margin: 0 auto;
  margin-bottom: 52px;
}
.root main .xuanchuan video {
  display: block;
  width: 871px;
  height: 463px;
  margin: 0 auto;
}
.root main .jiabin {
  margin-top: 93px;
}
.root main .jiabin .j-title img {
  display: block;
  width: 220px;
  height: 63px;
  margin: 0 auto;
}
.root main .jiabin .j-btn {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.root main .jiabin .j-btn .btn {
  padding: 12px 20px;
  font-size: 25px;
  font-weight: normal;
  color: #221815;
  background-color: #e5e5e5;
  margin-right: 33px;
  margin-top: 52px;
  cursor: pointer;
}
.root main .jiabin .j-btn .btn:last-child {
  margin-right: 0;
}
.root main .jiabin .contents {
  padding: 0 30px;
}
.root main .jiabin .contents .j-cont {
  display: flex;
  box-shadow: 0 0 15px 5px #ccfeed;
  border-radius: 10px;
  background-color: #fff;
  margin-top: 35px;
}
.root main .jiabin .contents .j-cont .video img {
  height: 370px;
}
.root main .jiabin .contents .j-cont .j-right {
  padding: 40px 28px;
}
.root main .jiabin .contents .j-cont .j-right .yinhao img {
  width: 65px;
  height: 55px;
}
.root main .jiabin .contents .j-cont .j-right .r-cont {
  padding: 25px 30px;
}
.root main .jiabin .contents .j-cont .j-right .r-cont .name {
  font-size: 40px;
  color: #221815;
}
.root main .jiabin .contents .j-cont .j-right .r-cont .chiwei {
  border-bottom: 1px dashed #333;
  padding-bottom: 25px;
  padding-top: 20px;
  font-size: 25px;
  color: #221815;
}
.root main .fayan .x-title img {
  display: block;
  width: 240px;
  height: 75px;
  margin: 0 auto;
  margin-top: 70px;
}
.root main .fayan .f-conts {
  padding: 0 20px;
}
.root main .fayan .f-conts .content {
  margin-top: 96px;
  box-shadow: 0 0 15px 5px #ccfee5;
  border-radius: 10px;
  background-color: #fff;
}
.root main .fayan .f-conts .content .f-cont {
  display: flex;
  justify-content: space-around;
  margin-top: 35px;
}
.root main .fayan .f-conts .content .f-cont .name {
  padding-top: 40px;
}
.root main .fayan .f-conts .content .f-cont .name p {
  font-size: 25px;
  color: #221815;
  line-height: 42px;
  clear: right;
}
.root main .fayan .f-conts .content .f-cont .name .n-name {
  font-size: 38px;
  color: #221815;
  margin-bottom: 0px;
}
.root main .fayan .f-conts .content .f-cont .f-img img {
  display: block;
  width: 570px;
  height: 350px;
  margin-top: -43px;
}
.root main .fayan .f-conts .content .f-box {
  width: 500px;
  background-image: url(../images/juxing-2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -122px;
  margin-left: -50px;
  padding: 20px 45px;
}
.root main .fayan .f-conts .content .f-box p {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 12px;
}
.root main .fayan .f-conts .content .f-box .f-txt {
  margin-top: 16px;
  font-size: 19px;
  color: #ffffff;
  line-height: 28px;
}
.root main .fayan .f-conts .content .f-box-2 {
  width: 500px;
  background-image: url(../images/juxing-2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -122px;
  margin-right: -50px;
  padding: 20px 45px;
}
.root main .fayan .f-conts .content .f-box-2 p {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 12px;
}
.root main .fayan .f-conts .content .f-box-2 .f-txt {
  margin-top: 16px;
  font-size: 19px;
  color: #ffffff;
  line-height: 25px;
}
.root main .tuji .t-title img {
  display: block;
  width: 245px;
  height: 70px;
  margin: 0 auto;
  margin-top: 90px;
  margin-bottom: 52px;
}
.root main .tuji .lubo {
  padding: 0 25px;
}
.root main .tuji .lubo .sw-img img {
  width: 1200px;
  height: 750px;
}
.root main .tuji .swiper-button-next,
.root main .tuji .swiper-container-rtl .swiper-button-prev {
  background-image: url(../images/btn-2.png);
  width: 83px;
  height: 83px;
  background-size: 100% 100%;
}
.root main .tuji .swiper-button-prev,
.root main .tuji .swiper-container-rtl .swiper-button-next {
  background-image: url(../images/btn-1.png);
  width: 83px;
  height: 83px;
  background-size: 100% 100%;
}
.root footer {
  margin-top: 183px;
  padding: 60px 0;
  background-color: #0dac67;
}
.root footer .fot {
  text-align: center;
}
.root footer .fot div {
  font-size: 19px;
  color: #fff;
  line-height: 40px;
}
.root footer .fot div a {
  color: #fff;
}
.forum .forum-title {
  width: 220px;
  height: 64px;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 80px;
}
.forum .forum-title .forum-img {
  width: 100%;
  height: 110%;
}
.forum-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.forum-btn .btn-x {
  padding: 12px 20px;
  font-size: 25px;
  font-weight: normal;
  color: #221815;
  background-color: #e5e5e5;
  margin-right: 33px;
  cursor: pointer;
}
.forum-cont {
  display: none;
}
.forum-cont .forum-box {
  background-color: rgba(0, 167, 255, 0.1);
  padding: 50px 60px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.forum-cont .forum-box .forum-box-left {
  width: 492px;
  margin-right: 50px;
}
.forum-cont .n-name {
  display: flex;
  align-items: center;
}
.forum-cont .forum-box .forum-box-left .company-name {
  font-size: 25px;
  color: #221815;
  margin-right: 48px;
}
.forum-cont .forum-box .forum-box-left .name-x {
  font-size: 25px;
  color: #221815;
  margin-bottom: 20px;
  margin-top: 10px;
}
.forum-cont .forum-box .forum-box-left .name {
  font-size: 35px;
  color: #221815;
}
.forum-cont .forum-box .forum-box-left .cont-txt {
  font-size: 24px;
  color: #221815;
  margin-bottom: 20px;
}
.forum-cont .forum-box .forum-box-left .cont-name {
  font-size: 19px;
  color: #221815;
  text-indent: 0em;
}
.forum-cont .forum-box .forum-box-right {
  width: 564px;
  height: 375px;
  border-radius: 20px;
  overflow: hidden;
}
.forum-cont .forum-box .forum-box-right .box-img {
  width: 100%;
  height: 100%;
}
.forum-cont .forum-box-x {
  background-color: rgba(0, 167, 255, 0.1);
  padding: 50px 60px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.forum-cont .forum-box-x .forum-box-left {
  width: 492px;
  margin-left: 50px;
}
.forum-cont .forum-box-x .forum-box-left .company-name {
  font-size: 25px;
  color: #221815;
  margin-left: 48px;
}
.forum-cont .forum-box-x .forum-box-left .name-x {
  font-size: 25px;
  color: #221815;
  margin-bottom: 20px;
  margin-top: 10px;
}
.forum-cont .forum-box-x .forum-box-left .name {
  font-size: 38px;
  color: #221815;
}
.forum-cont .forum-box-x .forum-box-left .cont-txt {
  font-size: 24px;
  color: #221815;
  margin-bottom: 20px;
}
.forum-cont .forum-box-x .forum-box-left .cont-name {
  font-size: 19px;
  color: #221815;
  text-indent: em;
}
.forum-cont .forum-box-x .forum-box-right {
  width: 564px;
  height: 375px;
  border-radius: 20px;
  overflow: hidden;
}
.forum-cont .forum-box-x .forum-box-right .box-img {
  width: 100%;
  height: 100%;
}
