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

.container {
}

.content {
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
}

.sub-banner {
  --sub-banner-height: 2.88rem;
  --sub-banner-title-font-size: 0.48rem;
  --sub-banner-subtitle-font-size: 0.36rem;
  --sub-banner-subtitle-margin: 0.12rem;
}

.sub-banner {
  box-sizing: border-box;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  height: var(--sub-banner-height);
  padding-top: var(--global-header-height);
}

.sub-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    179.43deg,
    rgba(47, 125, 198, 0.9),
    rgba(52, 193, 189, 0.6) 100%
  );
}

.sub-banner .fluid-wrapper {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

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

.sub-banner-subtitle {
  font-size: var(--sub-banner-subtitle-font-size);
  margin-top: var(--sub-banner-subtitle-margin);
  color: #fff;
}

.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: 200px;
    --sub-banner-title-font-size: 24px;
    --sub-banner-subtitle-font-size: 14px;
    --sub-banner-subtitle-margin: 4px;

    padding-top: 0;
  }

  .content {
    padding-top: 0.24rem;
  }
}

.mod {
  --mod-title-font-size: 0.36rem;
  --mod-subtitle-font-size: 0.18rem;
  --mod-num-font-size: 0.36rem;
  --mod-title-color: rgba(0, 0, 0, 1);
  --mod-subtitle-color: #1c222c;
  --mod-num-color: #e70000;
}

@media only screen and (min-width: 768px) {
  .mod {
    --mod-title-font-size: 0.48rem;
    --mod-subtitle-font-size: 0.18rem;
    --mod-num-font-size: 0.36rem;
  }
}

.mod .mod-hd h3 {
  font-weight: normal;
}

.breadcrumb {
  box-sizing: border-box;
  margin-top: -0.56rem;
  position: relative;
  height: 0.56rem;
}

.breadcrumb .icon-home {
  font-size: var(--font16);
}

.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 {
    margin-top: -32px;
    height: 32px;
  }
}

/* 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% !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;
  background-color: #45a3a3;
  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.16rem !important;
  font-size: var(--font14) !important;
  color: var(--main-color);

  background: #c6e3e3;

  height: auto !important;
  width: auto !important;
}
.table-wrapper tbody > tr:nth-child(n + 2) > td {
  /*word-break: break-all;*/
}
.table-wrapper tbody > tr > td a {
  color: var(--main-color);
}

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

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

.table-wrapper tbody > tr:first-child > td {
  background-color: #45a3a3;
  font-weight: bold;
  font-size: var(--font16);
  color: rgb(255, 255, 255);
}

.table-wrapper tbody > tr:nth-child(2n) > td {
  background-color: #f8fbfb;
}

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

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

  .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: transparent;
  --headline-subtitle-color: #1c222c;
  --headline-margin-bottom: 0.36rem;
  --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.center {
  display: flex;
  justify-content: center;
}

.headline.sm {
  --headline-title-font-size: 0.48rem;
}

@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.36rem;
  --card-title-color: rgba(0, 0, 0, 1);
  padding-bottom: var(--padding68);
}

.card .card-hd {
  position: relative;
  border-bottom: 0.02rem solid rgba(222, 222, 222, 1);
  padding-bottom: 0.12rem;
  margin-bottom: var(--padding32);
}

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

.card .card-bd {
  line-height: 1.8;
  font-size: var(--font20);
}

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

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

.row {
  padding-bottom: 1rem;
}

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