.bfbox{
  /* display: flex;
  justify-content: space-between;
  align-items: center; */

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  /* grid-column-gap:30px; */
  margin-top: 40px;
}

.bf-item{
  /* width: 380px; */
  height: 540px;
  background: linear-gradient(180deg, #EFF8FF 0%, #FFFFFF 58%, #FFFFFF 100%);
  box-shadow: 0px 4px 8px rgba(0,31,64,0.1);
  border-radius: 12px;
}

.bf-top{
  width: 90px;
  height: 34px;
  background: #4097F4;
  border-radius: 0px 0px 17px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-family: Source Han Sans CN;
  font-weight: bold;
  line-height: 1.5rem;
  color: #FFFFFF;
}

.bf-top img{
  width: 14px;
  height: 12px;
  margin-top: 6px;
  margin-left: 6px;
}

.bf-item-img{
  width: 100%;
}

.bf-item-title{
  margin-top: 30px;
  font-size: 1.75rem;
  font-family: Source Han Sans CN;
  font-weight: bold;
  line-height: 1.75rem;
  text-align: center;
  color: #333333;
}

.bf-item-p{
  margin-top: 26px;
  font-size: 1.25rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  line-height: 2.5rem;
  color: #474D6C;
  padding: 0 30px;
}

.typebox{
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
}

.type-item{
  width: 216px;
  height: 220px;
  background: linear-gradient(180deg, #EFF8FF 0%, #FFFFFF 100%);
  box-shadow: 0px 4px 8px rgba(0,31,64,0.1);
  border-radius: 8px;
}



.type-title{
  width: 120px;
  height: 40px;
  background: #4097F4;
  border-radius: 0px 0px 8px 8px;
  margin: 0 auto;
  font-size: 1.5rem;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}

.type-p{
  font-size: 1.25rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  line-height: 2.25rem;
  color: #555555;
  margin-top: 22px;
  padding: 0 18px;
  letter-spacing: 0;
}

@media (max-width:1200px) {
  .type-item{
    margin-bottom: 50px;
  }

  .type-item2{
    width: 216px;
    height: 220px;
    border-radius: 8px;
  }

  .bf-item{
    height: auto;
    padding-bottom: 10px;
  }



  .bf-item-title{
    margin-top: 30px;
    font-size: 1.25rem;
    font-family: Source Han Sans CN;
    font-weight: bold;
    line-height: 1.75rem;
    text-align: center;
    color: #333333;
  }
}


@media (max-width: 500px) {
  .bfbox{
    display: block;
    margin-top: 16px;
  }

  .bf-item{
    height: 180px;
    margin-bottom: 12px;
  }

  .bf-item-img{
    float: right;
    width: 120px;
    height: 120px;
    margin-top: 12px;
  }

  .bf-item-title{
    margin-top: 24px;
    font-size: 1.125rem;
    line-height: 1.125rem;
    text-align: left;
    padding-left: 16px;
  }

  .bf-item-p{
    margin-top: 15px;
    padding: 0 16px;
    font-size: 0.875rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    line-height: 1.5rem;
    color: #474D6C;
    letter-spacing: 0;
  }

  .type-item{
    width: 100%;
    background: none;
    box-shadow: none;
    height: auto;
    margin-bottom: 36px;
  }

  

  .type-item2{
    display: none;
  }

  .type-title{
    color: #4097F4;
    background: none;
    width: 78px;
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.125rem;
    height: 18px;
    position: relative;
  }

  .last-item{
    width: 96px;
  }

  .last-type-item{
    margin-bottom: 0px;
  }

  .type-p{
    margin-top: 12px;
    padding: 0 11px;
    font-size: 1rem;
    line-height: 1.75rem;
    position: relative;
  }

  .type-p::before{
    content: '';
    width: 8px;
    height: 8px;
    border: 2px solid rgba(97,105,145,0.6);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0px;
  }

  .type-title span{
    position: absolute;
    left: 12px;
    top: 0;
  }

  .type-title::after{
    content: "";
    background: rgba(64, 151, 244, 0.16);
    width: 100%;
    height: 18px;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 7px;
  }


}