.list {
  background-color: #f2f2f2;
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: 45px;
}
.list::before {
  content: "";
  overflow: hidden;
  display: table;
}
.list .box {
  background-color: #fff;
  width: 100%;
  height: 270px;
  border-radius: 10px;
  padding-left: 41px;
  margin-top: 30px;
  padding-top: 55px;
  position: relative;
}
.list .box .subtitle {
  display: block;
  font-size: 36px;
  font-weight: 400;
  color: #333;
  width: 387px;
  height: 41px;
  line-height: 32px;
  text-align-last: left;
}
.list .box .msg {
  width: 655px;
  height: 57px;
  opacity: 1;
  font-size: 16px;
  font-family: MicrosoftYaHeiUI, MicrosoftYaHeiUI-Regular;
  font-weight: 400;
  text-align: left;
  color: #666666;
  line-height: 27px;
  margin-top: 15px;
}
.list .box .btn {
  display: flex;
  width: 153px;
  height: 39px;
  opacity: 1;
  background: #f6f6f6;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  margin-top: 27px;
}
.list .box .btn span {
  display: block;
  width: 100px;
  height: 12px;
  opacity: 1;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  text-align: center;
  color: #666666;
  line-height: 12px;
}
.list .box:hover {
  border: 1px solid #d7000f;
  box-shadow: 0px 5px 11px 0px rgba(215, 0, 15, 0.13);
}
.list .box:hover .subtitle {
  color: #d7000f;
}
.list .box:hover .btn {
  background-color: #d7000f;
}
.list .box:hover .btn span {
  color: #fff;
}
.list .box:hover .btn span::after {
  content: "→";
}
.list .box:hover::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 0;
  width: 285px;
  height: 240px;
  background-image: url('../images/hjt_bg_red_block.png');
  background-size: cover;
}
