.t888-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .t888-tip-item {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.125rem;
  }
  
  .t888-tip-item .tip-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .t888-tip-item.style-bordered .tip-number {
    background-color: #ffffff;      
    border: 1px solid #e3e3e3;
    color: #000000;
  }
  
  .t888-tip-item.style-filled .tip-number {
    background-color: #b88166;
    border: none;
    color: #ffffff;
  }
  
  .t888-tip-item .tip-content {
    font-size: 0.875rem;
    line-height: 30px;
    color: var(--primary-color);
    opacity: 0.8;
  }
  