@charset "UTF-8";
:root {
   --bankuai-color: #f6f6f6;
  --background-color: #fff;
  --background-dark-color: #201d1e;
  --text-content-color: #222;
  --text-content-dark-color: #CCC;
  --text-highlight-color: #FC9151;
  --frame-dark-color: #332D2F;
  --frame-color: #eee;
  --erji-color: #666;
  --sanji-color: #999;
  --light-background: #fff;
  --light-color-hover: rgba(0,0,0, .05);
	--light-background-secondary: #eaeaea;
	--light-header: #fff;
	--light-color: #222;
	--light-color-secondary: #999;
	--light-border-color: #dcdcdc;
	--dark-background: #2f2f2f;
	--dark-background-secondary: #3b3d42;
	--dark-header: #252627;
	--dark-color: #f5f5f5;
	--dark-color-secondary: #73747b;
	--dark-border-color: #4a4b50;
	--phoneWidth: (max-width:683px);
	--tabletWidth: (max-width:900px)
}

body,html {
  margin: 0;
  padding: 0
}

ol,ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.header {
	background: #fafafa;
	background: var(--light-header);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 20px 30px;
	box-shadow: inset 0 -1px var(--light-background-secondary);
}

@media(min-width: 900px) {
  .header {
      z-index:100;
      padding: 40px 0 60px;
      height: 20px
  }
}

.new-heard-menu {
  display: none
}

@media(min-width: 900px) {
  .new-heard-menu {
      display:flex;
      gap: 30px
  }
}

.header-menu a {
  color: var(--erji-color);
  font-size: 1rem;
  font-family: var(--font-family-paragraph)
}

.header-menu {
  display: flex;
  align-items: center
}

.menu-current a {
  color: var(--text-highlight-color)!important
}

.heard-right {
  display: flex;
  grid-gap: 0;
  align-items: center;
  margin-left: auto
}

@media(min-width: 900px) {
  .heard-right {
      grid-gap:20px
  }
}

.about-koobai img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: opacity .3s ease-in-out
}

@media(min-width: 900px) {
  .about-koobai img {
      width:20px;
      height: 20px;
      display: block
  }
}

.about-koobai img:hover {
  opacity: .6
}

.heard-right svg {
  display: none
}

@media(min-width: 900px) {
  .heard-right svg {
      fill:#999;
      width: 20px;
      height: 20px;
      display: block
  }
}

.heard-right svg:hover {
  fill: #666
}

@media(prefers-color-scheme: dark) {
  .header-menu a {
      color:var(--sanji-color)
  }

  .header-menu svg {
      color: #827478
  }

  .heard-right svg {
      fill: #6b6063
  }

  .heard-right svg:hover {
      fill: #999
  }
}

.footer-background {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 40px
}

.footer {
  padding-top: 10px;
  border-top: .5px solid var(--frame-color);
  text-align: center
}

.footer-info,.footer-info a,.footer-rss,.footer-rss a {
  font-size: .75rem;
  line-height: 1.6em;
  color: #a7a7a7
}

.footer-info {
  padding: 0 20px
}

#gotop {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  cursor: pointer
}

.gotop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  position: relative
}

.gotop:hover {
  background: #ededed
}

.gotop img {
  width: 1.1rem;
  height: 1.1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
}

.youpaiyun {
  margin: 0 4px
}

.footer-cmdk {
  display: flex;
  gap: 6px;
  font-size: .75rem;
  align-items: center;
  color: #a2a2a2;
  margin: 10px 0 30px;
  justify-content: center
}

.footer-cmdk-key {
  background: #e8e8e8;
  padding: 4px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px
}

@media(prefers-color-scheme: dark) {
  .footer-info,.footer-info a,.footer-rss a,.footer-rss {
      color:var(--erji-color)
  }

  .footer {
      border-top: .5px solid #231e20
  }

  .gotop {
      background: #999
  }

  .footer-background {
      background: #1a1718;
      border-top: solid #3d3d3d .5px;
      box-sizing: border-box
  }

  .footer-cmdk {
      color: #666
  }

  .footer-cmdk-key {
      background: #292526
  }
}

@media(max-width: 1200px) {
  .gotop_hide {
      display:none
  }
}

.article_details img {
  max-width: 100%;
  cursor: zoom-in
}

.article_details_title {
  font-size: 1.4rem;
  font-family: var(--font-family-title);
  line-height: 1.3;
  margin-bottom: 15px
}

@media(min-width: 700px) {
  .article_details_title {
      font-size:1.8rem
  }
}

a {
  /* color: var(--text-content-color); */
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

h2,h3 {
  font-family: var(--font-family-title);
  font-weight: 400;
  font-display: swap;
  font-weight: 700
}

p {
  /* color: var(--text-content-color); */
  font-family: var(--font-family-paragraph);
  font-size: 1.05rem;
  line-height: 24px
}

p:empty {
  display: none
}

ol,ul {
  margin: 0;
  padding: 0;
  list-style: none
}

ol li,ul li {
  list-style: none
}

.content_zhengwen {
  margin: 15px 0 20px
}

.content_zhengwen img,.top-img {
  cursor: pointer
}

.content {
  font-size: 1.05rem
}

.content p {
  font-size: 1.05rem;
  line-height: 2;
  margin: 0;
  padding: 0;
  margin-bottom: 15px
}

.content strong {
  color: var(--text-highlight-color)
}

.content h2,.content h3 {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 6px;
  letter-spacing: .5px;
  color: var(--text-highlight-color)
}

.content ul {
  list-style: disc
}


.content ol {
  list-style: decimal
}

.content ol li {
  list-style: decimal
}

.content ul,.content ol {
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 20px
}

.content ul li,.content ol li {
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 10px;
  /* margin-left: 20px */
}

@media(min-width: 700px) {
  .content ul li,.content ol li {
      margin-left:0
  }
}

@media(min-width: 700px) {
  .content ul,.content ol {
      margin-left:20px
  }
}

.content a {
  text-decoration: underline;
  word-wrap: break-word;
  word-break: break-all;
  text-decoration: none;
  text-decoration: underline;
  margin: 0 2px;
  transition: opacity .3s ease-in-out 0s
}

.content a:hover {
  opacity: .6
}

.content blockquote {
	margin: 1rem 0;
	padding: .5rem 1rem;
	border-radius: .33rem;
	background-color: var(--light-color-hover)
}


.content blockquote p {
  font-size: 16px;
  display: inline;
  color: var(--color-base-text)
}

.content img {
  margin: 10px 0 0;
  max-width: 100%;
  height: auto;
  cursor: zoom-in
}

.content figure {
  margin: 2.6rem 0 1.18rem
}

.content figure img {
  margin: 0
}

.content figure figcaption {
  margin-top: 10px
}

.content figure figcaption h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700
}

.content figure figcaption p {
  margin: 0
}

.content code,.content pre {
  font-family: var(--font-family-code);
  line-height: 1.9
}

.content .highlight pre {
  font-size: .9rem;
  padding: 20px;
  overflow: auto;
  border-radius: 6px;
  background: #24273a
}

.footnotes ol {
  list-style: decimal
}

.footnotes ol li {
  list-style: decimal
}

.single-nrong {
  display: flex
}

.single-zw {
  width: 100%
}

.paragraph-dh {
  display: none
}

@media(min-width: 1200px) {
  .paragraph-dh {
      display:block;
      position: fixed;
      opacity: 0;
      top: 30%;
      margin-left: 40px;
      transition: opacity .5s ease;
      max-width: 300px
  }
}

.paragraph-dh ul {
  gap: 10px;
  display: grid
}

.paragraph-dh ul ul {
  margin-top: 10px
}

.paragraph-dh ul ul a {
  color: #999
}

.paragraph-dh a.active {
  color: var(--text-highlight-color);
  text-indent: 0
}

.paragraph-dh a {
  padding-left: 25px;
  position: relative;
  display: flex;
  align-items: center;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.4;
  color: #666;
  font-size: .85rem
}

.paragraph-dh:hover a {
  text-indent: 0
}

.paragraph-dh li>a:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 5px;
  border-radius: 6px;
  background-color: #ddd;
  position: absolute;
  left: 0
}

.paragraph-dh li li>a:before {
  width: 10px
}

.paragraph-dh a.active:before {
  background-color: var(--text-highlight-color)
}

@media(prefers-color-scheme: dark) {
  .paragraph-dh a {
      color:#999
  }

  .paragraph-dh ul ul a {
      color: #7e7174
  }

  .paragraph-dh li>a:before {
      background-color: #6b6063
  }
}

.intro h1 {
  font-size: 40px;
  margin-bottom: 10px
}

.intro h2 {
  font-size: 50px;
  line-height: 56px
}

@media(min-width: 700px) {
  .intro h2 {
      width:80%
  }
}

.intro p {
  font-size: 1.1rem;
  line-height: 1.8
}

@media(min-width: 700px) {
  .intro p {
      width:100%;
      font-size: 1.1rem;
      line-height: 32px
  }
}

.intro .article_title {
  font-size: 1.8rem;
  line-height: 35px;
  margin-bottom: 20px;
  font-weight: 400
}

.intro .read-more {
  font-size: 1.1rem;
  line-height: 26px;
  font-weight: 700
}

@media(min-width: 700px) {
  .intro .read-more {
      font-size:1.1rem;
      line-height: 32px
  }
}

.intro img {
  max-width: 100%;
  cursor: zoom-in
}

.summary {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(340px,1fr));
  grid-gap: 20px
}

.summary-nrong {
  border-radius: 4px;
  background: #fff;
  box-shadow: rgba(0,0,0,7%)0 6px 20px;
  padding: 15px
}

@media(min-width: 900px) {
  .summary-nrong {
      padding:20px
  }
}

.summary-date {
  font-size: .85rem;
  color: var(--sanji-color);
  font-family: var(--font-family-code);
  margin-top: 6px
}

.summary-title {
  font-family: var(--font-family-title);
  font-size: 1.2rem;
  margin-top: 6px;
  line-height: 1.6
}

.summary-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--erji-color);
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}

@media(prefers-color-scheme: dark) {
  .summary-description {
      color:var(--sanji-color)
  }

  .summary-date {
      color: #666!important
  }

  .summary-nrong {
      background: var(--background-dark-color)
  }
}

.menu-main-mobile {
  position: fixed;
  background: var(--text-highlight-color);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s,visibility .35s,height .35s;
  overflow: hidden;
  display: none;
  justify-content: center;
  flex-direction: column
}

.menu-main-mobile.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
  z-index: 10;
  display: flex
}

.menu-main-mobile.open li {
  animation: fadeInTop .5s ease forwards;
  animation-delay: .1s;
  margin-bottom: 6%
}

.menu-main-mobile.open li:nth-of-type(2) {
  animation-delay: .15s
}

.menu-main-mobile.open li:nth-of-type(3) {
  animation-delay: .2s
}

.menu-main-mobile.open li:nth-of-type(4) {
  animation-delay: .25s
}

.menu-main-mobile.open li:nth-of-type(5) {
  animation-delay: .3s
}

.menu-main-mobile.open li:nth-of-type(6) {
  animation-delay: .35s
}

.menu-main-mobile ul {
  font-size: 1.6rem;
  font-family: var(--font-family-title);
  text-align: center;
  list-style: none;
  margin: 0;
  flex: 0
}

.menu-main-mobile ul li {
  display: block;
  position: relative;
  opacity: 0
}

.menu-main-mobile ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none
}

.menu-main-mobile ul li a:hover {
  opacity: .7
}

.menu-main-mobile ul li ul.sub-menu {
  font-size: 1.2rem
}

.hamburger-trigger {
  height: 30px;
  display: flex;
  align-items: center
}

@media(min-width: 900px) {
  .hamburger-trigger {
      display:none
  }
}

.hamburger {
  border: none;
  cursor: pointer;
  outline: none;
  position: relative;
  display: block;
  width: 30px;
  height: 20px;
  background: 0 0;
  border-top: 2px solid;
  border-bottom: 2px solid;
  font-size: 0;
  transition: all .25s ease-in-out;
  color: var(--text-highlight-color)
}

.hamburger:before,.hamburger:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%,-50%);
  transition: transform .25s ease-in-out
}

.hamburger:hover {
  opacity: .7
}

.hamburger.is-active {
  border-color: transparent;
  z-index: 100;
  color: #fff
}

.hamburger.is-active:hover {
  opacity: 1
}

.hamburger.is-active:before {
  transform: translate(-50%,-50%)rotate(45deg)
}

.hamburger.is-active:after {
  transform: translate(-50%,-50%)rotate(-45deg)
}

@keyframes fadeInTop {
  0% {
      opacity: 0;
      top: 20%
  }

  100% {
      opacity: 1;
      top: 0
  }
}

.highlight {
  color: #c9d1d9;
  background: #0d1117
}

.highlight .c,.highlight .cm,.highlight .c1,.highlight .cs,.highlight .cp,.highlight .cpf,.highlight .c2 {
  color: #8b949e;
  font-style: italic
}

.highlight .k,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt {
  color: #7f9bf5;
  font-weight: 700
}

.highlight .o,.highlight .ob,.highlight .op,.highlight .ow {
  color: #c58b45;
  font-weight: 700
}

.highlight .s,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .s2,.highlight .s1,.highlight .se,.highlight .sh,.highlight .ss,.highlight .sx,.highlight .sr {
  color: #79b8ff
}

.highlight .n,.highlight .nf,.highlight .nc,.highlight .no,.highlight .na,.highlight .nb,.highlight .nd,.highlight .ni,.highlight .ne,.highlight .nn,.highlight .nt,.highlight .nv,.highlight .vc,.highlight .vg,.highlight .vi {
  color: #b392f0
}

.highlight .m,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .mb,.highlight .mx,.highlight .il {
  color: #dc6a6a
}

.highlight .bp,.highlight .vg,.highlight .vi,.highlight .vm,.highlight .ss {
  color: #3fb950
}

.highlight .do,.highlight .py,.highlight .kd,.highlight .kp,.highlight .kr {
  color: #79b8ff
}

.highlight .na,.highlight .w,.highlight .mb,.highlight .mx,.highlight .il {
  color: #8b949e
}

.highlight .p {
  color: #c9d1d9
}

.highlight .err {
  color: #f85149;
  font-weight: 700
}


.appdquanjudiv {
  display: grid;
  grid-gap: 10px
}

@media(min-width: 900px) {
  .appdquanjudiv {
      grid-template-columns:repeat(2,1fr);
      grid-gap: 15px
  }
}

.appquanju {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 10px;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: rgba(0,0,0,5%)0 6px 20px;
  padding: 15px;
  border-radius: 4px;
  z-index: 1
}

.appimg img {
  width: 70px;
  transition: transform .3s ease
}

.apptitle {
  font-size: 1rem;
  margin-bottom: 4px
}

@media(min-width: 900px) {
  .apptitle {
      font-size:.85rem
  }
}

.appnote {
  display: none
}

@media(min-width: 900px) {
  .appnote {
      display:grid;
      position: absolute;
      padding: 6px 15px 6px 0;
      background: #fff;
      top: 0;
      bottom: 0;
      color: var(--erji-color);
      font-size: .9rem;
      line-height: 1.4;
      align-items: center;
      opacity: 0;
      text-align: justify;
      transition: opacity .3s ease
  }
}

.appquanju:hover .appnote {
  opacity: 1
}

.appzhuangtai {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.macos {
  font-size: .75rem;
  font-family: var(--font-family-code);
  color: var(--sanji-color)
}

.macos:empty,.kaiyuan:empty,.shoufei:empty,.free:empty {
  display: none
}

.kaiyuan,.shoufei,.free {
  font-size: .9rem;
  padding: 5px 8px;
  border-radius: 20px
}

@media(min-width: 900px) {
  .kaiyuan,.shoufei,.free {
      font-size:.75rem
  }
}

.kaiyuan {
  color: var(--text-highlight-color);
  border: .5px solid var(--text-highlight-color)
}

.shoufei {
  color: #0774e0;
  border: .5px solid #0774e0
}

.free {
  color: #11a173;
  border: .5px solid #11a173
}

.appdquanjudiv a:hover {
  text-decoration: none
}

.apptitle a:hover {
  text-decoration: underline
}

.pagetitle {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 620px;
  margin: auto;
  padding-bottom: 20px;
  text-align: center;
  color: var(--erji-color)
}

.app-star {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 10px 25px 40px
}

.app-star .appnote {
  opacity: 1;
  background: 0 0;
  padding: 0;
  position: static;
  display: block;
  font-size: .85rem;
  line-height: 1.6
}

@media(min-width: 900px) {
  .app-star .appnote {
      font-size:.9rem
  }
}

.star-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1
}

.star-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform .3s ease
}

.star-img img:hover {
  transform: scale(1.1)
}

.app-star .apptitle2 {
  font-size: 1.6rem;
  margin-bottom: 5px
}

.app-star .apptitle2 a,.app-star .appnote,.app-star .macos,.app-star .kaiyuan,.app-star .shoufei,.app-star .free {
  color: #fff;
  font-family: var(--font-family-code);
  transition: opacity .3s ease-in-out
}

.app-star .apptitle2 a:hover {
  opacity: .8
}

.app-star .macos {
  margin-bottom: 20px
}

.app-star .kaiyuan,.app-star .shoufei,.app-star .free {
  border: .5px solid #fff
}

.app-star .appzhuangtai-right {
  display: inline-block
}

@media(prefers-color-scheme: dark) {
  .macos {
      color:var(--erji-color)
  }

  .pagetitle {
      color: var(--sanji-color)
  }

  .appnote,.apptitle a {
      color: var(--text-content-dark-color)
  }

  .appquanju,.appnote {
      background: var(--background-dark-color)
  }

  .app-star .apptitle2 a,.app-star .appnote,.app-star .macos,.app-star .kaiyuan,.app-star .shoufei,.app-star .free {
      color: #dfdfdf
  }

  .app-star .kaiyuan,.app-star .shoufei,.app-star .free {
      border: .5px solid #dfdfdf
  }
}

.quanju {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 10px
}

@media(min-width: 900px) {
  .quanju {
      grid-template-columns:repeat(3,1fr);
      grid-gap: 15px
  }
}

.duiqi {
  display: flex;
  justify-content: center;
  align-items: center
}

.duiqi img {
  max-width: 70%;
  margin: 0;
  transition: transform .3s ease
}

@media(min-width: 900px) {
  .duiqi img {
      max-width:60%
  }
}

.bankuai {
  background: #f8f8f8;
  padding: 30px 0 40px;
  border-radius: 4px
}

.bankuai a:hover {
  text-decoration: none
}

.hardware-text {
  text-align: center;
  color: var(--sanji-color);
  margin-top: 20px
}

.hardware-title {
  margin-bottom: 4px;
  font-size: .9rem;
  padding: 0 10px
}

@media(min-width: 900px) {
  .hardware-title {
      padding:0
  }
}

.hardware-title a {
  color: var(--text-content-color)
}

.hardware-title a:hover {
  text-decoration: underline
}

.hardware-jiage {
  margin-left: auto;
  font-size: .85rem;
  border-radius: 20px;
  font-family: var(--font-family-code)
}

@media(min-width: 900px) {
  .hardware-jiage {
      font-size:.75rem
  }
}

.liing_2_right {
  justify-content: center;
  display: flex
}

.tiyi {
  color: var(--text-highlight-color);
  font-size: 1rem;
  border: .5px solid var(--text-highlight-color);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px
}

@media(min-width: 900px) {
  .tiyi {
      font-size:.85rem
  }
}

.tiyi:hover {
  text-decoration: underline
}

.tiyi:empty,.details:empty {
  display: none
}

.note {
  display: none
}

@media(min-width: 900px) {
  .note {
      display:block;
      position: absolute;
      padding: 15px;
      z-index: 10;
      top: 0;
      background: rgba(248,248,248,.6);
      color: var(--erji-color);
      font-size: .9rem;
      line-height: 1.6;
      opacity: 0;
      backdrop-filter: saturate(140%)blur(20px);
      -webkit-backdrop-filter: saturate(140%)blur(20px);
      transition: opacity .4s ease
  }
}

.bankuai:hover .note {
  opacity: 1
}

@media(prefers-color-scheme: dark) {
  .bankuai {
      background:var(--background-dark-color)
  }

  .hardware-text {
      color: var(--erji-color)
  }

  .hardware-title a,.note {
      color: var(--text-content-dark-color)
  }
}

@media(prefers-color-scheme: dark) and (min-width:900px) {
  .note {
      background:rgba(32,29,30,.6)
  }
}

.archives_tags {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px
}

.list-tags {
  border-radius: 20px;
  padding: 10px;
  border: 1px solid var(--frame-color);
  font-size: .85rem
}

.list-tags a {
  color: var(--erji-color)
}

.archives_tags_f {
  color: var(--sanji-color);
  font-size: .85rem
}

.single-biaoq {
  margin-top: 20px
}

.single-biaoq,.single-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center
}

.page-time,.single-tag-c {
  font-size: .85rem;
  color: #999;
  display: inline-block
}

.single-tag-c a {
  color: var(--sanji-color)
}

@media(prefers-color-scheme: dark) {
  .page-time,.single-tag-c {
      color:#666
  }

  .single-tag-c a {
      color: #666
  }

  .archives_tags_f {
      color: var(--erji-color)
  }

  .list-tags {
      border: .5px solid var(--frame-dark-color)
  }

  .list-tags a {
      color: var(--sanji-color)
  }
}

.memos_diaoyong {
  max-width: 700px;
  margin: auto;
  padding-bottom: 20px
}

.memos-random-background {
  border-radius: 4px;
  background: var(--bankuai-color)!important;
  padding: 10px
}

.memos-diaoyong-tag .memos-tag-dg {
  cursor: auto
}

.memos-diaoyong-tag .memos-tag-dg:hover {
  text-decoration: none
}

.memos_diaoyong_from a {
  color: var(--erji-color);
  font-family: var(--font-family-code)
}

.memos-logo,.memos-logo2 {
  padding-top: 7px
}

.memos-logo img,.memos-logo2 img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px
}

.memos_diaoyong_top {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 6px
}

.memos_diaoyong_from,.memos_diaoyong_time,.memos_diaoyong_laiz,.memos_diaoyong_more {
  color: var(--sanji-color);
  font-size: .85rem
}

.memos_diaoyong_laiz a,.memos_diaoyong_more a {
  color: var(--sanji-color)
}

.memos_diaoyong_info p {
  font-size: 1rem;
  color: var(--text-content-color);
  line-height: 1.8;
  margin: 0
}

.memos_diaoyong_more {
  margin-left: auto
}

.bb-timeline {
  margin-bottom: 0
}

@media(min-width: 900px) {
  .bb-timeline {
      margin-bottom:40px
  }
}

.datacont p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
  text-align: justify
}

.datacont a {
  text-decoration: underline;
  margin: 0 2px;
  transition: opacity .3s ease-in-out 0s
}

.datacont a:hover {
  opacity: .6
}

.resimg figure {
  margin: 0;
  margin-bottom: -4px
}

.resimg {
  display: grid;
  gap: 6px;
  width: 60%;
  grid-template-columns: repeat(2,1fr);
  margin-top: 5px;
  margin-bottom: 10px
}

.gallery-thumbnail img {
  width: 100%!important;
  aspect-ratio: 3.5/3;
  object-fit: cover;
  border-radius: 4px;
  transition: transform .3s ease;
  cursor: zoom-in;
  margin: 0!important
}

.resimg img:hover {
  transform: scale(1.03)
}

.grid-3,.grid-5,.grid-6,.grid-7,.grid-8,.grid-9 {
  grid-template-columns: repeat(3,1fr)
}

.memos-tag-dg,.memos-tag-sc {
  display: inline-block;
  padding: 4px 4px 4px 2px;
  color: var(--sanji-color);
  font-size: .85rem;
  border-radius: 4px;
  vertical-align: middle;
  cursor: pointer
}

#tag-list-all {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.memos-tag-all {
  padding: 6px;
  color: var(--sanji-color);
  background: #f2f2f2;
  font-size: .85rem;
  border-radius: 4px;
  cursor: pointer
}

.memos-tag-sc-2 {
  align-items: center;
  display: flex;
  margin-top: 10px;
  font-size: .85rem;
  color: var(--sanji-color);
  margin-bottom: 10px
}

.memos-tag-sc {
  margin-left: 10px;
  font-size: .85rem!important;
  color: #666!important;
  background: #e5e5e5!important;
  padding: 8px!important
}

.memos-tag-sc svg {
  width: 1rem;
  margin-left: 6px;
  vertical-align: middle;
  margin-top: -4px
}

.memos-tag-sc:hover {
  text-decoration: line-through
}

.memos-tag-dg:hover,.memos-tag-all:hover {
  text-decoration: underline
}

.memos-pl {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  gap: 6px
}

.bb-load button {
  background: 0 0;
  cursor: pointer;
  color: var(--text-highlight-color);
  border-radius: 4px;
  padding: 10px 30px;
  font-family: var(--font-family-title);
  font-size: .85rem;
  border: .5px solid var(--text-highlight-color)
}

.bb-load button:hover {
  opacity: .8;
  transition: opacity .3s ease-in-out
}

.memos-hide {
  margin-left: auto;
  color: var(--text-highlight-color)
}

.datacont pre {
  border-radius: 4px;
  line-height: 1.8;
  background: #ececec;
  padding: 10px;
  white-space: pre-wrap;
  margin-top: 5px;
  margin-bottom: 10px
}

@media(min-width: 900px) {
  .datacont pre {
      background:#f6f6f6
  }
}

.datacont pre code {
  background: 0 0;
  font-size: .85rem;
  padding: 0;
  color: var(--erji-color);
  border: none;
  margin: 0
}

.datacont code {
  background: #ffe4d4;
  border: 1px solid #ffbe98;
  border-radius: 4px;
  font-size: 1rem;
  padding: 2px 6px;
  font-family: var(--font-family-code);
  margin: 0 4px;
  word-wrap: break-word
}

.load-memos-editor {
  cursor: pointer;
  display: inline-block;
  margin-left: 30px;
  color: transparent
}

.outline svg {
  color: var(--sanji-color);
  width: 18px;
  height: 18px
}

.memos-more-ico {
  position: relative
}

.memos-xiala {
  width: 80px;
  position: absolute;
  background-color: #fff;
  padding: 6px 0;
  box-shadow: 2px 4px 1rem rgba(0,0,0,.15);
  text-align: center;
  border-radius: 4px;
  display: none;
  font-size: .85rem;
  right: -30px
}

.memos-more-ico:hover .memos-xiala {
  display: block
}

.memos-more-ico svg {
  color: var(--sanji-color)
}

.memos-xiala svg {
  width: 18px;
  height: 18px;
  color: #ababab
}

.memos-xiala .switchUser-btn {
  margin-top: 20px!important
}

.memos-xiala .switchUser-btn,.memos-xiala .private-btn,.memos-xiala .oneday-btn,.image-btn,.code-btn {
  margin: 12px 0;
  cursor: pointer;
  color: var(--erji-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.memos-xiala .switchUser-btn:hover,.memos-xiala .private-btn:hover,.memos-xiala .oneday-btn:hover,.image-btn:hover,.code-btn:hover {
  text-decoration: underline
}

.outline svg:hover {
  color: #444
}

.memos-title {
  display: none
}

.d-flex {
  display: flex;
  align-items: center;
  gap: 18px
}

.d-none {
  display: none!important
}

.memos-editor-body {
  border-radius: 4px;
  border: .5px solid #eaeaea;
  padding: 15px;
  margin-bottom: 10px
}

@media(min-width: 900px) {
  .memos-editor-body {
      margin-bottom:40px
  }
}

.memos-editor-content .memos-editor-textarea {
  border: transparent;
  border-radius: 4px;
  line-height: 1.6;
  min-height: 60px;
  overflow-x: hidden;
  overflow-y: clip;
  width: 100%;
  outline: .1px solid transparent;
  resize: none;
  background: 0 0;
  font-family: var(--font-family-paragraph);
  font-size: 1rem;
  padding: 0
}

.memos-editor-tools {
  margin-top: 4px;
  margin-bottom: 10px
}

.action-btn {
  cursor: pointer
}

.memos-editor-tools .memos-tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  grid-gap: 15px
}

.memos-editor-tools .memos-tag {
  cursor: pointer
}

.memos-editor-tools .memos-tag a {
  color: var(--sanji-color)
}

.editor-selector {
  position: relative;
  display: inline-block
}

.editor-selector select {
  appearance: none;
  border: 0 solid transparent;
  border-radius: 4px;
  padding: 8px 20px 8px 0;
  background: 0 0;
  color: var(--sanji-color);
  font-family: var(--font-family-paragraph);
  font-size: .85rem;
  outline: .5px solid transparent
}

.editor-selector::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  border-style: solid;
  border-width: 4px 4px 0;
  border-color: #999 transparent transparent transparent;
  transform: translateY(-50%)
}

.submit-memos-btn,.edit-memos-btn {
  background: 0 0;
  cursor: pointer;
  color: var(--text-highlight-color);
  border-radius: 4px;
  padding: 6px 0
}

.cancel-edit-btn {
  padding: 6px 0;
  cursor: pointer;
  border: .5px solid #fff;
  color: var(--sanji-color)
}

.memos-open-api-submit:hover,.edit-memos-btn:hover,.cancel-edit-btn:hover {
  opacity: .7;
  transition: opacity .3s ease-in-out
}

.memos-editor-textarea::placeholder {
  color: #bbb
}

.memos-editor-footer {
  display: flex;
  align-items: center
}

.justify-content-end {
  margin-left: auto
}

.memos-image-list {
  cursor: pointer;
  gap: 10px;
  color: var(--sanji-color);
  margin-bottom: 15px
}

.memos-image-list .memos-up-image {
  background-size: cover;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
  border-radius: 4px;
  transition: opacity .3s ease-in-out
}

.memos-image-list .memos-up-image:hover {
  opacity: .6
}

.memos-img-edit {
  background: #f5f5f5;
  padding: 6px;
  border-radius: 4px
}

.memos-img-edit:hover {
  text-decoration: line-through
}

.memos-editor-option {
  display: flex
}

.memos-path-input,.memos-token-input {
  border: transparent;
  padding: 6px 0;
  outline: .5px solid transparent;
  background: 0 0;
  font-size: 1rem;
  font-family: var(--font-family-code);
  width: 50%
}

.memos-token-input {
  margin-left: 40px;
  margin-right: 10px
}

.memos-open-api-submit {
  background: var(--text-highlight-color);
  cursor: pointer;
  color: #fff;
  border-radius: 4px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center
}

.memos-oneday {
  margin-bottom: 10px;
  list-style: none
}

@media(min-width: 900px) {
  .memos-oneday {
      margin-bottom:40px
  }
}

.memos-oneday .memos_diaoyong_time {
  color: var(--text-highlight-color)
}

.memos-edit {
  margin-left: auto;
  position: relative
}

.memos-menu {
  margin-left: 40px;
  color: transparent
}

.memos-menu-d {
  width: 60px;
  position: absolute;
  top: 8px;
  background-color: #fff;
  padding: 8px 0;
  box-shadow: 2px 4px 1rem rgba(0,0,0,.15);
  text-align: center;
  border-radius: 4px;
  display: none
}

.memos-edit:hover .memos-menu-d {
  display: block
}

.edit-btn,.archive-btn,.delete-btn {
  cursor: pointer;
  line-height: 1.8;
  color: var(--sanji-color);
  font-size: .85rem
}

.edit-btn:hover,.archive-btn:hover,.delete-btn:hover {
  text-decoration: underline
}

.delete-btn {
  color: #c70000!important
}

.edit-memos {
  display: flex;
  gap: 20px
}

@media(max-width: 900px) {
  .resimg {
      width:100%!important
  }

  .resimg figure {
      margin-bottom: -8px
  }

  .memos_diaoyong {
      display: none
  }

  .bb-load button {
      margin-top: 10px
  }

  .bb-list-li {
      /* background: #f6f6f6; */
      /* padding: 15px; */
      margin-bottom: 10px;
      border-radius: 6px
  }
}

@media(max-width: 900px) and (prefers-color-scheme:dark) {
  .bb-list-li {
      background:var(--background-dark-color)
  }
}

@media(min-width: 900px) {
  .memos_diaoyong .resimg {
      width:100%!important;
      grid-template-columns: repeat(5,1fr)
  }

  .memos_diaoyong .grid-3,.memos_diaoyong .grid-5,.memos_diaoyong .grid-6,.memos_diaoyong .grid-7,.memos_diaoyong grid-8,.memos_diaoyong .grid-9 {
      grid-template-columns: repeat(5,1fr)
  }

  .bb-list-ul {
      display: grid;
      grid-row-gap: 0px
  }
}

@media(prefers-color-scheme: dark) {
  .memos-xiala {
      background-color:#282527
  }

  .memos-xiala .switchUser-btn,.memos-xiala .private-btn,.memos-xiala .oneday-btn,.image-btn,.code-btn {
      color: var(--sanji-color)
  }

  .memos-more-ico svg {
      color: var(--erji-color)
  }

  .memos-editor-textarea::placeholder {
      color: #444
  }

  .memos-tag-all {
      background: #332e2f
  }

  .memos-tag-sc-2 {
      color: var(--erji-color)
  }

  .memos-editor-body {
      border: .5px solid var(--frame-dark-color)
  }

  .memos-tag-dg {
      color: var(--erji-color)
  }

  .memos-tag-sc {
      color: #999!important;
      background: #332e2f!important
  }

  .bb-load button {
      background: var(--background-dark-color)
  }

  .memos_diaoyong_from a {
      color: var(--sanji-color)
  }

  .memos_diaoyong_time,.memos_diaoyong_laiz a,.memos_diaoyong_more a,.memos_diaoyong_from {
      color: var(--erji-color)
  }

  .memos_diaoyong_info p,.memos_diaoyong_info a {
      color: var(--text-content-dark-color)!important
  }


  .datacont pre,blockquote p {
      background: #2c2829
  }

  .datacont pre code {
      color: var(--sanji-color)
  }

  .datacont code {
      background: #2c2829;
      border: 1px solid #2c2829;
      color: var(--text-highlight-color)
  }

  blockquote p {
      border-left: 4px solid #5f5f5f;
      color: #888!important
  }

  .memos_diaoyong_info blockquote p {
      color: #888!important
  }

  .outline svg {
      color: var(--erji-color)
  }

  .outline svg:hover {
      color: var(--sanji-color)
  }

  .memos-path-input,.memos-token-input {
      color: var(--text-content-dark-color)!important
  }

  .editor-selector select {
      color: #666!important
  }

  .editor-selector::after {
      border-color: #666 transparent transparent transparent
  }

  .memos-editor-content .memos-editor-textarea {
      color: var(--text-content-dark-color)
  }

  .memos-open-api-submit {
      background: #1a1718!important;
      color: var(--text-highlight-color)!important
  }

  .edit-btn,.archive-btn,.delete-btn,.cancel-edit-btn,.memos-image-list {
      color: var(--erji-color)
  }

  .memos-menu-d,.memos-img-edit {
      background-color: #282527
  }

  .cancel-edit-btn {
      border: .5px solid #201d1e
  }

  #memos-tag-menu {
      background-color: #282527!important;
      box-shadow: 2px 4px 1rem rgba(0,0,0,.3)!important;
      color: #888!important
  }

  .tag-option.selected {
      background-color: #3e3e3e!important;
      color: #bdbdbd!important
  }
}

.emoji-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(32px,1fr));
  gap: 6px;
  margin-top: 6px
}

.emoji-item {
  padding: 4px;
  font-size: 24px;
  line-height: .8;
  cursor: pointer;
  text-align: center
}

.emoji-item:hover {
  opacity: .6
}

#memos-tag-menu {
  position: absolute;
  background-color: #fff;
  z-index: 100;
  padding: 5px;
  box-shadow: 2px 4px 1rem rgba(0,0,0,.15);
  color: var(--sanji-color);
  border-radius: 4px;
  font-size: .85rem;
  column-count: 3;
  column-gap: 4
}

#memos-tag-menu:empty {
  display: none
}

.tag-option {
  padding: 6px 10px;
  cursor: pointer
}

.tag-option:hover {
  text-decoration: underline
}

.tag-option.selected {
  background-color: #f0f0f0;
  border-radius: 4px;
  color: var(--erji-color)
}

.index-laodao {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px;
  font-size: 1rem;
  color: #999
}

.index-laodao svg {
  color: var(--text-highlight-color);
  width: 24px;
  height: 24px
}

.sidebar-biaot {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--sanji-color)
}

.sidebar-bowen {
  margin-bottom: 40px
}

.sidebar-posts-title {
  margin-top: 4px;
  font-family: var(--font-family-title);
  font-size: 1.25rem;
  line-height: 1.6
}

.sidebar-posts-title a {
  color: var(--text-content-color)
}

.sidebar_article_new {
  background: var(--text-highlight-color);
  color: #fff;
  padding: 2px 4px;
  font-family: var(--font-family-code);
  border-radius: 2px;
  font-size: .75rem;
  display: inline-block
}

@media(prefers-color-scheme: dark) {
  .sidebar-posts-title a {
      color:var(--text-content-dark-color)
  }

  .sidebar-biaot,.index-laodao {
      color: var(--erji-color)
  }
}

.about-img {
  position: relative
}

.about-img img {
  width: 100%
}

.about-img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-family: var(--font-family-code);
  font-size: 1.8rem
}

@media(min-width: 700px) {
  .about-img-text {
      font-size:55px
  }
}

.about-text {
  margin: 20px 0;
  line-height: 2;
  font-size: 1.05rem;
  text-align: justify
}

.about-text a {
  color: var(--text-highlight-color)
}

.about-img-intro {
  padding: 8px;
  border-radius: 2px;
  font-size: .75rem;
  background: rgba(0,0,0,.4);
  position: absolute;
  color: #fff;
  bottom: 0;
  right: 0;
  margin-bottom: 4px
}

.posts-new {
  display: grid;
  gap: 30px
}

@media(min-width: 900px) {
  .posts-new {
      gap:40px
  }
}

.posts-background {
  position: relative;
  overflow: hidden
}

.posts-title a {
  font-family: var(--font-family-title);
  font-size: 1.4rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical
}

.posts-description {
  line-height: 1.8;
  font-size: 1rem;
  margin: 6px 0;
  color: var(--erji-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical
}

.posts_list {
  display: grid;
  gap: 15px;
  margin-top: 30px
}

@media(min-width: 900px) {
  .posts_list {
      display:flex;
      flex-wrap: wrap
  }
}

.posts_list_article {
  border-radius: 4px;
  background: #fff;
  box-shadow: rgba(0,0,0,7%)0 6px 20px;
  padding: 15px
}

.posts-img {
  margin: 10px 0;
  overflow: hidden;
  aspect-ratio: 5.3/3
}

.posts-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease
}

.posts-img img:hover {
  transform: scale(1.03)
}

.posts-time-new {
  display: flex;
  align-items: center;
  gap: 8px
}

.archives_nrong {
  margin: 30px 0;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr))
}

@media(min-width: 700px) {
  .archives_nrong {
      grid-gap:20px
  }
}

.archives_one {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: rgba(0,0,0,7%)0 6px 20px;
  padding: 15px
}

@media(min-width: 700px) {
  .archives_one {
      grid-gap:20px
  }
}

.archive-title {
  font-family: var(--font-family-title);
  font-size: 1rem;
  line-height: 1.6
}

.archive-time {
  font-size: .85rem;
  color: var(--sanji-color);
  font-family: var(--font-family-code)
}

.archive-img {
  margin-left: auto
}

.archive-img img {
  width: 120px;
  aspect-ratio: 4.5/3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform .3s ease;
  margin-left: 10px
}

.archives_one:hover .archive-img img {
  transform: scale(1.05)
}

@media(prefers-color-scheme: dark) {
  .archive-time {
      color:var(--erji-color)
  }

  .posts_list_article,.archives_one {
      background: var(--background-dark-color)
  }

  .posts-description {
      color: var(--sanji-color)
  }
}

.page-tiaozhuan .header,.page-tiaozhuan .footer-background {
  display: none
}

.tiaozhuan-all {
  position: relative;
  box-shadow: rgba(0,0,0,.25)0 25px 50px -12px;
  border-radius: 10px;
  background: #fff url(https://img.koobai.com/tiaozhuanico.webp)no-repeat 50%/cover;
  color: #666;
  word-break: break-all;
  max-width: 700px;
  height: 350px;
  text-align: center;
  font-size: .85rem;
  overflow: hidden;
  margin: 100px auto 0
}

@media(min-width: 700px) {
  .tiaozhuan-all {
      aspect-ratio:2/1;
      height: auto
  }
}

.tiaozhuan-nrong {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 30px
}

.tiaozhuan-title {
  font-size: 1.3rem;
  font-family: var(--font-family-title);
  color: #222;
  line-height: 1.4;
  margin-bottom: 4px
}

.tiaozhuan-info {
  margin-top: 6px
}

.tiaozhuan-button {
  margin-top: 20px
}

.tiaozhuan-button a {
  color: var(--text-highlight-color);
  border-radius: 4px;
  padding: 10px 30px;
  font-family: var(--font-family-title);
  font-size: .85rem;
  border: .5px solid var(--text-highlight-color);
  display: inline-block
}

@media(prefers-color-scheme: dark) {
  .tiaozhuan-all {
      background:var(--background-dark-color)url(https://img.koobai.com/tiaozhuandark.webp)no-repeat 50%/cover;
      color: #acacac
  }

  .tiaozhuan-title {
      color: #ddd
  }
}

.command-menu {
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  max-height: 55vh;
  width: 340px;
  overflow: hidden;
  pointer-events: none;
  text-align: left;
  position: fixed;
  bottom: 50%;
  left: 50%;
  z-index: 999;
  opacity: 0;
  box-shadow: rgba(0,0,0,5%)0 6px 24px,rgba(0,0,0,8%)0 0 0 1px;
  transform: translate3d(-50%,calc(50% + .5rem),0)scale(.95);
  transform-origin: 50% 0;
  animation: fadeInOut .3s cubic-bezier(.68,-.55,.27,1.55);
  display: none;
  background-color: rgba(255,255,255,.9);
  -webkit-backdrop-filter: saturate(140%)blur(20px);
  backdrop-filter: saturate(140%)blur(20px)
}

@keyframes fadeInOut {
  0% {
      opacity: 0;
      transform: translate3d(-50%,calc(50% + .5rem),0)scale(.95)
  }

  100% {
      opacity: 1;
      transform: translate3d(-50%,50%,0)scale(1)
  }
}

.command-menu.visible {
  opacity: 1;
  transform: translate3d(-50%,50%,0)scale(1)
}

.command-menu:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%,50%,0)scale(1)
}

.list-reset {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0
}

.group-option-link {
  display: block;
  border-radius: .75rem;
  text-decoration: none;
  color: var(--erji-color);
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 1rem;
  font-family: var(--font-family-title);
  width: 100%
}

.group-option-link svg {
  color: var(--sanji-color)
}

.group-option a {
  text-decoration: none!important
}

.command-menu-search {
  border-radius: .75rem .75rem 0 0;
  border-width: 0;
  display: block;
  font: inherit;
  padding: 1rem 1.5rem;
  width: 100%
}

.command-menu-header {
  flex: 0 0 100%
}

.command-menu-content {
  flex: auto;
  overflow-y: auto;
  scroll-padding-top: 3rem;
  scroll-padding-bottom: 3rem
}

.group {
  padding: .75rem
}

.group-label {
  display: block;
  font-size: .85rem;
  text-align: center;
  color: #9e9e9e;
  margin-top: 10px;
  margin-bottom: 10px
}

.command-menu-header {
  border-bottom: 1px solid #666
}

.command-menu-search {
  background-color: transparent;
  color: #ccc
}

.command-menu-search:focus {
  outline: 0
}

.group-option-link:focus-visible {
  outline: 0
}

.group-option-link:not(:hover):focus {
  color: var(--text-content-color);
  outline: none;
  position: relative;
  text-decoration: underline
}

.shortcuts {
  display: flex;
  margin-left: auto;
  gap: 8px;
  background: #b7b7b7;
  border-radius: 6px
}

kbd {
  font-size: .85rem;
  width: 14px;
  height: 14px;
  padding: 4px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--font-family-code)
}

li.group-option {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 15px
}

li.group-option:hover,.command-menu .focused {
  background-color: rgba(102,102,102,.15);
  border-radius: 6px
}

li.group-option:hover a {
  color: var(--text-content-color);
  text-decoration: none
}

.kbd-btn {
  color: inherit;
  gap: .25rem;
  display: flex;
  align-items: center;
  opacity: .5
}

@media(prefers-color-scheme: dark) {
  li.group-option:hover,.command-menu .focused {
      background-color:rgba(55,49,51,.6)
  }

  .shortcuts {
      background: #393235
  }

  kbd {
      color: #ccc
  }

  .group-option-link {
      color: var(--text-content-dark-color)
  }

  .group-option-link svg {
      color: #827478
  }

  .group-label {
      color: #8a8a8a
  }

  .command-menu {
      background-color: rgba(26,23,24,.6);
      box-shadow: 0 0 0 1px #322d2e
  }

  .group-option-link:not(:hover):focus,li.group-option:hover a {
      color: #eee
  }
}

#heatmap {
  display: none
}

@media(min-width: 900px) {
  #heatmap {
      width:700px;
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(12px,1fr));
      margin-bottom: 40px;
      gap: 5px
  }
}

.heatmap_week {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.heatmap_day {
  width: 100%;
  height: 15px;
  border-radius: 4px;
  position: relative
}

.month {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  color: #999
}

.month span {
  flex: 1;
  text-align: center
}

.heatmap_tooltip {
  position: absolute;
  width: max-content;
  background: #827679;
  color: #fff;
  font-size: .85rem;
  padding: 8px;
  border-radius: 4px;
  white-space: pre-wrap;
  opacity: 0;
  transition: opacity .3s;
  z-index: 1000;
  transform: translateX(-50%);
  gap: 2px;
  display: grid;
  pointer-events: auto
}

.heatmap_tooltip_title a {
  color: #fff
}

.heatmap_day_level_0 {
  background-color: #f1f1f1
}

.heatmap_day_level_1 {
  background-color: #fcdecd
}

.heatmap_day_level_2 {
  background-color: #ffd4bb
}

.heatmap_day_level_3 {
  background-color: #ffbe98
}

.heatmap_day_level_4 {
  background-color: #fc9151
}

@media(prefers-color-scheme: dark) {
  .heatmap_day_level_0 {
      background:#252121
  }

  .heatmap_tooltip {
      background: #484043;
      color: #eee
  }

  .heatmap_tooltip_title a {
      color: #eee
  }

  .retu,.month {
      color: #666
  }

  .heatmap_day_level_1 {
      background-color: #56311b
  }

  .heatmap_day_level_2 {
      background-color: #7d4626
  }

  .heatmap_day_level_3 {
      background-color: #c87240
  }
}

@font-face {
  font-family: JetBrainsMono;
  font-display: swap;
  src: url(https://img.koobai.com/fonts/JetBrainsMono-Regular.woff2)format("woff2");
  unicode-range: U+30-39,U+41-5A,U+61-7A
}

html,body {
  box-sizing: border-box
}

body {
  background: var(--background-color);
  font-family: var(--font-family-paragraph);
  color: var(--text-content-color);
  margin: 0;
  /* padding: 0 20px; */
  overflow-x: hidden;
  /* width:106% */
}

/* @media(min-width: 700px) {
  body {
      padding:0 30px
  }
} */

.wrapper {
  max-width: 700px;
  margin: 0 auto
}

.highlight {
  background-color: var(--bankuai-color)
}

::selection {
  background: #ffe8da
}

@media(prefers-color-scheme: dark) {
  body {
      background:#1a1718;
      color: var(--text-content-dark-color)
  }

  p {
      color: var(--text-content-dark-color)
  }

  h1,h2 {
      color: #ccc
  }

  h3 {
      color: #fff
  }

  a {
      color: var(--text-content-dark-color)
  }

  .author {
      color: #ccc
  }

  .summary-date {
      color: #aaa
  }

  .highlight {
      background-color: var(--background-dark-color)
  }

  img {
      filter: brightness(.8)contrast(1.2)
  }

  .highlight pre {
      background: var(--background-dark-color)!important
  }

  ::selection {
      background: #634939
  }
}

@media(min-width: 900px) {
  .img-hide,.retu-hide {
      opacity:0;
      transform: translateY(6%);
      transition: opacity .4s ease,transform .8s ease
  }

  .img-hide.visible,.retu-hide.visible {
      opacity: 1;
      transform: translateY(0)
  }
}


#memos-heatmap rect {
  stroke: white;
  stroke-width: 1px;
}

#memos-heatmap rect:hover {
  stroke: #000;
  stroke-width: 1px;
}