/* 让 skillbar 的样式优先于 index.css */
#page .skillbox {
    width: 100%;
}

/* 整条技能条 */
#page .skillbox .skillbar {
    position: relative;
    display: block;
    max-width: 360px;
    margin: 15px 10px;
    height: 30px;
    border-radius: 35px;
    overflow: hidden;

    /* 磨砂玻璃底色 */
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 进度条本体 */
#page .skillbox .skillbar .skillbar-title {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    white-space: nowrap;
    color: #ffffff;
}

/* 进度条内部内容 */
#page .skillbox .skillbar .skillbar-title span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 14px 0 10px;
    line-height: 30px;
    border-radius: inherit;

    /* 让它更像玻璃 */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* 图标链接 */
#page .skillbox .skillbar .skillbar-title span a {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 8px;
    text-decoration: none;
    color: inherit;
}

/* 图标 */
#page .skillbox .skillbar .skillbar-title span a img {
    width: 23px;
    height: 23px;
    display: block;
    object-fit: contain;
    transform: translateY(-2px);
}

/* 百分比文字 */
#page .skillbox .skillbar .skill-bar-percent {
    position: absolute;
    right: 10px;
    top: 0;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    z-index: 2;
    pointer-events: none;
}

/* 各条宽度 + 渐变色 */
#page .skillbox .skillbar-mc {
    width: 90%;
    background: linear-gradient(to right, rgba(255, 0, 102, 0.55), rgba(255, 0, 204, 0.55));
}

#page .skillbox .skillbar-wuwa {
    width: 80%;
    background: linear-gradient(to right, rgba(153, 0, 255, 0.55), rgba(204, 102, 255, 0.55));
}

#page .skillbox .skillbar-endfield {
    width: 75%;
    background: linear-gradient(to right, rgba(33, 150, 243, 0.55), rgba(66, 165, 245, 0.55));
}

#page .skillbox .skillbar-gf2 {
    width: 70%;
    background: linear-gradient(to right, rgba(76, 175, 80, 0.55), rgba(129, 199, 132, 0.55));
}

#page .skillbox .skillbar-tmp {
    width: 65%;
    background: linear-gradient(to right, rgba(0, 188, 212, 0.55), rgba(128, 222, 234, 0.55));
}

#page .skillbox .skillbar-eft {
    width: 60%;
    background: linear-gradient(to right, rgba(0, 188, 212, 0.55), rgba(245, 64, 9, 0.55));
}