/* 阿里巴巴普惠体字体定义 */
@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-RegularL3.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* 阿里妈妈刀禮体定义 */
@font-face {
    font-family: 'AlimamaDaoLiTi';
    src: url('../fonts/AlimamaDaoLiTi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 应用字体到整个网站 */
body {
    font-family: 'Alibaba PuHuiTi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 定义字体使用场景 */
h1, h2, h3, h4, h5, h6, .font-bold, .font-semibold {
    font-weight: 800; /* 使用ExtraBold字体 */
}

.font-light, .text-light {
    font-weight: 300; /* 使用Light字体 */
}

p, div, span, .font-normal {
    font-weight: normal; /* 使用RegularL3字体 */
}

/* 刀禮体样式类 */
.daoliti {
    font-family: 'AlimamaDaoLiTi', sans-serif;
} 