
/* 卡片列表 */
.pub-card-list {
}

/* 卡片项 */
.pub-card-item {
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  padding: 24px;
}
.pub-card-list .pub-card-item:last-child {
  margin-bottom: 0;
}

.pub-card-item:hover {
  box-shadow: 0 4px 20px rgba(224,224,224,0.6);
}

/* 卡片上部分 - 灰色底色 */
.pub-card-top {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  padding: 20px 24px;
}

/* 卡片标题 */
.pub-card-title {
  font-size: 16px;
font-family: PingFang SC, PingFang SC-Regular;
font-weight: Regular;
text-align: left;
color: #666666;
line-height: 25px;
}

/* 卡片分割线 */
.pub-card-hr {
  margin-top: 12px;
  height: 1px;
  background-color: #e0e0e0;
}

/* 卡片描述 - 带图标 */
.pub-card-desc {
  margin-top: 12px;
  display: flex;
}

.pub-card-icon {
  flex: none;
  width: 36px;
  height: 36px;
  margin-right: 25px;
}

.pub-card-desc-text {
  font-size: 20px;
font-family: PingFang SC, PingFang SC-Semibold;
font-weight: bold;
text-align: left;
color: #333333;
line-height: 28px;
}

/* 卡片中间部分 - 浅绿色底色 */
.pub-card-middle {
  margin-top: 16px;
  background-color: rgba(0,199,191,0.12);
  padding: 16px 24px;
  box-sizing: border-box;
  position: relative;
}

/* 中间部分竖条装饰 */
.pub-card-middle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #004b72;
  border-radius: 4px;
}

.pub-card-content {
  font-size: 16px;
  font-family: PingFang SC, PingFang SC-Regular;
  font-weight: Regular;
  text-align: left;
  color: #333333;
  line-height: 25px;
}

/* 卡片下部分 */
.pub-card-bottom {
  margin-top: 16px;
  display: flex;
  align-items: center;
}

/* 卡片链接文字 - 带下划线 */
.pub-card-link {
  font-size: 16px;
font-family: PingFang SC, PingFang SC-Regular;
font-weight: Regular;
text-decoration: underline;
text-align: left;
color: #004b72;
line-height: 25px;
  text-decoration: underline;
  cursor: pointer;
}


.pub-card-arrow {
  margin-left: 19px;
  width: 20px;
  height: 20px;
  flex: none;
}

/* ========== 移动端适配 ========== */

@media (max-width: 1199px) {
  /* 内容容器移动端适配 */
  .app-content-wrap {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* 卡片项 */
  .pub-card-item {
    padding: 16px;
  }

  /* 卡片标题 */
  .pub-card-title {
    font-size: 14px;
    line-height: 20px;
  }

  /* 卡片分割线 */
  .pub-card-hr {
    margin-top: 12px;
  }

  /* 卡片图标 */
  .pub-card-icon {
    width: 28px;
    height: 28px;
    margin-right: 16px;
  }

  /* 卡片描述文本 */
  .pub-card-desc-text {
    font-size: 16px;
    line-height: 22px;
  }

  /* 卡片中间部分 */
  .pub-card-middle {
    margin-top: 16px;
    padding: 12px 16px;
  }

  /* 中间内容 */
  .pub-card-content {
    font-size: 14px;
    line-height: 20px;
  }

  /* 卡片底部 */
  .pub-card-bottom {
    margin-top: 16px;
  }

  /* 卡片链接 */
  .pub-card-link {
    font-size: 14px;
    line-height: 20px;
  }

  /* 卡片箭头 */
  .pub-card-arrow {
    width: 16px;
    height: 16px;
    margin-left: 12px;
  }
}
