/* Safari特定修复 */

/* 使用Safari特定的媒体查询 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    /* Safari 10.1+ */
    _::-webkit-full-page-media, _:future, :root .main-title h1 {
        font-weight: 600; /* 在Safari中使用更粗的字重 */
        transform: scale(0.95, 1); /* 轻微缩小宽度以修复Safari中字体看起来更胖的问题 */
        letter-spacing: 0.05em; /* 稍微增加字母间距 */
    }
}

/* 另一种Safari检测方法 */
@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) and (stroke-color:transparent) {
        .main-title h1 {
            font-weight: 600;
            transform: scale(0.95, 1);
            letter-spacing: 0.05em;
        }
    }
}