.ol-numbered {
    counter-increment: ol-counter; /* 计数器递增 */
    margin-bottom: 10px; /* 列表项的下边距 */
    position: relative; /* 为后续定位圆圈准备 */
    padding-left: 30px; /* 为圆圈留出空间 */
}

.ol-numbered::before {
    content: counter(ol-counter); /* 设置前缀数字 */
    position: absolute; /* 绝对定位 */
    left: 0; /* 圆圈居左 */
    width: 24px; /* 圆圈的宽度 */
    height: 24px; /* 圆圈的高度 */
    background-color: #7fc600; /* 圆圈的背景颜色 */
    color: white; /* 数字的颜色 */
    border-radius: 50%; /* 使其成为圆形 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold; /* 设置数字的字体粗细 */
}

.tc-container {
  width: 100%;
  height: 40rem;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 2rem;
}

.tc__img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .tc-container {
    width: 100%;
    height: 15rem;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 2rem;
  }
}

.cn-wrapper .pokemon-tcg-title {
  position: relative;
  background: #4050b5;
  color: #fff;
  padding: 20px 30px;
  margin: 40px auto 30px;
  /* border-radius: 8px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  max-width: 880px;
}

.cn-wrapper .pokemon-tcg-title h1 {
  margin: 0;
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

/* 响应式调整 */
@media screen and (max-width: 767px) {
  .cn-wrapper .pokemon-tcg-title {
    padding: 15px 20px;
    margin: 30px auto 20px;
  }
  
  .cn-wrapper .pokemon-tcg-title h1 {
    font-size: 2.2rem;
  }
  
  .cn-wrapper .pokemon-tcg-title::before {
    background-size: 60px;
    background-position: right 10px center;
  }
}

.page-target {
  margin: 20px 0 30px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.page-target__list {
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 0;
}

.page-target__element a {
  display: block;
  padding: 15px 20px;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-target__element a:hover {
  background-color: #e0e0e0;
}

@media screen and (max-width: 767px) {
  .page-target__list {
    flex-direction: column;
  }

  .page-target__element a {
    border-bottom: 1px solid #ddd;
  }

  .page-target__element:last-child a {
    border-bottom: none;
  }
}