:root{
    --primary-color: rgba(45, 122, 255, 0.96);
    --primary-color-active : rgba(45, 122, 255, 0.8);
    --public-fontcolor:#363636;
    --public-fontwhite:#fff;
    --public-fontgray:#999;
    --public-bgfontgray:#9999994f;
    --public-backgroundwhite:#f7f9fe;
    --public-color-theme:#425AEF;
    --sidebar-bg:#fff;
    --bg-image-desktop-mini:url(/static/img/background.jpg);
    --bg-image-desktop-body:url(/static/img/background2.jpg);
    --bg-image-desktop: url(/static/img/background.gif);
    --bg-image-mobile: url(/static/img/background.jpg);
    --index-title-info-top-height :65%;
}
/* 公共样式 */
html,body{
    display: block;
    margin:0;
    padding:0;
    width: 100%;
     overflow-x: hidden;
}
a{
    text-decoration: none;
    color: var(--public-fontcolor);
}
.a-article:hover{
    color: var(--primary-color);
}

/* PJAX平滑过渡样式 */
#pjax-container {
    transition: opacity 0.3s ease-in-out;
}
#pjax-container.fade-out {
    opacity: 0;
}
#pjax-container.fade-in {
    opacity: 1;
}