@charset "UTF-8";
header {
  position: relative;
  z-index: 10;
  padding: 0 5.6%;
  background-color: #fff;
  z-index: 10;
  height:160px;
}

header.scrl {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header .inner {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .logo {
  max-width: 151px;
}

header .logo img {
  width: 100%;
}

header .hd-right {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .hd-right nav {
  margin-right: 1.19792vw;
}

header .hd-right nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .hd-right nav li {
  font-size: 16px;
  margin: 0 1.19792vw;
  position: relative;
}

header .hd-right nav li .one a {
  display: inline-block;
  line-height: 160px;
  position: relative;
}

header .hd-right nav li .one a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2B3B55, #11CB68);
  position: absolute;
  left: 0;
  bottom: 20%;
  transition: all .3s;
  width: 0;
  opacity: 0;
}

header .hd-right nav li .one a:hover {
  color: #11C968;
}

header .hd-right nav li.active .one a {
  color: #11C968;
}

header .hd-right nav li.active .one a::after {
  width: 100%;
  opacity: 1;
}

header .hd-right .dropnav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s;
  white-space: nowrap;
  transition: all .5s;
  opacity: 0;
  visibility: hidden;
}

header .hd-right .dropnav .in {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  position: relative;
  padding: 5px 0;
}

header .hd-right .dropnav .in > div {
  position: relative;
}

header .hd-right .dropnav .in > div::after {
  content: '';
  display: block;
  background-color: #e7e7e7;
  left: 15px;
  right: 25px;
  bottom: 0;
  height: 1px;
  position: absolute;
}

header .hd-right .dropnav .in > div:last-child::after {
  display: none;
}

header .hd-right .dropnav .in a {
  display: block;
  position: relative;
  color: #424242;
  line-height: 39px;
  padding: 0 25px;
  font-size: 16px;
  position: relative;
  margin: 0 5px;
  text-align: center;
}

header .hd-right .dropnav .in a:hover {
  color: #fff;
  background-color: #11C968;
  border-radius: 2px;
}

header .hd-right .dropnav .in a:hover::after {
  display: none;
}

header .hd-right .dropnav .in > div:hover > a {
  color: #fff;
  background-color: #11C968;
}

header .hd-right .dropnav .in > div:hover::after {
  display: none;
}

header .hd-right nav li:hover .dropnav {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

header .searchbox {
  width: 250px;
  height: 45px;
  background: #EEEEEE;
  border-radius: 23px;
}

header .searchbox form {
  height: 100%;
}

header .searchbox input[type="text"] {
  flex: 1;
  height: 100%;
  padding: 0 20px;
  background: none;
}

header .searchbox input[type="text"]::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

header .searchbox .btn-srh {
  width: 20px;
  height: 20px;
  background: url(../images/icon_search.png) 0 0/cover no-repeat;
  cursor: pointer;
  transition: all .3s;
  overflow: hidden;
  text-indent: 999px;
  margin-right: 20px;
}

header .searchbox .btn-srh:hover {
  transform: scale(1.05);
}

header .menu {
  margin-left: 20px;
  display: none;
}

header .menu a {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}

header .menu a span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #11C968;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: all .5s;
}

header .menu a span:before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #11C968;
  position: absolute;
  right: 0;
  top: -7px;
  transition: all .5s;
}

header .menu a span:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #11C968;
  position: absolute;
  right: 0;
  bottom: -7px;
  transition: all .5s;
}

header .menu a.active span {
  background-color: transparent;
}

header .menu a.active span:before {
  transform: rotate(-45deg);
  top: 0;
  width: 100%;
}

header .menu a.active span:after {
  transform: rotate(45deg);
  top: 0;
  width: 100%;
}

header .show-searchbox {
  position: absolute;
  width: 100vw;
  height: 100%;
  z-index: 1;
  top: 0;
  right: 0;
  transition: all .5s;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  transform: translateY(-100%);
  background-color: #fff;
}

header .show-searchbox.open {
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header .show-searchbox .wrap {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: flex-end;
}

header .show-searchbox form {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #fff;
  width: 100%;
}

header .show-searchbox input[type="text"] {
  font-size: 18px;
  width: calc(100% - 130px);
}

header .show-searchbox button {
  background-color: transparent;
  cursor: pointer;
}

header .show-searchbox button i {
  display: inline-block;
  transition: all .5s;
  font-size: 22px;
  font-weight: bold;
}

header .show-searchbox button:hover i {
  color: #11C968;
}

header .show-searchbox .close-srh {
  margin-left: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all .5s;
  opacity: .4;
}

header .show-searchbox .close-srh:hover {
  transform: rotate(-180deg);
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  header .logo {
    max-width: 140px;
  }
  header .hd-right nav li .one a {
    line-height: 160px;
  }
   header .hd-right nav li {
  font-size: 16px;
  margin: 0 0.69792vw;
  position: relative;
}
}

@media screen and (max-width: 1024px) {
  header .inner .logo {
    width: 110px;
  }
  header .hd-right nav li > a {
    line-height: 80px;
  }
  header .hd-right nav li {
    margin: 0 10px;
  }
  header .hd-right nav li {
  font-size: 16px;
  margin: 0 0.69792vw;
  position: relative;
}
}

@media screen and (max-width: 1024px) {
  header .show-searchbox input[type="text"] {
    font-size: 14px;
  }
  header {
    padding: 5px 20px;
  }
  header .inner {
    height: 60px;
  }
  header .searchbox {
    width: 200px;
    height: 38px;
  }
  header .menu {
    display: block;
    margin-left: 10px;
  }
  header .hd-right nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: white;
    margin-top: 0;
    overflow-y: auto;
  }
  header .hd-right nav ul {
    flex-wrap: wrap;
  }
  header .hd-right nav li {
    width: 100%;
    margin: 0 20px;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
  }
  header .hd-right nav li .one a {
    color: #000;
    font-weight: bold;
    line-height: 60px;
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  header .hd-right nav li .one a::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    color: #000;
    transition: all .5s;
    background: url(../images/next.svg) 0 0/cover no-repeat;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
  }
  header .hd-right nav li .one a::after {
    display: none;
  }
  header .hd-right nav li:first-child .one a::before {
    display: none;
  }
  header .hd-right nav li .one.active a::before {
    transform: translateY(-50%) rotate(90deg);
  }
  header .hd-right nav .dropnav {
    position: static;
    transform: none;
    min-width: inherit;
    transition: none;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
  }
  header .hd-right nav .dropnav .in::before {
    display: none;
  }
  header .hd-right nav .dropnav .in {
    background-color: transparent;
    box-shadow: inherit;
    width: 100%;
    left: 0;
    transform: none;
    margin-top: 0;
  }
  header .hd-right nav .dropnav .in a {
    padding-left: 20px;
    color: #575757;
    padding: 0;
  }
  header .hd-right nav .dropnav .in a::after {
    display: none;
  }
  header .hd-right nav .dropnav .in a:hover {
    background-color: transparent;
    color: #575757;
  }
  header .hd-right .dropnav .in > div::after {
    display: none;
  }
  header .hd-right .dropnav .in .three-nav {
    position: relative;
    left: 0;
    margin: 0 10px;
    width: calc(100% - 20px);
    box-shadow: none;
    padding: 10px;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  header .hd-right nav .dropnav .in a {
    margin-right: 30%;
    transition: all .5s;
    font-size: 14px;
    margin-right: 0;
    text-align: left;
    padding-left: 20px;
    border-bottom: none;
  }
  header .hd-right .dropnav .in > div:hover > a {
    padding-left: 20px;
    color: #000;
    font-weight: bold;
    background-color: transparent;
  }
  header .hd-right .dropnav .in > div:hover .three-nav {
    display: block;
  }
  header .searchbox form {
    width: 100%;
  }
  header .searchbox input[type="text"] {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  header .inner .logo {
    width: 90px;
  }
  header .searchbox .btn-srh {
    width: 15px;
    height: 15px;
    margin-right: 15px;
  }
  header .searchbox input[type="text"] {
    padding: 0 15px;
  }
  header .searchbox {
    width: 180px;
    height: 32px;
  }
}

.qcontainer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
}

.qleft {
  float: left;
  width: 21px;
  height: 42px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.qleftcircle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0);
  position: absolute;
  border-radius: 50%;
  left: 0px;
  top: 0px;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  transform: rotate(225deg);
}

.qright {
  float: left;
  width: 21px;
  height: 42px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.qrightcircle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0);
  position: absolute;
  border-top: 1px solid white;
  border-right: 1px solid white;
  right: 0px;
  top: 0px;
  transform: rotate(225deg);
}

@keyframes circle_right {
  0% {
    transform: rotate(-135deg);
  }
  50%, 100% {
    transform: rotate(45deg);
  }
}

.circle_right {
  -webkit-animation-name: circle_right;
  animation-name: circle_right;
}

@keyframes circle_left {
  0%, 50% {
    transform: rotate(-135deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

.circle_left {
  -webkit-animation-name: circle_left;
  animation-name: circle_left;
}

/* banner */
.swiper-banner {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.swiper-banner .swiper-slide {
  height: 41.66667vw;
  overflow: hidden;
}

.swiper-banner .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.swiper-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-banner .swiper-pagination {
  bottom: 8%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: .5;
  margin: 0 25px;
  position: relative;
  color: rgba(255, 255, 255, 0);
}

.swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
  background-color: transparent;
  color: #fff;
  line-height: 1;
}

.swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet-active .qcontainer .qleftcircle {
  transform: rotate(45deg);
  animation-name: circle_left;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet-active .qcontainer .qrightcircle {
  transform: rotate(45deg);
  animation-name: circle_right;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.swiper-banner .text {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
}

.swiper-banner .text .wrap::before {
  content: '';
  display: block;
  width: 7.29167vw;
  max-width: 140px;
  height: 5px;
  background: linear-gradient(90deg, #2B3B55, #11CB68);
  margin-bottom: 30px;
  color: #fff;
}

.swiper-banner .text h1 {
  font-style: italic;
  color: #fff;
}

.swiper-banner .text p {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .swiper-banner .swiper-slide {
    height: 50vw;
  }
  .swiper-banner .text .wrap::before {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .swiper-banner .swiper-slide {
    height: 65.33333vw;
  }
  .swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 10px;
  }
  .qcontainer, .qleftcircle, .qrightcircle {
    width: 16px;
    height: 16px;
  }
  .qleft, .qright {
    width: 8px;
    height: 16px;
  }
  .swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet {
    color: transparent;
    background-color: #fff;
  }
  .swiper-banner .text .wrap::before {
    height: 3px;
  }
}

/* 关于我们 */
.index-about {
  padding: 100px 0 144px;
  overflow: hidden;
}

.index-about .text {
  width: 50%;
}

.index-about .text .title {
  margin-bottom: 20px;
}

.index-about .text .title h3 {
  color: rgba(44, 44, 44, 0.2);
  text-transform: uppercase;
}

.index-about .text .cont {
  position: relative;
  transform: translateZ(0);
  min-height: 190px;
  padding-right: 5%;
}

.index-about .text .cont::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/about_bg.png) 0 0 no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.index-about .text .cont p {
  line-height: 2;
  color: rgba(44, 44, 44, 0.8);
}

.index-about .text .cont .btn-go {
  margin-top: 40px;
  margin-bottom: 30px;
}

.index-about .text .cont .btn-go a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../images/btn_go.png) 0 0/cover no-repeat;
}

.index-about .text .cont .btn-go a:hover {
  opacity: .8;
}

.index-about .text .num ul li {
  width: 33.333%;
}

.index-about .text .num ul li .counter {
  font-weight: bold;
}

.index-about .text .num ul li p {
  color: rgba(0, 0, 0, 0.5);
}

.index-about .img {
  width: 48.57143%;
  background: #11C968;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0 50px 50px 50px;
  overflow: hidden;
}

.index-about .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .index-about .text .cont::before {
    background-size: contain;
  }
  .index-about .text .cont .btn-go a {
    width: 25px;
    height: 25px;
  }
  .index-about .img {
    border-radius: 0 25px 25px 25px;
  }
}

@media screen and (max-width: 768px) {
  .index-about .wrap {
    flex-wrap: wrap;
  }
  .index-about .text {
    width: 100%;
  }
  .index-about .img {
    width: 100%;
    margin-top: 20px;
  }
  .index-about .text .num ul li p {
    padding-right: 30%;
  }
}

/* 模块 */
.index-mokuai {
  overflow: hidden;
}

.index-mokuai ul {
  margin-left: -3px;
  margin-right: -3px;
}

.index-mokuai ul li {
  padding: 0 3px;
  margin-bottom: 6px;
  width: 50%;
  position: relative;
}

.index-mokuai ul li:nth-child(2) {
  width: 25%;
}

.index-mokuai ul li:nth-child(3) {
  width: 25%;
}

.index-mokuai ul li a {
  display: block;
  overflow: hidden;
}

.index-mokuai ul li a img {
  width: 100%;
  height: 367px;
  object-fit: cover;
  transition: all .5s;
}

.index-mokuai ul li .tt {
  position: absolute;
  left: 39px;
  top: 30px;
  z-index: 3;
  color: #fff;
}

.index-mokuai ul li a:hover img {
  transform: scale(1.05);
}

@media screen and (max-width: 1440px) {
  .index-mokuai ul li a img {
    height: 278px;
  }
  .index-mokuai ul li .tt {
    left: 20px;
    top: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .index-about {
    padding: 50px 0 70px;
  }
  .index-mokuai ul li a img {
    height: 198px;
  }
}

@media screen and (max-width: 768px) {
  .index-mokuai ul li {
    width: 100%;
  }
  .index-mokuai ul li:nth-child(2), .index-mokuai ul li:nth-child(3) {
    width: 50%;
  }
  .index-mokuai ul li a img {
    height: 50vw;
  }
}

/* 产品中心 */
.index-products {
  padding: 70px 0 80px;
  overflow: hidden;
  background: url(../images/bg_product.png) 0 bottom/100% no-repeat #f8f8f8;
}

.index-products .title {
  text-align: center;
  margin-bottom: 30px;
}

.index-products .title h3 {
  color: rgba(44, 44, 44, 0.2);
  text-transform: uppercase;
}

.index-products .title p {
  width: 50%;
  margin: 10px auto 0;
  color: #2C2C2C;
}

.index-products .cont {
  position: relative;
}

.index-products .swiper-products {
  position: relative;
  overflow: hidden;
}

.index-products .swiper-products .swiper-slide {
  background-color: #fff;
}

.index-products .swiper-products .img {
  height: 275px;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-products .swiper-products .img img {
  max-width: 100%;
  max-height: 100%;
  transition: all .3s;
}

.index-products .swiper-products .tt {
  padding: 20px 0 53px;
  text-align: center;
}

.index-products .swiper-products .tt::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2B3B55, #11CB68);
  margin: 25px auto 0;
}

.index-products .swiper-products a:hover .img img {
  transform: scale(1.05);
}

.index-products .swiper-button-prev, .index-products .swiper-button-next {
  width: 67px;
  height: 67px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/icon_next.png) 0 0/cover no-repeat;
  z-index: 88;
  cursor: pointer;
}

.index-products .swiper-button-prev.swiper-button-disabled, .index-products .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: url(../images/icon_prev.png) 0 0/cover no-repeat;
}

.index-products .swiper-button-prev {
  left: -87px;
  transform: translateY(-50%) rotate(180deg);
}

.index-products .swiper-button-prev.swiper-button-disabled {
  transform: translateY(-50%);
}

.index-products .swiper-button-next {
  right: -87px;
}

.index-products .swiper-button-next.swiper-button-disabled {
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 1024px) {
  .index-products {
    padding: 50px 0 50px;
  }
  .index-products .title p {
    width: 100%;
  }
  .index-products .swiper-button-prev, .index-products .swiper-button-next {
    width: 32px;
    height: 32px;
  }
  .index-products .swiper-products .tt {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .index-products .swiper-products .img {
    height: 40vw;
  }
}

@media screen and (max-width: 500px) {
  .index-products .swiper-button-prev, .index-products .swiper-button-next {
    display: none;
  }
}

/* 新闻资讯 */
.index-news {
  padding: 70px 0 60px;
  overflow: hidden;
  background: url(../images/bg_news.png) center center/cover no-repeat;
}

.index-news .title {
  text-align: center;
  margin-bottom: 10px;
}

.index-news .title h3 {
  color: rgba(44, 44, 44, 0.2);
  text-transform: uppercase;
}

.index-news .tabnav {
  margin-bottom: 30px;
}

.index-news .tabnav a {
  display: inline-block;
  width: 120px;
  height: 40px;
  background: #F8F8F8;
  border-radius: 20px;
  margin: 0 5px;
  color: #BABABA;
  text-align: center;
  line-height: 40px;
}

.index-news .tabnav a.active {
  background: linear-gradient(90deg, #2B3B55, #11CB68);
  color: #fff;
}

.index-news .item {
  display: none;
}

.index-news .item:first-child {
  display: block;
}

.index-news .swiper-news {
  overflow: hidden;
}

.index-news .swiper-news .img {
  position: relative;
  height: 322px;
  overflow: hidden;
}

.index-news .swiper-news .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.index-news .swiper-news .datetime {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(90deg, rgba(43, 59, 85, 0.8), rgba(17, 203, 104, 0.8));
  top: 0;
  left: 20px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-right: 14px;
}

.index-news .swiper-news .datetime span {
  color: #fff;
  width: 100%;
  text-align: right;
  display: block;
  line-height: 1.4;
}

.index-news .swiper-news .datetime span:first-child {
  font-size: 26px;
  font-weight: bold;
}

.index-news .swiper-news .txt {
  margin: -60px 20px 0;
  position: relative;
  z-index: 2;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
}

.index-news .swiper-news .txt h2 {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index-news .swiper-news .txt p {
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(44, 44, 44, 0.7);
  height: 48px;
  margin-bottom: 10px;
}

.index-news .swiper-news .txt button {
  background: none;
  color: rgba(44, 44, 44, 0.5);
  text-transform: uppercase;
  cursor: pointer;
}

.index-news .swiper-news a:hover .img img {
  transform: scale(1.05);
}

.index-news .swiper-pagination {
  position: relative;
  text-align: center;
  margin-top: 40px;
}

.index-news .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.index-news .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #2B3B55, #11CB68);
}

@media screen and (max-width: 1440px) {
  .index-news .swiper-news .img {
    height: 248px;
  }
}

@media screen and (max-width: 1024px) {
  .index-news {
    padding: 35px 0 30px;
  }
  .index-news .swiper-news .datetime {
    width: 80px;
    height: 80px;
    left: 10px;
  }
  .index-news .swiper-news .datetime span:first-child {
    font-size: 18px;
  }
  .index-news .swiper-news .txt {
    margin: -30px 10px 0;
  }
}

@media screen and (max-width: 768px) {
  .index-news .swiper-news .img {
    height: 30vw;
  }
  .index-news .swiper-pagination {
    margin-top: 20px;
  }
  .index-news .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
  }
}

@media screen and (max-width: 500px) {
  .index-news .swiper-news .img {
    height: 60vw;
  }
}

/* footer */
footer {
  background-color: #272727;
  color: #fff;
}

footer .hd {
  padding: 60px 0;
}

footer .hd .lt {
  width: 35.42857%;
  padding-right: 5%;
}

footer .hd .qrcodes h4 {
  font-weight: normal;
}

footer .hd .qrcodes p {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  margin-bottom: 25px;
}

footer .hd .qrcodes .img img {
  width: 109px;
}

footer nav {
  flex: 1;
}

footer nav ul {
  justify-content: space-between;
}

footer nav ul .one {
  margin-bottom: 18px;
}

footer nav ul .one a {
  color: #fff;
  font-size: 16px;
}

footer nav ul .one a::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #fff;
  margin-top: 8px;
}

footer nav ul .dropnav {
  line-height: 30px;
}

footer nav ul .dropnav a {
  color: #fff;
}

footer nav ul .dropnav a:hover {
  text-decoration: underline;
}

footer .ft {
  background-color: #272727;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

footer .ft .wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

@media screen and (max-width: 1024px) {
  footer .hd {
    padding: 30px 0;
  }
  footer .hd .phone .iconfont {
    font-size: 40px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  footer nav ul .dropnav {
    display: none;
  }
  footer .hd .phone {
    flex-direction: column;
  }
  footer .hd .lt {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  footer nav {
    margin-top: 30px;
  }
  footer .hd .qrcodes {
    justify-content: center;
  }
  footer .hd .qrcodes .img {
    margin-right: 0;
    margin: 0 20px;
  }
  footer nav ul {
    justify-content: center;
  }
  footer nav ul li {
    width: 25%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  footer .hd .wrap {
    flex-wrap: wrap;
  }
  footer .hd .lt {
    width: 100%;
  }
  footer nav ul .one a::after {
    display: none;
  }
  footer nav ul .one a {
    font-size: 14px;
  }
}

@keyframes scalebig {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 1;
  }
}

@keyframes scalebig2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* 内页banner */
.pages-banner {
  height: 300px;
  background: center center /cover no-repeat;
  overflow: hidden;
}

.pages-banner .wrap {
  height: 100%;
  color: #fff;
}

.pages-banner .tt::after {
  content: '';
  display: block;
  width: 66px;
  height: 5px;
  background: linear-gradient(90deg, #2B3B55, #11CB68);
  margin-top: 35px;
}

.pages-banner .tt h2 {
  font-weight: normal;
}

.pages-banner .tt p {
  text-transform: uppercase;
}

.pages-banner .crumbs a {
  color: #fff;
}

.pages-banner .crumbs a:hover {
  text-decoration: underline;
}

/* 面包屑 */
.scrumbs {
  background-color: #fff;
  height: 60px;
  overflow: hidden;
}

.scrumbs .wrap {
  height: 100%;
}

.scrumbs .subnav {
  position: relative;
}

.scrumbs .subnav li {
  margin-left: 40px;
}

.scrumbs .subnav li:first-child {
  margin-left: 0;
}

.scrumbs .subnav li a {
  display: inline-block;
  line-height: 60px;
  min-width: 100px;
  position: relative;
  padding: 0 18px;
  text-align: center;
}

.scrumbs .subnav li.active a {
  color: #fff;
  background: linear-gradient(90deg, #2B3B55, #11CB68);
  font-weight: bold;
}

.pages-content {
  background-color: #f2f2f2;
  padding-top: 29px;
  padding-bottom: 84px;
}

/* 翻页 */
.pages {
  text-align: center;
  padding-top: 37px;
  padding-bottom: 40px;
  justify-content: center;
  align-items: center;
}

.pages a {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  position: relative;
  margin: 0 3px;
  color: #333;
}

.pages a.active, .pages a:hover {
  background: linear-gradient(90deg, #2B3B55, #11CB68);
  color: #fff;
  border-color: none;
}

/* 新闻列表 */
.newsLists ul {
  margin-left: -12px;
  margin-right: -13px;
}

.newsLists ul li {
  padding: 0 13px 0 12px;
  width: 33.33%;
  margin-bottom: 25px;
}

.newsLists ul li a {
  background-color: #fff;
  display: block;
  padding: 20px;
}

.newsLists ul li .img {
  height: 16.04167vw;
  max-height: 308px;
  position: relative;
  overflow: hidden;
}

.newsLists ul li .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.newsLists ul li .img .datetime {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(90deg, rgba(43, 59, 85, 0.8), rgba(17, 203, 104, 0.8));
  top: 0;
  left: 0px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-right: 14px;
}

.newsLists ul li .img .datetime span {
  color: #fff;
  width: 100%;
  text-align: right;
  display: block;
  line-height: 1.4;
}

.newsLists ul li .img .datetime span:first-child {
  font-size: 26px;
  font-weight: bold;
}

.newsLists ul li .txt h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 10px 0;
}

.newsLists ul li .txt .datetime {
  color: rgba(2, 2, 2, 0.5);
  margin-bottom: 10px;
}

.newsLists ul li .txt p {
  color: rgba(44, 44, 44, 0.5);
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
}

.newsLists ul li a:hover .img img {
  transform: scale(1.05);
}

@media screen and (max-width: 1440px) {
  .newsLists ul li .img {
    height: 14vw;
  }
}

@media screen and (max-width: 1024px) {
  .newsLists ul li .img {
    height: 20vw;
  }
  .newsLists ul li .img .datetime {
    width: 80px;
    height: 80px;
  }
  .newsLists ul li .img .datetime span:first-child {
    font-size: 18px;
  }
  .pages-content {
    padding-bottom: 40px;
  }
  .pages-banner {
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .newsLists ul {
    margin-left: -5px;
    margin-right: -5px;
  }
  .newsLists ul li {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 10px;
  }
  .newsLists ul li a {
    padding: 10px;
  }
  .pages-banner .tt::after {
    margin-top: 20px;
    width: 30px;
    height: 3px;
  }
  .scrumbs .subnav li {
    margin-left: 20px;
    white-space: nowrap;
  }
  .scrumbs .subnav ul {
    overflow-x: auto;
    width: 100%;
  }
  .pages-banner {
    height: 200px;
    height: 150px;
  }
  .scrumbs .subnav li a {
    min-width: 60px;
  }
}

@media screen and (max-width: 520px) {
  .newsLists ul li {
    width: 100%;
  }
  .newsLists ul li .tt {
    padding: 15px 10px;
  }
  .newsLists ul li .img {
    height: 55vw;
  }
  .newsLists ul li .tt .datetime {
    margin-bottom: 5px;
  }
  .newsLists ul li .tt p {
    line-height: 20px;
    height: 40px;
  }
  .pages-banner .crumbs {
    display: none;
  }
}

/* 关于 */
.about-section4 {
  background-color: #f2f2f2;
  padding: 60px 0;
  overflow: hidden;
  margin-top:30px;
}

.about-section4 .inner {
  background-color: #fff;
  padding: 45px 30px 45px 40px;
}

.about-section4 .text {
  width: 53.45345%;
}

.about-section4 .text .title {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.about-section4  p {
  color: rgba(44, 44, 44, 0.9);
  padding-top: 10px;
  padding-bottom: 5px;
  line-height:200%;
}

.about-section4 .text .title h2 {
  font-weight: normal;
}

.about-section4 .text .cont p {
  line-height: 2;
  color: rgba(44, 44, 44, 0.8);
}

.about-section4 p .img {
  width: 44.21922%;
  background: #11C968;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0px 50px 50px 50px;
  overflow: hidden;
  margin-bottom:20px;
}

.about-section4  img {
  
  max-width:100%;
  margin-bottom:20px;
  object-fit: cover;
}




.about-section1 {
  background-color: #f2f2f2;
  padding: 60px 0;
  overflow: hidden;
}

.about-section1 .inner {
  background-color: #fff;
  padding: 45px 30px 45px 40px;
}

.about-section1 .text {
  width: 53.45345%;
}

.about-section1 .text .title {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.about-section1 .text .title p {
  color: rgba(44, 44, 44, 0.5);
  padding-top: 10px;
  padding-bottom: 5px;
}

.about-section1 .text .title h2 {
  font-weight: normal;
}

.about-section1 .text .cont p {
  line-height: 2;
  color: rgba(44, 44, 44, 0.8);
}

.about-section1 .img {
  width: 44.21922%;
  
  border-radius: 0px 50px 50px 50px;
  overflow: hidden;
}

.about-section1 .img img {
  width: 100%;
 
  object-fit: cover;
}

.about-section2 {
  background: linear-gradient(90deg, #2B3B55, #11CB68);
  padding: 77px 0 72px;
}

.about-section2 ul {
  margin-left: -19px;
  margin-right: -19px;
}

.about-section2 ul li {
  width: 50%;
  padding: 0 19px;
}

.about-section2 ul li a {
  height: 200px;
  border: 1px solid rgba(242, 242, 242, 0.5);
  color: #fff;
}

.about-section2 ul li a .icon {
  width: 60px;
  flex-shrink: 0;
  margin-right: 19px;
}

.about-section2 ul li a .icon img {
  width: 100%;
}

.about-section2 ul li a p {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.about-section2 ul li a:hover {
  border: 1px solid #fff;
}

@media screen and (max-width: 1024px) {
  .about-section1 .inner {
    padding: 20px;
  }
  .about-section1 .img {
    border-radius: 0 25px 25px 25px;
  }
  .about-section2 ul li a {
    height: 150px;
  }
  .about-section2 ul li a .icon {
    width: 40px;
  }
  .about-section4 .inner {
    padding: 20px;
  }
  .about-section4 .img {
    border-radius: 0 25px 25px 25px;
  }
}

@media screen and (max-width: 768px) {
  .about-section1 .text {
    width: 100%;
  }
  .about-section1 .img {
    width: 100%;
    margin-top: 20px;
  }
  .about-section2 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .about-section2 ul li:last-child {
    margin-bottom: 0;
  }
  .about-section4 .text {
    width: 100%;
  }
  .about-section4 .img {
    width: 100%;
	max-width:100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 520px) {
  .about-section1 {
    padding: 30px 0;
  }
  .about-section4 {
    padding: 30px 0;
  }
  .about-section2 {
    padding: 32px 0;
  }
  .about-section2 ul li a {
    padding: 0 15%;
  }
}

/* 产品中心 */
.productsLists ul {
  margin-left: -12px;
  margin-right: -13px;
}

.productsLists ul li {
  width: 33.33%;
  padding: 0 13px 0 12px;
}

.productsLists ul a {
  display: block;
}

.productsLists ul .img {
  height: 23.4375vw;
  background-color: #fff;
  max-height: 450px;
  overflow: hidden;
}

.productsLists ul .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.productsLists ul .txt {
  text-align: center;
  padding: 15px 0;
  text-align: center;
  color: #2C2C2C;
}

.productsLists ul .txt h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.productsLists ul a:hover .img Img {
  transform: scale(1.05);
}

@media screen and (max-width: 1024px) {
  .productsLists ul .img {
    height: 30vw;
  }
}

@media screen and (max-width: 768px) {
  .productsLists ul li {
    width: 50%;
  }
  .productsLists ul .img {
    height: 30vw;
  }
}

@media screen and (max-width: 520px) {
  .productsLists ul {
    margin-left: -5px;
    margin-right: -5px;
  }
  .productsLists ul li {
    width: 50%;
    padding: 0 5px;
  }
  .productsLists ul .img {
    height: 58vw;
  }
}

.products-dtlhd {
  background-color: #fff;
  margin-top: 20px;
  overflow: hidden;
  padding: 30px;
  margin-bottom: 20px;
}

.products-dtlhd .img-swiper {
  width: 35.0365%;
  background-color: #eee;
}

.products-dtlhd .img-swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.products-dtlhd .text {
  width: 60.58394%;
  padding-top: 5%;
}

.products-dtlhd .text h3 {
  margin: 10px 0 40px;
  font-weight: normal;
}

.products-dtlhd .text p {
  line-height: 2;
  color: rgba(0, 0, 0, 0.7);
}

.products-dtlbd {
  background-color: #fff;
  padding: 30px;
}

.products-dtlbd h2 {
  margin-bottom: 20px;
}

.products-dtlbd img {
  max-width: 100%;
}
.products-dtlbd p {
 line-height: 220%;

}
@media screen and (max-width: 768px) {
  .products-dtlhd {
    padding: 20px;
    margin-top: 0;
  }
  .products-dtlhd .img-swiper {
    width: 100%;
  }
  .products-dtlhd .text {
    width: 100%;
  }
  .products-dtlbd {
    padding: 20px;
  }
  .products-dtlhd .text h3 {
    margin-bottom: 20px;
  }
}
.fa{display: block;}
.fa.on{display: inline-block;vertical-align: middle;}
.online{ position:fixed; right:10px; top:50%; transform:translateY(-50%); z-index:200;}
.online li{ margin:5px 0; width:75px; height:75px; position:relative;}
.onlineIco{ float:right; display:block; text-align:center; width:75px; height:75px; border-radius:5px; background:#b5b5b5; color:#FFFFFF; overflow:hidden; transition:all 0.3s ease-in 0s;}
.onlineIco i{ width:75px; height:75px; vertical-align: middle;}
.onlineCon{ font-size:15px; font-weight:bold; color:#FFFFFF; line-height:75px; display:inline;}
.onlineIco:hover{ color:#FFFFFF; background:#128645; width:155px;}
.onlineIco:focus{ color:#FFFFFF;}
.onlineIco:hover i{ text-align:right; width:75px;}
.onlineIco:hover .onlineCon{ text-align:right; display: inline-block;vertical-align: middle;}
.onlineWx{ position:absolute; right:78px; top:80px; width:90px; height:90px; border:1px solid #666666; transform:scale(1,0); transition:all 0.1s ease-in 0.1s;}
.onlineWx img{display: block;width: 100%;}
.online li:hover .onlineWx{ transform:scale(1,1);}
.online li.online_top .onlineIco{ background:#128645;}
.fa-qq{background: url(../images/qq.png)no-repeat;background-size: 36px;background-position: center;}
.fa-phone{background: url(../images/call.png)no-repeat;background-size: 36px;background-position: center;}
.fa-weixin{background: url(../images/weixin.png)no-repeat;background-size: 38px;background-position: center;}
.fa-weibo{background: url(../images/weibo.png)no-repeat;background-size: 38px;background-position: center;}
.fa-arrow-up{background: url(../images/top.png)no-repeat;background-size: 40px;background-position: center;}
.slogn { padding-top: 10px; }
.slogn h1 { font-size: 20px; color: #333;}
.slogn h1 em { display: inline-block; width: 22px; height: 22px;}
.slogn h1 em:before { content: ''; display: block; width: 5px; height: 5px; background-color: #e06a23; border-radius: 50%; position: relative; left: 8px; top: 12px;}
.slogn h1 span { font-weight: 400; }
.slogn p { color: #666; font-size: 18px; padding-top: 6px;}
.productsLists ul {
  margin-left: -12px;
  margin-right: -13px;
}

.list-paddingleft-2  li {
  width: 25%;
  padding: 0 13px 0 12px;
  float:left;
}

.list-paddingleft-2  a {
  display: block;
}

.list-paddingleft-2 ul .img {
  height: 23.4375vw;
  background-color: #fff;
  max-height: 450px;
  overflow: hidden;
}

.list-paddingleft-2 ul .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.list-paddingleft-2 ul .txt {
  text-align: center;
  padding: 15px 0;
  text-align: center;
  color: #2C2C2C;
}

.list-paddingleft-2 ul .txt h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-paddingleft-2 ul a:hover .img Img {
  transform: scale(1.05);
}
.free-phone { position: absolute; right: 0; top: 5px;right:5%;}
.free-phone i { display: block; width: 42px; height: 42px; background-repeat: no-repeat;}
.free-phone .tel i { background-image: url(../images/icon_phone.png); margin-right: 10px; }
.free-phone .tel span { color: #666; }
.free-phone .tel p { color: #009e38; font-size: 24px; font-weight: bold; }

.free-phone .inp-box { width: 30px; height: 42px; background-color: #009e38; border-radius: 30px; position: absolute; top: 0; right: 23px; z-index: 1; }
.free-phone .inp-box input { width: 170px; height: 42px; border:none 0; background: none; padding-left:18px; color: #fff;}
.kd{ width:92%; margin:0 auto; max-width:1300px;}
@media screen and (max-width:768px){
.kd{ width:95%;}
}
/*优势*/
.in-ys{ background:url(../images/ysbg.jpg) center bottom no-repeat; padding:66px 0 0px; width:100%; overflow:hidden;}
.ytit{ text-align:center; margin-bottom:80px;}
@media screen and (max-width:1680px){
.slogn h1 { font-size: 18px; color: #333;}
.slogn h1 em { display: inline-block; width: 22px; height: 22px;}
.slogn p { color: #666; font-size: 14px; padding-top: 6px;}
}
@media screen and (max-width:1366px){
.in-ys{ background:url(../images/ysbg.jpg) center 209px no-repeat;}
.slogn h1 { font-size: 14px; color: #333;}
.slogn h1 em { display: inline-block; width: 22px; height: 22px;}
.slogn p { color: #666; font-size: 12px; padding-top: 6px;}
}
@media screen and (max-width: 768px){
.in-ys{ background-size:500%;}
}

.yi44 .ypic{ width:55%;margin-bottom:2%;}
.yi44 .ycon{ width:38%; position:relative; padding-top:27px;}
.yi44 .ycon  .y01{ position:absolute; width:126px; height:4px; background:#da251f; border:none; left:-125px; top:82px;}
.yi44 .ycon  .y02{ position:absolute; width:456px; height:4px; background:#da251f; border:none; right:-55px; top:80px;}
.yi44 .ycon  .y03{ position:absolute; width:126px; height:4px; background:#da251f; border:none; left:-125px; top:82px;}
.yi44 .ycon  .y04{ position:absolute; width:438px; height:4px; background:#da251f; border:none; right:-55px; top:100px;}
.yi44 .ycon  h6{  display:inline-block; color:#fff; font-size:72px;font-family:'Alternate'; }
.yi44 .ycon  p{ font-size:1.25rem; color:#fff; display:inline-block; margin-left:12px; font-weight:bold; top:-5px; position:relative;}
.yi44 .ycon ul{ margin-top:34px; margin-left:33px;}
.yi44 .ycon li{ margin-bottom:32px;}
.yi44 .ycon li i{ width:7px; height:7px; border:2px solid #fff; border-radius:50%; display:inline-block; position:relative;}
.yi44 .ycon li span{ display:inline-block; font-size:1rem; color:#fff; width:95%; margin-left:5px; line-height:1.5em;}
@media screen and (max-width:1366px){
.yi44 .ycon  .y01{left:-125px; top:82px;}
.yi44 .ycon  .y02{right:-95px; top:80px;}
.yi44 .ycon  .y03{left:-125px; top:82px;}
.yi44 .ycon  .y04{right:-155px; top:100px;}
.yi44 .ycon .m66p{ width:85%}
.yi44 .ycon .m66p br{ display:none;}
}
@media screen and (max-width: 768px){
.yi44 .ypic{ width:100%;}
.yi44 .ycon{ width:100% !important; margin-top:20px;}
.yi44 .ycon  .y01{ display:none;}
.yi44 .ycon  .y02{ display:none;}
.yi44 .ycon  .y03{display:none;} 
.yi44 .ycon  .y04{display:none;}
.yi44 .ycon  h6{ position:relative; top:-20px; }
.yi44 .ycon  p{ width:90%}
.yi44 .ycon  p br{ display:none;}
.yi44 .ycon ul{ margin-top:14px; margin-left:33px;}
.yi44 .ycon li i{ display:none;}
}
/*6道保护*/
.in-6d{ padding:55px 0 74px; width:100%; overflow-x:hidden}
.da6tit{ text-align:center; margin-bottom:52px;}
.da6tit h4{ font-size:2.25rem; color:#da251f; font-weight:bold;}
.da6tit p{ font-size:1.875rem; color:#2c396d}

.da6ul .lile{ text-align:left; margin-bottom:85px;}
.da6ul .lile p{ display:inline-block; position:relative; margin-left:14px; font-size:1.75rem; color:#404040; top:-30px;}
.da6ul .lile span{ display:block; font-size:1rem; color:#404040}
.da6ul .lire{ text-align:right;margin-bottom:85px;}
.da6ul .lire p{display:inline-block; position:relative; margin-right:14px;font-size:1.75rem; color:#404040;top:-30px;}
.da6ul .lire span{ display:block; font-size:1rem; color:#404040}
.da6ul .mr1{ margin-left:118px;}
.da6ul .mr2{ margin-left:41px;}
.da6ul .mr3{margin-left:44px;}
.da6ul .mr4{margin-right:118px;}
.da6ul .mr5{margin-right:41px;}
.da6ul .mr6{margin-right:44px;}
@media screen and (max-width:1366px){
.in-6d{ padding:55px 0 71px;}
.da6ul .mr5{margin-right:0;}
.da6ul .mr6{margin-right:0;}
}
@media screen and (max-width:768px){
.in-6d{ background:url(../images/m6da.jpg) bottom center no-repeat; height:850px}
.da6tit h4{ font-size:2rem; color:#da251f; font-weight:bold;}
.da6tit p{ font-size:1.25rem; color:#2c396d}
.da6ul .fl{ width:50%; display:none}
.da6ul .fr{ width:50%; display:none;}
.da6ul .lile{ margin-left:0 !important;}

}

.hezuo-wrap { width: 100%; height: 26px;  }
.hezuo-cont .tt em { width: 455px; }
.hezuo-box { margin-top: 40px; width: 100%; height: 300px; background-color: #fff; }
.hezuo-box>.img-box { width: 300px; height: 300px; overflow: hidden; }
.hezuo-box .cmy-imgs { width: 900px; height: 300px; position: relative; overflow: hidden;}
.cpy-box { position: relative; }
.cpy-box .btn { width: 36px; height: 36px; background-color: #fff; border:solid 1px #eee; border-radius: 50%; position: absolute; top: 132px; z-index: 9; cursor: pointer;}
.cpy-box .btn:hover { background-color: #e06a23; border-color: #e06a23; }
.cpy-box .left-btn { left: -18px; } 
.cpy-box .right-btn { right: -18px; } 
.cpy-box .btn:before { content: ''; display: block; width: 9px; height: 17px; background: url(../images/icons.png) no-repeat; position: absolute; left: 13px; top: 9px;}
.cpy-box .left-btn:before { background-position: -32px -5px; }
.cpy-box .right-btn:before { background-position: -20px -5px; }
.cmy-imgs ul { width: 3000px; height: 300px; position: relative; }
.hezuo-box .cmy-imgs li { float: left; width: 225px; height: 300px;}
.cmy-imgs a.img-box { display: block; width: 224px; height: 149px; border-right: solid 1px #eee; border-bottom: solid 1px #eee; overflow: hidden;}
.cmy-imgs a.img-box img { display: block; width: 100%; height: auto;}
.hezuo-data { margin-top: 75px; color: #fff; }
.hezuo-data .numbers>div { padding: 0 60px; height: 96px; text-align: center; border-right: solid 1px #ddd;}
.numbers p { font-size: 24px; font-weight: bold; }
.numbers p b { font-size: 70px; font-family: 'num'; font-weight: 400;}
.numbers>div span { font-size: 18px; }
.hezuo-data .numbers .numbers3 { border-right: none 0; }
.hezuo-data .zixun { width: 225px; margin-right: 140px; }
.hezuo-data .zixun a { display: block; width: 225px; height: 58px; line-height: 58px; text-align: center; color: #fff; font-size: 18px; background-color: #e06a23; border-radius: 30px;}
.hezuo-data .zixun p { font-size: 24px; color: #fff; text-align: center; padding-top: 10px; }
.pt60 { padding-top: 60px; }
.tt { text-align: center;position: relative;}
.tt a { color: #333; font-size: 35px; }
.tt span { display: block; font-size: 18px; padding-top: 8px; }
.mol {overflow: hidden;padding:80px 0 0;}
.mol_box {max-width: 1500px;margin: 0 auto;}
.mol_tit {display: flex;align-items: center;justify-content: center;}
.mol_tit p {font-size: 40px;line-height: 45px;display: flex;flex-direction: column;align-items: center;position: relative;font-weight: lighter;}
.mol_call {margin-top: 60px;overflow: hidden;}
.mol_call .new_web_div2021 {    display: flex;    width: 100% !important;overflow: unset !important;}
.mol_call .tempWrap { width: 100% !important;}
.mol_call ul{display: flex;justify-content: space-between;flex-wrap: wrap;    padding: 1%;}
.mol_call li {width: 16%;overflow:hidden;position:relative;    transition: 0.5s;}
.mol_call li:hover {
    box-shadow: 0 0 20px #ddd;
}
.mol_call li:nth-child(n+7) {margin: 12px 0 0;}
.mol_call li>a{display: block;}
.mol_call li>a>img{width:100%;height:auto;}
.mol_call li p {width:100%;height:100%;background: rgba(0,159,60,0.8);;position:absolute;top:0;left:0;transform-origin: center;transition: 600ms;border-radius: 50px 0;    transform: scale(0);}
.mol_call li p a{display:block;font-size:16px;color:#fff;display: flex;align-items: center;justify-content: center;height: 100%;}
.mol_after {display: flex;justify-content: center;align-items: center;}
.mol_after ul {display: flex;justify-content: space-between;width: 4%;}
.mol_after li {width: 10px;height: 10px;border-radius: 50%;background: #5d7db6;transition: 0.5s;}
.mol_after li:hover {width:30px;transition: 0.5s;border-radius: 8px;}