/* ESG Topics Section */
.esq_news {
  width: 100%;
  background: #fff;
  padding: 1.62rem 0 1.62rem;
}

.esq_news_inner {
  width: 76%;
  max-width: 14.4rem;
  margin: 0 auto;
}

.esq_news_title {
  font-family: 'p-bold', sans-serif;
  font-size: 0.42rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #e0e0e0;
}

.esq_news_item {
  display: flex;
  align-items: center;
  padding: 0.28rem 0;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  color: #1a1a1a;
}

.esq_news_item:hover .esq_news_date,
.esq_news_item:hover .esq_news_name {
  color: #a4896c;
}

.esq_news_item:hover .esq_news_arrow {
  background-color: #a4896c;
  transform: translateX(0.04rem);
}

.esq_news_date {
  flex-shrink: 0;
  width: 1.4rem;
  font-family: 'p-medium', sans-serif;
  font-size: 0.18rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  padding-right: 0.6rem;
}

.esq_news_name {
  flex: 1;
  min-width: 0;
  padding: 0 0.4rem 0 0;
  font-family: 'p-medium', sans-serif;
  font-size: 0.18rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.esq_news_arrow {
  flex-shrink: 0;
  display: block;
  width: 0.25rem;
  height: 0.23rem;
  background-color: #1a1a1a;
  -webkit-mask: url('/data/tms/website/html/images/news/arrow-right-line.png') no-repeat center / contain;
  mask: url('/data/tms/website/html/images/news/arrow-right-line.png') no-repeat center / contain;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.esq_news_footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.48rem;
}

.esq_news_more {
  position: relative;
  display: block;
  width: 2.7rem;
  height: 0.6rem;
  border: none;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

.esq_news_more .bt_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #a5896d;
  transition: all 0.3s;
}

.esq_news_more .bol_1,
.esq_news_more .bol_2,
.esq_news_more .bt_t {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.esq_news_more img {
  width: 0.2rem;
}

.esq_news_more .bol_1 {
  left: 0;
  opacity: 0;
  z-index: 2;
  transition: left 0.9s, opacity 0.5s;
}

.esq_news_more .bol_2 {
  right: 20%;
  z-index: 2;
  transition: right 0.9s, opacity 0.5s;
}

.esq_news_more .bt_t {
  left: 20%;
  font-family: 'p-bold', sans-serif;
  font-size: 0.16rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  z-index: 2;
  transition: all 0.7s;
  transition-delay: 0.15s;
}

.esq_news_more:hover .bol_1 {
  left: 20%;
  opacity: 1;
}

.esq_news_more:hover .bol_2 {
  right: 0%;
  opacity: 0;
}

.esq_news_more:hover .bt_t {
  left: 50%;
}

.esq_news_more .esq_news_loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 0.2rem;
  height: 0.2rem;
  margin: -0.1rem 0 0 -0.1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: esqTopicsSpin 0.8s linear infinite;
}

.esq_news_more.is-loading {
  pointer-events: none;
  cursor: default;
}

.esq_news_more.is-loading .bol_1,
.esq_news_more.is-loading .bol_2,
.esq_news_more.is-loading .bt_t {
  opacity: 0;
  visibility: hidden;
}

.esq_news_more.is-loading .esq_news_loading {
  display: block;
}

.esq_news_more.is-loading:hover .bol_1,
.esq_news_more.is-loading:hover .bol_2,
.esq_news_more.is-loading:hover .bt_t {
  left: auto;
  right: auto;
  opacity: 0;
}

@keyframes esqTopicsSpin {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 768px) {
  .esq_news {
    padding: 2rem 0 0.8rem;
  }

  .esq_news_inner {
    width: calc(100% - 0.6rem);
  }

  .esq_news_title {
    font-size: 0.48rem;
    padding-bottom: 0.3rem;
  }

  .esq_news_item {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 0.32rem 0;
  }

  .esq_news_date {
    width: 100%;
    font-size: 0.24rem;
    margin-bottom: 0.12rem;
  }

  .esq_news_name {
    flex: 1;
    padding: 0 0.2rem 0 0;
    font-size: 0.26rem;
  }

  .esq_news_arrow {
    align-self: center;
    width: 0.24rem;
  }

  .esq_news_footer {
    margin-top: 0.4rem;
    justify-content:center;
  }

  .esq_news_more {
    width: 80%;
    height: 0.88rem;
  }

  .esq_news_more .bt_t {
    font-size: 0.26rem;
  }

  .esq_news_more img {
    width: 0.24rem;
  }

  .esq_news_more .esq_news_loading {
    width: 0.28rem;
    height: 0.28rem;
    margin: -0.14rem 0 0 -0.14rem;
  }

  .esq_news_more:hover .bol_1 {
    left: 0;
    opacity: 0;
  }

  .esq_news_more:hover .bol_2 {
    right: 20%;
    opacity: 1;
  }

  .esq_news_more:hover .bt_t {
    left: 20%;
  }
}
