/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* banner */
.banner {
  background-color: var(--white);
  padding: 0 0 20px 0;
}
.banner-bg {
  background: url('../img/world/up.png') no-repeat center;
  height: 300px;
  color: var(--white);
}
.banner-bg h1 {
  margin: 0;
  padding: 0;
  font-size: 36px;
  line-height: 60px;
}
.banner-content {
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-items: center; /* 同时垂直和水平居中 */
  height: 300px;
}
.banner-bg .banner-content ul {
  display: -ms-grid;
  display: grid;
  list-style-type: none;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 0;
  width: auto;
}
.banner-bg .banner-content ul li .number {
  font-size: 36px;
}
.banner-bg .banner-content ul li .text {
  font-size: 18px;
}

/* 携手客户 共塑智造未来 */
.clients {
  padding: 40px 0;
  background-color: var(--white);
}
.clients-list {
  display: -ms-grid;
  display: grid;
}
.clients-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px 0;
  padding: 10px 0;
  border-bottom: 1px solid #989898;
}

/* 分页容器 */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  gap: 5px;
}
.article-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  background-color: #fff;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.article-box .article-left {
  width: 60%;
  padding: 20px;
}
.article-box .article-left .title {
  font-weight: 700;
  font-size: 20px;
  margin-top: 0px;
}
.article-box .article-left .text {
  font-size: 16px;
  margin: 20px 0;
  line-height: 25px;
  white-space: pre-wrap; /* 保留空格和换行 */
  text-indent: 2em; /* 首行缩进2个字符 */
}
.article-box .article-right {
  width: 40%;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
  }
}
.article-right {
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.clients-item:hover {
  background-color: rgba(31, 88, 167, 0.086);
}
.clients-item:hover .article-right img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
/* 分页按钮基础样式 */
.page-btn,
.page-number {
  padding: 5px 10px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  min-width: 32px;
  text-align: center;
  margin: 0 5px;
}

/* 当前页码样式 */
.page-number.active {
  background: #1890ff;
  color: white;
  border-color: #1890ff;
}

/* 禁用按钮样式 */
.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 全球市场 构建共赢生态 */
.logo-show {
  opacity: 0;
  padding: 40px 0;
  background-color: var(--white);
}
.logo-show .logo-list-container {
  overflow: hidden;
  -webkit-mask-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(10%, #000),
    color-stop(90%, #000),
    to(transparent)
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(10%, #000),
    color-stop(90%, #000),
    to(transparent)
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}
.clients-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: 600;
}
.clients-logos {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  margin-bottom: 20px;
  img {
    width: 100%;
    height: 100%;
  }
}
.client-logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .banner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .banner-bg .banner-content ul {
    display: none;
  }
  .clients .clients-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr; /* IE10/11写法 */
    grid-template-columns: repeat(1, 1fr);
  }
  .clients .article-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; /* 水平反向 */
  }
  .article-box .article-left .title {
    text-align: center;
  }
  .article-box .article-left {
    width: auto;
  }
  .article-box .article-right {
    width: auto;
  }
}
