.esg {
  max-width: 1200px;
  margin: 0;
  box-sizing: border-box;
}
.esg .banner {
 width: 100%;
 position: relative;
}
.esg .banner .download {
  position: absolute;
  bottom: 56px;
  left: 72px;
  border: 1px solid #666;
  border-radius: 15px;
  padding: 2px 15px;
  line-height: 16px;
  display: flex;
  align-items: center;
}
.esg .banner .download img {
  width: 12px;
}
.esg .banner .banner-bg {
  width: 100%;
}
.esg .banner .title {
  width: 100%;
  position: absolute;
  left: 72px;
  top: 50%;
  transform: translateY(-70%);
}
.esg .banner .title h1 {
  font-size: 42px;
  margin-bottom: 20px;
}
.esg .news {
  margin-top: 20px;
}
.esg .news .news-list li {
  display: flex;
  align-items: center;
}
.esg .news .news-list li a {
  padding: 10px 0;
  display: block;
}
.esg .news .news-list li:hover a {
  color: #E60012;
}
.esg .news .news-list li .news-date {
  width: 100px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}
.esg .news .news-list li .news-date::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid #D9D9D9;
  border-radius: 50%;
  position: absolute;
  right: -5px;
  top: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}
.esg .news .news-list li:hover .news-date::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #FACCD0;
  border-radius: 50%;
  position: absolute;
  right: -5px;
  top: 50%;
  border: none;
  transform: translateY(-50%);
}
.esg .news .news-list li:hover .news-date::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #E60012;
  border-radius: 50%;
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.esg .news .news-list li .news-title {
  width: calc(100% - 120px);
  margin-left: 20px;
  border-bottom: 1px dashed rgba(37, 42, 61, 0.14);
}
.esg .news .news-list li .news-title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.esg .esg-report {
  margin-top: 32px;
}
.esg .esg-report .esg-title {
  color: #E60012;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  border-bottom: 1px dashed rgba(37, 42, 61, 0.14);
  padding-bottom: 11px;
  margin-bottom: 11px;
  display: flex;
}
.esg .esg-report .esg-title img {
  width: 12px;
  margin-right: 5px;
}
.esg .esg-report p {
  color: #202121;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
@media (max-width: 1024px) {
  .esg .banner .download {
    bottom: 30px;
  }
}
@media (max-width: 768px) {
  .esg .banner .logo {
    display: none;
  }
  .esg .banner .title {
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -70%);
  }
  .esg .banner .title h1{
    font-size: 24px;
  }
  .esg .banner .title p{
    font-size: 12px;
  }
  .esg .banner .download {
    bottom: 12px;
    left: 10px;
  }
}