body {
  background: #F9F9F9;
}


.body_fr {
  width: 10.33rem;
  margin-left: 0.37rem;
}

.body_fr .type_name {
  max-width: 9.2rem;
  height: 1.87rem;
  margin: 0 auto;
  font-weight: 600;
  font-size: 0.36rem;
  color: #000000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}



.type_content {
  width: 10.33rem;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.2rem;
  padding: 0.4rem 0.2rem 0.4rem 0.25rem;
  box-sizing: border-box;
}

.type_content .cont_class {
  width: 1.6rem;
  height: 0.5rem;
  background: linear-gradient(180deg, #8965F6 0%, #4D40B2 100%);
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 0.19rem;
  color: #FFFFFF;
}

.type_content .cont_class img {
  width: 0.26rem;
  height: auto;
  margin-right: 0.11rem;
}

.type_content .cont_body {
  font-weight: 400;
  font-size: 0.18rem;
  color: #2E2E2E;
  line-height: 0.35rem;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

.type_content .cont_pic {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.type_content .cont_pic .cont_img {
  width: 3.14rem;
  height: 2.03rem;
  border-radius: 0.1rem;
  overflow: hidden;
  margin-right: 0.21rem;
  margin-bottom: 0.12rem;
  cursor: pointer;
}
.type_content .cont_pic .cont_img:nth-child(3n){
  margin-right: 0;
}
.type_content .cont_pic .cont_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .4s;
  -moz-transition: all .4s;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
}

.type_content .cont_pic .cont_img img:hover {
  transform: scale(1.2);
}



@media screen and (max-width:1024px){
    .type_content{
        width: 100%;
    }
    .type_content .cont_pic{
        column-gap: 4%;
    }
    .type_content .cont_pic .cont_img{
        width: 48%;
        margin-right: 0;
    }
    .type_content .cont_body{
        font-size: 14px;
    }
}



