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

.container {
  font-size: 0.18rem;
  line-height: 2;
  color: rgb(50, 50, 50);
}

.content {
  padding: 0.8rem 0 1rem;
}

.content .wrapper,
.row .wrapper {
  max-width: 1400px;
}

.sub-banner {
  --sub-banner-height: 6rem;
  --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);
}

.sub-banner .wrapper {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-banner-title {
  font-size: var(--sub-banner-title-font-size);
  text-shadow: 0 0.02rem 0.03rem rgba(14, 39, 80, 0.75);
  color: rgb(254, 254, 254);
  font-weight: 400;
}

.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: 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: 24px 0;
  }
}

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

.breadcrumb {
  box-sizing: border-box;
  font-size: 0.18rem;
  border-bottom: 1px solid #ddd;
  padding: 0.2rem 0.36rem;
  background: url("../images/icons/list.svg?v=1") 0 50% no-repeat;
  background-size: 0.22rem;
  margin-bottom: 0.32rem;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

  .container {
    font-size: 14px;
  }
}

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

#Lb_pager {
  text-align: center;
  font-size: var(--ant-font-size);
  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(--ant-color-primary);
  color: var(--ant-color-primary);
}

#Lb_pager .pages .pgcurrent {
  font-weight: bold;
  background-color: var(--ant-color-primary);
  border-color: var(--ant-color-primary);
  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: #fff;
  font-weight: normal;
  font-size: 0.16rem;
  color: rgb(50, 50, 50);
  padding: 0.16rem 0.48rem !important;
}

.table-wrapper tbody > tr > td {
  transition: all 0.3s;
  padding: 0.14rem 0.48rem !important;
  font-size: 0.16rem !important;
  color: rgba(0, 0, 0, 1);
}

.table-wrapper tbody > tr > .td1 {
  color: rgba(10, 59, 126, 1);
  text-align: right;
}

.table-wrapper tbody > tr:nth-child(2n + 1) > td {
  background: rgba(246, 246, 248, 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;
  }
}

.system-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
}

.system-list li {
  box-sizing: border-box;
  width: 25%;
  padding: 0 0.15rem;
}

.system-list li .system-list-item {
  box-sizing: border-box;
  padding: 0.52rem 0.36rem 0.36rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 0.08rem;
}

.system-list li:first-child .system-list-item {
  background-image: url("../images/system-bg1.jpg");
}

.system-list li:nth-child(2) .system-list-item {
  background-image: url("../images/system-bg2.jpg");
}

.system-list li:nth-child(3) .system-list-item {
  background-image: url("../images/system-bg3.jpg");
}

.system-list li:nth-child(4) .system-list-item {
  background-image: url("../images/system-bg1.jpg");
}

.system-list li .meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.system-list li .title {
  color: rgba(50, 50, 50, 1);
  font-size: 0.36rem;
}

.system-list li .subtitle {
  color: rgba(50, 50, 50, 1);
  font-size: 0.22rem;
  margin-bottom: 0.2rem;
}

.system-list li .desc {
  color: rgba(102, 102, 102, 1);
  font-size: 0.16rem;
  height: 2.52rem;
  line-height: 1.75;
  margin-bottom: 0.16rem;
}

.system-list li .more {
  transition: all 0.3s;
  box-sizing: border-box;
  border: 1px solid rgba(58, 138, 211, 1);
  background: rgba(58, 138, 211, 0.1);
  color: rgba(58, 138, 211, 1);
  font-size: 0.16rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
}

@media only screen and (max-width: 1200px) {
  .system-list li {
    width: 50%;
    padding: 24px;
  }

  .system-list li .desc {
    height: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .system-list li {
    width: 100%;
    padding: 16px;
  }

  .system-list li .title {
    font-size: 20px;
  }

  .system-list li .subtitle {
    font-size: 16px;
  }

  .system-list li .desc {
    font-size: 12px;
    height: auto;
    margin-bottom: 24px;
  }

  .system-list li .more {
    font-size: 12px;
    height: 28px;
    width: 120px;
  }
}

.system-area {
  position: relative;
  padding-bottom: 0.6rem;
}
