/* 文章内链接 */
li:not([class]) a:not([class]),
p:not([class]) a:not([class]),
table a:not([class]) {
  /*color: var(--theme-link);*/
  padding-bottom: 3px; /* 增加底部padding */
  padding-right: 1px;
  margin-right: 2px;
  background: linear-gradient(0, var(--theme-link), var(--theme-link)) no-repeat center bottom / 100% 2px;
}
/* 选中文本：使用超链接高亮的背景色 */
::selection {
  background: var(--theme-link-opa);
}
/* 添加Mac风格代码块 */
.highlight {  
    background: #21252b;  
    border-radius: 5px;  
   /* box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.4);  */
    padding-top: 30px;  
    position: relative; 需要添加这个属性，以便伪元素能够相对于这个元素定位  
	
}  
  
.highlight::before {  
    background: #fc625d; 
    border-radius: 50%;  
    box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;  
    content: ' ';  
    height: 12px;  
    left: 12px;  
    margin-top: -20px;  
    position: absolute;  
    width: 12px;  

}
	  