html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    max-width: 960px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 15px;
    color: #231f20;
    font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    line-height: 1.25;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

a {
    background-color: transparent;
    color: #d96b03;
    text-decoration: underline;
}

a:hover {
    color: #636362;
}

h1,
h2,
h3,
h4,
h5,
p,
ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

svg:not(:root) {
    overflow: hidden;
}
/* 去除header中li列表项的圆点 */
.header ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header li {
    list-style: none;
}

/* 去除所有a标签的下划线并添加字体加粗 */
a {
    text-decoration: none;
    font-weight: bold;
}

.logo {
    position: absolute; /* 绝对定位，与header分离 */
    left: 20px; /* 距离左侧20px */
    top: 20px; /* 距离顶部20px */
    z-index: 1000; /* 确保在最上层 */
    display: flex;
    align-items: center;
    background: white; /* 白色背景 */
    padding: 8px 12px; /* 减小内边距以等比压缩 */
    border-radius: 6px; /* 相应减小圆角 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 轻微调整阴影 */
    transform: scale(0.9); /* 整体等比压缩90% */
    transform-origin: left top; /* 从左上角开始缩放 */
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.logo img {
    height: 60px; /* 压缩显示为60px */
    width: auto;
    margin-right: 10px;
    object-fit: contain;
}

.figure-logo {
    max-width: 150px;
    max-height: 55.1px;
}

.release-notes {
    font-size: 14px;
}

.main {
    padding: 40px 0;
    margin: 0 auto;
    text-align: center;
}

.figure-space {
    max-width: 265px;
}

@keyframes pos {
    0%, 100% {
        transform: rotate(-6deg);
    }
    50% {
        transform: rotate(6deg);
    }
}

.main-text {
    max-width: 400px;
    margin: 5px auto;
}

.main-text h1 {
    font-size: 22px;
}

.main-text p {
    margin: 15px auto 0;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.logo {
    width: 150px;
    margin-inline-end: 20px;
}

.logo a {
    display: block;
}

.figure-logo {
    max-width: 150px;
    max-height: 55.1px;
}

.logoImg {
    display: inline-flex;
    align-items: center;
    height: 100%; /* 与header高度一致 */
}

.logoImg img {
    height: 100%; /* 图片高度自适应 */
    width: auto;
    max-height: 60px; /* 限制最大高度 */
    margin-right: 10px;
}

.logoAlt {
    display: inline-flex;
    align-items: center;
    height: 100%; /* 与header高度一致 */
    font-size: 16px;
    margin-left: 5px;
}