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

.content {
  padding: 1.2rem 0 1.48rem;
}

@media only screen and (max-width: 833px) {
  .content {
    padding: 32px 0;
  }
}

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

.inner_title {
  color: rgba(0, 36, 77, 1);
  font-size: 0.36rem;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 36, 77, 1);
  padding-bottom: 0.17rem;
  margin-bottom: 0.48rem;
  position: relative;
}

.inner_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1rem;
  height: 0.03rem;
  background-color: rgba(0, 36, 77, 1);
}

.mod {
  --mod-title-font-size: 0.36rem;
  --mod-title-color: #0068b7;
}

.mod .mod-hd {
  margin-bottom: 0.16rem;
}

.mod .mod-hd h3 {
  padding-bottom: 0.28rem;
}

.mod .mod-hd h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1rem;
  height: 0.04rem;
  background: rgba(0, 104, 183, 1);
}

.mod .mod-title.center h3::after {
  left: 50%;
  transform: translateX(-50%);
}

.mod .mod-bd {
  padding: var(--ant-padding-xl) 0;
  font-size: 0.18rem;
  line-height: 1.777777;
  color: rgb(50, 50, 50);
}

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

  .mod .mod-hd h3 {
    line-height: 1.5;
  }

  .mod .mod-hd h3::before {
    right: -8px;
  }

  .mod .mod-bd {
    font-size: 14px;
  }
}

.sub-banner {
  --sub-banner-height: 5.2rem;
  --sub-banner-title-font-size: 0.92rem;
  --sub-banner-subtitle-font-size: 0.3rem;
  --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;
  padding-top: 0.96rem;
}

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

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

  .sub-banner-title {
    padding-top: 48px;
  }
}

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

/* news */

.news-list {
}

.news-list li {
  box-sizing: border-box;
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(222, 222, 222, 1);
}

.news-list li:last-of-type {
  border-bottom: 0 none;
}

.news-list li a {
  display: block;
}

.news-list li a .wrap {
  display: flex;
  transition: box-shadow var(--ant-motion-duration-slow);
  transition: all 0.3s;
}

.news-list li .pic-area {
  width: 4.8rem;
  position: relative;
}

.news-list li .meta {
  box-sizing: border-box;
  flex: 1;
  padding: 0 0 0 1rem;
  min-width: 0;
}

.news-list li .title {
  font-size: 0.24rem;
  color: rgba(0, 36, 77, 1);
  font-weight: 500;
  line-height: 1.41666667;
}

.news-list li .desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow: hidden;
  color: rgba(52, 64, 84, 1);
  font-size: 0.16rem;
  line-height: 2;
}

.news-list li .date {
  font-size: 0.18rem;
  color: rgba(151, 151, 151, 1);
  margin: 0.24rem 0;
}

@media only screen and (max-width: 767px) {
  .news-list li {
    padding: 0 0 24px;
    margin-bottom: 24px;
  }

  .news-list li a .wrap {
    padding-right: 0;
    flex-wrap: wrap;
  }

  .news-list li .pic-area {
    width: 100%;
    margin-bottom: 20px;
  }

  .news-list li .meta {
    flex: auto;
    width: 100%;
    padding: 0;
  }

  .news-list li .title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .news-list li .desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .news-list li .date {
    font-size: 14px;
  }

  .news-list li .more {
    font-size: 14px;
  }

  .news-list li .m-date {
    color: #999;
    font-size: 12px;
    margin-bottom: 8px;
  }
}

/* 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 {
  border: 1px solid rgb(214, 225, 239);
  border-radius: 0.08rem;
  background: rgb(255, 255, 255);
  padding: 0.12rem 0.39rem 0.4rem;
  margin-top: 0.36rem;
}

.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.18rem;
  color: rgb(50, 50, 50);
  padding: 0.16rem 0.4rem !important;
}

.table-wrapper tbody > tr > td {
  transition: all 0.3s;
  padding: 0.16rem 0.4rem !important;
  font-size: 0.18rem !important;
  color: rgb(50, 50, 50);
  background: #fff;
}

.table-wrapper tbody > tr:nth-child(2n + 1) > td {
  background: rgb(245, 248, 251);
  padding-top: 0.08rem !important;
  padding-bottom: 0.08rem !important;
}

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

/* honor */

.honor-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.2rem 0.4rem;
}

.honor-list li {
  box-sizing: border-box;
  width: 25%;
  transition: all 0.3s;
  padding: 0 0.2rem;
  margin-bottom: 0.4rem;
}

.honor-list li .wrap {
  box-sizing: border-box;
  transition: all 0.3s;
  padding: 0.36rem 0.24rem;
  background: rgb(240, 244, 246);
}

.honor-list li a {
  display: block;
}

.honor-list li .pic-area {
  padding: 0.56rem 0.4rem;
  background-color: #fff;
}

.honor-list li .meta {
  box-sizing: border-box;
  padding-top: 0.24rem;
}

.honor-list li .title {
  text-align: center;
  font-size: 0.18rem;
  line-height: 1.5;
  min-height: 0.54rem;
  color: rgb(0, 36, 77);
}

@media only screen and (max-width: 767px) {
  .honor-list li {
    width: 50%;
  }

  .honor-list li .wrap {
    padding: 12px;
  }

  .honor-list li .pic-area {
    padding: 0;
  }

  .honor-list li .meta {
    padding-top: 12px;
  }

  .honor-list li .title {
    font-size: 14px;
    min-height: 42px;
  }
}

.page-contact {
}

.page-contact .r1 {
  padding-bottom: 0.88rem;
  padding-top: 1.04rem;
}

.page-contact .r1 .wrapper {
  background-image: url("../images/map.png?v=2");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 13.64rem auto;
  min-height: 7rem;
}

.page-contact .r1 .mod-bd {
  padding: 1.24rem 0;
}

.contact-card {
  box-sizing: border-box;
  background: rgba(240, 244, 246, 1);
  padding: 0.32rem 0.24rem;
  max-width: 6rem;
  color: rgba(52, 64, 84, 1);
  font-size: 0.18rem;
  line-height: 1.7778;
}

.contact-card .title {
  color: rgba(0, 36, 77, 1);
  font-size: 0.2rem;
  font-weight: 600;
  margin-bottom: 0.12rem;
}

.page-contact .r2 {
  background: rgba(240, 244, 246, 1);
  padding-bottom: 1.28rem;
  padding-top: 0.68rem;
}

.page-contact .r2 .wrapper {
  max-width: 15.18rem;
}

.feedback-area {
  box-sizing: border-box;
  border-radius: 0.1rem;
  background: rgba(255, 255, 255, 1);
  padding: 0.6rem 0.48rem 0.76rem;
}

.feedback-area .layui-form {
  max-width: 1186px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .page-contact .r1 {
    padding: 24px 0;
  }

  .page-contact .r1 .wrapper {
    background-size: 100% auto;
    background-position: 0 68px;
    min-height: auto;
  }

  .page-contact .r1 .mod-bd {
    padding: 120px 0 0;
  }

  .contact-card {
    padding: 12px;
    max-width: 100%;
    font-size: 12px;
  }

  .contact-card .title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .page-contact .r2 {
    padding: 20px 0;
  }

  .page-contact .r2 .wrapper {
    max-width: 100%;
  }

  .feedback-area {
    padding: 20px 20px 32px;
  }

  .feedback-area .layui-form {
    max-width: 100%;
  }
}
