@font-face {
    font-family: 'AlimamaFangYuanTiVF';
    src: url('/fonts/AlimamaFangYuanTiVF-Thin.woff2') format('woff2'),
         url('/fonts/AlimamaFangYuanTiVF-Thin.woff') format('woff'),
         url('/fonts/AlimamaFangYuanTiVF-Thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: "AlimamaFangYuanTiVF", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000; /* 背景为黑色 */
    color: #fff; /* 字体为白色 */
    margin: 0;
    flex-direction: column;
}
.quote-container {
    text-align: center;
    background: transparent;
}
.quote {
    font-size: 2em;
    margin-bottom: 10px;
    white-space: pre;
}
.author {
    font-size: 1.2em;
    color: #aaa;
}
.title {
    font-size: 2.5em;
    margin-bottom: 20px;
}
