.common-footer {
  margin-top: 0;
}
.company-info-con {
  background-color: #0e0e0f;
  padding-top: 1.2rem;
}
.company-info-body {
  width: var(--main-width);
  margin: 0 auto;
  padding-bottom: 0.7rem;
  color: #ffffff;
  display: flex;
  overflow-x: hidden;
}
.company-info-body .left-con {
  width: 7.2rem;
}
.company-info-body .right-con {
  flex: 1;
  padding-left: 0.4rem;
}
.company-info-body .company-fixed {
  position: fixed;
  top: 1rem;
  /* 固定距离顶部的位置 */
}
.company-info-body .company-img {
  width: 100%;
}
.company-info-body .company-img > img {
  width: 100%;
}
.company-info-body .title {
  font-size: 0.46rem;
}
.company-info-body .content-text {
  width: 100%;
  text-align: justify;
  font-size: 0.16rem;
  line-height: 0.3rem;
  margin-top: 0.4rem;
}
.company-info-body .company-num-con {
  width: 70%;
}
@keyframes slideRight {
  0% {
    left: -0.4rem;
  }
  100% {
    left: 100%;
  }
}
.company-info-body .company-num-item {
  position: relative;
  margin-top: 0.5rem;
  padding-bottom: 0.4rem;
  display: flex;
  border-bottom: 1px solid #3d3d3e;
}
.company-info-body .company-num-item:nth-child(2n)::after {
  animation-delay: 0.5s;
}
.company-info-body .company-num-item:nth-child(3n)::after {
  animation-delay: 1s;
}
.company-info-body .company-num-item:nth-child(4n)::after {
  animation-delay: 1.5s;
}
.company-info-body .company-num-item:nth-child(5n)::after {
  animation-delay: 2s;
}
.company-info-body .company-num-item::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -1px;
  left: -0.4rem;
  width: 0.3rem;
  border-bottom: 2px solid var(--active-color);
  animation-name: slideRight;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  white-space: nowrap;
}
.company-info-body .company-num-item .num-con {
  padding-left: 0.5rem;
  width: 50%;
  display: flex;
}
.company-info-body .company-num-item .num-con .num {
  font-size: 0.46rem;
}
.company-info-body .company-num-item .num-con .const {
  font-size: 0.18rem;
  padding-top: 0.1rem;
  padding-left: 0.1rem;
}
.company-info-body .company-num-item .text {
  padding-top: 0.2rem;
  width: 50%;
  font-size: 0.24rem;
}
.team-con {
  width: var(--main-width);
  margin: 1.2rem auto 0 auto;
}
.team-con .title-con {
  text-align: center;
  font-size: 0.46rem;
  color: #323232;
}
.team-con .team-body {
  width: 100%;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem;
}
.team-con .team-item {
  width: 4.53rem;
  height: 6.67rem;
  background-color: #ffffff;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.3);
}
.team-con .team-item:hover {
  box-shadow: 0 0 0.2rem rgba(0, 51, 159, 0.5);
}
.team-con .top-con {
  margin-top: 0.5rem;
}
.team-con .img-con {
  width: 100%;
  position: relative;
  text-align: center;
}
.team-con .img-con > img {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
}
.team-con .text-con {
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
}
.team-con .text-con .name {
  font-size: 0.24rem;
  color: #323232;
}
.team-con .text-con .position {
  margin-top: 0.14rem;
  font-size: 0.16rem;
  color: #444444;
}
.team-con .info-con {
  padding: 0 0.4rem;
}
.team-con .info-con > li {
  position: relative;
  width: 100%;
  padding-left: 0.25rem;
  margin-top: 0.2rem;
  line-height: 0.3rem;
  text-align: justify;
  font-size: 0.16rem;
  color: #858585;
}
.team-con .info-con > li::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background-color: #858585;
}
.popup-con {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  background-color: var(--active-color);
  color: #ffffff;
  padding: 0.5rem;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 2;
}
.popup-con .close-icon {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  font-size: 0.24rem;
  cursor: pointer;
}
.popup-con .close-icon:hover {
  font-weight: bold;
}
.popup-con .close-icon::after {
  content: "\e612";
  font-family: "iconfont";
  font-size: 0.24rem;
}
.popup-con .header-con {
  width: 100%;
  display: flex;
}
.popup-con .cover-con {
  width: 1.2rem;
  height: 1.2rem;
}
.popup-con .cover-con > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.popup-con .text-con {
  flex: 1;
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-con .text-con .name-con {
  width: 100%;
  font-size: 0.24rem;
}
.popup-con .text-con .desc-con {
  width: 100%;
  margin-top: 0.1rem;
  font-size: 0.16rem;
}
.popup-con .desc-info-list {
  margin-top: 0.2rem;
}
.popup-con .desc-info-list .text-info {
  position: relative;
  width: 100%;
  padding-left: 0.25rem;
  margin-top: 0.2rem;
  line-height: 0.3rem;
  text-align: justify;
}
.popup-con .desc-info-list .text-info::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background-color: #ffffff;
}
.map-container {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  background-color: #ecebeb;
}
.map-container-body {
  position: relative;
  width: var(--main-width);
  margin: 0 auto;
  padding-bottom: 0.6rem;
}
.map-container-body .abs-text {
  position: absolute;
  left: 0;
  bottom: 10%;
  font-size: 0.14rem;
  color: #323232;
}
.map-container-body .abs-text > div {
  margin-top: 0.08rem;
}
.map-container-body .title-con {
  text-align: center;
  font-size: 0.46rem;
}
.map-container-body .map-render-con {
  position: relative;
  width: 100%;
  height: 7.5rem;
}
.map-container-body .map-mark-model {
  position: absolute;
  top: 0;
  left: 0;
}
@keyframes animateScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}
@keyframes animateRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.map-container-body .mark-con {
  position: relative;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background-color: #ffffff;
}
.map-container-body .mark-con::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  animation: animateScale 2s linear infinite;
  overflow: visible;
}
.map-container-body .mark-con::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%) rotate(0);
  /* 合并 transform */
  transform-origin: 50% 50%;
  animation: animateRotate 2s ease-in-out infinite;
}
.map-container-body .name-con {
  position: absolute;
  top: -0.2rem;
  left: -0.1rem;
  transform: translateX(-100%);
  padding: 0.04rem 0;
  text-align: center;
  width: 0.6rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 6px 6px 0 6px;
  font-size: 0.16rem;
}
.map-container-body .is-right .name-con {
  left: 0.9rem;
  border-radius: 6px 6px 6px 0;
}
.map-container-body .is-no-after .mark-con::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .company-info-con {
    padding-top: 0.4rem;
  }
  .company-info-body {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .company-info-body .left-con {
    width: 100%;
  }
  .company-info-body .right-con {
    flex: 1;
    width: 100%;
    padding-left: 0;
  }
  .company-info-body .company-img {
    margin-top: 0.4rem;
  }
  .company-info-body .title {
    text-align: center;
  }
  .company-info-body .company-num-con {
    width: 100%;
  }
  .team-con {
    margin: 1.2rem auto 0 auto;
  }
  .team-con .team-body {
    grid-template-columns: repeat(1, 1fr);
  }
  .team-con .team-item {
    width: 100%;
    height: auto;
    padding-bottom: 0.4rem;
    background-color: #ffffff;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.3);
  }
  .team-con .team-item:hover {
    box-shadow: 0 0 0.2rem rgba(0, 51, 159, 0.5);
  }
  .team-con .top-con {
    margin-top: 0.5rem;
    display: flex;
    padding-left: 0.4rem;
  }
  .team-con .img-con {
    width: 1.45rem;
  }
  .team-con .img-con > img {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
  }
  .team-con .text-con {
    padding-left: 0.2rem;
    width: 100%;
    margin-top: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .team-con .text-con .name {
    font-size: 0.24rem;
    color: #323232;
  }
  .team-con .text-con .position {
    margin-top: 0.14rem;
    font-size: 0.16rem;
    color: #444444;
  }
}
