  .my-lg-6 {
    margin-top: 5rem!important;
    margin-bottom: 5rem!important
  }
    
  .bg-skew {
    position: relative
  }
  
  .bg-skew:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: skewY(-12deg);
    transform-origin: top left;
    z-index: -1
  }
  
  .bg-skew-light:before {
    background-color: #f8f9fa
  }
  
  .card-hover:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transform: translateY(-3px)
  }
  
  .link-cta {
    border-bottom: 2px solid #006aff;
    color: #343a40;
    font-size: .875rem;
    letter-spacing: 1px;
    padding-bottom: 2px;
    text-transform: uppercase
  }
  
  .link-cta:hover {
    color: #006aff;
    text-decoration: none
  }
  
  .link-tag {
    text-decoration: underline
  }
  
  .link-tag:hover{
    text-decoration: none
  }
  
  .card-title a {
    color: #212529
  }
  
  .card-title a:focus, .card-title a:hover {
    color: #006aff;
    text-decoration: none
  }
  



/*
2024-12-11
之前这个文件一直没有使用到，今天加上，并增加下面样式
*/

/* 修改列表项的样式 */
/* list-style-type 可以改成 disc, circle, square, 或者自定义 */
/* margin-left 调整缩进 */
/* padding-left 调整内容和标识符的距离 */
li {
    list-style-type: disc; 
    margin-left: 1em;
    padding-left: 0.5em;
}

li li {
    list-style-type: circle;
    margin-left: 1em;
    padding-left: 0.5em;
}

/* 如果是有序列表（数字） */
/* list-style-type 可改为 decimal lower-alpha, lower-roman 等 */
ol li {
    list-style-type: decimal; 
    margin-left: 1em;
    padding-left: 0.5em;
}


/* 自定义未排序列表项前的标识符 */
/*ul li::before {
    content: "📌";
    color: #007acc;
    margin-right: 0.5em;
}*/

/* 自定义有序列表项前的标识符 */
/*ol li::before {
    content: "🔢";
    color: #007acc;
    margin-right: 0.5em;
}
*/

















