/* 1.联系我们 */
.contact {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
}

.contact h2 {
  font-size: 36px;
  line-height: 37px;
  position: relative;
  font-weight: bold;
  padding-bottom: 30px;
}

.contact h2::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #686767;
  position: absolute;
  bottom: 0;
  left: 0;
}

.contact em {
  display: block;
  color: #8d8d8d;
  margin-top: 20px;
}

.contact .info {
  margin-top: 40px;
  color: #8d8d8d;
}

.contact .info li {
  font-size: 18px;
  line-height: 43px;
}

.leave-box {
  position: relative;
}

.leave-box .pic {
  width: auto;
  height: 400px;
  position: absolute;
  right: 0;
  top: -400px;
}

.leave-box .pic img {
  width: auto;
  height: 100%;
}

.leave {
  margin-top: 40px;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 80px;
  background-color: #ffffff;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

.leave .msg {
  width: 41%;
}

.leave .map {
  width: 51%;
}

.leave .msg h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 42px;
}

.leave .msg ul li {
  width: 100%;
  height: 52px;
  box-sizing: border-box;
  padding: 0 20px;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
}

.leave .msg ul li:last-child {
  height: 200px;
  padding: 10px 20px;
}

.leave .msg ul li:not(:first-child) {
  margin-top: 30px;
}

.leave .msg ul li input,
.leave .msg ul li textarea {
  width: 100%;
  height: 100%;
  /*color: #c4c4c4;*/
  font-size:16px;
}
.leave .msg input::-webkit-input-placeholder,
.leave .msg textarea::-webkit-input-placeholder {
  /* WebKit browsers 适配谷歌 */
  color: #c4c4c4;
  font-size:16px;
}
.leave .msg input:-moz-placeholder,
.leave .msg textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 适配火狐 */
  color: #c4c4c4;
}
.leave .msg input::-moz-placeholder,
.leave .msg textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ 适配火狐 */
  color: #c4c4c4;
}
.leave .msg input:-ms-input-placeholder,
.leave .msg textarea:-ms-input-placeholder {
  /* Internet Explorer 10+  适配ie*/
  color: #c4c4c4;
}

.leave .msg .submit {
  width: 130px;
  height: 52px;
  line-height: 52px;
  color: #ffffff;
  background-color: #686767;
  text-align: center;
  margin-top: 30px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .contact h2 {
    font-size: 30px;
    padding-bottom: 20px;
  }
  .contact .info {
    margin-top: 30px;
  }
  .contact .info li {
    font-size: 16px;
    line-height: 38px;
  }
  .leave-box .pic {
    height: 320px;
    top: -320px;
  }
  .leave {
    margin-top: 30px;
    padding: 50px;
  }
  .leave .msg {
    width: 45%;
  }
  .leave .msg h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .leave .msg ul li:not(:first-child) {
    margin-top: 20px;
  }
  .leave .msg ul li {
    height: 40px;
  }
  .leave .msg ul li:last-child {
    height: 160px;
  }
  .leave .msg .submit {
    height: 40px;
    line-height: 40px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .contact h2 {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 15px;
  }
  .contact h2::before {
    width: 30px;
  }
  .contact .info {
    margin-top: 20px;
  }
  .contact .info li {
    font-size: 14px;
    line-height: 32px;
  }
  .leave-box .pic {
    display: none;
  }
  .leave {
    margin-top: 30px;
    padding: 20px;
  }
  .leave .msg {
    width: 100%;
  }
  .leave .map {
    width: 100%;
    margin-top: 30px;
  }
  .leave .msg h2 {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .leave .msg ul li:not(:first-child) {
    margin-top: 15px;
  }
  .leave .msg ul li {
    height: 32px;
    padding: 0 10px;
  }
  .leave .msg ul li:last-child {
    height: 120px;
    padding: 5px 10px;
  }
  .leave .msg .submit {
    width: 90px;
    height: 32px;
    line-height: 32px;
    margin-top: 15px;
  }
}

/* 2.新闻资讯 */
.news {
  width: 100%;
  height: auto;
}

.news li {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 30px 0;
  /* border-bottom: 1px dashed #e4e4e4; */
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.news li:first-child {
  padding-top: 0;
}

.news li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news li .img {
  width: 320px;
}

.news li .det {
  width: calc(100% - 320px);
  padding-left: 30px;
}

.news li .det h2 {
  font-size: 20px;
  /* 超出隐藏 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news li .det p {
  color: #bfbfbf;
  font-size: 14px;
  margin-top: 18px;
}

.news li .det p span:nth-child(1) {
  margin-right: 60px;
}

.news li .det .desc {
  margin-top: 30px;
  color: #8d8d8d;
  line-height: 32px;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
  /* 文字最多显示几行 */
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分省略号 */
  word-break: break-all; /* break-all(允许在单词内换行。) */
  display: -webkit-box; /* 对象作为伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
  -webkit-line-clamp: 3; /* 显示的行数 */
  max-height: 80rpx; /* 设置最大高度，根据行高，要几行乘以几倍 */
}

.news li .det .desc {
  margin-top: 20px;
  -webkit-line-clamp: 2; /* 显示的行数 */
}

.news li:hover .det h2 {
  color: #686767;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.news2 li:hover .det h2 {
  color: #000000;
}

.news2 li .det span {
  display: block;
  width: 120px;
  height: 42px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #474747;
  background-color: #f5f5f5;
  margin: 30px 0 0;
}

@media (max-width: 1400px) {
  .news li {
    padding-bottom: 20px;
  }
  .news li .img {
    width: 280px;
  }
  .news li .det {
    width: calc(100% - 280px);
  }
  .news li .det p span:nth-child(1) {
    margin-right: 30px;
  }
  .news li .det h2 {
    font-size: 18px;
  }
  .news li .det .desc {
    margin-top: 15px;
  }
}

@media (max-width: 1000px) {
  .news li {
    padding: 10px 0;
  }
  .news li .img {
    width: 90px;
  }
  .news li .det {
    width: calc(100% - 90px);
    padding-left: 10px;
  }
  .news li .det h2 {
    font-size: 14px;
  }
  .news li .det p {
    font-size: 12px;
    margin-top: 5px;
  }
  .news li .det .desc {
    margin-top: 3px;
    line-height: 24px;
    -webkit-line-clamp: 1; /* 显示的行数 */
  }
  .news2 li .det span {
    width: 55px;
    height: 22px;
    line-height: 20px;
    margin: 5px 0 0;
    font-size: 10px;
  }
}

/* 3.详情页 */
.cular h2 {
  text-align: center;
  font-size: 30px;
  line-height: 42px;
  color: #000000;
}

.cular .time {
  font-size: 14px;
  text-align: center;
  margin-top: 30px;
  color: #bfbfbf;
  padding-bottom: 20px;
  border-bottom: 3px solid #686767;
}

.cular .time span:first-child {
  margin-right: 30px;
}

.cular .cons {
  margin-top: 40px;
  line-height: 32px;
  color: #858585;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

.cular .cons h3 {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
}

.cular .cons img {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 1200px;
}

.cularreco {
  margin-top: 100px;
}

.cularreco h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.cularreco a {
  font-size: 17px;
  display: block;
  color: #858585;
  margin-bottom: 10px;
}

@media (max-width: 1400px) {
  .cular h2 {
    font-size: 24px;
    line-height: 37px;
  }
  .cular .time {
    margin-top: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #686767;
  }
  .cular .cons {
    margin-top: 30px;
  }
}

@media (max-width: 1000px) {
  .cular h2 {
    font-size: 20px;
    line-height: 32px;
  }
  .cular .time {
    font-size: 13px;
    margin-top: 15px;
    padding-bottom: 10px;
  }
  .cular .cons {
    font-size: 14px;
    line-height: 27px;
    margin-top: 15px;
  }
  .cular .cons h3 {
    font-size: 15px;
  }
  .cularreco {
    margin-top: 70px;
  }
  .cularreco h3 {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .cularreco a {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

/* 4.货架 */
.shelf {
  display: flex;
  flex-wrap: wrap;
}

.shelf li {
  width: calc((100% / 3) - 28px);
}

.shelf li:not(:nth-child(3n)) {
  margin-right: 42px;
}

.shelf li:nth-child(n + 4) {
  margin-top: 42px;
}

.shelf li .img {
  width: 100%;
  height:240px;
  overflow:hidden;
}

.shelf li .det {
  width: 100%;
  height: auto;
  color: #000000;
  box-sizing: border-box;
  padding: 20px 20px 30px;
  box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.12);
}

.shelf2 li .det {
  box-shadow: 0 0 0 0;
  background-color: #f5f5f5;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.shelf li .det h2 {
  font-size: 20px;
  /* 超出隐藏 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shelf li .det p {
  margin-top: 20px;
  color: #8d8d8d;
  line-height: 27px;
  height:calc(27px * 3);
  /* 文字最多显示几行 */
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分省略号 */
  word-break: break-all; /* break-all(允许在单词内换行。) */
  display: -webkit-box; /* 对象作为伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
  -webkit-line-clamp: 3; /* 显示的行数 */
  max-height: 80rpx; /* 设置最大高度，根据行高，要几行乘以几倍 */
}

.shelf2 li .det p {
  color: #707070;
}

.shelf li .det span {
  display: block;
  width: 120px;
  height: 42px;
  line-height: 40px;
  border: 1px solid #e9e9e9;
  background-color: #ffffff;
  text-align: center;
  margin: 30px 0 0;
}

.shelf2 li .det span {
  border: 1px solid #606060;
  background-color: transparent;
}

.shelf2 li:hover .det {
  background-color: #686767;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.shelf2 li:hover .det h2,
.shelf2 li:hover .det p,
.shelf2 li:hover .det span {
  color: #ffffff;
}

.shelf2 li:hover .det span {
  border: 1px solid #ffffff;
}

@media (max-width: 1400px) {
  .shelf li {
    width: calc((100% / 3) - 14px);
  }
  .shelf li:not(:nth-child(3n)) {
    margin-right: 21px;
  }
  .shelf li:nth-child(n + 4) {
    margin-top: 21px;
  }
  .shelf li .det h2 {
    font-size: 18px;
  }
  .shelf li .det p {
    margin-top: 15px;
  }
  .shelf li .det span {
    margin: 20px 0 0;
  }
}

@media (max-width: 1000px) {
  .shelf li .det {
    padding: 10px 10px 25px;
  }
  .shelf li .det h2 {
    font-size: 16px;
  }
  .shelf-inx li .det p {
    margin-top: 10px;
  }
  .shelf li .det span {
    width: 75px;
    height: 32px;
    line-height: 30px;
    font-size: 12px;
    margin: 15px 0 0;
  }
}

@media (max-width: 768px) {
  .shelf li {
    width: calc(50% - 7px);
  }
  .shelf li:not(:nth-child(3n)) {
    margin-right: 0px;
  }
  .shelf li:nth-child(n + 4) {
    margin-top: 0px;
  }
  .shelf li:not(:nth-child(2n)) {
    margin-right: 14px;
  }
  .shelf li:nth-child(n + 3) {
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .shelf li {
    width: 100%;
  }
  .shelf li:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .shelf li:nth-child(n + 3) {
    margin-top: 0;
  }
  .shelf li:nth-child(n + 2) {
    margin-top: 10px;
  }
}

/* 5.功能特点 */
.fea .cons {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fea .img {
  width: 51%;
}

.fea .txt {
  width: 34%;
}

.fea .desc {
  font-size: 18px;
  line-height: 40px;
  color: #949494;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

.fea .desc s {
  color: #666666;
}

.fea .desc i {
  color: #686767;
}

.fea .pic {
  margin: 100px auto 0;
  width: 85%;
}

@media (max-width: 1400px) {
  .fea .txt {
    width: 45%;
  }
}

@media (max-width: 1000px) {
  .fea .cons {
    margin-top: 30px;
    flex-direction: column;
  }
  .fea .txt {
    width: 100%;
    margin-top: 30px;
  }
  .fea .desc {
    font-size: 15px;
    line-height: 32px;
  }
  .fea .pic {
    margin: 50px auto 0;
    width: 100%;
  }
}

/* 6.控制系统 */
.trol {
  display: flex;
  justify-content: space-between;
}

.trol li {
  width: calc((100% / 5) - 40px);
  height: auto;
  background-color: #ffffff;
  border: 1px solid #e0e2e6;
  box-sizing: border-box;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.trol li .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
}

.trol li h3 {
  font-size: 20px;
}

.trol li p {
  margin-top: 20px;
  line-height: 32px;
  color: #848484;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

@media (max-width: 1400px) {
  .trol li {
    width: calc((100% / 5) - 8px);
    padding: 30px 20px;
    border-radius: 10px;
  }
}

@media (max-width: 1000px) {
  .trol {
    flex-wrap: wrap;
  }
  .trol li {
    width: calc(50% - 5px);
    padding: 20px 10px;
    border-radius: 5px;
  }
  .trol li:nth-child(n + 3) {
    margin-top: 10px;
  }
  .trol li .icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
  }
  .trol li h3 {
    font-size: 17px;
  }
  .trol li p {
    margin-top: 5px;
    line-height: 28px;
  }
}

/* 7.仓储视频 */
.safe-box .desc {
  line-height: 32px;
  color: #858585;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

.safe {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.safe li a {
  display: block;
}

.safe li {
  display: block;
  width: calc((100% / 3) - 26px);
  text-align: center;
  height: auto;
  position: relative;
}

.safe2 li {
  width: calc((100% / 4) - 30px);
}

.safe li:not(:nth-child(3n)) {
  margin-right: 39px;
}

.safe li:nth-child(n + 4) {
  margin-top: 39px;
}

.safe2 li:not(:nth-child(3n)) {
  margin-right: 0;
}

.safe2 li:nth-child(n + 4) {
  margin-top: 0;
}

.safe2 li:not(:nth-child(4n)) {
  margin-right: 40px;
}

.safe2 li:nth-child(n + 5) {
  margin-top: 40px;
}

.safe li .top {
  width: 100%;
  height: auto;
  position: relative;
}

.safe li .img {
  width: 100%;
  height: auto;
}

.safe li .play {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.safe li .play img {
  width: 100%;
  height: 100%;
}

.safe li p {
  margin-top: 15px;
  font-size: 20px;
}

.pic-rule {
  margin-top: 30px;
}

@media (max-width: 1400px) {
  .safe li {
    width: calc((100% / 3) - 18px);
  }
  .safe li:not(:nth-child(3n)) {
    margin-right: 27px;
  }
  .safe li:nth-child(n + 4) {
    margin-top: 27px;
  }
  .safe2 li {
    width: calc((100% / 4) - 18px);
  }
  .safe2 li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .safe2 li:nth-child(n + 4) {
    margin-top: 0;
  }
  .safe2 li:not(:nth-child(4n)) {
    margin-right: 24px;
  }
  .safe2 li:nth-child(n + 5) {
    margin-top: 24px;
  }
  .safe li .play {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1000px) {
  .safe {
    margin-top: 20px;
  }
  .safe li {
    width: calc((100% / 3) - 10px);
  }
  .safe li:not(:nth-child(3n)) {
    margin-right: 15px;
  }
  .safe li:nth-child(n + 4) {
    margin-top: 15px;
  }
  .safe2 li {
    width: calc((100% / 4) - 9px);
  }
  .safe2 li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .safe2 li:nth-child(n + 4) {
    margin-top: 0;
  }
  .safe2 li:not(:nth-child(4n)) {
    margin-right: 12px;
  }
  .safe2 li:nth-child(n + 5) {
    margin-top: 12px;
  }
  .safe li .play {
    width: 30px;
    height: 30px;
  }
  .safe li p {
    margin-top: 5px;
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .safe li {
    width: calc((100% / 2) - 5px);
  }
  .safe li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .safe li:nth-child(n + 4) {
    margin-top: 0;
  }
  .safe2 li:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .safe2 li:nth-child(n + 5) {
    margin-top: 0;
  }
  .safe li:not(:nth-child(2n)) {
    margin-right: 10px;
  }
  .safe li:nth-child(n + 3) {
    margin-top: 10px;
  }
}

/* 8.机器人 */
.robot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.robot li {
  text-align: center;
  position: relative;
  padding-bottom: 30px;
}

.robot li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #686767;
}

.robot li img {
  display: block;
  width: auto;
  height: 48px;
  margin: 0 auto 20px;
}

.robot li h2 {
  font-size: 20px;
  text-align: center;
}

.robot li p {
  font-size: 20px;
  margin-top: 20px;
  color: #8d8d8d;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .robot li {
    padding-bottom: 15px;
  }
  .robot li::before {
    width: 40px;
  }
  .robot li img {
    height: 32px;
    margin: 0 auto 20px;
  }
  .robot li h2 {
    font-size: 16px;
  }
  .robot li p {
    font-size: 12px;
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .robot li {
    width: 50%;
  }
  .robot li:nth-child(n + 3) {
    margin-top: 30px;
  }
}

/* 9.咨询 */
.consult .submit {
  width: 130px;
  height: 52px;
  line-height: 52px;
  color: #ffffff;
  background-color: #686767;
  text-align: center;
  margin-top: 40px;
  cursor: pointer;
  margin-left: 110px;
}

.consult ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.consult ul li {
  width: 31%;
  height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consult ul li:nth-child(4),
.consult ul li:nth-child(5) {
  width: 100%;
  margin-top: 20px;
}

.consult ul li:nth-child(4) {
  height: 200px;
}

.consult ul li:nth-child(5) {
  justify-content: flex-start;
}

.consult ul li span {
  display: block;
  width: 100px;
  height: 100%;
  line-height: 52px;
  font-size: 18px;
  color: #666666;
  text-align: right;
}

.consult ul li span i {
  color: #686767;
}

.consult ul li input,
.consult ul li textarea {
  width: calc(100% - 110px);
  height: 100%;
  border: 1px solid #eaeaea;
  padding: 0 20px;
  color: #c4c4c4;
}

.consult ul li textarea {
  padding: 10px 20px;
}

.consult ul li:last-child input {
  width: 300px;
  margin-left: 10px;
}

.consult ul li img {
  width: auto;
  height: 52px;
  margin-left: 15px;
}

.consult ul li em {
  font-size: 17px;
  color: #666666;
  margin-left: 15px;
  cursor: pointer;
}

.consult ul li input::-webkit-input-placeholder,
.consult ul li textarea::-webkit-input-placeholder {
  /* WebKit browsers 适配谷歌 */
  color: #c4c4c4;
}
.consult ul li input:-moz-placeholder,
.leave .msg textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 适配火狐 */
  color: #c4c4c4;
}
.consult ul li input::-moz-placeholder,
.consult ul li textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ 适配火狐 */
  color: #c4c4c4;
}
.consult ul li input:-ms-input-placeholder,
.consult ul li textarea:-ms-input-placeholder {
  /* Internet Explorer 10+  适配ie*/
  color: #c4c4c4;
}

@media (max-width: 1400px) {
  .consult ul li {
    width: 48%;
  }
  .consult ul li:nth-child(3) {
    margin-top: 20px;
  }
}

@media (max-width: 1000px) {
  .consult ul li {
    width: 100%;
    height: 39px;
  }
  .consult ul li:nth-child(4) {
    height: 120px;
  }
  .consult ul li:nth-child(2) {
    margin-top: 20px;
  }
  .consult ul li:nth-child(3) {
    margin-top: 20px;
  }
  .consult ul li span {
    width: 85px;
    line-height: 39px;
    font-size: 15px;
  }
  .consult ul li input,
  .consult ul li textarea {
    width: calc(100% - 95px);
    padding: 0 15px;
  }
  .consult ul li:last-child input {
    width: calc(100% - 95px);
  }
  .consult ul li textarea {
    padding: 5px 15px;
  }
  .consult ul li:nth-child(5) {
    flex-wrap: wrap;
  }
  .consult ul li img {
    height: 32px;
    margin-left: 95px;
    margin-top: 15px;
  }
  .consult ul li em {
    font-size: 14px;
    margin-left: 15px;
    margin-top: 15px;
  }
  .consult .submit {
    width: 90px;
    height: 39px;
    line-height: 39px;
    margin-top: 80px;
    margin-left: 95px;
  }
}

/* 10.托盘存取 */
.tray {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}

.tray li {
  width: 27%;
  background-color: #ffffff;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 30px 10px;
  height: 240px;
  text-align: center;
  cursor: pointer;
  position: relative;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

.tray li:nth-child(2) {
  width: 34%;
  height: 280px;
  padding: 50px 40px;
}

.tray li h2 {
  font-size: 24px;
}

.tray li p {
  margin-top: 30px;
  color: #8d8d8d;
  line-height: 32px;
}

.tray li .ico {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #2a2a2a;
  padding: 35px;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.tray li:hover h2 {
  color: #686767;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.tray li:hover .ico {
  background-color: #686767;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1400px) {
  .tray li {
    width: 30%;
  }
  .tray li h2 {
    font-size: 20px;
  }
  .tray li p {
    margin-top: 20px;
  }
}

@media (max-width: 1000px) {
  .tray {
    padding-bottom: 0;
    flex-direction: column;
  }
  .tray li {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    padding: 20px 15px;
  }
  .tray li:nth-child(2) {
    width: 100%;
    height: 200px;
    padding: 20px 15px;
  }
  .tray li:nth-child(n + 2) {
    margin-top: 20px;
  }
  .tray li h2 {
    font-size: 17px;
  }
  .tray li p {
    margin-top: 15px;
    line-height: 27px;
  }
  .tray li .ico {
    width: 60px;
    height: 60px;
    padding: 15px;
    bottom: 10px;
  }
}

/* 11.穿梭式货架 */
.rack {
  display: flex;
  justify-content: space-between;
}

.rack li {
  width: 20%;
  height: auto;
  text-align: center;
}

.rack li .lab {
  font-size: 18px;
}

.rack li .num {
  margin-top: 15px;
  position: relative;
}

.rack li .num::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 10px;
  background-color: #eaeaea;
}

.rack li:first-child .num::before {
  border-radius: 10px 0 0 10px;
}

.rack li:last-child .num::before {
  border-radius: 0 10px 10px 0;
}

.rack li .num span {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 1px solid #eaeaea;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 8px;
}

.rack li .num span i {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #686767;
  color: #ffffff;
  font-size: 14px;
  line-height: 34px;
  border-radius: 50%;
  font-weight: bold;
}

.rack li .det {
  margin-top: 20px;
}

.rack li .det {
  padding: 0 20px;
}

.rack li:first-child .det {
  padding-left: 0;
}

.rack li:last-child .det {
  padding-right: 0;
}

.rack li .det span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #eaeaea;
  padding: 15px 20px;
  color: #8d8d8d;
  line-height: 32px;
  width: 100%;
  height: 130px;
}

@media (max-width: 1400px) {
  .rack li .det {
    padding: 0 5px;
  }
  .rack li .det span {
    padding: 15px;
    height: 180px;
  }
}

@media (max-width: 1000px) {
  .rack li .det {
    padding: 0 5px;
  }
  .rack li .det span {
    padding: 15px;
    height: 120px;
    line-height: 24px;
  }
  .rack li .lab {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .rack {
    flex-direction: column;
  }
  .rack li .num::before {
    border-radius: 10px;
  }
  .rack li:first-child .num::before {
    border-radius: 10px;
  }
  .rack li:last-child .num::before {
    border-radius: 10px;
  }
  .rack li {
    width: 100%;
  }
  .rack li:nth-child(n + 2) {
    margin-top: 20px;
  }
  .rack li .det {
    padding: 0;
  }
  .rack li .det span {
    height: 90px;
  }
}

/* 12.关于我们 */
.about {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  background: url(../images/about.png) no-repeat center/cover;
}

.about .cons {
  width: 50%;
  height: auto;
  float: left;
  box-sizing: border-box;
  overflow: hidden;
  padding: 67px 0 133px;
}

.about2 .cons {
  padding: 260px 0 133px;
}

.about .name {
  margin-top: 10px;
  font-size: 27px;
  font-weight: bold;
}

.about .name i {
  color: #686767;
}

.about .name::before {
  content: "";
  display: block;
  width: 2px;
 
  background-color: #686767;
  margin-bottom: 30px;
}

.about .desc {
  margin-top: 43px;
  color: #8d8d8d;
  line-height: 32px;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

.about a {
  margin: 60px 0 0;
  display: block;
  width: 150px;
  height: 52px;
  line-height: 50px;
  border: 1px solid #767676;
  text-align: center;
  text-transform: uppercase;
}

.about ul {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

.about ul li i {
  font-family: "Bahnschrift";
  font-size: 75px;
  line-height: 75px;
  display: inline-block;
  font-weight: bold;
}

.about ul li s {
  font-size: 18px;
  color: #8d8d8d;
}

.about ul li p {
  font-size: 20px;
  margin-top: -3px;
  color: #8d8d8d;
}

@media (max-width: 1400px) {
  .about .cons {
    padding: 43px 0 90px;
  }
  .about2 .cons {
    padding: 70px 0 90px;
  }
  .about .name::before {
    margin-bottom: 15px;
  }
  .about .name {
    font-size: 24px;
  }
  .about .desc {
    margin-top: 23px;
  }
  .about ul {
    margin-top: 30px;
  }
  .about ul li i {
    font-size: 50px;
    line-height: 50px;
  }
  .about ul li s {
    font-size: 16px;
  }
  .about ul li p {
    font-size: 16px;
    margin-top: 0;
  }
  .about a {
    width: 120px;
    height: 42px;
    line-height: 40px;
    margin: 50px 0 0;
  }
}

@media (max-width: 1000px) {
  .about {
    background-size: 100% auto;
    background-position: 0 0;
  }
  .about .cons {
    width: 100%;
    padding: 32px 0 53px;
  }
  .about2 .cons {
    padding: 30px 0 52px;
  }
  .about .name {
    font-size: 18px;
  }
  .about .name::before {
    height: 30px;
    margin-bottom: 10px;
  }
  .about .desc {
    margin-top: 15px;
    line-height: 26px;
    font-size: 14px;
  }
  .about ul {
    margin-top: 25px;
  }
  .about a {
    margin-top: 37px;
    width: 90px;
    height: 37px;
    line-height: 35px;
    margin: 30px auto 0;
  }
  .about ul li i {
    font-size: 35px;
    line-height: 35px;
  }
  .about ul li s {
    font-size: 14px;
  }
  .about ul li p {
    font-size: 14px;
  }
}

/* 13.企业文化 */
.culture {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.culture li {
  width: calc((100% / 4) - 50px);
  height: auto;
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 80px 40px;
  /* 蓝色阴影 */
  box-shadow: 0 0 15px 0 rgba(233, 235, 240, 1);
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.culture li .icon {
  width: 100%;
  height: 60px;
  text-align: center;
}

.culture li img {
  width: auto;
  height: 100%;
}

.culture li h3 {
  font-size: 20px;
  margin-top: 44px;
}

.culture li p {
  margin-top: 40px;
  line-height: 32px;
  color: #8d8d8d;
}

.culture li:hover {
  color: #ffffff;
  background-color: #686767;
  transform: translateY(-30px);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.culture li:hover .icon img {
  /* 图片变白 */
  filter: grayscale(100%) brightness(400%);
}

.culture li:hover p {
  color: #ffffff;
}

@media (max-width: 1400px) {
  .culture li {
    width: calc((100% / 4) - 20px);
    padding: 80px 30px;
    border-radius: 30px;
  }
}

@media (max-width: 1000px) {
  .culture {
    flex-direction: column;
  }
  .culture li {
    width: 100%;
    padding: 32px 20px;
    border-radius: 10px;
    margin-top: 15px;
  }
  .culture li:hover {
    transform: translateY(0);
  }
  .culture li .icon {
    height: 40px;
  }
  .culture li h3 {
    font-size: 16px;
    margin-top: 23px;
  }
  .culture li p {
    margin-top: 17px;
    line-height: 27px;
  }
}

/* 14.合作客户 */
.coop {
  display: flex;
  flex-wrap: wrap;
}

.coop li {
  cursor: pointer;
  width: calc((100% / 5) - 40px);
}

.coop li:not(:nth-child(5n)) {
  margin-right: 50px;
}

.coop li:nth-child(n + 6) {
  margin-top: 30px;
}

@media (max-width: 1400px) {
  .coop li {
    width: calc((100% / 5) - 6px);
  }
  .coop li:not(:nth-child(5n)) {
    margin-right: 7.5px;
  }
  .coop li:nth-child(n + 6) {
    margin-top: 7.5px;
  }
}

@media (max-width: 1000px) {
  .coop li {
    width: calc((100% / 3) - 6px);
  }
  .coop li:not(:nth-child(5n)) {
    margin-right: 0;
  }
  .coop li:not(:nth-child(3n)) {
    margin-right: 9px;
  }
  .coop li:nth-child(n + 6) {
    margin-top: 0;
  }
  .coop li:nth-child(n + 4) {
    margin-top: 9px;
  }
}

@media (max-width: 580px) {
  .coop li {
    width: calc((100% / 2) - 5px);
  }
  .coop li:not(:nth-child(5n)) {
    margin-right: 0;
  }
  .coop li:nth-child(n + 6) {
    margin-top: 0;
  }
  .coop li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .coop li:nth-child(n + 4) {
    margin-top: 0;
  }
  .coop li:not(:nth-child(2n)) {
    margin-right: 10px;
  }
  .coop li:nth-child(n + 3) {
    margin-top: 10px;
  }
}

/* 15.荣誉证书 */
.cert {
  display: flex;
  flex-wrap: wrap;
}

.cert li {
  width: calc(25% - 24px);
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  color: #8d8d8d;
}

.cert li:not(:nth-child(4n)) {
  margin-right: 32px;
}

.cert li:nth-child(n + 5) {
  margin-top: 32px;
}

.cert li img {
  width: 100%;
  margin-bottom: 15px;
}

@media (max-width: 1000px) {
  .cert li img {
    margin-bottom: 10px;
  }
  .cert li {
    width: calc(25% - 6px);
    font-size: 15px;
  }
  .cert li:not(:nth-child(4n)) {
    margin-right: 8px;
  }
  .cert li:nth-child(n + 5) {
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  .cert li {
    width: calc(50% - 6px);
  }
  .cert li:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .cert li:nth-child(n + 5) {
    margin-top: 0;
  }
  .cert li:not(:nth-child(2n)) {
    margin-right: 12px;
  }
  .cert li:nth-child(n + 3) {
    margin-top: 12px;
  }
}

/* 16.客户2 */
.client {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.client li {
  width: calc(20% - 16px);
  background-color: #f5f5f5;
  border-radius: 50px 0 50px 0;
  padding: 50px 20px 70px;
  cursor: pointer;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.client li:hover {
  background-color: #686767;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.client li h3 {
  font-size: 20px;
  height: 80px;
  line-height: 32px;
  border-bottom: 1px dashed #cccccc;
}

.client li p {
  margin-top: 20px;
  color: #8e919b;
  line-height: 32px;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

.client li:hover h3,
.client li:hover p {
  color: #ffffff;
}

.client li:hover h3 {
  border-bottom: 1px dashed #ffffff;
}

@media (max-width: 1300px) {
  .client {
    flex-wrap: wrap;
  }
  .client li {
    width: calc(50% - 5px);
    border-radius: 20px 0 20px 0;
  }
  .client li:nth-child(n + 3) {
    margin-top: 20px;
  }
}

@media (max-width: 1000px) {
  .client li {
    width: 100%;
    border-radius: 10px 0 10px 0;
    padding: 20px 15px;
  }
  .client li:nth-child(n + 3) {
    margin-top: 0;
  }
  .client li:nth-child(n + 2) {
    margin-top: 15px;
  }
  .client li h3 {
    font-size: 16px;
    height: auto;
    line-height: 30px;
    padding-bottom: 10px;
  }
  .client li p {
    margin-top: 10px;
    line-height: 24px;
  }
}

/* 17.搜索 */
.index-swiper-box {
  position: relative;
}

.hunt-main {
  z-index: 20;
  position: relative;
}

.hunt-box {
  position: absolute;
  z-index: 10;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: auto;
  background-color: #ffffff;
  padding: 35px 200px;
  border-radius: 15px;
  /* 阴影 */
  box-shadow: 3px 5px 20px 0px rgba(0, 0, 0, 0.08);
}

.sear-box {
  width: 100%;
  height: 50px;
}

.sear-box .sear {
  float: left;
  width: calc(100% - 140px);
  height: 50px;
  border: 1px solid #e3e3e3;
  padding: 0 20px;
}

.sear-box .sear img {
  float: right;
  width: 24px;
  height: 24px;
  margin-top: 13px;
}

.sear-box .sear input {
  float: left;
  width: calc(100% - 44px);
  height: 100%;
  color: #8d8d8d;
}

.sear-box .sear-btn {
  float: right;
  width: 120px;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  background-color: #686767;
  text-align: center;
  cursor: pointer;
}

.hunt-box .keys {
  width: 100%;
  margin-top: 10px;
  color: #8d8d8d;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
}

.hunt-box .keys span {
  width: 90px;
  line-height: 30px;
}

.hunt-box .keys p {
  width: calc(100% - 100px);
  line-height: 30px;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

@media (max-width: 1480px) {
  .hunt-box {
    width: 98%;
  }
}

@media (max-width: 1400px) {
  .hunt-box {
    padding: 30px 100px;
    position: relative;
    bottom: 0;
  }
}

@media (max-width: 1000px) {
  .hunt-box {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .sear-box {
    height: 38px;
  }
  .sear-box .sear {
    width: calc(100% - 80px);
    height: 38px;
    padding: 0 10px;
  }
  .sear-box .sear-btn {
    width: 70px;
    height: 38px;
    line-height: 38px;
  }
  .sear-box .sear img {
    width: 18px;
    height: 18px;
    margin-top: 9px;
  }
  .sear-box .sear input {
    width: calc(100% - 28px);
  }
  .hunt-box .keys {
    font-size: 13px;
  }
  .hunt-box .keys span {
    width: 80px;
    line-height: 27px;
  }
  .hunt-box .keys p {
    width: calc(100% - 85px);
    line-height: 27px;
  }
}

/* 18.客户轮播图 */
.coop-swiper {
  position: relative;
}

.coop-swiper .swiper-container {
  width: calc(100% - 100px);
}

.coop-swiper .swiper-slide {
  width: 100%;
  height: auto;
}

.coop-swiper img {
  width: 100%;
  height: auto;
}

.coop-swiper .swiper-button-next,
.coop-swiper .swiper-button-prev {
  width: 24px;
  height: 24px;
  margin-top: -13px;
}
.coop-swiper .swiper-button-prev,
.coop-swiper .swiper-container-rtl .swiper-button-next {
  
  background-size: 100% 100%;
  left: 0;
  cursor: pointer;
}
.coop-swiper .swiper-button-next,
.coop-swiper .swiper-container-rtl .swiper-button-prev {
 
  background-size: 100% 100%;
  right: 0;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .coop-swiper .swiper-container {
    width: calc(100% - 60px);
  }
  .coop-swiper .swiper-button-next,
  .coop-swiper .swiper-button-prev {
    width: 18px;
    height: 18px;
  }
}

/* 19.密集系统 */
.dense-box .tp {
  width: 100%;
  height: 360px;
  padding-top: 53px;
  background: url(../images/dense-bg.png) no-repeat center/cover;
}

.dense {
  margin-top: -180px;
  position: relative;
}

.dense li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dense li:not(:first-child) {
  margin-top: 90px;
}

.dense li .img {
  order: 1;
  width: 50%;
  border-radius: 15px;
  overflow: hidden;
}

.dense li:nth-child(even) .img {
  order: 2;
}

.dense li .txt {
  order: 2;
  width: 53%;
  margin-left: -3%;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 50px 50px;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

.dense li:nth-child(even) .txt {
  order: 1;
  margin-left: 0;
  margin-right: -3%;
}

.dense li .txt h3 {
  font-size: 24px;
  font-weight: bold;
}

.dense li .txt .spot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.dense li .txt .spot dl {
  width: 45%;
  margin-top: 40px;
  margin-bottom: 0;
}

.dense li .txt .spot dl p {
  font-size: 20px;
  line-height: 36px;
  position: relative;
  padding-left: 20px;
}

.dense li .txt .spot dl p i {
  color: #686767;
  font-weight: bold;
}

.dense li .txt .spot dl p::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #000000;
  position: absolute;
  left: 0;
  top: 14px;
  border-radius: 50%;
}

.dense li .txt .spot dl span {
  display: block;
  padding-left: 20px;
  color: #8d8d8d;
  line-height: 27px;
  margin-top: 7px;
}

@media (max-width: 1400px) {
  .dense li:not(:first-child) {
    margin-top: 60px;
  }
  .dense li .txt {
    padding: 30px;
  }
  .dense li .txt h3 {
    font-size: 20px;
  }
  .dense li .txt .spot dl {
    width: 48%;
    margin-top: 20px;
  }
  .dense li .txt .spot dl p {
    font-size: 17px;
    line-height: 30px;
  }
  .dense li .txt .spot dl span {
    margin-top: 5px;
  }
  .dense li .txt .spot dl p::before {
    top: 12px;
  }
}

@media (max-width: 1000px) {
  .dense-box .tp {
    padding-top: 30px;
    height: 260px;
  }
  .dense {
    margin-top: -160px;
  }
  .dense li:not(:first-child) {
    margin-top: 40px;
  }
  .dense li {
    flex-direction: column;
  }
  .dense li .img {
    order: 1;
    width: 50%;
    border-radius: 5px;
  }
  .dense li:nth-child(even) .img {
    order: 1;
  }
  .dense li .txt {
    order: 2;
    width: 100%;
    margin-left: 0;
    border-radius: 10px;
    padding: 30px 20px;
  }
  .dense li:nth-child(even) .txt {
    order: 2;
    margin-left: 0;
    margin-right: 0;
  }
  .dense li .txt h3 {
    font-size: 17px;
  }
  .dense li .txt .spot dl {
    width: 100%;
    margin-top: 10px;
  }
  .dense li .txt .spot dl p {
    font-size: 15px;
    line-height: 26px;
    padding-left: 15px;
  }
  .dense li .txt .spot dl span {
    margin-top: 3px;
    line-height: 27px;
    padding-left: 15px;
  }
  .dense li .txt .spot dl p::before {
    width: 4px;
    height: 4px;
    top: 11px;
  }
}

/* 20.核心优势 */
.core-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.core-swiper .swiper-container {
  width: calc(100% - 120px);
  height: auto;
}

.core-swiper .swiper-slide {
  width: 100%;
  height: auto;
  padding: 20px;
}

.core-swiper .lcmain {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background-color: #ffffff;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

.core-swiper .img {
  width: 54%;
}

.core-swiper .txt {
  width: 46%;
  box-sizing: border-box;
  padding: 57px 44px;
}

.core-swiper .txt h2 {
  font-size: 32px;
  line-height: 37px;
  font-weight: bold;
}

.core-swiper .txt span {
  color: #686767;
  font-size: 18px;
  line-height: 32px;
}

.core-swiper .txt .det {
  position: relative;
}

.core-swiper .txt .det em {
  font-family: "Arial";
  font-size: 140px;
  line-height: 140px;
  color: #eaeaea;
  font-style: italic;
  position: absolute;
}

.core-swiper .txt .det em:nth-child(1) {
  left: -44px;
  top: 7px;
}

.core-swiper .txt .det em:nth-child(3) {
  right: 0;
  bottom: -60px;
}

.core-swiper .txt .desc {
  padding: 37px 32px 70px;
  font-size: 15px;
  line-height: 34px;
  color: #8d8d8d;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

/* 轮播图默认样式修改 */
.core-swiper .swiper-button-next,
.core-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
}

.core-swiper .swiper-button-prev,
.core-swiper .swiper-container-rtl .swiper-button-next {
  background-image: url(../images/row-left3.png);
  background-size: 100% 100%;
  left: 0;
}

.core-swiper .swiper-button-next,
.core-swiper .swiper-container-rtl .swiper-button-prev {
  background-image: url(../images/row-right3.png);
  background-size: 100% 100%;
  right: 0;
}

.core-swiper .swiper-container-horizontal > .swiper-pagination-bullets,
.core-swiper .swiper-pagination-custom,
.core-swiper .swiper-pagination-fraction {
  text-align: center;
  bottom: 30px;
  font-family: "Arial";
  font-weight: bold;
  color: #000000;
  font-size: 20px;
  padding-left: 20%;
}

.core-swiper .dangqian {
  font-size: 40px;
  color: #686767;
}

@media (max-width: 1400px) {
  .core-swiper .swiper-container {
    padding-bottom: 75px;
  }
  .core-swiper .img {
    width: 50%;
  }
  .core-swiper .txt {
    width: 50%;
    padding: 32px;
  }
  .core-swiper .txt h2 {
    font-size: 24px;
  }
  .core-swiper .txt span {
    font-size: 16px;
  }
  .core-swiper .txt .det em {
    font-size: 90px;
    line-height: 90px;
  }
  .core-swiper .txt .desc {
    padding: 27px;
    font-size: 16px;
  }
  .core-swiper .txt .det em:nth-child(1) {
    left: -32px;
  }
  .core-swiper .txt .det em:nth-child(3) {
    bottom: -32px;
  }
  /* 轮播图默认样式修改 */
  .core-swiper .swiper-button-next,
  .core-swiper .swiper-button-prev {
    width: 43px;
    height: 43px;
  }
  .core-swiper .swiper-container-horizontal > .swiper-pagination-bullets,
  .core-swiper .swiper-pagination-custom,
  .core-swiper .swiper-pagination-fraction {
    padding-left: 0;
    bottom: 0;
  }
  .core-swiper .dangqian {
    font-size: 32px;
  }
}

@media (max-width: 1000px) {
  .core-swiper .swiper-container {
    width: calc(100% - 62px);
    padding-bottom: 50px;
  }
  .core-swiper .swiper-slide {
    padding: 10px;
  }
  .core-swiper .lcmain {
    flex-direction: column;
    align-items: center;
  }
  .core-swiper .img {
    margin-top: 20px;
  }
  .core-swiper .txt {
    width: 100%;
    padding: 15px 15px 30px;
  }
  .core-swiper .txt h2 {
    font-size: 17px;
    text-align: center;
    line-height: 27px;
  }
  .core-swiper .txt span {
    display: block;
    font-size: 14px;
    text-align: center;
    line-height: 25px;
  }
  .core-swiper .txt .det em {
    display: none;
  }
  .core-swiper .txt .desc {
    font-size: 14px;
    line-height: 28px;
    padding: 0;
    margin-top: 10px;
  }
  /* 轮播图默认样式修改 */
  .core-swiper .swiper-button-next,
  .core-swiper .swiper-button-prev {
    width: 28px;
    height: 28px;
  }
  .core-swiper .swiper-container-horizontal > .swiper-pagination-bullets,
  .core-swiper .swiper-pagination-custom,
  .core-swiper .swiper-pagination-fraction {
    text-align: center;
    bottom: 0;
  }
  .core-swiper .dangqian {
    font-size: 23px;
  }
}

/* 21.新闻中心 */
.jour {
  padding: 180px 0 140px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.jour .lf {
  width: 220px;
  float: left;
}

.jour .rg {
  float: right;
  width:100%;
 
}

.jour-tabs {
  margin-top: 140px;
}

.jour-tabs a {
  display: block;
  color: #8d8d8d;
  line-height: 43px;
  font-size: 20px;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.jour-tabs a img {
  width: 29px;
  height: auto;
  margin-left: 35px;
  opacity: 0;
}

.jour-tabs a.active img,
.jour-tabs a:hover img {
  opacity: 1;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.jour-tabs .more {
  margin-top: 120px;
}

.jour-swiper {
  position: relative;
}

.jour-swiper .swiper-container {
  padding-top: 30px;
}

.jour-swiper .swiper-slide {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  cursor: pointer;
  /* 蓝色阴影 */
  /* box-shadow: 0 0 15px 0 rgba(233, 235, 240, 1); */
}

.jour-swiper .swiper-slide a {
  display: block;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  border-bottom: 12px solid #ffffff;
}

.jour-swiper .swiper-slide:hover  a {
  background-color: #1f1f1f;
  transform: translateY(-30px);
  border-bottom: 12px solid #686767;
}

.jour-swiper .swiper-slide .det {
  padding: 26px 30px;
}

.jour-swiper .img {
  border-radius: 15px 0 15px 0;
  overflow: hidden;
}

.jour-swiper a h3 {
  font-size: 24px;
  font-weight: bold;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.jour-swiper a p {
  line-height: 32px;
  margin-top: 23px;
  color: #8d8d8d;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
  overflow:hidden;
  text-overflow:ellipsis;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

.jour-swiper a span {
  font-family: "Arial";
  display: block;
  height: 25px;
  line-height: 25px;
  margin-top: 35px;
  font-size: 20px;
  font-weight: bold;
}

.jour-swiper a span i {
  float: left;
}

.jour-swiper a span img {
  float: right;
  width: 29px;
  height: auto;
  margin-top: 5px;
}

    .jour-swiper .swiper-slide:hover  a,
    .jour-swiper .swiper-slide:hover  p,
    .jour-swiper .swiper-slide:hover  span {
        color: #ffffff;
    }

        .jour-swiper .swiper-slide:hover  span img {
            /* 图片变白 */
            filter: grayscale(200%) brightness(700%);
        }

@media (max-width: 1600px) {
  .jour .rg {
    padding-left: 30px;
  }
}

@media (max-width: 1400px) {
  .jour .lf {
    width: 165px;
  }
  .jour .rg {
    width: calc(100% - 165px);
    padding-left: 20px;
  }
  .jour-swiper .swiper-slide .det {
    padding: 25px 20px;
  }
  .jour-tabs a {
    font-size: 18px;
  }
  .jour-swiper a h3 {
    font-size: 20px;
  }
  .jour-swiper a p {
    margin-top: 15px;
  }
  .jour-swiper a span {
    margin-top: 20px;
    font-size: 18px;
  }
}

@media (max-width: 1000px) {
  .jour {
    padding: 60px 0 140px;
  }
  .jour .title-lf {
    text-align: center;
  }
  .jour .lf {
    width: 100%;
    float: none;
  }
  .jour .rg {
    float: none;
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .jour-tabs {
    margin-top: 20px;
    text-align: center;
  }
  .jour-tabs a {
    display: inline-block;
    font-size: 16px;
    line-height: 32px;
  }
  .jour-tabs .ify a:not(:last-child) {
    margin-right: 30px;
  }
  .jour-tabs a img {
    width: 18px;
    margin-left: 5px;
  }
  .jour-tabs .more {
    margin-top: 20px;
  }
  .jour-swiper .swiper-slide {
    border-radius: 5px;
  }
  .jour-swiper .swiper-slide a {
    border-radius: 5px;
    border-bottom: 5px solid #ffffff;
  }
    .jour-swiper .swiper-slide:hover  a {
        border-bottom: 5px solid #686767;
    }
  .jour-swiper .img {
    border-radius: 5px 0 5px 0;
  }
  .jour-swiper .swiper-slide .det {
    padding: 20px 15px;
  }
  .jour-swiper a h3 {
    font-size: 16px;
  }
  .jour-swiper a p {
    margin-top: 10px;
    line-height: 27px;
  }
  .jour-swiper a span {
    margin-top: 10px;
    font-size: 15px;
  }
  .jour-swiper a span img {
    width: 18px;
    margin-top: 9px;
  }
}




.ys_bg{
  padding: 60px 0px;background-color: #f8f8f8;margin-top: 20px;
}

.in-news-pic{ border-bottom: 1px dashed #e5e5e5; margin-top: 120px;}
.in-news-pic ul{ margin: 40px 0 0 -10px; }
.in-news-pic li{ float: left; width:33.33333%; }
.in-news-pic li a{display: block; margin: 0 0 0 10px; background-color: #f8f8f8;}
.in-news-pic li .img-cover{ padding-top: 78%; }
.in-news-pic li .text{ padding: 20px 25px; }
.in-news-pic li .text h2{ margin: 0; overflow:hidden;white-space:nowrap;text-overflow:ellipsis; font-size: 1.5em;}
.in-news-pic li .text p{ color: #939393; }
.in-news-pic li .text .date{ color: #333; }

.in-news-left{ float: left; width: 575px; }
.in-news-right{ float: right; width: 575px; }
.in-news-left .tits,.in-news-right .tits{ display: flex; justify-content: space-between; align-items: center; height: 50px; border-bottom: 1px solid #bebebe; }
.in-news-left .tits span,.in-news-right .tits span{ font-size: 20px; font-weight: bold; color:#66B610; }
.in-news-left li a,.in-news-right li a{ display: block; padding: 20px; border-bottom: 1px dashed #e5e5e5; }
.in-news-left li h2,.in-news-right li h2{ margin: 0; font-weight: normal; position: relative; font-size: 18px; }
.in-news-left li h2:before,.in-news-right li h2:before{ position: absolute; left:-15px; top:10px; width: 8px; height: 8px; border-radius: 50%; background-color: #66B610; content:''; }
.in-news-left li p,.in-news-right li p{ margin: 0 0 8px; color: #666; }
.in-news-left li .date,.in-news-right li .date{ background: url(../images/icon-8.png) no-repeat left center; padding-left: 23px; color: #999; font-size: 16px; }
.section {
  padding: 60px 0;
}.img-cover span {
  display: block;
  width: 100%;
  background: no-repeat center / cover;
  transition: all 0.5s;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}


.img-cover {
  overflow: hidden;
  position: relative;
}

.pagebar { padding:20px; overflow:hidden; clear:both}
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 12px;
  padding: 8px 10px;
  margin: 0 2px;
  border-radius: 3px; line-height:100%
}
.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}
.pagination a:hover {
  color: #333;
  border: 1px solid #333;
}
.pagination a.page-num-current {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}
.pagination .st{ font-family:宋体}




@media screen and (max-width: 767px){
  .in-news-pic li{ width: 33.33333%; }
  .in-news-pic li a{margin: 0 0 10px 10px;}
  .in-news-pic li .text{ padding: 10px; }
  .in-news-pic li .text h2{ font-size: 16px; }
  .in-news-pic li .text p{ margin: 0; overflow:hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;}
  
  .in-news-left{ float: none; width: auto; }
  .in-news-right{ float: none; width: auto; margin-top: 20px; }
}
