@import url("./public.css");
.about-company-box {
}
/* 通用标题 */
.about-plate-title {
  font-size: 30px;
  text-align: center;
}
/* 通用描述 */
.about-plate-desc {
  font-size: 18px;
  text-align: center;
  color: #858e9b;
}

.about-company-box .about-introduce {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
  height: auto;
  width: 1200px;
}
.about-introduce .introduce-img {
  width: 30vw;
  align-self: stretch; /* 关键属性：拉伸高度 */
  height: auto; /* 可选，确保高度自适应 */
  min-height: 100%; /* 兼容性保障 */
}
.about-introduce .introduce-text {
  flex-shrink: 0;
  margin-left: 50px;
  width: 30vw;
}

.introduce-text .introduce-memo {
  color: #465871;
  line-height: 1.5em;
  margin-top: 30px;
  font-size: 14px;
}

.introduce-memo .introduce-memo-title {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 10px;
}

/* 发展历程 */
.about-course {
}
.about-course .course-memo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin-top: 20px;
}

.course-memo-img {
  width: 1200px;
  height: 100%;
}

/* 销售网络 */
.about-contact {
  margin-top: 50px;
}

.contact-memo {
  margin: 30px auto;
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.contact-memo .contact-memo-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.contact-memo-item .contact-memo-item-top {
  width: 100%;
  height: 250px;
}
.contact-memo-item-top .contact-memo-item-top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  /* background-color: #4a88dd; */
  /* background-image: url("/static/picture/contact.png");
  border-radius: 5px;
  height: 100%; */
}
/* 国内销售 */
.contact-memo-item-top .contact-memo-item-top-content-nation {
  background-image: url("/static/picture/nation.jpg");
  background-size: cover; /* 自动缩放图片，使其完全覆盖容器 */
  background-position: center; /* 图片居中显示 */
  background-repeat: no-repeat; /* 不重复图片 */
  border-radius: 5px;
  height: 100%;
}

/* 面向世界 */
.contact-memo-item-top .contact-memo-item-top-content-world {
  background-image: url("/static/picture/world.png");
  background-size: cover; /* 自动缩放图片，使其完全覆盖容器 */
  background-position: center; /* 图片居中显示 */
  background-repeat: no-repeat; /* 不重复图片 */
  border-radius: 5px;
  height: 100%;
}

.contact-memo-item-top-content .contact-memo-item-top-content-title {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
}
.contact-memo-item-top-content .contact-memo-item-top-content-desc {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
}
.contact-memo-item .contact-memo-item-bottom {
  padding: 30px 15px 20px;
}

.contact-memo-item-bottom .contact-memo-item-bottom-li {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.contact-memo-item-bottom-li .contact-memo-item-bottom-li-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-memo-item-bottom-li .contact-memo-item-bottom-li-val {
  color: #465871;
  font-size: 14px;
}

/* 公司资质 */
.about-zzzs {
  margin-top: 50px;
}
.about-zzzs .zzzs-memo {
  width: 1200px;
  /* height: 800px; */
  background-color: #465871;
  margin: 20px auto;
}

/*  */
.about-core {
  margin-top: 50px;
}
.about-core .core-memo {
  width: 100%;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  /* 通用标题 */
  .about-plate-title {
    font-size: 5.6vw;
    text-align: center;
  }
  /* 通用描述 */
  .about-plate-desc {
    font-size: 3.6vw;
    text-align: center;
    color: #858e9b;
  }
  .about-company-box .about-introduce {
    display: block;
    margin: 50px auto;
    height: auto;
    width: auto;
  }
  .about-introduce .introduce-img {
    width: 50vw;
    align-self: stretch; /* 关键属性：拉伸高度 */
    height: auto; /* 可选，确保高度自适应 */
    min-height: 100%; /* 兼容性保障 */
    margin: 0 auto;
  }
  .about-introduce .introduce-text {
    flex-shrink: 0;
    margin: 0 20px;
    width: auto;
  }

  .introduce-text .introduce-memo {
    color: #465871;
    line-height: 1.5em;
    margin-top: 30px;
    font-size: 14px;
  }
  .introduce-memo .introduce-memo-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
  }

  /* 发展历程 */
  .about-course .course-memo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
  .course-memo-img {
    width: 100%;
    height: 100%;
  }

  /* 销售网络 */
  .contact-memo {
    margin: 30px auto;
    width: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }

  .contact-memo .contact-memo-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }
  .contact-memo-item .contact-memo-item-top {
    width: 100%;
    height: 120px;
  }
  .contact-memo-item-top .contact-memo-item-top-content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    /* background-color: #4a88dd; */
  }

  .contact-memo-item-top-content .contact-memo-item-top-content-title {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
  }
  .contact-memo-item-top-content .contact-memo-item-top-content-desc {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
  }
  .contact-memo-item .contact-memo-item-bottom {
    padding: 15px 20px;
  }

  /* 公司资质 */
  .about-zzzs .zzzs-memo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
  .zzzs-memo-img {
    width: 100%;
    height: 100%;
  }
}
