@charset "utf-8";

:root, ::before, ::after {
  --color-aqua: #009688;
  --color-blue: #2196F3;
}

::selection {
  background-color: var(--color-blue) !important;
  color: #FFF !important;
}

body {
  font-family: 'HarmonyOS Sans SC', '等距更纱黑体 SC', sans-serif;
}

.postTitle {
  padding-left: 10px;
  border-left-color: var(--color-blue);
  font-size: 150% !important;
  transition: all 0.25s;
}
.postTitle:hover {
  border-left-color: var(--color-aqua);
}
.postTitle a {
  padding-left: 0 !important;
  transition: all 0.25s;
}
.postTitle a:link,
.postTitle a:visited,
.postTitle a:active {
  color: var(--color-blue);
}
.postTitle a:hover {
  margin-left: 0;
  color: var(--color-aqua);
}
#topics .postTitle {
  padding-left: 0;
}

#green_channel {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  box-sizing: border-box;
  width: 320px;
  max-width: 100%;
  font-size: 0;
  user-select: none;
}
#green_channel_digg,
#green_channel_follow,
#green_channel_favorite {
  all: unset !important;
  padding: 10px 12px !important;
  border-radius: 6px !important;
  background-color: var(--color-blue) !important;
  color: #FFF !important;
  font-size: 12px !important;
  line-height: 1 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  transition: all 0.25s !important;
  cursor: pointer !important;
}
#green_channel_digg:hover,
#green_channel_follow:hover,
#green_channel_favorite:hover {
  background-color: var(--color-aqua) !important;
}
#green_channel_wechat {
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
}
#green_channel_wechat img {
  margin: 0 !important;
  width: 30px !important;
  height: 30px !important;
}

@media screen and (min-width: 768px) {
  #cnblogs_post_body {
    padding: 10px 20px;
    border-radius: 0;
    border: 2px solid #F2F2F2;
    color: #252525;
  }
}
