﻿.title-container {
  width: 100%;
  height: 300px;
  background: #565656;
  margin-top: 70px;
  position: relative;
}
.title-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.title-container .about-title-mask {
  background: rgba(0, 123, 255, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.title-container .about-title-mask .titiel-cn {
  font-size: 38px;
  letter-spacing: 2px;
  color: #FFF;
  margin-bottom: 15px;
}
.title-container .about-title-mask .titiel-en {
  color: #FFF;
  letter-spacing: 2px;
  font-size: 17px;
  margin-bottom: 0;
}

.about-content-container {
  width: 100%;
  box-sizing: border-box;
  padding: 80px 20px;
}
.about-content-container .about-team {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.about-content-container .about-team .team-text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.7;
  text-indent: 30px;
}
.about-content-container .about-team .team-title {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}
.about-content-container .about-team img {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 10px;
}
.about-content-container .about-team .copyright-title {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 70px;
}
.about-content-container .about-team .copyright-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.about-content-container .about-team .copyright-box .copyright-item-box {
  width: 20%;
  box-sizing: border-box;
  padding: 10px;
}
.about-content-container .about-team .copyright-box .copyright-item-box img {
  width: 100%;
  border-radius: 3px;
  transition: 0.5s ease;
  cursor: pointer;
}

.copyright-mask {
  width: 100vw;
  background: rgba(17, 17, 17, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  position: fixed;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 101;
  box-sizing: border-box;
  padding: 30px 60px;
  transition: 0.3s ease;
}
.copyright-mask .copyright-tips {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.copyright-img {
  height: calc(100vh - 200px);
  max-height: calc(100vh - 200px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  visibility: hidden;
  z-index: 102;
  max-width: calc(100vw - 60px);
  transition: 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.copyright-img::-webkit-scrollbar {
  display: none;
}
.copyright-img img {
  max-height: 100%;
  max-width: calc(100vw - 60px);
}
@media screen and (max-height: 600px) {
  .copyright-img {
    height: calc(100vh - 120px);
    max-height: none;
    top: 20px;
    border-radius: 0;
  }
}/*# sourceMappingURL=about.css.map */