/* 定义自定义字体 */
@font-face {
    font-family: 'YSHaoShenTi';
    src: url('../fonts/YSHaoShenTi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* 页面样式 */
body {
    font-family: 'YSHaoShenTi','Arial', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.container {
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

p {
    color: #666;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* 添加多个卡片布局 */
.demo-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    max-width: 1080px; 
    margin-left: auto;
    margin-right: auto;
}