.content {
    background: #ffffff;
    border: 1px solid #ffffff;
    padding-top: 0;
    margin-top: 25px;
  }
  .content .hd {
    padding-left: 1%;
  }
  .content .hd h3 {
    font-weight: 400;
    color: #333333;
    padding: 1% 0;
    font-size: 20px;
  }
  .content .hd h3::before {
    font-size: 25px;
    vertical-align: bottom;
    color: #ff5f00;
  }
  .content ul {
    display: flex;
    flex-wrap: wrap;
  }
  .content ul li {
    flex: 33.3%;
    padding: 0 1%;
    max-width: 33.3%;
    float: left;
  }
  .content ul li .hj_top a {
    display: inline-block;
    width: 100%;
    overflow: hidden;
  }
  .content ul li .hj_top a img {
    width: 100%;
    height: 200px;
    transition: transform 1s;
    object-fit: cover;
  }
  .content ul li .hj_top a:hover img {
    transform: scale(1.2);
  }
  .content ul li .hj_bt {
    padding: 5px 0 10px 0;
  }
  .content ul li .hj_bt p {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    font-size: 14px;
  }
  .content ul li .hj_bt h4 a {
    color: #333333;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
  }
  .content ul li .hj_bt h4 a:hover {
    color: #fd3939;
  }
  .content ul li .hj_bt .intro span {
    float: left;
    margin-right: 20px;
    color: #333333;
  }
  .content ul li .hj_bt .intro span em {
    font-style: normal;
    color: #f64334;
  }
  .content ul li .hj_bt .intro a {
    display: inline-block;
    width: 50px;
    height: 23px;
    line-height: 22px;
    color: #ff5f00;
    border: 1px solid #ff5f00;
    text-align: center;
    font-size: 14px;
  }
  .content ul li .hj_bt .intro a:hover {
    background-color: #ff5f00;
    color: #ffffff;
  }
  .content .emptycontent {
    text-align: center;
    padding: 1% 0;
    color: #ddd;
  }
  @media screen and (max-width: 768px) {
    .content ul li {
      flex: 50%;
      max-width: 50%;
    }
    .content ul li .hj_top a img {
      height: 100px;
    }
    .content ul li .hj_bt h4 {
      font-size: 14px;
    }
    .content ul li .hj_bt .intro span {
      font-size: 13px;
    }
  }