/**
 * Logo专用样式文件
 * 避免样式冲突，统一管理Logo样式
 */

/* ===== Logo基础样式 ===== */
.logo-img {
    width: 150px !important;
    height: 50px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    transform: scale(1) !important;
    transform-origin: center !important;
    transition: transform 0.3s ease !important;
}

.logo-img:hover {
    transform: scale(1.1) !important;
}

/* ===== 响应式Logo尺寸 ===== */

/* 平板设备 (768px - 1024px) */
@media (max-width: 1024px) {
    .logo-img {
        width: 48px !important;
        height: 48px !important;
    }
}

/* 移动端设备 (768px以下) */
@media (max-width: 768px) {
    .logo-img {
        width: 45px !important;
        height: 45px !important;
    }
}

/* 小屏手机 (480px以下) */
@media (max-width: 1024px) {
    .logo-img {
        width: 120px !important;
        height: 48px !important;
    }
}

/* 超小屏手机 (360px以下) */
@media (max-width: 360px) {
    .logo-img {
        width: 40px !important;
        height: 40px !important;
    }
}

/* ===== 高分辨率屏幕优化 ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
    }
}
