@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  height: 100%; /* IE兼容 必须 */
}

body,
button,
input,
select,
textarea {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased !important; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

a {
  text-decoration: none;
}
a:link, a:visited, a:hover {
  color: inherit;
  text-decoration: none;
}

img {
  border: none;
}

input {
  all: unset; /* 移除所有默认样式 */
  box-sizing: border-box; /* 让 padding 和 border 计算在 width 内 */
  font-family: inherit; /* 继承父级字体 */
  font-size: inherit; /* 继承字体大小 */
  appearance: none; /* 移除默认外观（对部分浏览器有效） */
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  padding: 0;
  margin: 0;
}
input:focus {
  outline: none;
}

button {
  all: unset; /* 移除所有默认样式 */
  background: transparent; /* 背景透明 */
  border: none; /* 移除默认边框 */
  font-family: inherit; /* 继承父元素字体 */
  font-size: inherit; /* 继承字体大小 */
  padding: 0; /* 去除内边距 */
  margin: 0; /* 去除外边距 */
  cursor: pointer; /* 使按钮可点击 */
  outline: none; /* 去除焦点框 */
  appearance: none; /* 去除系统样式 */
}

* {
  box-sizing: border-box;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  background: #e8f4fb;
}

.hlx-imit-width {
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .hlx-imit-width {
    padding: 0 12px;
  }
}
.layout__right-sidebar {
  display: flex;
  display: -ms-flexbox;
}
.layout__right-sidebar .left-content {
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
}
.layout__right-sidebar .right-sidebar {
  flex: 0 0 400px;
  -ms-flex: 0 0 400px;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .layout__right-sidebar {
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .layout__right-sidebar .left-content {
    order: 2;
    -ms-flex-order: 2;
    width: 100%;
  }
  .layout__right-sidebar .right-sidebar {
    order: 1;
    -ms-flex-order: 1;
    width: 100%;
    margin-left: 0;
  }
}
.layout__left-sidebar {
  display: flex;
  display: -ms-flexbox;
}
.layout__left-sidebar .left-sidebar {
  flex: 0 0 400px;
  -ms-flex: 0 0 400px;
}
.layout__left-sidebar .right-content {
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .layout__left-sidebar {
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .layout__left-sidebar .left-sidebar {
    width: 100%;
  }
  .layout__left-sidebar .right-content {
    width: 100%;
    margin-left: 0;
  }
}
.wanx-row {
  display: flex;
  display: -ms-flexbox;
}

.wanx-col {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
}

.wanx-flex-1 {
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
}

.wanx-flex-10auto {
  flex: 1 0 auto;
  -ms-flex: 1 0 auto;
}

.wanx-justify-center {
  justify-content: center;
  -ms-flex-pack: center;
}

.wanx-align-center {
  align-items: center;
  -ms-flex-align: center;
}

#hlx-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 18px;
}
#hlx-pagination .jump-container {
  font-size: 18px;
  color: #000;
}
#hlx-pagination .jump-container .jump-page-prefix {
  margin-left: 4px;
}
#hlx-pagination .jump-container .jump-page-input {
  width: 50px;
  height: 34px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0 4px;
  padding: 0 4px;
}
#hlx-pagination .jump-container .jump-page-suffix {
  margin-right: 4px;
}
#hlx-pagination .jump-container .jump-page-button {
  color: white;
  background: #2760b8;
  border-color: #2760b8;
  padding: 4px 6px;
  font-size: 16px;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#hlx-pagination .previous-page,
#hlx-pagination .next-page {
  color: white;
  background: #2760b8;
  border-color: #2760b8;
  padding: 4px 6px;
  font-size: 14px;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  text-align: center;
  margin-right: 10px;
  cursor: pointer;
}
#hlx-pagination .next-page {
  margin-right: 0;
}
#hlx-pagination .page-container {
  display: flex;
  display: -ms-flexbox;
}
#hlx-pagination .page-container .page {
  display: block;
  text-align: center;
  line-height: 24px;
  margin-right: 10px;
  color: #909090;
  cursor: pointer;
}
#hlx-pagination .page-container .page.active {
  color: #000000;
}
#hlx-pagination .page-container .page:hover {
  color: #000000;
}
#hlx-pagination .page-container .page-before-dots,
#hlx-pagination .page-container .page-after-dots {
  line-height: 24px;
  color: #909090;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  #hlx-pagination .page-container {
    display: none;
  }
  #hlx-pagination .jump-container {
    display: none;
  }
}
.hlx-breadcrumbs {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -ms-flex-align: center;
  color: #c80500;
}
.hlx-breadcrumbs .breadcrumb-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-right: 8px;
}
.hlx-breadcrumbs .breadcrumb-item {
  font-size: 18px;
  color: #1c1c1c;
  cursor: pointer;
}
.hlx-breadcrumbs .separator {
  display: block;
  margin: 0 4px;
  color: #1c1c1c;
}
.hlx-breadcrumbs .breadcrumb-item.active {
  color: #2760b8;
}
.hlx-breadcrumbs .breadcrumb-item:hover {
  color: #2760b8;
}

.hlx-component-search {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  overflow: hidden;
}
.hlx-component-search .search-input {
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
}
.component__title_1 {
  font-size: 18px;
  color: #255fb7;
  position: relative;
  padding: 20px 0 20px 12px;
  border-bottom: 1px solid #b5c7e6;
}
.component__title_1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 10px;
  background: #255fb7;
}

.tab-content .tab-row {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
}
.tab-content .tab-row .tab-list {
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  display: flex;
  display: -ms-flexbox;
  overflow-x: auto;
  overflow-y: hidden;
}
.tab-content .tab-row .tab-list .tab-item {
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 1px;
}
.tab-content .tab-row .tab-more {
  flex-shrink: 0;
  margin-left: 10px;
}
.tab-content .content-list .content-item {
  display: none;
}
.tab-content .content-list .content-item.active {
  display: block;
}

.tab-content__home-style .tab-row {
  position: relative;
  border-bottom: 1px solid #b5c7e6;
  padding-left: 12px;
}
.tab-content__home-style .tab-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 10px;
  background: #255fb7;
}
.tab-content__home-style .tab-row .tab-item {
  display: block;
  font-size: 18px;
  color: #3b3b3b;
  height: 57px;
  line-height: 57px;
  padding: 0 12px;
  font-weight: bold;
}
.tab-content__home-style .tab-row .tab-item.active {
  color: #ffffff;
  background: #2760b8;
  border-radius: 10px 10px 0px 0px;
}
.tab-content__home-style .tab-more {
  color: #2760b8;
  font-size: 16px;
}

.tab-content__home-news-style .tab-row .tab-list .tab-item {
  line-height: 60px;
  margin: 0 20px;
  font-size: 26px;
  color: #878787;
  font-weight: bold;
  position: relative;
}
.tab-content__home-news-style .tab-row .tab-list .tab-item.active {
  color: #2760b8;
}
.tab-content__home-news-style .tab-row .tab-list .tab-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #2760b8;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .tab-content__home-news-style .tab-row .tab-list .tab-item {
    margin-left: 60px;
  }
  .tab-content__home-news-style .tab-row .tab-list .tab-item:first-of-type {
    margin-left: 20px;
  }
}
.tab-content__home-news-style .tab-row .tab-more {
  font-size: 16px;
}

.tab-content_home-news-bottom-line {
  height: 1px;
  background: #dbdbdb;
  position: relative;
  transform: translateY(-2px);
}
.tab-content_home-news-bottom-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 3px;
  height: 3px;
  background: #2760b8;
}
.tab-content_home-news-bottom-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -1px;
  width: 3px;
  height: 3px;
  background: #2760b8;
}

.home-list-item {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  position: relative;
  padding-left: 16px;
}
.home-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 6px;
  background: url("../images/icon/list-item-icon.png") center center/100% 100% no-repeat;
}
.home-list-item .title {
  display: block;
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 18px;
  color: #3b3b3b;
}
.home-list-item .date {
  margin-left: 100px;
  font-size: 18px;
  color: #3b3b3b;
}
.home-list-item .date::before {
  content: "[";
}
.home-list-item .date::after {
  content: "]";
}
@media (max-width: 768px) {
  .home-list-item .date {
    margin-left: 24px;
  }
}

.hlx__list-item {
  display: flex;
  display: -ms-flexbox;
  align-items: flex-start;
  -ms-flex-align: start;
  padding: 20px 0;
  border-bottom: 1px solid #dedede;
}
@media (max-width: 768px) {
  .hlx__list-item {
    padding: 15px 0;
  }
}
.hlx__list-item .date-box {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid #dedede;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  justify-content: space-evenly;
  -ms-flex-pack: justify;
  align-items: center;
  -ms-flex-align: center;
}
.hlx__list-item .date-box .day {
  font-size: 24px;
  font-weight: bold;
  color: #2760b8;
  line-height: 1;
}
.hlx__list-item .date-box .month-year {
  font-size: 12px;
  color: #888888;
  line-height: 1;
}
.hlx__list-item .content {
  margin-left: 20px;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  width: 0;
  min-height: 64px;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  justify-content: space-evenly;
  -ms-flex-pack: justify;
  align-items: flex-start;
  -ms-flex-align: start;
}
@media (max-width: 768px) {
  .hlx__list-item .content {
    margin-left: 12px;
  }
}
.hlx__list-item .content .title {
  display: block;
  width: 100%;
  font-size: 20px;
  color: #1c1c1c;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .hlx__list-item .content .title {
    font-size: 20px;
  }
}
.hlx__list-item .content .summary {
  display: block;
  width: 100%;
  font-size: 14px;
  color: #888888;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hlx__list-simple-item {
  display: block;
  padding: 20px 40px;
  font-size: 24px;
  color: #1c1c1c;
  border-bottom: 1px solid #dedede;
}

.header-box {
  position: relative;
}
.header-box .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1300px;
  object-fit: cover;
  background-image: linear-gradient(to bottom, transparent 60%, #e8f4fb), url("../images/bg/home.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .header-box .logo-name-row {
    padding: 12px 20px;
  }
}
.header-box .logo-name-row .logo-name-link {
  display: block;
  height: 110px;
  max-width: 100%;
}

.header-box .topmost-row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  display: -ms-flexbox;
  -ms-flex-pack: justify;
}
@media screen and (max-width: 768px) {
  .header-box .topmost-row {
    flex-direction: column;
    -ms-flex-direction: column;
    padding: 20px;
  }
}
.header-box .topmost-row .top-links {
  color: #fff;
}
.header-box .topmost-row .top-links a {
  font-size: 16px;
  color: #fff;
}
.header-box .topmost-row .top-links .separator {
  color: #fff;
}
.header-box .topmost-row .search-box {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .header-box .topmost-row .search-box {
    width: 100%;
    margin-top: 20px;
  }
}

.style__home-search {
  background-color: #d2e5f9;
  border-radius: 10px;
  padding: 4px;
  height: 50px;
}
.style__home-search .search-input {
  font-size: 16px;
  line-height: 50px;
  padding: 0 12px;
}
.style__home-search .search-input::placeholder {
  color: #81a6db;
  font-weight: 600;
}
.style__home-search .search-button {
  background-color: #396abd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  height: 100%;
  width: 50px;
}
.style__home-search .search-button .icon-search {
  width: 24px;
  height: 24px;
  background: url("../images/icon/search.png") center center/100% 100% no-repeat;
}

.navigation-bar-box {
  height: 60px;
  background: #2760b8;
  margin: 0 auto;
}
@media screen and (min-width: 1440px) {
  .navigation-bar-box {
    position: relative;
    max-width: 1440px;
  }
  .navigation-bar-box:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 10px solid #193b6f;
    border-right: 10px solid #193b6f;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
  }
  .navigation-bar-box:after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid #193b6f;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #193b6f;
  }
}
@media screen and (max-width: 768px) {
  .navigation-bar-box {
    max-width: 100%;
    width: 100%;
  }
}

.navigation-bar-list {
  background: #2760b8;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: space-evenly;
  -ms-flex-pack: distribute;
}
.navigation-bar-list .nav-item {
  color: #ffffff;
  opacity: 0.8;
  user-select: none;
  cursor: pointer;
  padding: 12px 16px;
  position: relative;
}
.navigation-bar-list .nav-item a {
  display: block;
  color: inherit;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
}
.navigation-bar-list .nav-item.active {
  font-weight: bold;
  opacity: 1;
}
.navigation-bar-list .nav-toggle {
  display: none;
  background: none;
  border: none;
  position: relative;
}
.navigation-bar-list .nav-toggle .nav-toggle-line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fdfffe;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.navigation-bar-list .nav-toggle .nav-toggle-line::before, .navigation-bar-list .nav-toggle .nav-toggle-line::after {
  position: absolute;
  content: " ";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fdfffe;
}
.navigation-bar-list .nav-toggle .nav-toggle-line::before {
  top: -8px;
}
.navigation-bar-list .nav-toggle .nav-toggle-line::after {
  top: 8px;
}
.navigation-bar-list .display-none {
  display: none;
}

@media screen and (max-width: 768px) {
  .navigation-bar-box {
    position: relative;
  }
  .navigation-bar-list {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    height: 60px;
  }
  .navigation-bar-list .nav-item {
    padding: 0;
    box-sizing: border-box;
    width: 25%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -ms-flex-pack: center;
  }
  .navigation-bar-list .nav-item a {
    font-size: 15px;
  }
  .navigation-bar-list .nav-item.active::before {
    content: "";
    position: absolute;
    bottom: 4px;
  }
  .navigation-bar-list.open {
    height: 120px;
  }
  .display-none {
    display: block;
  }
}