.newDetails {
  width: 100%;
  padding: 46px 0 90px;
  background: #fff;
}

.newDetails .newDetails_cen {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.newDetails .newDetails_l {
  width: 66.875%;
}

.newDetails .newDetails_l .newDetails_title {
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
  color: #333333;
}

.newDetails .newDetails_l .newDetails_time {
  font-size: 16px;
  line-height: 28px;
  color: #999999;
  padding: 12px 0 20px;
}

.newDetails .newDetails_l .newDetails_bom {
  width: 100%;
  padding: 40px 0 50px;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.newDetails .newDetails_l .newDetails_bom img{
  max-width: 100%;
}

.newDetails .newDetails_l .newDetails_bom .newDetails_text {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  font-weight: 500;
}

.newDetails .newDetails_l .newDetails_bomm {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 27px;
  color: #999999;
}

.newDetails .newDetails_l .newDetails_bomm a {
  color: #999999;
  transition: all 0.3s;
  display: block;
  margin-top: 34px;
}

.newDetails .newDetails_l .newDetails_bomm a:hover {
  color: #81ccdb;
}

.newDetails .newDetails_r {
  width: 27.5%;
}

.newDetails .newDetails_r .newDetails_title {
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
  color: #333333;
  padding-bottom: 20px;
}

.newDetails .newDetails_r .newDetails_rBom {
  width: 100%;
}

.newDetails .newDetails_r .newDetails_rBom .newDetails_box {
  width: 100%;
  padding: 24px 0 36px;
  border-top: 1px solid #e6e6e6;
}

.newDetails .newDetails_r .newDetails_rBom .newDetails_box a .newDetails_name {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  font-weight: bold;
  transition: all 0.3s;
}

.newDetails .newDetails_r .newDetails_rBom .newDetails_box a:hover .newDetails_name {
  color: #81ccdb;
}

.newDetails .newDetails_r .newDetails_rBom .newDetails_box a .newDetails_time {
  margin-top: 24px;
  font-size: 16px;
  line-height: 28px;
  color: #999999;
}


/* 响应式设计 */
@media (max-width: 1500px) {}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {
  .newDetails{
    padding: 20px 0 50px;
  }
  .newDetails .newDetails_cen{
    flex-direction: column;
  }
  .newDetails .newDetails_l{
    width: 100%;
  }
  .newDetails .newDetails_l .newDetails_title{
    font-size: 24px;
  }
  .newDetails .newDetails_l .newDetails_bom .newDetails_text{
    font-size: 14px;
    line-height: 24px;
  }
  .newDetails .newDetails_l .newDetails_bomm{
    font-size: 14px;
    line-height: 24px;
  }
  .newDetails .newDetails_l .newDetails_bomm a{
    margin-top: 10px;
  }

  .newDetails .newDetails_r{
    width: 100%;
    margin-top: 50px;
  }
  .newDetails .newDetails_r .newDetails_title{
    font-size: 24px;
  }
  .newDetails .newDetails_r .newDetails_rBom .newDetails_box{
    padding: 10px 0;
  }
  .newDetails .newDetails_r .newDetails_rBom .newDetails_box a .newDetails_name{
    font-size: 14px;
  }
  .newDetails .newDetails_r .newDetails_rBom .newDetails_box a .newDetails_time{
    font-size: 14px;
    margin-top: 0px;
  }
}