/* ========================================
   动态欢迎区域样式 - 企业级设计
   ======================================== */

/* 欢迎区域容器 - 无背景纯净设计 */
.dashboard-welcome {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 20px 0 !important;
    margin-bottom: 30px !important;
}

/* 欢迎头部布局 */
.welcome-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* 天气图标样式 */
.welcome-icon-weather {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, #f8f8f8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-icon-weather:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.welcome-icon-weather i {
    transition: all 0.3s ease;
}

/* 欢迎文本区域 */
.welcome-text {
    flex: 1;
    margin: 0 20px;
}

.welcome-text h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #2c5530;
    line-height: 1.3;
}

.welcome-text h2 #time-greeting {
    color: #5D9968;
    font-weight: 700;
}

.welcome-text p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

/* 小字体描述词 */
.welcome-description {
    font-size: 13px !important;
    color: #999 !important;
    font-weight: 400;
    opacity: 0.8 !important;
}

/* 统计数字区域 */
.welcome-stats {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.stats-item {
    text-align: center;
    min-width: 80px;
}

.stats-title {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1.2;
}

.stats-value {
    font-size: 20px;
    font-weight: 600;
    color: #5D9968;
    line-height: 1;
}

/* 数字悬停效果 */
.stats-value:hover {
    color: #4C8055;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* 天气图标动画 */
@keyframes weatherFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.welcome-icon-weather i {
    animation: weatherFloat 3s ease-in-out infinite;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .welcome-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .welcome-icon-weather {
        align-self: center;
        margin-bottom: 10px;
    }
    
    .welcome-text {
        margin: 0;
        text-align: center;
        width: 100%;
    }
    
    .welcome-stats {
        align-self: center;
        margin-top: 10px;
    }
    
    .welcome-text h2 {
        font-size: 20px;
    }
    
    .welcome-description {
        font-size: 12px !important;
    }
    
    .stats-value {
        font-size: 18px;
    }
    
    .stats-title {
        font-size: 12px;
    }
    
    .welcome-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .dashboard-welcome {
        padding: 15px 0;
    }
    
    .welcome-stats {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stats-item {
        min-width: 70px;
    }
    
    .welcome-icon-weather {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
} 