@charset "UTF-8";
@font-face {
  font-family: "dinpro";
  src: url(../fonts/dinpro/al_r.ttf) format(truetype);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "dinpro black";
  src: url(../fonts/dinpro/al_b.ttf) format(truetype);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "dinpro bold";
  src: url(../fonts/dinpro/al_b.ttf) format(truetype);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "dinpro medium";
  src: url(../fonts/dinpro/al_m.ttf) format(truetype);
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "dinpro", "微软雅黑", Arial, Helvetica, sans-serif, Microsoft Yahei;
}

.fw900 {
  font-family: "dinpro black";
}

.fw700 {
  font-family: "dinpro bold";
}

.fw500 {
  font-family: "dinpro medium";
}

.fw400 {
  font-family: "dinpro";
}

.my-container {
  max-width: 1440px;
  width: 80%;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.groui-select {
  --groui-select-height: 40px;
  --groui-select-width: 240px;
  --groui-select-radius: 4px;
  --groui-select-border-color: #e4e7ed;
  --groui-select-theme-color: #409eff;
  height: var(--groui-select-height);
  margin-right: 15px;
  display: inline-block;
  position: relative;
  background-color: #fff;
  width: var(--groui-select-width);
}
.groui-select.select-active .select-options {
  visibility: visible;
  -webkit-animation-name: selectIn;
     -moz-animation-name: selectIn;
       -o-animation-name: selectIn;
          animation-name: selectIn;
}
.groui-select.select-active .select-container .select-arrow {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.groui-select .select-container {
  width: 100%;
  cursor: pointer;
  height: 100%;
  border: solid 1px var(--groui-select-border-color);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 14px 0 19px;
  border-radius: var(--groui-select-radius);
}
.groui-select .select-container .select-label-input {
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 0;
  font-size: 16px;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: inherit;
}
.groui-select .select-container .select-icon {
  width: 11px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.groui-select .select-options {
  visibility: hidden;
  -webkit-animation-name: none;
     -moz-animation-name: none;
       -o-animation-name: none;
          animation-name: none;
  -webkit-animation-duration: 0.3s;
     -moz-animation-duration: 0.3s;
       -o-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
  position: absolute;
  min-width: var(--groui-select-width);
  left: 0;
  z-index: 9;
  padding: 10px 0;
  border-radius: var(--groui-select-radius);
  top: -webkit-calc(var(--groui-select-height) + var(--groui-select-height) * 0.2);
  top: -moz-calc(var(--groui-select-height) + var(--groui-select-height) * 0.2);
  top: calc(var(--groui-select-height) + var(--groui-select-height) * 0.2);
  max-height: var(--groui-select-width);
  border: solid 1px var(--groui-select-border-color);
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  overflow: auto;
}
.groui-select .select-options::-webkit-scrollbar {
  width: 2px;
}
.groui-select .select-options::-webkit-scrollbar-thumb {
  width: 2px;
  background-color: var(--groui-select-theme-color);
}
.groui-select .select-options .select-option {
  padding: 0 10px;
  line-height: 34px;
  cursor: pointer;
  display: block;
  text-align: left;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.groui-select .select-options .select-option:hover, .groui-select .select-options .select-option.select-option-active {
  background-color: var(--groui-select-theme-color);
  color: #fff;
}
@-webkit-keyframes selectIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translate3d(0, 15px, 0);
            transform: translate3d(0, 15px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes selectIn {
  0% {
    opacity: 0.3;
    -moz-transform: translate3d(0, 15px, 0);
         transform: translate3d(0, 15px, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes selectIn {
  0% {
    opacity: 0.3;
    transform: translate3d(0, 15px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes selectIn {
  0% {
    opacity: 0.3;
    -webkit-transform: translate3d(0, 15px, 0);
       -moz-transform: translate3d(0, 15px, 0);
            transform: translate3d(0, 15px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.my-sidebar {
  position: fixed;
  right: 0;
  bottom: 20vh;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 900;
}
.my-sidebar:hover .sidebar-text {
  padding-right: 20px;
  width: auto;
  opacity: 1;
  visibility: visible;
}
.my-sidebar .sidebar-item {
  background-color: #fff;
  cursor: pointer;
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.my-sidebar .sidebar-item:hover {
  background-color: #009D3B;
}
.my-sidebar .sidebar-item:hover .sidebar-text {
  color: #fff;
}
.my-sidebar .sidebar-item:hover .sidebar-icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.my-sidebar .sidebar-item:first-child {
  border-radius: 8px 8px 0 0;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
}
.my-sidebar .sidebar-item:last-child {
  border-radius: 0 0 8px 8px;
}
.my-sidebar .sidebar-icon {
  width: 50px;
  height: 50px;
}
.my-sidebar .sidebar-text {
  width: 0;
  padding-right: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}

.header .header-container {
 
  width: 90%;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.header .header-h5 {
  display: none;
  position: sticky;
  top: 0;
  left: 0;
  height: 50px;
  z-index: 1000;
}
.header .header-pc {
  height: 66px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header .header-pc.active {
  background-color: #fff;
}
.header .header-pc.active .header-logo1 {
  display: none;
}
.header .header-pc.active .header-logo2 {
  display: block;
}
.header .header-pc.active .right .h {
  display: block;
}
.header .header-pc.active .right .b {
  display: none;
}
.header .header-pc.active .nav .nav-item {
  color: #000000;
}
.header .header-pc .header-container {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.header .header-pc .header-logo {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header .header-pc .header-logo img {
  width: 160px;
}
.header .header-pc .header-logo2 {
  display: none;
}
.header .header-pc .nav {
  -webkit-flex: 2;
     -moz-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .header-pc .nav .nav-item {
  color: #fff;
  padding: 0 0.43rem;
}
.header .header-pc .nav .nav-item:hover {
  color: #009D3B;
}
.header .header-pc .nav .nav-item + .nav-item {
  /*margin-left: 0.86rem;*/
  
}
.header .header-pc .right {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header .header-pc .right .right-item + .right-item {
  margin-left: 0.2rem;
}
.header .header-pc .right .right-item:hover img {
  display: none;
}
.header .header-pc .right .right-item:hover img.l {
  display: block;
}
.header .header-pc .right .l {
  display: none;
}
.header .header-pc .right .h {
  display: none;
}

.footer {
  background: #202225;
}
.footer .footer-top {
  width: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer-top .top-item {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 6px;
}
.footer .footer-top .top-item:nth-child(1) {
  background: #FD5F0F;
}
.footer .footer-top .top-item:nth-child(2) {
  background: #FCCC15;
}
.footer .footer-top .top-item:nth-child(3) {
  background: #009D3B;
}
.footer .my-container {
  padding-top: 0.8rem;
  padding-bottom: 0.6rem;
}
.footer .footer-middle {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1.38rem;
}
.footer .left {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .left-item + .left-item {
  margin-left: 1.4rem;
}
.footer .left-item .f_16 {
  opacity: 0.5;
  line-height: 1.25;
}
.footer .left-item a {
  display: block;
  color: #f6f6f6;
}
.footer .left-item a:hover {
  color: #009D3B;
  opacity: 1;
}
.footer .left-item a + a {
  margin-top: 0.28rem;
}
.footer .left-item a:nth-child(1) {
  line-height: 1.7777777778;
  margin-bottom: 0.4rem;
     font-family: '微软雅黑';
  font-weight: bold;
  
}
.footer .logo {
  width: 2.5rem;
  margin-bottom: 0.4rem;
}
.footer .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 2.5rem;
  margin-bottom: 0.4rem;
  
  
}
.footer .item {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  position: relative;
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
}
.footer .item img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.footer .item img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.footer .item:hover img:nth-child(1) {
  opacity: 0;
}
.footer .item:hover img:nth-child(2) {
  opacity: 1;
}
.footer .ibt {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.74rem;
  padding-top: 0.19rem;
  width: 1.48rem;
  -webkit-transform: translateY(0.2rem);
     -moz-transform: translateY(0.2rem);
      -ms-transform: translateY(0.2rem);
       -o-transform: translateY(0.2rem);
          transform: translateY(0.2rem);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.footer .lox {
  border: 1px solid #DFDFDF;
  padding: 0.11rem;
  background: #fff;
  position: relative;
  box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.05);
}
.footer .lox::before {
  content: "";
  position: absolute;
  left: -webkit-calc(50% - 0.05rem);
  left: -moz-calc(50% - 0.05rem);
  left: calc(50% - 0.05rem);
  top: -0.05rem;
  width: 0.1rem;
  height: 0.1rem;
  border-top: 1px solid #DFDFDF;
  border-left: 1px solid #DFDFDF;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
}
.footer .lox img {
  width: 1.24rem;
}
.footer .right-link {
  min-width: 1.72rem;
  min-height: 0.4rem;
  padding: 0.2rem;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.08rem;
  margin-bottom: 0.2rem;
}
.footer .right-link:hover {
  background-color: #009D3B;
}
.footer .right-link img {
  width: 0.1rem;
  margin-left: 0.1rem;
}
.footer .right-info {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  line-height: 1.5;
}

.footer .right-info  span{font-family:"dinpro";}

.footer .right-info + .right-info {
  margin-top: 0.04rem;
}
.footer .footer-bottom {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-bottom span {
  color: #333333;
}
.footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-bottom a:hover {
  color: #009D3B;
}

.my-list1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.my-list1::after {
  width: 31.9444444444%;
  content: "";
}
.my-list1 .item {
  width: 31.9444444444%;
}
.my-list1 .item:hover img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.my-list1 .item:hover .item-title {
  color: #009D3B;

  
}
.my-list1 .item-img {
  width: 100%;
  position: relative;
  padding-top: 55.4347826087%;
  border-radius: 0.1rem;
  overflow: hidden;
  margin-bottom: 0.38rem;
}
.my-list1 .item-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.my-list1 .item-time {
  line-height: 1.75;
  margin-bottom: 0.24rem;
  color: #777777;
}
.my-list1 .item-title {
  line-height: 1.5;
  margin-bottom: 0.2rem;
  color: #222222;
}
.my-list1 .item-text {
  line-height: 1.75;
  color: #777777;
}

.index .section1 .swiper {
  width: 100%;
  height: 49.375vw;
  max-height: 948px;
}
.index .section1 .slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}


.index .section1 .slide-img2 {
    display: none;
}
.index .section1 .slide-info {
  width: 90%;
  position: absolute;

  color: #fff;
  left: .9rem;

  bottom: 15%;
  z-index: 3;
}

.index .section1 video {
    display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;

    z-index: 1;
  left: 0;

  bottom: 0;
}

.index .section1 .slide-title {
  line-height: 1.42861;
  margin-bottom: 0.24rem;
    font-family: '微软雅黑';
  font-weight: bold;
}
.index .section1 .slide-text {
  line-height: 1.2;
  margin-bottom: 0.43rem;
}
.index .section1 .slide-more {
  color: #fff;
  min-width: 1.62rem;
  min-height: 50px;
  padding: 10px 20px;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  border: 1px solid #FFF;
}
.index .section1 .slide-more:hover {
  background-color: #009D3B;
  color: #fff;
  border-color: #009D3B;
}
.index .section1 .swiper-pagination {
  position: absolute;
  left: 0.9rem;
  bottom: 5.2742616034%;
  color: #fff;
  z-index: 3;
}
.index .section1 .swiper-pagination .swiper-pagination-bullet {
  cursor: pointer;
  display: inline-block;
  width: 42px;
  text-align: center;
  line-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0);
}
.index .section1 .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 10px;
}
.index .section1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.index .section1 .swiper-icon {
  position: absolute;
  z-index: 9;
  right: 0.8rem;
  bottom: 5.8016877637%;
   animation: floatUpDown 2s ease-in-out infinite;
}




@keyframes floatUpDown {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}
.index .section2 {
  padding: 1rem 0;
}
.index .section2 .title {
  text-align: center;
  margin-bottom: 0.6rem;
    font-family: '微软雅黑';
  font-weight: bold;
}
.index .section2 .swiper {
  width: 100%;
}
.index .section2 .swiper-slide {
  width: 4.6rem;
}
.index .section2 .swiper-slide:hover img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.index .section2 .swiper-slide:hover .slide-btn {
  color: #fff;
  background-color: #009D3B;
}
.index .section2 .slide-img {
  width: 100%;
  padding-top: 100%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
.index .section2 .slide-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.index .section2 .slide-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  z-index: 3;
  padding: 0 0.2rem;
}
.index .section2 .slide-title {
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.index .section2 .slide-btn {
  min-width: 0.96rem;
  min-height: 0.49rem;
  padding: 0.1rem 0.2rem;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #fff;
  border-radius: 0.08rem;
  margin: 0 auto;
}
.index .section2 .swiper-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.08rem;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.index .section2 .swiper-button:hover {
  background-color: #009D3B;
}
.index .section2 .swiper-button.swiper-button-prev {
  left: 1.5rem;
}
.index .section2 .swiper-button.swiper-button-next {
  right: 1.5rem;
}
.index .section2 .swiper-button.swiper-button-next img {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.index .section3 {
  position: relative;
}
.index .section3 .bg {
  width: 100%;
  height: 49.4791666667vw;
  max-height: 950px;
  -o-object-fit: cover;
     object-fit: cover;
}


.index .section3 .bg2{display:none;}

.index .section3 .info {
  margin-top: 2.58rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.index .section3 .title {
  color: #fff;
  margin-bottom: 0.49rem;
    font-family: '微软雅黑';
  font-weight: bold;
}
.index .section3 .link {
  min-width: 1.46rem;
  min-height: 0.49rem;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.1rem 0.2rem;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #fff;
  border-radius: 0.08rem;
}
.index .section3 .link:hover {
  background-color: #009D3B;
  color: #fff;
}
.index .section4 {
  background-color: #EEF7F8;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}
.index .section4 .title {
  text-align: center;
  margin-bottom: 0.65rem;
    font-family: '微软雅黑';
  font-weight: bold;
}
.index .section4 .content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.index .section4 .left {
  width: 38.8888888889%;
}
.index .section4 .groui-select {
  --groui-select-width: 280px;
  --groui-select-height: .5rem;
  background-color: #E1ECEC;
  --groui-select-radius: .08rem;
  --groui-select-theme-color: #009d3b;
  margin-bottom: 0.34rem;
}
.index .section4 .left-title {
  line-height: 1.1666666667;
  margin-bottom: 0.3rem;
}
.index .section4 .left-text {
  color: #777777;
  line-height: 1.25;
  margin-bottom: 1.03rem;
}
.index .section4 .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.index .section4 .item {
  width: 50%;
  margin-bottom: 0.43rem;
}
.index .section4 .item-title {
  color: #009D3B;
  line-height: 1.1904761905;
  margin-bottom: 0.06rem;
}
.index .section4 .item-text {
  line-height: 1.25;
  color: #777777;
}
.index .section4 .right {
  width: 48.6111111111%;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
}
.index .section4 .right-title {

}
.index .section4 .map {
  height: 500px;
}
.index .section5 {
  background: url(../images/6.png) no-repeat center center/cover;
  padding-top: 2rem;
  padding-bottom: 0.45rem;
}
.index .section5 .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.83rem;
}
.index .section5 .item {
  width:32%;
  color: #fff;
  text-align: center;
}
.index .section5 .item-icon {
   width: 8vw;
  margin: 0 auto 0.2rem;
  max-width: 150px;
}
.index .section5 .item-text {
  margin-bottom: 0.23rem;
 
}
.index .section5 .item-text span {
  font-size: 0.45rem;
  color: #FCCC15;
   font-family: '微软雅黑';
  font-weight: bold;
  
  
}
.index .section5 .item-content {
  line-height: 1.5;
}
.index .section5 .tip {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 1.2857142857;
}
.index .section6 {
  padding-top: 1rem;
  padding-bottom: 1.2rem;
}
.index .section6 .title, .index .section6 .title-link {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index .section6 .title {
  margin-bottom: 0.58rem;
}
.index .section6 .title-text {
  line-height: 1.125;
    font-family: '微软雅黑';
  font-weight: bold;
}
.index .section6 .title-link:hover span {
  color: #009D3B;
}
.index .section6 .title-link span {
  color: #777;
  line-height: 1.8;

}
.index .section6 .title-link img {
  width: 0.16rem;
  vertical-align: middle;
  margin-top: -0.05rem;
  margin-left: 0.26rem;
}

.news .section1 {
  padding-top: 1.2rem;
  padding-bottom: 0.78rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news .section2 {
  padding-top: 1.4rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news .section1 .fw700   {
     font-family: '微软雅黑';
  font-weight: bold;
    
}



.news .section2 .left {
  width: 65.2777777778%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 920px;
}
.news .section2 .swiper-pagination {
  bottom: 0.44rem;
  left: 0;
  right: 0;
  position: absolute;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news .section2 .swiper-pagination-bullet {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #c8c7c4;
  margin: 0 6px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.news .section2 .swiper-pagination-bullet.swiper-pagination-bullet-active, .news .section2 .swiper-pagination-bullet:hover {
  background-color: #009D3B;
}
.news .section2 .swiper-slide:hover .slide-img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.news .section2 .swiper-slide:hover .slide-title {
  color: #009D3B;
}
.news .section2 .slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 0.38rem;
}
.news .section2 .slide-time {
  line-height: 1.8;
  margin-bottom: 0.25rem;
}
.news .section2 .slide-title {
  line-height: 1.5;
}
.news .section2 .right {
  width: 31.25%;
}
.news .section2 .item {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news .section2 .item + .item {
  margin-top: 0.4rem;
}
.news .section2 .item:hover {
  color: #009D3B;
}
.news .section2 .item-time {
  color: #777;
  line-height: 1.8;
  margin-bottom: 0.2rem;
}
.news .section2 .item-title {
  line-height: 1.5;
  margin-bottom: 0.3rem;
}
.news .section2 .item-text {
  line-height: 1.75;
  color: #777;
}
.news .section3 {
  padding-top: 0.8rem;
  padding-bottom: 1.4rem;
}
.news .section3 .item {
  padding-bottom: 0.39rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.8rem;
}

.news_detail .section1 {
  background: #F8FCFA;
  padding-top: 1.4rem;
  padding-bottom: 1.14rem;
}
.news_detail .section1 .title {
  line-height: 1.2777777778;
  margin-bottom: 0.8rem;
}
.news_detail .section1 .info {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news_detail .section1 .info a img {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.news_detail .section1 .info a:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.news_detail .section1 .info a + a {
  margin-left: 0.38rem;
}
.news_detail .section1 .info span {
  margin-left: auto;
}
.news_detail .section2 {
  padding-top: 0.99rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #E6E6E6;
  line-height:1.75;
}
.news_detail .section3 {
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news_detail .section3 .left {
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 0;
}
.news_detail .section3 .left p {
  line-height: 1.375;
}
.news_detail .section3 .left p + p {
  margin-top: 0.1rem;
}
.news_detail .section3 .left a {
  display: inline;
}
.news_detail .section3 .left a:hover {
  color: #009D3B;
}
.news_detail .section3 .right {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.4rem;
  width: 200px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-size: 16px;
  line-height: 50px;
}
.news_detail .section3 .right:hover {
  background-color: #009D3B;
  border-color: #009D3B;
  color: #fff;
}
.news_detail .section3 .right:hover img {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  opacity: 1;
}
.news_detail .section3 .right img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  opacity: 0.5;
}

.about .section1 {
  height: 9.5rem;
  background: url(../images/lc/3.png) no-repeat center center/cover;
  padding-top: 1.2rem;
}
.about .section1 .title {
  margin-bottom: 0.42rem;
    font-family: '微软雅黑';
  font-weight: bold;
}
.about .section1 .text {
  width: 6.5rem;
  max-width: 100%;
  line-height: 1.875;
}
.about .section2 {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
}
.about .section2 .title {
  margin-bottom: 0.5rem;
    font-family: '微软雅黑';
  font-weight: bold;
}
.about .section2 .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about .section2 .item {
  width: 32.5520833333%;
  cursor: pointer;
}
.about .section2 .item:hover img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.about .section2 .item-img {
  width: 100%;
  padding-top: 81.6%;
  position: relative;
  overflow: hidden;
}
.about .section2 .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about .section2 .item-title {
  line-height: 1.25;
  margin-top: 0.2rem;
}
.about .section3 .section3-top {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.6rem;
   
}

.about .section3 .section3-top  p{
     font-family: '微软雅黑';
  font-weight: bold;
}

.about .section3 .swiper-button .swiper-button-next s {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.about .section3 .swbtn {
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0);
  border:1px solid #fff;
  border-radius: 15px;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  left: .9rem;
  z-index: 3;
  
  
  
  
}

.about .section3  .swiper-button-next {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
     -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
        transform: rotate(180deg);
    left: auto;
    right: 0.9rem;
}



.about .section3 .swbtn:hover {
  background-color: #009D3B;
    border:1px solid #009D3B;
}
.about .section3 .swbtn:hover s {
  background-image: url(../images/svg/fy_jt2.svg);
}
.about .section3 .swbtn s {
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/svg/fy_jt2.svg) no-repeat center center/cover;
}
.about .section3 .section3-bottom {
  min-height: 8.1rem;
  padding-top: 0.26rem;
  background: url(../images/lc/7.png) no-repeat center center/cover;
}
.about .section3 .section3-bottom .swiper {
  width: 100%;
  height: 100%;
}
.about .section3 .section3-bottom .swiper-wrapper {
  -webkit-align-items: baseline;
     -moz-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.about .section3 .section3-bottom .swiper-slide:nth-child(even) .left {
  width: 45.6944444444%;
  margin-left: -1.1111111111%;
}
.about .section3 .section3-bottom .swiper-slide:nth-child(odd) .left {
  width: 39.9305555556%;
  margin-left: 0.9027777778%;
}
.about .section3 .section3-bottom .my-container {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.about .section3 .section3-bottom .swiper-pagination {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
}
.about .section3 .section3-bottom .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #C8C7C4;
  margin: 0 6px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
.about .section3 .section3-bottom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .about .section3 .section3-bottom .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #009D3B;
}
.about .section3 .section3-bottom .left {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
}
.about .section3 .section3-bottom .right {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  color: #fff;
  width: 45.1388888889%;
  margin: 0.2rem 0;
  line-height: 1.4;
}

.about .section3 .section3-bottom .right .fw700  {
     font-family: '微软雅黑';
  font-weight: bold;
    
}

.about .section3 .section3-bottom .name {
  line-height: 1.5;
  margin-bottom: 0.4rem;
     font-family: '微软雅黑';
  font-weight: bold;
}
}
.about .section3 .section3-bottom .content {
  line-height: 1.875;
  opacity: 0.6;
}
.about .section4 {
  height: 9.5rem;
  color: #fff;
  position: relative;
}
.about .section4 .my-container {
  padding-top: 0.8rem;
  position: relative;
  z-index: 3;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          
          
}

.about .section4 .my-container .left  {
     font-family: '微软雅黑';
  font-weight: bold;
    
}
.about .section4 .right {
  text-align: right;
}
.about .section4 .right p {
  line-height: 1.25;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.about .section4 .right p.active, .about .section4 .right p:hover {
  font-size: 40px;
  font-family: "dinpro bold";
}
.about .section4 .right p + p {
  margin-top: 0.2rem;
}
.about .section4 .imgs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.about .section4 .imgs img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .section4 .imgs img.active {
  display: block;
  opacity: 1;
}
.about .section4 .imgs::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
     -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: #000;
  -webkit-animation-duration: 2s;
     -moz-animation-duration: 2s;
       -o-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
}
.about .section4 .imgs.active::after {
  -webkit-animation-name: animation1;
     -moz-animation-name: animation1;
       -o-animation-name: animation1;
          animation-name: animation1;
}
@-webkit-keyframes animation1 {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-moz-keyframes animation1 {
  0% {
    -moz-transform: translateX(-100%);
         transform: translateX(-100%);
  }
  50% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(100%);
         transform: translateX(100%);
  }
}
@-o-keyframes animation1 {
  0% {
    -o-transform: translateX(-100%);
       transform: translateX(-100%);
  }
  50% {
    -o-transform: translateX(0);
       transform: translateX(0);
  }
  100% {
    -o-transform: translateX(100%);
       transform: translateX(100%);
  }
}
@keyframes animation1 {
  0% {
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
         -o-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.support .section1 {
  height: 6.5rem;
  background: url(../images/lc/11.png) no-repeat center center/cover;
}
.support .section1 .my-container {
  height: 100%;
  color: #fff;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.support .section1 .title {
  line-height: 1.2916666667;
  margin-bottom: 0.3rem;
}
.support .section1 .input {
  width: 7.5rem;
  height: 50px;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.1rem;
}
.support .section1 .input input {
  background-color: #fff;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 0.08rem;
  font-size: 16px;
  padding: 0 0.64rem 0 0.2rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.support .section1 .input input:focus {
  border-color: #009D3B;
}
.support .section1 .input .img {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.support .section1 .texts {
  width: 7.5rem;
  height: 50px;
  max-width: 100%;
  text-align: left;
}
.support .section1 .texts a {
  color: #fff;
  line-height: 1.25;
  margin-right: 0.3rem;
  margin-bottom: 0.1rem;
}
.support .section1 .texts a:hover {
  color: #009D3B;
}
.support .section2 {
  padding-top: 0.8rem;
}
.support .section2 .title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.support .section2 .item {
  border-radius: 0.05rem;
  background: #F4F4F4;
  padding:  0 2.0833333333%;
  
  
  
}

.support .section2 .item {
    
    
}

.support .section2 .item + .item {
  margin-top: 0.1rem;
}
.support .section2 .item.active .item-btn img:nth-child(1) {
  display: none;
}
.support .section2 .item.active .item-btn img:nth-child(2) {
  display: block;
}
.support .section2 .item-top {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.support .section2 .item-title {
  line-height: 1.3333333333;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 0;
  margin-right: 0.2rem;
  padding: 0.28rem 0;
  cursor: pointer;
  
}
.support .section2 .item-btn {
  width: 24px;
  cursor: pointer;
}
.support .section2 .item-btn img {
  width: 100%;
}
.support .section2 .item-btn img:nth-child(2) {
  display: none;
}
.support .section2 .item-content {
  display: none;
  padding-top: 0.32rem;
  padding-bottom: 0.12rem;
  color: #666;
  line-height: 1.25;
}
.support .section3 {
  padding-top: 0.8rem;
  padding-bottom: 1.4rem;
}
.support .section3 .title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.support .section3 .content {

  display: flex;
  
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
.support .section3 .left {
  width: 50%;
  border-radius: 0.1rem;
}
.support .section3 .right {
  width: 44.4444444444%;
}
.support .section3 .item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid #d9d9d9;
}
.support .section3 .item:first-child {
  border-top: 1px solid #d9d9d9;
}
.support .section3 .item:hover {
  color: #009D3B;
}
.support .section3 .item-icon1 {
  width: 50px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.support .section3 .item-title {
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 0;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  padding: 5px 0;
}
.support .section3 .item-icon2 {
  width: 18px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 1200px) {
  .header_place {
    display: none;
  }
  .index .section4 .groui-select {
    --groui-select-width: 200px;
    --groui-select-height: .7rem ;
  }
  .mhead .logo img {
    height: 24px;
    margin-top: 13px;
  }
  .header .header-container {
    width: 90%;
  }
  .header .header-pc {
    display: none;
  }
  .header .header-h5 {
    display: block;
  }
  .my-container {
    width: 90%;
    min-width: 100px;
  }
  .section4 .right p.active, .section4 .right p:hover {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .footer .left {
    display: none;
  }
  .footer .right {
    width: 100%;
    text-align: center;
  }
  .footer .list {
    width: 100%;
    max-width: 100%;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer-bottom {
    text-align: center;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 2;
  }
  .footer .item {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .my-list1 .item {
    width: 100%;
    margin-bottom: 0.4rem;
  }
  .index .section1 .swiper {
    height: 100vw;
  }
  .index .section1 .swiper-pagination {
    left: 0.4rem;
  }
  .index .section1 .swiper-icon {
    right: 0.4rem;
  }
  .index .section2 .swiper-button.swiper-button-prev {
    left: 0.4rem;
  }
  .index .section2 .swiper-button.swiper-button-next {
    right: 0.4rem;
  }
  .index .section3 .info {
    margin-top: 0;
    top: 26%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .index .section4 .content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .index .section4 .left, .index .section4 .right {
    width: 100%;
  }
  .index .section4 .left {
    margin-bottom: 0.4rem;
  }
  .index .section5 .list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 50px;        
  }
  .index .section5 .item-icon {
    width: 15%;
  }
  
  .index .section5 .item-content{
      width: 80%;
      margin: 0 auto;
  }
  
  .index .section5 .item {
    width: 100%;
    margin-bottom: 0.6rem;
  }
  .news .section2 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .news .section2 .left, .news .section2 .right {
    width: 100%;
  }
  .news .section2 .left {
    padding-bottom: 0.8rem;
    margin-bottom: 0.4rem;
  }
  .news .section2 .swiper-pagination {
    bottom: 0.3rem;
  }
  .news_detail .section1 .info {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .news_detail .section1 .info span {
    margin-top: 0.4rem;
    width: 100%;
  }
  .news_detail .section3 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .news_detail .section3 .left {
    width: 100%;
  }
  .news_detail .section3 .right {
    margin: 0.4rem auto 0;
  }
  .about .section1 {
    height: auto;
    padding-top: 0.5rem;
    padding-bottom: 8rem;
  }
  .about .section1 .text {
    width: 100%;
  }
  .about .section2 .list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .about .section2 .item {
    width: 90%;
    margin: 0 auto 0.4rem;
  }
  .about .section3 .section3-top {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .about .section3 .section3-top .title {
    margin-bottom: 0.4rem;
    line-height: 1.5;
  }
  .about .section3 .section3-bottom .my-container {
    -webkit-flex-direction: column-reverse;
       -moz-box-orient: vertical;
       -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .about .section3 .section3-bottom .right {
    width: 100%;
    height: 300px;
    overflow: auto;
  }
  .about .section3 .section3-bottom .swiper-wrapper {
    -webkit-align-items: normal;
       -moz-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .about .section3 .section3-bottom .swiper-slide {
    height: auto;
  }
  .about .section3 .section3-bottom .swiper-slide:nth-child(even) .left {
    width:70%;
    margin: 0 auto;
  }
  .about .section3 .section3-bottom .swiper-slide:nth-child(odd) .left {
    width: 60%;
    margin: 0 auto;
  }
  .about .section4 .my-container {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .about .section4 .left {
    margin-bottom: 0.4rem;
  }
  .about .section4 .right {
    width: 100%;
    text-align: left;
  }
  .about .section4 .right p.active {
    font-size: 22px;
  }
  .about .section4 .right p:hover:not(.active) {
    font-size: 16px;
    font-family: "dinpro medium";
  }
  .support .section3 .content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .support .section3 .left {
    margin-bottom: 0.4rem;
  }
  .support .section3 .left, .support .section3 .right {
    width: 100%;
  }
  
  .index .section1 .slide-img {
        display: none;
    }
    
    .index .section1 .slide-img2 {
        display: block;
        width: 100%;
    }
          
    
    .index .section1 .slide-info{
        left: 5%;
    }
    
.about .section3 .section3-bottom .my-container{display:block;}    

.about .section3 .section3-bottom{padding: 50px 0;min-height:100px;}

.about .section3 .swbtn{display: none;}

.about .section3 .section3-bottom .content{line-height:1.4;}

.about .section3 .section3-bottom .name{margin-bottom:20px;}

.about .section3 .section3-bottom .swiper{padding-bottom: 30px;}
          
  .index .section5{
      padding: 50px 0;
      background: url(../images/6.png) no-repeat left center / cover;
  }
  
  .index .section3 .bg{display:none;}
  
  .index .section3 .bg2{display:block;width:100%;}
  
  .index .section3 .link,.index .section1 .slide-more {
      color: #000;
      min-width: 1.62rem;
      min-height: 50px;
      padding: 10px 20px;
      display: -webkit-inline-flex;
      display: -moz-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-radius: 8px;
      border: 1px solid #FFF;
      background: #fff;
    }
  
  
}