:root {
  --theme-color: #038568;
}
* {
  box-sizing: border-box; list-style: none; padding: 0; margin: 0;
  text-decoration: none;
}
img {
  vertical-align: middle;
}

@font-face {
  font-family: "SourceHanSerifCN-Light";
  src: url(../fonts/SourceHanSerifCN-Light.otf);
}
@font-face {
  font-family: "SourceHanSerifCN-Regular";
  src: url(../fonts/SourceHanSerifCN-Regular.otf);
}
@font-face {
  font-family: "SourceHanSerifCN-Bold";
  src: url(../fonts/SourceHanSerifCN-Bold.otf);
}
@font-face {
  font-family: "SourceHanSerifCN-Medium";
  src: url(../fonts/SourceHanSerifCN-Medium.otf);
}
.ellipsis {
  overflow: hidden; text-overflow:ellipsis; white-space: nowrap;
}
.row-ellipsis {
  display: -webkit-box !important;    
  -webkit-box-orient: vertical;    
  -webkit-line-clamp: 3;    
  overflow: hidden;
}
body {
  font-family: "SourceHanSerifCN-Regular";
  font-size: 16px;
  line-height: 20px;
}
.f { display: flex; }
.fv { align-items: center; }
.fj { justify-content: space-between; }
.fc { justify-content: center; }
.pc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container1 {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.web-head {
  position: relative;
  padding: 44px 0 28px;
  z-index: 10;
}
.web-head .container1 {
  align-items: flex-end;
}
.web-head .logo {
  margin-left: -38px;
  color: #000;
}
.web-head .logo img {
  margin-right: 10px;
  width: 54px;
  height: 54px;
  background-color: #898989;
}
.web-head .logo .word p:nth-child(1) {
  font-size: 28px;
  line-height: 28px;
  font-family: "SourceHanSerifCN-Medium";
}
.web-head .logo .word p:nth-child(2) {
  margin-top: 2px;
  font-size: 12px;
  zoom: 0.92;
  text-transform: uppercase;
}
.web-head .navs {
  margin-right: -64px;
  margin-bottom: 4px;
}
.web-head .navs .phone-trigger {
  display: none;
}
.web-head .navs ul li {
  margin-left: 28px;
  position: relative;
}
.web-head .navs ul li:first-child {
  margin-left: 0;
}
.web-head .navs ul li a.primary {
  display: flex;
  padding: 10px 4px;
  font-size: 15px;
  line-height: 16px;
  color: #000;
  /* border-bottom: 2px solid transparent; */
}
.web-head .navs ul li:hover a.primary,
.web-head .navs ul li a.primary:hover {
  color: var(--theme-color);
  font-weight: 600;
  border-bottom-color: var(--theme-color);
}
.web-head .navs ul li.on a {
  border-bottom-color: var(--theme-color);
}
.web-head .navs ul li .dp {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 8px;
  transition: all .8s ease;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  max-height: 0;
}
.web-head .navs ul li:hover .dp {
  pointer-events: auto;
  max-height: 200px;
  opacity: 1;
  visibility: visible;
}
.web-head .navs ul li dl {
  position: relative;
  border-top: 3px solid #188d49;
  padding: 7px 0;
  background-color: rgba(255, 255, 255, 0.6);
}
.web-head .navs ul li dl:before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 7px solid #188d49;
}
.web-head .navs ul li dl dd a {
  display: block;
  padding: 7px 10px;
  font-size: 15px;
  line-height: 15px;
  color: #000;
  white-space: nowrap;
  transition: all .8s ease;
}
.web-head .navs ul li dl dd a:hover {
  color: var(--theme-color);
}

.swiper-index-banner .swiper-slide .banner {
  width: 100%;
  position: relative;
  z-index: 0;
}
.swiper-index-banner .word {
  z-index: 1;
  color: #fff;
  text-align: center;
}
.swiper-index-banner .word h2 {
  margin-bottom: 52px;
  font-family: "SourceHanSerifCN-Medium";
  font-size: 58px;
  line-height: 58px;
  font-weight: 400;
  letter-spacing: 6px;
  text-shadow: 2px 0px 5px #000000;
}
.swiper-index-banner .word p {
  margin-bottom: 64px;
  font-family: "SourceHanSerifCN-Light";
  font-size: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 10px;
}
.swiper-index-banner .word .tag {
  font-size: 30px;
  line-height: 30px;
  padding: 7px 22px;
  border: 1px solid #fff;
  display: inline-flex;
}
.swiper-index-banner .swiper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  width: 54px;
  height: 80px;
  background-color: rgba(62, 170, 115, 0.4);
  transform: translateY(-50%);
  z-index: 1;
}
.swiper-index-banner .swiper-btn.prev {
  left: 20px;
}
.swiper-index-banner .swiper-btn.next {
  right: 20px;
}
.swiper-index-banner .swiper-slide.swiper-slide-active img {
  -webkit-animation: animate 4s linear;
  -moz-animation: animate 4s linear; 
  animation: animate 4s linear;
}

@keyframes animate {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.00);
  }
}


.index-section .is-title {
  padding-bottom: 8px;
  position: relative;
  text-align: center;
}
.index-section .is-title:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 45px;
  height: 2px;
  background-color: var(--theme-color);
}
.index-section .is-title h3 {
  font-weight: 400;
  font-size: 34px;
  line-height: 34px;
}
.index-section .is-title p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--theme-color);
  line-height: 13px;
}


.index-intro {
  padding: 84px 0 144px;
  background-color: #F4F3F3;
  background-image: url(../images/bg-index-intro.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
.index-intro .ii-body {
  margin-top: 108px;
}
.index-intro .article {
  flex: 1;
  padding-top: 38px;
  margin-right: 90px;
}
.index-intro .article .a-head {
  position: relative;
  padding: 0 0 18px;
}
.index-intro .article .a-head:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 84px;
  height: 2px;
  background-color: #000;
}
.index-intro .article .a-head h4 {
  font-size: 26px;
  font-family: "SourceHanSerifCN-Medium";
  line-height: 30px;
  font-weight: 400;
}
.index-intro .article .a-body {
  margin-top: 42px;
  -webkit-line-clamp: 6;
}
.index-intro .article .a-body p {
  font-size: 16px;
  line-height: 30px;
}
.index-intro .article .a-foot {
  margin-top: 70px;
}
.index-intro .article .a-foot .more {
  display: inline-flex;
  padding: 9px 16px;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  background-color: var(--theme-color);
}
.index-intro .video {
  flex-shrink: 0;
  width: 600px;
  height: 450px;
  position: relative;
  background-color: #000;
}
.index-intro .video video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.index-intro .video .play {
  width: 94px;
  height: 94px;
  z-index: 1;
  border: 1px solid #fff;
  border-radius: 50%;
}
.index-intro .ii-foot {
  margin-top: 118px;
}
.index-intro .ii-foot ul {
  align-items: flex-start;
}
.index-intro .ii-foot ul li {
  min-height: 218px;
  width: 25%;
  padding: 0 0 0 42px;
  background-image: url(../images/line.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left top;
}
.index-intro .ii-foot ul li:nth-child(2n+1) {
  margin-top: 82px;
}
.index-intro .ii-foot ul li .num {
  font-family: Arial;
  font-weight: 600;
  font-size: 50px;
  color: var(--theme-color);
  line-height: 50px;
}
.index-intro .ii-foot ul li .unit {
  margin-left: 16px;
  padding-bottom: 6px;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--theme-color);
}
.index-intro .ii-foot ul li .label {
  margin-top: 26px;
  font-size: 22px;
}



.index-business {
  padding: 122px 0 0;
}
.index-business .ib-body {
  margin-top: 72px;
}
.index-business .ib-body ul li {
  width: 20%;
}
.index-business .ib-body ul li:nth-child(odd) {
  background-color: #188d49;
}
.index-business .ib-body ul li:nth-child(even) {
  background-color: #5daf7f;
}
.index-business .ib-body ul li .icon {
  padding: 44px 0 0 34px;
  height: 200px;
}
.index-business .ib-body ul li .icon img {
  height: 58px;
}
.index-business .ib-body ul li .icon p:before {
  content: "";
  margin: 16px 0;
  display: block;
  width: 44px;
  height: 2px;
  background-color: #fff;
}
.index-business .ib-body ul li .icon p {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
}
.index-business .ib-body ul li .cover {
  height: 200px;
  overflow: hidden;
}
.index-business .ib-body ul li .cover img {
  transition: all .4s ease-in-out;
}
.index-business .ib-body ul li:hover .cover img {
  transform: scale(1.1);
}


.index-preview {
  padding: 112px 0 126px;
}
.index-preview .ip-body {
  margin-top: 90px;
}
.index-preview .ip-body .articles {
  flex: 1;
  max-width: 510px;
  padding-top: 40px;
}
.index-preview .ip-body .articles .item {
  display: none;
}
.index-preview .ip-body .articles .item.on {
  display: block;
}
.index-preview .ip-body .swiper-pro {
  position: relative;
  flex-shrink: 0;
  width: 530px;
}
.index-preview .ip-body .swiper-pro .swiper-button {
  position: absolute;
  top: -24px;
  right: 0;
}
.index-preview .ip-body .swiper-pro .swiper-button a {
  margin-left: 12px;
  width: 27px;
  height: 17px;
  background-size: cover;
  background-repeat: no-repeat;
}
.index-preview .ip-body .swiper-pro .swiper-button a.prev {
  background-image: url(../images/arrow-prev.png);
}
.index-preview .ip-body .swiper-pro .swiper-button a.next {
  background-image: url(../images/arrow-next.png);
}
.index-preview .ip-body .swiper-pro .swiper-button a.prev:hover {
  background-image: url(../images/arrow-prev-active.png);
}
.index-preview .ip-body .swiper-pro .swiper-button a.next:hover {
  background-image: url(../images/arrow-next-active.png);
}
.index-preview .item .i-head h4 {
  font-family: "SourceHanSerifCN-Bold";
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  color: #404040;
}
.index-preview .item .i-head {
  margin-bottom: 24px;
}
.index-preview .item .i-body {
  min-height: 168px;
  margin-bottom: 34px;
  line-clamp: 7;
  -webkit-line-clamp: 7;
}
.index-preview .item .i-body p {
  font-size: 16px;
  line-height: 24px;
  color: #404040;
}
.index-preview .item .i-foot a.more {
  display: inline-flex;
  font-size: 20px;
  color: #fff;
  line-height: 20px;
  padding: 9px 20px;
  background-color: var(--theme-color);
}



.index-honor {
  padding-top: 70px;
  min-height: 686px;
  background-image: url(../images/bg-index-honor.jpg);
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.index-honor .is-title {
  color: #fff;
}
.index-honor .is-title p {
  color: #fff;
}
.index-honor .is-title:after {
  background-color: #fff;
}
.index-honor .swiper-honor {
  margin-top: 28px;
}
.swiper-honor .swiper-slide {
  width: 624px;
}
.swiper-honor .swiper-slide .cover {
  padding: 46px 52px;
  background-color: #fff;
}
.swiper-honor .swiper-slide p {
  display: none;
  margin-top: 14px;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}
.swiper-honor .swiper-slide.swiper-slide-active p {
  display: block;
}
.swiper-honor .swiper-slide {
  opacity: 0.6;
}
.swiper-honor .swiper-slide img {
  /* transform: scale(0.8); */
  transition-property: transform;
}
.swiper-honor .swiper-slide.swiper-slide-active img {
  transform: scale(1);
}
.swiper-honor .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-honor .swiper-slide img {
  width: 100%;
}
.index-honor .container1 {
  max-width: 1600px;
}
.index-news {
  padding: 116px 0 104px;
  background-image: url(../images/bg-index-news.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom;
}
.index-news .in-body {
  margin: 48px auto 0;
}
.index-news li {
  width: 25%;
  padding: 10px 13px 15px;
}
.index-news li:hover {
  background-color: #f3f3f3;
}
.index-news li .n-side {
  margin-bottom: 24px;
  color: #4B4B4B;
}
.index-news li .n-side p:nth-child(1) {
  font-size: 18px;
}
.index-news li .n-side p:nth-child(1):after {
  margin: 4px 0 4px;
  content: "";
  width: 82px;
  height: 2px;
  display: block;
  background-color: #4B4B4B;
}
.index-news li .n-side p:nth-child(2) {
  font-size: 14px;
}
.index-news li .n-head h4 {
  font-size: 20px;
  line-height: 20px;
  color: #4B4B4B;
}
.index-news li .n-body {
  margin-top: 30px;
  margin-bottom: 12px;
  height: 168px;
  line-clamp: 8;
}
.index-news li .n-body p {
  font-size: 15px;
  line-height: 21px;
  color: #4B4B4B;
  text-align: justify;
}
.index-news li .n-foot a.more {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #9a9a9a;
}
.index-news li:hover .n-foot a.more {
  background-color: var(--theme-color);
}



.web-footer {
  background-color: #006650;
}
.web-footer .infos {
  padding: 72px 0 48px;
}
.web-footer .links {
  margin-left: 84px;
}
.web-footer .links:first-child {
  margin-left: 48px;
}
.web-footer .links p {
  margin-bottom: 30px;
  font-size: 20px;
  color: #fff;
}
.web-footer .links ul {
}
.web-footer .links ul::before {
  margin-bottom: 25px;
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background-color: #fff;
}
.web-footer .links ul li {
  padding: 7px 0;
}
.web-footer .links ul li,
.web-footer .links ul li a {
  font-size: 15px;
  color: #fff;
}
.web-footer .qrcode {
  flex-shrink: 0;
  justify-self: flex-end;
  width: 150px;
  height: 150px;
  background-color: #fff;
}
.web-footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  background-color: #075845;
}
.web-footer .copyright p,
.web-footer .copyright a {
  font-size: 16px;
  color: #fff;
}

.web-head .navs .phone-trigger:before,
.web-head .navs .phone-trigger:after {
  content: "";
}
.web-head .navs .phone-trigger:before,
.web-head .navs .phone-trigger:after,
.web-head .navs .phone-trigger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all .4s;
  background-color: #000;
}
.web-head .navs .phone-trigger span {
  margin: 6px 0;
}