@font-face {
  font-family: "PingFang";
  src: url("../fonts/PingFang Regular.ttf");
}

/* 动态根字体大小 - 基于设计稿宽度1920px */
/* 在1920px宽度时，1rem = 100px */
/* 计算公式：设计稿宽度1920px / 100 = 19.2，所以 font-size = 100vw / 19.2 */
html {
  font-size: calc(100vw / 19.2);
  /* 设置最小和最大字体大小，避免极端情况 */
  /* 最小：移动端320px时，font-size约为16.67px (320/19.2) */
  /* 最大：超大屏3840px时，font-size为200px (3840/19.2)，限制为10rem避免过大 */
  font-size: clamp(0.5rem, calc(100vw / 19.2), 10rem);
}


/*!* 全局样式 *!*/
/** {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  box-sizing: border-box;*/
/*}*/

/*body {*/
/*  font-family: "PingFang", sans-serif;*/
/*  color: #000;*/
/*  line-height: 1.6;*/
/*  overflow-x: hidden;*/
/*  background-color: #fff;*/
/*}*/


.international-business-section {
  padding: 1.5rem 0;
  background-color: #fff;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  width: 12rem;
  margin: 0 auto 0.6rem;
}

.content-section:last-child {
  margin-bottom: 0;
}

.text-content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  padding: 0.04rem 0;
}
.cyjdcontainer{
  margin: 1rem 0;
}
.description {
  font-family: "PingFang";
  font-weight: 400;
  font-size: 0.18rem;
  line-height: 1.77em;
  text-align: left;
  width: 12rem;
  color: rgba(0, 0, 0, 0.6);
  text-indent: 2em;
  text-align: justify;
}

.image-content {
  width: 12rem;
  height: 5.18rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0.1rem;
  box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.1);
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.05);
}

.content-section:nth-child(2) .image-content {
  height: 4.97rem;
}