/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 02 2025 | 01:41:34 */

/* 标签胶囊样式 */
.tag-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin: 2px 3px;
    font-size: 0.9em;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* 颜色定义 */
.tag-pill.hyTextRed {
    background-color: rgba(229, 77, 66, 0.1) !important;
    color: #e54d42 !important;
    border-color: rgba(229, 77, 66, 0.2) !important;
}

.tag-pill.hyTextOrange {
    background-color: rgba(243, 123, 29, 0.1) !important;
    color: #f37b1d !important;
    border-color: rgba(243, 123, 29, 0.2) !important;
}

.tag-pill.hyTextYellow {
    background-color: rgba(251, 189, 8, 0.1) !important;
    color: #fbbd08 !important;
    border-color: rgba(251, 189, 8, 0.2) !important;
}

.tag-pill.hyTextOlive {
    background-color: rgba(141, 198, 63, 0.1) !important;
    color: #8dc63f !important;
    border-color: rgba(141, 198, 63, 0.2) !important;
}

.tag-pill.hyTextGreen {
    background-color: rgba(57, 181, 74, 0.1) !important;
    color: #39b54a !important;
    border-color: rgba(57, 181, 74, 0.2) !important;
}

.tag-pill.hyTextCyan {
    background-color: rgba(28, 187, 180, 0.1) !important;
    color: #1cbbb4 !important;
    border-color: rgba(28, 187, 180, 0.2) !important;
}

.tag-pill.hyTextBlue {
    background-color: rgba(0, 129, 255, 0.1) !important;
    color: #0081ff !important;
    border-color: rgba(0, 129, 255, 0.2) !important;
}

.tag-pill.hyTextPurple {
    background-color: rgba(103, 57, 182, 0.1) !important;
    color: #6739b6 !important;
    border-color: rgba(103, 57, 182, 0.2) !important;
}

.tag-pill.hyTextMauve {
    background-color: rgba(156, 38, 176, 0.1) !important;
    color: #9c26b0 !important;
    border-color: rgba(156, 38, 176, 0.2) !important;
}

.tag-pill.hyTextPink {
    background-color: rgba(224, 57, 151, 0.1) !important;
    color: #e03997 !important;
    border-color: rgba(224, 57, 151, 0.2) !important;
}

/* 悬停效果 */
.tag-pill:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}