#globalnav,
#globalnav.globalnav-dark,
#globalnav.globalheader-dark,
.globalheader-dark #globalnav,
.theme-dark #globalnav {
  --globalnav-background: rgba(0, 0, 0, 0.2);
}

#globalnav.globalnav-light,
#globalnav.globalheader-light,
.globalheader-light #globalnav,
.theme-light #globalnav {
  --globalnav-background: rgba(255, 255, 255, 1);
}

#globalnav.mini_top {
  box-shadow: 0 8px 24px -2px rgba(0, 0, 0, 0.05);
}

img,
.content img {
  max-width: 100% !important;
}

.content {
  padding-top: 0.6rem;
  padding-bottom: 1rem;
  background-image: url("../images/bg1.png");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% auto;
}

.content.no-bg {
  background: none;
}

.sub-banner {
  --sub-banner-height: 6rem;
  --sub-banner-title-font-size: 0.64rem;
  --sub-banner-subtitle-font-size: 0.24rem;
  --sub-banner-subtitle-margin: 0.04rem;
}

.sub-banner {
  box-sizing: border-box;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  height: var(--sub-banner-height);
}
/* .sub-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
} */
.sub-banner .wrapper {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-bottom: var(--r-localnav-height);
}

.sub-banner-title {
  font-size: var(--sub-banner-title-font-size);
  color: rgba(255, 255, 255, 1);
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}

.sub-banner-subtitle {
  font-size: var(--sub-banner-subtitle-font-size);
  margin-top: var(--sub-banner-subtitle-margin);
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sub-banner-title.center {
  display: flex;
  justify-content: center;
}

.sub-banner-subtitle.center {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .sub-banner {
    --sub-banner-height: 240px;
    --sub-banner-title-font-size: 24px;
    --sub-banner-subtitle-font-size: 14px;
    --sub-banner-subtitle-margin: 4px;
  }

  .sub-banner .wrapper {
    padding-top: 24px;
  }

  .content {
    padding-top: 24px;
  }
}

.mod {
  --mod-title-font-size: 0.36rem;
  --mod-subtitle-font-size: 0.24rem;
}

.mod.sm {
  --mod-title-font-size: 0.32rem;
}

@media only screen and (max-width: 767px) {
  .mod {
    --mod-title-font-size: 20px;
    --mod-subtitle-font-size: 16px;
  }

  .mod.sm {
    --mod-title-font-size: 20px;
  }
}

.header-item {
  background-color: rgba(0, 0, 0, 0);
}

.breadcrumb {
  box-sizing: border-box;
  font-size: var(--font18);
  position: relative;
  margin-bottom: 0.4rem;
}

.breadcrumb ol {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(51, 51, 51, 1);
  transition: all 0.3s;
  display: inline-block;
}
.breadcrumb a:hover {
  color: var(--main-color);
}

.breadcrumb li:last-child {
  color: rgba(51, 51, 51, 1);
}

.breadcrumb .breadcrumb-separator {
  margin: 0 4px;
  color: rgba(51, 51, 51, 1);
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 14px;
  }
}

/* Pagination */
#Lb_pager {
  --pagination-item-size: 0.4rem;
  --pagination-item-border-color-disabled: #d9d9d9;
}

#Lb_pager {
  text-align: center;
  font-size: var(--font20);
  margin: var(--ant-margin) 0;
}

#Lb_pager .pages a {
  box-sizing: border-box;
  display: inline-block;
  transition: all 0.3s;
  min-width: var(--pagination-item-size);
  height: var(--pagination-item-size);
  margin: 0 var(--ant-margin-xxs);
  line-height: calc(var(--pagination-item-size) - 2px);
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid var(--ant-color-border);
  border-radius: 4px;
  outline: 0;
  cursor: pointer;
  user-select: none;
  color: var(--ant-color-text);
}

#Lb_pager .pages a:not(.pgcurrent):hover,
#Lb_pager .pages a:not(.pgcurrent):active {
  border-color: var(--main-color);
  color: var(--main-color);
}

#Lb_pager .pages .pgcurrent {
  font-weight: bold;
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

#Lb_pager .pages .pgcurrent:hover {
  opacity: 0.8;
}

#Lb_pager .pages .pgnext.pgempty,
#Lb_pager .pages .pgnext.pgempty:hover {
  cursor: not-allowed;
  border-color: var(--pagination-item-border-color-disabled);
  color: var(--ant-color-text-disabled);
  background: var(--ant-color-bg-container-disabled);
}

@media only screen and (max-width: 767px) {
  #Lb_pager {
    --pagination-item-size: 24px;
  }

  #Lb_pager {
    font-size: var(--ant-font-size-sm);
  }

  #Lb_pager .pages a {
    margin: var(--ant-margin-xxs) calc(var(--ant-margin-xxs) / 2);
  }
}

.table-wrapper .table-title {
  font-size: var(--font24);
  color: rgb(50, 50, 50);
  margin-bottom: 0.16rem;
}

.table-wrapper table {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0;
}

.table-wrapper tbody > tr,
.table-wrapper thead > tr {
  height: auto !important;
  width: auto !important;
}

.table-wrapper thead > tr > th {
  position: relative;
  font-weight: bold;
  font-size: var(--font20);
  padding: 0.12rem 0.36rem !important;
}

.table-wrapper tbody > tr > td {
  transition: all 0.3s;
  padding: 0.12rem 0.36rem !important;
  font-size: var(--font18) !important;
  color: var(--main-color);
  height: auto !important;
  width: auto !important;
  color: rgba(102, 102, 102, 1);
}

.table-wrapper tbody > tr:first-child > td {
  font-size: var(--font24) !important;
}

.table-wrapper tbody > tr > td a {
  color: var(--main-color);
}

.table-wrapper tbody > tr > td > * {
  font-size: var(--font18) !important;
}

.table-wrapper tbody > tr > .td1 {
  font-weight: bold;
  color: rgba(51, 51, 51, 1);
}

.table-wrapper tbody > tr:first-child > td {
  position: relative;
  font-weight: bold;
  font-size: var(--font20);
  text-align: center;
}

.table-wrapper tbody > tr:nth-child(2n + 1) > td {
  background-color: rgb(247, 249, 252);
}

@media only screen and (max-width: 767px) {
  .table-wrapper {
    overflow-x: scroll;
  }
  .table-wrapper table {
    width: 200% !important;
  }

  .table-wrapper .table-title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .table-wrapper thead > tr > th {
    padding: 12px !important;
    font-size: 14px;
  }

  .table-wrapper tbody > tr > td {
    padding: 12px !important;
    font-size: 14px !important;
    word-break: break-all;
  }
}

.loadmore {
  color: #777777;
  font-size: 0.2rem;
  margin-top: 0.6rem;
}

.loadmore .icon {
  margin-right: 0.2rem;
}

.loadmore .btn-link {
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: var(--font30);
  color: var(--main-color);
  cursor: pointer;
}

.loadmore .btn-link:hover {
  color: #d97706;
}

.loadmore .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.32rem;
  height: 0.32rem;
}

.loadmore .btn-icon svg {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .loadmore {
    font-size: 14px;
    margin-top: 20px;
  }

  .loadmore .icon {
    margin-right: 12px;
  }

  .loadmore .icon img {
    width: 28px;
  }
}

/* card */
/* .card {
  --card-title-font-size: 0.36rem;
}

.card .card-hd .num {
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: rgba(231, 0, 0, 1);
  font-size: 0.36rem;
  padding-right: 0.12rem;
}

.card .card-hd .num::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.02rem;
  background-color: rgba(231, 0, 0, 1);
} */

@media only screen and (max-width: 767px) {
  .card {
    --card-title-font-size: 24px;
  }
}

.card {
  --card-title-font-size: 0.36rem;
  color: rgba(50, 50, 50, 1);
  margin-bottom: 0.48rem;
}

.card:last-child {
  margin-bottom: 0;
}

.card .card-hd {
  margin-bottom: 0.28rem;
}
/*
.card .card-hd h3 {
  position: relative;
  padding-left: 0.28rem;
  font-weight: normal;
  color: var(--card-title-color);
  font-size: var(--card-title-font-size);
}

.card .card-hd h3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.05rem;
  height: 0.35rem;
  background-color: var(--main-color);
}

.card .card-bd {
  line-height: 2;
  font-size: var(--font18);
  text-align: justify;
} */

.row {
  padding-top: 0.76rem;
  padding-bottom: 0.8rem;
}

@media only screen and (max-width: 767px) {
  .row {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* ==========================================================================
   向下滚动
   ========================================================================== */
.mouse_box {
  display: flex;
  justify-content: center;
  margin: 0.2rem 0 0;
}

.mouse_roll {
  display: flex;
  align-items: center;
  cursor: default;
}

.loading {
  color: var(--main-color);
  font-size: var(--font18);
  font-weight: 400;
  margin-left: 0.2rem;
}

.mouse_img {
  opacity: 0;
  animation: rolldown 2.3s infinite;
  -webkit-animation: rolldown 2.3s infinite;
}

#gdnone {
  display: none;
}

@keyframes rolldown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  50% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@-webkit-keyframes rolldown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  50% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@media only screen and (max-width: 500px) {
  .mouse_img {
    width: 12px;
  }

  .mouse_box {
    margin: 20px 0 0;
  }
}

.headline {
  --headline-title-font-size: 0.36rem;
  --headline-subtitle-font-size: 0.2rem;
  --headline-title-color: #333333;
  --headline-subtitle-color: #666666;
}

.headline {
  margin-bottom: 0.32rem;
}

.headline.bordered {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: var(--headline-padding-bottom);
}

.headline .title {
  position: relative;
  font-weight: bold;
  color: var(--headline-title-color);
  font-size: var(--headline-title-font-size);
  padding-left: 0.36rem;
}

.headline .title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1246rem;
  height: 0.3266rem;
  transition: all 0.3s;
  background-image: url("../images/mod-hd-icon.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
}

.headline .title.multi-line {
  line-height: 1;
  padding: var(--padding12) 0;
}

.headline .subtitle {
  color: var(--headline-subtitle-color);
  font-size: var(--headline-subtitle-font-size);
  margin-top: var(--padding12);
  line-height: 1.8;
}

.headline .subtitle > p {
  margin-bottom: 0.16rem;
}

.headline .subtitle > p:nth-last-child() {
  margin-bottom: 0;
}

.headline .title.center {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .headline {
    --headline-title-font-size: 20px;
    --headline-subtitle-font-size: 14px;
  }
}

/* ==========================================================================
   内页标题样式
   ========================================================================== */
.inner-title-line,
.inner-title-gradient,
.inner-title-plain,
.inner-title-bar,
.inner-title-clip {
  box-sizing: border-box;
}

/* 样式1：深蓝粗体 + 底部分隔线 */
.inner-title-line {
  font-size: var(--font36);
  font-weight: bold;
  color: var(--main-color);
  border-bottom: 5px solid rgba(207, 218, 225, 1);

  display: inline-block;
  padding: 0 0 0.2rem 0;
  margin-bottom: 0.2rem;
}

/* 样式2：渐变蓝底条 + 居中白字 */
.inner-title-gradient {
  --inner-title-gradient-from: rgba(0, 124, 196, 1);
  --inner-title-gradient-to: rgba(8, 64, 141, 1);

  display: inline-block;
  max-width: 100%;
  font-size: var(--font24);
  font-weight: bold;
  color: #fff;

  line-height: 1.5;
  text-align: center;
  padding: 0.12rem 0.8rem;
  margin-bottom: var(--padding20);
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    var(--inner-title-gradient-from) 0%,
    var(--inner-title-gradient-to) 100%
  );
}

.inner-title-gradient.block {
  display: block;
  width: 100%;
}

/* 样式3：纯文字蓝标题（无装饰） */
.inner-title-plain {
  font-size: var(--font24);
  font-weight: bold;
  color: var(--main-color, #08408d);
  line-height: 1.5;
  margin-bottom: var(--padding20);
}

/* 样式4：深蓝横条 + 左侧图标 + 白字 */
.inner-title-bar {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  width: 100%;
  min-height: 0.5rem;
  padding: 0.1rem 0.32rem;
  margin-bottom: 0.24rem;
  font-size: var(--font20);
  color: #fff;
  line-height: 1.5;
  background-color: var(--main-color);
}

.inner-title-bar__icon {
  flex-shrink: 0;
  display: block;
  width: var(--icon24);
  height: var(--icon24);
  object-fit: contain;
}

.inner-title-bar__icon svg,
.inner-title-bar > svg {
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
}

.inner-title-clip {
  position: relative;
}

.line-wrap {
  display: flex;
  align-items: center;
  gap: 12%;
}

.line {
  position: relative;
  background: rgba(83, 83, 83, 1);
  height: 1px;
  flex: 1;
}

.line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  background: rgba(83, 83, 83, 1);
}

.inner-title-clip h3 {
  font-size: var(--font36);
  font-weight: bold;
}

.inner-title-clip h4 {
  font-size: var(--font30);
  font-weight: bold;
  margin-top: 0.08rem;
}

@media only screen and (max-width: 767px) {
  .inner-title-line {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }

  .inner-title-gradient {
    font-size: 16px;
    padding: 12px 20px;
    margin-bottom: 16px;
    border-radius: 4px;
  }

  .inner-title-plain {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .inner-title-bar {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .inner-title-bar__icon,
  .inner-title-bar > svg {
    width: 18px;
    height: 18px;
  }
}

#globalnav {
  box-shadow: 0 8px 24px -2px rgba(0, 0, 0, 0.05);
}
