.main .crm-banner {
  background-image: url('/static/site/imgs/banner_bg_3.jpg');
}
.main .company-news {
  padding: 0 0 69px;
  display: flex;
  flex-direction: column;
}
.main .company-news h4 {
  color: var(--color-text-1);
  font-size: 20px;
  padding: 41px 0 17px;
  border-bottom: 1px solid #edf4fa;
}
.main .company-news .news-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}
.main .company-news .news-list .news-item {
  display: flex;
  align-items: center;
  column-gap: 29px;
  padding: 14px 7px 14px 14px;
}
.main .company-news .news-list .news-item .left {
  padding: 0;
  width: 260px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .company-news .news-list .news-item .left img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.main .company-news .news-list .news-item .right {
  width: calc(100% - 260px - 29px);
  display: flex;
  flex-direction: column;
}
.main .company-news .news-list .news-item .right .title {
  color: var(--color-text-1);
  font-size: 20px;
  line-height: 26px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main .company-news .news-list .news-item .right .info {
  margin-top: 8px;
  color: var(--color-text-3);
  font-size: 14px;
  line-height: 22px;
  height: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.main .company-news .news-list .news-item .right .btm {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .company-news .news-list .news-item .right .btm .time {
  color: var(--color-text-2);
  display: flex;
  align-items: center;
  column-gap: 7px;
}
.main .company-news .news-list .news-item .right .btm .time i {
  font-size: 14px;
}
.main .company-news .news-list .news-item .right .btm .time span {
  font-family: Inter;
  font-size: 14px;
  line-height: 26px;
}
.main .company-news .news-list .news-item .right .btm .more {
  color: var(--color-text-2);
  font-size: 14px;
  line-height: 26px;
  display: flex;
  align-items: center;
  column-gap: 4px;
}
.main .company-news .news-list .news-item .right .btm .more i {
  font-size: 13px;
  color: #272636;
}
.main .company-news .news-list .news-item:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.main .company-news .news-list .news-item:hover .right .btm .more {
  color: var(--color-primary);
}
.main .company-news .news-list .news-item:hover .right .btm .more i {
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  .main .company-news {
    padding: 0 16px 20px;
  }
  .main .company-news h4 {
    font-size: 18px;
    padding: 20px 0 10px;
  }
  .main .company-news .news-list {
    margin-top: 10px;
    row-gap: 10px;
  }
  .main .company-news .news-list .news-item {
    column-gap: 16px;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
  }
  .main .company-news .news-list .news-item .left {
    width: 160px;
    height: 100px;
  }
  .main .company-news .news-list .news-item .right {
    width: calc(100% - 160px - 16px);
  }
  .main .company-news .news-list .news-item .right .title {
    font-size: 16px;
    line-height: 22px;
  }
  .main .company-news .news-list .news-item .right .info {
    font-size: 12px;
    line-height: 18px;
    height: 54px;
    -webkit-line-clamp: 3;
  }
  .main .company-news .news-list .news-item .right .btm {
    margin-top: 16px;
  }
  .main .company-news .news-list .news-item .right .btm .time i {
    font-size: 12px;
  }
  .main .company-news .news-list .news-item .right .btm .time span {
    font-size: 12px;
    line-height: 22px;
  }
  .main .company-news .news-list .news-item .right .btm .more {
    font-size: 12px;
    line-height: 22px;
  }
  .main .company-news .news-list .news-item .right .btm .more i {
    font-size: 11px;
  }
  .main .company-news .news-list .news-item:hover {
    box-shadow: none;
  }
}
@media (max-width: 480px) {
  .main .company-news .news-list .news-item .left {
    width: 100px;
    height: 60px;
  }
  .main .company-news .news-list .news-item .right {
    width: calc(100% - 100px - 16px);
  }
}
