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

.wrapper {
  max-width: 1400px;
}

.content {
  padding-top: var(--padding100);
  padding-bottom: var(--padding100);
}

.sub-banner {
  --sub-banner-height: 6.8rem;
  --sub-banner-title-font-size: 0.48rem;
  --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-top: 0.28rem;
}

.sub-banner-title {
  font-size: var(--sub-banner-title-font-size);
  color: rgba(255, 255, 255, 1);
}

.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.42rem;
  --mod-subtitle-font-size: 0.28rem;
}

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

@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: 0.16rem;
  margin-top: -0.4rem;
  position: relative;
}

.breadcrumb ol {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgb(255, 255, 255);
  transition: all 0.3s;
  display: inline-block;
}
.breadcrumb a:hover {
  color: var(--ant-color-primary);
}

.breadcrumb li:last-child {
  color: rgb(255, 255, 255);
}

.breadcrumb .breadcrumb-separator {
  margin: 0 4px;
  color: rgb(255, 255, 255);
}

@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: 0.24rem;
  color: rgb(50, 50, 50);
  margin-bottom: 0.16rem;
}

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

.table-wrapper thead > tr > th {
  position: relative;
  background-color: rgb(216, 41, 43);
  font-weight: bold;
  font-size: var(--font20);
  color: rgb(255, 255, 255);
  padding: 0.12rem 0.36rem !important;
}

.table-wrapper tbody > tr > td {
  transition: all 0.3s;
  padding: 0.12rem 0.36rem !important;
  font-size: var(--font20) !important;
  color: rgba(72, 72, 72, 1);
}

.table-wrapper tbody > tr > .td1 {
  font-weight: bold;
}

.table-wrapper tbody > tr:nth-child(2n) > td {
  background: rgba(240, 240, 240, 1);
}

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

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

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

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

@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.48rem;
}

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

.headline {
  --headline-title-font-size: 0.36rem;
  --headline-subtitle-font-size: 0.2rem;
  --headline-title-color: rgba(51, 51, 51, 1);
  --headline-subtitle-color: #1c222c;
  --headline-margin-bottom: 1rem;
  --headline-padding-bottom: 0.28rem;
}

.headline {
  margin-bottom: var(--headline-margin-bottom);
}

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

.headline .title {
  font-weight: normal;
  color: var(--headline-title-color);
  font-size: var(--headline-title-font-size);
}

.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;
    --headline-margin-bottom: 24px;
    --headline-padding-bottom: 8px;
  }
}

.card {
  --card-title-font-size: 0.2rem;
  --card-title-color: rgba(51, 51, 51, 1);
  padding-bottom: var(--padding68);
  border-bottom: 1px solid rgba(223, 223, 223, 1);
  margin-bottom: 0.6rem;
}

.card:last-child {
  border-bottom: 0 none;
  padding: 0;
}

.card .card-hd {
  position: relative;
  margin-bottom: var(--padding24);
}

.card .card-hd h3 {
  font-weight: bold;
  color: var(--card-title-color);
  font-size: var(--card-title-font-size);
}

.card .card-hd::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.02rem;
  width: 3.48rem;
  height: 0.06rem;
  background-color: var(--main-color);
  display: none;
}

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

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

  .card .card-hd {
    padding-bottom: 8px;
  }
}

.row {
  padding-bottom: 0.6rem;
}

/* ==========================================================================
   向下滚动
   ========================================================================== */
.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;
  }
}

.mould-r4 .flex-box {
  align-items: center;
}

.mould-r4 .flex-box .flex-box-left {
  width: 34%;
}

.mould-r4 .flex-box .flex-box-right {
  width: 66%;
  padding-left: 0.68rem;
}

.mould-r1 .flex-box {
  align-items: center;
}

.mould-r1 .flex-box .flex-box-left {
  width: 28%;
}

.mould-r1 .flex-box .flex-box-right {
  width: 72%;
  padding-left: 0.68rem;
}

.mould-r1 .txt-area {
  margin-bottom: 0.6rem;
}
