@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 {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color: #333;
  font: 14px/180% "Microsoft YaHei", "微软雅黑", Arial, SimSun, Tahoma, Helvetica, sans-serif;
}
@media screen and (min-width: 768px) {
  body {
    min-width: max-content;
  }
}

.hlx-body {
  padding-top: 15px;
}

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

@media screen and (max-width: 768px) {
  .hlx-imit-width {
    padding: 0 12px;
  }
}
.layout__listpage-3-parts {
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .layout__listpage-3-parts {
    flex-direction: column;
    -ms-flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .layout__listpage-3-parts .left-part {
    width: 100%;
  }
}
.layout__listpage-3-parts .middle-part {
  width: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}
@media screen and (max-width: 768px) {
  .layout__listpage-3-parts .middle-part {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .layout__listpage-3-parts .right-part {
    width: 240px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .layout__listpage-3-parts .right-part {
    width: 100%;
  }
}

.layout__left-right-equal {
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .layout__left-right-equal {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.layout__left-right-equal .left-part,
.layout__left-right-equal .right-part {
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
}
@media screen and (max-width: 768px) {
  .layout__left-right-equal .left-part,
  .layout__left-right-equal .right-part {
    width: 100%;
  }
}

#hlx-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px 0;
  font-size: 12px;
}
#hlx-pagination .base, #hlx-pagination .page-container .page-before-dots,
#hlx-pagination .page-container .page-after-dots, #hlx-pagination .page-container .page, #hlx-pagination .previous-page,
#hlx-pagination .next-page, #hlx-pagination .jump-container .jump-page-button, #hlx-pagination .jump-container .jump-page-input {
  border: 1px solid #c5c5c5;
  padding: 3px 10px;
  color: #4e4e4e;
  font-size: 12px;
  line-height: 1.5;
}
#hlx-pagination .active, #hlx-pagination .page-container .page:hover, #hlx-pagination .page-container .page.active, #hlx-pagination .previous-page:hover,
#hlx-pagination .next-page:hover, #hlx-pagination .jump-container .jump-page-button:hover {
  border-color: #e23838;
  background-color: #e23838;
  color: white;
}
#hlx-pagination .jump-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#hlx-pagination .jump-container .jump-page-prefix {
  margin-left: 4px;
}
#hlx-pagination .jump-container .jump-page-input {
  box-sizing: border-box;
  width: 50px;
  margin: 0 4px;
}
#hlx-pagination .jump-container .jump-page-suffix {
  margin-right: 4px;
}
#hlx-pagination .jump-container .jump-page-button {
  cursor: pointer;
  width: auto;
  margin: 0;
}
#hlx-pagination .previous-page,
#hlx-pagination .next-page {
  margin-right: 3px;
  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;
  margin-right: 3px;
  cursor: pointer;
}
#hlx-pagination .page-container .page-before-dots,
#hlx-pagination .page-container .page-after-dots {
  cursor: no-drop;
  margin-right: 3px;
}

@media screen and (max-width: 768px) {
  #hlx-pagination .page-container {
    display: none;
  }
  #hlx-pagination .jump-container {
    display: none;
  }
}
.hlx-breadcrumbs {
  display: -ms-flexbox;
  display: flex;
  background-color: #fafafa;
  border: 1px solid #ececec;
  font-size: 14px;
  color: #999;
  line-height: 43px;
}
.hlx-breadcrumbs .breadcrumb-icon {
  width: 30px;
  height: 43px;
  background: url("../images/icon/base.png") 20px -61px no-repeat;
}
.hlx-breadcrumbs .breadcrumb-items {
  width: 0;
  flex: 1 0 0%;
  -ms-flex: 1 0 0%;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 10px 0;
  line-height: 20px;
}
.hlx-breadcrumbs .breadcrumb-items .breadcrumb-item {
  cursor: pointer;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
}
.hlx-breadcrumbs .breadcrumb-items .separator {
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.hlx-breadcrumbs .breadcrumb-items .breadcrumb-item:hover {
  color: #c00;
}

@media screen and (min-width: 768px) {
  .side-navigation-box {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .side-navigation-box {
    width: 100%;
    margin-bottom: 12px;
  }
}
.side-navigation-box .current-column {
  display: block;
  padding: 11px 5px;
  line-height: 23px;
  background-color: #c62626;
  text-align: center;
  font-size: 18px;
  color: white;
}
@media screen and (max-width: 768px) {
  .side-navigation-box .current-column {
    height: 45px;
  }
}
.side-navigation-box .column-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.side-navigation-box .column-list .column-item {
  display: block;
  padding: 8px 5px;
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  color: #333;
  text-decoration: none;
  outline: none;
  border: 1px solid #ececec;
}
@media screen and (min-width: 768px) {
  .side-navigation-box .column-list .column-item {
    border-top: 1px solid transparent;
  }
}
.side-navigation-box .column-list .column-item:hover {
  color: white;
  background-color: #e23838;
  border-color: #e23838;
}
.side-navigation-box .column-list .column-item.active {
  color: white;
  background-color: #e23838;
  border-color: #e23838;
}

.hot-line {
  height: 2px;
  background: #333 url("../images/bg/side-box-top-red-line.jpg") left top no-repeat;
}

.side-news-box {
  background-color: #f7f7f7;
}
.side-news-box .top-line {
  height: 2px;
  background: #333 url("../images/bg/side-box-top-red-line.jpg") left top no-repeat;
}
.side-news-box .border-view {
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
}
.side-news-box .title {
  padding-left: 14px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 42px;
}
.side-news-box .title .color-red {
  color: #e23838;
}
.side-news-box .news-list {
  padding: 0 10px 20px;
}
.side-news-box .news-list .news-item {
  display: block;
  padding-left: 10px;
  background: url("../images/icon/base.png") left -68px no-repeat;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 30px;
  line-height: 30px;
}
.side-news-box .news-list .news-item:hover {
  color: #e23838;
}
.side-news-box .no-data-item {
  padding: 0px 10px 20px;
  color: #999;
  font-size: 14px;
}

.hlx-list-page-item {
  display: -ms-flexbox;
  display: flex;
}
.hlx-list-page-item .cover-image-view {
  width: 160px;
  height: 120px;
}
.hlx-list-page-item .cover-image-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hlx-list-page-item .content-view {
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .hlx-list-page-item .content-view {
    padding-left: 12px;
  }
}
.hlx-list-page-item .content-view .title {
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.hlx-list-page-item .content-view .title:hover {
  color: #e23838;
}
.hlx-list-page-item .content-view .content {
  margin-top: 10px;
  font-size: 12px;
  line-height: 20px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 40px;
}
.hlx-list-page-item .content-view .content.x3 {
  -webkit-line-clamp: 3;
  height: 60px;
}
.hlx-list-page-item .content-view .date {
  margin-top: 15px;
  line-height: 24px;
  font-size: 12px;
  color: #666;
}

.hlx-dot-item {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  position: relative;
}
.hlx-dot-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #d9d9d9;
}
.hlx-dot-item .title {
  margin-left: 12px;
  display: block;
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  color: #333;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hlx-dot-item .title:hover {
  color: #e23838;
  font-weight: bold;
}
.hlx-dot-item .date {
  font-size: 12px;
  color: #999;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .hlx-dot-item .date {
    margin-left: 10px;
  }
}

.hlx-triangle-item {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  padding-left: 10px;
  position: relative;
}
.hlx-triangle-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 8px;
  background: url("../images/icon/base.png") left -78px no-repeat;
}
.hlx-triangle-item .title {
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  display: block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hlx-triangle-item .title:hover {
  color: #c00;
  text-decoration: none;
}

.index__column-title__1 {
  display: flex;
  display: -ms-flexbox;
  border-bottom: 1px solid #c62626;
}
.index__column-title__1 .title-text {
  display: block;
  height: 36px;
  line-height: 36px;
  padding: 0 18px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #c62626;
}

.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;
}

.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;
}

.header-box {
  background: url("../images/bg/header-bg.jpg") center top no-repeat;
}
.header-box .header-top-box {
  min-height: 252px;
}
.header-box .header-top-box .top-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  -ms-flex-align: center;
}
@media screen and (max-width: 768px) {
  .header-box .header-top-box .top-row {
    flex-direction: column;
    -ms-flex-direction: column;
    padding-top: 20px;
  }
}
.header-box .header-top-box .top-row .welcome {
  font-size: 12px;
}
.header-box .header-top-box .top-row .user-panel {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
}
@media (max-width: 768px) {
  .header-box .header-top-box .top-row .user-panel {
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .header-box .header-top-box .top-row .user-panel .h5-hide {
    display: none;
  }
}
.header-box .header-top-box .top-row .user-panel .row-item {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  height: 32px;
  font-size: 12px;
}
.header-box .header-top-box .top-row .user-panel .user-panel-button:hover,
.header-box .header-top-box .top-row .user-panel .user-panel-link:hover,
.header-box .header-top-box .top-row .user-panel .tooltip-content:hover {
  color: #c00;
}
.header-box .header-top-box .top-row .user-panel .user-panel-button {
  background: none;
  border: none;
  cursor: pointer;
}
.header-box .header-top-box .top-row .user-panel .user-panel-tooltip {
  position: relative;
}
.header-box .header-top-box .top-row .user-panel .user-panel-tooltip .tooltip-content-box {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header-box .header-top-box .top-row .user-panel .user-panel-tooltip:hover .tooltip-content-box {
  display: block;
}
.header-box .header-top-box .top-row .user-panel .separator {
  color: #c7c7c7;
  margin: 0 8px;
}
.header-box .header-top-box .logo-and-search .logo-link {
  display: block;
  margin: 0 0 0 354px;
}
@media screen and (max-width: 768px) {
  .header-box .header-top-box .logo-and-search .logo-link {
    margin: 20px 0;
    display: flex;
    justify-content: center;
  }
}
.header-box .header-top-box .logo-and-search .logo-link .logo-img {
  width: 320px;
  height: 141px;
  object-fit: contain;
}
.header-box .header-top-box .logo-and-search .search-box {
  display: -ms-flexbox;
  display: flex;
  justify-content: end;
  -ms-flex-pack: end;
}
@media screen and (max-width: 768px) {
  .header-box .header-top-box .logo-and-search .search-box {
    justify-content: center;
    -ms-flex-pack: center;
  }
}

.at-home .header-box .header-top-box {
  min-height: 382px;
}
.at-home .header-box .header-top-box .logo-and-search .logo-link {
  margin: 74px 0 0 354px;
}
@media screen and (max-width: 768px) {
  .at-home .header-box .header-top-box .logo-and-search .logo-link {
    margin: 20px 0;
  }
}
.at-home .header-box .header-top-box .logo-and-search .logo-link .logo-img {
  width: 420px;
  height: 185px;
}
@media screen and (max-width: 768px) {
  .at-home .header-box .header-top-box .logo-and-search .logo-link .logo-img {
    width: 100%;
    height: auto;
  }
}

.header-navigation-box {
  background-color: #c62626;
}
.header-navigation-box .inner-box {
  display: flex;
  display: -ms-flexbox;
}
.header-navigation-box .inner-box .navigation-scroll-link-box {
  margin-left: 25px;
  width: 0;
  flex: 1;
  -ms-flex: 1 0 0%;
  overflow: hidden;
  position: relative;
  display: flex;
  display: -ms-flexbox;
}
.header-navigation-box .inner-box .navigation-scroll-link-box .navigation-scroll-links-wrapper {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  height: 50px;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.header-navigation-box .inner-box .navigation-scroll-link-box .navigation-scroll-links-wrapper .navigation-scroll-link-item {
  flex-shrink: 0;
  -ms-flex-negative: 0;
  font-size: 14px;
  color: #ffd8d8;
  margin-right: 15px;
  padding-left: 10px;
  font-weight: 600;
  background: url("../images/icon/dot.png") left center no-repeat;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header-navigation-box .inner-box .navigation-scroll-link-box .navigation-scroll-links-wrapper .navigation-scroll-link-item:hover {
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .header-navigation-box .inner-box {
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .header-navigation-box .inner-box .navigation-scroll-link-box {
    width: 100%;
    margin-left: 0;
    order: 1;
  }
  .header-navigation-box .inner-box .navigation-scroll-link-box .navigation-scroll-links-wrapper {
    height: 32px;
  }
  .header-navigation-box .inner-box .header-navigation {
    order: 2;
  }
}

.header-navigation {
  display: flex;
  display: -ms-flexbox;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .header-navigation {
    position: relative;
  }
}
.header-navigation .header-navigation-item {
  border-right: 1px solid #d14a4a;
}
@media screen and (min-width: 768px) {
  .header-navigation .header-navigation-item {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .header-navigation .header-navigation-item {
    width: 0;
    flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    border-right: none;
  }
}
@media screen and (min-width: 768px) {
  .header-navigation .header-navigation-item:hover, .header-navigation .header-navigation-item.active {
    background: #9c0c03;
  }
}
.header-navigation .header-navigation-item .navigation-text {
  display: block;
  width: 165px;
  font-size: 16px;
  font-size: 18px;
  color: white;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-navigation .header-navigation-item .navigation-text {
    width: 100%;
  }
}
.header-navigation .header-navigation-item .navigation-text.active + .sub-item-box {
  max-height: 200px;
}
.header-navigation .header-navigation-item .sub-item-box {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: absolute;
  top: 50px;
  left: 0;
  width: calc(100% + 1px);
  background-color: #c62626;
  z-index: 1000;
}
.header-navigation .header-navigation-item .sub-item-box .sub-item {
  display: block;
  width: 100%;
  font-size: 14px;
  padding: 4px 5px;
  line-height: 24px;
  text-align: center;
  color: white;
  text-decoration: none;
  outline: none;
  background-color: #9c0c03;
}
.header-navigation .header-navigation-item .sub-item-box .sub-item:hover {
  background-color: #c62626;
}
.header-navigation .header-navigation-item .sub-item-box .h5-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-navigation .header-navigation-item .sub-item-box .h5-show {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header-navigation .header-navigation-item:hover .sub-item-box {
    max-height: 200px;
  }
}

/* 头部搜索 */
.hlx-component-search {
  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%;
}
.style__header-search {
  width: 327px;
}
@media screen and (max-width: 768px) {
  .style__header-search {
    width: 100%;
  }
}
.style__header-search .search-input {
  border: 1px solid #ccc;
  text-indent: 10px;
  font-size: 14px;
  color: #666;
  background-color: #fff;
  height: 35px;
  line-height: 35px;
}
.style__header-search .search-input::placeholder {
  color: #666;
  font-weight: 500;
}
.style__header-search .search-button {
  width: 47px;
  height: 35px;
  line-height: 35px;
  background: #ff8500 url("../images/icon/search.png") center center no-repeat;
  border: none;
  outline: none;
  cursor: pointer;
}