.m-wrap {
  padding: 0 calc(70 / 1920 * 100vw);
  margin: 0 auto;
}
.m-row {
  padding: 60px 0;
  overflow: visible;
}
.m-row:nth-child(odd) {
  background: #f4f4f4;
}
.m-title {
  color: #333;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 50px;
}
.m-title h2 {
  font-size: 44px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.m-title i.line {
  display: block;
  width: 0;
  height: 30px;
  border-right: 1px solid currentColor;
  margin: 30px auto 0;
}
@media (max-width: 1440px) {
  .m-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .m-title {
    margin-bottom: 30px;
  }
  .m-title h2 {
    font-size: 24px;
  }
  .m-title i.line {
    height: 20px;
    margin-top: 20px;
  }
}
.m-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  margin-top: 24px;
}
.m-list-item {
  width: calc(33.333% - 20px);
  margin: 0 10px 24px;
}
@media (max-width: 768px) {
  .m-list-item {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .m-list-item {
    width: 100%;
  }
}
.m-list-img {
  width: 100%;
  padding-bottom: 40%;
  position: relative;
  overflow: hidden;
  background-color: #e5e5e5;
}
.m-list-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-list-content {
  padding: 16px 0;
}
.m-list-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .m-list-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .m-list-title {
    font-size: 16px;
  }
}
.m-list-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  overflow: hidden;
}
.m-tabs-nav {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #d4d4d4;
  margin-top: 24px;
  margin-bottom: 24px;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .m-tabs-nav {
    justify-content: flex-start;
  }
}
.m-tab-item {
  position: relative;
  padding: 20px 50px;
  font-size: 28px;
  line-height: 1.3;
  color: #c6c6c6;
  cursor: pointer;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  white-space: nowrap;
  transition: color 0.35s ease;
  flex-shrink: 0;
}
.m-tab-item:first-child {
  margin-left: 0;
}
.m-tab-item:last-child {
  margin-right: 0;
}
.m-tab-item::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 5px;
  background-color: #000;
  transition: width 0.35s ease;
}
.m-tab-item:hover {
  color: #333;
}
.m-tab-item.active {
  color: #333;
}
.m-tab-item.active::after {
  width: 5em;
}
@media (max-width: 1440px) {
  .m-tab-item {
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  .m-tab-item {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .m-tab-item {
    font-size: 16px;
    padding: 10px 20px;
    height: 50px;
    margin: 0 10px;
  }
}
.swiper-container-tabs {
  width: 100%;
  overflow: hidden;
}
.swiper-container-tabs .swiper-slide {
  height: auto;
  overflow: hidden;
}
.m-tab-content {
  position: relative;
}
.swiper-container-tablist {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0 0;
}
.m-tab-card {
  display: block;
  text-decoration: none;
  color: #333;
  height: 100%;
}
.m-tab-card-img {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  background-color: #e5e5e5;
}
.m-tab-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.m-tab-card:hover .m-tab-card-img img {
  transform: scale(1.05);
}
.m-tab-card-text {
  padding: 16px 0;
}
.m-tab-card-text h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .m-tab-card-text h4 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .m-tab-card-text h4 {
    font-size: 16px;
  }
}
.m-tab-card-text .desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  overflow: hidden;
  height: 3.2em;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.35s;
}
.m-tab-card-text .desc.expanded {
  padding-right: 5px;
  height: 6.4em;
  -webkit-line-clamp: unset;
  display: block;
  overflow-y: scroll;
}
.m-tab-card-text ::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 2px;
}
.m-tab-card-text .m-more-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  position: relative;
  z-index: 2;
  text-decoration: underline;
  text-underline-offset: 4px;
  user-select: none;
  transition: opacity 0.3s;
}
.m-tab-card-text .m-more-btn:hover {
  opacity: 0.6;
}
.m-awards {
  margin-top: 24px;
}
.m-awards-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 33%;
  max-width: 300px;
  min-width: 200px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .m-awards-nav {
    width: 100%;
    max-width: none;
    min-width: 0;
    flex-direction: row;
  }
}
.m-awards-nav-item {
  position: relative;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
  white-space: nowrap;
  padding-left: 0;
  flex: 1;
  display: flex;
  align-items: center;
}
.m-awards-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1em;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.m-awards-nav-item:hover {
  opacity: 0.8;
}
.m-awards-nav-item.active {
  opacity: 1;
  padding-left: 36px;
}
.m-awards-nav-item.active::before {
  opacity: 1;
}
.m-awards-content {
  flex: 1;
  min-width: 0;
}
.m-awards-panel {
  display: none;
}
.m-awards-panel.active {
  display: block;
}
.m-awards-swiper {
  position: relative;
  overflow: hidden;
}
.m-awards-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 8px;
  box-sizing: border-box;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0) 100%);
  overflow: hidden;
}
.m-awards-info-hd {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 32px;
  transition: transform 0.35s ease;
}
.m-awards-info-hd h4 {
  font-size: 22px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 1280px) {
  .m-awards-info-hd h4 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .m-awards-info-hd h4 {
    font-size: 16px;
  }
}
.m-awards-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.35s ease;
}
@media (max-width: 768px) {
  .m-awards-subtitle {
    font-size: 13px;
  }
}
.m-awards-item:hover .m-awards-info-hd {
  transform: translateY(-6px);
}
.m-awards-item:hover .m-awards-subtitle {
  max-height: 30px;
  opacity: 1;
  margin-top: 4px;
}
.m-awards-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}
.m-awards-img {
  width: 100%;
  height: 0;
  padding-bottom: calc(736 / 595 * 100%);
  position: relative;
  background-color: #1a1a1a;
  overflow: hidden;
}
.m-awards-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-awards-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 78px;
  height: 78px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}
@media screen and (max-width: 1920px) {
  .m-awards-nav-btn {
    width: calc(78 / 1920 * 100vw);
    height: calc(78 / 1920 * 100vw);
    min-width: 40px;
    min-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .m-awards-nav-btn {
    width: 0.6rem;
    height: 0.6rem;
    min-width: 30px;
    min-height: 30px;
  }
}
.m-awards-nav-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.35s;
}
.m-awards-nav-btn::after {
  content: '';
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transition: 0.35s;
  transform: scale(0.8);
}
@media screen and (max-width: 768px) {
  .m-awards-nav-btn::after {
    width: 6px;
    height: 6px;
  }
}
.m-awards-nav-btn:hover {
  border-color: #000;
}
.m-awards-nav-btn:hover::before {
  transform: scale(1);
}
.m-awards-nav-btn:hover::after {
  border-color: #fff;
  transform: scale(1);
}
.m-awards-nav-btn.swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
  display: none;
}
.m-awards-nav-btn.swiper-button-disabled:hover {
  border-color: rgba(0,0,0,0.2);
}
.m-awards-nav-btn.swiper-button-disabled:hover::before {
  transform: scale(0);
}
.m-awards-nav-btn.swiper-button-disabled:hover::after {
  border-color: #333;
  transform: scale(0.8);
}
.m-awards-nav-prev {
  left: 0;
}
.m-awards-nav-prev::after {
  transform: scale(0.8) rotate(-135deg);
}
.m-awards-nav-prev:hover::after {
  transform: scale(1) rotate(-135deg);
}
.m-awards-nav-next {
  right: 0;
}
.m-awards-nav-next::after {
  transform: scale(0.8) rotate(45deg);
}
.m-awards-nav-next:hover::after {
  transform: scale(1) rotate(45deg);
}
.swiper-container-tablist .m-awards-nav-btn {
  top: calc(8.69vw);
}
@media (min-width: 640px) and (max-width: 1023px) {
  .swiper-container-tablist .m-awards-nav-btn {
    top: calc(13.04vw + 1px);
  }
}
@media (max-width: 639px) {
  .swiper-container-tablist .m-awards-nav-btn {
    top: calc(26.07vw + 4px);
  }
}
.m-news {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  margin-top: 24px;
}
.m-news-item {
  width: 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .m-news-item {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .m-news-item {
    width: 100%;
  }
}
.m-news-con {
  display: block;
  text-decoration: none;
  color: #333;
}
.m-news-pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70.18%;
  overflow: hidden;
  margin-bottom: 20px;
}
.m-news-pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.m-news-con:hover .m-news-pic img {
  transform: scale(1.05);
}
.m-news-text {
  color: #333;
  font-size: 14px;
  text-align: left;
}
.m-news-tag {
  font-size: 14px;
  color: #333;
}
.m-news-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .m-news-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .m-news-title {
    font-size: 16px;
  }
}
.m-news-date {
  font-size: 14px;
  color: #333;
  margin: 0;
}
.m-page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1920px) {
  .m-page {
    margin-top: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .m-page {
    display: block;
    margin-top: 0.4rem;
  }
  .m-page ul {
    justify-content: center;
  }
}
.m-page ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.m-page ul li {
  color: #333;
  width: 62px;
  height: 62px;
  padding-top: 12px;
  background-color: #e3e3e3;
  background-size: contain;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  font-size: 16px;
  user-select: none;
}
@media screen and (max-width: 1920px) {
  .m-page ul li {
    width: calc(62 / 1920 * 100vw);
    height: calc(62 / 1920 * 100vw);
    padding-top: 0;
    min-width: 50px;
    min-height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .m-page ul li {
    width: 0.62rem;
    height: 0.62rem;
    min-width: 40px;
    min-height: 40px;
    font-size: 14px;
  }
}
.m-page ul li.current {
  color: #fff;
  background-color: #000;
}
.m-page ul li.pbtn {
  color: #333;
  transition: 0.35s;
}
.m-page ul li.pbtn:hover {
  transform: translateY(5px);
}
.j_report_list_new_esg {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-top: 24px;
}
.j_report_list_new_esg.jreport_swiper {
  margin-right: -30px;
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .j_report_list_new_esg.jreport_swiper {
    margin-right: -16px;
  }
}
.j_report_list_new_esg.jreport_swiper .swiper-pagination {
  position: static;
  text-align: center;
  margin-top: 20px;
}
.j_report_list_new_esg.jreport_swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.j_report_list_new_esg.jreport_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}
.j_report_list_new_esg .item {
  width: 25%;
  padding-right: 30px;
  box-sizing: border-box;
  margin-bottom: 40px;
}
@media (max-width: 1920px) {
  .j_report_list_new_esg .item {
    padding-right: calc(30 / 1920 * 100vw);
  }
}
@media (max-width: 1280px) {
  .j_report_list_new_esg .item {
    width: 33.333%;
  }
}
@media (max-width: 768px) {
  .j_report_list_new_esg .item {
    width: 50%;
    padding-right: 16px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .j_report_list_new_esg .item {
    width: 100%;
    padding-right: 0;
  }
}
.j_report_list_new_esg .picture {
  position: relative;
  height: 0;
  padding-top: calc(736 / 595 * 100%);
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #e5e5e5;
}
.j_report_list_new_esg .picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.35s;
}
.j_report_list_new_esg .picture:hover img {
  transform: scale(1.05);
}
.j_report_list_new_esg .text {
  color: #333;
  font-size: 14px;
  overflow: hidden;
}
.j_report_list_new_esg .text .title {
  font-size: 22px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 20px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .j_report_list_new_esg .text .title {
    font-size: 18px;
  }
}
.j_report_list_new_esg .text .btn {
  color: #fff;
  font-size: 14px;
  height: 50px;
  width: calc(50% - 10px);
  background-color: #999;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.35s;
  box-sizing: border-box;
  flex: 1;
  padding: 10px 0;
  margin-right: 10px;
}
.j_report_list_new_esg .text .btn:last-child {
  margin-right: 0;
}
.j_report_list_new_esg .text .btn.active {
  background-color: #000;
}
.j_report_list_new_esg .text .btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .j_report_list_new_esg .text .btn {
    height: 44px;
    font-size: 13px;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .j_report_list_new_esg .text .btn {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .j_report_list_new_esg .text {
    font-size: 12px;
  }
  .j_report_list_new_esg .text .title {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .j_report_list_new_esg .text .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .j_report_list_new_esg {
    margin-bottom: 16px;
  }
}
.tc {
  text-align: center;
  margin-top: 20px;
}
.g_btn1 {
  color: #333;
  font-size: 14px;
  padding: 15px 0;
  line-height: 25px;
  border-bottom: 1px solid #333;
  display: inline-block;
  text-decoration: none;
  transition: 0.5s;
}
.g_btn1 i {
  margin-left: 10px;
  transition: 0.5s;
}
.g_btn1 .jt {
  width: 28px;
  height: 1px;
  background-color: #333;
  transition: 0.5s;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.g_btn1 .jt::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  height: 0;
  border: 3px solid transparent;
  border-left-width: 6px;
  border-left-color: #333;
  transform: translate(-50%, -50%);
}
.g_btn1:hover i {
  margin-left: 30px;
}
.g_btn1:hover .jt {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .g_btn1 {
    font-size: 13px;
  }
}
.m-article {
  color: #000;
  margin: 0 auto;
  max-width: 900px;
  line-height: 2;
}
.m-article .content {
  flex: 1;
}
.m-article .content .hd {
  color: #999;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1920px) {
  .m-article .content .hd {
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m-article .content .hd {
    margin-bottom: 0.4rem;
  }
}
.m-article .content .hd h1 {
  color: #000;
  font-size: 46px;
  padding: 40px 0;
  border-bottom: 1px solid #dadada;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1920px) {
  .m-article .content .hd h1 {
    font-size: calc(46 / 1920 * 100vw);
    padding: calc(40 / 1920 * 100vw) 0;
    margin-bottom: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m-article .content .hd h1 {
    font-size: 18px;
    padding: 0.4rem 0;
    margin-bottom: 0.3rem;
  }
}
.m-article .content .hd .date {
  color: #999;
  font-size: 14px;
}
.m-article .content .bd img {
  max-width: 100%;
}
.m-article .content .bd p {
  margin-bottom: 1.5em;
  font-size: 16px;
  color: #333;
  line-height: 2;
}
@media screen and (max-width: 990px) {
  .m-article .content .bd p {
    font-size: 14px;
  }
}
.m-article .content .bd h2 {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  margin: 1.5em 0 0.8em;
}
@media screen and (max-width: 990px) {
  .m-article .content .bd h2 {
    font-size: 18px;
  }
}
.m-article .content .bd strong {
  font-weight: bold;
  color: #000;
}
.m-article .content .fd {
  margin: 100px 0;
  text-align: center;
}
@media screen and (max-width: 1920px) {
  .m-article .content .fd {
    margin: calc(100 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 990px) {
  .m-article .content .fd {
    margin: 1rem 0;
  }
}
.m-article .content .fd .back {
  color: #000;
  width: 6em;
  line-height: 2.5;
  margin: 0 auto;
  display: block;
  border-bottom: 1px solid #000;
  transition: 0.35s;
  box-sizing: content-box;
  text-decoration: none;
  text-align: center;
}
.m-article .content .fd .back:hover {
  padding: 0 10px;
}
@media screen and (max-width: 990px) {
  .m-article {
    display: block;
  }
}
.currentBread {
  color: #333;
  font-size: 14px;
  height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1920px) {
  .currentBread {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .currentBread {
    margin-bottom: 0.5rem;
  }
}
.currentBread a {
  color: #333;
  display: flex;
  align-items: center;
  margin: 0 15px;
  text-decoration: none;
}
.currentBread a:first-child {
  margin-left: 0;
}
.currentBread span {
  margin-left: 15px;
}
.m-article-wrapper {
  padding: 0 70px;
}
@media screen and (max-width: 1920px) {
  .m-article-wrapper {
    padding: 0 calc(70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m-article-wrapper {
    padding: 0 25px;
  }
}
