h1, h2, h3, h4, h5, h6, em, strong, b {
  font-weight: normal;
}

/*@font-face {*/
/*  font-family: Source Han Serif CN Regular;*/
/*  src: url(/static/fonts/SourceHanSerifCN-Regular.woff2) format("opentype");*/
/*}*/
/*@font-face {*/
/*  font-family: Source Han Serif CN Medium;*/
/*  src: url(/static/fonts/SourceHanSerifCN-Medium.woff2) format("opentype");*/
/*}*/

.index_button1 a {
  display: inline-block;
  width: 210px;
  height: 64px;
  background-color: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.index_button1 a span {
  font-weight: 700;
  color: #4F4224;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_button1 a span {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.index_button1 a .index_arrow_Dark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/static/images/index_arrow_Dark.svg) no-repeat center;
  background-size: contain;
}
.index_button1 a:hover {
  background-color: #061C43;
}
.index_button1 a:hover span {
  color: #F5F5F5;
}
.index_button1 a:hover .index_arrow_Dark {
  background: url(/static/images/Propertyright-Beige-color.svg) no-repeat center;
}

.index_button2 a {
  display: inline-block;
  width: 170px;
  height: 64px;
  background-color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid transparent;
}
.index_button2 a span {
  color: #000000;
  font-weight: 600;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_button2 a span {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.index_button2 a .index_arrow_black {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/static/images/index_arrow_black.svg) no-repeat center;
  background-size: contain;
  transition: all 0.4s ease;
}
.index_button2 a:hover {
  border-bottom: 1px solid #000000;
}
.index_button2 a:hover .index_arrow_black {
  transform: translateX(20px);
}

.index_button3 a {
  display: inline-block;
  width: 137px;
  height: 64px;
  background-color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid transparent;
  gap: 16px;
}
.index_button3 a span {
  color: #000000;
  font-weight: 600;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_button3 a span {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.index_button3 a .index_download {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/static/images/Property\ 1=download.svg) no-repeat center;
  background-size: contain;
  transition: all 0.4s ease;
}
.index_button3 a:hover {
  border-bottom: 1px solid #000000;
}
.index_button3 a:hover .index_download {
  transform: translateX(20px);
}

.index_button4 {
  width: 137px;
  height: 64px;
  background-color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid transparent;
  gap: 16px;
}
.index_button4 span {
  color: #fff;
  transition: all 0.4s ease;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_button4 span {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.index_button4 .index_arrow_more {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/static/images/Propertyright-Beige-color.svg) no-repeat center;
  background-size: contain;
  transition: all 0.4s ease;
}

.index_button4:hover {
  border-bottom: 1px solid #fff;
}
.index_button4:hover span {
  transform: translateX(-5px);
}
.index_button4:hover .index_arrow_more {
  transform: translateX(20px);
}

.loading_video {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 101;
}
.loading_video video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.loading_content.show {
  visibility: visible;
  opacity: 1;
}

.index_content1 {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.index_content1.animate {
  opacity: 1;
  transform: translateY(0);
}

.index_banner h1 {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
}
.index_banner img {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.8s ease;
}

.index_banner.animate h1 {
  opacity: 1;
  transform: translateX(0);
}
.index_banner.animate img {
  opacity: 1;
  transform: scale(1);
}

.head_container {
  width: 100%;
  height: 100px;
  background-color: #061C43;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
}
.head_container .head_left {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.head_container .head_left .head_logo {
  height: 100%;
}
.head_container .head_left .head_logo a img {
  width: auto;
  height: 100%;
}
.head_container .head_left .head_search {
  position: relative;
}
.head_container .head_left .head_search input {
  width: 220px;
  height: 32px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  padding-left: 12px;
  color: #EBE9E5;
  font-family: "Roboto";
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
.head_container .head_left .head_search input::placeholder {
  color: #EBE9E5;
}
.head_container .head_left .head_search button{
  border: none;
}
.head_container .head_left .head_search button img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.head_container .head_right {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
}
.head_container .head_right .head_nav .nav_list {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.head_container .head_right .head_nav .nav_list .nav_item {
  position: relative;
}
.head_container .head_right .head_nav .nav_list .nav_item a {
  color: #F5F5F5;
  display: block;
  height: 40px;
  font-family: "Roboto";
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
.head_container .head_right .head_nav .nav_list .nav_item a {
  line-height: 40px;
}
.head_container .head_right .head_nav .nav_list .nav_item .nav_sublist {
  display: none;
  position: absolute;
  width: max-content;
  top: 70px;
  left: 0;
}
.head_container .head_right .head_nav .nav_list .nav_item .nav_sublist .nav_subitem {
  margin-bottom: 10px;
}
.head_container .head_right .head_nav .nav_list .nav_item .nav_sublist .nav_subitem a {
  height: 30px;
  line-height: 30px;
  position: relative;
  transition: all 0.3s ease;
}
.head_container .head_right .head_nav .nav_list .nav_item .nav_sublist .nav_subitem:hover a {
  padding-left: 20px;
}
.head_container .head_right .head_nav .nav_list .nav_item .nav_sublist .nav_subitem:hover a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #B3A179;
}
.head_container .head_right .head_nav .nav_list .nav_item.active > a {
  color: rgba(255, 255, 255, 0.5019607843);
}
.head_lang {
  display: flex;
}
.head_lang a {
  color: #F5F5F5;
  opacity: 0.6;
  position: relative;
  font-family: "Roboto";
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
.head_lang a:first-child {
  padding-right: 12px;
}
.head_lang a:last-child {
  border-left: 1px solid #F5F5F5;
  padding-left: 12px;
}
.head_lang .active {
  opacity: 1;
}

.head_container::after {
  transform: translateY(-100%);
  content: "";
  position: absolute;
  width: 100%;
  height: 256px;
  top: 0;
  left: 0;
  background-color: #061C43;
  z-index: -1;
  transition: transform 0.3s ease-out;
}

.head_container.show_bg::after {
  transform: translateY(0);
}

.head_mobile {
  display: none;
}
.head_mobile .head_mobile_top {
  width: 100%;
  height: 64px;
  background-color: #061C43;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: fixed;
  z-index: 100;
  top: 0;
}
.head_mobile .head_mobile_top .mobile_top_logo {
  height: 100%;
}
.head_mobile .head_mobile_top .mobile_top_logo a img {
  width: auto;
  height: 100%;
}
.head_mobile .head_mobile_top .mobile_top_action img {
  cursor: pointer;
}
.head_mobile .head_mobile_nav {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 48px 15px 0;
  background-color: #061C43;
  z-index: 100;
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.head_mobile .head_mobile_nav .mobile_nav_list {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
.head_mobile .head_mobile_nav .mobile_nav_list .mobile_nav_item > a {
  display: inline-block;
  color: #F9E9C6;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .head_mobile .head_mobile_nav .mobile_nav_list .mobile_nav_item > a {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.head_mobile .head_mobile_nav .mobile_nav_list .mobile_nav_item .mobile_nav_sublist {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.head_mobile .head_mobile_nav .mobile_nav_list .mobile_nav_item .mobile_nav_sublist .mobile_nav_subitem a {
  color: #F5F5F5;
  font-family: "Source Han Serif CN Medium";
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .head_mobile .head_mobile_nav .mobile_nav_list .mobile_nav_item .mobile_nav_sublist .mobile_nav_subitem a {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0.05px;
  }
}
.head_mobile .head_mobile_nav.active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

.index_banner {
  padding-top: 100px;
  position: relative;
  z-index: -2;
  overflow: hidden;
}
.index_banner h1 {
  position: absolute;
  width: 100%;
  color: #fff;
  padding: 40px 40px 0;
  font-weight: 500;
  z-index: 1;
  font-family: "Source Han Serif CN Regular";
  font-size: 44px;
  line-height: 1.35;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_banner h1 {
    font-size: 36px;
    line-height: 1.35;
    letter-spacing: 0.05px;
  }
}
.index_banner img {
  width: 100%;
}

.index_content1 {
  display: flex;
  gap: 20px;
  margin: -13% 40px 40px;
}
.index_content1 > div {
  flex: 1;
  background-color: #012C70;
}
.index_content1 > div .index_content1_info {
  padding: 20px 40px;
}
.index_content1 > div .index_content1_info h3 {
  height: 70px;
  color: #F5F5F5;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Source Han Serif CN Regular";
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content1 > div .index_content1_info h3 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.05px;
  }
}
.index_content1 > div .index_content1_info img {
  width: 100%;
}
.index_content1 > div .index_content1_more {
  background-color: #061C43;
  height: 64px;
  padding: 20px 40px;
}
.index_content1 > div .index_content1_more a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.index_content1 > div .index_content1_more a p {
  font-weight: 700;
  color: #F5F5F5;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content1 > div .index_content1_more a p {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.index_content1 > div .index_content1_more a .index_arrow_Beige {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/static/images/Propertyright-Beige-color.svg) no-repeat center;
  background-size: contain;
  transition: all 0.4s ease;
}
.index_content1 > div .index_content1_more a:hover .index_arrow_Beige {
  transform: translateX(20px);
}

.index_content2 {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  background: url(/static/images/Intro-with-Image.png) no-repeat;
  background-size: cover;
  min-height: 730px;
}
.index_content2 .index_content2_left {
  width: 50%;
}
.index_content2 .index_content2_left span {
  font-family: "Source Han Serif CN Medium";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: #4F4224;
}
.index_content2 .index_content2_left h2 {
  color: #000000;
  font-weight: 600;
  margin: 48px 0 24px;
  font-family: "Source Han Serif CN Regular";
  font-size: 36px;
  line-height: 1.35;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content2 .index_content2_left h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.05px;
  }
}
.index_content2 .index_content2_left > p {
  color: #000000;
  margin-bottom: 48px;
  font-family: "Source Han Serif CN Medium";
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content2 .index_content2_left > p {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0.05px;
  }
}
.index_content2 .index_content2_right {
  width: 40%;
  text-align: right;
}
.index_content2 .index_content2_right img {
  max-height: 570px;
}

.index_content3 {
  background: url(/static/images/sand@1x.png) repeat-x top;
  background-size: contain;
  padding: 40px;
}
.index_content3 .index_content3_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}
.index_content3 .index_content3_head h2 {
  font-weight: 600;
  color: #4F4224;
  font-family: "Source Han Serif CN Regular";
  font-size: 36px;
  line-height: 1.35;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content3 .index_content3_head h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.05px;
  }
}
.index_content3 .index_content3_main {
  display: flex;
  gap: 20px;
}
.index_content3 .index_content3_main div h3 {
  font-weight: 600;
  color: #061C43;
  font-family: "Source Han Serif CN Regular";
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content3 .index_content3_main div h3 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.05px;
  }
}
.index_content3 .index_content3_main div p {
  color: #000000;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content3 .index_content3_main div p {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.05px;
  }
}
.index_content3 .index_content3_main div ul li h3 {
  color: #000000;
  text-decoration: underline;
}
.index_content3 .index_content3_main .index_content3_book {
  width: 67%;
}
.index_content3 .index_content3_main .index_content3_book > h3 {
  margin-bottom: 24px;
}
.index_content3 .index_content3_main .index_content3_book .book_list {
  padding-right: 40px;
  margin-bottom: 12px;
}
.index_content3 .index_content3_main .index_content3_book .book_list .book_item {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid rgba(6, 28, 67, 0.2);
}
.index_content3 .index_content3_main .index_content3_book .book_list .book_item a {
  display: flex;
  gap: 60px;
}
.index_content3 .index_content3_main .index_content3_book .book_list .book_item a .book_item_left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
.index_content3 .index_content3_main .index_content3_book .book_list .book_item a .book_item_left img {
  max-width: none;
  width: 200px;
  min-height: 176px;
}
.index_content3 .index_content3_main .index_content3_book .book_list .book_item a .book_item_right {
  flex-grow: 1;
}
.index_content3 .index_content3_main .index_content3_book .book_list .book_item a .book_item_right span {
  display: inline-block;
  margin: 12px 0;
  font-weight: 700;
  color: #000000;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content3 .index_content3_main .index_content3_book .book_list .book_item a .book_item_right span {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.index_content3 .index_content3_main .index_content3_papers {
  width: 33%;
}
.index_content3 .index_content3_main .index_content3_papers > h3 {
  margin-bottom: 36px;
}
.index_content3 .index_content3_main .index_content3_papers .papers_list {
  margin-bottom: 12px;
}
.index_content3 .index_content3_main .index_content3_papers .papers_list .papers_item {
  padding: 24px 10px;
  border-bottom: 1px solid rgba(6, 28, 67, 0.2);
}
.index_content3 .index_content3_main .index_content3_papers .papers_list .papers_item a span {
  display: inline-block;
  margin: 18px 0 24px;
  font-weight: 700;
  color: #4F4224;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content3 .index_content3_main .index_content3_papers .papers_list .papers_item a span {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.index_content3 .index_content3_main .index_content3_papers .papers_list .papers_item a .papers_item_abstract {
  margin-bottom: 12px;
}
.index_content3 .index_content3_main .index_content3_papers .papers_list .papers_item a .papers_item_auth {
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content3 .index_content3_main .index_content3_papers .papers_list .papers_item a .papers_item_auth {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.05px;
  }
}

.index_content4 {
  padding: 80px 40px;
}
.index_content4 h3 {
  color: #000000;
  font-weight: 600;
  text-align: left;
  margin-bottom: 22px;
  font-family: "Source Han Serif CN Regular";
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content4 h3 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.05px;
  }
}
.index_content4 .index_content4_report {
  display: flex;
  gap: 110px;
}
.index_content4 .index_content4_report .report_left {
  width: 20%;
}
.index_content4 .index_content4_report .report_left p {
  color: #000000;
  text-align: left;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content4 .index_content4_report .report_left p {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.05px;
  }
}
.index_content4 .index_content4_report .report_right {
  flex-grow: 1;
}
.index_content4 .index_content4_report .report_right .report_list {
  margin-bottom: 17px;
}
.index_content4 .index_content4_report .report_right .report_list .report_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 8%;
  border-bottom: 1px solid rgba(6, 28, 67, 0.2);
}
.index_content4 .index_content4_report .report_right .report_list .report_item .report_item_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
}
.index_content4 .index_content4_report .report_right .report_list .report_item .report_item_info a {
  color: #000000;
  text-decoration: underline;
  font-family: "Times New Roman";
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .index_content4 .index_content4_report .report_right .report_list .report_item .report_item_info a {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: 0;
  }
}
.index_content4 .index_content4_report .report_right .report_list .report_item .report_item_info span {
  font-weight: 600;
  color: #4F4224;
  font-family: "Roboto";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .index_content4 .index_content4_report .report_right .report_list .report_item .report_item_info span {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.05px;
  }
}

.index_content5 {
  background-color: #012C70;
  padding: 60px 40px;
}
.index_content5 .index_content5_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}
.index_content5 .index_content5_head h2 {
  font-weight: 500;
  color: #F5F5F5;
  font-family: "Source Han Serif CN Regular";
  font-size: 44px;
  line-height: 1.35;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content5 .index_content5_head h2 {
    font-size: 36px;
    line-height: 1.35;
    letter-spacing: 0.05px;
  }
}
.index_content5 .index_content5_head .index_button1 .index_arrow_Dark {
  transform: rotate(-45deg);
}
.index_content5 .trends_list .flag_top {
  margin-bottom: 64px;
}
.index_content5 .trends_list .flag_top a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.index_content5 .trends_list .flag_top a .trends_item_left {
  width: 42%;
}
.index_content5 .trends_list .flag_top a .trends_item_left h2 {
  height: 215px;
  margin: 24px 0;
  color: #fff;
  text-decoration: underline;
  font-family: "Source Han Serif CN Regular";
  font-size: 36px;
  line-height: 1.35;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content5 .trends_list .flag_top a .trends_item_left h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.05px;
  }
}
.index_content5 .trends_list .flag_top a .trends_item_right {
  width: 58%;
}
.index_content5 .trends_list .flag_top a .trends_item_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_content5 .trends_list .trends_item p {
  color: #F5F5F5;
  font-family: "Source Han Serif CN Medium";
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content5 .trends_list .trends_item p {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0.05px;
  }
}
.index_content5 .trends_list .trends_item a > div {
  margin-bottom: 7px;
}
.index_content5 .trends_list .trends_item a > div > span {
  color: #F9E9C6;
  font-weight: 600;
  text-align: left;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .index_content5 .trends_list .trends_item a > div > span {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.index_content5 .trends_list .trends_item a .trends_item_details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index_content5 .trends_list .trends_item:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.5019607843);
  padding-top: 20px;
}

.footer_link .link_title {
  color: #F5F5F5;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .footer_link .link_title {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.footer_link .link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer_link .link_list .linke_item {
  padding-right: 8px;
}
.footer_link .link_list .linke_item a {
  color: #F5F5F5;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .footer_link .link_list .linke_item a {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.05px;
  }
}
.footer_link .link_list .linke_item:not(:last-child) {
  border-right: 1px solid #F5F5F5;
}

.footer_container {
  background-color: #061C43;
  padding: 40px;
}
.footer_container .footer_content {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.footer_container .footer_content .footer_content_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer_container .footer_content .footer_content_left .footer_logo img {
  max-width: 340px;
}
.footer_container .footer_content .footer_content_right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  column-gap: 20px;
  row-gap: 36px;
}
.footer_container .footer_content .footer_content_right .footer_nav_column > a {
  display: inline-block;
  color: #F5F5F5;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .footer_container .footer_content .footer_content_right .footer_nav_column > a {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}
.footer_container .footer_content .footer_content_right .footer_nav_column .footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer_container .footer_content .footer_content_right .footer_nav_column .footer_nav_list .footer_nav_item a {
  color: #F5F5F5;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .footer_container .footer_content .footer_content_right .footer_nav_column .footer_nav_list .footer_nav_item a {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.05px;
  }
}
.footer_container .footer_copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5019607843);
}
.footer_container .footer_copyright p {
  padding-top: 24px;
  color: #F5F5F5;
  font-family: "Source Han Serif CN Medium";
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05px;
}
@media (max-width: 767px) {
  .footer_container .footer_copyright p {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.05px;
  }
}

.img_pc,
.text_pc {
  display: inline-block !important;
}

.img_mobile,
.bg_mobile,
.text_mobile,
.btn_mobile,
.link_mobile {
  display: none !important;
}

@media (max-width: 1150px) {
  .head_container .head_left {
    gap: 30px;
  }
  .head_container .head_left .head_search input {
    width: 200px;
  }
  .head_container {
    display: none;
  }
  .head_mobile {
    display: block;
  }
  .index_banner {
    padding-top: 64px;
  }
}
@media (max-width: 1023px) {
  .head_lang {
    align-items: center;
    margin-left: auto;
    margin-right: 15px;
  }
  .text_pc,
  .bg_pc {
    display: none !important;
  }
  .text_mobile {
    display: inline-block !important;
  }
  .btn_mobile {
    display: flex !important;
  }
  .link_mobile,
  .bg_mobile {
    display: block !important;
  }
  .text_mobile {
    text-align: left;
  }
  .index_content2 {
    padding: 40px 0 0;
    flex-direction: column;
  }
  .index_content2 .index_content2_left {
    width: 100%;
    padding: 0 15px;
  }
  .index_content2 .index_content2_left h2 {
    margin: 24px 0 24px;
  }
  .index_content2 .index_content2_left > p {
    margin-bottom: 24px;
  }
  .index_content2 .index_content2_right {
    width: 100%;
  }
  .index_content2 .index_content2_right img {
    width: 100%;
    max-height: none;
  }
  .index_content3 {
    padding: 15px;
    margin-bottom: 36px;
  }
  .index_content3 .index_content3_head {
    margin-bottom: 48px;
  }
  .index_content3 .index_content3_head .index_button1 {
    display: none;
  }
  .index_content3 .index_content3_main {
    flex-direction: column;
    gap: 36px;
  }
  .index_content3 .index_content3_main .index_content3_book {
    width: 100%;
  }
  .index_content3 .index_content3_main .index_content3_book .book_list {
    padding-right: 0;
  }
  .index_content3 .index_content3_main .index_content3_book .book_list .book_item {
    padding: 0;
    border-bottom: none;
    margin-bottom: 48px;
  }
  .index_content3 .index_content3_main .index_content3_book .book_list .book_item a {
    flex-direction: column;
    gap: 24px;
  }
  .index_content3 .index_content3_main .index_content3_book .book_list .book_item a .book_item_left {
    justify-content: flex-start;
  }
  .index_content3 .index_content3_main .index_content3_papers {
    width: 100%;
  }
  .index_content3 .index_content3_main .index_content3_papers .papers_list .papers_item {
    padding: 24px 0;
  }
  .index_content4 {
    padding: 20px 15px;
    margin-bottom: 36px;
  }
  .index_content4 h3 {
    color: #061C43;
    margin-bottom: 12px;
    font-family: "Source Han Serif CN Regular";
    font-size: 36px;
    line-height: 1.35;
    letter-spacing: 0.05px;
  }
}
@media (max-width: 1023px) and (max-width: 767px) {
  .index_content4 h3 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.05px;
  }
}
@media (max-width: 1023px) {
  .index_content4 .index_content4_report {
    flex-direction: column;
    gap: 24px;
  }
  .index_content4 .index_content4_report .report_right .report_list {
    display: flex;
    flex-direction: column;
    gap: 17px;
  }
  .index_content4 .index_content4_report .report_right .report_list .report_item {
    padding: 20px 10px 20px 0;
  }
  .index_content4 .index_content4_report .report_right .report_list .report_item .report_item_info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .index_content5 {
    padding: 40px 15px;
  }
  .index_content5 .index_content5_head {
    margin-bottom: 48px;
  }
  .index_content5 .index_content5_head h2 {
    color: #F9E9C6;
  }
  .index_content5 .index_content5_head .index_button1 {
    display: none;
  }
  .index_content5 .trends_list {
    margin-bottom: 48px;
  }
  .index_content5 .trends_list .flag_top a {
    flex-direction: column;
  }
  .index_content5 .trends_list .flag_top a .trends_item_left {
    width: 100%;
  }
  .index_content5 .trends_list .flag_top a .trends_item_left h2 {
    height: auto;
    text-decoration: none;
  }
  .index_content5 .trends_list .flag_top a .trends_item_right {
    width: 100%;
  }
  .index_content5 .trends_list .trends_item a > div {
    margin-bottom: 0;
  }
  .index_content5 .trends_list .trends_item a .trends_item_date {
    margin-bottom: 7px;
  }
  .index_content5 .trends_list .trends_item a .trends_item_details {
    flex-direction: column;
    align-items: flex-start;
  }
  .index_content5 .trends_list .trends_item a .trends_item_details .trends_item_title {
    margin-bottom: 7px;
  }
  .index_content5 .trends_list .trends_item:not(:first-child) {
    margin-bottom: 24px;
  }
  .index_content5 .btn_mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer_container {
    padding: 40px 20px;
  }
  .footer_container .footer_content {
    flex-direction: column;
    gap: 36px;
    margin-bottom: 36px;
  }
  .footer_container .footer_content .footer_content_left .footer_logo img {
    max-width: 215px;
  }
  .footer_container .footer_content .footer_content_left .footer_link {
    display: none;
  }
  .footer_container .footer_content .footer_content_right {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    row-gap: 24px;
  }
  .footer_container .link_mobile {
    margin-bottom: 36px;
  }
  .footer_container .link_mobile .link_list {
    flex-direction: column;
  }
  .footer_container .link_mobile .link_list .linke_item {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .img_pc {
    display: none !important;
  }
  .img_mobile {
    display: inline-block !important;
  }
  .index_content1 {
    flex-direction: column;
    margin: -40% 20px 24px;
  }
}
@media (max-width: 490px) {
  .index_banner h1 {
    padding: 40px 15px 0;
    font-family: "Source Han Serif CN Regular";
    font-size: 36px;
    line-height: 1.35;
    letter-spacing: 0.05px;
  }
}
@media (max-width: 490px) and (max-width: 767px) {
  .index_banner h1 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.05px;
  }
}
@media (max-width: 374px) {
  .index_banner h1 {
    font-size: 26px;
  }
}
@media (max-width: 339px) {
  .index_content1 .index_content1_left .index_content1_info {
    padding: 20px 24px;
  }
}
.index_content4 .index_content4_report .report_right .report_list .report_item .report_item_info a{
    display: -webkit-box;             
    -webkit-box-orient: vertical;        
    -webkit-line-clamp: 1;               
    overflow: hidden;   
    text-overflow: ellipsis;
}
.index_content4 .index_content4_report .report_left p{
    white-space: nowrap;
}
/*# sourceMappingURL=indexNew.css.map */
