<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.tn_tab_bg {
    /*background: #F8F8F8;*/
    background: #bbb;
}

.tn_tab_color {
    color: #fff;
    font-size: 14px;
}


/*使用伪类样式增加一下红绿蓝的效果，直接添加到默认的黑色里边吧。这样别人能体验到更新
  ，然后在增加两个纯黑，纯白的设置。
*/

.tabstyle {
    position: relative;
}

.tabstyle:after {
    display: inline-block;
    z-index: 999;
    content: " ";
    position: absolute;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #f92900 !important;
    width: 11px;
    height: 11px;
    -webkit-box-shadow: 18px 0 #fbc606, 36px 0 #26c73d;
    box-shadow: 18px 0 #fbc606, 36px 0 #26c73d;
    right: 52px;
    top: 14px;
    border-color: transparent;
}
</pre></body></html>