/* 小于 1400 的适配 */
@media screen and (max-width: 1537px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
  }

  .new-list {
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: calc(0.857 * 1920px) calc(0.857 * 650px);
    background-color: #fff;
  }

  .new-list .wrap {
    margin: 0 auto;
    width: calc(0.857 * 1400px);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .new-title {
    position: relative;
    z-index: 2;
    width: calc(0.857 * 1400px);
    margin: 0 auto calc(0.857 * 88px);
    height: calc(0.857 * 650px);
    display: flex;
    align-items: center;
    font-size: calc(0.857 * 60px);
    color: #fff;
    font-weight: bold;
  }

  .new-item {
    width: calc(0.857 * 437px);
    margin-right: calc(0.857 * 44px);
    margin-bottom: calc(0.857 * 94px);
    border-bottom: 1px solid #e0e0e0;
    transition: all .2s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3)
  }

  .new-item:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    transform: scale(1.05);
  }

  .new-item:nth-child(3n) {
    margin-right: 0;
  }

  .new-item a {
    cursor: pointer;
  }

  .new-item .img {
    width: 100%;
    height: calc(0.857 * 275px);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .new-item .img img {
    vertical-align: top;
    width: 100%;
    height: 100%;
  }

  .new-item .text {
    padding: calc(0.857 * 29px) calc(0.857 * 43px);
    height: calc(0.857 * 190px);
  }

  .new-item .text .title {
    font-size: calc(0.857 * 20px);
    color: #272727;
    height: calc(0.857 * 105px);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-break: break-all;
  }

  .new-item .text .time {
    font-size: calc(0.857 * 17px);
    color: #9f9f9f;
  }


  .new-list .navigation {
    margin-bottom: calc(0.857 * 134px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .new-list .navigation .prew,
  .new-list .navigation .next,
  .new-list .navigation .first,
  .new-list .navigation .last {
    margin-right: calc(0.857 * 30px);
    width: calc(0.857 * 31px);
    text-align: center;
    line-height: calc(0.857 * 31px);
  }

  .new-list .navigation .last,
  .new-list .navigation .next {
    transform: rotate(180deg);
  }


  .new-list .navigation .prew {
    border-right: none;
    border-radius: calc(0.857 * 3px) 0 0 calc(0.857 * 3px);
  }

  .new-list .navigation ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .new-list .navigation li {
    margin-right: calc(0.857 * 30px);
    width: calc(0.857 * 31px);
    height: calc(0.857 * 31px);
    text-align: center;
    line-height: calc(0.857 * 31px);
    font-size: calc(0.857 * 18px);
    color: #000000;
    border-radius: 50%;
  }
  .new-list .navigation li a {
    color: #000000;
  }

  .new-list .navigation li.active {
    background: #000390;
    color: #fff;
  }
}

/** 大于1400 的适配 **/
@media screen and (min-width: 1537px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
  }
  .new-list {
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1920px 650px;
    background-color: #fff;
  }

  .new-list .wrap {
    margin: 0 auto;
    width: 1400px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .new-title {
    position: relative;
    z-index: 2;
    width: 1400px;
    margin: 0 auto 88px;
    height: 650px;
    display: flex;
    align-items: center;
    font-size: 60px;
    color: #fff;
    font-weight: bold;
  }

  .new-item {
    width: 437px;
    margin-right: 44px;
    margin-bottom: 94px;
    border-bottom: 1px solid #e0e0e0;
    transition: all .2s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3)
  }
  .new-item:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    transform: scale(1.05);
  }

  .new-item:nth-child(3n) {
    margin-right: 0;
  }

  .new-item a {
    cursor: pointer;
  }

  .new-item .img {
    width: 100%;
    height: 275px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .new-item .img img {
    vertical-align: top;
    width: 100%;
    height: 100%;
  }

  .new-item .text {
    padding: 29px 43px;
    height: 190px;
  }

  .new-item .text .title {
    font-size: 20px;
    color: #272727;
    height: 105px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .new-item .text .time {
    font-size: 17px;
    color: #9f9f9f;
  }


  .new-list .navigation {
    margin-bottom: 134px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .new-list .navigation .prew,
  .new-list .navigation .next,
  .new-list .navigation .first,
  .new-list .navigation .last {
    margin-right: 30px;
    width: 31px;
    text-align: center;
    line-height: 31px;
  }

  .new-list .navigation .last,
  .new-list .navigation .next {
    transform: rotate(180deg);
  }
  

  .new-list .navigation .prew {
    border-right: none;
    border-radius: 3px 0 0 3px;
  }

  .new-list .navigation .next {
  }

  .new-list .navigation ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .new-list .navigation li {
    margin-right: 30px;
    width: 31px;
    height: 31px;
    text-align: center;
    line-height: 31px;
    font-size: 18px;
    color: #000000;
    border-radius: 50%;
  }

  .new-list .navigation li.active {
    background: #000390;
    color: #fff;
  }
}
