/* 关于我们 独立页面样式，基于 pages/about.vue 中的 scoped SCSS 改写 */

body {
  background-color: #fff;
}

.about-page .page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.about-page .content_bg {
  height: 828px;
  width: 100%;
  margin-top: 180px;
  background-image: url('/assets/img/about/bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.about-page .content_info {
  margin-top: -686px;
}

.about-page .content_title .title {
  display: flex;
  margin-bottom: 24px;
}

.about-page .content_title .title img {
  width: 17px;
  height: 11px;
  margin: 8px 8px 0 0;
}

.about-page .content_title .title span {
  font-size: 30px;
  font-family: 'Source-Han-Sans-CN', 'Microsoft YaHei', sans-serif;
  font-weight: 500;
  text-align: left;
  color: #0e0f11;
}

.about-page .content_remak {
  font-size: 18px;
  font-family: 'Source-Han-Sans-CN', 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  text-align: left;
  color: #5b6170;
  margin-top: 32px;
}

.about-page .content_video {
  position: relative;
  width: 100%;
  margin-top: 68px;
}

.about-page .content_video .video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.about-page .content_video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .content_video .play-btn .icon {
  font-size: 40px;
  color: #fff;
}

.about-page .content_video .play-btn .ripple {
  position: absolute;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: about-video-animate 2.5s linear infinite;
  animation-delay: calc(1s * var(--i));
}

@keyframes about-video-animate {
  0% {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}

.about-page .center {
  padding: 210px 0;
  position: relative;
}

.about-page .center_line {
  border: 1px solid #a7a7a7;
}

.about-page .center_list {
  width: 100%;
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 4%;
  box-sizing: border-box;
}

.about-page .center_item .img {
  width: 147px;
  height: 147px;
  margin-bottom: 32px;
}

.about-page .center_item .img img {
  width: 100%;
  height: 100%;
}

.about-page .center_item h3 {
  font-size: 22px;
  font-family: 'PingFang HK', 'Microsoft YaHei', sans-serif;
  font-weight: 500;
  text-align: center;
  color: #0e0f11;
  margin: 0;
}

.about-page .foot_info {
  margin-top: 60px;
}

.about-page .foot_info .header_title .title {
  display: flex;
  margin-bottom: 24px;
}

.about-page .foot_info .header_title .title img {
  width: 17px;
  height: 11px;
  margin: 8px 8px 0 0;
}

.about-page .foot_info .header_title .title h3 {
  font-size: 30px;
  font-family: 'Source-Han-Sans-CN', 'Microsoft YaHei', sans-serif;
  font-weight: 500;
  text-align: left;
  color: #0e0f11;
  margin: 0;
}

.about-page .foot_info .header_title .con {
  font-size: 20px;
  font-family: 'Source-Han-Sans-CN', 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  text-align: left;
  color: #5b6170;
}

.about-page .imgLists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
  margin: 125px 0;
}

.about-page .imgLists .img {
  width: 100%;
  height: 397px;
}

.about-page .imgLists .img img {
  width: 100%;
  height: 100%;
}

.about-page .operate .headerTitle {
  padding: 106px 0;
  background-color: #f1f3fb;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page .operate .headerTitle .chinese-text {
  font-size: 32px;
  font-family: 'OPPOSANS-B', 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  text-align: center;
  color: #0e0f11;
  margin-bottom: 16px;
}

.about-page .operate .headerTitle .english-text {
  font-size: 18px;
  font-family: 'Roboto-Regular', Arial, sans-serif;
  font-weight: 500;
  text-align: center;
  color: #474de3;
}

.about-page .perate_info .merge-section {
  position: relative;
  display: flex;
  width: 100%;
  height: 708px;
  overflow: hidden;
  background: #f7f8fa;
}

.about-page .merge-section .left-box {
  position: absolute;
  left: 0;
  width: 62%;
  height: 100%;
  background: #2f53eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  z-index: 1;
  clip-path: polygon(0 0, calc(100% - 147px) 0, 100% 100%, 0 100%);
}

.about-page .merge-section .right-box {
  position: absolute;
  width: 46%;
  right: 0;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 147px 100%);
}

.about-page .merge-section .right-box img {
  width: 100%;
  height: 100%;
}

.about-page .merge-section .icon-item {
  text-align: center;
  width: 17%;
}

.about-page .merge-section .icon-item p {
  font-size: 24px;
  font-family: 'PingFang HK', 'Microsoft YaHei', sans-serif;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  margin-top: 36px;
}

.about-page .merge-section .circle {
  width: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .merge-section .circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-page .lshb {
  position: relative;
  margin-top: 160px;
}

.about-page .lshb .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page .lshb .overlay h3 {
  font-size: 47px;
  font-family: 'OPPOSANS-B', 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}

.about-page .lshb .overlay p {
  font-size: 24px;
  font-family: 'Source-Han-Sans-CN', 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  width: 60%;
  margin: 0 auto;
}

.about-page .lshb_content .lshb_item {
  width: 100%;
  height: 649px;
}

.about-page .lshb_content .lshb_item img {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .about-page .content_bg {
    height: 500px;
  }

  .about-page .content_info {
    margin-top: -450px;
  }

  .about-page .content_title .title span {
    font-size: 20px;
  }

  .about-page .content_remak {
    margin-top: 16px;
    font-size: 16px;
  }

  .about-page .content_video {
    margin-top: 30px;
  }

  .about-page .foot_info {
    margin-top: 30px;
  }

  .about-page .foot_info .header_title .title h3 {
    font-size: 18px;
  }

  .about-page .foot_info .header_title .con {
    font-size: 16px;
  }

  .about-page .imgLists {
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 0 50px;
    gap: 10px;
  }

  .about-page .imgLists .img {
    height: auto;
  }

  .about-page .center {
    padding: 140px 0;
  }

  .about-page .center_list .center_item .img {
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
  }

  .about-page .center_list .center_item h3 {
    font-size: 20px;
  }

  .about-page .operate .headerTitle {
    padding: 20px 0;
  }

  .about-page .operate .headerTitle .chinese-text {
    font-size: 18px;
  }

  .about-page .operate .headerTitle .english-text {
    font-size: 16px;
  }

  .about-page .lshb {
    margin-top: 30px;
  }

  .about-page .lshb_content .lshb_item {
    height: 400px;
  }

  .about-page .lshb .overlay h3 {
    font-size: 22px;
  }

  .about-page .lshb .overlay p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about-page .content_bg {
    margin-top: 54px;
  }

  .about-page .center {
    padding: 80px 0;
  }

  .about-page .center_list {
    top: 25%;
  }

  .about-page .center_list .center_item .img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .about-page .center_list .center_item h3 {
    font-size: 16px;
  }

  .about-page .lshb {
    margin-top: 20px;
  }

  .about-page .lshb_content .lshb_item {
    height: 200px;
  }

  .about-page .lshb .overlay h3 {
    font-size: 18px;
  }

  .about-page .lshb .overlay p {
    width: 80%;
    font-size: 14px;
  }
}

