body{
  background-color: #F8F8F8;
  /* scroll-behavior: smooth; */
}



.module{
  width: 120rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.module_con{
  box-sizing: border-box;
  display: flex;
}
@media screen and (min-width: 1281px) {
  .module_con{
    width: 128rem;
    padding: 0 4rem;
  }
}
@media screen and (min-width: 961px) and (max-width: 128rem) {
  .module_con{
    width: 100%;
    padding: 0 4rem;
  }
 }
@media screen and (max-width: 96rem) {
  .module_con{
    width: 100%;
    padding: 0 4vmin;
  }
}


.linebox{
  width: 120rem;
  height: 12.2rem;
  margin-top: 2rem;
  box-sizing: border-box;
  padding: 0 4rem;
  background-image: url('../images/line_box2.png');
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.linebox p{
  font-size: 2.4rem;
  line-height: 1.5;
  color: #fff;
}
.linebox p+p{
  margin-top: 1rem;
}
@media screen and (max-width: 960px) {
  .linebox{
    width: 100%;
    height: 12vmin;
    margin-top: 3vmin;
    padding: 0 .6vmin;
  }
  .linebox p{
    font-size: 3vmin;
    line-height: 1.5;
    color: #fff;
  }
  .linebox p+p{
    margin-top: 0;
  }
}
.list_tab{
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list_tab p{
  font-size: 2.8rem;
  line-height: 4.2rem;
  margin: 0 6rem;
  cursor: pointer;
  position: relative;
  transition: .6s;
}
.list_tab p::after{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
  transition: .6s;
}

@media screen and (max-width: 960px) {
  .list_tab{
    margin-top: 3vmin;
  }
  .list_tab p{
    font-size: 4vmin;
    line-height: 6vmin;
  }
}
.list_tab p:hover{
  font-weight: bold;
  color: #5295FE;
}
.list_tab .on{
  font-weight: bold;
  color: #5295FE;
}
.list_tab p:hover::after{
  background-color: #5295FE;
}
.list_tab .on::after{
  background-color: #5295FE;
}

.list{
  width: 120rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.type_b{
  display: none;
}
.list .item,.list .item_null{
  width: 37.3rem;
}
.list .item:nth-child(n+4){
  margin-top: 3rem;
}
.list .item>img{
  width: 100%;
  height: 19rem;
}
.list .con{
  width: 100%;
  height: 23rem;
  padding-top: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.list .item .title{
  display: flex;
  align-items: center;
}
.list .item .title img{
  width: 3.4rem;
  height: 3.4rem;
}
.list .item .title p{
  margin-left: 1.2rem;
  font-size: 2.2rem;
  font-weight: bold;
  color: #474747;
}

.list .item .title .bp{
  flex: 1;
  flex-wrap: wrap;
  display: flex;
  margin-left: 0.4rem;
}
.list .item .bp span{
  margin-left: .6rem;
  font-size: 1.2rem;
  line-height: 2.2rem;
  color: #fff;
  padding: 0 .8rem;
  background-color: #F34D73;
  border-radius: .4rem;
}
.list .item .con>p{
  font-size: 1.4rem;
  line-height: 2.5rem;
  padding: 0 1.2rem;
  border-radius: .5rem;
  align-self: self-start;
}
.list .item .con .tag_a{
  color: #EF6383;
  background-color: #FCE9ED;
}
.list .item .con .tag_b{
  color: #5AAFF8;
  background-color: #EDF7FE;
}
.list .item .con .tag_c{
  color: #68CDD5;
  background-color: #EDF9FA;
}
.list .item .con .tag_d{
  color: #F0B46D;
  background-color: #FDF6EE;
}
.list .item .con button,.list .item .con a{
  width: 100%;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background-color: #5295FE;
  color: #fff;
  border-radius: .8rem;
}
.list .item .con button{
  background-color: #bbb;
  cursor: no-drop;
}
@media screen and (max-width: 960px) {
  .list{
    width: 100%;
    box-sizing: border-box;
    padding: 0 2vmin;
    padding-top: 2vmin;
  }
  .list .item{
    width: 48%;
  }
  .list .item_null{
    display: none;
  }
  .list .item:nth-child(n+3){
    margin-top: 3rem;
  }
  .list .item>img{
    display: block;
    width: 100%;
    height: 25vmin;
  }
  .list .con{
    width: 100%;
    height: 30vmin;
    padding-top: 1.5vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .list .item .title{
    display: flex;
    align-items: center;
  }
  .list .item .title img{
    width: 4.5vmin;
    height: 4.5vmin;
  }
  .list .item .title p{
    margin-left: 1.2rem;
    font-size: 3.2rem;
    font-weight: bold;
    color: #474747;
  }
  .list .item .bp span{
    margin-left: .6rem;
    font-size: 1.7vmin;
    line-height: 3vmin;
    color: #fff;
    padding: 0 .8rem;
    background-color: #F34D73;
    border-radius: .6vmin;
  }
  .list .item .con>p{
    font-size: 2.5rem;
    line-height: 3.6vmin;
    padding: 0 2.4rem;
    border-radius: .5rem;
    align-self: self-start;
  }

  .list .item .con button,.list .item .con a{
    height: 6vmin;
    font-size: 2vmin;
    border-radius: 1vmin;
  }
}
.detail{
  display: none;
  width: 120rem;
  padding-top: 2rem;
}


.detail .name_list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.detail .name_list p{
  margin-right: 2rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 3.6rem;
  color: #989898;
  padding: 0 1.2rem;
  border-radius: 1.8rem;
  background-color: #fff;
  cursor: pointer;
  transition: .4s;
}
.detail .name_list .on{
  background-color: #5295FE;
  color: #fff;
}
.detail .name_list p:hover{
  background-color: #5295FE;
  color: #fff;
}
.detail .title{
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.detail .title img{
  width: 4.8rem;
  height: 4.8rem;
}
.detail .title p{
  margin-left: 1.2rem;
  font-size: 3.2rem;
  font-weight: bold;
  color: #474747;
}
.detail .title .bp{
  display: flex;
  margin-left: 0.4rem;
  display: flex;
}
.detail .title .bp span{
  margin-left: 1.2rem;
  font-size: 1.6rem;
  line-height: 3.2rem;
  color: #fff;
  padding: 0 1.2rem;
  background-color: #F34D73;
  border-radius: .4rem;
}
.detail .info{
  width: 100%;
  
}
.detail .info_con{
  width: 100%;
  margin-top: 2rem;
  display: flex;
}
.detail .info_con .right{
  flex: 1;
  margin-left: 4rem;
  display: flex;
  flex-direction: column;
}
.detail .info_con .right p{
  font-size: 2rem;
  color: #333;
  line-height: 2;
}
.detail .info_con>img{
  width: 50%;
  height: 31.2rem;
  border-radius: .2rem;
}

.detail .info button,.detail .info a{
  width: 50%;
  height: 4.8rem;
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background-color: #5295FE;
  color: #fff;
  border-radius: .8rem;
}
.detail .info button{
  background-color: #bbb;
  cursor: no-drop;
}
@media screen and (max-width: 960px) {
  .detail{
    width: 100%;
    box-sizing: border-box;
    padding: 0 3vmin;
    padding-top: 3vmin;
  }
  .detail .name_list{
    width: 100%;
  }
  .detail .name_list p{
    margin-right: 2vmin;
    margin-bottom: 2vmin;
    font-size: 3.5vmin;
    line-height: 2;
    color: #989898;
    padding: 0 2vmin;
    border-radius: 3vmin;
    background-color: #fff;
    cursor: pointer;
    transition: .4s;
  }

  .detail .title img{
    width: 8vmin;
    height: 8vmin;
  }
  .detail .title p{
    margin-left: 1.2vmin;
    font-size: 4vmin;
    font-weight: bold;
    color: #474747;
  }
  .detail .title .bp{
    display: flex;
    margin-left: .6vmin;
    display: flex;
  }
  .detail .title .bp span{
    margin-left: 1.6vmin;
    font-size: 2.5vmin;
    line-height: 4vmin;
    color: #fff;
    padding: 0 1.6vmin;
    background-color: #F34D73;
    border-radius: .4rem;
  }
  .detail .info{
    width: 100%;
  }
  .detail .info_con{
    width: 100%;
    margin-top: 3vmin;
    display: flex;
  }
  .detail .info_con .right{
    flex: 1;
    margin-left: 4rem;
    display: flex;
    flex-direction: column;
  }
  .detail .info_con .right p{
    font-size: 1.9vmin;
    color: #333;
    line-height: 1.8;
  }
  .detail .info>img{
    
    width: 100%;
    height: auto;
    border-radius: .2rem;
  }
  

  .detail .info button,.detail .info a{
    width: 100%;
    height: 8vmin;
    margin-top: 3vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3vmin;
    background-color: #5295FE;
    color: #fff;
    border-radius: .8rem;
  }

}
.zixun{
  width: 120rem;
  height: 10.8rem;
  background-color: #5295FE;
  border-radius: .8rem;
  margin-top: 10rem;
  display: flex;
  align-items: center;
}
.zixun img{
  width: 5.6rem;
  height: 5.6rem;
  margin-left: 6.7rem;
}
.zixun .text{
  flex: 1;
  margin-left: 8rem;
  display: flex;
  flex-direction: column;
}
.zixun .text h3{
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  color: #fff;
}
.zixun .text p{
  margin-top: .7rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #fff;
}
.zixun .button{
  margin-right: 13.2rem;
  width: 15.6rem;
  height: 5.2rem;
  border: 2px solid #fff;
  border-radius: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zixun .button p{
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .zixun{
    width: 94vmin;
    height: 15vmin;
    border-radius: 1vmin;
    margin-top: 8vmin;
  }
  .zixun img{
    width: 8vmin;
    height: 8vmin;
    margin-left: 4vmin;
  }
  .zixun .text{
    margin-left: 1vmin;
  }
  .zixun .text h3{
    font-size: 3vmin;
    line-height: 1.2;
  }
  .zixun .text p{
    margin-top: 1vmin;
    font-size: 2vmin;
    line-height: 1.2;
  }
  .zixun .button{
    margin-right: 4vmin;
    width: 20vmin;
    height: 8vmin;
    border: 1px solid #fff;
    border-radius: 1vmin;
  }
  .zixun .button p{
    font-size: 2vmin;
  }
}
.fuwu{
  margin-top: 10rem;
  width: 120rem;
}
.fuwu .title{
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fuwu .title h3{
  font-size: 4rem;
  line-height: 6rem;
  font-weight: bold;
  color: #5295FE;
}
.fuwu .title p{
  margin-top: .6rem;
  font-size: 2rem;
  line-height: 3rem;
  color: #474747;
}
.fuwu .list_f{
  width: 102.4rem;
  margin: auto;
  margin-top: 5.5rem;
  padding: 0;
  border-top: 1px solid #474747;
  display: flex;
  flex-direction: column;
}
.fuwu .item{
  width: 100%;
  padding: 2.4rem 2.2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #474747;
}
.fuwu .label{
  display: flex;
  align-items: center;
}
.fuwu .label img{
  width: 4rem;
  height: 4rem;
}
.fuwu .label p{
  margin-left: 2.8rem;
  font-size: 3.2rem;
  line-height: 4.8rem;
  color: #474747;
}
.fuwu .text{
  flex: 1;
  margin-left: 6.4rem;
  display: flex;
  flex-direction: column;
}
.fuwu .text p{
  font-size: 2rem;
  line-height: 3rem;
  color: #474747;
}
@media screen and (max-width: 960px) {
  .fuwu{
    margin-top: 10vmin;
    width: 100%;
    padding: 0 4vmin;
    box-sizing: border-box;
  }

  .fuwu .title h3{
    font-size: 6vmin;
    line-height: 1.5;
  }
  .fuwu .title p{
    margin-top: 1vmin;
    font-size: 3vmin;
    line-height: 1.5;
  }
  .fuwu .list_f{
    width: 100%;
    margin-top: 7vmin;
  }
  .fuwu .item{
    width: 100%;
    padding: 3vmin;
  }
  .fuwu .label img{
    width: 6vmin;
    height: 6vmin;
  }
  .fuwu .label p{
    margin-left: 5vmin;
    font-size: 4vmin;
    line-height: 1.2;
  }
  .fuwu .text{
    flex: 1;
    margin-left: 3vmin;
  }
  .fuwu .text p{
    font-size: 3vmin;
    line-height: 1.5;
  }
}
.tuijian{
  margin-top: 10rem;
  width: 115rem;
  display: flex;
  flex-direction: column;
  align-content: center;
}
.tuijian .title{
  font-size: 4rem;
  line-height: 6rem;
  color: #5295FE;
  text-align: center;
}
.tuijian .listbox{
  width: 100%;
  margin-top: 5.5rem;
  display: flex;
  justify-content: space-between;
}
.tuijian .item{
  width: 35.7rem;
  height: 45.4rem;
  border-radius: .8rem;
  border: 2px solid #5295FE;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.tuijian .item img{
  width: 100%;
  height: 20rem;
}
.tuijian .item h3{
  margin-top: 2rem;
  font-size: 2.8rem;
  line-height: 4.2rem;
  color: #5295FE;
}
.tuijian .item p{
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 3.6rem;
  color: #5295FE;
  text-align: center;
}


.hezuo{
  margin-top: 10rem;
  width: 115rem;
  display: flex;
  flex-direction: column;
  align-content: center;
}
.hezuo .title{
  font-size: 4rem;
  line-height: 6rem;
  color: #5295FE;
  text-align: center;
}
.hezuo .list{
  width: 102.4rem;
  height: 6.4rem;
  background-color: #eaeaea;
  margin: auto;
  margin-top: 5.5rem;
}

