/* 页面重要提示-增强警告样式 */
.config-warning {
    position: relative;
    border-left: 5px solid #f39c12;
    background: #fff8e5;
    font-size: 16px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    animation: pulseWarning 2s infinite;
}

.config-warning .alert-title {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 18px;
    color: #d35400;
}

.config-warning .fa-exclamation-triangle {
    margin-right: 10px;
    font-size: 20px;
}

/* 闪烁动画 */
@keyframes pulseWarning {
    0% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(243, 156, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

/* 技术联系人样式 */
.tech-contact {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    margin: 0 5px;
}


/* 标签样式 */
.label {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

/* 鼠标悬停效果 */
.label:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    cursor: default;
}

/* 标签颜色变化动画 */
@keyframes tagPulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(52, 152, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

.grid-row:hover .label {
    animation: tagPulse 2s infinite;
}
