body {
  background: #F6F7F9;
}
.con {
  padding: 6px 0 70px 0;
}
.con .list {
  flex: 0 0 calc((100% - 2%)/2);
  margin-right: 2%;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.con .list:nth-child(2n) {
  margin-right: 0;
}
.con .list .image {
  width: 100%;
  padding-top: 48%;
  height: 0;
  position: relative;
  overflow: hidden;
}
.con .list .image img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s linear;
}
.con .list a{
    display: flex;
      flex-direction: column;
    height: 100%;
}
.con .list .info {
  padding: 50px 54px 46px 54px;
    display: flex
;
flex: 1;
width: 100%;
    flex-direction: column;

}
.con .list .info>div:first-child{
    flex: 1;
}
.con .list .info .tit {
  color: #000000;
  transition: all 0.2s linear;
}
.con .list .info .mes {
  color: #1D1D1F;
  margin-top: 8px;
  line-height: 1.5;
}
.con .list .info .toPage {
  display: flex;
  margin-top: 20px;
  align-items: center;
}
.con .list .info .toPage span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 42px;
  height: 42px;
  background: linear-gradient(-60deg, #359edc 0%, #5f5bfe 100%), #0054a3;
  margin-right: 14px;
  transition: all 0.2s linear;
}
.con .list .info .toPage span svg {
  transition: all 0.4s linear;
}
.con .list .info .toPage:hover {
  text-decoration: underline;
}
.con .list .info .toPage:hover span {
  margin-right: 20px;
  background: #fff;
  border: 1px solid #0054a3;
}
.con .list .info .toPage:hover svg path {
  fill: #0054a3;
}
.con .list:hover img {
  transform: scale(1.05);
}
.con .list:hover .tit {
  color: var(--onColor);

}
@media only screen and (max-width: 1600px) {
  .con {
    padding-bottom: 3.6458vw;
  }
  .con .list .info {
    padding: 2.6042vw 2.8125vw 2.3958vw 2.8125vw;
  }
}
@media only screen and (max-width: 768px) {
  .con .list {
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .con {
    padding-bottom: 20px;
  }
  .con .list .info {
    padding: 20px;
  }
  .con .list .info .toPage span {
    width: 36px;
    height: 36px;
  }
}
