/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/

/* Logo 大小控制 - 强制限制最大高度 */
nav a[href] img {
    max-height: 70px !important;  /* 调整这个值来控制 logo 大小：40px, 50px, 60px, 70px */
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

/* 移动端 logo 稍小一点 */
@media (max-width: 768px) {
    nav a[href] img {
        max-height: 70px !important;
    }
}