﻿main .type .itemTit {
  padding-top: 80px;
}
main .type ul.infoList {
  display: flex;
  margin-top: 20px;
}
main .type ul.infoList li:hover .liBg {
  opacity: 1;
}
main .type ul.infoList li:hover .textBox img.img1 {
  display: none;
}
main .type ul.infoList li:hover .textBox img.img2 {
  display: inline-block;
}
main .type ul.infoList li:hover .textBox h3,
main .type ul.infoList li:hover .textBox p,
main .type ul.infoList li:hover .textBox li {
  color: #fff!important;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}
main .type ul.infoList > li {
  position: relative;
  width: 50%;
  height: 160px;
  box-sizing: border-box;
  padding: 25px;
  background: #fff;
  margin-right: 20px;
  box-shadow: 0px 2px 8px 2px rgba(222, 222, 222, 0.48);
}
main .type ul.infoList > li:nth-child(2n) {
  margin-right: 0;
}
main .type ul.infoList > li .liBg {
  opacity: 0;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 160px;
  width: 100%;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
main .type ul.infoList > li .textBox {
  display: flex;
  position: relative;
  z-index: 10;
  width: 100%;
}
main .type ul.infoList > li .textBox .leftBox {
  width: 10%;
  margin-right: 20px;
  text-align: center;
}
main .type ul.infoList > li .textBox .leftBox img {
  width: 30px;
  margin-top: 10px;
}
main .type ul.infoList > li .textBox .leftBox .img1 {
  display: inline-block;
}
main .type ul.infoList > li .textBox .leftBox .img2 {
  display: none;
}
main .type ul.infoList > li .textBox .rightBox {
  width: 90%;
}
main .type ul.infoList > li .textBox .rightBox h3 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
main .type ul.infoList > li .textBox .rightBox p {
  height: 40px;
  line-height: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
  overflow: hidden;
  font-size: 12px;
  color: #666;
}
main .type ul.infoList > li .textBox .rightBox > ul li {
  float: left;
  color: #2E4FAE;
  font-size: 12px;
  margin-right: 15px;
}