@media screen and (min-width: 1201px) {
  .row {
    --safe-area-inset: 1.28rem;
  }
}

.r1 {
  background-image: url("../images/about/bg1.jpg");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  padding-top: 1.28rem;
  padding-bottom: 1.04rem;
}

@media only screen and (max-width: 767px) {
  .r1 {
    position: relative;
  }

  .r1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.8) 100%
    );
  }

  .r1 .mod {
    position: relative;
    z-index: 1;
  }
}

.r2 {
  padding-top: 1.2rem;
  /* padding-bottom: 1.2rem; */
  padding-bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 8.519%,
    rgba(213, 247, 247, 1) 52.731%,
    rgba(213, 247, 247, 0.6) 89.746%
  );
}

.r3 {
  box-sizing: border-box;
  background-image: url("../images/about/bg3.jpg");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  min-height: calc(100vh - var(--global-header-height));
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
}

.r1 .mod {
  max-width: 684px;
}

.statistic-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
}

.statistic-list > li {
}

.statistic-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.24rem;
}

.statistic-list li {
  box-sizing: border-box;
  width: 50%;
  padding: 0 0.24rem;
  margin-bottom: 0.4rem;
}

.statistic {
  box-sizing: border-box;
  color: var(--second-color);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.statistic-title {
  font-size: var(--font16);
  line-height: 1.2;
  font-weight: bold;
  margin-top: 0.12rem;
}

.statistic-content {
  display: flex;
  align-items: center;
}

.statistic-content-value {
  font-weight: bold;
  font-size: var(--font36);
  line-height: 1;
}

.statistic-content-suffix {
  font-size: var(--font20);
  font-weight: bold;
}

.statistic-icon {
  width: var(--icon64);
  height: var(--icon64);
}

.statistic-icon svg,
.statistic-icon img {
  width: 100%;
  height: 100%;
}

.statistic-list li:hover .statistic-icon {
  transform: rotateY(360deg);
}

@media only screen and (max-width: 767px) {
}

.about-info {
  text-align: justify;
  font-size: var(--font16);
  line-height: 1.75;
  margin-bottom: 0.48rem;
}

.r1 .mod .mod-hd,
.r2 .mod .mod-hd {
  margin-bottom: 0.52rem;
}

.r1 .mod .mod-hd h3 {
  color: var(--second-color);
}

@media only screen and (min-width: 768px) {
  .honor-list {
    --gap: 0.16rem;
    --item-margin-bottom: 0;
  }
}

.honor-list-item {
  height: 100%;
  position: relative;
}

.honor-list-item .pic,
.honor-list-item .pic img,
.honor-list-item .meta {
  border-radius: 0.24rem;
}

.honor-list-item .meta {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0.28rem 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.honor-list-item .title-area {
  display: inline-block;
  position: relative;
  padding-top: 0.88rem;
  padding-right: 0.58rem;
}

.honor-list-item .title {
  color: rgba(255, 255, 255, 1);
  font-size: var(--font36);
}

.honor-list-item .desc {
  width: 100%;
  color: rgba(255, 255, 255, 1);
  font-size: var(--font18);
  text-align: justify;
  line-height: 2;
  min-height: 1.44rem;
}

.honor-list-item .icon {
  transition: all 0.5s;
  position: absolute;
  top: 0;
  right: 0;
  width: 1.3rem;
  height: 1.3rem;
}

.honor-list-item .icon svg,
.honor-list-item .icon img {
  width: 100%;
  height: 100%;
}

.honor-list-item:hover .meta {
  background-color: rgba(0, 0, 0, 0.7);
}

.honor-list-item:hover .icon {
  transform: rotateY(360deg);
}

@media screen and (max-width: 767px) {
  .honor-list-item .meta {
    justify-content: center;
  }

  .honor-list-item .title {
    margin-bottom: 4px;
  }

  .honor-list-item .icon {
    margin-bottom: 8px;
  }
}

.tabs {
}

.tabs-nav {
  position: relative;
  margin-bottom: -0.2rem;
}

.tabs-nav-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.tabs-nav-list li {
  cursor: pointer;
  color: rgba(255, 255, 255, 1);
  font-size: var(--font24);
  padding-bottom: 0.12rem;
  position: relative;
}

.tabs-nav-list li::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s;
}

.tabs-nav-list .active {
  font-weight: bold;
}

.tabs-nav-list .active::after {
  opacity: 1;
}

.tabs-content .tabs-tabpane {
  display: none;
}

.info-list-item {
  display: flex;
}

.info-list-item .pic,
.info-list-item .pic img {
  border-radius: var(--border-radius);
}

.info-list-item .desc {
  box-sizing: border-box;
  text-align: justify;
  font-size: var(--font16);
  line-height: 1.75;
  padding-bottom: 0.4rem;
  min-height: 4.2rem;
}

.info-list-item .flex-box-left {
  padding-right: 0.4rem;
}

.info-list-item .flex-box-right {
  padding-left: 0.4rem;
}

.info-list > li:first-child .flex-box-left {
  padding-top: 0.64rem;
}

.info-list > li:last-child {
  margin-top: -0.92rem;
  position: relative;
}

.info-list > li:last-child .flex-box-left,
.info-list > li:last-child .flex-box-right {
  width: 100%;
  padding: 0;
}

.info-list > li:last-child .flex-box-left {
  display: flex;
  justify-content: flex-end;
}

.info-list > li:last-child .flex-box-left .pic {
  max-width: 12.12rem;
}

.info-list > li:last-child .flex-box-right .desc {
  max-width: 12.84rem;
  padding: 0.76rem 0.2rem;
  margin-bottom: 0.24rem;
}

@media only screen and (max-width: 1200px) {
  .info-list > li:last-child {
    margin-top: 0.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .r1,
  .r2,
  .r3 {
    padding: 28px 0;
  }

  .r1 .mod .mod-hd,
  .r2 .mod .mod-hd {
    margin-bottom: 20px;
  }

  .info-list > li:first-child .flex-box-left {
    padding-top: 0;
  }

  .info-list > li:last-child .flex-box-right .desc {
    padding: 0;
    margin-bottom: 24px;
  }

  .info-list > li:last-child {
    margin-top: 24px;
  }
}
