@charset "UTF-8";
/***************/
/* MEYER RESET */
/***************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

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

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**************/
/* BASE RULES */
/**************/
html {
  font-size: 16px;
}

body {
  font-family: "Noto Serif", "PT Serif", source-han-serif-sc, "Source Han Serif SC", "Source Han Serif CN", "Source Han Serif TC", "Source Han Serif TW", "Source Han Serif", "Songti SC", SimSon, serif;
  color: #343a40;
  line-height: 1.7em;
}

.container {
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 20px;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 2em;
  margin: 1em 0 16px;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.6em;
  }
}

h1, h2, h3, h5 {
  font-weight: bold;
}

h1 {
  font-size: 30px;
}
h1 a {
  color: inherit;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 20px;
  color: #868e96;
}

h6 {
  color: #868e96;
}

p {
  color: #343a40;
  margin: 1em 0;
}

a {
  color: #099268;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover, a:active {
  color: #12b886;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

hr {
  border: 0;
  border-top: 1px solid #f1f3f5;
  margin: 1.5em auto;
}

ol > li:before, ul > li:before {
  position: absolute;
  width: 1.4em;
  margin-left: -1.4em;
  display: inline-block;
  box-sizing: border-box;
  text-align: right;
}

ul > li:before {
  content: "\2022";
  padding-right: 0.3em;
  font-family: inherit;
  font-size: 1.4em;
  line-height: 1.2;
}

ol {
  counter-reset: section;
}
ol > li:before {
  counter-increment: section;
  content: counter(section) ".";
  padding-right: 0.3em;
  font-family: inherit;
  font-size: 1em;
  line-height: inherit;
}

ol > li, ul > li {
  margin: 0 auto 0.4em 1.4em;
  line-height: 1.55;
}
ol > li > ol,
ol > li > ul, ul > li > ol,
ul > li > ul {
  margin-top: 0.4em;
}

li > ol > li,
li > ul > li {
  font-size: 0.95em;
  margin: 0 auto 0.38em 1.33em;
}

dt {
  float: left;
  width: 180px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  clear: left;
  text-align: right;
  white-space: nowrap;
  font-weight: bold;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 1200px) {
  dt {
    width: 120px;
  }
}

dd {
  margin-left: 200px;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 1200px) {
  dd {
    margin-left: 140px;
  }
}

table {
  margin-bottom: 1rem;
  width: 100%;
  border: 1px solid #e9ecef;
  border-collapse: collapse;
}

td, th {
  padding: .25rem .5rem;
  border: 1px solid #e9ecef;
}

tbody tr:nth-child(odd) td,
tbody tr:nth-child(odd) th {
  background-color: #f1f3f5;
}

blockquote {
  font-weight: 300;
  padding: 0 0 0 1.4rem;
  margin: 0 2rem 1rem 0;
  border-left: 0.2em solid #dee2e6;
}
blockquote p {
  color: #868e96;
}
blockquote p:last-child {
  margin-bottom: 0;
}

a.footnote, .post p a.footnote, .post ol a.footnote, .post ul a.footnote {
  margin: 0 3px;
  padding: 0 2px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #f1f3f5;
  border-radius: 2px;
  -webkit-text-stroke: 0.25px;
  -webkit-transition: 0.2s ease-out all;
  text-decoration: none;
}
a.footnote:hover, .post p a.footnote:hover, .post ol a.footnote:hover, .post ul a.footnote:hover {
  background: #f1f3f5;
}

.footnotes {
  border-top: 1px solid #f1f3f5;
  font-size: 14px;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 0 1em;
  border-radius: 5px;
}

.gmnoprint img {
  max-width: none;
}

::-moz-selection {
  background: #dee2e6;
}

::selection {
  background: #dee2e6;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.center {
  text-align: center;
}
.center-image {
  margin: 0 auto;
  display: block;
}

.right {
  text-align: right;
}

/*********************/
/* LAYOUT / SECTIONS */
/*********************/
.wrapper-sidebar {
  width: 30%;
  -webkit-background-size: cover;
  background-size: cover;
  background-color: #f8f9fa;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 4;
  border-right: 1px solid #f1f3f5;
}
@media screen and (max-width: 1200px) {
  .wrapper-sidebar {
    width: 100%;
    height: auto;
    padding-bottom: 24px;
    position: relative;
    border-bottom: 1px solid #f1f3f5;
    border-right: 0;
  }
}

.sidebar {
  padding: 20px 0;
}
@media screen and (max-width: 1200px) {
  .sidebar {
    text-align: center;
  }
}

.site-info {
  text-align: center;
  margin: 100px auto 0;
}
@media screen and (max-width: 1200px) {
  .site-info {
    float: none;
    display: block;
    margin: 0 auto;
  }
}
.site-info .site-avatar {
  margin: 0 auto;
  display: block;
  max-width: 200px;
  max-height: 200px;
}
@media screen and (max-width: 1200px) {
  .site-info .site-avatar {
    max-width: 120px;
    max-height: 120px;
  }
}
.site-info .site-avatar img {
  display: inline-block;
  border-radius: 2px;
}

.site-name {
  margin: 0 auto;
  color: #343a40;
  cursor: pointer;
  font-family: "Noto Serif", "PT Serif", source-han-serif-sc, "Source Han Serif SC", "Source Han Serif CN", "Source Han Serif TC", "Source Han Serif TW", "Source Han Serif", "Songti SC", SimSon, serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
}

.site-description {
  margin: 15px auto;
  color: #868e96;
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  .site-description {
    margin: 10px auto;
  }
}

.navlist {
  text-align: center;
}

nav {
  display: block;
  margin-top: 23px;
  font-family: "Noto Serif", "PT Serif", source-han-serif-sc, "Source Han Serif SC", "Source Han Serif CN", "Source Han Serif TC", "Source Han Serif TW", "Source Han Serif", "Songti SC", SimSon, serif;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  nav {
    margin-top: 9px;
    font-size: 16px;
  }
}
nav a {
  margin: 0 10px;
  text-align: right;
  font-weight: 300;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  nav a {
    margin: 0 10px;
    color: #099268;
  }
}

.wrapper-content {
  float: right;
  width: 70%;
}
@media screen and (max-width: 1200px) {
  .wrapper-content {
    float: none;
    width: 100%;
  }
}

.posts .tag {
  display: inline;
  font-weight: 300;
  font-size: 14px;
}
.posts .tag li:before {
  content: '';
}
.posts .tag li {
  display: inline;
  margin: 0;
}
.posts .tag li > a {
  margin: 3px 3px 3px 0;
  padding: .5px 4px;
  color: #343a40;
  background-color: #e9ecef;
  border-radius: 3px;
}
.posts .tag li > a:hover {
  color: #099268;
  background-color: #e6fcf5;
}

.posts > .post {
  padding-bottom: 2em;
  border-bottom: 1px solid #f1f3f5;
}

.posts > .post:last-child {
  padding-bottom: 1em;
  border-bottom: none;
}

.pinned .feather-anchor {
  color: #868e96;
  padding: 2px;
  margin-right: 8px;
}

.date {
  font-weight: 300;
  font-size: 14px;
  color: #868e96;
  margin-right: 4px;
}

.author {
  font-weight: 700;
  font-size: 14px;
  color: #868e96;
  margin-right: 4px;
}

.post h1 {
  margin-bottom: .1em;
}
.post .comments {
  margin-top: 10px;
}
.post .read-more {
  font-size: 15px;
}

.toc {
  width: 240px;
  height: 100%;
  left: 30%;
  position: fixed;
  z-index: 4;
  padding: 60px 20px 0 20px;
}
.toc:before {
  content: "目录";
  margin: 0 0 1em 1em;
  font-weight: 700;
  font-size: 1.2em;
  display: block;
  padding-bottom: 0.6em;
  border-bottom: 3px double #f1f3f5;
}
.toc li:before {
  content: "";
}
@media screen and (max-width: 1200px) {
  .toc {
    display: none;
  }
}

@media screen and (max-width: 2200px) and (min-width: 1200px) {
  .withtoc {
    padding-left: 260px;
  }
}
.pagination {
  border-top: 1px solid #f1f3f5;
  font-weight: 300;
  padding: 40px 0;
  width: 100%;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .pagination {
    font-size: 14px;
    padding: 24px 0;
  }
}
.pagination > .prev {
  float: left;
  width: 50%;
}
.pagination > .prev a {
  color: #868e96;
  border: 1px solid #f1f3f5;
  padding: 10px 20px;
  background: #f8f9fa;
}
.pagination > .prev a:hover, .pagination > .prev a:focus {
  color: #12b886;
  border: 1px solid #12b886;
  background-color: #e6fcf5;
}
.pagination > .next {
  float: right;
  text-align: right;
  width: 50%;
}
.pagination > .next a {
  color: #868e96;
  border: 1px solid #f1f3f5;
  padding: 10px 20px;
  background: #f8f9fa;
}
.pagination > .next a:hover, .pagination > .next a:focus {
  color: #12b886;
  border: 1px solid #12b886;
  background-color: #e6fcf5;
}

.archive a {
  color: #343a40;
}
.archive time {
  color: #868e96;
  font-size: 14px;
  font-weight: 300;
  margin-left: 3px;
}

.tags > .label > li:before {
  content: "";
}
.tags > .label > li {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  display: inline;
}
.tags > .label > li > a {
  display: inline-block;
  margin: 1px;
  color: #343a40;
  background-color: #e9ecef;
  border-radius: 3px;
}
.tags > .label > li > a:hover {
  background-color: #e6fcf5;
}
.tags > .label > li > a span {
  float: left;
  padding: .5px 5px;
}
.tags > .label > li > a span.count {
  background-color: rgba(135, 143, 151, 0.102);
  border-radius: 0 3px 3px 0;
}

.tags > .tag a {
  color: #343a40;
}
.tags > .tag time {
  color: #868e96;
  font-size: 14px;
  font-weight: 300;
  margin-left: 3px;
}

.wrapper-footer-desktop {
  margin-top: 50px;
  border-top: 1px solid #e9ecef;
  background-color: #f8f9fa;
  position: absolute;
  clear: both;
  width: 100%;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  .wrapper-footer-desktop {
    display: none;
  }
}

.wrapper-footer-mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  .wrapper-footer-mobile {
    display: block;
    width: 100%;
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
  }
}

footer {
  padding: 20px 0;
  text-align: center;
}
footer p {
  font-size: 14px;
  color: #868e96;
}
footer .svg-icon {
  display: block;
  font-size: 0;
  list-style: none;
  margin: 0;
  text-align: center;
}
footer .svg-icon li {
  display: inline-block;
  margin: 10px;
}
footer .svg-icon svg {
  height: 20px;
  width: 20px;
  fill: #868e96;
}
footer .svg-icon svg:hover {
  fill: #12b886;
}
footer .svg-icon em {
  font-size: 18px;
  line-height: 1.5;
  margin-top: -.75em;
  position: absolute;
  text-align: center;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
}

pre, code {
  font-family: "Menlo", "Courier New", "Monaco", "Spoqa Han Sans", monospace;
}

code.highlighter-rouge {
  font-size: 90%;
  color: #364fc7;
  background-color: #f1f3f5;
  padding: .1em .2em;
  border-radius: 3px;
}

pre.highlight {
  font-size: 14px;
  padding: .45em .45em .45em .625em;
  border: 1px solid #dee2e6;
  border-radius: 3px;
  margin: 1em 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.highlight {
  background: #f8f9fa;
}

.highlight .c {
  color: #999988;
  font-style: italic;
}

/* Comment */
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}

/* Error */
.highlight .k {
  font-weight: bold;
}

/* Keyword */
.highlight .o {
  font-weight: bold;
}

/* Operator */
.highlight .cm {
  color: #999988;
  font-style: italic;
}

/* Comment.Multiline */
.highlight .cp {
  color: #999999;
  font-weight: bold;
}

/* Comment.Preproc */
.highlight .c1 {
  color: #999988;
  font-style: italic;
}

/* Comment.Single */
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}

/* Comment.Special */
.highlight .gd {
  color: #000000;
  background-color: #ffdddd;
}

/* Generic.Deleted */
.highlight .gd .x {
  color: #000000;
  background-color: #ffaaaa;
}

/* Generic.Deleted.Specific */
.highlight .ge {
  font-style: italic;
}

/* Generic.Emph */
.highlight .gr {
  color: #aa0000;
}

/* Generic.Error */
.highlight .gh {
  color: #999999;
}

/* Generic.Heading */
.highlight .gi {
  color: #000000;
  background-color: #ddffdd;
}

/* Generic.Inserted */
.highlight .gi .x {
  color: #000000;
  background-color: #aaffaa;
}

/* Generic.Inserted.Specific */
.highlight .go {
  color: #888888;
}

/* Generic.Output */
.highlight .gp {
  color: #555555;
}

/* Generic.Prompt */
.highlight .gs {
  font-weight: bold;
}

/* Generic.Strong */
.highlight .gu {
  color: #aaaaaa;
}

/* Generic.Subheading */
.highlight .gt {
  color: #aa0000;
}

/* Generic.Traceback */
.highlight .kc {
  font-weight: bold;
}

/* Keyword.Constant */
.highlight .kd {
  font-weight: bold;
}

/* Keyword.Declaration */
.highlight .kp {
  font-weight: bold;
}

/* Keyword.Pseudo */
.highlight .kr {
  font-weight: bold;
}

/* Keyword.Reserved */
.highlight .kt {
  color: #445588;
  font-weight: bold;
}

/* Keyword.Type */
.highlight .m {
  color: #009999;
}

/* Literal.Number */
.highlight .s {
  color: #d14;
}

/* Literal.String */
.highlight .na {
  color: #008080;
}

/* Name.Attribute */
.highlight .nb {
  color: #0086B3;
}

/* Name.Builtin */
.highlight .nc {
  color: #445588;
  font-weight: bold;
}

/* Name.Class */
.highlight .no {
  color: #008080;
}

/* Name.Constant */
.highlight .ni {
  color: #800080;
}

/* Name.Entity */
.highlight .ne {
  color: #990000;
  font-weight: bold;
}

/* Name.Exception */
.highlight .nf {
  color: #990000;
  font-weight: bold;
}

/* Name.Function */
.highlight .nn {
  color: #555555;
}

/* Name.Namespace */
.highlight .nt {
  color: #000080;
}

/* Name.Tag */
.highlight .nv {
  color: #008080;
}

/* Name.Variable */
.highlight .ow {
  font-weight: bold;
}

/* Operator.Word */
.highlight .w {
  color: #bbbbbb;
}

/* Text.Whitespace */
.highlight .mf {
  color: #009999;
}

/* Literal.Number.Float */
.highlight .mh {
  color: #009999;
}

/* Literal.Number.Hex */
.highlight .mi {
  color: #009999;
}

/* Literal.Number.Integer */
.highlight .mo {
  color: #009999;
}

/* Literal.Number.Oct */
.highlight .sb {
  color: #d14;
}

/* Literal.String.Backtick */
.highlight .sc {
  color: #d14;
}

/* Literal.String.Char */
.highlight .sd {
  color: #d14;
}

/* Literal.String.Doc */
.highlight .s2 {
  color: #d14;
}

/* Literal.String.Double */
.highlight .se {
  color: #d14;
}

/* Literal.String.Escape */
.highlight .sh {
  color: #d14;
}

/* Literal.String.Heredoc */
.highlight .si {
  color: #d14;
}

/* Literal.String.Interpol */
.highlight .sx {
  color: #d14;
}

/* Literal.String.Other */
.highlight .sr {
  color: #009926;
}

/* Literal.String.Regex */
.highlight .s1 {
  color: #d14;
}

/* Literal.String.Single */
.highlight .ss {
  color: #990073;
}

/* Literal.String.Symbol */
.highlight .bp {
  color: #999999;
}

/* Name.Builtin.Pseudo */
.highlight .vc {
  color: #008080;
}

/* Name.Variable.Class */
.highlight .vg {
  color: #008080;
}

/* Name.Variable.Global */
.highlight .vi {
  color: #008080;
}

/* Name.Variable.Instance */
.highlight .il {
  color: #009999;
}

/* Literal.Number.Integer.Long */
@font-face {
  font-family: octicons-link;
  src: url(data:font/woff;charset=utf-8;base64,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) format("woff");
}
.markdown-body {
  color: #343a40;
  font-family: "Noto Serif", "PT Serif", source-han-serif-sc, "Source Han Serif SC", "Source Han Serif CN", "Source Han Serif TC", "Source Han Serif TW", "Source Han Serif", "Songti SC", SimSon, serif;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.markdown-body .octicon {
  display: inline-block;
  vertical-align: text-top;
  fill: currentColor;
  vertical-align: text-bottom;
}

.markdown-body .pl-c {
  color: #6a737d;
}
.markdown-body .pl-c1,
.markdown-body .pl-s .pl-v {
  color: #099268;
}
.markdown-body .pl-e,
.markdown-body .pl-en {
  color: #6f42c1;
}
.markdown-body .pl-smi,
.markdown-body .pl-s .pl-s1 {
  color: #24292e;
}
.markdown-body .pl-ent {
  color: #22863a;
}
.markdown-body .pl-k {
  color: #d73a49;
}
.markdown-body .pl-s,
.markdown-body .pl-pds,
.markdown-body .pl-s .pl-pse .pl-s1,
.markdown-body .pl-sr,
.markdown-body .pl-sr .pl-cce,
.markdown-body .pl-sr .pl-sre,
.markdown-body .pl-sr .pl-sra {
  color: #032f62;
}
.markdown-body .pl-v,
.markdown-body .pl-smw {
  color: #e36209;
}
.markdown-body .pl-bu {
  color: #b31d28;
}
.markdown-body .pl-ii {
  color: #fafbfc;
  background-color: #b31d28;
}
.markdown-body .pl-c2 {
  color: #fafbfc;
  background-color: #d73a49;
}
.markdown-body .pl-c2::before {
  content: "^M";
}
.markdown-body .pl-sr .pl-cce {
  font-weight: bold;
  color: #22863a;
}
.markdown-body .pl-ml {
  color: #735c0f;
}
.markdown-body .pl-mh,
.markdown-body .pl-mh .pl-en,
.markdown-body .pl-ms {
  font-weight: bold;
  color: #099268;
}
.markdown-body .pl-mi {
  font-style: italic;
  color: #24292e;
}
.markdown-body .pl-mb {
  font-weight: bold;
  color: #24292e;
}
.markdown-body .pl-md {
  color: #b31d28;
  background-color: #ffeef0;
}
.markdown-body .pl-mi1 {
  color: #22863a;
  background-color: #f0fff4;
}
.markdown-body .pl-mc {
  color: #e36209;
  background-color: #ffebda;
}
.markdown-body .pl-mi2 {
  color: #f6f8fa;
  background-color: #099268;
}
.markdown-body .pl-mdr {
  font-weight: bold;
  color: #6f42c1;
}
.markdown-body .pl-ba {
  color: #586069;
}
.markdown-body .pl-sg {
  color: #959da5;
}
.markdown-body .pl-corl {
  text-decoration: underline;
  color: #032f62;
}
.markdown-body .pl-0 {
  padding-left: 0 !important;
}
.markdown-body .pl-1 {
  padding-left: 4px !important;
}
.markdown-body .pl-2 {
  padding-left: 8px !important;
}
.markdown-body .pl-3 {
  padding-left: 16px !important;
}
.markdown-body .pl-4 {
  padding-left: 24px !important;
}
.markdown-body .pl-5 {
  padding-left: 32px !important;
}
.markdown-body .pl-6 {
  padding-left: 40px !important;
}

.markdown-body kbd {
  display: inline-block;
  padding: 3px 5px;
  font-size: 11px;
  line-height: 10px;
  color: #444d56;
  vertical-align: middle;
  background-color: #fafbfc;
  border: solid 1px #c6cbd1;
  border-bottom-color: #959da5;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 #959da5;
  box-shadow: inset 0 -1px 0 #959da5;
}

.markdown-body code {
  padding: 0;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  margin: 0;
  font-size: 85%;
  background-color: rgba(27, 31, 35, 0.05);
  border-radius: 3px;
}

.markdown-body code::before,
.markdown-body code::after {
  letter-spacing: -0.2em;
  content: "\A0";
}

.markdown-body pre {
  word-wrap: normal;
}

.markdown-body pre > code {
  padding: 0;
  margin: 0;
  font-size: 100%;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}

.markdown-body .highlight {
  margin-bottom: 16px;
}

.markdown-body .highlight pre {
  margin-bottom: 0;
  word-break: normal;
}

.markdown-body .highlight pre,
.markdown-body pre {
  padding: 16px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 85%;
  line-height: 1.45;
  background-color: #f6f8fa;
  border-radius: 3px;
}

.markdown-body pre code {
  display: inline;
  max-width: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}

.markdown-body pre code::before,
.markdown-body pre code::after {
  content: normal;
}

.markdown-body .full-commit .btn-outline:not(:disabled):hover {
  color: #099268;
  border-color: #099268;
}

.markdown-body kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  line-height: 10px;
  color: #444d56;
  vertical-align: middle;
  background-color: #fafbfc;
  border: solid 1px #d1d5da;
  border-bottom-color: #c6cbd1;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 #c6cbd1;
  box-shadow: inset 0 -1px 0 #c6cbd1;
}

.markdown-body :checked + .radio-label {
  position: relative;
  z-index: 1;
  border-color: #099268;
}

.markdown-body .task-list-item {
  list-style-type: none;
}

.markdown-body .task-list-item + .task-list-item {
  margin-top: 3px;
}

.markdown-body .task-list-item input {
  margin: 0 0.2em 0.25em -1.6em;
  vertical-align: middle;
}

/*
.markdown-body hr {
  border-bottom-color: #eee;
}
*/
/* variables */
/* functions & mixins */
/* variables - calculated */
/* styles */
.gt-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  /* loader */
  /* error */
  /* initing */
  /* no int */
  /* link */
  /* meta */
  /* popup */
  /* header */
  /* comments */
  /* comment */
}

.gt-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.gt-container a {
  color: #099268;
}

.gt-container a:hover {
  color: #12b886;
}

/*
.gt-container a.is--active {
  color: #333;
  cursor: default !important;
}
.gt-container a.is--active:hover {
  color: #333;
}
*/
.gt-container .hide {
  display: none !important;
}

.gt-container .gt-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: sub;
}

.gt-container .gt-svg svg {
  width: 100%;
  height: 100%;
  fill: #099268;
}

.gt-container .gt-ico {
  display: inline-block;
}

.gt-container .gt-ico-text {
  margin-left: 0.3125em;
}

.gt-container .gt-ico-github {
  width: 100%;
  height: 100%;
}

.gt-container .gt-ico-github .gt-svg {
  width: 100%;
  height: 100%;
}

.gt-container .gt-ico-github svg {
  fill: inherit;
}

.gt-container .gt-spinner {
  position: relative;
}

.gt-container .gt-spinner::before {
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  width: 0.75em;
  height: 0.75em;
  margin-top: -0.1875em;
  margin-left: -0.375em;
  border-radius: 50%;
  border: 1px solid #ffffff;
  border-top-color: #099268;
  -webkit-animation: gt-kf-rotate 0.6s linear infinite;
  animation: gt-kf-rotate 0.6s linear infinite;
}

.gt-container .gt-loader {
  position: relative;
  border: 1px solid #666;
  -webkit-animation: ease gt-kf-rotate 1.5s infinite;
  animation: ease gt-kf-rotate 1.5s infinite;
  display: inline-block;
  font-style: normal;
  width: 1.75em;
  height: 1.75em;
  line-height: 1.75em;
  border-radius: 50%;
}

.gt-container .gt-loader:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  margin-top: -0.1875em;
  margin-left: -0.1875em;
  width: 0.375em;
  height: 0.375em;
  background-color: #666;
  border-radius: 50%;
}

.gt-container .gt-avatar {
  display: inline-block;
  width: 3.125em;
  height: 3.125em;
}

@media (max-width: 479px) {
  .gt-container .gt-avatar {
    width: 2em;
    height: 2em;
  }
}
.gt-container .gt-avatar img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.gt-container .gt-avatar-github {
  width: 3em;
  height: 3em;
}

@media (max-width: 479px) {
  .gt-container .gt-avatar-github {
    width: 1.875em;
    height: 1.875em;
  }
}
.gt-container .gt-btn {
  padding: 0.75em 1.25em;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid #099268;
  border-radius: 5px;
  background-color: #099268;
  color: #fff;
  outline: none;
  font-size: 0.75em;
}

.gt-container .gt-btn-text {
  font-weight: 400;
}

.gt-container .gt-btn-loading {
  position: relative;
  margin-left: 0.5em;
  display: inline-block;
  width: 0.75em;
  height: 1em;
  vertical-align: top;
}

.gt-container .gt-btn.is--disable {
  cursor: not-allowed;
  opacity: 0.5;
}

.gt-container .gt-btn-login {
  margin-right: 0;
}

.gt-container .gt-btn-preview {
  background-color: #ffffff;
  color: #099268;
}

.gt-container .gt-btn-preview:hover {
  background-color: rgba(249, 250, 251, 0.42);
  border-color: #12b886;
}

.gt-container .gt-btn-public:hover {
  background-color: #12b886;
  border-color: #12b886;
}

.gt-container .gt-error {
  text-align: center;
  margin: 0.625em;
  color: #e03131;
}

.gt-container .gt-initing {
  padding: 1.25em 0;
  text-align: center;
}

.gt-container .gt-initing-text {
  margin: 0.625em auto;
  font-size: 92%;
}

.gt-container .gt-no-init {
  padding: 1.25em 0;
  text-align: center;
}

/*
.gt-container .gt-link {
  border-bottom: 1px dotted $link-color;
}*/
.gt-container .gt-link-counts,
.gt-container .gt-link-project {
  text-decoration: none;
}

.gt-container .gt-meta {
  margin: 1.25em 0;
  padding: 1em 0;
  position: relative;
  border-bottom: 1px solid #f1f3f5;
  font-size: 1em;
  position: relative;
  z-index: 10;
}

.gt-container .gt-meta:before,
.gt-container .gt-meta:after {
  content: " ";
  display: table;
}

.gt-container .gt-meta:after {
  clear: both;
}

.gt-container .gt-counts {
  margin: 0 0.625em 0 0;
}

.gt-container .gt-user {
  float: right;
  margin: 0;
  font-size: 92%;
}

.gt-container .gt-user-pic {
  width: 16px;
  height: 16px;
  vertical-align: top;
  margin-right: 0.5em;
}

.gt-container .gt-user-inner {
  display: inline-block;
  cursor: pointer;
}

.gt-container .gt-user .gt-ico {
  margin: 0 0 0 0.3125em;
}

.gt-container .gt-user .gt-ico svg {
  fill: inherit;
}

.gt-container .gt-user .is--poping .gt-ico svg {
  fill: #099268;
}

.gt-container .gt-version {
  color: #ced4da;
  margin-left: 0.375em;
}

.gt-container .gt-copyright {
  margin: 0 0.9375em 0.5em;
  border-top: 1px solid #f1f3f5;
  padding-top: 0.5em;
}

.gt-container .gt-popup {
  position: absolute;
  right: 0;
  top: 2.375em;
  background: #ffffff;
  display: inline-block;
  border: 1px solid #f1f3f5;
  padding: 0.625em 0;
  font-size: 0.875em;
  letter-spacing: 0.5px;
}

.gt-container .gt-popup .gt-action {
  cursor: pointer;
  display: block;
  margin: 0.5em 0;
  padding: 0 1.125em;
  position: relative;
  text-decoration: none;
}

.gt-container .gt-popup .gt-action.is--active:before {
  content: '';
  width: 0.25em;
  height: 0.25em;
  background: #099268;
  position: absolute;
  left: 0.5em;
  top: 0.4375em;
}

.gt-container .gt-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gt-container .gt-header-comment {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 1.25em;
}

@media (max-width: 479px) {
  .gt-container .gt-header-comment {
    margin-left: 0.875em;
  }
}
.gt-container .gt-header-textarea {
  padding: 0.75em;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  min-height: 5.125em;
  max-height: 15em;
  border-radius: 5px;
  border: 1px solid #f1f3f5;
  font-size: 0.875em;
  word-wrap: break-word;
  resize: vertical;
  background-color: #f8f9fa;
  outline: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.gt-container .gt-header-textarea:hover {
  background-color: rgba(249, 250, 251, 0.42);
}

.gt-container .gt-header-preview {
  padding: 0.75em;
  border-radius: 5px;
  border: 1px solid #f1f3f5;
  background-color: #f8f9fa;
}

.gt-container .gt-header-controls {
  position: relative;
  margin: 0.75em 0 0;
}

.gt-container .gt-header-controls:before,
.gt-container .gt-header-controls:after {
  content: " ";
  display: table;
}

.gt-container .gt-header-controls:after {
  clear: both;
}

@media (max-width: 479px) {
  .gt-container .gt-header-controls {
    margin: 0;
  }
}
.gt-container .gt-header-controls-tip {
  font-size: 0.875em;
  color: #099268;
  text-decoration: none;
  vertical-align: sub;
}

@media (max-width: 479px) {
  .gt-container .gt-header-controls-tip {
    display: none;
  }
}
.gt-container .gt-header-controls .gt-btn {
  float: right;
  margin-left: 1.25em;
}

@media (max-width: 479px) {
  .gt-container .gt-header-controls .gt-btn {
    float: none;
    width: 100%;
    margin: 0.75em 0 0;
  }
}
.gt-container:after {
  content: '';
  position: fixed;
  bottom: 100%;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
}

.gt-container.gt-input-focused {
  position: relative;
}

.gt-container.gt-input-focused:after {
  content: '';
  position: fixed;
  bottom: 0%;
  left: 0;
  right: 0;
  top: 0;
  background: #000;
  opacity: 0.6;
  -webkit-transition: opacity 0.3s, bottom 0s;
  transition: opacity 0.3s, bottom 0s;
  z-index: 9999;
}

.gt-container.gt-input-focused .gt-header-comment {
  z-index: 10000;
}

.gt-container .gt-comments {
  padding-top: 1.25em;
}

.gt-container .gt-comments-null {
  text-align: center;
}

.gt-container .gt-comments-controls {
  margin: 1.25em 0;
  text-align: center;
}

.gt-container .gt-comment {
  position: relative;
  padding: 0.625em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gt-container .gt-comment-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 1.25em;
  padding: 0.75em 1em;
  background-color: rgba(249, 250, 251, 0.42);
  border-radius: 5px;
  border: 1px solid #f1f3f5;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.gt-container .gt-comment-content:hover {
  background-color: #fff;
}

@media (max-width: 479px) {
  .gt-container .gt-comment-content {
    margin-left: 0.875em;
    padding: 0.625em 0.75em;
  }
}
.gt-container .gt-comment-header {
  margin-bottom: 0.5em;
  font-size: 0.875em;
  position: relative;
}

.gt-container .gt-comment-username {
  font-weight: 500;
  color: #099268;
  text-decoration: none;
}

/*
.gt-container .gt-comment-username:hover {
  text-decoration: underline;
}*/
.gt-container .gt-comment-text {
  margin-left: 0.5em;
  color: #ced4da;
}

.gt-container .gt-comment-date {
  margin-left: 0.5em;
  color: #ced4da;
}

.gt-container .gt-comment-like,
.gt-container .gt-comment-edit,
.gt-container .gt-comment-reply {
  position: absolute;
  height: 1.375em;
}

.gt-container .gt-comment-like:hover,
.gt-container .gt-comment-edit:hover,
.gt-container .gt-comment-reply:hover {
  cursor: pointer;
}

.gt-container .gt-comment-like {
  top: 0;
  right: 2em;
}

.gt-container .gt-comment-edit,
.gt-container .gt-comment-reply {
  top: 0;
  right: 0;
}

/* .gt-container .gt-comment-admin .gt-comment-content {
  background-color: $background-lighten-color;

  & :hover{
    background-color:$background-lightener-color;
  }
} */
@-webkit-keyframes gt-kf-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes gt-kf-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
