/* 第一页 */
.container-fluid.p-1{
  padding: 50px 100px 150px;
  display: flex;
  justify-content: center;
  background-color: #fff;
}
.p-1-main{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-1-main .p-1-title1{
  padding: 40px 0 0px;
  height: 50px;
    line-height: 50px;
    font-size: 38px;
    font-weight: bold;

}
.p-1-main .p-1-title2{
  padding: 0px 0 30px;
  font-size: 28px;
  text-transform: uppercase;
  color: #9FA0A0;
}
.p-1-ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  &::after{
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 12px;
    border-bottom: 3px solid #FF5D15;
    position: absolute;
    bottom: 5px;
    left: 0;
  }
}

.p-1-li{
  /* width:33.33%; 自由宽度  */
  flex: 0 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
  margin-right: 50px;
}
.p-1-li img{
  /* width: 100%; */
}
.p-1-li .matter{
    width: 100%;
    background: #fff;
    margin-bottom: 15px;
    padding: 0 28px;
    box-sizing: border-box;
    height:144px;
}
.p-1-li .matter .matter-title{

  line-height:40px;
  font-size: 22px;
  font-weight: bold;
  box-sizing: border-box;


}
.p-1-li .matter .matter-text{
  font-size: 16px;
  line-height: 26px;
  color: #8a8a8a;

}
