body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #f4e5c9 url('paper-texture.png');
    font-family: "SimSun", "宋体", serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    gap: 2rem;  /* 使用 gap 来控制 logo 和文字之间的间距 */
}

.logo {
    margin-bottom: 2rem;
    width: 180px;  /* 设定固定宽度 */
    height: 180px; /* 设定固定高度 */
    padding: 2rem;
    border: 2px solid #8b4513;
    border-radius: 50%;  /* 使容器成为圆形 */
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 15px rgba(139, 69, 19, 0.3);
    display: flex;      /* 使用 flex 布局使 logo 居中 */
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo::before {    /* 添加外圈装饰 */
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid #8b4513;
    border-radius: 50%;
    opacity: 0.6;
}

.logo img {
    width: 120px;     /* 调整图片大小 */
    height: 120px;
    object-fit: cover; /* 保持图片比例 */
    border-radius: 50%; /* 使图片成为圆形 */
}

.text-content {
    position: relative;
    padding: 2rem 4rem;
    height: 800px;  /* 设置一个固定高度，根据实际文字长度调整 */
    display: flex;
    justify-content: center;
}

.text-content p {
    font-size: 2rem;
    color: #4a2810;
    letter-spacing: 0.2em;
    line-height: 1.8;
    margin: 0;
    writing-mode: vertical-rl;
    text-orientation: upright; /* 可选：使单字正向显示 */
    text-align: start;  /* 确保文字顶端对齐 */
}

.text-content::before,
.text-content::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('ornament.png'); /* 可以添加古典花纹装饰 */
    background-size: contain;
    background-repeat: no-repeat;
}

.text-content::before {
    top: 0;
    left: 0;
    transform: rotate(-45deg);
}

.text-content::after {
    bottom: 0;
    right: 0;
    transform: rotate(135deg);
} 