.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.light {
  font-family: "light";
}
.medium {
  font-family: "medium";
}
.regular {
  font-family: "regular";
}
.bg {
  background-image: linear-gradient(-90deg, #d6e4cf 0%, #61b17b 100%);
  background-blend-mode: normal, normal;
}
.bg2 {
  background-image: linear-gradient(-90deg, #529936 0%, #005a43 100%);
  background-blend-mode: normal, normal;
}
.bg3 {
  background-image: linear-gradient(90deg, #00a4e1 0%, #569f34 100%), linear-gradient(#a8cb9a, #a8cb9a);
  background-blend-mode: normal, 
		normal;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.font {
  font-family: Arial;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.mbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hidden-xs {
  display: block;
}
.hidden-pc {
  display: none;
}
.box-container {
  width: 15.36rem;
  margin: 0 auto;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.box-container-fluid {
  width: 100%;
  margin: 0 auto;
}
.medium-box-container {
  width: 80%;
  margin: 0 auto;
}
body {
  font-size: 16px;
  overflow-x: hidden;
}
.rl {
  writing-mode: tb-rl;
  writing-mode: vertical-lr;
}
@font-face {
  font-family: "light";
  src: url('../fonts/HarmonyOS_Sans_SC_Light.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "medium";
  src: url('../fonts/HarmonyOS_Sans_SC_Medium.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "regular";
  src: url('../fonts/HarmonyOS_Sans_SC_Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mb";
  src: url('../fonts/MontserratBold.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mm";
  src: url('../fonts/Montserrat-Medium.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mr";
  src: url('../fonts/Montserrat-Regular.otf');
  font-weight: normal;
  font-style: normal;
}
.pic {
  font-size: 0;
  overflow: hidden;
  display: block;
  width: 100%;
}
.pic img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.pic img.phone {
  display: none;
}
:root {
  --fs14: 14px;
  --fs16: 16px;
  --fs18: 18px;
  --fs20: 20px;
  --fs22: 22px;
  --fs24: 24px;
  --fs28: 28px;
  --fs30: 30px;
  --fs36: 36px;
  --fs40: 40px;
  --fs48: 48px;
}
.phone-nav {
  display: none;
}
.content,
.desc {
  text-align: justify;
}
.content img,
.content input[type="image"] {
  max-width: 100%;
  height: auto!important;
  display: block;
  margin: 0 auto;
}
.swiper-box {
  position: relative;
}
.header-wrapper {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 33;
  width: 100%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.header-wrapper.shadow {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.header-wrapper.navShadow:before {
  top: 100%;
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}
.header-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.header-wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.66rem;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.header-wrapper .box-container {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 1rem;
  align-items: center;
}
.header-wrapper .logo-box {
  width: 1.24rem;
}
.header-wrapper .logo-box a,
.header-wrapper .logo-box img {
  display: block;
  width: 100%;
}
.header-wrapper .search-box {
  position: relative;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  height: 100%;
  margin: 0 0.5rem;
  /* input placeholder  */
}
.header-wrapper .search-box .text {
  width: 100%;
  height: 0.46rem;
  font-size: var(--fs15);
  line-height: 0.46rem;
  padding: 0 0.6rem 0 0.2rem;
  background-color: transparent;
  color: #666;
}
.header-wrapper .search-box ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #666;
  font-size: var(--fs15);
}
.header-wrapper .search-box :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #666;
  font-size: var(--fs15);
}
.header-wrapper .search-box ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666;
  font-size: var(--fs15);
}
.header-wrapper .search-box :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #666;
  font-size: var(--fs15);
}
.header-wrapper .form {
  width: 4rem;
  background-color: #f8f8f8;
  position: absolute;
  right: 0;
  top: 100%;
  bottom: auto;
  z-index: 10;
  padding: 0.1rem 0.2rem;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  display: none;
}
.header-wrapper .search,
.header-wrapper .submit {
  z-index: 10;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.header-wrapper .search {
  position: relative;
  width: 0.16rem;
  height: 0.16rem;
  background-image: url(../img/search.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.header-wrapper .submit {
  width: 0.16rem;
  height: 0.16rem;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.11rem;
  z-index: 10;
  background-image: url(../img/search.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.header-wrapper .other-box {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  height: 100%;
}
.pc-nav-box {
  flex: 1;
  margin: 0 2.35rem 0 1rem;
  text-align: right;
}
.pc-nav-box ul {
  display: inline-block;
}
.pc-nav-box li {
  display: inline-block;
  list-style-type: none;
  margin-right: 0.6rem;
}
.pc-nav-box li:last-child {
  margin-right: 0;
}
.pc-nav-box li:hover .nav {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  top: 100%;
}
.pc-nav-box li:hover > a,
.pc-nav-box li.on > a {
  color: #333;
}
.pc-nav-box li:hover > a:after,
.pc-nav-box li.on > a:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.pc-nav-box li > a {
  display: block;
  font-size: var(--fs16);
  color: #666;
  line-height: 1rem;
  position: relative;
  z-index: 10;
}
.pc-nav-box li > a:after {
  content: "";
  width: 100%;
  height: 0.03rem;
  background-image: linear-gradient(90deg, #00a4e1 0%, #569f34 100%), linear-gradient(#a8cb9a, #a8cb9a);
  background-blend-mode: normal, 
		normal;
  position: absolute;
  left: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  bottom: 0.29rem;
  z-index: 10;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.pc-nav-box a {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.pc-nav-box .nav {
  position: absolute;
  left: 0;
  top: 75%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.pc-nav-box .nav a {
  display: inline-block;
  color: #c5c6c8;
  line-height: 0.66rem;
  margin-right: 0.26rem;
}
.pc-nav-box .nav a:last-child {
  margin-right: 0;
}
.pc-nav-box .nav a:hover {
  color: #fff;
}
.footer-wrapper {
  position: relative;
  z-index: 32;
  padding: 1.1rem 0 0.96rem;
  background: #313131;
}
.footer-wrapper .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer-wrapper .caption {
  font-size: var(--fs18);
  color: #fff;
  font-family: "medium";
  line-height: 24px;
  margin-bottom: 0.22rem;
}
.footer-wrapper .other-box {
  width: 23%;
  text-align: right;
}
.footer-wrapper .tel {
  display: inline-block;
  font-size: var(--fs40);
  font-family: "mb";
  line-height: 0.4rem;
  margin-bottom: 0.18rem;
  background-image: linear-gradient(-90deg, #d6e4cf 0%, #61b17b 100%);
  background-blend-mode: normal, normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-wrapper .qrcode {
  width: 1.3rem;
  margin-left: auto;
  margin-right: 0;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}
.footer-wrapper .qrcode img {
  display: block;
  width: 100%;
}
.footer-wrapper .box-2 {
  margin-top: 0.44rem;
}
.footer-wrapper .logo {
  width: 2.16rem;
}
.footer-wrapper .logo.phone {
  display: none;
}
.footer-wrapper .logo.pc {
  display: block;
}
.footer-wrapper .logo img {
  width: 100%;
  display: block;
}
.footer-nav-box {
  width: 75%;
}
.footer-nav-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.footer-nav-box li {
  width: 16.66%;
}
.footer-nav-box li > a {
  font-size: var(--fs18);
  color: #fff;
  font-family: "medium";
  line-height: 24px;
}
.footer-nav-box a {
  display: block;
}
.footer-nav-box .nav {
  margin-top: 0.2rem;
}
.footer-nav-box .nav a {
  font-size: var(--fs14);
  color: #9a9a9a;
  line-height: 0.3rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.footer-nav-box .nav a:hover {
  color: #fff;
}
.footer-nav-box .nav a:hover span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.footer-nav-box span {
  background: url(../img/line.jpg) no-repeat;
  background-size: 0 1px;
  background-position: 100% 100%;
  transition: background-size 0.7s ease;
}
.friend-link {
  width: 210px;
  margin: 0 0 0 auto;
}
.friend-link .box {
  position: relative;
  width: 100%;
}
.friend-link .name {
  position: relative;
  z-index: 11;
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  color: #9a9a9a;
  height: 0.44rem;
  line-height: 0.44rem;
  padding: 0 0.48rem 0 0.25rem;
  background-image: url(../img/up.png);
  background-repeat: no-repeat;
  background-position: right 0.28rem center;
  background-size: 14px;
  background-color: #313131;
}
.friend-link .list {
  font-size: 0;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: none;
  background-color: #313131;
  border-bottom: none;
  padding-bottom: 0.44rem;
  border-radius: 22px;
  border: solid 1px rgba(255, 255, 255, 0.3);
}
.friend-link .list .inner {
  max-height: 2.58rem;
  overflow-y: auto;
}
.friend-link .list .inner::-webkit-scrollbar {
  width: 3px;
  background-color: #f7f8f9;
}
.friend-link .list .inner::-webkit-scrollbar-thumb {
  background-color: #61b17b;
}
.friend-link .list a {
  display: block;
  color: #797979;
  line-height: 0.42rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding: 0 0.44rem 0 0.28rem;
}
.friend-link .list a:hover {
  color: #61b17b;
}
.friend-link .list a:last-child {
  border-bottom: none;
}
.link {
  font-size: 0;
}
.link a {
  position: relative;
  padding-right: 0.28rem;
  margin-right: 0.26rem;
  display: inline-block;
  vertical-align: top;
}
.link a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0.09rem;
  z-index: 1;
  width: 2px;
  height: 0.13rem;
  background: #9a9a9a;
}
.link a:hover span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.link a:last-child {
  margin-right: 0;
  padding-right: 0;
}
.link a:last-child:after {
  display: none;
}
.link span {
  background: url(../img/line.jpg) no-repeat;
  background-size: 0 1px;
  background-position: 100% 100%;
  transition: background-size 0.7s ease;
}
.copyright {
  text-align: right;
}
.copyright,
.copyright a,
.link a {
  font-size: var(--fs14);
  color: #9a9a9a;
}
.copyright,
.link {
  line-height: 0.3rem;
  margin-top: 0.55rem;
}
.copyright a,
.link a {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.copyright a:hover,
.link a:hover {
  color: #fff;
}
.index-banner-wrapper .index-banner-swiper .swiper-slide-active a > img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.index-banner-wrapper .index-banner-swiper .swiper-slide-active .info p,
.index-banner-wrapper .index-banner-swiper .swiper-slide-active .info img {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.index-banner-wrapper .swiper-slide {
  overflow: hidden;
}
.index-banner-wrapper .swiper-slide a {
  display: block;
}
.index-banner-wrapper .swiper-slide a > img {
  display: block;
  width: 100%;
  transition: transform 6s ease;
  -webkit-transition: transform 6s ease;
  -moz-transition: transform 6s ease;
  -ms-transition: transform 6s ease;
  -o-transition: transform 6s ease;
}
.index-banner-wrapper .swiper-slide a > img.phone {
  display: none;
}
.index-banner-wrapper .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.index-banner-wrapper .info p,
.index-banner-wrapper .info img {
  transition: all 1.5s ease;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition-delay: 0.35s;
  opacity: 0;
  visibility: hidden;
}
.index-banner-wrapper .info p {
  transform: translateX(2rem);
  -webkit-transform: translateX(2rem);
  -moz-transform: translateX(2rem);
  -ms-transform: translateX(2rem);
  -o-transform: translateX(2rem);
}
.index-banner-wrapper .info img {
  transform: translateX(-2rem);
  -webkit-transform: translateX(-2rem);
  -moz-transform: translateX(-2rem);
  -ms-transform: translateX(-2rem);
  -o-transform: translateX(-2rem);
}
.index-banner-wrapper .box-container {
  text-align: center;
}
.index-banner-wrapper .box-container img {
  display: block;
  width: 30.53%;
  margin: 0 auto;
}
.index-banner-wrapper p {
  display: inline-block;
  font-size: var(--fs24);
  line-height: 0.36rem;
  letter-spacing: 0.05rem;
  color: #fff;
  margin-top: 0.5rem;
}
.index-banner-wrapper .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.index-banner-wrapper .swiper-pagination-bullet svg {
  width: 0.38rem;
  height: 0.38rem;
  position: absolute;
  top: 50%;
  margin-top: -0.19rem;
  left: 50%;
  margin-left: -0.19rem;
}
.index-banner-wrapper .swiper-pagination-bullet svg:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.index-banner-wrapper .swiper-pagination-bullet {
  fill: none;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-chart__background {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}
.index-banner-wrapper .circle-chart__circle {
  stroke-linecap: square;
  fill: none;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-chart__circle {
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: square;
  fill: none;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform-origin: center;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  -moz-transform-origin: center;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-chart__circle {
  animation: circle-chart-fill 3.8s linear reverse;
  -moz-animation: circle-chart-fill 3.8s linear reverse;
  -webkit-animation: circle-chart-fill 3.8s linear reverse;
  -ms-animation: circle-chart-fill 3.8s linear reverse;
}
.index-banner-wrapper .swiper-pagination-bullet.one.swiper-pagination-bullet-active .circle-chart__circle {
  animation: circle-chart-fill 2.4s linear reverse;
  -moz-animation: circle-chart-fill 2.4s linear reverse;
  -webkit-animation: circle-chart-fill 2.4s linear reverse;
  -ms-animation: circle-chart-fill 2.4s linear reverse;
}
.index-banner-wrapper .swiper-pagination {
  bottom: 0.7rem;
}
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.18rem;
  opacity: 1;
}
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:focus,
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:active,
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:link {
  outline: none;
}
.share {
  text-align: right;
  margin-top: 0.28rem;
  font-size: 0;
}
.share a {
  position: relative;
  display: inline-block;
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 50%;
  margin-right: 0.3rem;
}
.share a:last-child {
  margin-right: 0;
}
.share a:first-child .hidebox {
  left: -0.3rem;
  margin-left: 0;
}
.share a:first-child .hidebox:after {
  margin-left: -0.3rem;
}
.share a:first-child:hover {
  box-shadow: 4px 9px 18px 0px rgba(10, 193, 92, 0.2);
}
.share a:nth-child(2):hover {
  box-shadow: 4px 9px 18px 0px rgba(23, 11, 26, 0.2);
}
.share a:nth-child(3):hover {
  box-shadow: 4px 9px 18px 0px rgba(231, 31, 25, 0.2);
}
.share a.active:before {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.share a.active .init {
  opacity: 0;
  visibility: hidden;
}
.share a.active .on {
  opacity: 1;
  visibility: visible;
}
.share a.active .hidebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.share a > img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.share .on {
  opacity: 0;
  visibility: hidden;
}
.share .hidebox {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.2rem);
  margin-left: -0.7rem;
  width: 1.4rem;
  background-color: #fff;
  padding: 3px;
  border-radius: 5px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.2rem);
  -webkit-transform: translateY(0.2rem);
  -moz-transform: translateY(0.2rem);
  -ms-transform: translateY(0.2rem);
  -o-transform: translateY(0.2rem);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.share .hidebox:after {
  content: "";
  border: 0.08rem solid transparent;
  position: absolute;
  left: 50%;
  bottom: -0.16rem;
  margin-left: -0.08rem;
  z-index: 10;
  border-top-color: #fff;
}
.share .hidebox img {
  display: block;
  width: 100%;
}
.index-title {
  margin-bottom: 0.5rem;
}
.index-title.center {
  text-align: center;
}
.index-title.center.animated .line,
.index-title.center.animated h3 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.index-title.center.noAni h3 {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.index-title.center .line {
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-1rem);
  -webkit-transform: translateY(-1rem);
  -moz-transform: translateY(-1rem);
  -ms-transform: translateY(-1rem);
  -o-transform: translateY(-1rem);
}
.index-title.center h3 {
  transform: translateY(1rem);
  -webkit-transform: translateY(1rem);
  -moz-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  -o-transform: translateY(1rem);
}
.index-title.center .line,
.index-title.center h3 {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition-delay: 0.35s;
}
.index-title.white h3 {
  color: #fff;
}
.index-title h3 {
  font-size: var(--fs36);
  font-weight: 700;
  font-family: "medium";
  letter-spacing: 0.04rem;
  line-height: 0.48rem;
}
.index-title .line {
  width: 22px;
  height: 4px;
  background-image: linear-gradient(90deg, #00a4e1 0%, #569f34 100%), linear-gradient(#a8cb9a, #a8cb9a);
  background-blend-mode: normal, 
		normal;
  margin-top: 0.25rem;
}
.index-more {
  display: block;
  width: 1.46rem;
  line-height: 0.48rem;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  border-radius: 24px;
  font-family: "mb";
  text-transform: uppercase;
  position: relative;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.index-more:hover:before {
  opacity: 0;
  visibility: hidden;
}
.index-more:hover:after {
  opacity: 1;
  visibility: visible;
}
.index-more:before,
.index-more:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 24px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.index-more:before {
  background-image: linear-gradient(-90deg, #d6e4cf 0%, #61b17b 100%);
  background-blend-mode: normal, normal;
}
.index-more:after {
  background-image: linear-gradient(-90deg, #529936 0%, #005a43 100%);
  background-blend-mode: normal, normal;
  opacity: 0;
  visibility: hidden;
}
.index-more.white {
  line-height: 0.46rem;
}
.index-more.white:before {
  opacity: 0;
  visibility: hidden;
}
.index-more.white:hover:after {
  opacity: 1;
  visibility: visible;
}
.index-more.white:hover span:before {
  opacity: 0;
  visibility: hidden;
}
.index-more.white span:before {
  content: "";
  border: solid 1px rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 24px;
  box-sizing: border-box;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.index-more span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.index-more i {
  display: inline-block;
  width: 0.15rem;
  height: 0.12rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 0.16rem;
  background-image: url(../img/right.png);
}
.imore {
  display: block;
  width: 0.47rem;
  height: 0.33rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/more.png);
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.imore:hover {
  background-image: url(../img/more2.png);
}
.imore.on:hover {
  background-image: url(../img/more3.png);
}
.indexbg {
  position: relative;
}
.indexbg.animated:before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.indexbg:before {
  content: "";
  width: 0.16rem;
  height: 1.71rem;
  background: url(../img/indexbg2.png) no-repeat center bottom;
  background-size: 100%;
  position: absolute;
  left: 0.02rem;
  top: -0.7rem;
  z-index: 10;
  margin-left: -0.09rem;
  transform: translateY(-3rem);
  -webkit-transform: translateY(-3rem);
  -moz-transform: translateY(-3rem);
  -ms-transform: translateY(-3rem);
  -o-transform: translateY(-3rem);
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s ease;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition-delay: 0.35s;
}
.index-box-1 {
  position: relative;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  padding-top: 1.5rem;
}
.index-box-1.animated:before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.index-box-1:before {
  content: "";
  width: 0.22rem;
  height: 1.27rem;
  background: url(../img/indexbg.png) no-repeat center top;
  background-size: 100%;
  position: absolute;
  left: calc((100% - 15.36rem) / 2);
  top: 0.57rem;
  z-index: 10;
  margin-left: -0.09rem;
  transform: translateY(-3rem);
  -webkit-transform: translateY(-3rem);
  -moz-transform: translateY(-3rem);
  -ms-transform: translateY(-3rem);
  -o-transform: translateY(-3rem);
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s ease;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition-delay: 0.35s;
}
.index-box-1 .enbg {
  width: 0.97rem;
  height: 8.79rem;
  background: url(../img/en.png) no-repeat center top;
  background-size: 100%;
  position: absolute;
  left: 0.65rem;
  top: 0;
  z-index: -1;
}
.index-box-1 .info-box,
.index-box-1 .pic-box {
  width: 50%;
}
.index-box-1 .info-box {
  padding-left: calc((100% - 15.36rem) / 2);
  padding-right: 0.74rem;
  padding-top: 0.44rem;
}
.index-box-1 h2 {
  font-size: var(--fs48);
  font-weight: 700;
  line-height: 0.6rem;
  margin-bottom: 0.13rem;
}
.index-box-1 h3 {
  font-size: var(--fs40);
  display: inline-block;
  background-image: linear-gradient(-90deg, #529936 0%, #005a43 100%);
  background-blend-mode: normal, normal;
  line-height: 0.48rem;
  font-family: "light";
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.index-box-1 .content {
  font-size: var(--fs18);
  color: #666;
  line-height: 0.36rem;
  font-family: "light";
  padding-right: 0.76rem;
  margin-bottom: 0.53rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  height: 1.44rem;
}
.index-box-1 .pic-box {
  position: relative;
  z-index: 1;
}
.index-box-1 .quicklink ul {
  list-style: none;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.index-box-1 .quicklink li {
  text-align: center;
  width: 33.33%;
  background: #fff;
  padding: 0.22rem 0.3rem 0.26rem;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.index-box-1 .quicklink li:hover {
  background: #f3f3f3;
}
.index-box-1 .quicklink li:hover .title {
  background-image: linear-gradient(90deg, #00a4e1 0%, #569f34 100%), linear-gradient(#a8cb9a, #a8cb9a);
  background-blend-mode: normal, 
		normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.index-box-1 .quicklink li:hover .icon {
  transform: translateY(-0.1rem);
  -webkit-transform: translateY(-0.1rem);
  -moz-transform: translateY(-0.1rem);
  -ms-transform: translateY(-0.1rem);
  -o-transform: translateY(-0.1rem);
}
.index-box-1 .quicklink .icon {
  height: 0.6rem;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  transition: transform 0.35s ease;
  -webkit-transition: transform 0.35s ease;
  -moz-transition: transform 0.35s ease;
  -ms-transition: transform 0.35s ease;
  -o-transition: transform 0.35s ease;
}
.index-box-1 .quicklink .title {
  display: inline-block;
  font-size: var(--fs20);
  height: 0.3rem;
  line-height: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0.16rem auto 2px;
}
.index-box-1 .quicklink p {
  font-size: var(--fs14);
  opacity: 0.5;
  line-height: 0.24rem;
}
.index-box-1 .data {
  margin-bottom: 1.06rem;
}
.index-box-1 .index-more {
  display: inline-block;
}
.data ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.data li {
  list-style: none;
}
.data p {
  margin-bottom: 0.14rem;
}
.data p,
.data .num {
  font-size: var(--fs16);
  line-height: 24px;
}
.data .num {
  position: relative;
  display: inline-block;
}
.data .num span {
  font-size: 0.6rem;
  font-family: "mb";
  display: inline-block;
  line-height: 0.5rem;
}
.data .num i {
  position: absolute;
  left: 0;
  bottom: 100%;
  z-index: 1;
  font-size: 30px;
  color: #61b17b;
  height: 0.2rem;
  line-height: 0.2rem;
}
.data .num em {
  position: relative;
}
.index-box-2 {
  position: relative;
  z-index: 1;
  margin-top: 0.68rem;
}
.index-box-2 .swiper-slide {
  width: 24%;
  text-align: center;
  margin-right: 1.33%;
}
.index-box-2 .swiper-slide:last-child {
  margin-right: 0;
}
.index-box-2 .swiper-slide:hover .info {
  background-color: rgba(97, 177, 123, 0.9);
}
.index-box-2 .swiper-slide:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.index-box-2 .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  opacity: 1;
}
.index-box-2 .swiper-slide:hover .brief {
  height: 1.2rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  margin-bottom: 0.47rem;
}
.index-box-2 .swiper-slide:hover p {
  margin-bottom: 0.32rem;
}
.index-box-2 .pic {
  background-color: #000;
}
.index-box-2 .pic img {
  opacity: 0.8;
}
.index-box-2 .info {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 10;
  width: 80%;
  padding: 0.35rem 0.4rem 0.5rem;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  overflow: hidden;
  border-radius: 10px;
}
.index-box-2 .info * {
  position: relative;
  z-index: 1;
}
.index-box-2 .iconImg {
  display: block;
  height: 0.55rem;
  margin: 0 auto;
}
.index-box-2 h4 {
  font-size: var(--fs36);
  color: #fff;
  line-height: 0.48rem;
  font-weight: 700;
  margin-top: 0.2rem;
}
.index-box-2 p {
  font-size: var(--fs16);
  color: #fff;
  text-transform: capitalize;
  line-height: 0.24rem;
  margin: 0.12rem auto 0.87rem;
}
.index-box-2 .brief {
  font-size: var(--fs14);
  line-height: 0.3rem;
  color: #fff;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.7rem);
  -webkit-transform: translateY(-0.7rem);
  -moz-transform: translateY(-0.7rem);
  -ms-transform: translateY(-0.7rem);
  -o-transform: translateY(-0.7rem);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.btns .swiper-btn {
  position: relative;
  top: 0;
  transform: none;
  margin-right: 0.82rem;
  opacity: 1;
  visibility: visible;
}
.btns .swiper-btn:last-child {
  margin-right: 0;
}
.btns .swiper-btn.prev {
  left: 0;
}
.btns .swiper-btn.next {
  right: 0;
}
.swiper-btn {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  width: 0.5rem;
  height: 0.5rem;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.swiper-btn:hover:before {
  opacity: 0;
  visibility: hidden;
}
.swiper-btn:hover:after {
  visibility: visible;
  opacity: 0.9;
}
.swiper-btn:before,
.swiper-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.swiper-btn:before {
  background-color: #fff;
}
.swiper-btn:after {
  background-image: linear-gradient(-90deg, #529936 0%, #005a43 100%);
  background-blend-mode: normal, normal;
  opacity: 0;
  visibility: hidden;
}
.swiper-btn i {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.swiper-btn i:before,
.swiper-btn i:after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0.12rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.swiper-btn.prev {
  left: -0.8rem;
}
.swiper-btn.prev:hover i:before {
  left: -100%;
}
.swiper-btn.prev:hover i:after {
  left: 0;
}
.swiper-btn.prev i:before {
  left: 0;
  background-image: url(../img/ileft2.png);
}
.swiper-btn.prev i:after {
  left: 100%;
  background-image: url(../img/ileft.png);
}
.swiper-btn.next {
  right: -0.8rem;
}
.swiper-btn.next:hover i:before {
  right: -100%;
}
.swiper-btn.next:hover i:after {
  right: 0;
}
.swiper-btn.next i:before {
  right: 0;
  background-image: url(../img/iright2.png);
}
.swiper-btn.next i:after {
  right: 100%;
  background-image: url(../img/iright.png);
}
.swiper-btn.grey {
  opacity: 1;
  visibility: visible;
}
.swiper-btn.grey:before {
  background-color: #e8e8e8;
  opacity: 0.8;
}
.swiper-btn.grey.prev i:before {
  background-image: url(../img/ileft3.png);
}
.swiper-btn.grey.prev i:after {
  background-image: url(../img/ileft.png);
}
.swiper-btn.grey.next i:before {
  background-image: url(../img/iright3.png);
}
.swiper-btn.grey.next i:after {
  background-image: url(../img/iright.png);
}
.index-box-3 .swiper-slide-active .pic img {
  opacity: 1;
  visibility: visible;
}
.index-box-3 .swiper-slide-active .info {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.index-box-3 .pic {
  width: 15.36rem;
  margin: 0 auto;
}
.index-box-3 .pic img {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
}
.index-box-3 .info {
  position: absolute;
  right: 0.96rem;
  top: 50%;
  margin-top: -1.43rem;
  z-index: 10;
  width: 25%;
  height: 2.86rem;
  padding: 0.48rem 0.6rem 0 0.52rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(2rem);
  -webkit-transform: translateX(2rem);
  -moz-transform: translateX(2rem);
  -ms-transform: translateX(2rem);
  -o-transform: translateX(2rem);
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition-delay: 0.35s;
}
.index-box-3 .info:before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-90deg, #529936 0%, #005a43 100%);
  background-blend-mode: normal, normal;
  opacity: 0.95;
  border-radius: 0.45rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.index-box-3 .inner {
  position: relative;
  z-index: 10;
}
.index-box-3 .title {
  color: #fff;
  font-size: var(--fs30);
  line-height: 0.36rem;
  font-family: "medium";
}
.index-box-3 p {
  font-size: var(--fs16);
  color: #bad6af;
  line-height: 0.3rem;
  max-height: 0.9rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0.08rem auto 0.2rem;
}
.index-box-3 .index-more {
  margin: 0;
}
.index-box-3 .index-more:hover {
  color: #61b17b;
  background-color: #fff;
}
.index-box-3 .index-more:after {
  display: none;
}
.index-box-3 .prev {
  left: 0.8rem;
}
.index-box-3 .next {
  right: 0.26rem;
}
.index-box-4 {
  position: relative;
  z-index: 10;
}
.index-box-4 .swiper-slide {
  width: 29.3%;
  margin-right: 6.05%;
  background-color: #f5f5f5;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.index-box-4 .swiper-slide:last-child {
  margin-right: 0;
}
.index-box-4 .swiper-slide:hover {
  background-color: #61b17b;
}
.index-box-4 .swiper-slide:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.index-box-4 .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.index-box-4 .swiper-slide:hover .date {
  color: rgba(255, 255, 255, 0.5);
}
.index-box-4 .swiper-slide:hover .title {
  color: #fff;
}
.index-box-4 .swiper-slide:hover .imore {
  background-image: url(../img/more2.png);
}
.index-box-4 .info {
  padding: 0.32rem 0.4rem 0.42rem;
}
.index-box-4 .date {
  font-size: var(--fs18);
  color: rgba(51, 51, 51, 0.3);
  font-family: "mb";
  line-height: 0.24rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.index-box-4 .title {
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #353432;
  font-family: "medium";
  height: 0.72rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.15rem auto 0.23rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.index-box-4 .index-more {
  margin-top: 0.9rem;
}
.index-box-5 {
  background-image: linear-gradient(90deg, #f5f9f4 0%, #b8d9be 100%);
  background-blend-mode: normal, normal;
  padding: 1.4rem 0 1.32rem;
}
.index-box-5 .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.index-box-5 .partner-box {
  width: 75%;
}
.index-box-5 .swiper-container {
  padding: 0.2rem 0;
}
.index-box-5 .other-box {
  width: 20%;
  padding-top: 0.73rem;
}
.index-box-5 .btns {
  margin-top: 0.33rem;
}
.index-box-5 .desc {
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-family: "light";
}
.partner-box ul {
  list-style: none;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.partner-box li:nth-child(6n) {
  margin-right: 0;
}
.partner-box li:nth-child(-n+6) {
  margin-top: 0;
}
.partner-box .swiper-slide,
.partner-box li {
  background-color: #fff;
  box-shadow: 4px 6px 38px 0px rgba(135, 135, 135, 0.13);
  border-radius: 0.1rem;
}
.partner-box .pic img {
  height: 1.2rem;
  object-fit: contain;
}
/*分页*/
.pageNum {
  text-align: center;
  font-size: 0;
  margin-top: 0.8rem;
}
.pageNum a {
  display: inline-block;
  color: #4d4d4d;
  font-size: 14px;
  vertical-align: middle;
  margin: 0 0.1rem;
  width: 0.48rem;
  height: 0.48rem;
  line-height: 0.46rem;
  background-color: #fff;
  border: solid 1px #eaeaea;
  text-align: center;
  transition: background 0.5s ease;
  -webkit-transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -ms-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
}
.pageNum a:first-child {
  margin-left: 0;
}
.pageNum a:last-child {
  margin-right: 0;
}
.pageNum .dot {
  line-height: 0.38rem;
  font-family: "arial";
}
.pageNum .btn {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 9px;
}
.pageNum .prev {
  background-image: url(../img/iprev2.png);
}
.pageNum .prev:hover {
  background-image: url(../img/iprev.png);
}
.pageNum .next {
  background-image: url(../img/inext2.png);
}
.pageNum .next:hover {
  background-image: url(../img/inext.png);
}
.pageNum a:hover,
.pageNum .on {
  color: #fff;
  background-color: #61b17b;
}
.pageMore {
  display: none;
  margin-top: 0.8rem;
}
.pageMore a {
  display: block;
  width: 100%;
  text-align: center;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #61b17b;
  color: #fff;
  font-size: 12px;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
.page-banner-wrapper {
  position: relative;
}
.page-banner-wrapper .info {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  align-items: center;
}
.page-banner-wrapper h2 {
  color: #fff;
  font-size: var(--fs48);
  font-weight: 700;
  line-height: 0.6rem;
}
.page-box {
  padding: 0.94rem 0 1.8rem;
}
.page-box .index-title {
  margin-bottom: 0.72rem;
}
.form-box {
  width: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  position: relative;
  z-index: 20;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.form-box .group {
  position: relative;
  width: 15.625%;
  background-color: #ffffff;
  margin-right: 0.2rem;
}
.form-box .group:last-child {
  margin-right: 0;
}
.form-box p {
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-family: "medium";
  margin-bottom: 0.18rem;
}
.form-box .caption {
  position: relative;
  cursor: pointer;
  font-size: var(--fs16);
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.6rem;
  padding: 0 0.4rem 0 0.2rem;
  background-color: #fff;
  border: solid 1px #dcdcdc;
}
.form-box .caption.on:after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.form-box .caption:after {
  content: "";
  display: block;
  width: 0.17rem;
  height: 100%;
  background: url(../img/idown.png) no-repeat left center;
  background-size: contain;
  position: absolute;
  right: 0.2rem;
  top: 0;
  z-index: 10;
}
.form-box .list {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 2.45rem;
  overflow-y: auto;
  display: none;
  border: solid 1px #dcdcdc;
  border-top: none;
}
.form-box .list a {
  display: block;
  line-height: 0.48rem;
  padding: 0 0.2rem;
  font-size: var(--fs16);
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #dcdcdc;
}
.form-box .list a:hover,
.form-box .list a.on {
  color: #61b17b;
}
.form-box .list a:last-child {
  border-bottom: none;
}
.form-box .submit {
  width: 1.2rem;
  line-height: 0.62rem;
  height: 0.62rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs18);
  background-color: #61b17b;
  transition: background 0.35s ease;
  -webkit-transition: background 0.35s ease;
  -moz-transition: background 0.35s ease;
  -ms-transition: background 0.35s ease;
  -o-transition: background 0.35s ease;
}
.form-box .submit:hover {
  background-color: #005a43;
}
.pagebg {
  position: relative;
  overflow: hidden;
}
.pagebg.animated:before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.pagebg:before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  width: 21.35%;
  height: 4.6rem;
  background: url(../img/jobbg.png) no-repeat right top;
  background-size: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition-delay: 0.35s;
  transform: translateX(22%);
  -webkit-transform: translateX(22%);
  -moz-transform: translateX(22%);
  -ms-transform: translateX(22%);
  -o-transform: translateX(22%);
}
.pagebg .box-container {
  position: relative;
  z-index: 10;
}
.job-wrapper .jobbg {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: 23.17%;
  height: 3.85rem;
  background: url(../img/jobbg2.png) no-repeat left bottom;
  background-size: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition-delay: 0.35s;
  transform: translateX(-24%);
  -webkit-transform: translateX(-24%);
  -moz-transform: translateX(-24%);
  -ms-transform: translateX(-24%);
  -o-transform: translateX(-24%);
}
.job-wrapper .jobbg.animated {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.job-wrapper .item {
  background-color: #f5f5f5;
  border-top: 2px solid #e7e7e7;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  margin-bottom: 0.4rem;
}
.job-wrapper .item:last-child {
  margin-bottom: 0;
}
.job-wrapper .item.on {
  border-color: #61b17b;
  background-color: #fff;
  box-shadow: 0px 4px 25px 0px rgba(16, 16, 16, 0.1);
}
.job-wrapper .item.on .title-box h4 {
  color: #61b17b;
}
.job-wrapper .item.on .desc {
  display: none;
}
.job-wrapper .item.on .icon {
  background-color: #61b17b;
}
.job-wrapper .item.on .icon i:before,
.job-wrapper .item.on .icon i:after {
  background-color: #fff;
}
.job-wrapper .item.on .icon i:after {
  transform: rotate(90deg);
}
.job-wrapper .item .caption {
  font-size: var(--fs18);
  color: #323232;
  line-height: 0.3rem;
  font-family: "medium";
  margin-bottom: 2px;
}
.job-wrapper .top {
  position: relative;
  cursor: pointer;
  padding-top: 0.3rem;
  padding-bottom: 0.46rem;
}
.job-wrapper .detail,
.job-wrapper .top {
  padding-right: 1.3rem;
  padding-left: 0.4rem;
}
.job-wrapper .detail {
  padding-bottom: 0.52rem;
  display: none;
}
.job-wrapper .icon {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  position: absolute;
  right: 0.4rem;
  top: 0.36rem;
  z-index: 10;
  background-color: #fff;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.job-wrapper .icon i {
  position: relative;
  display: block;
  width: 0.2rem;
  height: 0.2rem;
  margin: 0 auto;
}
.job-wrapper .icon i:after,
.job-wrapper .icon i:before {
  content: "";
  position: absolute;
  z-index: 10;
  background-color: #5eb07b;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.job-wrapper .icon i:before {
  width: 100%;
  left: 0;
  top: 50%;
  height: 0.04rem;
  margin-top: -0.02rem;
}
.job-wrapper .icon i:after {
  width: 0.04rem;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -0.02rem;
}
.job-wrapper .title-box {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.job-wrapper .title-box h4 {
  font-size: 0.22rem;
  color: #17171d;
  line-height: 0.3rem;
  font-family: "medium";
  min-width: 23.4%;
  margin-right: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-width: 70%;
  transition: color 0.35s ease;
  -webkit-transition: color 0.35s ease;
  -moz-transition: color 0.35s ease;
  -ms-transition: color 0.35s ease;
  -o-transition: color 0.35s ease;
}
.job-wrapper .other {
  font-size: 0;
}
.job-wrapper .other span {
  position: relative;
  display: inline-block;
  font-size: var(--fs14);
  color: rgba(0, 0, 0, 0.6);
  line-height: 0.3rem;
  padding-right: 0.14rem;
  margin-right: 0.12rem;
}
.job-wrapper .other span:last-child {
  padding-right: 0;
  margin-right: 0;
}
.job-wrapper .other span:last-child:after {
  display: none;
}
.job-wrapper .other span:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0.14rem;
  right: 0;
  top: 50%;
  margin-top: -0.07rem;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.4);
}
.job-wrapper .desc {
  font-size: var(--fs16);
  color: rgba(51, 51, 51, 0.6);
  line-height: 0.3rem;
  margin-top: 0.27rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 0.6rem;
}
.job-wrapper .content {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.3rem;
  margin-bottom: 0.28rem;
}
.job-wrapper .send,
.job-wrapper .send a {
  font-size: var(--fs16);
  color: #010101;
  line-height: 0.3rem;
}
.job-wrapper .send a:hover {
  color: #61b17b;
  background-size: 100% 1px;
  background-position: 0 100%;
}
.job-wrapper .send a {
  display: inline-block;
  background: url(../img/line2.jpg) no-repeat;
  background-size: 0 1px;
  background-position: 100% 100%;
  transition: background-size 0.7s ease;
}
.contactbg {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: 36.25%;
  height: 2.23rem;
  background: url(../img/contactbg.png) no-repeat left bottom;
  background-size: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition-delay: 0.35s;
  transform: translateX(-37%);
  -webkit-transform: translateX(-37%);
  -moz-transform: translateX(-37%);
  -ms-transform: translateX(-37%);
  -o-transform: translateX(-37%);
}
.contactbg.animated {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.contact-wrapper .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.contact-wrapper .info {
  width: 43.3%;
  padding-right: 1.8rem;
}
.contact-wrapper .info h1 {
  font-size: var(--fs30);
  font-family: "medium";
  line-height: 0.36rem;
  margin-bottom: 0.75rem;
}
.contact-wrapper .info ul {
  list-style: none;
}
.contact-wrapper .info ul li {
  position: relative;
  padding-left: 1.06rem;
  margin-bottom: 0.44rem;
}
.contact-wrapper .info ul li:last-child {
  margin-bottom: 0;
}
.contact-wrapper .info ul li:hover .icon {
  transform: rotateY(180deg);
}
.contact-wrapper .info p {
  font-size: var(--fs18);
  color: #999;
  line-height: 24px;
  margin-bottom: 0.07rem;
}
.contact-wrapper .icon {
  width: 0.66rem;
  position: absolute;
  left: 0;
  top: -0.03rem;
  z-index: 10;
  transition: transform 0.35s ease;
  -webkit-transition: transform 0.35s ease;
  -moz-transition: transform 0.35s ease;
  -ms-transition: transform 0.35s ease;
  -o-transition: transform 0.35s ease;
}
.contact-wrapper .tel {
  color: #61b17b;
  font-size: var(--fs24);
  font-family: "mb";
  line-height: 0.3rem;
}
.contact-wrapper .email,
.contact-wrapper .address {
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.contact-wrapper .map {
  width: 48.83%;
  position: relative;
  overflow: hidden;
  height: 4.5rem;
}
.contact-wrapper .map .img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-wrapper .qrcode {
  position: absolute;
  right: 0;
  top: 1.42rem;
  z-index: 10;
  width: 1.6rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.contact-wrapper .qrcode img {
  display: block;
  width: 100%;
}
.case-box {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-flow: wrap;
}
.case-box .item {
  position: relative;
  width: 47.4%;
  margin-top: 0.88rem;
  background: #f7f7f7;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.case-box .item:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #61b17b;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.case-box .item:hover {
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.case-box .item:hover:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.case-box .item:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.case-box .item:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.case-box .item:hover .title {
  color: #61b17b;
}
.case-box .item:hover .imore.on {
  background-image: url(../img/more3.png);
}
.case-box .item:nth-child(-n+2) {
  margin-top: 0;
}
.case-box .info {
  padding: 0.36rem 0.6rem 0.5rem;
}
.case-box .title {
  font-size: var(--fs24);
  color: #393435;
  font-family: "medium";
  line-height: 0.3rem;
  height: 0.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.case-box .desc {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.26rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 0.52rem;
  margin: 0.2rem auto 0.44rem;
}
.case-box .other {
  position: relative;
  font-size: 0;
  padding-right: 0.6rem;
}
.case-box .other span {
  display: inline-block;
  font-size: var(--fs14);
  color: #999;
  margin-right: 0.48rem;
}
.case-box .other span:last-child {
  margin-right: 0;
}
.case-box .other img {
  display: inline-block;
  height: 0.13rem;
  margin-right: 0.1rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.case-box .other b {
  margin: 0 0.14rem 0 0.2rem;
  font-size: var(--fs30);
  color: #666;
  font-family: "mm";
}
.case-box .other i {
  font-size: var(--fs16);
  color: #666;
  vertical-align: top;
  display: inline-block;
}
.case-box .imore {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
}
#glass {
  background: #fff;
  position: absolute;
  border-radius: 50%;
  border: 3px #e2e2e2 solid;
  display: none;
  background-repeat: no-repeat;
  z-index: 80;
}
.caseinfo-wrapper .box-1 {
  position: relative;
  padding-top: 1.18rem;
}
.caseinfo-wrapper .box-1 .casebg {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: calc(100% - 3.94rem);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.caseinfo-wrapper .box-1 .box-container {
  position: relative;
  z-index: 10;
}
.caseinfo-wrapper .box-1 .info {
  text-align: center;
  margin-bottom: 0.44rem;
}
.caseinfo-wrapper .box-1 h1 {
  font-size: var(--fs48);
  color: #fff;
  font-weight: 700;
  line-height: 0.6rem;
  margin-bottom: 0.26rem;
}
.caseinfo-wrapper .box-1 .brief {
  font-size: var(--fs24);
  color: #fff;
  line-height: 0.36rem;
}
.caseinfo-wrapper .box-1 .swiper-btn {
  opacity: 1;
  visibility: visible;
}
.caseinfo-wrapper .box-1 .swiper-btn.prev {
  left: -0.96rem;
}
.caseinfo-wrapper .box-1 .swiper-btn.next {
  right: -0.96rem;
}
.caseinfo-wrapper .swiper-btn:before {
  background-color: #e5e5e5;
}
.caseinfo-wrapper .content {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  padding-right: 0.7rem;
}
.caseinfo-wrapper .content b {
  font-size: var(--fs18);
}
.caseinfo-wrapper .data {
  margin-top: 0.48rem;
}
.caseinfo-wrapper .data li {
  text-align: center;
  position: relative;
  width: 20%;
  padding: 0 0.3rem;
}
.caseinfo-wrapper .data li:after {
  content: "";
  width: 1px;
  height: 0.2rem;
  background-color: #e0e0e0;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.1rem;
  z-index: 1;
}
.caseinfo-wrapper .data li:last-child:after {
  display: none;
}
.caseinfo-wrapper .data .num {
  font-size: var(--fs36);
  font-family: "mm";
  font-weight: 700;
  line-height: 0.36rem;
}
.caseinfo-wrapper .data p {
  font-size: var(--fs14);
  color: #999;
  line-height: 0.24rem;
  margin-bottom: 0;
  margin-top: 0.06rem;
}
.caseinfo-wrapper .data p img {
  display: inline-block;
  width: 0.1rem;
  vertical-align: middle;
  margin-left: 0.06rem;
}
.caseinfo-wrapper .box-2 {
  margin-top: 0.82rem;
}
.caseinfo-wrapper .box-3 {
  margin-top: 1.28rem;
  padding: 0.8rem 0 1.8rem;
  background-color: #f7f7f7;
}
.caseinfo-wrapper .box-3 .top {
  position: relative;
  margin-bottom: 0.62rem;
}
.caseinfo-wrapper .box-3 .top h3 {
  font-size: var(--fs30);
  color: #222;
  line-height: 0.48rem;
  font-weight: 700;
}
.caseinfo-wrapper .box-3 .btns {
  position: absolute;
  right: 0;
  top: 0.17rem;
  z-index: 10;
}
.caseinfo-wrapper .box-3 .btns .swiper-btn {
  margin-right: 0.3rem;
  box-shadow: none;
}
.caseinfo-wrapper .box-3 .btns .swiper-btn:before {
  background-color: #e5e5e5;
}
.caseinfo-wrapper .box-3 .swiper-slide {
  background: #fff;
}
.caseinfo-wrapper .box-3 .swiper-slide:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.caseinfo-wrapper .box-3 .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.caseinfo-wrapper .box-3 .swiper-slide:hover .title {
  color: #61b17b;
}
.caseinfo-wrapper .box-3 .swiper-slide:hover .imore.on {
  background-image: url(../img/more3.png);
}
.caseinfo-wrapper .box-3 .info {
  padding: 0.3rem 0.5rem 0.26rem;
}
.caseinfo-wrapper .box-3 .title {
  font-size: 0.22rem;
  line-height: 0.3rem;
  font-weight: 700;
  height: 0.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.caseinfo-wrapper .box-3 .size {
  font-size: var(--fs16);
  color: #343434;
  margin: 0.47rem auto 0.07rem;
}
.caseinfo-wrapper .box-3 .size span {
  font-size: var(--fs30);
  color: #61b17b;
  font-family: "mm";
  display: inline-block;
  line-height: 0.3rem;
  margin-right: 0.08rem;
}
.caseinfo-wrapper .box-3 p {
  font-size: var(--fs14);
  color: #999;
  padding-left: 0.24rem;
  line-height: 0.3rem;
  background: url(../img/size2.png) no-repeat center left;
  background-size: 14px;
}
.caseinfo-wrapper .box-3 .bottom {
  position: relative;
  padding-right: 0.6rem;
}
.caseinfo-wrapper .box-3 .imore {
  position: absolute;
  right: 0;
  top: 0.05rem;
  z-index: 10;
}
.boss-wrapper .pic,
.boss-wrapper .info {
  width: 42.45%;
  margin-left: auto;
  margin-right: auto;
}
.boss-wrapper .info {
  text-align: center;
  margin-top: 0.52rem;
}
.boss-wrapper .info p {
  color: #666;
}
.boss-wrapper .name {
  font-size: var(--fs36);
  color: #252525;
  line-height: 0.48rem;
  font-weight: 700;
}
.boss-wrapper .info p,
.boss-wrapper .level {
  font-size: var(--fs24);
  font-family: "medium";
  line-height: 0.36rem;
}
.boss-wrapper .level {
  margin: 0.16rem auto 0.08rem;
}
.news-wrapper .first-box {
  width: 100%;
  margin-bottom: 1rem;
  background-color: #f6f6f6;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.news-wrapper .first-box:hover {
  background-color: #fff;
  box-shadow: 1px 9px 24px 0px rgba(0, 0, 0, 0.14);
}
.news-wrapper .first-box:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.news-wrapper .first-box:hover .title {
  color: #61b17b;
}
.news-wrapper .first-box a {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.news-wrapper .first-box .pic {
  width: 45.31%;
}
.news-wrapper .first-box .info {
  width: 54.69%;
  padding: 0.44rem 0.42rem 0 0.72rem;
}
.news-wrapper .first-box .title,
.news-wrapper .first-box .desc {
  padding-right: 0.7rem;
}
.news-wrapper .first-box .title {
  font-size: 0.32rem;
  line-height: 0.48rem;
  max-height: 0.96rem;
  margin-top: 0.32rem;
}
.news-wrapper .first-box .desc {
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.9rem;
  margin: 0.16rem auto 0.32rem;
}
.news-wrapper .first-box .index-more {
  display: inline-block;
}
.news-wrapper .time {
  text-align: right;
  font-size: var(--fs18);
  color: #c9c9c9;
  font-family: "mr";
}
.news-wrapper .time span {
  font-size: 0.6rem;
  font-family: "mb";
  color: #61b17b;
  display: inline-block;
  line-height: 0.6rem;
  height: 0.6rem;
  margin-right: 0.23rem;
}
.news-wrapper .time span:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.6rem;
  background-color: #9c9c9c;
  transform: rotate(45deg);
  margin-left: 0.2rem;
  transform-origin: left bottom;
}
.news-wrapper .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: "medium";
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.news-wrapper .desc {
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news-wrapper .list ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.news-wrapper .list ul li {
  position: relative;
  width: 29.3%;
  list-style: none;
  margin-right: 6.05%;
  margin-top: 0.96rem;
  background-color: #f6f6f6;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.news-wrapper .list ul li:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #61b17b;
  opacity: 0.95;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
.news-wrapper .list ul li:hover {
  background-color: #fff;
  box-shadow: 1px 9px 24px 0px rgba(0, 0, 0, 0.14);
}
.news-wrapper .list ul li:hover:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.news-wrapper .list ul li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.news-wrapper .list ul li:hover .title {
  color: #61b17b;
}
.news-wrapper .list ul li a {
  display: block;
}
.news-wrapper .list .pic img {
  height: 3.1rem;
  object-fit: cover;
}
.news-wrapper .list .info {
  padding: 0.52rem 0.54rem 0.45rem;
}
.news-wrapper .list .title {
  font-size: var(--fs20);
  line-height: 0.3rem;
  height: 0.6rem;
}
.news-wrapper .list .desc {
  line-height: 0.28rem;
  height: 0.84rem;
  margin: 0.13rem auto 0.16rem;
}
.news-wrapper .list p {
  font-size: var(--fs18);
  color: #c9c9c9;
  line-height: 0.3rem;
  font-family: "mr";
}
.newsinfo-wrapper .top {
  position: relative;
  padding: 0.72rem 0 0.6rem;
  background-color: #fff;
}
.newsinfo-wrapper .top .box-container {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-right: 1.95rem;
}
.newsinfo-wrapper .top h1 {
  font-size: 0.32rem;
  color: #404040;
  line-height: 0.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.newsinfo-wrapper .time {
  font-size: var(--fs18);
  color: #ccc;
  font-family: "mr";
  line-height: 0.3rem;
}
.newsinfo-wrapper .time img {
  vertical-align: middle;
  margin-right: 0.1rem;
  position: relative;
  top: -2px;
}
.newsinfo-wrapper .main {
  background-color: #f5f5f5;
  border-top: 1px solid #f0f0f0;
}
.newsinfo-wrapper .main > .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.newsinfo-wrapper .content-box {
  width: 70.05%;
  background-color: #fff;
  padding: 0.62rem 0.72rem 1rem 0.6rem;
}
.newsinfo-wrapper .content {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.34rem;
}
.newsinfo-wrapper .bottom {
  width: 100%;
}
.newsinfo-wrapper .relative-box {
  margin-top: 1.7rem;
}
.newsinfo-wrapper .relative-box p,
.newsinfo-wrapper .relative-box p a {
  color: #666;
}
.newsinfo-wrapper .relative-box p {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  line-height: 0.48rem;
  padding: 0 0.24rem;
  border: 1px solid #f7f7f7;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  margin-bottom: 0.2rem;
  color: #666;
}
.newsinfo-wrapper .relative-box p:lsat-child {
  margin-bottom: 0;
}
.newsinfo-wrapper .relative-box p:hover {
  background-color: #fff;
  border-color: #61b17b;
}
.newsinfo-wrapper .relative-box p b {
  color: #333;
  margin-right: 0.1rem;
}
.newsinfo-wrapper .relative-box a {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  max-width: 80%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #333;
}
.newsinfo-wrapper .relative-box a:hover {
  color: #61b17b;
}
.newsinfo-wrapper .recommend-box {
  position: relative;
  flex: 1;
  padding: 0.42rem 0.44rem 0 0.3rem;
}
.newsinfo-wrapper .recommend-box:before {
  content: "";
  height: 0.04rem;
  width: 100%;
  position: absolute;
  left: 0;
  top: -0.04rem;
  z-index: 10;
  background-image: linear-gradient(90deg, #00a4e1 0%, #569f34 100%), linear-gradient(#a8cb9a, #a8cb9a);
  background-blend-mode: normal, 
		normal;
}
.newsinfo-wrapper .recommend-box .caption {
  font-size: var(--fs18);
  color: #61b17b;
  line-height: 0.3rem;
  margin-bottom: 0.42rem;
}
.newsinfo-wrapper .recommend-box ul {
  margin-bottom: 0.42rem;
}
.newsinfo-wrapper .recommend-box li {
  list-style-type: none;
  margin-bottom: 0.38rem;
}
.newsinfo-wrapper .recommend-box li:last-child {
  margin-bottom: 0;
}
.newsinfo-wrapper .recommend-box li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.newsinfo-wrapper .recommend-box li:hover .title {
  color: #61b17b;
}
.newsinfo-wrapper .recommend-box li a {
  display: block;
}
.newsinfo-wrapper .recommend-box .title {
  color: #666;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  line-height: 0.24rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 0.48rem;
  font-size: var(--fs14);
  margin-top: 0.24rem;
}
.newsinfo-wrapper .index-more {
  display: inline-block;
}
.share-box {
  width: 1.5rem;
  position: sticky;
  height: 100%;
  top: 1rem;
  margin-bottom: 1rem;
}
.share-box a {
  display: block;
  line-height: 0.7rem;
  padding-left: 0.28rem;
  font-size: var(--fs16);
  color: #666;
  background-color: #fafafa;
  border-bottom: 1px solid #ebebeb;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.share-box a:hover {
  color: #61b17b;
}
.share-box a.return {
  color: #fff !important;
  padding-left: 0;
  text-align: center;
  background-color: #61b17b;
}
.share-box a.return img {
  margin-right: 0;
  margin-left: 10px;
  width: 0.17rem;
}
.share-box img {
  vertical-align: middle;
  width: 0.3rem;
  margin-right: 0.15rem;
}
.team-wrapper ul {
  list-style: none;
}
.team-wrapper ul li {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  margin-bottom: 0.6rem;
}
.team-wrapper ul li:last-child {
  margin-bottom: 0;
}
.team-wrapper .pic {
  width: 23.64%;
}
.team-wrapper .info {
  flex: 1;
  padding-top: 0.28rem;
  padding-left: 0.35rem;
}
.team-wrapper .name {
  font-size: var(--fs36);
  color: #000;
  line-height: 0.48rem;
  font-weight: 700;
  margin-bottom: 0.28rem;
}
.team-wrapper p {
  font-size: var(--fs24);
  color: #666;
  line-height: 0.36rem;
}
.mt {
  margin-top: 1.2rem;
}
.solution-wrapper {
  padding-bottom: 0!important;
}
.solution-wrapper .box-1 .brief {
  font-size: var(--fs24);
  line-height: 0.42rem;
  text-align: center;
  margin: 0 auto;
}
.solution-wrapper .box-2 {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 6.6rem;
  padding: 1.8rem 0 1.2rem;
}
.solution-wrapper .box-2 .pic {
  display: none;
}
.solution-wrapper .box-2 ul {
  list-style: none;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.solution-wrapper .box-2 li {
  color: #fff;
  width: 41.67%;
  line-height: 0.36rem;
  font-size: var(--fs20);
  padding-left: 0.2rem;
  position: relative;
  min-height: 1.08rem;
  margin-top: 0.6rem;
}
.solution-wrapper .box-2 li:nth-child(-n+2) {
  margin-top: 0;
}
.solution-wrapper .box-2 li:before {
  content: "";
  width: 2px;
  height: 83.3%;
  background-image: linear-gradient(0deg, #00a4e1 0%, #569f34 100%);
  position: absolute;
  left: 0;
  top: 8.35%;
  z-index: 10;
}
.solution-wrapper .box-3 {
  position: relative;
}
.solution-wrapper .box-3 .swiper-container {
  padding: 0 calc((100% - 15.36rem) / 2);
}
.solution-wrapper .box-3 .swiper-slide {
  width: 25%;
}
.solution-wrapper .box-3 .swiper-slide:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.solution-wrapper .box-3 .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.solution-wrapper .box-3 .pic img {
  height: 3.6rem;
  object-fit: cover;
}
.solution-wrapper .box-3 p {
  font-size: var(--fs24);
  line-height: 0.3rem;
  margin-top: 0.36rem;
}
.solution-wrapper .box-3 .swiper-btn {
  opacity: 1;
  visibility: visible;
  margin-top: -0.33rem;
}
.solution-wrapper .box-3 .swiper-btn.prev {
  left: calc((100% - 15.36rem) / 2 - 0.3rem);
}
.solution-wrapper .box-3 .swiper-btn.next {
  right: calc((100% - 15.36rem) / 2);
}
.solution-wrapper .box-4 {
  padding: 1.2rem 0;
  background-color: #f4f4f4;
  position: relative;
  overflow: hidden;
}
.solution-wrapper .box-4 .box-container {
  position: relative;
  z-index: 10;
}
.solution-wrapper .box-4 .main {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
  justify-content: center;
}
.solution-wrapper .box-4 .main.four .item {
  width: 23.56%;
}
.solution-wrapper .box-4 .item {
  cursor: default;
  width: 31.25%;
  margin-right: 3.125%;
  margin-top: 3.125%;
  background-color: #fff;
  border-radius: 0.1rem;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  text-align: center;
  padding: 0.73rem 0.6rem 0.56rem;
}
.solution-wrapper .box-4 .item:hover {
  background-color: #61b17b;
}
.solution-wrapper .box-4 .item:hover h5,
.solution-wrapper .box-4 .item:hover p {
  color: #fff;
}
.solution-wrapper .box-4 .item:hover .init {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.78);
  -webkit-transform: scale(0.78);
  -moz-transform: scale(0.78);
  -ms-transform: scale(0.78);
  -o-transform: scale(0.78);
}
.solution-wrapper .box-4 .item:hover .on {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.solution-wrapper .box-4 h5,
.solution-wrapper .box-4 p {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.solution-wrapper .box-4 h5 {
  font-size: var(--fs24);
  line-height: 0.3rem;
  margin: 0.26rem auto 0.15rem;
}
.solution-wrapper .box-4 p {
  font-size: var(--fs16);
  color: #9a9a9a;
  line-height: 0.3rem;
}
.solution-wrapper .box-4 .icon {
  position: relative;
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 auto;
}
.solution-wrapper .box-4 .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
}
.solution-wrapper .box-4 .on {
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  opacity: 0;
  visibility: hidden;
}
.solution-wrapper .box-4 .canvas {
  position: absolute;
  left: 0;
  bottom: -3rem;
  z-index: 0;
  width: 100%;
  height: 6rem;
}
.solution-wrapper .box-5 ul {
  list-style: none;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.solution-wrapper .box-5 ul.two {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.solution-wrapper .box-5 ul.two li {
  width: 49.09%;
  margin-right: 0;
}
.solution-wrapper .box-5 ul.two .info {
  padding: 0 0.6rem;
}
.solution-wrapper .box-5 ul.six li:nth-child(-n+2) {
  width: 49.09%;
  margin-right: 1.82%;
}
.solution-wrapper .box-5 ul.six li:nth-child(-n+2) .info {
  padding: 0 0.6rem;
}
.solution-wrapper .box-5 ul.six li:nth-child(2) {
  margin-right: 0;
}
.solution-wrapper .box-5 ul.six li:nth-child(3),
.solution-wrapper .box-5 ul.six li:nth-child(4) {
  margin-top: 1.826%;
}
.solution-wrapper .box-5 ul.six li:nth-child(4) {
  margin-right: 1.826%;
}
.solution-wrapper .box-5 ul.seven li:nth-child(-n+3) {
  width: 32.03%;
  margin-right: 1.955%;
}
.solution-wrapper .box-5 ul.seven li:nth-child(7),
.solution-wrapper .box-5 ul.seven li:nth-child(3) {
  margin-right: 0;
}
.solution-wrapper .box-5 ul.seven li:nth-child(8),
.solution-wrapper .box-5 ul.seven li:nth-child(4) {
  margin-right: 1.826%;
  margin-top: 1.826%;
}
.solution-wrapper .box-5 li {
  position: relative;
  cursor: default;
  width: 23.63%;
  margin-right: 1.826%;
  margin-top: 1.826%;
}
.solution-wrapper .box-5 li:hover:after {
  visibility: visible;
  opacity: 0.9;
}
.solution-wrapper .box-5 li:hover .info {
  transform: translateY(-40%);
  -webkit-transform: translateY(-40%);
  -moz-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  -o-transform: translateY(-40%);
}
.solution-wrapper .box-5 li:hover p {
  height: 2.1rem;
  opacity: 1;
  visibility: visible;
  margin-top: 0.22rem;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.solution-wrapper .box-5 li:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: #61b17b;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.solution-wrapper .box-5 .info {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  text-align: center;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  padding: 0 0.36rem;
}
.solution-wrapper .box-5 h5 {
  font-size: var(--fs30);
  color: #fff;
  line-height: 0.36rem;
  font-family: "medium";
}
.solution-wrapper .box-5 p {
  font-size: var(--fs16);
  color: #fff;
  line-height: 0.3rem;
  height: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  -webkit-transform: translateY(-0.5rem);
  -moz-transform: translateY(-0.5rem);
  -ms-transform: translateY(-0.5rem);
  -o-transform: translateY(-0.5rem);
  transition: transform 0.6s ease, opacity 0.6s ease;
  -webkit-transition: transform 0.6s ease, opacity 0.6s ease;
  -moz-transition: transform 0.6s ease, opacity 0.6s ease;
  -ms-transition: transform 0.6s ease, opacity 0.6s ease;
  -o-transition: transform 0.6s ease, opacity 0.6s ease;
}
.loading {
  text-align: center;
  margin-top: 1.1rem;
}
.loading a {
  display: inline-block;
  animation: imgRotate 1s linear infinite;
}
.loading a:hover {
  animation-play-state: paused;
}
.loading img {
  display: block;
  width: 0.48rem;
  margin: 0 auto;
}
.about-wrapper .box-1 .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-wrapper .box-1 .info {
  width: 44.92%;
}
.about-wrapper .box-1 .info h1 {
  font-size: var(--fs48);
  font-weight: 700;
  line-height: 0.6rem;
}
.about-wrapper .box-1 .info h2 {
  font-size: var(--fs40);
  color: #61b17b;
  font-family: "light";
  line-height: 0.48rem;
  margin: 0.18rem auto 0.42rem;
}
.about-wrapper .box-1 .pic {
  width: 43.49%;
}
.about-wrapper .box-1 .content {
  color: #8a8a8a;
  line-height: 0.36rem;
}
.about-wrapper .content {
  font-size: var(--fs16);
}
.about-wrapper .box-2 {
  padding: 1.2rem 0;
  background: url(../img/aboutbg.jpg) no-repeat center center;
  background-size: cover;
}
.about-wrapper .box-2 .swiper-slide {
  width: 23.63%;
  margin-right: 1.826%;
  margin-top: 1.826%;
  background-color: #fff;
  height: auto;
  text-align: center;
  cursor: default;
  padding: 0.5rem 0.4rem 0.4rem;
}
.about-wrapper .box-2 .swiper-slide:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.about-wrapper .box-2 .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.about-wrapper .box-2 .swiper-slide:hover .line:before,
.about-wrapper .box-2 .swiper-slide:hover .line:after {
  opacity: 1;
}
.about-wrapper .box-2 .swiper-slide:hover .line span:before,
.about-wrapper .box-2 .swiper-slide:hover .line span:after {
  opacity: 1;
}
.about-wrapper .box-2 .pic {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  margin: 0 auto;
}
.about-wrapper .box-2 .pic img {
  height: 100%;
  object-fit: cover;
}
.about-wrapper .box-2 .pic,
.about-wrapper .box-2 .info {
  position: relative;
  z-index: 2;
}
.about-wrapper .box-2 .name {
  font-size: var(--fs30);
  line-height: 0.36rem;
  font-family: "medium";
  margin: 0.35rem auto 0.1rem;
}
.about-wrapper .box-2 .brief {
  font-size: var(--fs16);
  color: #666;
  line-height: 24px;
}
.about-wrapper .tab-box {
  border-bottom: solid 1px #e8e8e8;
}
.about-wrapper .tab-box .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: center;
}
.about-wrapper .tab-box a {
  position: relative;
  width: 20.83%;
  height: 1.28rem;
  background-color: #fff;
  border-right: solid 1px #e8e8e8;
  border-top: solid 1px #e8e8e8;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.about-wrapper .tab-box a:before {
  content: "";
  width: 100%;
  height: calc(100% + 1px);
  background-color: #61b17b;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  -webkit-transition: opacity 0.35s ease;
  -moz-transition: opacity 0.35s ease;
  -ms-transition: opacity 0.35s ease;
  -o-transition: opacity 0.35s ease;
}
.about-wrapper .tab-box a.active:before {
  opacity: 1;
  visibility: visible;
}
.about-wrapper .tab-box a.active .init {
  display: none;
}
.about-wrapper .tab-box a.active .on {
  display: block;
}
.about-wrapper .tab-box a:first-child {
  border-left: solid 1px #e8e8e8;
}
.about-wrapper .tab-box img {
  height: 0.6rem;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-wrapper .tab-box .init {
  display: block;
}
.about-wrapper .tab-box .on {
  display: none;
}
.about-wrapper .part > .pic {
  height: 6.2rem;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.about-wrapper .part .content {
  color: #666;
  line-height: 0.3rem;
}
.about-wrapper .part .swiper-box {
  padding: 0.6rem 0;
  background-color: #f4f4f4;
}
.about-wrapper .part .swiper-box:hover .swiper-btn {
  opacity: 1;
  visibility: visible;
}
.about-wrapper .part .swiper-box:hover .swiper-btn.prev {
  left: 0.4rem;
}
.about-wrapper .part .swiper-box:hover .swiper-btn.next {
  right: 0.4rem;
}
.about-wrapper .part .swiper-box .swiper-slide:hover .info .title,
.about-wrapper .part .swiper-box .swiper-slide:hover .info p,
.about-wrapper .part .swiper-box .swiper-slide:hover .info .brief {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.about-wrapper .part .swiper-box .swiper-slide:hover .bottom {
  opacity: 0;
  visibility: hidden;
}
.about-wrapper .part .swiper-box .swiper-slide:hover .pic img {
  opacity: 0.1;
}
.about-wrapper .part .swiper-box .pic {
  background: #61b17b;
}
.about-wrapper .part .swiper-box .pic img {
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}
.about-wrapper .part .swiper-box .info,
.about-wrapper .part .swiper-box .bottom {
  position: absolute;
  left: 0;
  z-index: 10;
  width: 100%;
}
.about-wrapper .part .swiper-box .info {
  top: 0;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  padding: 0 0.76rem;
}
.about-wrapper .part .swiper-box .info .inner {
  width: 100%;
  text-align: center;
}
.about-wrapper .part .swiper-box .info .title,
.about-wrapper .part .swiper-box .info p,
.about-wrapper .part .swiper-box .info .brief {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition-delay: 0.25s;
}
.about-wrapper .part .swiper-box .info .title,
.about-wrapper .part .swiper-box .info p {
  transform: translateY(0.8rem);
  -webkit-transform: translateY(0.8rem);
  -moz-transform: translateY(0.8rem);
  -ms-transform: translateY(0.8rem);
  -o-transform: translateY(0.8rem);
  transition-delay: 0.25s;
}
.about-wrapper .part .swiper-box .info .brief {
  transform: translateY(-0.8rem);
  -webkit-transform: translateY(-0.8rem);
  -moz-transform: translateY(-0.8rem);
  -ms-transform: translateY(-0.8rem);
  -o-transform: translateY(-0.8rem);
}
.about-wrapper .part .swiper-box .bottom {
  bottom: 0.22rem;
  padding: 0 0.35rem;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.about-wrapper .part .swiper-box p,
.about-wrapper .part .swiper-box .brief {
  font-size: var(--fs16);
  color: #fff;
}
.about-wrapper .part .swiper-box .brief {
  margin-top: 0.54rem;
  line-height: 0.3rem;
}
.about-wrapper .part .swiper-box p {
  line-height: 24px;
  margin-top: 2px;
}
.about-wrapper .part .swiper-box .title {
  font-size: var(--fs24);
  color: #fff;
  line-height: 0.3rem;
  font-weight: 700;
}
.about-wrapper .logo img {
  height: 0.6rem;
  display: block;
}
.about-wrapper .main {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-wrapper .main.animated .content-box:before {
  top: calc(100% - 11px);
}
.about-wrapper .content-box {
  position: relative;
  width: 70%;
  padding-left: 1.5rem;
}
.about-wrapper .content-box:before,
.about-wrapper .content-box:after {
  content: "";
  background: #333;
  position: absolute;
  z-index: 1;
  top: 0;
}
.about-wrapper .content-box:before {
  width: 14px;
  height: 2px;
  left: 0;
  transition: all 2s ease;
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  -o-transition: all 2s ease;
}
.about-wrapper .content-box:after {
  height: 100%;
  width: 2px;
  left: 6px;
}
.about-wrapper .part-1 .list {
  margin-top: 1rem;
}
.about-wrapper .part-1 .list ul {
  list-style: none;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.about-wrapper .part-1 .list li {
  position: relative;
  width: 31.38%;
  margin-right: 2.93%;
  margin-top: 2.93%;
}
.about-wrapper .part-1 .list li:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.about-wrapper .part-1 .list li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.about-wrapper .part-1 .list .pic:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: url(../img/shadow.png) repeat left bottom;
  background-size: 100% 100%;
}
.about-wrapper .part-1 .list .title {
  color: #fff;
  font-size: var(--fs24);
  position: absolute;
  left: 0;
  bottom: 0.26rem;
  z-index: 10;
  width: 100%;
  padding: 0 0.3rem;
  line-height: 0.3rem;
  height: 0.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.about-wrapper .part-3 .main {
  margin-top: 1rem;
}
.about-wrapper .data {
  margin-top: 0.48rem;
}
.about-wrapper .data li {
  flex: 1;
}
.about-wrapper .data p {
  color: #666;
  margin-bottom: 0.07rem;
}
.about-wrapper .data .num span {
  font-size: var(--fs48);
}
.about-wrapper .data .num i {
  font-size: 24px;
  color: #005a43;
  line-height: 0.16rem;
  height: 0.16rem;
  bottom: 0.24rem;
}
.about-wrapper .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.about-wrapper .line:before,
.about-wrapper .line:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  z-index: 11;
  opacity: 0;
}
.about-wrapper .line:before {
  top: 0;
  -webkit-animation: right 2s linear infinite;
  animation: right 2s linear infinite;
  background: -webkit-gradient(linear, right top, left top, from(#61b17b), to(transparent));
  background: linear-gradient(right, #61b17b, transparent);
}
.about-wrapper .line:after {
  bottom: 0;
  -webkit-animation: left 2s linear infinite;
  animation: left 2s linear infinite;
  background: -webkit-gradient(linear, left top, right top, from(#61b17b), to(transparent));
  background: linear-gradient(left, #61b17b, transparent);
}
.about-wrapper .line span:before,
.about-wrapper .line span:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  animation-delay: 1s;
  z-index: 11;
  opacity: 0;
}
.about-wrapper .line span:before {
  top: 0;
  left: 0;
  -webkit-animation: top 2s linear infinite;
  animation: top 2s linear infinite;
  -webkit-animation-delay: 1s;
  background: -webkit-gradient(linear, left top, left bottom, from(#61b17b), to(transparent));
  background: linear-gradient(top, #61b17b, transparent);
}
.about-wrapper .line span:after {
  bottom: 0;
  right: 0;
  -webkit-animation: bottom 2s linear infinite;
  animation: bottom 2s linear infinite;
  background: -webkit-gradient(linear, left bottom, left top, from(#61b17b), to(transparent));
  background: linear-gradient(bottom, #61b17b, transparent);
}
.page-wrapper .content {
  font-size: var(--fs16);
  line-height: 0.36rem;
}
.border .header-wrapper {
  border-bottom: 1px solid #f7f8f9;
}
.search-wrapper .result {
  margin-bottom: 0.2rem;
}
.search-wrapper .result span {
  display: inline-block;
  font-size: var(--fs16);
  margin-right: 0.3rem;
  line-height: 0.48rem;
}
.search-wrapper .result b {
  display: inline-block;
  margin: 0 4px;
  color: #cd0000;
  font-family: "mb";
  text-decoration: underline;
}
.search-wrapper .list li {
  position: relative;
  list-style: none;
  border-bottom: 1px dashed #eee;
}
.search-wrapper .list li:first-child {
  border-top: 1px dashed #eee;
}
.search-wrapper .list li:hover .title {
  color: #61b17b;
}
.search-wrapper .list li a {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  padding: 0.1rem 0;
  align-items: center;
}
.search-wrapper .list .title {
  flex: 1;
  font-size: var(--fs16);
  color: #666;
  line-height: 0.48rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.search-wrapper .list p {
  font-size: var(--fs16);
  color: #999;
  font-family: "mr";
}
.imgScale {
  position: relative;
}
.imgScale:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.imgScale:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.imgScale:before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}
.gotop {
  position: fixed;
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 3px 5px 13px 0px rgba(135, 135, 135, 0.13);
  border-radius: 0.1rem;
  right: 0.3rem;
  bottom: 10%;
  z-index: 40;
  display: none;
}
.gotop:hover:before {
  opacity: 1;
  visibility: visible;
}
.gotop:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-image: linear-gradient(-90deg, #529936 0%, #005a43 100%);
  background-blend-mode: normal, normal;
  border-radius: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.gotop i {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 10;
  width: 100%;
  height: 0.3rem;
  display: block;
  margin-top: -0.15rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/gotop.png);
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-webkit-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-moz-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-ms-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@keyframes imgRotate {
  100% {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-webkit-keyframes top {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes top {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@-webkit-keyframes bottom {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes bottom {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

