body {
  background: url(../img/teambg.jpg) no-repeat;
  background-size: cover;
}
.con #bread {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.con .page1 .navTit {
  color: #333;
}
.con .c_t .list {
  color: #000;
}
.con .c_t .list .image {
  flex: 0 0 27.77%;
  overflow: hidden;
}
.con .c_t .list .image img {
  width: 100%;
  transition: all 0.4s linear;
}
.con .c_t .list .info {
  flex: 1;
  margin-left: 30px;
  padding: 20px 0;
  border-top: 2px solid #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
  position: relative;
}
.con .c_t .list .info .bg {
  height: 100%;
  padding: 0 7%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: background-image 0.4s ease-in-out;
  background: #f1f1f1;
}
.con .c_t .list .info .tit {
  flex: 0 0 auto;
}
.con .c_t .list .info .mes {
  flex: 1;
  margin-left: 60px;
}
.con .c_t .list .info::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--bgColor);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.4s linear;
}
.con .c_t .list .info::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--bgColor);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s linear;
}
.con .c_t .list:hover {
  color: #fff;
}
.con .c_t .list:hover .info::before {
  width: 100%;
}
.con .c_t .list:hover .info::after {
  width: 100%;
}
.con .c_t .list:hover .image img {
  transform: scale(1.05);
}
.con .c_t .list:hover .info .bg {
  background: url(../img/team_listBg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.con .c_b .list {
  flex: 0 0 calc((100% - 60px)/4);
  position: relative;
  overflow: hidden;
  margin-right: 20px;
  margin-bottom: 20px;
}
.con .c_b .list:nth-child(4n) {
  margin-right: 0;
}
.con .c_b .list .image {
  width: 100%;
  height: 100%;
}
.con .c_b .list .image img {
  width: 100%;
  height: 100%;
  transition: all 0.4s linear;
  object-fit: cover;
}
.con .c_b .list .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  transition: all 0.4s linear;
}
.con .c_b .list .info p {
  text-align: center;
}
.con .c_b .list .info1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: var(--bgColor);
  color: #fff;
  display: none;
}
.con .c_b .list:hover .info {
  display: none;
}
.con .c_b .list:hover .info1 {
  display: block;
  animation-delay: 1s;
  animation: fadeAn 1s;
}
@keyframes fadeAn {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@media only screen and (max-width: 768px) {
  .con .c_t .list .image {
    flex: 0 0 100%;
  }
  .con .c_t .list .info {
    margin-left: 0;
  }
  .con .c_t .list .info .bg {
    flex-wrap: wrap;
    padding: 6vw;
  }
  .con .c_t .list .info .mes {
    flex: 0 0 100%;
    margin-left: 0;
    margin-top: 4vw;
  }
  .con .c_b .list {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .con .c_b .list:nth-child(4n) {
    margin-right: 0;
  }
  .mt150 {
    margin-top: 14vw;
  }
  .con .c_b .list .info {
    display: none;
  }
  .con .c_b .list .image {
    height: auto;
  }
  .con .c_b .list .info1 {
    position: static;
    padding: 6vw;
    display: block;
  }
}
