.mod,
.mod .mod-bd {
  padding: 0;
}

.mod {
  --mod-title-font-size: 0.42rem;
}

.row {
  padding: 1rem 0;
}

/* row1 */

.r1 {
  padding: 0.8rem 0 1.18rem;
  background-color: rgb(251, 251, 251);
}

.r1 .mod-bd {
  font-size: 0.18rem;
  line-height: 2;
  color: rgb(120, 120, 120);
  margin: 0.56rem 0 0.68rem;
}

.about-box .about-box-left img {
  border-radius: 0.08rem;
}

.about-box {
  display: flex;
  flex-wrap: wrap;
}

.about-box .about-box-left {
  box-sizing: border-box;
  width: 48%;
}

.about-box .about-box-right {
  box-sizing: border-box;
  width: 52%;
  padding-left: 0.88rem;

  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .about-box {
    padding: 0;
  }

  .about-box .about-box-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .about-box .about-box-right {
    width: 100%;
    padding-left: 0;
  }
}

.statistic-list {
  display: flex;
  flex-wrap: wrap;
  margin: -0.46rem;
}

.statistic-list li {
  box-sizing: border-box;
  width: 50%;
  padding: 0.46rem;
}

.statistic {
  width: 100%;
  transition: all 0.3s;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  padding: 0.36rem 0;
  border-bottom: 1px solid rgb(169, 169, 169);
}

.statistic-title {
  color: rgb(50, 50, 50);
  font-size: 0.18rem;
  margin-top: 0.16rem;
  transition: all 0.3s;
}

.statistic-content {
  color: rgb(215, 0, 15);
  font-size: 0.36rem;
  transition: all 0.3s;
}

.statistic-content-value {
  font-weight: bold;
}

.statistic-content-suffix {
  font-weight: bold;
}

.statistic-list li:hover .statistic {
  border-radius: 0.05rem;
  background: rgb(215, 0, 15);
  border-bottom: 0 none;
}

.statistic-list li:hover .statistic-content,
.statistic-list li:hover .statistic-title {
  transform: translateX(0.24rem);
  color: #fff;
}

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

  .r1 .mod-bd {
    font-size: 14px;
    margin: 12px 0 24px;
  }

  .statistic-list {
    margin: 0;
  }

  .statistic-list li {
    padding: 12px;
  }

  .statistic {
    padding: 20px 0;
  }

  .statistic-title {
    font-size: 14px;
    margin-top: 8px;
  }

  .statistic-content {
    font-size: 20px;
  }
}

.r4 {
  padding: 1rem 0 1.04rem;
}

.global-box {
  display: flex;
  flex-wrap: wrap;
}

.global-box .global-box-left {
  box-sizing: border-box;
  width: 28%;
}

.global-box .global-box-right {
  box-sizing: border-box;
  width: 72%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

  .global-box {
    padding: 0;
  }

  .global-box .global-box-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .global-box .global-box-right {
    width: 100%;
    padding: 0 10px;
  }
}

.global-meta {
  background-color: #f5f5f5;
  /* padding: 1.4rem 12% 0.8rem; */
  padding: 0.8rem 0 0.8rem;
}

.global-title {
  position: relative;
  color: rgb(50, 50, 50);
  font-size: 0.48rem;
  margin-bottom: 0.36rem;
  padding: 0 0.4rem 0.36rem;
}

.global-title::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  bottom: 0;
  width: 2em;
  height: 0.02rem;
  background: linear-gradient(
    270deg,
    rgb(215, 0, 15),
    rgb(235, 60, 8) 47.711%,
    rgb(255, 120, 0) 88.354%,
    rgb(255, 120, 0) 100%
  );
}

.global-desc {
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: #787878;
  padding: 0 0.4rem 0.6rem;
}

.global-list {
  padding-bottom: 0.2rem;
}

.global-list li {
  box-sizing: border-box;
  margin: 0.24rem 0;
  padding: 0.12rem 0.4rem;
  cursor: pointer;
  transition: all 0.3s;
}

.global-list li .wrap {
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.global-list li .title {
  transition: all 0.3s;
  color: rgb(120, 120, 120);
  font-size: 0.2rem;
}

.global-list li.active {
  background-color: rgba(0, 0, 0, 0.08);
}

.global-list li:hover .title,
.global-list li.active .title {
  color: rgb(0, 0, 0);
}

.global-list li .icon {
  padding: 0;
  margin-right: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
}

.global-list li:nth-child(1) .icon {
  width: 0.41676025rem;
}

.global-list li:nth-child(2) .icon {
  width: 0.4480249rem;
}

.global-list li:nth-child(3) .icon {
  width: 0.47603027rem;
}

@media only screen and (max-width: 767px) {
  .global-meta {
    padding: 24px;
  }

  .global-title {
    font-size: 20px;
    margin-bottom: 0.36rem;
    padding-bottom: 0.36rem;
  }

  .global-title::after {
    height: 1px;
  }

  .global-desc {
    font-size: 14px;
    line-height: 2;
    height: auto;
    margin-bottom: 20px;
  }

  .global-list li {
    margin: 12px 0;
  }

  .global-list li .title {
    font-size: 14px;
  }

  .global-list li .icon {
    margin-right: 12px;
  }
}

.row-partner .mod-bd {
  padding: 0.2rem 0 0.48rem;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.partner-list {
  width: 100%;
  height: 70vh;
  position: relative;
}

.partner-logo {
  transition: all 0.3s;
  height: 1.4rem;
  width: 1.4rem;
  position: absolute;
  left: calc(50% - 0.7rem);
  top: calc(50% - 0.7rem);
  transition: all 1s ease-in-out 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
}

.partner-logo:first-child {
  opacity: 1;
  z-index: 2;
  animation: fadeIn 3s;
}

@media only screen and (max-width: 990px) {
  .row-partner {
    padding: 24px 0;
  }
  .row-partner .mod-bd {
    padding-top: 12px;
  }

  .partner-list {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }

  .partner-logo {
    box-sizing: border-box;
    width: 50%;
    padding: 0 20px;
    height: 72px;
    position: relative;
    left: auto;
    top: auto;
    opacity: 1;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .partner-logo img {
    max-height: 90%;
    max-width: 90%;
  }

  .partner-logo:first-child {
    z-index: 2;
    opacity: 1;
  }
}

.row-history {
  padding: 1.2rem 0;
  background-color: #fbfbfb;
}

.timeline-box {
  --timeline-height: 6.08rem;
  --timeline-padding-left: 2.1rem;
  --swiper-navigation-color: #595959;
  --swiper-navigation-size: 0.2rem;

  display: flex;
  flex-wrap: wrap;
}

.timeline-box .timeline-box-left {
  box-sizing: border-box;
  width: 25%;
}

.timeline-box .timeline-box-right {
  box-sizing: border-box;
  width: 75%;
  padding-left: var(--timeline-padding-left);
}

.year-swiper {
  height: var(--timeline-height);
  overflow: hidden;
}

.year-list-item {
  color: #c8c8c8;
  font-size: 0.32rem;
  font-weight: 700;
  position: relative;
  padding: 0 0.48rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.year-list-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.32rem;
  height: 0.04rem;
  background-color: #c8c8c8;
}

.swiper-slide-active .year-list-item,
.swiper-slide-active .history-list-item .title {
  color: #d7000f;
}

.swiper-slide-active .year-list-item::after,
.swiper-slide-active .history-list-item .title::after {
  background-color: #d7000f;
}

.history-area {
  position: relative;
  padding: 0.48rem 0.48rem 0.48rem 2.2rem;
  height: var(--timeline-height);
  background-image: url("../images/about/history-bg.jpeg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: cover;
}

.history-swiper {
  height: 100%;
  overflow: hidden;
}

.history-swiper .swiper-slide {
  height: auto;
}

.history-list-item {
  padding: 0.4rem 0;
}

.history-list-item .title {
  color: rgb(255, 255, 255);
  font-size: 0.44rem;
  position: relative;
  padding-left: 0.4rem;
  margin-bottom: 0.12rem;
}

.history-list-item .title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.32rem;
  height: 0.04rem;
  background-color: rgb(255, 255, 255);
}

.history-list-item .desc {
  color: rgb(255, 255, 255);
  font-size: 0.16rem;
  line-height: 2;
}

.timeline-year__counter {
  position: absolute;
  font-size: 1.32rem;
  font-weight: bold;
  color: #d7000f;
  left: calc(var(--timeline-padding-left) * -1);
  top: 0.6rem;
  letter-spacing: -0.04rem;
}

.extra {
  position: absolute;
  top: 2.8rem;
  left: calc(var(--timeline-padding-left) * -1);
  width: 1.48rem;
}

.history-area .swiper-button-next,
.history-area .swiper-button-prev {
  box-sizing: border-box;
  width: 0.62rem;
  height: 0.62rem;
  margin-top: 0;
  border: 1px solid #595959;
  border-radius: 50%;
  transition: all 0.3s;
}

.history-area .swiper-button-prev {
  top: 0;
  left: 0;
}

.history-area .swiper-button-next {
  top: 0;
  right: 0;
}

.history-area .swiper-button-next:after,
.history-area .swiper-button-prev:after {
  transition: all 0.3s;
  transform: rotate(90deg);
}

@media only screen and (max-width: 767px) {
  .timeline-box {
    --timeline-height: 200px;
    --timeline-padding-left: 0;
    --swiper-navigation-color: #999;
    --swiper-navigation-size: 32px;
  }

  .timeline-box {
    padding: 0;
  }

  .timeline-box .timeline-box-left {
    width: 100%;
    margin-bottom: 24px;
    display: none;
  }

  .timeline-box .timeline-box-right {
    width: 100%;
    padding-left: 0;
  }

  .timeline-year__counter {
    display: none;
  }

  .extra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .history-area .swiper-button-next,
  .history-area .swiper-button-prev {
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border: 0 none;
  }

  .history-area .swiper-button-prev {
    top: -40px;
  }

  .history-area .swiper-button-next {
    top: auto;
    bottom: -40px;
  }

  .history-area {
    padding: 24px;
  }

  .history-list-item {
    padding: 0;
  }

  .history-list-item .title {
    font-size: 20px;
    padding-left: 24px;
    margin-bottom: 4px;
  }

  .history-list-item .desc {
    font-size: 14px;
  }
}

.tabs-map {
  position: relative;
  margin-top: -0.6rem;
}

.tabs-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.global-map {
}

.global-map img {
  width: 100%;
}

.map-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.global-map-dot {
  box-sizing: border-box;
  position: absolute;
  display: flex;
  width: auto;
  cursor: pointer;
  transform: rotate(0deg);
  transform-origin: left center;
  z-index: 7;
}

.global-map-dot span {
  display: none;
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  background: #fff;
  border: 0.06rem solid #f9b200;

  border-radius: 50%;
  transition: background 0.4s ease 0s, opacity 0.4s ease-in-out 0s;
}

.global-map-dot span::before,
.global-map-dot span::after {
  box-sizing: border-box;
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: rgba(249, 178, 0, 0.5);
}

.global-map-dot span::before {
  animation: boderM 3s 0.75s infinite;
}

.global-map-dot span::after {
  animation: boderM 3s infinite;
}

@keyframes boderM {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.global-map-dot > div {
  overflow: hidden;
  margin-left: 0.521vw;
  border-radius: 0.4rem;
  height: 0.4rem;
  max-width: 0;
  transition: max-width 0.4s ease-in-out 0s;
  position: absolute;
  left: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.global-map-dot:hover > div {
  max-width: 5rem;
}

.global-map-dot > div p {
  font-size: 0.833vw;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 100%;
  max-width: 5rem;
  padding: 0px 1.042vw;
  border-radius: 0.4rem;
  z-index: -1;
  background: #f9b200;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(-100%) rotate(0deg);
  opacity: 0;
  transition: transform 0.4s ease-in-out 0s, background 0.4s ease 0s, opacity 0.4s ease 0s,
    max-width 0.4s ease-in-out 0s;
}

.global-map-dot:hover > div p {
  transform: translateX(0px) rotate(0deg);
  opacity: 1;
  max-width: 100%;
}

.global-map-dot.txt-right > div {
  margin-left: 0;
  left: auto;
  margin-right: 0.521vw;
  right: 0.3rem;
}

.global-map-dot.txt-right > div p {
  transform: translateX(100%) rotate(0deg);
}

.global-map-dot.txt-right:hover > div p {
  transform: translateX(0px) rotate(0deg);
  opacity: 1;
  max-width: 100%;
}

.global-map-dot:nth-child(1) {
  left: 16.1%;
  top: 44.2%;
}

.global-map-dot:nth-child(2) {
  left: 20.7%;
  top: 52.8%;
}

.global-map-dot:nth-child(3) {
  left: 31%;
  top: 72.2%;
}

.global-map-dot:nth-child(4) {
  left: 29%;
  top: 77.3%;
}

.global-map-dot:nth-child(5) {
  left: 35.6%;
  top: 69.4%;
}

.global-map-dot:nth-child(6) {
  left: 48.3%;
  top: 40.2%;
}

.global-map-dot:nth-child(7) {
  left: 44.8%;
  top: 44.8%;
}

.global-map-dot:nth-child(8) {
  left: 49.8%;
  top: 42.7%;
}

.global-map-dot:nth-child(9) {
  left: 51%;
  top: 46.8%;
}

.global-map-dot:nth-child(10) {
  left: 56.9%;
  top: 54.2%;
}

.global-map-dot:nth-child(11) {
  left: 52.4%;
  top: 70%;
}

.global-map-dot:nth-child(12) {
  left: 68.9%;
  top: 52.1%;
}

.global-map-dot:nth-child(13) {
  left: 69.9%;
  top: 55.8%;
}

.global-map-dot:nth-child(14) {
  left: 72.1%;
  top: 56.1%;
}

.global-map-dot:nth-child(15) {
  left: 82.1%;
  top: 72.5%;
}

.tabs-content .tabs-tabpane {
  display: none;
}

.base {
  position: absolute;
  left: 57.5%;
  top: 40.5%;
  width: 4.28rem;
  user-select: none;
}

.base img {
  width: 100%;
}

.overseas {
  user-select: none;
  position: absolute;
  left: 32.5%;
  top: 33.8%;
  width: 4.28rem;
}

.overseas img {
  width: 100%;
}
