.qicheng_global_presence {
  padding-top: var(--title-font-padding-top);
  padding-bottom: calc(var(--border-radius-lg) + max(2.5rem, 40px));
  background-color: var(--second-color);
  position: relative;
  z-index: 9;
}

/* 标题区域 */
.qicheng_global_presence .presence-header {
  text-align: center;
  margin-bottom: max(3.33333rem, 40px);
}

.qicheng_global_presence .presence-title {
  color: var(--text-color-white);
  font-family: var(--font-family);
  font-size: var(--title-font-size-xl);
  font-style: normal;
  font-weight: var(--title-font-weight);
  line-height: normal;
  letter-spacing: -0.7px;
  margin-bottom: 20px;
}

.qicheng_global_presence .presence-subtitle {
  color: var(--text-color-white);
  font-family: var(--font-family);
  font-size: var(--text-font-size-xxl);
  font-style: normal;
  font-weight: 500;
  line-height: 124%;
}

/* 三列内容区域 */
.qicheng_global_presence .presence-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(1.11111rem, 20px);
  margin-bottom: max(3.33333rem, 40px);
}

.qicheng_global_presence .presence-item {
  display: flex;
  flex-direction: column;
  gap: max(1.11111rem, 20px);
  border-radius: var(--border-radius-md);
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: max(1.21111rem, 30px) max(1rem, 24px);
  position: relative;
}

.qicheng_global_presence .presence-item::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: max(0.55555rem, 10px);
  width: 100%;
  background-color: var(--primary-color);
  z-index: 0;
}

/* 列表项标题 */
.qicheng_global_presence .presence-item-title {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--title-font-size-xsm);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

/* 列表样式 */
.qicheng_global_presence .presence-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: max(1rem, 15px);
  position: relative;
  z-index: 2;
  min-height: 16em;
}

.qicheng_global_presence .presence-list-item {
  display: flex;
  align-items: flex-start;
  gap: max(0.55556rem, 10px);
}

.qicheng_global_presence .presence-list-icon {
  width: max(1.2em, 20px);
  height: max(1.2em, 20px);
  /* transform: translateY(0.2em); */
  object-fit: contain;
  flex-shrink: 0;
}

.qicheng_global_presence .presence-list-text {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-xl);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* 图片样式 */
.qicheng_global_presence .presence-item-image {
  position: absolute;
  z-index: 1;
  right: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 35%;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  opacity: 1;
}

.qicheng_global_presence .presence-item-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.presence-item:hover .presence-item-image img {
  transform: scale(1.05);
}

/* 底部按钮 */
.qicheng_global_presence .presence-footer {
  text-align: center;
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
  .qicheng_global_presence .presence-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .qicheng_global_presence .presence-item-list {
    min-height: 14em;
  }
}

@media screen and (max-width: 552px) {
  .qicheng_global_presence .presence-content {
    grid-template-columns: 1fr;
    gap: max(2.22222rem, 30px);
  }
  .qicheng_global_presence .presence-item-list {
    min-height: 12em;
  }
}
