.pic-er-main {
  padding: 0.2rem;
}

.pic-er-info {
  display: flex;
  background: #fff;
}

.info-left{
  width: 30%;
  padding: 0.2rem 0;
  text-align: center;
  border-right: 1px solid #98c336;
}
.info-left-title{
  padding: 0.2rem 0;
  font-size: 18px;
  line-height: 24px;
  color: #98c336;
}
.info-left-img{
  padding: 0 0.2rem;
}
.info-left-img img{
  width: 100%;
}


.info-right{
  width: 70%;
  padding: 0.2rem;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}
.info-right span{
  padding-right: 5px;
  color: #98c336;
}

.pic-er-title {
  padding: 0.2rem 0;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  text-align: center;
  background: url(../images/green.jpg) no-repeat center bottom/0.4rem 2px;
}

.pic-er-box ul {
  padding: 0.2rem 0;
}

.pic-er-box ul li {
  position: relative;
  padding: 0.1rem 0;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}

.pic-er-li{
  position: relative;
  z-index: 5;
  border-radius: 5px;
  overflow: hidden;
}
.pic-er-img{
   position: relative;
  z-index: 1;
  background: #fff;
}
.pic-er-img img{
  width: 100%;
}
.pic-er-con{

   position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.8);
}


.pic-er-num {
  position: relative;
  z-index: 5;
  margin: 0 0 0.2rem;
  padding: 0 0 0.6rem;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  font-family: "Microsoft YaHei";
  color: #98c336;
}
.pic-er-num::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 1rem;
  width: 0.4rem;
  height: 1px;
  transform: translate3d(-50%, 0, 0);
  background: rgba(152, 195, 54, 1);
}

.pic-er-name {
  position: relative;
  z-index: 5;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}

@media (min-width: 1200px) {
  .pic-er-main {
    position: relative;
    z-index: 5;
    width: 72vw;
    margin: 0 auto;
    padding: 2vw 0;
  }

  .pic-er-info {
    display: flex;
    justify-content: space-between;
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 0;
    width: 54vw;
    background: #fff;
    transform: translate3d(-50%, -99%, 0);
  }

  .info-left{
    width: 18vw;
    padding: 1vw 0;
    text-align: center;
    border-right: 1px solid #98c336;
  }
  .info-left-title{
    padding: 1vw 0;
    font-size: 1.2vw;
    line-height: 1.8vw;
    color: #98c336;
  }
  .info-left-img{
    padding: 0 2vw;
  }
  .info-left-img img{
    width: 100%;
  }

  .info-right{
    width: 36vw;
    padding: 2vw;
    font-size: 16px;
    line-height: 34px;
    color: #333;
  }
  .info-right span{
    padding-right: 5px;
    color: #98c336;
  }


  .pic-er-title {
    padding: 1vw 0;
    font-size: 2vw;
    line-height: 2.4vw;
    color: #000;
    text-align: center;
    background: url(../images/green.jpg) no-repeat center bottom/2vw 2px;
  }
  .pic-er-box ul {
    display: flex;
    padding: 2vw 0;
  }

  .pic-er-box ul li {
    position: relative;
    flex-grow: 1;
    padding: 0 0.5vw;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
  }
  .pic-er-li{
    position: relative;
    z-index: 5;
    border-radius: 5px;
    overflow: hidden;
  }

  .pic-er-con{
    padding: 5vw 0;
    background: rgba(255, 255, 255, 0.8);
  }


  .pic-er-num {
    position: relative;
    z-index: 5;
    margin: 0 0 2vw;
    padding: 0 0 3vw;
    font-weight: bold;
    font-size: 2.4vw;
    line-height: 3vw;
    font-family: "Microsoft YaHei";
    color: #98c336;
  }
  .pic-er-num::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 5vw;
    width: 2vw;
    height: 1px;
    transform: translate3d(-50%, 0, 0);
    background: rgba(152, 195, 54, 1);
  }

  .pic-er-name {
    position: relative;
    z-index: 5;
    font-size: 1.4vw;
    line-height: 2vw;
    color: #333;
  }
  .pic-er-box ul li:hover{
    transform: translate3d(0, -0.5vw, 0);
  }
  .pic-er-box ul li:hover .pic-er-con{
    background: rgba(152, 195, 54, 0.9);
  }

  .pic-er-box ul li:hover .pic-er-num {
    color: #fff;
  }
  .pic-er-box ul li:hover .pic-er-num::before {
    background: #fff;
  }

  .pic-er-box ul li:hover .pic-er-name {
    color: #fff;
  }
}