
html {
  color: #333333;
  background: #ffffff;
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 500ms ease;
  font-family: Consolas, 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', sans-serif;
}
body {
  max-width: 680px;
  padding: 0 14px;
  margin: 0 auto;
}
* {
  -webkit-tap-highlight-color: transparent;
}
ol,
ul {
  list-style: none;
}
p,
h1,
h2,
h3,
h4,
h5,
ul,
ol,
li,
blockquote {
  padding: 0;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
input,
select,
textarea {
  font-family: inherit;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
pre,
code {
  font-family: inherit;
}
input:-webkit-autofill {
  /* 自动填充的文本颜色 */
  -webkit-text-fill-color: #333333 !important;
  /* -webkit-text-fill-color: var(--text-color) !important; */

  /* 方式1：使用内阴影覆盖自动填充的背景色 */
  /* box-shadow: 0 0 0 1000px #ffffff inset !important; */

  /* 方式2：通过延迟一个月，取消自动填充的背景色 */
  -webkit-transition: background-color 2592000s ease-in-out 0s;
  transition: background-color 2592000s ease-in-out 0s;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #999999;
}
::selection {
  background-color: #4a4a4a;
  color: #f9f9f9;
}
.hover-underline {
  position: relative;
}
.hover-underline:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #333333;
  visibility: hidden;
  transform: scaleX(0);
  transition: transform 200ms ease-in-out;
}
.hover-underline:hover:after {
  visibility: visible;
  transform: scaleX(1);
}
.header {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 10px;
  user-select: none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.header .menu {
  margin-right: -9px;
  text-align: right;
  user-select: none;
}
.header .menu a {
  display: inline-block;
  font-size: 16px;
  margin: 4px 9px;
  white-space: nowrap;
  user-select: auto;
}
.footer {
  padding: 15px 0;
  font-size: 14px;
}
.footer a {
  text-decoration: underline;
  color: #000000;
  padding: 0 4px;
  white-space: nowrap;
}
#to-top {
  position: fixed;
  z-index: 99;
  right: 16px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  border-radius: 10%;
  background-color: #000000;
  opacity: 0.45;
  overflow: hidden;
  transform: translateY(66px);
  transition: transform 200ms ease-in-out;
}
#to-top.show {
  transform: translateY(0);
}
#to-top > span {
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  left: 50%;
  top: 13px;
  transform: translateX(-50%) rotate(45deg);
}
#to-top > span:first-child {
  background-color: #ffffff;
}
#to-top > span:last-child {
  background-color: #000000;
  transform: translate(-50%, 16%) rotate(45deg);
}
@media screen and (max-width: 560px) {
  .header {
    padding: 35px 0 20px 0;
    justify-content: flex-start;
  }
  .header .menu {
    margin-right: -2px;
    text-align: left;
  }
  .header .menu a {
    margin: 2px 5px;
    font-size: 15px;
  }
}



#comment-form {
  display: block;
  margin: 2em 0;
  border-radius: 4px;
  overflow: hidden;
}

#comment-form .comment-inputs {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  overflow: hidden;
}


#comment-form .comment-inputs input {
  outline: none;
  height: 40px;
  background: transparent;
  width: 100%;
  border: 0;
  padding: 0 15px;
  border-radius: 0;
  line-height: normal;
  background: #ecf0f1;
  margin-bottom: 10px;
  border-radius: 5px;
  box-sizing: border-box;
}
#comment-form .comment-editor {
  min-height: 120px;
  position: relative;
  margin-bottom: 20px;
}

#comment-form textarea {
  outline: none;
  border: 0;
  border-radius: 0;
  width: 100%;
  padding: 15px 20px;
  min-height: 120px;
  line-height: 1.825;
  display: block;
  background: #ecf0f1;
  overflow: auto;
}

#comment-form .comment-buttons {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  height: 35px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}

#comment-form .comment-buttons #submitComment {
  border: 0;
  background: #e74c3c;
  padding: 0 16px;
  border-radius: 4px;
  color: #fff;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

#comment-form .comment-buttons #submitComment:hover {
  background: #BF360C;
}

#comment-form .comment-buttons button {
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  background: transparent;
  border: 0;
}

#comment-form .comment-buttons .left, #comment-form .comment-buttons .right {
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}

#comment-form .comment-buttons span {
  font-size: 1em;
  margin-top: 4px;
}

#comment-form .comment-buttons .right {
  justify-content: flex-end;
}


#comments ol {
  list-style: none;
  margin: 0;
}
#comments ol li{
  list-style-type:none;
}

#comments p {
  margin: 0;
}

.gen {
  margin: 1rem 0 0 0;
}

.hide {
  display: none;
}

.gen .page-navigator {
  margin: 3.75rem 0 3rem 0;
}

.response {
  margin: 2rem 0;
  padding-top: 1em;
}

.hinfo {
  display: none;
}

.gen h2 {
  margin-bottom: 0.8em;
}

.gen a {
  color: #aaa;
}

.comment-list {
  padding-left: 0 !important;
  list-style-type: none;
  margin: 0;
}

.avatar {
  display: block;
  float: left;
  width: 40px;
  height: 40px;
  margin: 1.4rem 1rem 0 0 !important;
  border-radius: 50%;
}

.comment_main {
  overflow: hidden;
  padding: 1rem 0;
  border-bottom: 1px dotted #e0e0e0;
}

.comment_main p {
  margin: 0;
  font-size: 13px;
}

.comment_reply, .comment_meta {
  font-size: .766rem;
  color: #aaa;
}

.comment_reply {
  float: right;
  display: none;
}

.comment_main:hover .comment_reply {
  display: block
}

.comment_author {
  padding: .1rem .25rem;
  border-radius: .25rem;
  background: #eee;
  font-size: 10px;
}

.ccomment_reply {
  text-align: right;
}

.comment_reply a:before, .comment_time:before {
  margin: 0 .5rem
}

.comment-parent .comment-children {
  margin-left: 1.2em;
}

.comment-child .comment-children {
  margin-left: 1.2em;
}

.cancel-comment-reply {
  text-align: right;
}

.tbox {
  padding: 0 0 15px 0px;
}
.nav-page {
  margin: 3em auto 2em auto;
  display: flex;
}

.nav-page a {
  float: left;
  background-color: transparent;
  width: 25px;
  height: 30px;
  color: #414141;
  margin: 0 2px;
}

.nav-page a:hover {
  color: #414141;
  background-color: #f5f5f5;
}

.nav-page ol {
  list-style: none;
}

.nav-page ol li {
  text-align: center;
  float: left;
}

.nav-page ol .current a {
  border-bottom: 1px solid #414141;
}