:root {
  --bg: #f7f7f8;
  --card: #fff;
  --accent: radial-gradient(74.56% 52.05% at 50% 100%, rgba(88, 233, 255, 0.48) 0%, rgba(0, 0, 0, 0) 100%), #061B1E;
  --muted: #666;
  --font-1: rgba(6, 27, 30, 0.8);
  --font-2: rgba(6, 27, 30, 0.6);
  --font-3: rgba(6, 27, 30, 0.4);
  --font-4: rgba(6, 27, 30, 0.2);
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background-image: url("/img/changelog_bg_dot.png");
  background-color: var(--bg);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

button {
  cursor: pointer;
  transition: all 0.3s;
  font-family: 阿里妈妈方圆体 VF Regular;
}

button:hover {
  transform: scale(1.1);
}

svg {
  pointer-events: none;
}

@font-face {
  font-family: "阿里妈妈方圆体 VF Regular";
  src: url("//at.alicdn.com/wf/webfont/E8MsvTlikPPO/x78ufv2SOCHR.woff2") format("woff2"),
    url("//at.alicdn.com/wf/webfont/E8MsvTlikPPO/yvI55V8kQPo1.woff") format("woff");
  font-variation-settings: "BEVL"100, "wght"600;
  font-display: swap;
}

.webfont {
  font-family: "阿里妈妈方圆体 VF Regular";
  font-variation-settings: "BEVL"100, "wght"600;
  /* Chrome 140 以下版本需要 */
}

.nav {
  height: 80px;
  width: 60%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  grid-gap: 12px;
  justify-content: space-between;
  z-index: 9;
  backdrop-filter: blur(32px);
}

.nav .logo {
  height: 48px;
}

.changelog_list {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 120px;
  padding-top: 116px;
  grid-gap: 40px;
}

.changelog_list .item:nth-child(odd) {
  transform: rotate(1deg);
}

.changelog_list .item:nth-child(even) {
  transform: rotate(-1deg);
}

.changelog_list .item {
  position: relative;
  width: 600px;
  transition: all 0.3s;
}

.changelog_list .item:hover {
  transform: scale(1.05);
}

.changelog_list .item .content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 32px 32px 0px;
  gap: 8px;
  width: 600px;
  background: linear-gradient(180deg, #F7FAFE 0%, #FCFDFF 100%);
  border-width: 0.5px 0.5px 0px 0.5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: inset 0px 1px 2px #FFFFFF;
  border-radius: 36px 36px 0px 0px;
}

.changelog_list .item .content h3 {
  color: var(--font-3);
}

.changelog_list .item .content ul {
  padding-left: 24px;
}

.changelog_list .item .content li {
  color: var(--font-1);
  padding: 4px 0;
}

.changelog_list .item .content li::marker {
  color: var(--font-4);
}

.changelog_list .item .content h3 {
  margin: 0;
}

.changelog_list .title {
  color: var(--font-1);
}