/* 工业风装饰元素 */
.industrial-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}




/* 顶部标题 */
.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    padding-left: 15px;
}

.page-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    animation: titlePulse 2s infinite alternate;
}

@keyframes titlePulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* 状态指示器动画 */
.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-success);
    box-shadow: 0 0 12px var(--color-success);
    position: relative;
    animation: indicatorPulse 2s infinite alternate;
}

.status-indicator::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--color-success);
    opacity: 0.5;
    animation: pulse 1.5s infinite;
}

/* 公式动画 */
.formula {
    padding: 10px 15px;
    background-color: rgba(10, 20, 40, 0.3);
    border-radius: 6px;
    margin: 15px 0;
    border-left: 3px solid var(--color-primary);
    position: relative;
    overflow: hidden;
}

.formula::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.1), transparent 70%);
    animation: formulaGlow 3s infinite alternate;
}

/* 所有动画 */
@keyframes indicatorPulse {
    0% { transform: scale(0.9); }
    100% { transform: scale(1.1); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.8); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes circuitPulse {
    0% { transform: scaleX(0.3); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0.3); opacity: 0.3; }
}

@keyframes boltFlicker {
    0% { opacity: 0.2; }
    5% { opacity: 1; }
    10% { opacity: 0.2; }
    15% { opacity: 0.7; }
    20% { opacity: 0.2; }
    90% { opacity: 0.2; }
    95% { opacity: 1; }
    100% { opacity: 0.2; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes formulaGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

/* 整体动画效果 */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* 高级装饰元素 */
.workflow-content::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle at center, rgba(0, 229, 255, 0.05), transparent 70%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

/* 模拟电路图案 */
.circuit-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10,10 L90,10 M50,10 L50,90 M10,50 L90,50 M10,90 L90,90' stroke='%230AC8B9' stroke-width='1' fill='none'/%3E%3Ccircle cx='50' cy='50' r='5' fill='%230AC8B9'/%3E%3Ccircle cx='10' cy='10' r='3' fill='%230AC8B9'/%3E%3Ccircle cx='90' cy='10' r='3' fill='%230AC8B9'/%3E%3Ccircle cx='10' cy='90' r='3' fill='%230AC8B9'/%3E%3Ccircle cx='90' cy='90' r='3' fill='%230AC8B9'/%3E%3C/svg%3E");
}