/*产品中心*/

.publicList .list {
  /*overflow: hidden;*/
}

.publicList .list ul {
  display: flex;
}

.publicList .list li {
  box-sizing: border-box;
  width: 25%;
  padding: 0 3%;
  float: left;
  position: relative;
}

.publicList .list .imgBox {
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 51.6%;
  border: 1px solid #ddd;
}

.publicList .list .imgBox img {
  max-width: 100%;
  max-height: 100%;
}

.publicList .list li span {
  position: absolute;
  bottom: 0;
  left: 3%;
  display: block;
  width: 94%;
  height: 3em;
  line-height: 3em;
  background-color: rgba(0, 0, 0, .4);
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.publicList .list li span a {
  color: #fff;
  display: block;
}

.product.publicList .list li span a:before,
.product.publicList .list li span a:after {
  content: "——";
  margin: 0 10px;
}

@media (max-width: 768px) {
  .publicList .list ul {
    display: flex;
    /*移动端由block改成flex,才能滑动*/
  }
  .publicList .list li span {
    font-size: 12px;
    height: 2.5em;
    line-height: 2.5em;
  }
}

/*产品中心*/

.product {
  overflow: hidden;
}

.product .type {
  margin-bottom: 4%;
}

.product .type ul {
  text-align: center;
}

.product .type li {
  display: inline-block;
  width: auto;
  min-width: 6em;
  margin: 0 0.5%;
  text-align: center;
  height: 38px;
  line-height: 38px;
  font-size: 18px;
  white-space: nowrap;
  border: 1px solid #8f8f8f;
}

.product .type li a {
  display: block;
  color: #666;
  padding: 0 5px;
}

.product .type li:hover,
.product .type li.active-nav {
  background-color: #b80000;
  border-color: #b80000;
}

.product .type li:hover a,
.product .type li.active-nav a {
  color: #fff;
}

.product .cont {
  margin-top: 4%;
}

.product .cont .contBox {
  position: relative;
}

.product .cont li {
  float: left;
  width: 25%;
}

.product .cont li .paddingBox {
  display: block;
  padding: 0 15px;
}

.product .cont li .imgBox {
  padding-bottom: 86.2%;
  border: 1px solid #ddd;
}

.product .cont li .imgBox img {
  max-width: 100%;
  max-height: 100%;
}

.product .cont li span {
  display: block;
  height: 2.5em;
  line-height: 2.5em;
  font-size: 14px;
  background-color: #ddd;
  text-align: center;
  padding: 0 0.5em;
}

.product .cont li span a {
  color: #000;
}

.picBox {
  width: 100%;
  overflow: hidden;
}

.picMarquee2,
.picMarquee {
  overflow: hidden;
}

.product .list {
  position: relative;
}

.product .list:before,
.product .list:after {
  position: absolute;
  content: "";
  display: block;
  width: 1000px;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  top: 0;
  z-index: 23;
}

.product .list:before {
  right: 100%;
}

.product .list:after {
  left: 100%;
}

.p-button-next {
  margin-right: -4%;
}

.p-button-prev {
  margin-left: -4%;
}

.p-button-next,
.p-button-prev {
  background-color: #b80000;
  z-index: 33;
}

@media (max-width: 768px) {
  .product .type ul {
    text-align: center;
  }
  .product .type li {
    display: inline-block;
    float: none;
    min-width: 23%;
    min-width: auto;
    font-size: 14px;
    height: 25px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .p-button-next,
.p-button-prev{
  display: none;
}
.product .type li a {
  padding: 0 10px;
}
}



