.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}
.news-main-wrapper {
  box-sizing: border-box;
  width: 100%;
  padding: 0 40px;
  /*font-family: "Helvetica Neue", Arial, Roboto, "Noto Sans", sans-serif;*/
}
.news-main {
  max-width: 1280px;
  margin: 0 auto;
}
.news-room {
  margin-top: 35px;
  padding-top: 48px;
  padding-bottom: 104px;
}
.news-room-title {
  font-size: 48px;
  line-height: 51px;
  font-weight: 600;
  margin-bottom: 80px;
}
.news-room-inner {
  display: flex;
  justify-content: flex-start;
}
.news-room-inner .news-room-cover {
  flex-shrink: 1;
  max-width: 768px;
  min-width: 360px;
  max-height: 432px;
  display: flex;
  align-items: center;
}
.news-room-inner .news-room-cover-inner {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.news-room-inner .news-room-info {
  flex-shrink: 0;
  width: 512px;
  flex-wrap: nowrap;
  padding: 40px 64px;
}
.news-room-inner .news-room-info-tag {
  color: #308af0;
  font-size: 20px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 8px;
}
.news-room-inner .news-room-info-title {
  color: #0d0e10;
  font-size: 32px;
  line-height: 45px;
  font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-room-inner .news-room-info-time-wrap {
  margin-top: 20px;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
}
.news-room-inner .news-room-info-time-wrap .icon-news-time {
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-news-time.svg");
  background-size: 100% 100%;
  margin-right: 9px;
}
.news-room-inner .news-room-info-time-wrap .news-room-info-time {
  display: inline-block;
  color: #40454f;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
.news-room-inner .news-room-info-read-now {
  display: inline-block;
  margin-top: 50px;
  height: 46px;
  line-height: 46px;
  padding: 0 30px;
  border-radius: 6px;
  background: #308af0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}
.news-room-inner .news-room-info-read-now:hover {
  background: #0b6cda;
}
.news-room-inner .news-room-info-read-now:active {
  opacity: 1;
}
.explore {
  padding-top: 50px;
  padding-bottom: 146px;
}
.explore-header {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.explore-title {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #0d0e10;
}
.explore-search {
  width: 350px;
  height: 42px;
  position: relative;
}
.explore-search-input {
  width: 100%;
  height: 42px;
  line-height: 42px;
  border: 1px solid #ccc;
  border-radius: 16px;
  padding: 0 32px 0 21px;
}
.explore-search-btn {
  display: block;
  background-color: transparent;
  outline: none;
  width: 16px;
  height: 16px;
  background-image: url("../img/icon-explore-search.svg");
  background-size: 100% 100%;
  position: absolute;
  top: 13px;
  right: 14px;
  cursor: pointer;
}
.explore-search-btn.hidden {
  display: none;
}
.explore-search .explore-close-icon {
  display: none;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-close.svg);
  background-size: 100% 100%;
  position: absolute;
  top: 13px;
  right: 14px;
  cursor: pointer;
}
.explore-search .explore-close-icon.active {
  display: block;
}
.explore .explore-news-list,
.explore .explore-news-search-list {
  margin-top: 97px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 47px;
  row-gap: 51px;
}
.explore .explore-news-list.hidden,
.explore .explore-news-search-list.hidden {
  display: none;
}
.explore .explore-news-list .explore-news-item,
.explore .explore-news-search-list .explore-news-item {
  box-sizing: border-box;
  width: 395px;
  border: 1px solid #ebedf0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.explore .explore-news-list .explore-news-item:hover,
.explore .explore-news-search-list .explore-news-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.explore .explore-news-list .explore-news-item-cover,
.explore .explore-news-search-list .explore-news-item-cover {
  background-color: #ebedf0;
  width: 100%;
  height: 227px;
  object-fit: cover;
}
.explore .explore-news-list .explore-news-item-info,
.explore .explore-news-search-list .explore-news-item-info {
  padding: 34px 16px 27px 34px;
}
.explore .explore-news-list .explore-news-item-title,
.explore .explore-news-search-list .explore-news-item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  color: #1d293f;
  height: 108px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.explore .explore-news-list .explore-news-item-desc,
.explore .explore-news-search-list .explore-news-item-desc {
  margin-top: 13px;
  height: 84px;
  color: #878787;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.explore .explore-news-list .explore-news-item-time,
.explore .explore-news-search-list .explore-news-item-time {
  margin-top: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
}
.explore .explore-news-list .explore-news-item-time-icon,
.explore .explore-news-search-list .explore-news-item-time-icon {
  width: 16px;
  height: 16px;
  background-image: url("../img/icon-explore-time.svg");
  background-size: 100% 100%;
}
.explore .explore-bottom {
  display: flex;
  justify-content: center;
}
.explore .explore-bottom .explore-load-more-btn {
  margin-top: 144px;
  height: 44px;
  line-height: 44px;
  padding: 0 16px;
  border-width: 0;
  background-color: transparent;
  outline: none;
  color: #308af0;
  cursor: pointer;
  font-size: 16px;
  border-radius: 44px;
  transition: all 0.5s ease;
}
.explore .explore-bottom .explore-load-more-btn:hover {
  background-color: #308af0;
  color: #fff;
}
.explore .explore-bottom .explore-load-more-btn:active {
  opacity: 0.8;
}
.explore .explore-bottom .explore-load-more-btn.hidden {
  display: none;
}
@media (max-width: 576px) {
  html {
    font-size: calc(100vw / 375);
  }
  .container {
    width: 100%;
    max-width: unset;
  }
  .news-main-wrapper {
    box-sizing: border-box;
    width: 100%;
    padding: 0 20rem;
  }
  .news-main {
    margin: 0 auto;
  }
  .news-room {
    box-sizing: border-box;
    padding-top: 59rem;
    padding-bottom: 100rem;
  }
  .news-room-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .news-room-inner .news-room-cover {
    width: 100%;
    max-width: unset;
    min-width: unset;
    max-height: unset;
    height: auto;
  }
  .news-room-inner .news-room-cover-inner {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  .news-room-inner .news-room-info {
    flex-shrink: 0;
    width: 100%;
    flex-wrap: nowrap;
    padding: 21rem 0 0;
  }
  .news-room-inner .news-room-info-tag {
    color: #308af0;
    font-size: 20rem;
    line-height: 45rem;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .news-room-inner .news-room-info-title {
    color: #0d0e10;
    font-size: 32rem;
    line-height: 45rem;
    font-weight: 700;
  }
  .news-room-inner .news-room-info-time-wrap {
    margin-top: 20rem;
    display: flex;
    align-items: center;
    font-size: 20rem;
    font-weight: 400;
  }
  .news-room-inner .news-room-info-time-wrap .icon-news-time {
    width: 20rem;
    height: 20rem;
    background-image: url("../img/icon-news-time.svg");
    background-size: 100% 100%;
    margin-right: 9rem;
  }
  .news-room-inner .news-room-info-time-wrap .news-room-info-time {
    display: inline-block;
    color: #40454f;
    font-size: 20rem;
    line-height: 28rem;
    font-weight: 400;
  }
  .news-room-inner .news-room-info-read-now {
    display: inline-block;
    margin-top: 16rem;
    height: 46rem;
    line-height: 46rem;
    padding: 0 30rem;
    border-radius: 6rem;
    background: #308af0;
    color: #fff;
    cursor: pointer;
    font-size: 16rem;
  }
  .news-room-inner .news-room-info-read-now:hover {
    opacity: 0.8;
  }
  .news-room-inner .news-room-info-read-now:active {
    opacity: 1;
  }
  .explore {
    padding-top: 0;
    padding-bottom: 56rem;
  }
  .explore-header {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10rem;
  }
  .explore-title {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 32rem;
    line-height: 40rem;
    color: #0d0e10;
    margin-bottom: 33rem;
  }
  .explore-search {
    width: 100%;
    height: 42rem;
    position: relative;
  }
  .explore-search-input {
    width: 100%;
    height: 42rem;
    line-height: 42rem;
    border: 1px solid #ccc;
    border-radius: 16rem;
    padding: 0 32rem 0 21rem;
  }
  .explore-search-btn {
    display: block;
    background-color: transparent;
    outline: none;
    width: 16rem;
    height: 16rem;
    background-image: url("../img/icon-explore-search.svg");
    background-size: 100% 100%;
    position: absolute;
    top: 13rem;
    right: 14rem;
    cursor: pointer;
  }
  .explore-search-btn.hidden {
    display: none;
  }
  .explore-search .explore-close-icon {
    display: none;
    width: 16rem;
    height: 16rem;
    background-image: url(../img/icon-close.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 13rem;
    right: 14rem;
    cursor: pointer;
  }
  .explore-search .explore-close-icon.active {
    display: block;
  }
  .explore .explore-news-list,
  .explore .explore-news-search-list {
    margin-top: 43rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: 47rem;
    row-gap: 47rem;
  }
  .explore .explore-news-list.hidden,
  .explore .explore-news-search-list.hidden {
    display: none;
  }
  .explore .explore-news-list .explore-news-item,
  .explore .explore-news-search-list .explore-news-item {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #ebedf0;
    border-radius: 16rem;
    overflow: hidden;
  }
  .explore .explore-news-list .explore-news-item-cover,
  .explore .explore-news-search-list .explore-news-item-cover {
    background-color: #ebedf0;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .explore .explore-news-list .explore-news-item-info,
  .explore .explore-news-search-list .explore-news-item-info {
    padding: 20rem 30rem;
  }
  .explore .explore-news-list .explore-news-item-title,
  .explore .explore-news-search-list .explore-news-item-title {
    font-weight: 700;
    font-size: 18rem;
    line-height: 30rem;
    color: #1d293f;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
  .explore .explore-news-list .explore-news-item-desc,
  .explore .explore-news-search-list .explore-news-item-desc {
    margin-top: 13rem;
    height: 72rem;
    color: #878787;
    font-size: 12rem;
    font-weight: 400;
    line-height: 24rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
  .explore .explore-news-list .explore-news-item-time,
  .explore .explore-news-search-list .explore-news-item-time {
    margin-top: 19rem;
    display: flex;
    align-items: center;
    gap: 10rem;
    font-size: 14rem;
    line-height: 28rem;
    font-weight: 400;
  }
  .explore .explore-news-list .explore-news-item-time-icon,
  .explore .explore-news-search-list .explore-news-item-time-icon {
    width: 16rem;
    height: 16rem;
    background-image: url("../img/icon-explore-time.svg");
    background-size: 100% 100%;
  }
  .explore .explore-bottom {
    display: flex;
    justify-content: center;
  }
  .explore .explore-bottom .explore-load-more-btn {
    margin-top: 83rem;
    height: 44rem;
    line-height: 44rem;
    padding: 0 16rem;
    border-width: 0;
    background-color: transparent;
    outline: none;
    color: #308af0;
    cursor: pointer;
    font-size: 16rem;
  }
  .explore .explore-bottom .explore-load-more-btn:active {
    opacity: 0.8;
  }
  .explore .explore-bottom .explore-load-more-btn.hidden {
    display: none;
  }
    .news-room-title {
        text-align: center;
    }
}
.explore .explore-news-list .explore-news-item.hidden {
    display: none;
}
.news-detail-main .news-room-inner .news-room-info-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}