/* var.css */
/*:root {*/
/*    --vp-c-brand-1: #3451b2;*/
/*    --vp-c-brand-2: #3a5ccc;*/
/*    --vp-c-brand-3: #5672cd;*/
/*}*/

/*.dark {*/
/*    --vp-c-brand-1: #3dd68c;*/
/*    --vp-c-brand-2: #30a46c;*/
/*    --vp-c-brand-3: #298459;*/
/*}*/
/*以前的vp-c-brand已弃用*/

/* 头像点亮：无论是否在彩虹模式，悬停都会亮，
      但颜色会自动跟随 --rainbow-prev */
.VPHero:hover .image-src {
    filter: drop-shadow(0 0 20px var(--rainbow-prev)) brightness(1.1) !important;
    transition: filter 0.5s ease;
}

/* 给图标加呼吸跳动 */
.VPFeature .icon {
    filter: drop-shadow(0 0 5px rgba(93, 155, 157, 0.3));
    animation: heartbeat 2s infinite ease-in-out;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/*  --vp-button-brand-hover-border: #F6CEEC;*/
/*  --vp-button-brand-hover-text: #fff;*/
/*  --vp-button-brand-hover-bg: #D939CD;*/

/*  --vp-button-brand-active-border: #F6CEEC;*/
/*}*/

/* VPFeatures 页卡悬浮效果 */
.VPFeatures .items .item {
    transition: transform 0.3s;
}

.VPFeatures .items .item:hover {
    transform: translateY(-5px);
}

/*.VPDoc h1 {*/
/*    background: -webkit-linear-gradient(10deg, #0e2dc0 15%, #13ad0e 15%);*/
/*    background-clip: text;*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*}*/
.vp-doc a {
    /*text-decoration: none;*/
}