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

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

.content > div > p{
  margin-bottom: 1em;
}

.sub-banner {
  --sub-banner-height: 100vh;
  --sub-banner-title-font-size: 0.55rem;
  --sub-banner-subtitle-font-size: 0.24rem;
  --sub-banner-subtitle-margin: 0.2rem;
}

.sub-banner {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.sub-banner .bg {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: var(--sub-banner-height);
}

.sub-banner .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-banner .bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 34, 76, 0.6) 0%, rgba(11, 34, 76, 0) 50%);
  opacity: 1;
}

.sub-banner .container {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.sub-banner .container .wrapper,
.sub-banner .container .fluid-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

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

.sub-banner-subtitle.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 1280px;
}

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

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

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

.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: 0.4rem 0 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 0.12rem;
  line-height: calc(var(--pagination-item-size) - 2px);
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid rgba(136, 136, 136, 1);
  border-radius: 50%;
  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 {
  margin-bottom: 0.4rem;
}

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

.table-wrapper table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid rgba(218, 222, 230, 1);
}

.table-wrapper thead > tr > th {
  position: relative;
  background-color: #45a3a3;
  font-weight: bold;
  font-size: var(--font18);
  color: rgb(255, 255, 255);
  padding: 0.16rem 0.24rem !important;
  word-break: break-word !important;
}

.table-wrapper tbody > tr > td {
  transition: all 0.3s;
  padding: 0.16rem 0.24rem !important;
  font-size: var(--font18) !important;
  word-break: break-word !important;
  border-bottom: 1px solid rgba(218, 222, 230, 1);
  color: rgba(85, 85, 85, 1);
}

.table-wrapper tbody > tr > td:first-child {
  color: rgba(0, 0, 0, 1);
}

.table-wrapper tbody > tr:hover > td {
  background: rgba(249, 250, 252, 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: 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: 1.5rem;
}

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