@charset "utf-8";
/* 基础动画 */
/* 鼠标悬浮中心，使用：@include positioncenter() */
/* 鼠标悬浮遮罩效果，使用：@include hovermask() */
.news_container .search_box .showcolumn {
  bottom: auto;
  top: 3.2rem;
}
.news_container .search_box .column {
  align-items: center;
  padding-right: 4rem;
  box-sizing: border-box;
}

.hot_news {
  margin: 2.4rem 0;
  padding-top: 2.4rem;
  background: linear-gradient(180deg, #e2eeff 0%, #fbfcff 100%);
  border-radius: 12px;
}
.hot_news .hot_news_head {
  padding: 0 4rem;
  display: flex;
  align-items: center;
}
.hot_news .hot_news_head .head_title {
  font-size: var(--font-size-24);
  color: var(--font-color-second);
  line-height: 1.2;
}
.hot_news .hot_news_head .iconfont {
  font-size: var(--font-size-20);
  color: var(--color-error-base);
}
.hot_news .hot_news_head .date {
  font-size: var(--font-size-12);
  color: var(--font-color-third);
  line-height: 1.2;
}
.hot_news .hot_news_body {
  margin-top: 2.6rem;
  border-bottom: 1px solid var(--color-primary-four);
  padding: 0 4rem;
}
.hot_news .hot_news_body .hot_news_list .hot_news_item {
  cursor: pointer;
  margin-bottom: 2.4rem;
  line-height: 1.2;
  display: flex;
  height: 3rem;
  align-items: center;
  padding-right: 10%;
}
.hot_news .hot_news_body .hot_news_list .hot_news_item .number {
  margin-right: 0.8rem;
  font-family: roboto-regular, roboto;
  display: inline-block;
  font-size: var(--font-size-12);
  padding: 0.2rem 0.4rem;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  background: var(--color-primary-base);
  border: 1px solid var(--color-primary-base);
  border-radius: 2px;
}
.hot_news .hot_news_body .hot_news_list .hot_news_item .hot_item_title {
  display: -webkit-box;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: 0.3s;
}
.hot_news .hot_news_body .hot_news_list .hot_news_item:hover .hot_item_title {
  transform: translatex(1rem);
}
.hot_news .hot_news_body .hot_news_list > div:last-child .hot_news_item .number {
  font-size: var(--font-size-12);
  line-height: 1;
  text-align: center;
  color: var(--color-primary-base);
  border: 1px solid var(--color-primary-base);
  background: #ffffff;
  border-radius: 2px;
}
.hot_news .hot_news_bottom {
  display: flex;
  padding: 0 4rem;
  align-items: center;
  height: 7.2rem;
}
.hot_news .hot_news_bottom .hot_news_bottom_list {
  display: flex;
  flex: 1;
  height: 100%;
}
.hot_news .hot_news_bottom .hot_news_bottom_list .hot_news_bottom_item {
  font-size: var(--font-size-14);
  line-height: 1.2;
  padding-right: 14rem;
  display: flex;
  align-items: center;
}
.hot_news .hot_news_bottom .hot_news_bottom_list .hot_news_bottom_item .icon {
  width: 4rem;
  height: 4rem;
  margin-right: 1.6rem;
}
.hot_news .hot_news_bottom .hot_news_bottom_option {
  display: flex;
  height: 100%;
  align-items: center;
}
.hot_news .hot_news_bottom .hot_news_bottom_option a {
  font-size: var(--font-size-14);
  font-weight: 400;
  color: var(--font-color-third);
  margin-right: 2.4rem;
  line-height: 1;
  transition: 0.3s;
}
.hot_news .hot_news_bottom .hot_news_bottom_option a:hover {
  color: var(--color-primary-base);
}
.hot_news .hot_news_bottom .hot_news_bottom_option .option_btn {
  cursor: pointer;
  font-size: var(--font-size-14);
  color: var(--color-primary-base);
  line-height: 1.2;
  padding: 0.8rem 2.4rem;
  border-radius: 48px;
  border: 1px solid var(--color-primary-base);
  transition: 0.3s;
}
.hot_news .hot_news_bottom .hot_news_bottom_option .option_btn:hover {
  background-color: var(--color-primary-base);
  color: #ffffff;
}

.news_list_box .news_list_head .news_head_list {
  display: grid;
  grid-template-areas: "a b b" "a b b";
  grid-template-columns: 2fr 1fr 1fr;
}
.news_list_box .news_list_head .news_head_list .news_item {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  margin-left: 2.4rem;
  margin-bottom: 2.4rem;
}
.news_list_box .news_list_head .news_head_list .news_item:first-child {
  margin: 0;
}
.news_list_box .news_list_head .news_head_list .news_item img {
  width: 100%;
  border-radius: 1.2rem;
  height: 21.4rem;
  object-fit: cover;
}
.news_list_box .news_list_head .news_head_list .news_item .news_item_m_box {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.2) 77%, rgba(0, 0, 0, 0.6) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.news_list_box .news_list_head .news_head_list .news_item .news_item_m_box .news_title {
  color: #ffffff;
  margin: 1.6rem;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.news_list_box .news_list_head .news_head_list .news_item:first-child {
  grid-area: a;
}
.news_list_box .news_list_head .news_head_list .news_item:first-child img {
  height: 45.2rem;
}
.news_list_box .news_list_head .news_head_list .news_item:first-child .news_item_m_box {
  height: 45.2rem;
}
.news_list_box .news_list_head .news_head_list .news_item .data_hot_tag {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  background: #ffe6e5;
  border-radius: 4px;
  color: #ffffff;
  font-size: var(--font-size-12);
  opacity: 1;
  border-radius: 36px 36px 36px 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.news_list_box .news_list_head .news_head_list .news_item .data_hot_tag .iconfont {
  font-size: var(--font-size-24);
  color: #f53431;
}
.news_list_box .news_list_head .news_list_head_banner {
  width: 104rem;
  height: 45.5rem;
  background: #f6f6f9;
  border-radius: 12px;
  margin-right: 2.4rem;
  position: relative;
}
.news_list_box .news_list_head .news_list_head_banner .carousel_item {
  display: flex;
  height: 100%;
}
.news_list_box .news_list_head .news_list_head_banner .carousel_item .item_image {
  width: 63%;
  border-radius: 1.2rem;
  overflow: hidden;
}
.news_list_box .news_list_head .news_list_head_banner .carousel_item .item_desc {
  padding: 4rem 2.4rem;
  font-size: var(--font-size-24);
  line-height: 1.5;
  width: 37%;
}
.news_list_box .news_list_head .news_list_head_banner .carousel_item .item_desc .item_desc_name {
  transition: 0.3s;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.news_list_box .news_list_head .news_list_head_banner .carousel_item .item_desc .item_desc_info {
  margin-top: 1.6rem;
  font-size: var(--font-size-14);
  font-weight: 400;
  color: #64698f;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
.news_list_box .news_list_head .news_list_head_banner .carousel_item:hover .item_desc .item_desc_name {
  color: var(--color-primary-base);
}
.news_list_box .news_list_head .news_list_head_banner .owl-dots {
  right: 2.4rem;
  bottom: 2.6rem;
  position: absolute;
}
.news_list_box .news_list_head .news_list_head_banner .owl-dots .owl-dot {
  transition: 0.3s;
  transform: scale(0.6);
}
.news_list_box .news_list_head .news_list_head_banner .owl-dots .owl-dot span {
  margin: 0.5rem 0.5rem !important;
  background: #d8d9e3;
}
.news_list_box .news_list_head .news_list_head_banner .owl-dots .owl-dot.active {
  transform: scale(1);
}
.news_list_box .news_list_head .news_list_head_banner .owl-dots .owl-dot.active span {
  background-color: #d8d9e3;
}
.news_list_box .news_list_head .news_list_head_banner .owl-nav {
  display: flex;
  right: 30.9rem;
  bottom: 2.5rem;
  position: absolute;
}
.news_list_box .news_list_head .news_list_head_banner .owl-nav button {
  border-radius: 50%;
  height: 2.4rem !important;
  width: 2.4rem !important;
  background-color: var(--font-color-four);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.news_list_box .news_list_head .news_list_head_banner .owl-nav button:hover {
  background-color: var(--color-primary-base);
}
.news_list_box .news_list_head .news_list_head_banner .owl-nav button:last-child {
  margin-left: 2.4rem;
}
.news_list_box .news_list_head .news_list_head_banner .owl-nav button span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem !important;
  color: #ffffff;
  margin-top: -0.4rem;
}
.news_list_box .news_list_body .news_list {
  width: 100%;
  margin: 0 auto 2.7rem auto;
  position: relative;
}
.news_list_box .news_list_body .news_list .news_item {
  position: absolute;
  top: 100%;
  left: 40%;
  transition: all cubic-bezier(0, 0.04, 0.14, 0.99) 0.4s;
  overflow: hidden;
  opacity: 0;
}
.news_list_box .news_list_body .news_list .news_item .news_item_body {
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #d8d9e3;
  width: 38.2rem;
  margin: 0 2.4rem 2.4rem 0;
}
.news_list_box .news_list_body .news_list .news_item:hover .news_image img {
  transform: scale(1.1);
  box-shadow: 0 2px 4px 1px rgba(56, 136, 255, 0.3);
}
.news_list_box .news_list_body .news_list .news_item:hover .news_title {
  color: var(--color-primary-base);
}
.news_list_box .news_list_body .news_list .news_item .news_info {
  padding: 1.2rem;
}
.news_list_box .news_list_body .news_list .news_item .news_image {
  width: 100%;
  height: 21.4rem;
  overflow: hidden;
}
.news_list_box .news_list_body .news_list .news_item .news_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.news_list_box .news_list_body .news_list .news_item .news_image .data_hot_tag {
  position: absolute;
  top: 1.6rem;
  right: 4rem;
  background: #ffe6e5;
  border-radius: 4px;
  color: #ffffff;
  font-size: var(--font-size-12);
  opacity: 1;
  border-radius: 36px 36px 36px 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.news_list_box .news_list_body .news_list .news_item .news_image .data_hot_tag .iconfont {
  font-size: var(--font-size-24);
  color: #f53431;
}
.news_list_box .news_list_body .news_list .news_item .news_author {
  font-size: var(--font-size-14);
  color: var(--font-color-third);
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.news_list_box .news_list_body .news_list .news_item .news_author img {
  height: 2.6rem;
  width: 2.6rem;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 0.6rem;
  border: 1px solid #dcdfe5;
}
.news_list_box .news_list_body .news_list .news_item .news_title {
  margin: 1.2rem 0;
  font-weight: 600;
  line-height: 1.2;
  transition: 0.3s;
}
.news_list_box .news_list_body .news_list .news_item .news_desc {
  display: flex;
  color: var(--font-color-third);
}
.news_list_box .news_list_body .news_list .news_item .news_desc div {
  display: flex;
  align-items: center;
}
.news_list_box .news_list_body .news_list .news_item .news_desc .news_time {
  font-size: var(--font-size-12);
}
.news_list_box .news_list_body .news_list .news_item .news_desc .news_status {
  flex: 1;
  justify-content: flex-end;
  font-size: var(--font-size-14);
}
.news_list_box .news_list_body .news_list .news_item .news_desc .news_status .iconfont {
  margin-right: 0.4rem;
}
.news_list_box .news_list_body .news_list .news_item .news_desc .news_status div {
  margin-left: 1.6rem;
}
.news_list_box .news_list_body .news_list .news_item.break {
  flex-basis: 100%;
  width: 0;
  margin: 0;
  content: "";
  padding: 0;
}

.load_more_box {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 2.4rem;
  margin-top: 2.4rem;
}
.load_more_box .load_more_btn {
  cursor: pointer;
  background: #ffffff;
  border-radius: 6px;
  font-size: var(--font-size-14);
  padding: 1.2rem 13.2rem;
}

body:not([data-lang=zh-cn], [data-lang=zh-tw]) .news_list_box .news_list_body {
  overflow: hidden;
}
body:not([data-lang=zh-cn], [data-lang=zh-tw]) .news_list_box .news_list_body .news_list .news_item .news_item_body {
  width: 35rem;
}
body:not([data-lang=zh-cn], [data-lang=zh-tw]) .hot_news .hot_news_bottom .hot_news_bottom_list {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  grid-gap: 2%;
}
body:not([data-lang=zh-cn], [data-lang=zh-tw]) .hot_news .hot_news_bottom .hot_news_bottom_list .hot_news_bottom_item {
  padding: 0;
}

body:not([data-lang=zh-cn], [data-lang=zh-tw]) .news_list_box .news_list_body .news_list .news_item .news_desc {
  flex-wrap: wrap;
}
body:not([data-lang=zh-cn], [data-lang=zh-tw]) .news_list_box .news_list_body .news_list .news_item .news_desc .news_status {
  justify-content: flex-start;
  grid-gap: 2rem;
  flex: unset;
  margin-top: 0.6rem;
  width: 100%;
}
body:not([data-lang=zh-cn], [data-lang=zh-tw]) .news_list_box .news_list_body .news_list .news_item .news_desc .news_status div {
  margin: 0;
}

/*# sourcemappingurl=news.css.map */
