*,
*::before,
*::after {
  outline: none;
  box-sizing: border-box;
}

body,
ol, ul, li,
h1, h2, h3, h4, h5, h6, p,
blockquote {
  margin: 0;
  padding: 0;
}

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

p, h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
  line-height: 1.8;
  text-wrap: pretty;
}

b,
strong {
  font-weight: 600;
}

small {
  font-size: 80%;
}

pre,
code,
kbd,
samp {
  font-family: monospace monospace;
  font-size: inherit;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: auto;
}

img, svg, video, picture, canvas {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  text-transform: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

input,
textarea {
  caret-color: var(--accent);
}
input::placeholder,
textarea::placeholder {
  opacity: 0.35;
}

[contenteditable] {
  caret-color: var(--accent);
}

template, #comment_form #divCommentShow .comment_my_posted > img,
[hidden],
a[name=top],
#top_nav,
#page_begin_html,
#page_end_html,
#home > .clear,
#main > .clear,
.charm-bar-item,
.charm-bar-wrapper,
#header h2,
#header #blogLogo,
#header #navigator > .blogStats,
.topicListFooter#homepage_top_pager,
#taglist_title_wrap,
#MyTag1_dtTagList,
.day > *:not(.postTitle[role=heading]),
.PostListTitle ~ .pager,
.PostList > *:not(.postTitl2[role=heading]),
#topics > .post > .clear,
#topics > .post > .postDesc,
#author_profile_detail br,
#blog-comments-placeholder #comment_pager_top,
#blog-comments-placeholder #comment_pager_top ~ br,
#blog-comments-placeholder .feedbackItem:has(.feedbackListSubtitle:empty),
#comment_form #comment_nav,
#comment_form_container #tip_comment:empty,
#comment_form.commentform #tip_comment2,
#comment_form.commentform #tip_comment2 ~ p,
#comment_form .commentbox_footer,
#ad_t2,
#cnblogs_ch,
#cnblogs_c1,
#cnblogs_c2,
#opt_under_post,
#under_post_card1,
#under_post_card2,
#under_post_kb,
.under-post-card,
.ad_text_commentbox {
  display: none !important;
}

:root {
  --prism-scheme: light;
  /* Colors */
  --prism-foreground: #6e6e6e;
  --prism-background: #f4f4f4;
  /* Tokens */
  --prism-comment: #a8a8a8;
  --prism-string: #555555;
  --prism-literal: #333333;
  --prism-keyword: #000000;
  --prism-function: #4f4f4f;
  --prism-deleted: #333333;
  --prism-class: #333333;
  --prism-builtin: #757575;
  --prism-property: #333333;
  --prism-namespace: #4f4f4f;
  --prism-punctuation: #ababab;
  --prism-decorator: var(--prism-class);
  --prism-operator: var(--prism-punctuation);
  --prism-number: var(--prism-literal);
  --prism-boolean: var(--prism-literal);
  --prism-variable: var(--prism-literal);
  --prism-constant: var(--prism-literal);
  --prism-symbol: var(--prism-literal);
  --prism-interpolation: var(--prism-literal);
  --prism-selector: var(--prism-keyword);
  --prism-keyword-control: var(--prism-keyword);
  --prism-regex: var(--prism-string);
  --prism-json-property: var(--prism-property);
  --prism-inline-background: var(--prism-background);
  /* Token Styles */
  --prism-comment-style: italic;
  --prism-url-decoration: underline;
  /* Extension */
  --prism-line-number: #a5a5a5;
  --prism-line-number-gutter: #333333;
  --prism-line-highlight-background: #eeeeee;
  --prism-selection-background: #aaaaaa;
  --prism-marker-color: var(--prism-foreground);
  --prism-marker-opacity: 0.4;
  --prism-marker-font-size: 0.8em;
  /* Font */
  --prism-font-size: 1em;
  --prism-line-height: 1.5em;
  --prism-font-family: monospace;
  --prism-inline-font-size: var(--prism-font-size);
  --prism-block-font-size: var(--prism-font-size);
  /* Sizing */
  --prism-tab-size: 2;
  --prism-block-padding-x: 1em;
  --prism-block-padding-y: 1em;
  --prism-block-margin-x: 0;
  --prism-block-margin-y: 0.5em;
  --prism-block-radius: 0.3em;
  --prism-inline-padding-x: 0.3em;
  --prism-inline-padding-y: 0.1em;
  --prism-inline-radius: 0.3em;
}

div[class*=language-],
pre[class*=language-],
code[class*=language-] {
  font-size: var(--prism-font-size);
  font-family: var(--prism-font-family);
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: var(--prism-line-height);
  -moz-tab-size: var(--prism-tab-size);
  tab-size: var(--prism-tab-size);
  -webkit-hyphens: none;
  hyphens: none;
  color: var(--prism-foreground) !important;
}

/* Code blocks */
div[class*=language-],
pre[class*=language-] {
  font-size: var(--prism-block-font-size);
  padding: var(--prism-block-padding-y) var(--prism-block-padding-x);
  margin: var(--prism-block-margin-y) var(--prism-block-margin-x);
  border-radius: var(--prism-block-radius);
  overflow: auto;
  background: var(--prism-background);
}

/* Inline code */
:not(pre) > code[class*=language-] {
  font-size: var(--prism-inline-font-size);
  padding: var(--prism-inline-padding-y) var(--prism-inline-padding-x);
  border-radius: var(--prism-inline-radius);
  background: var(--prism-inline-background);
}

/* Selection */
pre[class*=language-]::-moz-selection, pre[class*=language-] ::-moz-selection, code[class*=language-]::-moz-selection, code[class*=language-] ::-moz-selection {
  background: var(--prism-selection-background);
}
pre[class*=language-]::selection,
pre[class*=language-] ::selection,
code[class*=language-]::selection,
code[class*=language-] ::selection,
pre[class*=language-]::-moz-selection,
pre[class*=language-] ::-moz-selection,
code[class*=language-]::-moz-selection,
code[class*=language-] ::-moz-selection {
  background: var(--prism-selection-background);
}

/* Tokens */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: var(--prism-comment);
  font-style: var(--prism-comment-style);
}

.token.namespace {
  color: var(--prism-namespace);
}

.token.interpolation {
  color: var(--prism-interpolation);
}

.token.string {
  color: var(--prism-string);
}

.token.punctuation {
  color: var(--prism-punctuation);
}

.token.operator {
  color: var(--prism-operator);
}

.token.keyword.module,
.token.keyword.control-flow {
  color: var(--prism-keyword-control);
}

.token.url,
.token.symbol,
.token.inserted {
  color: var(--prism-symbol);
}

.token.constant {
  color: var(--prism-constant);
}

.token.string.url {
  -webkit-text-decoration: var(--prism-url-decoration);
  text-decoration: var(--prism-url-decoration);
}

.token.boolean,
.language-json .token.boolean {
  color: var(--prism-boolean);
}

.token.number,
.language-json .token.number {
  color: var(--prism-number);
}

.token.variable {
  color: var(--prism-variable);
}

.token.keyword {
  color: var(--prism-keyword);
}

.token.atrule,
.token.attr-value,
.token.selector {
  color: var(--prism-selector);
}

.token.function {
  color: var(--prism-function);
}

.token.deleted {
  color: var(--prism-deleted);
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.class-name {
  color: var(--prism-class);
}

.token.tag,
.token.builtin {
  color: var(--prism-builtin);
}

.token.attr-name,
.token.property,
.token.entity {
  color: var(--prism-property);
}

.language-json .token.property {
  color: var(--prism-json-property);
}

.token.regex {
  color: var(--prism-regex);
}

.token.decorator,
.token.annotation {
  color: var(--prism-decorator);
}

/* overrides color-values for the Line Numbers plugin
 * https://prismjs.com/plugins/line-numbers/
 */
.line-numbers .line-numbers-rows {
  border-right-color: var(--prism-line-number);
}

.line-numbers-rows > span:before {
  color: var(--prism-line-number-gutter);
}

/* overrides color-values for the Line Highlight plugin
  * https://prismjs.com/plugins/line-highlight/
  */
.line-highlight {
  background: var(--prism-line-highlight-background);
}

:root {
  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Monaco, Consolas, "Courier New", Courier, monospace;
}

:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-dark: #f5f5f5;
  --bg-darker: #d4d4d4;
  --fg: #555;
  --fg-light: #888;
  --fg-dark: #222;
  --fg-darker: #000;
  --divider: #dcdfe6;
  --divider-light: #ebeef5;
  --divider-dark: #cdd0d6;
  --accent: #0d99ff;
  --accent-rgb: 16, 185, 129;
  --accent-light: #34d399;
  --accent-dark: #007bef;
  --text-body: 1rem;
  --leading-body: 1.5rem;
  --rad-body: 0.375rem;
}

:root.dark {
  color-scheme: dark;
  --bg: #141414;
  --bg-dark: #181818;
  --bg-darker: #000000;
  --fg: #bbbbbb;
  --fg-dark: #dddddd;
  --fg-darker: #ffffff;
  --divider: #4c4d4f;
  --divider-light: #363637;
  --divider-dark: #636466;
}

:root[data-font-size=small] {
  --text-body: 0.75rem;
  --leading-body: 1rem;
  --rad-body: 0.25rem;
}

:root[data-font-size=medium] {
  --text-body: 0.875rem;
  --leading-body: 1.25rem;
  --rad-body: 0.5rem;
}

html:not(.dark) {
  --prism-foreground: #393a34;
  --prism-background: #f8f8f8;
  --prism-comment: #a0ada0;
  --prism-string: #b56959;
  --prism-literal: #2f8a89;
  --prism-number: #296aa3;
  --prism-keyword: #1c6b48;
  --prism-function: #6c7834;
  --prism-boolean: #1c6b48;
  --prism-constant: #a65e2b;
  --prism-deleted: #a14f55;
  --prism-class: #2993a3;
  --prism-builtin: #ab5959;
  --prism-property: #b58451;
  --prism-namespace: #b05a78;
  --prism-punctuation: #8e8f8b;
  --prism-decorator: #bd8f8f;
  --prism-regex: #ab5e3f;
  --prism-json-property: #698c96;
}

html.dark {
  --prism-foreground: #d4cfbf;
  --prism-background: #101010;
  --prism-comment: #758575;
  --prism-string: #d48372;
  --prism-literal: #429988;
  --prism-keyword: #4d9375;
  --prism-boolean: #1c6b48;
  --prism-number: #6394bf;
  --prism-variable: #c2b36e;
  --prism-function: #a1b567;
  --prism-deleted: #a14f55;
  --prism-class: #54b1bf;
  --prism-builtin: #e0a569;
  --prism-property: #dd8e6e;
  --prism-namespace: #db889a;
  --prism-punctuation: #858585;
  --prism-decorator: #bd8f8f;
  --prism-regex: #ab5e3f;
  --prism-json-property: #6b8b9e;
  --prism-line-number: #888888;
  --prism-line-number-gutter: #eeeeee;
  --prism-line-highlight-background: #444444;
  --prism-selection-background: #444444;
}

:root {
  --prism-font-size: 0.9rem;
  --prism-font-family: "Input Mono", "Courier New", sans-serif;
}

html {
  accent-color: var(--accent);
  -moz-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
  font-variant-ligatures: common-ligatures;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  line-height: var(--leading-body);
  color: var(--fg);
  font-size: var(--text-body);
  font-weight: normal;
  font-family: var(--font-sans);
  text-align: left;
  min-height: auto;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0.5em;
}

hr {
  width: 3rem;
  height: 1px;
  margin: 2rem auto;
  border: 0;
  background-color: var(--divider);
  clear: both;
}

a {
  color: currentColor;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: inherit;
}

blockquote {
  margin: 20px 0;
  padding: 0.75rem 1rem;
}
blockquote > p:last-child {
  margin-bottom: 0;
}

pre, textarea {
  -webkit-overflow-scrolling: touch;
}

bc-view {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
bc-view [inline] {
  display: inline-flex;
}

.tippy-box[data-theme~=tooltip] {
  --shadow-rgb: 0, 0, 0;
  padding: 2px 5px;
  border-radius: 0;
  border: 1px solid var(--divider-dark);
  background-color: var(--prism-background);
  font-size: 75%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

pre[class*=language-] {
  border-width: 0;
}

.loading {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M24 4v4m10-1.32l-2 3.464M41.32 14l-3.464 2M44 24h-4m1.32 10l-3.464-2M34 41.32l-2-3.464M24 44v-4m-10 1.32l2-3.464M6.68 34l3.464-2M4 24h4M6.68 14l3.464 2M14 6.68l2 3.464'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
}
.loading::before, .loading::after {
  content: "";
  position: fixed;
}
.loading::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: hsla(0, 0%, 100%, 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(15px);
  backdrop-filter: saturate(180%) blur(15px);
}
.loading::after {
  --size: 14px;
  top: calc(50% - var(--size) / 2);
  left: calc(50% - var(--size) / 2);
  z-index: 11;
  width: var(--size);
  height: var(--size);
  -webkit-mask: var(--icon) no-repeat;
  mask: var(--icon) no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  background-color: currentColor;
  animation: rotating 2s infinite linear;
}
.dark .loading::before {
  background-color: hsla(0, 0%, 0%, 0.8);
}

@keyframes rotating {
  100% {
    transform: rotate(1turn);
  }
}
#home {
  display: flex;
  flex-direction: column;
  max-width: 40rem;
  min-height: 100vh;
  min-height: 100dvh;
  margin: auto;
}

#header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  margin-bottom: 2rem;
  padding: 2rem 1.5rem;
}
#header #lnkBlogLogo {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 512 512'%3E%3Cpath fill='currentColor' d='M255.838 20.014c-46.198 0-92.387 13.48-132.154 40.41a45.65 45.65 0 0 0-22.97-6.176c-25.37 0-45.933 20.568-45.933 45.936c0 8.312 2.222 16.1 6.083 22.828c-62.673 91.82-53.3 218.253 28.147 299.7c81.133 81.135 206.908 90.746 298.638 28.868a45.7 45.7 0 0 0 23.727 6.608c25.37 0 45.934-20.564 45.934-45.932a45.7 45.7 0 0 0-6.482-23.522c62.655-91.817 53.28-218.235-28.162-299.675c-46.03-46.03-106.43-69.046-166.828-69.046zm0 18.578c55.575 0 111.15 21.23 153.607 63.685c74.088 74.088 83.513 188.115 28.315 272.39a45.7 45.7 0 0 0-26.385-8.345q-1.7.002-3.37.123l-92.698-3.002l49.26-171.656l-149.17 48.344l8.748-116.638l-85.225 2.192l.014-.02c-37.956-.28-39.983-20.097-19.176-39.12c4.96-4 10.058-7.748 15.27-11.247c1-.606 2.014-1.21 3.06-1.803l-.108-.142c35.764-23.165 76.808-34.76 117.858-34.76zm-39.97 22.488a198 198 0 0 0-19.58 5.063a157.5 157.5 0 0 1-12.114 39.683l20.472-.527a175.8 175.8 0 0 0 11.223-44.22zm89.075 2.037c-16.647 30.16-38.852 61.37-64.386 91.46l-2.39 31.85c34.282-37.795 63.946-78.343 85.063-117.728a197 197 0 0 0-18.287-5.583zm84.963 45.75l-81.465 81.465l39.103-12.67l55.57-55.572a199 199 0 0 0-13.207-13.223zm-316.16 28.488a45.7 45.7 0 0 0 26.16 8.745l93.842 11.5l-35.3 145.13l148.896-47.99l-34.508 149.156l96.934-11.11l-.014.03c36.085-3.498 39.427 16.134 19.12 34.834c-85.258 66.25-208.29 60.198-286.646-18.156c-74.014-74.014-83.5-187.89-28.484-272.14zm58.47 31.532c-19.22 13.763-41.652 23.336-65.978 27.38a197 197 0 0 0-5.05 19.587c36.93-4.42 70.385-20.235 96.757-43.815l-25.728-3.153zM443.2 188.852c-23.79 12.764-48 28.65-71.77 46.78l-9.096 31.696c28.52-23.762 57.94-44.434 86.422-60.17a197 197 0 0 0-5.557-18.306zm-288.927 51.96c-29.948 25.386-60.998 47.47-91.013 64.05a197 197 0 0 0 5.586 18.288c25.848-13.872 52.195-31.422 77.935-51.54zm296.393 55.372c-39.822 4.804-75.598 22.86-102.795 49.615l27.167.88c20.182-15.63 44.25-26.49 70.53-30.897c2.02-6.4 3.73-12.936 5.1-19.6zm-226.71 5.066l-39 12.568L109 389.778c4.2 4.605 8.61 9.015 13.22 13.208zm47.087 27.482c-33.008 36.814-61.585 76.107-82.11 114.323a198 198 0 0 0 18.305 5.56c14.46-26.148 33.09-53.08 54.436-79.385zm52.38 88.178l-20.49 2.348a176 176 0 0 0-6.736 31.305a198 198 0 0 0 19.604-5.086a157.5 157.5 0 0 1 7.624-28.567z'/%3E%3C/svg%3E");
  position: absolute;
  width: 2rem;
  height: 2rem;
  margin-top: -0.25rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: block;
  background-color: var(--accent);
  -webkit-mask: var(--icon) no-repeat;
  mask: var(--icon) no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}
@media (min-width: 40rem) {
  #header #lnkBlogLogo {
    position: fixed;
    left: 1.5rem;
  }
}
#header h1 {
  margin: 0;
  display: none;
  font-size: 1.125rem;
  font-weight: 600;
}
@media (min-width: 45rem) {
  #header h1 {
    display: unset;
  }
}
#header #navigator {
  display: flex;
}
#header #navigator #navList {
  margin-left: auto;
  display: flex;
  align-items: center;
}
#header #navigator #navList .menu {
  transition: color 0.2s ease;
}
#header #navigator #navList .menu:hover {
  color: var(--accent);
  opacity: 1;
}
#header #navigator #navList li:not(:first-child) .menu {
  margin-left: 1.2rem;
}
#main {
  flex: 1;
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  #main {
    margin-bottom: env(safe-area-inset-bottom);
  }
}

#footer {
  display: block;
  padding: 2rem 1.5rem;
  font-size: 0.875rem;
  text-align: center;
}
#footer a {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
#footer a:hover {
  color: var(--accent);
}
#footer .footer-icp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.1428571429;
}
#footer .footer-icp a {
  text-decoration: underline;
}

#mainContent > bc-view {
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 2.25rem;
  line-height: 1.111111;
}
#mainContent > bc-view a {
  border: none;
  font-weight: 600;
  color: var(--fg-darker);
  opacity: 0.2;
}
#mainContent > bc-view a:hover {
  opacity: 0.5;
}
#mainContent > bc-view a.active {
  opacity: 1;
}

#sideBar {
  position: fixed;
  top: calc(4.5rem + 2px);
  left: -18rem;
  bottom: 0;
  z-index: 5;
  width: 18rem;
  padding: 0.5rem;
  background-color: var(--bg);
  overflow: auto;
}

.topicListFooter {
  margin: 0;
  text-align: center;
}
.topicListFooter a {
  min-width: 2rem;
  margin: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid var(--accent);
  outline: none;
  background-color: transparent;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: calc(1.5rem - 2px);
  text-align: center;
  text-decoration: none;
  color: var(--accent);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 200ms;
}
.topicListFooter a:hover, .topicListFooter a.span {
  background-color: var(--accent);
  color: #fff;
}
.topicListFooter a:not(.span):active {
  opacity: 0.85;
}
.topicListFooter#homepage_bottom_pager .pager {
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topicListFooter#homepage_bottom_pager .pager a:not(:last-child) {
  margin-right: 0.5rem;
}
.topicListFooter #nav_next_page a {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 0;
}

#myposts .pager {
  text-align: center;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#myposts .pager a {
  min-width: 2rem;
  margin: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid var(--accent);
  outline: none;
  background-color: transparent;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: calc(1.5rem - 2px);
  text-align: center;
  text-decoration: none;
  color: var(--accent);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 200ms;
}
#myposts .pager a:hover, #myposts .pager a.span {
  background-color: var(--accent);
  color: #fff;
}
#myposts .pager a:not(.span):active {
  opacity: 0.85;
}
#myposts .pager a:not(:last-child) {
  margin-right: 0.5rem;
}

#taglist > bc-view {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#taglist > bc-view > a {
  position: relative;
  padding: 0.2rem 0.75rem;
  color: var(--fg);
  background-color: var(--bg);
  border-radius: 0.25rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
#taglist > bc-view > a:hover {
  transform: translateY(-2px);
}
#taglist > bc-view > a .dot {
  margin: 0 0.25rem;
}

#green_channel #green_channel_wechat, #green_channel #green_channel_weibo, #green_channel #green_channel_favorite, #green_channel #green_channel_follow, #green_channel #green_channel_digg {
  transition: 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#green_channel #green_channel_wechat:hover, #green_channel #green_channel_weibo:hover, #green_channel #green_channel_favorite:hover, #green_channel #green_channel_follow:hover, #green_channel #green_channel_digg:hover {
  opacity: 0.8;
  box-shadow: none;
}
#green_channel #green_channel_wechat:active, #green_channel #green_channel_weibo:active, #green_channel #green_channel_favorite:active, #green_channel #green_channel_follow:active, #green_channel #green_channel_digg:active {
  opacity: 1;
}

#myposts,
.PostList {
  margin: 0;
  font-size: 100%;
}

.PostListTitle {
  margin-left: -0.25rem;
  text-transform: uppercase;
}

.postTitle[role=heading],
.postTitl2[role=heading] {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.postTitle[role=heading] a,
.postTitl2[role=heading] a {
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  opacity: 0.6;
  color: var(--fg-darker);
  transition: opacity 200ms ease-out;
}
.postTitle[role=heading] a:hover,
.postTitl2[role=heading] a:hover {
  opacity: 1;
}
.postTitle[role=heading] a .pinned-post-mark,
.postTitl2[role=heading] a .pinned-post-mark {
  position: relative;
  top: -0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  vertical-align: baseline;
  border-radius: 0.25rem;
  padding: 0.05rem 0.25rem;
  border: 1px solid currentColor;
}
.postTitle[role=heading] a bc-view,
.postTitl2[role=heading] a bc-view {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  align-items: center;
  margin-top: -0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  opacity: 0.5;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
.postTitle[role=heading] a bc-view > span,
.postTitl2[role=heading] a bc-view > span {
  display: inline-flex;
  align-items: center;
  opacity: 0.5;
}
.postTitle[role=heading] a bc-view svg,
.postTitl2[role=heading] a bc-view svg {
  margin-right: 0.25rem;
  width: 1rem;
  height: 1rem;
}

h1.postTitle,
h1.PostListTitle {
  color: var(--fg-darker);
  font-weight: 700;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.1111111;
}
h1.postTitle span,
h1.PostListTitle span {
  vertical-align: inherit;
}

h1.postTitle ~ bc-view {
  align-items: center;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}
h1.postTitle ~ bc-view time {
  color: var(--fg-light);
}

#cnblogs_post_body a,
.cnblogs-post-body a,
.blog_comment_body a {
  color: var(--fg-darker);
  font-weight: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 125, 125, 0.3);
  transition: border 0.3s ease-in-out;
}
.dark #cnblogs_post_body a,
.dark .cnblogs-post-body a,
.dark .blog_comment_body a {
  border-bottom-color: rgba(125, 125, 125, 0.5);
}
#cnblogs_post_body a:hover,
.cnblogs-post-body a:hover,
.blog_comment_body a:hover {
  border-bottom: 1px solid var(--accent);
}
#cnblogs_post_body strong,
.cnblogs-post-body strong,
.blog_comment_body strong {
  color: var(--fg-dark);
  font-weight: 600;
}
#cnblogs_post_body ol > li,
#cnblogs_post_body ul > li,
.cnblogs-post-body ol > li,
.cnblogs-post-body ul > li,
.blog_comment_body ol > li,
.blog_comment_body ul > li {
  position: relative;
  padding-left: 1.75em;
  list-style-type: none;
}
#cnblogs_post_body ol > li::before,
.cnblogs-post-body ol > li::before,
.blog_comment_body ol > li::before {
  content: counter(list-item, decimal) ".";
  position: absolute;
  font-weight: 400;
  color: #6b7280;
  left: 0;
}
#cnblogs_post_body ul > li::before,
.cnblogs-post-body ul > li::before,
.blog_comment_body ul > li::before {
  content: "";
  position: absolute;
  background-color: #d1d5db;
  border-radius: 50%;
  width: 0.375em;
  height: 0.375em;
  top: 0.6875em;
  left: 0.25em;
}
#cnblogs_post_body hr,
.cnblogs-post-body hr,
.blog_comment_body hr {
  background-color: rgba(125, 125, 125, 0.3);
  margin: 2em auto;
  visibility: visible;
}
#cnblogs_post_body blockquote,
.cnblogs-post-body blockquote,
.blog_comment_body blockquote {
  margin: 1.6em 0;
  padding: 0.6em 1.2em;
  border-width: 0;
  border-style: solid;
  color: inherit;
  border-left-width: 0.25rem;
  border-color: rgba(125, 125, 125, 0.3);
  quotes: "“" "”" "‘" "’";
  line-height: 1.5em;
  opacity: 0.8;
}
#cnblogs_post_body blockquote > :first-child,
.cnblogs-post-body blockquote > :first-child,
.blog_comment_body blockquote > :first-child {
  margin-top: 0;
}
#cnblogs_post_body blockquote > :last-child,
.cnblogs-post-body blockquote > :last-child,
.blog_comment_body blockquote > :last-child {
  margin-bottom: 0;
}
#cnblogs_post_body h1,
.cnblogs-post-body h1,
.blog_comment_body h1 {
  color: var(--fg-darker);
  font-weight: 700;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
#cnblogs_post_body h2,
.cnblogs-post-body h2,
.blog_comment_body h2 {
  color: var(--fg-dark);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
#cnblogs_post_body h3,
.cnblogs-post-body h3,
.blog_comment_body h3 {
  color: inherit;
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
#cnblogs_post_body h4,
.cnblogs-post-body h4,
.blog_comment_body h4 {
  color: inherit;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
#cnblogs_post_body figure figcaption,
.cnblogs-post-body figure figcaption,
.blog_comment_body figure figcaption {
  color: #6b7280;
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
#cnblogs_post_body code,
.cnblogs-post-body code,
.blog_comment_body code {
  color: var(--fg-dark);
  font-weight: 600;
  font-size: 0.875em;
  padding: unset;
  line-height: unset;
  margin: unset;
  display: unset;
  overflow-x: unset;
  vertical-align: unset;
  border-radius: unset;
  background-color: unset;
}
#cnblogs_post_body code::before, #cnblogs_post_body code::after,
.cnblogs-post-body code::before,
.cnblogs-post-body code::after,
.blog_comment_body code::before,
.blog_comment_body code::after {
  content: "`";
}
#cnblogs_post_body pre,
.cnblogs-post-body pre,
.blog_comment_body pre {
  background: var(--prism-background);
  overflow: auto hidden;
  font-size: 0.9em;
  margin: 0.5em 0;
  padding: 1em;
  border-width: 0;
  border-radius: 0.3em;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: var(--prism-line-height);
  -moz-tab-size: var(--prism-tab-size);
  tab-size: var(--prism-tab-size);
  -webkit-hyphens: none;
  hyphens: none;
}
#cnblogs_post_body pre code,
.cnblogs-post-body pre code,
.blog_comment_body pre code {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: 400;
  font-size: var(--prism-font-size);
  line-height: var(--prism-line-height);
  white-space: pre;
}
#cnblogs_post_body pre code::before, #cnblogs_post_body pre code::after,
.cnblogs-post-body pre code::before,
.cnblogs-post-body pre code::after,
.blog_comment_body pre code::before,
.blog_comment_body pre code::after {
  content: none;
}
#cnblogs_post_body table,
.cnblogs-post-body table,
.blog_comment_body table {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
#cnblogs_post_body thead,
.cnblogs-post-body thead,
.blog_comment_body thead {
  color: #111827;
  font-weight: 600;
  border-bottom-width: 1px;
  border-bottom-color: #d1d5db;
}
#cnblogs_post_body thead th,
.cnblogs-post-body thead th,
.blog_comment_body thead th {
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
#cnblogs_post_body tbody tr,
.cnblogs-post-body tbody tr,
.blog_comment_body tbody tr {
  border-bottom-width: 1px;
  border-bottom-color: #e5e7eb;
}
#cnblogs_post_body tbody tr:last-child,
.cnblogs-post-body tbody tr:last-child,
.blog_comment_body tbody tr:last-child {
  border-bottom-width: 0;
}
#cnblogs_post_body tbody td,
.cnblogs-post-body tbody td,
.blog_comment_body tbody td {
  vertical-align: top;
  padding: 0.5714286em;
}
#cnblogs_post_body p,
.cnblogs-post-body p,
.blog_comment_body p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
#cnblogs_post_body img, #cnblogs_post_body video, #cnblogs_post_body figure,
.cnblogs-post-body img,
.cnblogs-post-body video,
.cnblogs-post-body figure,
.blog_comment_body img,
.blog_comment_body video,
.blog_comment_body figure {
  margin-top: 2em;
  margin-bottom: 2em;
}
#cnblogs_post_body figure > *,
.cnblogs-post-body figure > *,
.blog_comment_body figure > * {
  margin-top: 0;
  margin-bottom: 0;
}
#cnblogs_post_body h2 code,
.cnblogs-post-body h2 code,
.blog_comment_body h2 code {
  font-size: 0.875em;
}
#cnblogs_post_body h3 code,
.cnblogs-post-body h3 code,
.blog_comment_body h3 code {
  font-size: 0.9em;
}
#cnblogs_post_body ol, #cnblogs_post_body ul,
.cnblogs-post-body ol,
.cnblogs-post-body ul,
.blog_comment_body ol,
.blog_comment_body ul {
  margin: 1.25em 0;
  padding: 0;
  list-style-type: none;
}
#cnblogs_post_body li,
.cnblogs-post-body li,
.blog_comment_body li {
  margin: 0.5em 0;
}
#cnblogs_post_body > ul > li p,
.cnblogs-post-body > ul > li p,
.blog_comment_body > ul > li p {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
#cnblogs_post_body > ol > li > *:first-child,
.cnblogs-post-body > ol > li > *:first-child,
.blog_comment_body > ol > li > *:first-child {
  margin-top: 1.25em;
}
#cnblogs_post_body > ol > li > *:last-child,
.cnblogs-post-body > ol > li > *:last-child,
.blog_comment_body > ol > li > *:last-child {
  margin-bottom: 1.25em;
}
#cnblogs_post_body ul ul,
#cnblogs_post_body ul ol,
#cnblogs_post_body ol ul,
#cnblogs_post_body ol ol,
.cnblogs-post-body ul ul,
.cnblogs-post-body ul ol,
.cnblogs-post-body ol ul,
.cnblogs-post-body ol ol,
.blog_comment_body ul ul,
.blog_comment_body ul ol,
.blog_comment_body ol ul,
.blog_comment_body ol ol {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
#cnblogs_post_body hr + *,
#cnblogs_post_body h1 + *,
#cnblogs_post_body h2 + *,
#cnblogs_post_body h3 + *,
#cnblogs_post_body h4 + *,
.cnblogs-post-body hr + *,
.cnblogs-post-body h1 + *,
.cnblogs-post-body h2 + *,
.cnblogs-post-body h3 + *,
.cnblogs-post-body h4 + *,
.blog_comment_body hr + *,
.blog_comment_body h1 + *,
.blog_comment_body h2 + *,
.blog_comment_body h3 + *,
.blog_comment_body h4 + * {
  margin-top: 0;
}
#cnblogs_post_body h6,
.cnblogs-post-body h6,
.blog_comment_body h6 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  opacity: 0.5;
  font-weight: 500;
  letter-spacing: 2px;
}
#cnblogs_post_body thead th:first-child,
.cnblogs-post-body thead th:first-child,
.blog_comment_body thead th:first-child {
  padding-left: 0;
}
#cnblogs_post_body thead th:last-child,
.cnblogs-post-body thead th:last-child,
.blog_comment_body thead th:last-child {
  padding-right: 0;
}
#cnblogs_post_body tbody td:first-child,
.cnblogs-post-body tbody td:first-child,
.blog_comment_body tbody td:first-child {
  padding-left: 0;
}
#cnblogs_post_body tbody td:last-child,
.cnblogs-post-body tbody td:last-child,
.blog_comment_body tbody td:last-child {
  padding-right: 0;
}
#cnblogs_post_body > :first-child,
.cnblogs-post-body > :first-child,
.blog_comment_body > :first-child {
  margin-top: 0;
}
#cnblogs_post_body > :last-child,
.cnblogs-post-body > :last-child,
.blog_comment_body > :last-child {
  margin-bottom: 0;
}
#cnblogs_post_body b,
.cnblogs-post-body b,
.blog_comment_body b {
  color: var(--fg-dark);
}
#cnblogs_post_body em,
.cnblogs-post-body em,
.blog_comment_body em {
  color: inherit;
}

.blog_comment_body :not(pre, div) > code::before, .blog_comment_body :not(pre, div) > code::after {
  content: none;
}

.post-meta-container .post-meta-tags a {
  border: 1px solid var(--divider);
  padding: 1px 3px;
  border-radius: 0.25rem;
  font-size: 12px;
  line-height: 1;
  transition: background-color 0.3s;
}
.post-meta-container .post-meta-tags a:hover {
  background-color: var(--bg-dark);
}

#post_next_prev {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
#post_next_prev svg {
  width: 1rem;
  height: 1rem;
}
#post_next_prev a {
  --x: 0px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  border: 1px solid var(--divider);
  font-size: calc(var(--text-body) * 0.875);
  padding: 1rem;
  border-radius: var(--rad-body);
  transition: background-color 0.3s;
}
#post_next_prev a span {
  overflow: hidden;
  line-height: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#post_next_prev a:hover {
  background-color: var(--bg-dark);
}
#post_next_prev a:hover span[role] {
  transform: translateX(var(--x));
}
#post_next_prev a.prev {
  --x: -1px;
}
#post_next_prev a.next {
  --x: 1px;
  flex-direction: row-reverse;
}
#post_next_prev:has(> span) {
  gap: 0;
}
@media (min-width: 40rem) {
  #post_next_prev {
    flex-direction: row;
  }
  #post_next_prev a {
    width: calc(50% - 0.5rem);
  }
}

#blog_post_info {
  position: relative;
  display: grid;
}

#green_channel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  width: 100%;
  margin: 0;
  padding: 1rem 0;
  border: 0;
  font-size: 0.75rem;
  text-align: left;
}
#green_channel a {
  margin-right: 0;
  padding: 0.25rem 0.5rem;
  background-image: none;
  border-radius: 0.125rem;
  box-shadow: none;
  text-shadow: none;
}
#green_channel #green_channel_digg {
  background-color: #2b92e4;
  border: 1px solid #228de3 !important;
  box-shadow: 4px 4px 0 rgba(43, 146, 228, 0.2);
}
#green_channel #green_channel_follow {
  background-color: #ff94ab;
  border: 1px solid #ff8aa3 !important;
  box-shadow: 4px 4px 0 rgba(255, 148, 171, 0.2);
}
#green_channel #green_channel_favorite {
  background-color: #816ad6;
  border: 1px solid #7a62d4 !important;
  box-shadow: 4px 4px 0 rgba(129, 106, 214, 0.2);
}
#green_channel #green_channel_weibo {
  background-color: #0e2746;
  border: 1px solid #0c223e !important;
  box-shadow: 4px 4px 0 rgba(14, 39, 70, 0.2);
}
#green_channel #green_channel_wechat {
  background-color: #51b035;
  border: 1px solid #4da833 !important;
  box-shadow: 4px 4px 0 rgba(81, 176, 53, 0.2);
}

#author_profile {
  width: 100%;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--divider);
  border-radius: var(--rad-body);
  float: none;
  margin: 0;
  color: var(--fg);
}

#author_profile_info {
  display: flex;
  line-height: 1;
  gap: 1rem;
}
#author_profile_info > a {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  overflow: hidden;
  outline: 1px solid var(--fg);
  outline-offset: 2px;
}
#author_profile_info > a img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
#author_profile_info > a:hover {
  outline-color: var(--fg-darker);
}

#author_profile_detail {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: max-content;
  grid-template-areas: "name name" "followers followees";
  gap: 0.125rem 1rem;
  line-height: 1.5;
  margin: 0;
  color: var(--fg);
}
#author_profile_detail a:nth-of-type(1) {
  grid-area: name;
}
#author_profile_detail a:nth-of-type(2) {
  grid-area: followers;
}
#author_profile_detail a:nth-of-type(3) {
  grid-area: followees;
}

#comment_form, #blog-comments-placeholder:not(:empty) {
  position: relative;
  display: block;
  margin-top: 2rem;
  padding: 0;
}

#blog-comments-placeholder .feedback_area_title {
  font-size: 1.4em;
}
#blog-comments-placeholder .feedback_area_title .comment-sort {
  align-items: center;
}
#blog-comments-placeholder .feedbackItem {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "avatar title" "content content";
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
#blog-comments-placeholder .feedbackItem > bc-view {
  grid-area: avatar;
  padding: 0.625rem 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--divider);
  border-right: none;
  border-top-left-radius: var(--rad-body);
}
#blog-comments-placeholder .feedbackItem > bc-view img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
#blog-comments-placeholder .feedbackItem > bc-view a {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  outline: 1px solid var(--fg);
  outline-offset: 2px;
}
#blog-comments-placeholder .feedbackItem > bc-view a:hover {
  outline-color: var(--fg-dark);
}
#blog-comments-placeholder .feedbackItem > .feedbackListSubtitle {
  grid-area: title;
  border: 1px solid var(--divider);
  border-left: none;
  padding: 0.5rem 1rem 0.5rem 0;
  border-top-right-radius: var(--rad-body);
  background: var(--bg-dark);
  place-content: center;
  font-size: 0;
  display: grid;
  grid-template-areas: "layer auchor louzhu" "date date date";
  grid-template-rows: 1.25rem 1.25rem 0;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  align-items: center;
}
#blog-comments-placeholder .feedbackItem > .feedbackListSubtitle .feedbackManage {
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
}
#blog-comments-placeholder .feedbackItem > .feedbackListSubtitle .feedbackManage .comment_actions {
  display: inline-flex;
  vertical-align: bottom;
  font-size: 0.75rem;
}
#blog-comments-placeholder .feedbackItem > .feedbackListSubtitle .layer, #blog-comments-placeholder .feedbackItem > .feedbackListSubtitle .louzhu {
  padding: 0.125rem 0.25rem;
  border-radius: 3px;
  line-height: 1;
}
#blog-comments-placeholder .feedbackItem > .feedbackListSubtitle .layer {
  grid-area: layer;
  border: 1px solid var(--divider);
  background-color: #fff;
  font-size: 0.75rem;
}
#blog-comments-placeholder .feedbackItem > .feedbackListSubtitle .louzhu {
  grid-area: louzhu;
  background-color: #ff581a;
  color: #fff;
}
#blog-comments-placeholder .feedbackItem > .feedbackListSubtitle .louzhu::before {
  content: "作者";
  font-size: 0.625rem;
}
#blog-comments-placeholder .feedbackItem > .feedbackListSubtitle .comment_date {
  grid-area: date;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
#blog-comments-placeholder .feedbackItem > .feedbackListSubtitle a[id^=a_comment_author] {
  grid-area: auchor;
  font-size: 0.875rem;
  margin-right: 0.25rem;
  margin-left: 0.75rem;
}
#blog-comments-placeholder .feedbackItem > .feedbackCon {
  grid-area: content;
  padding: 0 1rem;
  border: 1px solid var(--divider);
  border-top: none;
  border-radius: 0 0 var(--rad-body) var(--rad-body);
}
#blog-comments-placeholder .feedbackItem > .feedbackCon a > span {
  color: #74818d;
}
#blog-comments-placeholder .feedbackItem > .feedbackCon .blog_comment_body {
  padding: 0.5rem 0;
}
#blog-comments-placeholder .feedbackItem > .feedbackCon .comment_vote {
  font-size: 12px;
  padding: 0.25rem 0;
}
#blog-comments-placeholder .feedbackItem:last-child {
  margin-bottom: 0;
}

#comment_form {
  --gap: 1rem;
  margin-left: 0;
}
#comment_form #tbCommentAuthor {
  width: 40%;
  min-width: 2em;
  background-image: none;
}
#comment_form #tbCommentBody, #comment_form #tbCommentBodyPreview {
  margin: 0;
  height: 12.5rem;
  font-size: inherit;
  line-height: inherit;
  padding: var(--gap);
  overflow: auto;
}
#comment_form #tbCommentBody {
  width: 100%;
  resize: none;
  font-family: inherit;
  background: none;
}
#comment_form #divCommentShow .comment_my_posted .bq_post_comment {
  margin: 0.5rem 0;
  padding: 0.75rem 1rem;
  border: 0;
  background: rgba(0, 0, 0, 0.04);
  line-height: 1;
}
#comment_form #divCommentShow .comment_my_posted .bq_post_comment p {
  margin: 0 0 0.5rem;
}
#comment_form #divCommentShow .comment_my_posted .bq_post_comment p:last-child {
  margin-bottom: 0;
}
#comment_form_container #commentform_title {
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 1.4em;
  background-image: none;
}
#comment_form_container #commentform_title a {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #e4562b, #cfc150, #cf2787, #c7a74c);
  -webkit-background-clip: text;
  background-clip: text;
}
#comment_form_container #tip_comment {
  font-size: 12px;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
#comment_form_container .comment_textarea {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: var(--rad-body) var(--rad-body) 0 0;
  border: 1px solid var(--divider);
  border-bottom-width: 0;
  background: none;
  overflow: hidden;
}
#comment_form_container .comment_textarea .commentbox_title {
  padding: 0.75rem var(--gap);
  border-bottom-color: var(--divider);
  background: var(--bg-dark);
}
#comment_form_container .comment_textarea .commentbox_title .commentbox_title_right {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #comment_form_container .comment_textarea .commentbox_title .commentbox_title_right {
    padding: 0;
  }
  #comment_form_container .comment_textarea .commentbox_title .commentbox_title_right > * {
    margin: 0;
  }
}
#comment_form_container .comment_textarea .commentbox_tab {
  margin: 0;
  padding: 0;
}
#comment_form_container .comment_textarea .commentbox_tab:hover, #comment_form_container .comment_textarea .commentbox_tab.active {
  border-bottom: 0;
}
@media (min-width: 768px) {
  #comment_form_container .comment_textarea .commentbox_tab {
    margin-right: 0.5rem;
  }
}
#comment_form.commentform p {
  margin: 0;
}
#comment_form.commentform .commentbox_tab {
  color: var(--fg);
}
#comment_form.commentform .commentbox_tab:hover, #comment_form.commentform .commentbox_tab.active {
  color: var(--fg-darker);
}
#comment_form.commentform .comment_svg {
  fill: var(--fg);
}
#comment_form.commentform .comment_svg:hover {
  fill: var(--fg-darker);
}
#comment_form.commentform .comment_svg_stroke {
  stroke: var(--fg);
}
#comment_form.commentform .comment_svg_stroke:hover {
  stroke: var(--fg-darker);
}
#comment_form.commentform #commentbox_opt {
  display: flex;
  flex-direction: row-reverse;
  gap: var(--gap);
  align-items: center;
  padding: 0.75rem var(--gap);
  border: 1px solid var(--divider);
  border-radius: 0 0 var(--rad-body) var(--rad-body);
}
#comment_form.commentform #commentbox_opt .comment_btn {
  width: auto;
  height: auto;
  min-width: 2rem;
  margin: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid var(--accent);
  outline: none;
  background-color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: calc(1.5rem - 2px);
  text-align: center;
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: all 200ms;
}
#comment_form.commentform #commentbox_opt .comment_btn:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}
#comment_form.commentform #commentbox_opt .comment_btn:active {
  opacity: 0.85;
}
#comment_form.commentform #commentbox_opt a {
  text-decoration: none;
  font-size: 0.875rem;
}
#comment_form .dropdown-menu {
  background: var(--fg-dark);
  border-radius: 2px;
}
#comment_form .dropdown-menu b {
  font-weight: 400;
}
#comment_form .dropdown-menu > .tips {
  background: none;
  display: block;
  padding: 0 0.5rem;
}
#comment_form .dropdown-menu:has(li) {
  padding: 5px 0;
  min-width: 150px;
}
#comment_form .dropdown-menu > li > a {
  display: flex;
  gap: 3px;
  color: #fff;
}
#comment_form .dropdown-menu > .active > a, #comment_form .dropdown-menu > .active > a:hover, #comment_form .dropdown-menu > .active > a:focus {
  background: var(--accent);
}

#under_post_news .recomm-block {
  display: block;
  max-width: 100%;
  padding: 15px 0;
  margin: 0;
  border-bottom: 2px solid #52555a;
}
#under_post_news .recomm-block b {
  display: block;
  font-weight: normal;
  font-size: 1.4em;
  padding: 0;
  margin-bottom: 15px;
}
#under_post_news .recomm-block a {
  font-size: 1.2em;
  line-height: 2em;
  text-decoration: none;
}
#under_post_news .recomm-block a:hover {
  text-decoration: underline;
}