#win-about {
  display: flex;
}

#win-setting > .menu > list > a {
  padding: 5px 10px 5px 20px;
  font-size: 15px;
  display: flex;
  margin-bottom: 4px;
  border-radius: 6px;
}

#win-about > .menu > list > a > img {
  height: 20px;
  width: 20px;
  margin: 1px 10px 0 0;
  font-size: 15px;
}

#win-about > .menu > list > a.check {
  background-color: var(--hover) !important;
}

#win-about > .menu {
  width: 25% !important;
  overflow: hidden;
  min-width: 180px;
  max-width: 300px;
  padding: 3px 5px 5px 15px;
}

#win-about > .menu > list {
  padding-bottom: 50px !important;
  margin-left: 5px;
  height: calc(100% - 138px);
  overflow-y: auto;
  padding-right: 10px;
  border-radius: 6px;
}

#win-about > .menu > list > * > img {
  margin: 2px 7px 0 0;
}

#win-about > .cnt {
  overflow: auto;
  transform: translate(0, 50%);
  opacity: 0;
  width: 0;
  transition:
    transform 400ms cubic-bezier(0.05, 0.96, 0.11, 1),
    opacity 300ms,
    height 0ms;
  padding: 0 5px 60px 0;
  /* display: none; */
}

#win-about > .cnt.show {
  flex-grow: 1;
  transform: none;
  opacity: 1;
  display: block;
}

#win-about > .cnt .tit {
  margin: 8px 0 3px 0;
  display: flex;
}

#win-about > .cnt .tit > span {
  background: linear-gradient(180deg, var(--theme-1), var(--theme-2));
  border-radius: 10px;
  width: 6px;
  margin: 5px 8px 5px 5px;
  transition: 200ms;
  transform: scaleY(0);
  transform-origin: top;
}

#win-about > .cnt .tit:hover > span {
  transform: none;
}

#win-about > .update > div > details {
  background-color: var(--card);
  padding: 10px 10px 0 15px;
  border-radius: 8px;
  box-shadow: 0 1px 2px 1px var(--s3d);
  margin: 12px 10px 0 0;
  transition:
    100ms,
    height 0ms,
    padding-bottom 100ms ease-out;
  overflow: hidden;
  height: 45px;
}

:root.corner_squ #win-about > .update > div > details {
  corner-shape: squircle;
  border-radius: 20px;
}

#win-about > .update > div > details[open] {
  padding-bottom: 10px;
  height: 100%;
}

#win-about > .update > div > details:not([open]):hover {
  filter: brightness(1.2);
}

#win-about > .update > div > details:active {
  opacity: 0.6;
}

#win-about > .update > div > details > summary {
  font-size: 17px;
  transition: 200ms;
}

#win-about > .update > div > details > summary > span {
  font-weight: 900;
}

#win-about > .update > div > details > p {
  margin-left: 10px;
}

#contri {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 12px;
}

#contri > .a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 62px;
  padding: 10px;
  background: var(--card);
  box-shadow: 0 1px 2px #00000016;
  border-radius: 8px;
  font-size: 13px;
  color: inherit;
  text-decoration: none;
  transition: 120ms;
}

#contri > .a:hover {
  background: var(--hover);
  box-shadow: 0 2px 4px #00000020;
}

#contri > .a:active {
  opacity: 0.6;
  box-shadow: 0 1px 2px #00000014 inset;
}

#contri > .a > .avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--hover);
  box-shadow: 0 0 0 1px var(--hover-b);
  object-fit: cover;
}

#contri > .a > .info {
  min-width: 0;
}

#contri > .a > .name {
  font-size: 14px;
  font-weight: 650;
  margin: 0 0 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#contri > .a > .cbs {
  margin: 0;
  color: var(--text2);
}

#contri > .a > .cbs > .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  margin-left: 3px;
  border-radius: 10px;
  background: #2983cc20;
  color: #2983cc;
  font-size: 13px;
  font-weight: 700;
}

#contri > .button {
  width: fit-content;
  align-self: center;
  justify-self: start;
  margin: 2px 0 0;
}

.window.winver {
  width: 600px;
  height: 550px;
}

#win-winver > .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

#win-winver > .logo > .img {
  background: url(../../icon/logo.svg) center;
  background-size: cover;
  height: 70px;
  width: 70px;
  margin: 10px;
}

#win-winver > .logo > p {
  background-image: linear-gradient(100deg, #b660d9, #2983cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  /* font-weight: 450; */
  font-family: "Microsoft Yahei UI";
  margin: 15px;
}

#win-winver > hr {
  width: calc(100% - 20px);
  margin: 10px;
}

#win-winver p {
  margin: 0 50px;
}

#win-winver > .mesg:hover {
  text-decoration: underline !important;
}

#win-winver > .mesg:active {
  opacity: 0.5;
  transition: 30ms;
}

#win-winver > .bottom {
  position: absolute;
  bottom: 80px;
}
