@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

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

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

.hlx-body {
  position: relative;
  background-color: white;
}

@media screen and (max-width: 768px) {
  .hlx-body {
    padding: 0 12px;
  }
}
.hlx-imit-width {
  max-width: 1400px;
  margin: 0 auto;
}

.wanx-row {
  display: flex;
  display: -ms-flexbox;
}

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

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

.hlx-header {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}
.hlx-header .navbar-inner {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  height: 90px;
}
.hlx-header .navbar-inner .logo img {
  height: 52px;
}
.hlx-header .navbar-inner .menu-toggle {
  display: none;
  background: url("../images/icon/menu-3-line.svg") no-repeat center center;
  background-size: 100% 100%;
  width: 24px;
  height: 24px;
  border: none;
  outline: none;
  flex-shrink: 0;
  -ms-flex-shrink: 0;
  cursor: pointer;
}
.hlx-header .navbar-inner .search-btn {
  background: url("../images/icon/search.png") no-repeat center center;
  background-size: 100% 100%;
  width: 22px;
  height: 22px;
  border: none;
  outline: none;
  flex-shrink: 0;
  -ms-flex-shrink: 0;
  cursor: pointer;
  margin-left: 16px;
}
.hlx-header .navbar-inner .nav-links {
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}
.hlx-header .navbar-inner .nav-links .nav-item {
  position: relative;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
}
.hlx-header .navbar-inner .nav-links .nav-item a {
  display: block;
  color: white;
  padding: 16px;
  text-decoration: none;
}
.hlx-header .navbar-inner .nav-links .nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}
.hlx-header .navbar-inner .nav-links .nav-item .dropdown a {
  display: block;
  color: white;
  padding: 16px 16px;
  text-decoration: none;
  white-space: nowrap;
}
.hlx-header .navbar-inner .nav-links .nav-item .dropdown a:first-of-type {
  padding-top: 32px;
}
.hlx-header .navbar-inner .nav-links .nav-item .dropdown a:last-of-type {
  padding-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .hlx-header .navbar-inner .logo {
    padding-right: 100px;
  }
  .hlx-header .navbar-inner .nav-links .nav-item {
    height: 90px;
  }
  .hlx-header .navbar-inner .nav-links .nav-item .nav-item-link {
    padding: 12px 16px;
  }
  .hlx-header .navbar-inner .nav-links .nav-item:hover .dropdown {
    display: block;
  }
  .hlx-header .navbar-inner .nav-links .nav-item a:hover {
    color: #932913;
  }
  .hlx-header .navbar-inner .nav-links .nav-item .dropdown {
    border-top: 2px solid #932913;
  }
  .hlx-header .navbar-inner .nav-links .nav-item .dropdown a {
    text-align: center;
  }
  .hlx-header .navbar-inner .nav-links .nav-item .dropdown a:hover {
    color: #932913;
    border-bottom: none;
  }
  .hlx-header .navbar-inner .nav-links .nav-item .item-unit-overview {
    left: -8px;
  }
  .hlx-header .navbar-inner .nav-links .nav-item.active .nav-item-link {
    border-bottom: 2px solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .hlx-header {
    position: relative;
  }
  .hlx-header .navbar-inner {
    position: static;
  }
  .hlx-header .navbar-inner .logo {
    flex: 1 0 0;
    -ms-flex: 1 0 0%;
  }
  .hlx-header .navbar-inner .menu-toggle {
    display: block;
  }
  .hlx-header .navbar-inner .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
  }
  .hlx-header .navbar-inner .nav-links .nav-item {
    position: static;
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
    -ms-flex-align: center;
  }
  .hlx-header .navbar-inner .nav-links .nav-item a {
    padding: 8px;
  }
  .hlx-header .navbar-inner .nav-links .nav-item .dropdown {
    display: none;
    position: static;
    background-color: rgba(68, 68, 68, 0.8274509804);
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
  .hlx-header .navbar-inner .nav-links .nav-item .dropdown a {
    padding: 8px;
  }
  .hlx-header .navbar-inner .nav-links .nav-item .dropdown a:first-of-type {
    padding-top: 8px;
  }
  .hlx-header .navbar-inner .nav-links .nav-item .dropdown a:last-of-type {
    padding-bottom: 8px;
  }
  .hlx-header .navbar-inner .nav-links .nav-item.open .dropdown {
    display: block;
  }
  .hlx-header .navbar-inner .nav-links.active {
    display: flex;
    display: -ms-flexbox;
  }
}
.kg-absolute-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.bg-header-bg-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .bg-header-bg-img {
    height: 250px;
  }
}
.home-title-bar {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  position: relative;
  padding-left: 30px;
  min-height: 60px;
}
.home-title-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 60px;
  background-color: #932913;
  border-radius: 999px;
}
.home-title-bar .title-text {
  font-size: 30px;
  font-weight: 500;
  color: #333;
  margin: 0;
  flex-grow: 1;
}
.home-title-bar .more-link {
  font-size: 16px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}
.home-title-bar .more-link:hover {
  color: #666;
}

@media screen and (max-width: 768px) {
  .home-title-bar {
    min-height: 40px;
    padding-left: 24px;
  }
  .home-title-bar::before {
    height: 40px;
  }
  .home-title-bar .title-text {
    font-size: 24px;
  }
}
.home-list-item {
  display: flex;
  display: -ms-flexbox;
  color: #4b4b4b;
  font-size: 20px;
}
.home-list-item .title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 4px;
  margin-right: 60px;
}
.home-list-item .title:hover {
  color: #932913;
}
.home-list-item .date {
  flex-shrink: 0;
}

.box-1 {
  margin-top: 100px;
}
.box-1 .home-title-bar {
  margin: 12px 0;
}
.box-1 .margin-left {
  margin-left: 70px;
}
.box-1 .home-list-item {
  margin-top: 30px;
}

.box-2 .box-2-content-list {
  margin-top: 100px;
}
.box-2 .box-2-content-list .right-list {
  margin-left: 88px;
}
.box-2 .box-2-content-list {
  position: relative;
  overflow: hidden;
}
.box-2 .box-2-content-list .box-2-content-list-wrapper {
  display: flex;
  display: -ms-flexbox;
  transition: transform 0.3s ease;
}
.box-2 .box-2-content-list .box-2-content-list-wrapper .box-2-content {
  width: 100%;
  flex-shrink: 0;
}
.box-2 .mobile-more-link {
  display: none;
}

@media screen and (max-width: 768px) {
  .box-1 {
    margin-top: 0;
  }
  .box-1 .home-title-bar {
    margin-top: 28px;
    margin-bottom: 4px;
  }
  .box-1 .home-list-item {
    margin-top: 12px;
  }
}
.box-2-title {
  display: flex;
  display: -ms-flexbox;
}
.box-2-title .switch-tab {
  display: flex;
  display: -ms-flexbox;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  width: 0;
  justify-content: center;
}
.box-2-title .switch-tab .tab-item {
  font-size: 20px;
  color: #717171;
  cursor: pointer;
  min-width: 168px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: relative;
}
.box-2-title .switch-tab .tab-item.active {
  color: #8e2c18;
  font-weight: 500;
}
.box-2-title .switch-tab .tab-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #8e2c18;
  border-radius: 999px;
  transform: translateY(-8px);
}
.box-2-title .more-link {
  font-size: 16px;
  font-weight: normal;
  color: #999;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -ms-flex-pack: center;
  cursor: pointer;
}
.box-2-title .more-link:hover {
  color: #666;
}

.box-2-content {
  display: flex;
  display: -ms-flexbox;
}

.box-2-content .left-swiper {
  position: relative;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -ms-flex-pack: center;
  padding-top: 17px;
}
.box-2-content .left-swiper .swiper-next {
  width: 38px;
  height: 38px;
  background: url("../images/icon/home-right.png") no-repeat center center;
  background-size: 100% 100%;
  cursor: pointer;
  flex-shrink: 0;
}
.box-2-content .left-swiper .swiper-prev {
  width: 38px;
  height: 38px;
  background: url("../images/icon/home-left.png") no-repeat center center;
  background-size: 100% 100%;
  cursor: pointer;
  flex-shrink: 0;
}
.box-2-content .left-swiper .swiper-content {
  width: 671px;
  height: 658px;
  margin: 0 23px;
  z-index: 10;
  overflow: hidden;
}
.box-2-content .left-swiper .swiper-content .slick-item {
  width: 671px;
  height: 658px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -ms-flex-pack: center;
  overflow: hidden;
}
.box-2-content .left-swiper .swiper-content .slick-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.box-2-content .right-list {
  width: 0;
  flex: 1 0 0%;
  -ms-flex: 1 0 0%;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  justify-content: center;
  -ms-flex-pack: center;
}
.box-2-content .right-list .swiper-into-item {
  margin-top: 70px;
  display: block;
}
.box-2-content .right-list .swiper-into-item .title {
  font-size: 26px;
  font-weight: bold;
  color: #333333;
}
.box-2-content .right-list .swiper-into-item .desc {
  font-size: 20px;
  font-weight: normal;
  color: #4b4b4b;
  margin-top: 23px;
  line-height: 32px;
  max-height: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.box-2-content .right-list .swiper-into-item.active .title {
  color: #8e2c18;
}
.box-2-content .right-list .swiper-into-item:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .box-1 {
    flex-direction: column;
    -ms-flex-direction: column;
    padding: 0 12px;
  }
  .box-1 .margin-left {
    margin-left: 0;
  }
  .box-1 .wanx-flex-1 {
    width: 100%;
  }
  .box-2 {
    padding: 0 12px;
  }
  .box-2 .box-2-title {
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .box-2 .box-2-title .switch-tab {
    margin-top: 24px;
    width: 100%;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
  .box-2 .box-2-title .switch-tab .tab-item {
    height: 60px;
    min-width: 100px;
  }
  .box-2 .box-2-title .more-link {
    display: none;
  }
  .box-2 .box-2-content-list {
    margin-top: 24px;
  }
  .box-2 .box-2-content-list .right-list {
    margin-top: 24px;
    margin-left: 0px;
    width: 100%;
  }
  .box-2 .mobile-more-link {
    display: block;
    text-align: center;
    font-size: 20px;
    color: #999;
    cursor: pointer;
  }
  .box-2 .mobile-more-link:hover {
    color: #666;
  }
  .box-2-content {
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .box-2-content .left-swiper {
    min-height: 0px;
    padding-top: 0px;
  }
  .box-2-content .left-swiper .swiper-bg-block {
    width: 100%;
    height: 320px;
    display: none;
  }
  .box-2-content .left-swiper .swiper-content {
    width: 100%;
    height: 240px;
    margin: 0 12px;
  }
  .box-2-content .left-swiper .swiper-content .slick-item {
    width: 100%;
    height: 240px;
  }
  .box-2-content .right-list .swiper-into-item .title {
    font-size: 24px;
  }
  .box-2-content .right-list .swiper-into-item .desc {
    margin-top: 8px;
    font-size: 16px;
  }
}
.news-list-item {
  display: flex;
  display: -ms-flexbox;
}
.news-list-item .cover {
  width: 320px;
  height: 180px;
  background-color: #f0f0f0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
  background-image: url("../images/logo/cover.png");
  background-size: 96px;
  background-position: center center;
  background-repeat: no-repeat;
}
.news-list-item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-list-item .info {
  width: 0;
  flex: 1;
  min-height: 100%;
  margin-left: 30px;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  justify-content: space-between;
  -ms-justify-content: space-between;
}
.news-list-item .info .title {
  color: #333333;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list-item .info .summary {
  font-size: 14px;
  color: #333333;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 60px;
}
.news-list-item .info .date {
  font-size: 14px;
  color: #333333;
}

.news-list-50-item {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
}
.news-list-50-item .title {
  font-size: 16px;
  color: #333333;
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 12px;
}
.news-list-50-item .date {
  font-size: 14px;
  color: #aaa9a9;
}

.news-list-50-item-line {
  height: 1px;
  width: 100%;
  background: repeating-linear-gradient(to right, #dbc6c1 0, #dbc6c1 2px, transparent 2px, transparent 3px);
}

@media screen and (max-width: 768px) {
  .news-list-item .cover {
    width: 160px;
    height: 90px;
  }
  .news-list-item .info {
    margin-left: 12px;
  }
  .news-list-item .info .summary {
    line-height: 16px;
    max-height: 32px;
    -webkit-line-clamp: 2;
  }
}
.page-detail .detail-title {
  font-size: 40px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  line-height: 1.5;
}
.page-detail .detail-line {
  width: 100%;
  border-top: 1px dashed #932913;
  margin: 20px 0;
}
.page-detail .detail-info {
  color: #7c7c7c;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-detail .detail-info .detail-info-item {
  font-size: 18px;
}
.page-detail .video-content {
  margin-top: 20px;
  text-align: center;
}
.page-detail .video-content video {
  max-width: 100%;
}
.page-detail .detail-content {
  margin-top: 20px;
  font-size: 24px;
  color: #2b2b2b;
  line-height: 1.5;
  padding: 0 40px;
}
.page-detail .detail-content img,
.page-detail .detail-content video {
  max-width: 100%;
}
.page-detail .detail-content img {
  cursor: pointer;
}
.page-detail .detail-content p {
  text-indent: 2em;
}

.column-show-news-content {
  font-size: 16px;
  color: #2b2b2b;
  line-height: 1.5;
}
.column-show-news-content img,
.column-show-news-content video {
  max-width: 100%;
}
.column-show-news-content p {
  text-indent: 2em;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .page-detail .detail-title {
    font-size: 24px;
  }
  .page-detail .detail-info {
    font-size: 14px;
  }
  .page-detail .detail-content {
    padding: 0 10px;
  }
}
.hlx-breadcrumbs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  line-height: 1.5;
  position: relative;
  padding: 20px 0;
  font-size: 16px;
  color: #932913;
}
.hlx-breadcrumbs .breadcrumb-item {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #932913;
}
.hlx-breadcrumbs .breadcrumb-item:hover {
  color: #eb4220;
}
.hlx-breadcrumbs .separator {
  margin: 0 12px;
}

#hlx-pagination {
  margin: 24px 0;
  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-family: PingFangSC, helvetica neue, arial, microsoft yahei ui, microsoft yahei;
  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: 30px;
  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: #8e2c18;
  border-color: #8e2c18;
  padding: 6px 8px;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}
#hlx-pagination .previous-page,
#hlx-pagination .next-page {
  color: white;
  background: #8e2c18;
  border-color: #8e2c18;
  padding: 5px 6px;
  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-home-swiper {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.hlx-home-swiper .swipe {
  height: 100%;
  width: 100%;
}
.hlx-home-swiper .swipe .slick-item {
  height: 600px;
  position: relative;
  display: block;
}
.hlx-home-swiper .swipe .slick-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hlx-home-swiper .arrow-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding-top: 90px;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -ms-flex-pack: justify;
}
.hlx-home-swiper .arrow-box .arrow-left,
.hlx-home-swiper .arrow-box .arrow-right {
  width: 32px;
  height: 32px;
  cursor: pointer;
  user-select: none;
}
.hlx-home-swiper .arrow-box .arrow-left {
  left: 12px;
  background: url("../images/icon/left.png") center center/100% 100% no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 999px;
}
.hlx-home-swiper .arrow-box .arrow-right {
  right: 12px;
  background: url("../images/icon/right.png") center center/100% 100% no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 999px;
}

@media screen and (max-width: 768px) {
  .hlx-home-swiper {
    height: 300px;
  }
  .hlx-home-swiper .swipe .slick-item {
    height: 300px;
  }
  .hlx-home-swiper .arrow-box {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.hlx-sidebar-layout {
  display: flex;
  display: -ms-flexbox;
}
.hlx-sidebar-layout .sidebar {
  width: 260px;
}
.hlx-sidebar-layout .content {
  margin-left: 40px;
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
}

@media screen and (max-width: 768px) {
  .hlx-sidebar-layout {
    padding: 0 12px;
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .hlx-sidebar-layout .sidebar {
    width: 100%;
  }
  .hlx-sidebar-layout .content {
    margin-left: 0;
    width: 100%;
    flex: unset;
  }
}
.hlx-sidebar-list .sidebar-item {
  margin-top: 2px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 8px;
  overflow: hidden;
  min-height: 47px;
  padding: 21px 0px;
  color: #000000;
  font-size: 24px;
  letter-spacing: 1px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}
.hlx-sidebar-list .sidebar-item:hover {
  color: white;
  background: url(../images/bg/sidebar-item.png) no-repeat center center/100%;
}
.hlx-sidebar-list .sidebar-item.active {
  color: white;
  background: url(../images/bg/sidebar-item.png) no-repeat center center/100%;
}
.hlx-sidebar-list .sidebar-item .sidebar-item-label {
  font-size: 16px;
}

.hlx-search-header {
  position: relative;
  width: 100%;
}
.hlx-search-header .search-component-wrapper {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 12px;
}
.hlx-search-header .search-component-wrapper .hlx-search-component {
  margin: 0 auto;
}

.hlx-search-component {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-align-items: center;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid #8e2c18;
  background: white;
  height: 48px;
  max-width: 550px;
  padding: 6px 8px 6px 16px;
}
.hlx-search-component .search-input {
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  font-size: 16px;
  height: 100%;
}
.hlx-search-component .search-input::placeholder {
  color: #b2b2b2;
}
.hlx-search-component .search-btn {
  background: #8e2c18;
  color: #e8e8e8;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 0 24px;
  flex-shrink: 0;
  -ms-flex-shrink: 0;
}

.hlx-search-engine__item {
  min-height: 500px;
}
.hlx-search-engine__item .search-item {
  display: flex;
  display: -ms-flexbox;
}
.hlx-search-engine__item .search-item .highlight {
  color: #8e2c18;
  font-weight: bold;
}
.hlx-search-engine__item .search-item .left {
  width: 120px;
}
.hlx-search-engine__item .search-item .left .year {
  background: #e8e8e8;
  color: #8e2c18;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
.hlx-search-engine__item .search-item .left .month-day {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-flex-pack: center;
  align-items: center;
  -ms-flex-align: center;
  height: 60px;
  font-size: 32px;
  font-weight: bold;
  background: #8e2c18;
  color: #e8e8e8;
}
.hlx-search-engine__item .search-item .right {
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  min-height: 100%;
  margin-left: 12px;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  justify-content: space-between;
  -ms-justify-content: space-between;
}
.hlx-search-engine__item .search-item .right .title {
  color: #333333;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
}
.hlx-search-engine__item .search-item .right .content {
  font-size: 14px;
  color: #666;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 60px;
}
.hlx-search-engine__item .search-item .right .type {
  font-size: 14px;
  color: #666;
}
.hlx-search-engine__item .search-item .right .type .type-item::before {
  content: "[";
  margin: 0 4px;
}
.hlx-search-engine__item .search-item .right .type .type-item::after {
  content: "]";
  margin: 0 4px;
}

.book-line {
  margin-top: 40px;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #932913;
}

.book-first {
  display: flex;
  display: -ms-flexbox;
}
.book-first .book-cover {
  width: 290px;
  height: 392px;
  border-radius: 8px;
  overflow: hidden;
}
.book-first .book-cover .book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-first .book-info {
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  margin-left: 12px;
  min-height: 100%;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
}
.book-first .book-info .book-name {
  display: block;
  font-size: 28px;
  font-weight: 500;
  color: #2b2b2b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.book-first .book-info .book-row {
  margin-top: 60px;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -ms-justify-content: space-between;
  height: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
}
.book-first .book-info .book-row .book-row-item {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  justify-content: space-between;
  -ms-justify-content: space-between;
}
.book-first .book-info .book-row .book-row-item .book-info-item {
  min-height: 50px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-align-items: center;
}
.book-first .book-info .book-row .book-row-item .book-info-item .label {
  font-size: 20px;
  font-weight: bold;
  color: #2b2b2b;
}
.book-first .book-info .book-row .book-row-item .book-info-item .val {
  font-size: 20px;
  font-weight: normal;
  color: #2b2b2b;
}
.book-first .book-info .book-row .book-row-item .book-info-item .book-info-link {
  display: block;
  width: 130px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #010101;
  font-size: 20px;
  border: 1px solid #932913;
  border-radius: 10px;
  cursor: pointer;
}

.books-list {
  margin-top: 60px;
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -ms-justify-content: space-between;
}
.books-list .book-item .book-cover {
  width: 274px;
  height: 348px;
  border-radius: 8px;
  overflow: hidden;
}
.books-list .book-item .book-cover .book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.books-list .book-item .book-name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-digital-resources .digital-content-bg {
  background-color: #f7f7f7;
}
.page-digital-resources .digital-content-bg .digital-row4per-list {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 46px 40px 46px 0;
}
.page-digital-resources .digital-content-bg .digital-row4per-list .digital-row4per-item {
  display: block;
  margin-top: 116px;
  width: 25%;
  padding-left: 40px;
}
.page-digital-resources .digital-content-bg .digital-row4per-list .digital-row4per-item:nth-child(1),
.page-digital-resources .digital-content-bg .digital-row4per-list .digital-row4per-item:nth-child(2),
.page-digital-resources .digital-content-bg .digital-row4per-list .digital-row4per-item:nth-child(3),
.page-digital-resources .digital-content-bg .digital-row4per-list .digital-row4per-item:nth-child(4) {
  margin-top: 0;
}
.page-digital-resources .digital-content-bg .digital-row4per-list .reset-row {
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .page-digital-resources .digital-content-bg .digital-row4per-list .digital-row4per-item {
    width: 100%;
    margin-top: 24px;
  }
  .page-digital-resources .digital-content-bg .digital-row4per-list .digital-row4per-item:nth-child(1),
  .page-digital-resources .digital-content-bg .digital-row4per-list .digital-row4per-item:nth-child(2),
  .page-digital-resources .digital-content-bg .digital-row4per-list .digital-row4per-item:nth-child(3),
  .page-digital-resources .digital-content-bg .digital-row4per-list .digital-row4per-item:nth-child(4) {
    margin-top: 24px;
  }
}
.img-up_txt-down {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  align-items: center;
  -ms-flex-align: center;
}
.img-up_txt-down .img-box {
  width: 240px;
  height: 160px;
  border-radius: 4px;
  overflow: hidden;
  background: url("../images/logo/cover2.png") center center/94px 94px no-repeat, #e5e5e5;
}
.img-up_txt-down .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-up_txt-down .txt {
  width: 100%;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-up_txt-down {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  align-items: center;
  -ms-flex-align: center;
}
.video-up_txt-down .cover {
  max-width: 240px;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
}
.video-up_txt-down .txt {
  width: 100%;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.leader-detail-info {
  display: flex;
  display: -ms-flexbox;
}
.leader-detail-info .leader-img {
  width: 252px;
  height: 331px;
  object-fit: cover;
}
.leader-detail-info .leader-content {
  width: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  margin-left: 20px;
}
.leader-detail-info .leader-content .leader-name {
  font-size: 30px;
  color: #2b2b2b;
}
.leader-detail-info .leader-content .leader-article {
  text-indent: 2em;
  line-height: 60px;
  color: #2b2b2b;
  font-size: 18px;
  margin-top: 12px;
}
.leader-detail-info .leader-content .leader-article img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .leader-detail-info {
    flex-direction: column;
  }
  .leader-detail-info .leader-img {
    width: 100%;
    height: auto;
  }
  .leader-detail-info .leader-content {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}
.page-unit-overview .aerial-view {
  width: 924px;
  height: 420px;
  overflow: hidden;
}
.page-unit-overview .aerial-view .aerial-unit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-unit-overview .unit-info {
  width: 476px;
  height: 420px;
  background: #928363;
  padding: 40px;
  overflow: hidden;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
}
.page-unit-overview .unit-info .unit-name {
  font-size: 24px;
  color: #fff;
}
.page-unit-overview .unit-info .unit-address {
  position: relative;
  margin-top: 28px;
  font-size: 14px;
  color: #e3d4b6;
  padding-left: 24px;
  min-height: 16px;
  line-height: 16px;
}
.page-unit-overview .unit-info .unit-address::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 100%;
  background: url("../images/icon/map-pin-2-fill.svg") no-repeat center center;
  background-size: 16px 16px;
}
.page-unit-overview .unit-info .unit-content {
  height: 0;
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  margin-top: 28px;
  font-size: 14px;
  color: #fff;
  line-height: 25px;
}
.page-unit-overview .unit-info .more {
  text-align: right;
  font-size: 16px;
  color: #fff;
}
.page-unit-overview .history-info {
  width: 418px;
  height: 413px;
  padding: 40px;
  background: #d8d8d8;
  overflow: hidden;
}
.page-unit-overview .history-info .history-name {
  display: flex;
  display: -ms-flexbox;
}
.page-unit-overview .history-info .history-name .text {
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  font-size: 24px;
  color: #202020;
  display: block;
}
.page-unit-overview .history-info .history-name a {
  display: block;
  font-size: 16px;
  color: #a7a7a7;
}
.page-unit-overview .history-info .history-content {
  margin-top: 40px;
  font-size: 14px;
  color: #474747;
  line-height: 20px;
}
.page-unit-overview .history-info .history-content div {
  margin-bottom: 16px;
}
.page-unit-overview .honor-info {
  width: 506px;
  height: 413px;
  background: #545854;
  padding: 40px;
  overflow: hidden;
}
.page-unit-overview .honor-info .honor-title {
  display: flex;
  display: -ms-flexbox;
}
.page-unit-overview .honor-info .honor-title .text {
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  font-size: 24px;
  color: #fff;
  display: block;
}
.page-unit-overview .honor-info .honor-title a {
  font-size: 16px;
  color: #fff;
  display: block;
}
.page-unit-overview .honor-info .show-honor-img {
  height: 300px;
  margin-top: 10px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.page-unit-overview .honor-info .show-honor-img img {
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
}
.page-unit-overview .leader-info {
  width: 476px;
  height: 413px;
  background: #713b2a;
  padding: 40px;
  overflow: hidden;
}
.page-unit-overview .leader-info .leader-title {
  display: flex;
  display: -ms-flexbox;
}
.page-unit-overview .leader-info .leader-title .text {
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  font-size: 24px;
  color: #fff;
  display: block;
}
.page-unit-overview .leader-info .leader-title a {
  font-size: 16px;
  color: #fff;
  display: block;
}
.page-unit-overview .leader-info .leader-list {
  margin-top: 40px;
}
.page-unit-overview .leader-info .leader-list .leader-item {
  display: flex;
  display: -ms-flexbox;
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
}
.page-unit-overview .leader-info .leader-list .leader-item .position {
  width: 80px;
}

@media screen and (max-width: 768px) {
  .page-unit-overview .wanx-row {
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .page-unit-overview .aerial-view {
    width: 100%;
    height: auto;
  }
  .page-unit-overview .aerial-view .aerial-unit-img {
    height: auto;
  }
  .page-unit-overview .unit-info {
    width: 100%;
    padding: 20px 12px;
    height: unset;
  }
  .page-unit-overview .unit-info .unit-content {
    height: unset;
  }
  .page-unit-overview .history-info {
    width: 100%;
    padding: 20px 12px;
    height: unset;
  }
  .page-unit-overview .honor-info {
    width: 100%;
    padding: 20px 12px;
    height: unset;
  }
  .page-unit-overview .leader-info {
    width: 100%;
    padding: 20px 12px;
    height: unset;
  }
}
.column-title {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
}
.column-title .title-text {
  color: #932913;
  font-size: 36px;
  font-weight: bold;
  margin-right: 15px;
  white-space: nowrap;
}
.column-title .title-decoration {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  flex: 1;
  -ms-flex: 1 0 0%;
}
.column-title .title-decoration .diamond {
  width: 10px;
  height: 10px;
  margin-right: 10px;
  transform: rotate(45deg);
}
.column-title .title-decoration .diamond.solid {
  background-color: #932913;
  border: 1px solid #932913;
}
.column-title .title-decoration .diamond.outline {
  background-color: transparent;
  border: 1px solid #932913;
}
.column-title .title-decoration .dotted-line {
  flex: 1 0 0;
  -ms-flex: 1 0 0%;
  height: 1px;
  background: repeating-linear-gradient(to right, #932913 0, #932913 4px, transparent 4px, transparent 6px);
  margin-left: 8px;
}

@media screen and (max-width: 768px) {
  .column-title .title-text {
    font-size: 24px;
  }
}
.page-list .column-title {
  margin-top: 20px;
  margin-bottom: 40px;
}
.page-list .hlx-news-list .news-list-item {
  margin-bottom: 52px;
}
.page-list .hlx-news-list .news-list-50-item,
.page-list .hlx-news-list .news-list-50-item-line {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .page-list .hlx-news-list .news-list-item {
    margin-bottom: 24px;
  }
  .page-list .hlx-news-list .news-list-item:last-of-type {
    margin-bottom: 48px;
  }
}
.page-list-with-sidebar .column-title {
  margin-top: 20px;
  margin-bottom: 40px;
}
.page-list-with-sidebar .hlx-sidebar-layout .content {
  margin-left: 60px;
}
.page-list-with-sidebar .hlx-news-list .news-list-item {
  margin-bottom: 52px;
}
.page-list-with-sidebar .hlx-news-list .news-list-50-item,
.page-list-with-sidebar .hlx-news-list .news-list-50-item-line {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .page-list-with-sidebar .hlx-sidebar-layout {
    display: block;
  }
  .page-list-with-sidebar .hlx-sidebar-layout .content {
    margin-top: 24px;
    margin-left: 0;
  }
  .page-list-with-sidebar .hlx-news-list .news-list-item {
    margin-bottom: 24px;
  }
  .page-list-with-sidebar .hlx-news-list .news-list-item:last-of-type {
    margin-bottom: 48px;
  }
}
.page-detail {
  margin-top: 32px;
}
.page-detail .detail-content {
  padding-bottom: 32px;
}

.hlx-search-engine__item .search-item {
  margin-top: 70px;
}

.page-digital-resources .column-title {
  margin-top: 20px;
  margin-bottom: 40px;
}
.page-digital-resources .hlx-sidebar-layout .content {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .page-digital-resources .hlx-sidebar-layout .content {
    margin-left: 0;
  }
}
.page-publication .column-title {
  margin-top: 20px;
  margin-bottom: 40px;
}
.page-publication .hlx-sidebar-layout .content {
  margin-left: 60px;
}
.page-publication .publication-pagination-text {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 1.8px;
  text-align: center;
  margin-top: 20px;
  margin-left: 260px;
}

@media screen and (max-width: 768px) {
  .page-publication .hlx-sidebar-layout .content {
    margin-left: 0;
  }
  .page-publication .publication-pagination-text {
    margin-left: 0;
  }
  .book-line {
    margin: 24px 0;
  }
  .book-first {
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
    -ms-align-items: center;
  }
  .book-first .book-info {
    width: 100%;
    min-height: unset;
    flex: unset;
    margin: 0;
  }
  .book-first .book-info .book-name {
    margin-top: 12px;
  }
  .book-first .book-info .book-row {
    margin-top: 20px;
    height: auto;
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .book-first .book-info .book-row .book-btns {
    display: flex;
    display: -ms-flexbox;
    flex-direction: row;
    -ms-flex-direction: row;
    max-width: 100%;
  }
  .book-first .book-info .book-row .book-btns .book-info-item .book-info-link {
    width: auto;
    padding: 0 10px;
  }
  .books-list {
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
    -ms-align-items: center;
    margin-top: 0;
  }
  .books-list .book-item {
    margin-top: 24px;
  }
}