/* 关于我们 样式 */
* {
  box-sizing: border-box;
}

.wrapper {
  position: relative;
}

.wrapper .gk-footer {
  z-index: 100;
  background-image: url(https://gksk.obs.cn-north-4.myhuaweicloud.com/website/image/footer_01.png);
  background-position: center 80%;
}

.wrapper .gk-footer .bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000040;
  z-index: 1;
}

.wrapper .container {
  position: relative;
  padding-bottom: 13.9rem;
  overflow-y: hidden;
}

.wrapper .container .banner-box {
  position: relative;
  width: 100%;
  height: 33.33rem;
  z-index: 1;
  /* border: 1px solid #fff; */
  background-image: url(https://gksk.obs.cn-north-4.myhuaweicloud.com/website/image/about_banner_01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  color: #fff;
}

.banner-box .bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.wrapper .container .content-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 33.33rem;
  padding-top: 17.8rem;
  z-index: 100;
  color: #fff;
}

.content-box .title {
  font-size: 3.1rem;
  margin-bottom: 1rem;
  text-align: center;
  z-index: 100;
}

.content-box .desc {
  font-size: 0.9rem;
  margin-top: 0.25rem;
  text-align: center;
  z-index: 100;
}

.container .container-box {
  display: flex;
  justify-content: space-between;
  padding: 3.3rem 5rem 0 6.7rem;
  width: 100%;
  background-color: #fff;
  color: #000;
}

.container .box-title {
  font-size: 2.4rem;
  font-weight: 700;
  padding: 5.6rem 0 0 6.7rem;
}

.container-box .title {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.container-box .title-sec {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 0 0.1rem 0;
}

.container-box .text {
  font-size: 1rem;
  line-height: 1.55rem;
  text-indent: 2em;
}

/* 公司概况 */
.container .company-box .company-left {
  width: 48%;
}

.container .company-box .company-right {
  width: 50%;
}

.container .company-box .company-right img {
  width: 100%;
}

/* 新闻 */
.container .news-box {
  margin-bottom: 5rem;
}
.container .news-box .news-left {
  width: 49%;
}

.container .news-box .news-left img {
  width: 100%;
}

.container .news-box .news-right {
  width: 48%;
}

.container .news-box .news-right .text {
  font-size: 1.11rem;
  color: #333;
}

/* 荣誉 */
.container .honor-box {
  position: relative;
  width: calc(100% - 6.7rem - 5rem);
  margin: 5rem 5rem 10rem 6.7rem;
  overflow: hidden;
}

.scroll-wrapper {
  display: flex;
  animation: loop-scroll 30s linear infinite;
  /* 动画持续时间和循环方式 */
}

.scroll-wrapper img {
  width: 14.22rem;
  height: 20rem;
  margin-right: 5.56rem;
  flex-shrink: 0;
}

@keyframes loop-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-19.78rem * 12));
    /* 移动的距离为 11 个图片的宽度 */
  }
}