@charset "UTF-8";
html {
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

body {
  color: rgba(0, 0, 0, 0.5);
  font-family: 'Noto Sans', 'Garamond', 'Microsoft YaHei', 'PingHei', 'PingFang SC', Helvetica Neue, 'Work Sans', 'Hiragino Sans GB', SimSun, sans-serif;

  /*font-family: Noto Sans, Helvetica, Arial, sans-serif;*/
  
  font-size: 15px;
  width: 100%;
  margin: 0 auto 30px auto;
  background-color: #fff;
}

p {
  line-height: 1.9em;
  font-weight: 400;
  font-size: 14px;
}

a {
  text-decoration: none;
}

a:link, a:visited {
  opacity: 1;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  color: #424242;
}

a:hover, a:active {
  color: #4786D6;
}

/*basic styles ends*/
/*animation starts*/
.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}

.animated.hinge {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/*animation ends*/
.content {
  height: auto;
  float: right;
  width: 60%;
  margin-top: 60px;
}

.page-top {
  width: 60%;
  position: fixed;
  right: 0;
  z-index: 3;
  background-color: #fff;
  height: 60px;
  border-bottom: 1px solid #f2f2f2;
}
.page-top .nav {
  list-style: none;
  padding: 18px 30px;
  float: left;
  font-size: 12px;
}
.page-top .nav li {
  position: relative;
  display: initial;
  padding-right: 20px;
}
.page-top .nav a {
  color: #5A5A5A;
}
.page-top .nav a:hover {
  color: #4786D6;
}
.page-top .nav a.current {
  color: #5A5A5A;
  padding-bottom: 22px;
  border-bottom: 1px solid #5A5A5A;
}
.page-top .information {
  float: right;
  padding-top: 12px;
  padding-right: 20px;
}
.page-top .information .avatar {
  float: right;
}
.page-top .information .avatar img {
  width: 32px;
  height: 32px;
  border-radius: 300px;
}
.page-top .information .back_btn {
  float: left;
  padding-top: 5px;
  margin-right: -10px;
}
.page-top .information .back_btn li {
  display: initial;
  padding-right: 40px;
}

.sidebar {
  width: 40%;
  -webkit-background-size: cover;
  background-size: cover;
  background-color: #fff;
  height: 100%;
  transition: 0.8s;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 4;
  border-right: 1px solid #f2f2f2;
}
.sidebar .logo-title {
  text-align: center;
  padding-top: 240px;
}
.sidebar .logo-title .description {
  font-size: 14px;
  color: #565654;
}
.sidebar .logo-title .logo {
  margin: 0 auto;
}
.sidebar .logo-title .title h3 {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
}
.sidebar .logo-title .title a {
  text-decoration: none;
  color: #464646;
  font-size: 2rem;
  font-weight: bold;
}
.sidebar .social-links {
  list-style: none;
  padding: 0;
  font-size: 14px;
  text-align: center;
}
.sidebar .social-links i {
  margin-right: 3px;
}
.sidebar .social-links li {
  display: inline;
  padding: 0 4px;
  line-height: 0;
}
.sidebar .social-links a {
  color: #565654;
}
.sidebar .social-links a:hover {
  color: #4786D6;
}

.post {
  background-color: #FFF;
  margin: 30px;
}
.post .post-title h1 {
/*  text-transform: uppercase;*/
  font-size: 30px;
  letter-spacing: 5px;
  line-height: 1;
}
.post .post-title h2 {
/*  text-transform: uppercase;*/
  letter-spacing: 1px;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: #5f5f5f;
}
.post .post-title h3 {
/*  text-transform: uppercase;*/
  letter-spacing: 1px;
  line-height: 1;
  font-weight: 600;
  color: #464646;
  font-size: 22px;
  margin: 0;
}
.post .post-title a {
  text-decoration: none;
  letter-spacing: 1px;
  color: #5f5f5f;
}
.post .post-title a:hover {
  text-decoration: underline;
}
.post .post-content a {
  text-decoration: none;
  letter-spacing: 1px;
  color: #4786D6;

  /*text-underline-offset: 0.35rem;*/
}
.post .post-content a:hover {
  color: #2F69B3;
}
.post .post-content h3 {
  color: #5F5F5F;
  font-size: 22px;
  font-weight: 600;
}
.post .post-content h4 {
  color: #5F5F5F;
  font-size: 16px;
}

/*header*/
.post .post-content > post__header {
  position: relative;
  display: block;
  /*margin-bottom: 2rem;*/
}
/*header end*/

/*content img*/
.post .post-content img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
/*content img end*/

/*anchor*/
.post .post-content h1 {
  color: #5F5F5F;
  font-weight: 600;
}
.post .post-content h2 {
  color: #5F5F5F;
  font-size: 28px;
  font-weight: 600;
}
.post .post-content h5 {
  color: #5F5F5F;
  font-size: 15px;
}
.post .post-content h6 {
  color: #5F5F5F;
  font-size: 14px;
}

.post .post-content h1, .post .post-content h2, .post .post-content h3, .post .post-content h4, .post .post-content h5, .post .post-content h6 {
  scroll-margin-top: calc(12px + 60px);
}

#comments {
  scroll-margin-top: 60px;
}

.post .post-content h1 a.headerlink, .post .post-content h2 a.headerlink, .post .post-content h3 a.headerlink, .post .post-content h4 a.headerlink, .post .post-content h5 a.headerlink, .post .post-content h6 a.headerlink {
  margin-left: 10px;
  opacity: 0;
}

.post .post-content h1 a.headerlink::before, .post .post-content h2 a.headerlink::before, .post .post-content h3 a.headerlink::before, .post .post-content h4 a.headerlink::before, .post .post-content h5 a.headerlink::before, .post .post-content h6 a.headerlink::before {
  content: "#";
  color: #5F5F5F;
}

.post .post-content h1:hover a.headerlink, .post .post-content h2:hover a.headerlink, .post .post-content h3:hover a.headerlink, .post .post-content h4:hover a.headerlink, .post .post-content h5:hover a.headerlink, .post .post-content h6:hover a.headerlink {
  opacity: 0.5;
}

.post .post-content h1:hover a.headerlink:hover, .post .post-content h2:hover a.headerlink:hover, .post .post-content h3:hover a.headerlink:hover, .post .post-content h4:hover a.headerlink:hover, .post .post-content h5:hover a.headerlink:hover, .post .post-content h6:hover a.headerlink:hover {
  opacity: 1;
  transition: opacity 200ms ease 0s;
}
/*anchor end*/

/*TOC*/
ul.markdown-toc ul {
  padding-left: 1.25rem;
  margin-top: 0rem;
}

ul.markdown-toc li {
  margin-top: 0rem;
}

ul.markdown-toc a {
  text-decoration: underline !important;
  text-decoration-style: solid !important;
  text-underline-offset: 0.35rem !important;
  text-decoration-thickness: 2px !important;
  text-decoration-color: rgba(67, 158, 216, 0.5) !important;
}

ul.markdown-toc a:hover {
  text-decoration-color: rgb(67,158,216) !important;
}

ul.markdown-toc {
  margin: 2rem -1rem 3rem calc(1px - 1rem);
  overscroll-behavior:contain;
}

.post .post-content ul.markdown-toc a {
  color: #5F5F5F;
}
.post .post-content ul.markdown-toc a:hover {
  color: #2F69B3;
}

ul.markdown-toc, .note-sm {
  padding-left: 2rem !important;

  background: rgba(0, 0, 0, 0) none repeat scroll 0% 0%;
  color: #333;
  /*font-size: smaller;*/
  font-size: 0.85rem;
  border-left: 1px solid #ebebeb;
  position: relative;
}

ul.markdown-toc::before {
  content: "Table of Contents";
  font-size: 0.667rem;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: #bbb;
}
/*TOC end*/

/*image*/
.img-wrapper {
  position: relative;
  border-radius: 0.5rem;
}

.img-wrapper img {
  max-width: 100%;
}
/*image end*/

/*summary*/
.note-sm {
  margin: 1rem -1rem 1rem calc(1px - 1rem);
}

.note-sm::before {
  content: "Description";
  font-size: 0.667rem;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: #bbb;
}

.note-sm p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  font-family: Noto Sans, Helvetica, Arial, sans-serif;
}
/*summary end*/

/*date*/
.post-date {
  display: flex;
  position: relative;
  justify-content: space-between;
  height: 2rem;
  color: #777;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.85rem;
}

.post-date .ellipsis-mr1 {
  margin-right: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-date .ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/*date end*/

/*list*/
.post .post-content ul, .post .post-content ol, .post .post-content dl {
  padding-left: 1.25rem;
}
/*list end*/

.post .post-footer {
  padding: 0 0 30px 0;
  border-bottom: 1px solid #f2f2f2;
}
.post .post-footer .meta {
  max-width: 100%;
  height: 25px;
  color: #bbbbbb;
}
.post .post-footer .meta .info {
  float: left;
  font-size: 12px;
}
.post .post-footer .meta .info .date {
  margin-right: 10px;
}
.post .post-footer .meta a {
  text-decoration: none;
  color: #bbbbbb;
  padding-right: 10px;
}
.post .post-footer .meta a:hover {
  color: #4786D6;
}
.post .post-footer .meta i {
  margin-right: 6px;
}
.post .post-footer .tags {
  padding-bottom: 15px;
  font-size: 13px;
}
.post .post-footer .tags ul {
  list-style-type: none;
  display: inline;
  margin: 0;
  padding: 0;
}
.post .post-footer .tags ul li {
  list-style-type: none;
  margin: 0;
  padding-right: 5px;
  display: inline;
}
.post .post-footer .tags a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.44);
  font-weight: 400;
}
.post .post-footer .tags a:hover {
  text-decoration: none;
}

.pagination {
  margin: 30px;
  padding: 0px 0 56px 0;
  border-bottom: 1px solid #f2f2f2;
}
.pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 13px;
}
.pagination ul li {
  margin: 0 2px 0 2px;
  display: inline;
  line-height: 1;
}
.pagination ul li a {
  text-decoration: none;
}
.pagination .pre {
  float: left;
}
.pagination .next {
  float: right;
}

.like-reblog-buttons {
  float: right;
}

.like-button {
  float: right;
  padding: 0 0 0 10px;
}

.reblog-button {
  float: right;
  padding: 0;
}

#install-btn {
  position: fixed;
  bottom: 0px;
  right: 6px;
}

#disqus_thread {
  margin: 30px;
  border-bottom: 1px solid #f2f2f2;
}

.footer {
  clear: both;
  text-align: center;
  font-size: 10px;
  margin: 0 auto;
  bottom: 0;
  position: absolute;
  width: 100%;
  padding-bottom: 20px;
}
.footer a {
  color: #A6A6A6;
}
.footer a:hover {
  color: #4786D6;
}

/*for archive*/
.archive {
  width: 100%;
}

.list-with-title {
  font-size: 14px;
  margin: 30px;
  padding: 0;
}
.list-with-title li {
  list-style-type: none;
  padding: 0;
}
.list-with-title .listing-title {
  font-size: 24px;
  color: #666666;
  font-weight: 600;
  line-height: 2.2em;
}
.list-with-title .listing {
  padding: 0;
}
.list-with-title .listing .listing-post {
  padding-bottom: 5px;
}
.list-with-title .listing .listing-post .post-time {
  float: right;
  color: #C5C5C5;
}
.list-with-title .listing .listing-post a {
  color: #8F8F8F;
}
.list-with-title .listing .listing-post a:hover {
  color: #4786D6;
}

/* share */
.share {
  margin: 0px 30px;
  display: inline-flex;
}

.linkedin {
  width: 32px;
  height: 32px;
  border-radius: 300px;
  background-color: #0e76a8;
  margin-right: 5px;
}
.linkedin a {
  color: #fff;
  padding: 9px;
  font-size: 15px;
}
.linkedin a:hover {
  color: #3e3e3e;
  padding: 9px;
}

.facebook {
  width: 32px;
  height: 32px;
  border-radius: 300px;
  background-color: #4267b2;
  margin-right: 5px;
}
.facebook a {
  color: #fff;
  padding: 9px;
}
.facebook a:hover {
  color: #ff0000;
}

.twitter {
  width: 32px;
  height: 32px;
  border-radius: 300px;
  background-color: #59c0fd;
  margin-right: 5px;
}
.twitter a {
  color: #fff;
  padding: 9px;
}
.twitter a:hover {
  color: #4b9ece;
}

/* about */
.about {
  margin: 30px;
}
.about h3 {
  font-size: 22px;
}

/* links */
.links {
  margin: 30px;
}
.links h3 {
  font-size: 22px;
}
.links a {
  cursor: pointer;
}

/* comment styles */
.comment-count {
  color: #666;
}

.tab-community {
  color: #666;
}

.read_more {
  font-size: 14px;
}

.back-button {
  padding-top: 30px;
  max-width: 100px;
  padding-left: 40px;
  float: left;
}

/* default comment styles */
#fb_comments_container {
  margin: 30px;
}

/* btn styles */
a.btn {
  color: #868686;
  font-weight: 400;
}

.btn {
  display: inline-block;
  position: relative;
  outline: 0;
  color: rgba(0, 0, 0, 0.44);
  background: rgba(0, 0, 0, 0);
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  font-weight: 400;
  font-style: normal;
  border-radius: 999em;
}

.btn:hover {
  display: inline-block;
  position: relative;
  outline: 0px;
  color: #464545;
  background: rgba(0, 0, 0, 0);
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #464545;
  white-space: nowrap;
  font-weight: 400;
  font-style: normal;
  border-radius: 999em;
}

[role=back] {
  padding: 0.5em 1.25em;
  line-height: 1.666em;
}

[role=home] {
  padding: 0.5em 1.25em;
  line-height: 1.666em;
}

[role=navigation] {
  padding: 0.5em 1.25em;
  line-height: 1.666em;
}

[role=tags] {
  padding: 6px 12px;
}

/* Menu styles */
.menu {
  float: right;
  padding-top: 30px;
}
.menu .btn-down {
  margin: 0px;
}
.menu .btn-down li {
  list-style: none;
  width: 100px;
}
.menu .btn-down li a {
  display: inline-block;
  position: relative;
  padding: 0.5em 1.25em;
  outline: 0;
  color: rgba(0, 0, 0, 0.44);
  background: rgba(0, 0, 0, 0);
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  font-weight: 400;
  font-style: normal;
  border-radius: 999em;
  margin-top: 5px;
}
.menu .btn-down li a:hover {
  position: relative;
  padding: 0.5em 1.25em;
  outline: 0;
  color: #fff;
  background: #3CBD10;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  font-weight: 400;
  font-style: normal;
  border-radius: 999em;
  margin-top: 5px;
}
.menu .btn-down div {
  position: absolute;
  visibility: hidden;
  width: 100px;
  float: right;
}

.page_404 {
  text-align: center;
  padding-top: 50px;
}

@media screen and (max-width: 960px) {
  .sidebar {
    width: 100%;
    position: absolute;
    border-right: none;
    z-index: 1;
  }
  .sidebar .logo-title {
    padding-top: 120px;
  }
  .sidebar .logo-title .title img {
    width: 100px;
  }
  .sidebar .logo-title .title h3 {
    font-size: 20px;
  }
  .page-top {
    width: 100%;
  }
  .post-title h3 {
    line-height: 1.6;
  }
  .content {
    margin-top: 420px;
    width: 100%;
    z-index: 2;
    position: absolute;
  }
  .footer {
    display: none;
  }
}
.utterances {
  margin-left: 30px;
}

/* Search styles */
#tag_block {
  margin: 1rem 0;
}

#tag_block > i {
  font-size: 1.2rem;
}

#tag_block > span {
  margin: 0 .2rem;
  padding-left: 5px;
  font-size: 1.2rem;
  font-weight: bold;
}

.tag-list {
  list-style-type: none;
  display: flex;
  ;
}
.tag-list-item {
  margin: 0.8rem;
}

/*search old style*/
/*#search-input {
  display: inline-flex;
  flex: auto;
  appearance: none;
  background: #fff;
  border: .05rem solid #caced7;
  border-radius: 4px 0 0 4px;
  color: #50596c;
  font-size: .9rem;
  height: 1.8rem;
  line-height: 1.2rem;
  max-width: 100%;
  outline: none;
  padding: .25rem .4rem;
  transition: all .2s ease;
  width: 70%;
}
#search-input:focus {
  border-color: #5755d9;
  box-shadow: 0 0 0 .08rem rgba(87, 85, 217, .2);

}
.input-group-btn {
  border-radius: 0 4px 4px 0;
  font-size: .9rem;
  padding: .25rem 1rem;
  background: #3969ef;
  height: 2.4rem;
  border: .05rem;
  border-color: #4b48d6;
  color: #fff;
}
.input-group-btn:hover {
  cursor: pointer;
}*/
/*search old style end*/

/*search style*/
/*search*/
.header__cw {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  position: relative;
  margin-left: 0;
  margin-right: auto;
  min-height: 58px;
}

.header__cw::after {
  content: "";
  width: 100%;
  display: block;
  margin-top: 10px;
  height: 1px;
  border-bottom: 1px solid #d2d2d2;
}

.header__shrink-beyond {
  position: relative;
  overflow: hidden;
}

.zcm-wrap-wrap {
  display: flex;
}

.zcm-wrap {
  padding-top: 10px;
  max-width: calc(77% + 69px);
  width: 100%;
  overflow: hidden;
  line-height: 38px;
  height: 38px;
  white-space: nowrap;
  position: relative;
}

.header__search-wrap {
  position: relative;
  margin-bottom: 3px;
  margin-top: 1px;
  box-sizing: content-box;
  padding-left: 64px;
  padding-right:64px;
  max-width: 77%;
  width: 100%;
}

/*search image*/
.header__logo-wrap {
  height: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 40px;
  left: 0;
  position: absolute;
  top: 0;
}

.header__logo {
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: transparent;
  text-indent: -9999px;
  font-size: 0px;
  background-image: url("/images/logo_header.v109.svg");
}

/*section*/
.header__search {
/*max-width: 620px;
  flex: 1 1 620px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  height: 100%;*/
  width: 100%;
  position: relative;
  left: 5px;
}

/*form*/
.searchbox_root.searchbox_legacy.searchbox_hasQuery {
  box-shadow: 0rem 0.125rem 0.375rem rgba(0,0,0,.1), 0rem 0.5rem 1rem rgba(0,0,0,.08);
}
.searchbox_root.searchbox_hasQuery {
  box-shadow: 0rem 0.25rem 0.75rem rgba(0,0,0,.1), 0rem 1.25rem 2.5rem rgba(0,0,0,.08);
}
.searchbox_root.searchbox_legacy, .searchbox_root.searchbox .searchbox_input, .searchbox_root.searchbox_legacy .searchbox_searchbox {
  border-radius: 8px;
}
.searchbox_root.searchbox_legacy {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0rem 0.125rem 0.375rem rgba(0,0,0,.1), 0rem 0.5rem 1rem rgba(0,0,0,.08);
}
.searchbox_root, .searchbox_root .searchbox_input, .searchbox_root .searchbox_searchbox {
  border-radius: 0.5rem;
}
.searchbox_root {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
  max-width: unset;
  height: 2.75rem;
  padding: 0;
  z-index: 80;
  background-color: #fff;
  box-shadow: 0rem 0.0625rem 0.1875rem rgba(0,0,0,.08), 0rem 0.125rem 0.25rem rgba(0,0,0,.1);
}
.searchbox_root.searchbox_legacy:focus-within {
  box-shadow: 0rem 0.125rem 0.375rem rgba(0,0,0,.1), 0rem 0.5rem 1rem rgba(0,0,0,.08);
}
.searchbox_root:focus-within {
  box-shadow: 0rem 0.25rem 0.75rem rgba(0,0,0,.1), 0rem 1.25rem 2.5rem rgba(0,0,0,.08);
}

.searchbox_searchbox {
  height: 100%;
  overflow: visible;
  background: none;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
}

.searchbox_input {
  display: flex;
  flex-grow: 1;
  height: 100%;
  font-size: 1rem;
  padding-left: 1rem;
  padding-right: 0;
  border: none;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
  caret-color: #3969ef;
  color: #000;
  font: inherit;
}

.searchbox_iconWrapper {
  display: inline-flex;
  height: 100%;
}

.searchbox_clearButton {
  width: 32px;
  margin-right: 5px;
  background: transparent;
  color: #000;
  visibility: hidden;
}

.iconButton_button__clear {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.searchbox_hasQuery:hover .searchbox_clearButton {
  visibility: visible;
  opacity: .5;
}
.searchbox_clearButton:hover {
  opacity: 1 !important;
}

.searchbox_searchButton {
  border: none;
  position: relative;
  top: -1px;
  right: -1px;
  height: 2.75rem;
  border-radius: 0 8px 8px 0;
  width: 50px;
  background: transparent;
  color: #000;
  opacity: .56;
}

.iconButton_button__search {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
}

.searchbox_hasQuery:hover .searchbox_searchButton:not(:disabled):hover {
  background-color: #2b55ca;
}
.searchbox_hasQuery:hover .searchbox_searchButton:not(:disabled) {
  background-color: #3969ef;
  border-color: #3969ef;
  opacity: 1;
  color: #fff;
}

.searchbox_searchButton:disabled:hover {
  cursor: auto;
}

.iconButton_icon {
  height: auto;
  color: currentColor;
}

.iconButton_size-16 {
  width: 16px;
}

.iconButton_size-18 {
  width: 18px;
}

svg {
  display: block;
  max-width: 100%;
}
/*search style end*/

/* tags styles */
.post-list #tags {
  display:flex;
  flex-wrap:wrap;
  padding-top: 5px;
  margin:4px -4px
}
.post-list #tags a.tag {
  display:inline-flex;
  align-items:center;
  position:relative;
  color:#4d4d4d;
  margin:4px;
  padding:.5em .75rem;
  border-radius:4px;
  background:#f1f2f3;
  font-size:.8125rem;
  font-weight:500
}
.post-list #tags a.tag:before {
  content:"#";
  margin-left:-2px;
  margin-right:2px;
  opacity:.4
}
.post-list #tags a.tag:hover {
  color:#000;
  background:#e9eaec;
}
.post-list #tags a.tag:hover:before {
  color:#1cd0fd;
  opacity:1
}
.post-list #tags a.tag > span {
  text-transform:capitalize;
}