@font-face {
  font-family: PingFangSC;
  src: local('PingFang SC'), local('PingFangSC'), url('fonts/PingFangSC-Regular.otf');
  font-weight: normal;
}
@font-face {
  font-family: PingFangSC;
  src: local('PingFang SC Medium'), local('PingFangSC-Medium'), url('fonts/PingFangSC-Medium.otf');
  font-weight: 500;
}
@font-face {
  font-family: PingFangSC;
  src: local('PingFang SC Semibold'), local('PingFangSC-Semibold'), url('fonts/PingFangSC-Semibold.otf');
  font-weight: 600;
}
@font-face {
  font-family: HYFengShangHei-35W;
  src: local('HYFengShangHei-35W'), local('汉仪风尚黑35W'), url('fonts/汉仪风尚黑35W.ttf') format('truetype');
}
@font-face {
  font-family: Alibaba-PuHuiTi;
  src: local('Alibaba PuHuiTi'), local('Alibaba-PuHuiTi-R'), url('fonts/Alibaba-PuHuiTi-Regular.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: Alibaba-PuHuiTi;
  src: local('Alibaba PuHuiTi Bold'), local('Alibaba-PuHuiTi-B'), url('fonts/Alibaba-PuHuiTi-Bold.ttf') format('truetype');
  font-weight: bold;
}
:root {
  --base-font-size: 16px;
  --content-padding: max( calc((100vw - 1280px) / 2), 7.5rem);
}
@media (max-width: 768px) {
  :root {
    --base-font-size: 12px;
  }
}
body {
  font-family: PingFangSC Alibaba-PuHuiTi sans-serif;
  font-size: var(--base-font-size);
  line-height: 1.5;
  color: #222222;
  font-style: normal;
  --color-primary: #9c0a0a;
}
a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
a:hover {
  color: #a72525;
}
.content-part {
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
  width: 100%;
  box-sizing: border-box;
}
header {
  position: relative;
  z-index: 2;
}
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.0625rem var(--content-padding) 1.5rem;
  /* 33px/16=2.0625, 24px/16=1.5 */
}
.top-bar .logo {
  height: 3.75rem;
  /* 60px/16=3.75 */
  object-fit: contain;
}
.top-bar .search-bar {
  position: relative;
  height: 2.75rem;
  /* 44px/16=2.75 */
  padding: 0.6875rem 1.5rem;
  /* 11px/16=0.6875, 24px/16=1.5 */
  background: #f6f6f6;
  border-radius: 0.25rem;
  /* 4px/16=0.25 */
  max-width: 31.25rem;
  /* 500px/16=31.25 */
}
.top-bar .search-bar input {
  width: 100%;
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
  /* 14px/16=0.875 */
  color: #333;
}
.top-bar .search-bar .search-icon {
  margin-left: 0.625rem;
  /* 10px/16=0.625 */
  font-size: 1rem;
  /* 16px/16=1 */
  color: #999;
}
.top-bar .search-bar .divider {
  width: 0.0625rem;
  /* 1px/16=0.0625 */
  height: 100%;
  background: #c5c5c5;
  margin: 0 0.75rem;
  /* 12px/16=0.75 */
}
.top-bar .search-bar span {
  white-space: nowrap;
}
.top-bar .icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar .icons .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  /* 14px/16=0.875 */
}
.top-bar .icons .icon img {
  width: 3rem;
  /* 48px/16=3 */
  height: 3rem;
  /* 48px/16=3 */
  margin-bottom: 0.375rem;
  /* 6px/16=0.375 */
}
.nav-menu {
  margin-left: 0.625rem;
  /* 10px/16=0.625 */
  min-width: 1.875rem;
  /* 30px/16=1.875 */
  position: relative;
  cursor: pointer;
  height: 1.25rem;
  /* 20px/16=1.25 */
}
.nav-menu span {
  display: block;
  background: #222;
  width: 1.5625rem;
  /* 25px/16=1.5625 */
  height: 0.125rem;
  /* 2px/16=0.125 */
  position: absolute;
  left: 0rem;
  transition: all ease 0.35s;
  top: 0;
}
.nav-menu span:nth-of-type(2) {
  top: 0.5rem;
  /* 8px/16=0.5 */
}
.nav-menu span:nth-of-type(3) {
  top: 1rem;
  /* 16px/16=1 */
}
.nav-menu.active span:nth-of-type(1) {
  top: 0.5625rem;
  /* 9px/16=0.5625 */
  transform: rotate(45deg);
}
.nav-menu.active span:nth-of-type(2) {
  width: 0;
}
.nav-menu.active span:nth-of-type(3) {
  top: 0.5625rem;
  /* 9px/16=0.5625 */
  transform: rotate(-45deg);
}
.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  /* 20px/16=1.25 */
  font-size: 0.875rem;
  /* 14px/16=0.875 */
  color: #888888;
  margin-right: auto;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #eeeeee;
}
.breadcrumb a {
  display: flex;
  align-items: center;
  color: inherit;
}
.breadcrumb a:not(:last-child)::after {
  display: block;
  content: '';
  margin: 0 0.625rem;
  /* 10px/16=0.625 */
  min-width: 1.5rem;
  min-height: 1.5rem;
  background: url(../images/shared/icon_jiantou.png) no-repeat center center;
}
.breadcrumb a:hover {
  color: #aa0404;
}
header .navbar-nav {
  flex-wrap: wrap;
}
header .navbar-nav .nav-item {
  min-width: calc(1 / 9 * 100%);
}
header .navbar-nav .nav-item:nth-child(9)::after {
  display: none;
}
.navbar {
  background: #aa0404;
  box-shadow: inset 0rem -0.0625rem 0.1875rem 0rem rgba(90, 1, 1, 0.4);
  /* 1px/16=0.0625, 3px/16=0.1875 */
  z-index: 1;
  transition: all 0.3s ease;
  left: auto;
  position: relative;
  top: 0;
}
.navbar.active {
  left: 0;
}
.navbar .navbar-bg {
  display: none;
}
.navbar .navbar-nav {
  z-index: 100;
  top: auto;
  flex-direction: row;
  position: relative;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  width: 100%;
}
.navbar .navbar-nav .nav-item {
  position: relative;
  padding: 0.625rem 0.9375rem;
  /* 15px/16=0.9375 */
  flex: 1;
  text-align: center;
}
.navbar .navbar-nav .nav-item a {
  white-space: nowrap;
  color: white;
  font-family: AlibabaPuHuiTiH;
  font-size: 1.125rem;
  /* 18px/16=1.125 */
  text-decoration: none;
}
.navbar .navbar-nav .nav-item a:hover {
  color: #ecb237;
}
.navbar .navbar-nav .nav-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.0625rem;
  /* 1px/16=0.0625 */
  height: 1.25rem;
  /* 20px/16=1.25 */
  background: #f3cf71;
  box-shadow: inset -0.0625rem 0.0625rem 0.0625rem 0rem rgba(170, 96, 0, 0.83);
  /* 1px/16=0.0625 */
}
.sections ul.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* 16px/16=1 */
  list-style: none;
  overflow: hidden;
}
.sections ul.news-list li {
  font-size: 0.875rem;
  /* 14px/16=0.875 */
  display: flex;
  align-items: center;
  width: 100%;
  --dot-width: 0.75rem;
  /* 12px/16=0.75 */
}
.sections ul.news-list li:first-child {
  font-size: 1rem;
  /* 16px/16=1 */
}
.sections ul.news-list li::before {
  content: '';
  display: inline-block;
  width: 0.25rem;
  /* 4px/16=0.25 */
  height: 0.25rem;
  /* 4px/16=0.25 */
  min-width: 0.25rem;
  /* 4px/16=0.25 */
  min-height: 0.25rem;
  /* 4px/16=0.25 */
  background: #f3cf71;
  margin-right: 0.5rem;
  /* 8px/16=0.5 */
}
.sections ul.news-list li.no-dot {
  --dot-width: 0rem;
}
.sections ul.news-list li.no-dot::before {
  display: none;
}
.sections ul.news-list li.hash {
  align-items: baseline;
}
.sections ul.news-list li.hash::before {
  content: '';
  display: inline-block;
  width: 0.75rem;
  /* 20px/16=1.25 */
  height: 0.875rem;
  /* 20px/16=1.25 */
  min-width: 0.75rem;
  /* 20px/16=1.25 */
  min-height: 0.875rem;
  /* 20px/16=1.25 */
  background: url(../images/shared/img_jinhao.png) no-repeat;
  margin-right: 0.625rem;
  /* 8px/16=0.5 */
}
.sections ul.news-list li.douhao::before {
  content: '';
  display: inline-block;
  width: 1.25rem;
  /* 20px/16=1.25 */
  height: 1.25rem;
  /* 20px/16=1.25 */
  min-width: 1.25rem;
  /* 20px/16=1.25 */
  min-height: 1.25rem;
  /* 20px/16=1.25 */
  background: url(../images/shared/img_douhao.png) no-repeat;
  margin-right: 0.5rem;
  /* 8px/16=0.5 */
}
.sections ul.news-list li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - var(--dot-width));
}
.sections ol.news-list {
  list-style: none;
  counter-reset: list-counter;
}
.sections ol.news-list li {
  margin-bottom: 0.25rem;
}
.sections ol.news-list li:nth-child(-n + 3) a::before {
  color: var(--color-primary);
}
.sections ol.news-list li a {
  counter-increment: list-counter 1;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.sections ol.news-list li a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sections ol.news-list li a img {
  margin-left: 0.9375rem;
  /* 15px/16=0.9375 */
}
.sections ol.news-list li a::marker {
  display: none;
}
.sections ol.news-list li a::before {
  content: counter(list-counter);
  display: inline-block;
  color: #999999;
  font-size: 1.25rem;
  /* 20px/16=1.25 */
  font-weight: 600;
  margin-right: 1rem;
  /* 16px/16=1 */
}
.sections ol.news-list li a:hover {
  color: var(--color-primary);
}
.sections ol.news-list li a:hover::before {
  color: var(--color-primary);
}
.sections .list-with-pic {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* 16px/16=1 */
}
.sections .list-with-pic .item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* 24px/16=1.5 */
}
.sections .list-with-pic .item img {
  width: 40%;
}
.sections .list-with-pic .item span {
  flex: 1;
  padding-right: 0.9375rem;
  /* 15px/16=0.9375 */
  font-weight: 600;
  font-size: 1rem;
  /* 16px/16=1 */
}
.sections .column-title {
  font-family: HYFengShangHei-35W;
  font-weight: normal;
  font-size: 1.5rem;
  /* 24px/16=1.5 */
  color: #222222;
  line-height: 2.0625rem;
  /* 33px/16=2.0625 */
  -webkit-text-stroke: 0.0625rem #222222;
  /* 1px/16=0.0625 */
  position: relative;
}
.sections .column-title::after {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  bottom: -0.25rem;
  /* 4px/16=0.25 */
  background: url(../images/shared/title_bangdan.png) no-repeat bottom left;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sections .column-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sections .column-title.center::after {
  width: calc(100% + 3rem);
  background: url(../images/shared/bg_title.png) no-repeat bottom center;
  background-size: 100% auto;
  left: 50%;
  transform: translateX(-50%);
}
footer .tab {
  padding: 0.625rem 1.25rem;
  /* 10px/16=0.625, 20px/16=1.25 */
}
footer .tab.active {
  background-color: #d8d8d8;
  font-weight: bold;
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 1280px) {
  .top-navbar .navbar-nav .nav-item {
    padding: 4px 2px;
  }
  .top-navbar .navbar-nav .nav-item a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  /* 768px/16=48 */
  :root {
    --content-padding: 1.25rem;
    /* 20px/16=1.25 */
  }
  .top-bar .logo {
    max-width: 25%;
  }
  .content-part {
    padding-left: var(--content-padding);
    padding-right: var(--content-padding);
  }
  .top-bar {
    flex-wrap: wrap;
    padding: 1.25rem var(--content-padding) 1rem;
    /* 20px/16=1.25, 16px/16=1 */
  }
  .top-bar .search-bar {
    min-width: 0;
  }
  .top-bar .search-bar span {
    display: none;
  }
  .top-bar .icons .icon {
    font-size: 0.75rem;
    /* 12px/16=0.75 */
  }
  .top-bar .icons .icon img {
    width: 2.25rem;
    /* 36px/16=2.25 */
    height: 2.25rem;
    /* 36px/16=2.25 */
  }
  .top-bar .social-icons {
    width: 100%;
  }
  .top-navbar .navbar-nav {
    flex-wrap: wrap;
    background: #aa0404;
    z-index: 100;
    height: auto;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .top-navbar .navbar-nav.active .nav-item:nth-child(n + 8) {
    display: block;
  }
  .top-navbar .navbar-nav.active .arrow {
    display: none;
  }
  .top-navbar .navbar-nav .arrow {
    flex: 0.25;
    transform: rotate(90deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 0;
    filter: brightness(10);
  }
  .top-navbar .navbar-nav .nav-item {
    min-width: 25%;
    flex: 0.25;
    padding: 0.625rem 0;
    /* 10px/16=0.625 */
  }
  .top-navbar .navbar-nav .nav-item a {
    font-size: 1rem;
    width: 100%;
  }
  .top-navbar .navbar-nav .nav-item:nth-child(n + 8) {
    display: none;
  }
  .top-navbar .navbar-nav .nav-item::after {
    display: none;
  }
  footer .icons {
    flex-direction: column;
  }
  footer .bottom-navbar .navbar-nav {
    flex-direction: column;
    height: auto;
  }
  footer .bottom-navbar .navbar-nav .nav-item {
    width: 100%;
    padding: 0.625rem 0;
    /* 10px/16=0.625 */
  }
  footer .bottom-navbar .navbar-nav .nav-item a {
    width: 100%;
  }
  footer .bottom-navbar .navbar-nav .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    transform: unset;
    width: 100%;
    height: 0.125rem;
    /* 2px/16=0.125 */
    background: #9c0a0a;
    box-shadow: inset -0.0625rem 0.0625rem 0.0625rem 0rem rgba(170, 96, 0, 0.83);
    /* 1px/16=0.0625 */
  }
}
