 .breadTitle {
    font-size: 0;
    margin-top: 30px;
}
  .breadTitle h2 {
    display: inline-block;
    vertical-align: text-bottom;
    font-size: 42px;
    line-height: 1;
    font-family: "黑体";
    color: #333;
  position: relative;
    z-index: 2;
}
  .breadTitle:before{
  content: '';
    position: absolute;
    width: 130px;
    height: 20px;
    background: linear-gradient(90deg, #ff2000 10%, #ffa400);
    left: 10%;
    bottom: 0;
    transform: translate(-50%,0);
  }
  .breadTitle h3 {
    display: inline-block;
    vertical-align: text-bottom;
    font-size: 28px;
    line-height: 26px;
    font-family: 'Inter';
    color: #b9b9b9;
    text-transform: uppercase;
    margin-left: 20px;
}
@media only screen and (max-width:768px){
.breadTitle:before {
    bottom: 18%!important;
    transform: translate(-10%,0)!important;
}
}