/** 公司动态 **/
.disabled-item {
  cursor: not-allowed !important;
  background-color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
}

.news-column-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 40px;
  margin-top: 6%;
}

.news-column-item .news-img-box {
  width: 30%;
  padding-right: 30px;
}

.news-column-item img {
  transform: scale(1);
  transition: transform 1s ease 0s;
  border-radius: 2px;
}

.news-column-item img:hover {
  transform: scale(1.05);
}

.news-column-item .news-text {
  display: flex;
  flex: 1;
}

.news-column-item .news-text .news-text-date {
  color: #a5a5a5;
  padding-right: 20px;
  font-family: 'Ebrima';
}

.news-text-abs {
  color: #a5a5a5;
  padding-top: 10px;
}

.news-column-item .news-item-title:hover{
  cursor: pointer;
  color: rgba(51, 203, 153, 0.8);
}

.news-title {
  margin-top: 6%;
}

.news-content-title {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}

.news-content-title .new-content-title-text {
  width: 100%;
  font-family: fantasy;
  font-weight: bolder;
  font-size: 38px;
}

.news-content-title .new-content-title-date {
  width: 100%;
  text-align: left;
  margin-top: 15px;
  font-size: 10px;
  font-weight: 400;
}

.news-header-title {
  padding-top: 6%;
  padding-bottom: 6%;
  border-bottom: 1px solid #b7c4db;
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #b7c4db;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item .news-date {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #345ea8;
}

.news-item .news-date h1 {
  font-weight: bold;
}

.news-item .news-date span {
  margin-top: 5px;
}

.news-item img {
  border-radius: 5px;
  transform: scale(1);
  transition: transform 1s ease 0s;
}

.news-item:hover {
  cursor: pointer;
}

.news-item:hover img {
  transform: scale(1.05);
}

.news-item-li {
  flex: 1;
  display: flex;
  justify-content: left;
  align-items: center;
}

.news-item-title {
  font-size: 24px;
  font-weight: bolder;
  padding: 0;
}

@media (max-width: 920px) {
  .news-content-title .new-content-title-text {
    font-size: 26px;
  }
}