/*================
 Section
==================*/

/* box 03 */
.home-box-03 {
  padding: 50px 0;
}

.news-item {
  width: 1140px;
  height: 330px;
  background: #fff;
  /* border: 1px solid #d0d0d0; */
  border-radius: 6px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.news-item>div:nth-child(1) {
  max-width: 470px;
  padding: 0;
  margin: 0;
}

.news-item-content {
  padding: 40px;
  text-align: left;
}

.news-item .title {
  font-size: 18px;
  font-weight: 400;
  color: #232323;
  line-height: 30px;
}

.news-item:hover .title {
  color: #2568ef;
  cursor: pointer;
}

.news-item .news-left-img {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.news-item img {
  width: 100%;
  height: 100%;
}
.news-item .news-left-img img {
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.news-item:hover .news-left-img img {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

.news-item-content .news-left-img .news-item .news-left-img::before {
  display: block;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(37, 104, 239, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.news-item:hover .news-left-img::before {
  opacity: 1;
}

.news-item .content {
  padding-top: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 26px;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.news-item .time {
  padding-top: 20px;
  font-size: 12px;
  font-weight: 400;
  color: #666666;
  line-height: 26px;
}

.news-item .time>span {
  padding-top: 2px;
  padding-left: 10px;
}

.home-box-03 nav>ul>li.page-item:nth-child(n + 2) {
  margin-left: 10px;
}

.home-box-03 .page-link {
  color: #232323;
}

.news-lists {
  margin-bottom: 40px !important;
}

/* 屏幕 -- 差异化 */

@media (min-width: 576px) {
  .site-header {
    min-height: 500px;
  }
}

@media (min-width: 1620px) {
  .site-header {
    min-height: 600px;
  }
}

@media (max-width: 768px) {

  /* 新闻中心 */
  .news-item {
    width: 100%;
    height: auto;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .height-40 {
    display: none;
  }

  .home-box-03 {
    padding: 40px 20px;
  }

  .news-item>div:nth-child(1) {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }

  .news-item>div img {
    width: 100%;
  }

  .news-item-content {
    padding: 20px 16px;
  }

  .news-item .title {
    text-align: justify;
  }

  .moblie-nav {
    color: #333;
  }

  .site-header li,
  .site-header li a {
    color: #fff;
  }

  .header-login-tel {
    color: #fff;
  }
}