body {
  background: #F6F7F9;
}

.con {
  padding: 6px 0 70px 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.con .list {
  -ms-flex: 0 0 calc((100% - 2%) / 2);
  -webkit-flex: 0 0 calc((100% - 2%) / 2);
  flex: 0 0 calc((100% - 2%) / 2);
  max-width: 49%; /* IE11兼容：calc在flex中可能不生效 */
  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;
  -webkit-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.con .list a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.con .list .info {
  padding: 50px 54px 46px 54px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  width: 100%;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.con .list .info > div:first-child {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.con .list .info .tit {
  color: #000000;
  -webkit-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.con .list .info .mes {
  color: #1D1D1F;
  margin-top: 8px;
  line-height: 1.5;
}

.con .list .info .toPage {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 20px;
  -ms-flex-align: center;
  align-items: center;
}

.con .list .info .toPage span {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100%;
  width: 42px;
  height: 42px;
  background: linear-gradient(-60deg, #359edc 0%, #5f5bfe 100%), #0054a3;
  margin-right: 14px;
  -webkit-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.con .list .info .toPage span svg {
  -webkit-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  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 {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  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 {
    -ms-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 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;
  }
}