<style>
  body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #f6fafd;
    font-family: 'Segoe UI', '微软雅黑', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container {
    width: 90%;
    max-width: 1000px;
    min-height: 380px;
    margin: 20px auto;
    background: transparent; /* 完全透明背景 */
    border-radius: 18px;
    box-shadow: 0 5px 24px 0 rgba(74,120,255,0.08), 0 2px 8px rgba(0,0,0,0.04);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.3); /* 保留浅色边框 */
  }

  .content-inner {
    flex: 1;
  }

  .header,
  .info-list {
    position: relative;
    z-index: 2;
  }

  .header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .header .emoji {
    font-size: 2.2em;
    margin-right: 15px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
  }

  .header .title {
    font-size: 2em;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    text-shadow: none;
    padding: 5px 0;
  }

  .info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.1em;
    line-height: 1.6;
  }

  .info-list li {
    margin: 14px 0;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.4); /* 保留列表项半透明背景 */
    transition: all 0.3s ease;
  }

  .info-list li:hover {
    background-color: rgba(255,255,255,0.7);
    transform: translateX(5px);
  }

  /* 为每行设置不同颜色 */
  .info-list li:nth-child(1) { color: #9B59B6; } /* 紫色 */
  .info-list li:nth-child(2) { color: #2C3E50; } /* 深蓝色 */
  .info-list li:nth-child(3) { color: #3498DB; } /* 天蓝色 */
  .info-list li:nth-child(4) { color: #2ECC71; } /* 淡绿色 */
  .info-list li:nth-child(5) { color: #E74C3C; } /* 红色 */
  .info-list li:nth-child(6) { color: #F39C12; } /* 橙色 */

  .info-list .icon {
    font-size: 1.3em;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
  }

  /* 图标颜色与文字颜色匹配 */
  .info-list li:nth-child(1) .icon { color: #9B59B6; }
  .info-list li:nth-child(2) .icon { color: #2C3E50; }
  .info-list li:nth-child(3) .icon { color: #3498DB; }
  .info-list li:nth-child(4) .icon { color: #2ECC71; }
  .info-list li:nth-child(5) .icon { color: #E74C3C; }
  .info-list li:nth-child(6) .icon { color: #F39C12; }

  .highlight {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: none;
  }

  .counter-block {
    margin-top: 24px;
    text-align: center;
    z-index: 2;
    position: relative;
  }

  @media (max-width: 768px) {
    .container {
      width: 94%;
      padding: 20px;
      min-height: 340px;
    }
    .header .emoji {
      font-size: 1.8em;
    }
    .header .title {
      font-size: 1.6em;
    }
    .info-list {
      font-size: 1em;
    }
    .info-list li {
      margin: 12px 0;
      padding: 6px 10px;
    }
  }
</style>
