::selection {
  background-color: #00c4b6;
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: #53b3fa;
}
body {
  background-image: url("https://i.loli.net/2020/05/18/6HPEpdzuaBQsGIT.png");
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: #34495e;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Lato";
}
.main {
  max-width: 960px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.main img {
  cursor: url("image/cross.cur"), auto;
}
.header {
  height: 500px;
  font-family: Lato;
  background: url("https://i.loli.net/2019/07/12/5d288d4b4a6a412359.jpg") -266px -172px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  margin-bottom: -100px;
}
.header .header_top {
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
  position: relative;
  height: 40px;
  padding: 12px 150px;
  z-index: 20;
  transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
}
.header .header_top .theme a {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
}
.header .header_top .theme a:hover {
  opacity: 0.8;
}
.header .header_top .theme .fa-bars {
  color: #fff;
  padding-right: 3px;
}
.header .header_top .navbar .menu {
  margin: 0;
}
.header .header_top .navbar .menu .fa-search {
  vertical-align: text-bottom;
  color: #fff;
}
.header .header_top .navbar .menu .fa-search:hover {
  cursor: pointer;
  color: #53b3fa;
}
.header .header_top .navbar .menu .menu-item {
  display: inline-block;
  padding: 0 8px;
}
.header .header_top .navbar .menu .menu-item:before {
  content: "<i class=" fa fa-home "></i>";
}
.header .header_top .navbar .menu .menu-item .fa {
  color: #fff;
  font-size: 0px;
}
.header .header_top .navbar .menu .menu-item .fa-home {
  font-size: 0px;
}
.header .header_top .navbar .menu .menu-item .menu-item-link {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  position: relative;
}
.header .header_top .navbar .menu .menu-item .menu-item-link:after {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  background-color: #53b3fa;
  top: 100%;
  left: 50%;
  transition: all 0.6s;
}
.header .header_top .navbar .menu .menu-item:hover .menu-item-link:after {
  left: 0%;
  width: 100%;
}
.header .header_top .navbar .menu .menu-item .menu-item-link2 {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  position: relative;
}
.header .header_top .navbar .menu .menu-item .menu-item-link2:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0%;
  background-color: #53b3fa;
  top: 100%;
}
.header .header_top_fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 150px;
  background-color: rgba(255,255,255,0.8);
}
.header .header_top_fixed a {
  color: #34495e !important;
}
.header .header_top_fixed .fa {
  color: #53b3fa !important;
}
.header .header_bottom {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header_bottom .blog-title {
  margin-top: -80px;
  text-align: center;
  position: relative;
}
.header .header_bottom .blog-title .logo {
  text-decoration: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  padding: 11px 30px;
  background-color: #000;
}
.header .header_bottom .blog-title .descrs {
  margin-top: 10px;
}
.header .header_bottom .blog-title .descrs .descr {
  color: #fff;
  font-weight: normal;
  font-size: 18px;
}
.header .header_bottom .blog-down {
  position: absolute;
  left: 50%;
  top: 120%;
  margin-left: -13px;
  animation: hovertreemove 1.5s infinite ease-in-out;
}
.header .header_bottom .blog-down a {
  color: #fff;
  transition: all ease-in-out;
}
.header .header_bottom .blog-down a:hover {
  color: #53b3fa;
}
@-moz-keyframes hovertreemove {
  0% {
    opacity: 0.1;
    transform: translate3d(0, 20px, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 12px, 0);
  }
  100% {
    opacity: 0.1;
    transform: translate3d(0, 20px, 0);
  }
}
@-webkit-keyframes hovertreemove {
  0% {
    opacity: 0.1;
    transform: translate3d(0, 20px, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 12px, 0);
  }
  100% {
    opacity: 0.1;
    transform: translate3d(0, 20px, 0);
  }
}
@-o-keyframes hovertreemove {
  0% {
    opacity: 0.1;
    transform: translate3d(0, 20px, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 12px, 0);
  }
  100% {
    opacity: 0.1;
    transform: translate3d(0, 20px, 0);
  }
}
@keyframes hovertreemove {
  0% {
    opacity: 0.1;
    transform: translate3d(0, 20px, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 12px, 0);
  }
  100% {
    opacity: 0.1;
    transform: translate3d(0, 20px, 0);
  }
}
.footer {
  height: 180px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Lato;
  background: url("https://i.loli.net/2019/07/12/5d288d4b4a6a412359.jpg") -20px 330px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.footer p {
  margin: 0;
}
.footer p a {
  text-decoration-style: dotted;
  color: #fff;
}
.pager-nav {
  padding-top: 35px;
  text-align: center;
}
.pager-nav a {
  text-decoration: none;
}
.pager-nav .page-number {
  display: inline-block;
  padding: 1px 3px 1px 3px;
  margin: 5px;
  width: 25px;
  height: 25px;
  color: #fff;
  font-size: 16px;
  background-color: #f47466;
  border-radius: 2px;
}
.pager-nav .page-number:hover {
  opacity: 0.7;
}
.pager-nav .current {
  background-color: #53b3fa;
}
.pager-nav .extend {
  margin: 25px;
  color: #34495e;
}
.pager-nav .extend:hover {
  opacity: 0.7;
}
.posts {
  position: relative;
}
.post_full {
  position: relative;
  width: 78%;
  margin: 3em 0;
  padding: 20px 40px;
  border-radius: 4px;
  font-size: 15px;
  transition: box-shadow 1s;
  background-color: #fff;
}
.post_full .post-title {
  font-size: 22px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 4px;
  margin: 0;
}
.post_full .post-title .post-title-link {
  color: #34495e;
  text-decoration: none;
  transition: color 0.2s;
}
.post_full .post-sub_title {
  font-size: 1em;
  color: #99a9bf;
  padding-bottom: 20px;
}
.post_full .post-info {
  color: #99a9bf;
  font-size: 15px;
  padding-top: 3px;
  padding-bottom: 12px;
}
.post_full .post-info .post-tags a {
  text-decoration: none;
  color: #fff;
  background: #c6cbe9;
  padding: 1.4px 6px;
  border-radius: 4px;
  transition: 0.3s;
}
.post_full .post-info .post-tags a:hover {
  background-color: #05d3f9;
}
.post_full .post-info div {
  display: inline-block;
}
.post_full .post-content {
  border-top: 1px dashed #99a9bf;
  border-bottom: 1px dashed #99a9bf;
  padding: 12px 0;
  min-height: 20px;
}
.post_full .post-content a {
  color: #368ccb;
  text-decoration: none;
}
.post_full .post-content h1,
.post_full .post-content h2,
.post_full .post-content h3,
.post_full .post-content h4,
.post_full .post-content h5,
.post_full .post-content h6 {
  font-weight: 500;
}
.post_full .post-content h1:before,
.post_full .post-content h2:before,
.post_full .post-content h3:before,
.post_full .post-content h4:before,
.post_full .post-content h5:before,
.post_full .post-content h6:before {
  content: "#";
  color: #eb5055;
  font-weight: 600;
  font-family: apple-system;
  padding-right: 4px;
}
.post_full .post-content h1 {
  font-size: 28px;
  border-bottom: 1px solid #eee;
}
.post_full .post-content h2 {
  font-size: 26px;
  border-bottom: 1px solid #eee;
}
.post_full .post-content h3 {
  font-size: 24px;
  border-bottom: 1px solid #eee;
}
.post_full .post-content h4 {
  font-size: 22px;
}
.post_full .post-content h5 {
  font-size: 20px;
}
.post_full .post-content h6 {
  font-size: 18px;
}
.post_full .post-content hr {
  border: 2px dashed #53b3fa;
  margin: 40px 0 40px 0;
}
.post_full .post-content li {
  list-style-type: none;
  position: relative;
}
.post_full .post-content li span.circle {
  position: absolute;
  display: inline-block;
  width: 5px;
  height: 5px;
  border: 3px solid #53b3fa;
  border-radius: 50%;
  background: #fff;
  top: 8px;
  left: -20px;
}
.post_full .post-content li:hover .circle {
  border: 3px solid #f47466;
}
.post_full .post-content blockquote {
  padding: 2px 10px;
  margin-left: 0;
  width: 95%;
  border-left: 5px solid #f47466;
  background-color: #f5f5f5;
  list-style: none;
  word-break: break-all;
}
.post_full .post-content blockquote ul {
  padding-left: 20px;
}
.post_full .post-content table {
  width: 100%;
  border-collapse: collapse;
}
.post_full .post-content table th {
  border: 1px solid #e6e6e6;
  font-weight: bold;
  padding: 10px;
  background-color: #f3f3f3;
}
.post_full .post-content table td {
  border: 1px solid #e6e6e6;
  padding: 10px;
}
.post_full .post-content .topBar {
  height: 45px;
  background-color: #263238;
  box-shadow: 0 0 1em 0.5em rgba(0,0,0,0.19);
  margin-left: 0;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.post_full .post-content .topBar .dot {
  position: absolute;
  left: 14px;
  top: 11px;
}
.post_full .post-content .topBar .copy {
  position: absolute;
  right: 12px;
  top: 11px;
}
.post_full .post-content .topBar .copy button {
  background-color: #263238;
  border: none;
  outline: none;
  cursor: pointer;
}
.post_full .post-content pre {
  box-shadow: -1em 1em 1em 0.1em rgba(0,0,0,0.19);
  background-color: #263238;
  max-width: 650px;
  overflow-x: auto;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  border-top: 1px solid #263238;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 56px !important;
}
.post_full .post-content pre code {
  font-family: "Lucida console" !important;
  font-size: 14px;
}
.post_full .post-content pre code .class-name {
  text-decoration: none;
}
.post_full .post-content pre code .line-numbers-rows {
  top: 1px;
}
.post_full .post-content .littleCode {
  color: #ff502c;
  font-size: 0.9em;
  font-family: Menlo;
  vertical-align: middle;
  background-color: #fff5f5;
  padding: 0.2em 0.4em;
  border-radius: 0.4em;
}
.post-nav {
  margin: 25px 0;
  width: 100%;
  position: relative;
}
.post-nav a {
  font-size: 16px;
  color: #99a9bf;
  display: inline-block;
  transition: 0.4s;
}
.post-nav a:hover {
  color: #f47466;
  text-decoration: none;
}
.post-nav .post-nav-prev {
  float: left;
}
.post-nav .post-nav-prev a:hover {
  transform: translate(-8px, 0);
}
.post-nav .post-nav-prev .fa-chevron-left {
  margin-right: 4px;
}
.post-nav .post-nav-next {
  float: right;
}
.post-nav .post-nav-next a:hover {
  transform: translate(8px, 0);
}
.post-nav .post-nav-next .fa-chevron-right {
  margin-left: 4px;
}
.post-nav .clear {
  clear: both;
}
img {
  max-width: 100%;
  display: block;
  transition: 0.5s ease;
}
.post-toc {
  position: absolute;
  right: -183px;
  top: 1px;
  background: #fff;
  border-radius: 4px;
}
.post-toc .fa-th-large,
.post-toc .fa-angle-double-up {
  margin-right: 5px;
  vertical-align: baseline;
}
.post-toc .toc-top {
  background-color: #53b3fa;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 11px;
  line-height: initial;
}
.post-toc .toc>li.toc-item>a.toc-link {
  font-weight: bold;
}
.post-toc .toc {
  width: 250px;
  max-height: 420px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}
.post-toc .toc::-webkit-scrollbar-thumb {
  background-color: #00c4b6;
}
.post-toc .toc li {
  list-style: none;
  line-height: 18px;
}
.post-toc .toc .toc-item {
  padding: 3px 5px;
}
.post-toc .toc .toc-child {
  padding-left: 10px;
}
.post-toc .toc a {
  color: #34495e;
  font-size: 14px;
  display: block;
  text-decoration: none;
  padding: 3px;
  padding-left: 5px;
}
.post-toc .toc a:hover {
  color: #53b3fa;
}
.actived {
  background-color: #00c4b6;
  color: #fff !important;
  border-left: 4px solid #009d92;
  transition: all 0.2s ease-in-out;
}
#vcomments {
  width: 825px;
  margin-left: 0;
  margin-top: 40px;
  font-family: "Source Sans pro";
}
#vcomments .vwrap {
  background-color: #fff;
  border-radius: 8px;
  padding: 6px 15px 15px 15px;
}
#vcomments .vwrap .vheader input {
  font-size: 0.9em;
  padding-top: 6px;
}
#vcomments .vwrap .vedit #veditor {
  font-size: 1em;
  min-height: 2.75rem;
}
#vcomments .vwrap .vedit .vctrl {
  font-size: 13px;
}
#vcomments .vwrap .vcontrol button {
  padding: 0.4rem 1.4rem;
}
#vcomments .vwrap .vcontrol button:hover {
  background: #53b3fa;
  border: 1px solid #53b3fa;
  color: #fff;
}
#vcomments .vlist .vcard {
  padding: 6px;
}
.toast {
  position: fixed;
  bottom: 40px;
  font-size: 0.8125rem;
  font-family: Roboto;
  letter-spacing: -0.5px;
  left: 43%;
  color: #fff;
  background-color: #000;
  border-radius: 23px;
  padding: 6px 14px;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.ab {
  position: absolute;
}
.post_except {
  margin: 3em auto !important;
  padding: 10px 0 0 0;
  box-shadow: 0 0 1em 0.5em rgba(0,0,0,0.19);
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post_except:after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 0;
  width: 4px;
  height: 70px;
  background-color: #00c4b6;
}
.post_except .post-title {
  font-weight: 500 !important;
  position: relative;
  display: inline-block;
  padding-left: 12px;
  padding-right: 12px;
}
.post_except .post-title .post-title-link:hover {
  color: #53b3fa;
}
.post_except .post-title .post-title-link:hover::before {
  visibility: visible;
  transform: scaleX(1);
}
.post_except .post-title .post-title-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 8px;
  left: 2px;
  background-color: #53b3fa;
  visibility: hidden;
  transform: scaleX(0);
  transition: 0.2s ease-in-out;
}
.post_except .post-content {
  border: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 0 15px;
  min-height: 120px;
  overflow: hidden;
}
.post_except .post-content p {
  margin: 0;
  position: relative;
}
.post_except .post-content p::after {
  content: '';
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  bottom: 0;
}
.post_except .post-content p img {
  position: relative;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.post_except .post-content .default {
  display: none;
  padding: 30px 10px;
  font-size: 18px;
  font-style: italic;
  margin-left: 0;
  width: 95%;
  border-left: 5px solid #f47466;
  background-color: #f5f5f5;
}
.post_except .post-content:hover img {
  transform: scale(1.1);
}
.post_except .post-content:hover p::after {
  display: block;
  background-color: rgba(83,179,250,0.2);
  z-index: 1;
}
.post_except .post-content-padding {
  padding: 0;
}
.post_except .post-content-quote {
  width: 95%;
}
.post_except .post-content-noimg {
  min-height: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 90%;
}
.post_except .post-sub_container {
  padding: 10px;
  width: 100%;
}
.post_except .post-sub_container .post-tags {
  float: left;
  padding-left: 12px;
}
.post_except .post-sub_container .post-tags .fa-tags {
  color: #99a9bf;
  font-size: 20px;
  vertical-align: middle;
}
.post_except .post-sub_container .post-tags a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  background: #c6cbe9;
  padding: 6px 12px;
  border-radius: 5px;
  transition: 0.3s;
}
.post_except .post-sub_container .post-tags a:hover {
  background: #05d3f9;
}
.post_except .post-sub_container .more-btn {
  width: 106px;
  margin: 0 auto;
  padding: 1px 10px;
  background-color: #53b3fa;
  border-radius: 2px;
  border: none;
  outline: 0;
  transition: all 0.5s;
}
.post_except .post-sub_container .more-btn:hover {
  background-color: #f47466;
}
.post_except .post-sub_container .more-btn a {
  color: #fff;
  font-size: 17px;
  font-family: Lato;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  padding-right: 18px;
  transition: 0.5s;
}
.post_except .post-sub_container .more-btn a:after {
  content: '»';
  position: absolute;
  right: 4px;
  top: -10px;
  transition: 0.5s;
  font-size: 20px;
}
#back-to-top {
  z-index: 99;
}
#back-to-top:hover {
  background-color: #f47466;
}
.archive-page-container {
  margin-top: 200px;
}
.posts-counter {
  text-align: center;
}
.posts-counter span {
  font-size: 30px;
}
.posts-counter .fa-flag {
  color: #53b3fa;
}
.archive {
  margin-left: 30%;
  height: 100%;
  position: relative;
}
.archive:before {
  position: absolute;
  top: 0.01em;
  bottom: 0.8em;
  left: 0.7em;
  width: 4px;
  height: 100.5%;
  content: '';
  background-color: #53b3fa;
}
.archive .time-section {
  padding-left: 40px;
  position: relative;
}
.archive .time-section .section-year {
  cursor: pointer;
  font-size: 1.6em;
  margin-left: 10px;
}
.archive .time-section .section-year:before {
  position: absolute;
  left: 6px;
  top: 20px;
  content: '';
  background: #fff;
  width: 12px;
  height: 12px;
  border: 4px solid #53b3fa;
  border-radius: 50%;
}
.archive .time-section .section-year .fa-flag {
  font-size: 25px;
  color: #53b3fa;
}
.archive .time-section .section-list .section-list-item {
  margin: 20px 0 45px 10px;
  position: relative;
}
.archive .time-section .section-list .section-list-item .archive-title {
  transition: all 0.3s ease;
  font-size: 17px;
  font-weight: bold;
  color: #34495e;
  text-decoration: none;
}
.archive .time-section .section-list .section-list-item .archive-title:hover {
  color: #53b3fa;
  padding-left: 10px;
}
.archive .time-section .section-list .section-list-item .archive-title .circle:after {
  position: absolute;
  left: -2.33em;
  top: 3.2em;
  content: '';
  background: #fff;
  border: 3px solid #53b3fa;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all 0.3s;
}
.archive .time-section .section-list .section-list-item .archive-title:hover .circle:after {
  border: 3px solid #f47466;
}
.archive .time-section .section-list .section-list-item .archive-date {
  color: #99a9bf;
  font-size: 14px;
  margin: 5px 0;
  position: absolute;
  top: 45px;
  left: -160px;
  transition: all 0.2s;
}
.archive .time-section .section-list .section-list-item .archive-date:hover {
  opacity: 0.6;
  transform: translate(-10px, 0);
}
.tags-main-container {
  margin-top: 200px;
}
.tags-main-container .tags-counter {
  text-align: center;
  margin-top: 60px;
}
.tags-main-container .tags-counter span {
  font-size: 30px;
}
.tags-main-container .tags-tagscloud {
  min-height: 20rem;
}
.tags-main-container .tags-tagscloud a {
  display: inline-block;
  color: #acb3c2;
  text-decoration: none;
  margin: 7px;
  line-height: 1.2;
  transition: 0.2s ease-in-out;
}
.tags-main-container .tags-tagscloud a:hover {
  color: #53b3fa !important;
  border-bottom: 1.5px solid #53b3fa;
  transform: translate(10px, 0);
}
.tag-page-container {
  margin-top: 180px;
}
.tag-page-container .tag-page-title {
  margin-top: 25px;
  text-align: center;
}
.tag-page-container .tag-page-title .tag_title {
  display: inline-block;
  padding: 0 5px;
  color: #34495e;
  font-family: "Sourece Sans pro";
  font-size: 26px;
  font-weight: bold;
  position: relative;
}
.tag-page-container .tag-page-title .tag_title::before {
  z-index: 1;
  position: absolute;
  bottom: -8px;
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  right: 100%;
  top: 50%;
  background: #34495e;
}
.tag-page-container .tag-page-title .tag_title::after {
  z-index: 1;
  position: absolute;
  bottom: -8px;
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  left: 100%;
  top: 50%;
  background: #34495e;
}
.tag-page-container .tag-page-title .fa-tags {
  color: #34495e;
}
@font-face {
  font-family: 'Comic Sans MS';
  src: url("../fonts/Comic Sans MS.ttf");
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url("../fonts/Source Sans Pro.ttf");
}
.about-main-container {
  margin-top: 100px;
  min-height: 20rem;
  font-size: 16px;
  padding: 50px 140px 0 140px;
}
.about-main-container .about-top {
  text-align: center;
}
.about-main-container .about-top img.author-favicon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: 2.5s all;
  display: inline-block;
}
.about-main-container .about-top img.author-favicon:hover {
  transform: rotate(360deg) scale(1.1);
}
.about-main-container .about-top p.author-name {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: bold;
}
.about-main-container .about-bottom h3 {
  position: relative;
  margin: 0;
}
.about-main-container .about-bottom h3:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 4px;
  bottom: 0;
  width: 4px;
  height: 25px;
  background-color: #53b3fa;
}
.about-main-container .about-bottom p {
  margin: 0;
}
.about-main-container .about-bottom .fa {
  color: #f47466;
}
.about-main-container .about-bottom ul {
  margin: 0;
}
.about-main-container .about-bottom ul li {
  list-style-type: none;
  position: relative;
}
.about-main-container .about-bottom ul li:before {
  position: absolute;
  top: 8px;
  left: -20px;
  width: 6px;
  height: 6px;
  border: 3px solid #53b3fa;
  border-radius: 50%;
  background: #fff;
  content: "";
}
.about-main-container .about-bottom ul li a {
  color: #00c4b6;
}
.about-main-container .about-bottom ul li a:hover {
  color: #f47466;
}
.categories-main-container {
  margin-top: 200px;
  margin-bottom: 30px;
  min-height: 30px;
}
.categories-main-container .categories-counter span {
  font-size: 30px;
}
.categories-main-container li {
  list-style-type: none;
}
.categories-main-container li .category-list-link {
  text-decoration: none;
  font-size: 18px;
  color: #34495e;
  position: relative;
}
.categories-main-container li .category-list-link:before {
  position: absolute;
  top: 2px;
  left: -25px;
  width: 6px;
  height: 6px;
  border: 3px solid #53b3fa;
  border-radius: 50%;
  background: #fff;
  content: "";
}
.categories-main-container li .category-list-link:hover {
  color: #53b3fa;
}
.categories-main-container li .category-list-count {
  font-size: 16px;
  color: #99a9bf;
}
.categories-main-container li .category-list-count:before {
  content: " (";
}
.categories-main-container li .category-list-count:after {
  content: ") ";
}
.category-page-container {
  margin-top: 180px;
}
.category-page-container .category-page-title {
  margin-top: 25px;
  text-align: center;
}
.category-page-container .category-page-title .category_title {
  display: inline-block;
  padding: 0 5px;
  color: #34495e;
  font-family: "Sourece Sans pro";
  font-size: 26px;
  font-weight: bold;
  position: relative;
}
.category-page-container .category-page-title .category_title::before {
  z-index: 1;
  position: absolute;
  bottom: -8px;
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  right: 100%;
  top: 50%;
  background: #34495e;
}
.category-page-container .category-page-title .category_title::after {
  z-index: 1;
  position: absolute;
  bottom: -8px;
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  left: 100%;
  top: 50%;
  background: #34495e;
}
.category-page-container .category-page-title .fa-folder-open {
  color: #34495e;
}
#at-expanding-share-button {
  bottom: 200px;
}
.fa-search {
  position: absolute;
  left: 7px;
  top: 20px;
  opacity: 0.5;
  z-index: 3;
  font-size: 18px !important;
}
.local-search {
  min-width: 218px;
  z-index: 2;
  position: absolute;
  top: 60px;
  right: -140px;
}
.local-search .search-text {
  font-size: 18px;
  font-weight: bold;
  color: #99a9bf;
  text-indent: 6px;
}
.local-search .local-search-input-cls {
  width: 205px;
  height: 35px;
  margin: 0;
  padding: 0 4px 0 32px;
  margin-top: 10px;
  border-radius: 4px;
  background: transparent;
  border: 0;
  color: #666;
  outline: none;
  font-size: 15px;
}
.local-search .local-search-border {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 100%;
  max-width: 218px;
  height: 2px;
  border-bottom: 2px solid #53b3fa;
}
.local-search .local-search-result-cls {
  position: absolute;
  z-index: 99;
  width: 300px;
  top: 40px;
  right: -81px;
}
.local-search .local-search-result-cls .local-search-empty {
  color: #888;
  line-height: 44px;
  text-align: center;
  display: block;
  font-size: 16px;
  font-family: Lato;
}
.local-search .local-search-result-cls #local-search-close {
  content: 'x';
  position: absolute;
  right: 9px;
  top: 1px;
  background: #53b3fa;
  color: #fff;
  border-radius: 100%;
  line-height: 25px;
  text-align: center;
  font-size: 26px;
  font-family: consolas;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-style: normal;
  font-weight: normal;
  transform: rotateZ(0);
  transition: all 0.3s;
}
.local-search .local-search-result-cls #local-search-close:hover {
  background-color: #f47466;
  transform: rotateZ(180deg);
  transition: all 0.3s;
}
.local-search .local-search-result-cls .search-result-title {
  color: #53b3fa;
  font-weight: 900;
  font-family: Lato;
  font-size: 16px !important;
}
.local-search .local-search-result-cls .search-result-title:hover {
  color: #f47466;
  text-decoration: underline;
}
.local-search .local-search-result-cls .search-result {
  color: #999;
}
.local-search .local-search-result-cls .search-result em {
  font-style: normal;
  font-size: 14px;
  background-color: #fff5f5;
  padding: 0.065em 0.4em;
}
.local-search .local-search-result-cls ul {
  width: 240px;
  max-height: 450px;
  min-height: 0;
  height: auto;
  overflow-y: auto;
  border-radius: 6px;
  padding: 10px 20px;
  background: #fff;
}
.local-search .local-search-result-cls ul li {
  text-align: left;
  font-family: Lato;
  border-bottom: 2px dashed #05d3f9;
  padding-bottom: 5px;
  margin-bottom: 20px;
  line-height: 20px;
  font-weight: normal;
  list-style-type: none;
}
.local-search .local-search-result-cls ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.local-search .local-search-result-cls ul li a {
  margin-top: 20px;
  font-size: 16px;
}
.local-search .local-search-result-cls ul li p {
  margin-top: 10px;
  font-size: 13px;
  max-height: 124px;
  overflow: hidden;
}
.local-search .local-search-result-cls ul li em.search-keyword {
  color: #f47466;
  font-weight: 900;
  padding: 5px;
}
@media screen and (max-width: 1366px) {
  .local-search {
    top: -5rem;
    left: 7rem;
    right: 0;
  }
  .search-text {
    display: inline-block;
    margin-right: 1.2rem;
  }
  .fa-search {
    left: 0.6rem;
    top: 1.1rem;
  }
  .header {
    margin-bottom: -7rem;
  }
}
@media screen and (max-width: 952px) {
  .local-search {
    display: none;
  }
  .post-toc {
    display: none;
  }
  .header .header_top {
    padding: 12px 120px;
  }
}
@media screen and (max-width: 680px) {
  html {
    font-size: 62.5%;
    width: auto;
  }
  .header {
    height: 26rem;
    padding: 0;
  }
  .header .header_top {
    flex-grow: 1;
    padding: 2rem 0 0 0;
  }
  .header .header_top .theme {
    display: none;
  }
  .header .header_top .navbar {
    width: 100%;
  }
  .header .header_top .navbar .menu {
    padding: 0;
    display: flex;
    justify-content: space-around;
  }
  .header .header_top .navbar .menu .menu-item {
    padding: 0;
  }
  .header .header_top .navbar .menu .menu-item .fa {
    font-size: 1.4rem;
  }
  .header .header_top .navbar .menu .menu-item .menu-item-link {
    font-size: 1.4rem;
  }
  .header .header_top .navbar .menu .menu-item .menu-item-link2 {
    font-size: 1.4rem;
  }
  .header .header_bottom {
    flex-grow: 10;
  }
  .header .header_bottom .blog-title .logo {
    font-size: 3rem;
  }
  .header .header_bottom .blog-title .descr {
    font-size: 1.6rem !important;
  }
  .header .header_bottom .blog-down {
    top: 95%;
  }
  .footer {
    font-size: 1.4rem;
    height: 10rem;
    margin-top: 1rem;
  }
  .footer p {
    margin: 0 auto;
  }
  .local-search {
    display: none;
    top: -6rem !important;
    left: 3rem !important;
  }
  .fa-search {
    left: 1rem;
    top: 1.8rem;
  }
  .post_full {
    padding: 0 1rem;
    margin: 0 auto;
    width: 95%;
    font-size: 1.4rem;
  }
  .post_full .post-title {
    padding-top: 2rem;
    font-size: 1.8rem;
  }
  .post_full .post-info {
    font-size: 1.3rem;
  }
  .post_full .post-tags a {
    font-size: 1.3rem;
  }
  .post_full .post-sub_title {
    font-size: 1.4rem;
  }
  .post_full .post-content {
    overflow: hidden;
  }
  .post_full .post-content h1 {
    font-size: 1.8rem;
    margin: 0;
  }
  .post_full .post-content h2 {
    font-size: 1.7rem;
    margin: 0;
  }
  .post_full .post-content h3 {
    font-size: 1.6rem;
    margin: 0;
  }
  .post_full .post-content h4 {
    font-size: 1.5rem;
    margin: 0;
  }
  .post_full .post-content h5 {
    font-size: 1.4rem;
    margin: 0;
  }
  .post_full .post-content h6 {
    font-size: 1.3rem;
    margin: 0;
  }
  .post_full .post-content li .circle {
    left: -16px !important;
    width: 0.4rem !important;
    height: 0.4rem !important;
  }
  .post_full .post-content center {
    font-size: 1.1rem !important;
  }
  .post_full .post-content blockquote {
    width: 90%;
    padding-left: 1.5rem;
  }
  .post_full .post-content blockquote ul {
    padding-left: 1rem;
  }
  .post_full .post-content iframe {
    max-width: 38rem;
    height: 22rem;
  }
  .post_full .post-content .topBar {
    height: 4rem;
  }
  .post_full .post-content .topBar .dot {
    top: 1.1rem;
    left: 1.6rem;
  }
  .post_full .post-content .topBar .dot svg circle {
    cx: 10;
    cy: 10;
    r: 10;
  }
  .post_full .post-content .topBar .copy {
    z-index: 1;
    top: 1.2rem;
    right: 0.7rem;
  }
  .post_full .post-content .topBar .copy svg {
    width: 2rem;
    height: 2rem;
  }
  .post_full .post-content pre {
    padding-left: 0.4rem;
    margin-top: -0.1rem;
    max-width: 35.8rem;
  }
  .post_full .post-content pre code {
    font-size: 1.2rem;
  }
  .post_full .post-content pre code .line-numbers-rows {
    top: -0.1rem;
    left: -5.8rem;
  }
  .post_full .post-content pre code .line-numbers-rows span {
    height: 2.08rem;
  }
  .post_full .post-nav {
    padding: 1rem;
    width: auto;
  }
  .post_full .post-nav a {
    font-size: 1.3rem;
  }
  .post_full .post-nav:before {
    top: -1.3rem;
    width: 90%;
  }
  .post-toc {
    display: none;
  }
  .post_except {
    width: 90%;
    padding: 0 0 1rem 0;
  }
  .post_except .post-title .post-title-link:after {
    left: -1rem;
  }
  .post_except .post-sub_container {
    padding-top: 0.5em;
  }
  .post_except .post-sub_container .post-tags {
    display: block;
  }
  .post_except .post-sub_container .post-tags .fa {
    font-size: 16px !important;
  }
  .post_except .post-sub_container .post-tags a {
    padding: 0.3rem 0.5rem;
  }
  .post_except .post-sub_container .more-btn {
    padding: 0 0 0 0.5rem;
    height: 2.6rem;
    width: 6em;
  }
  .post_except .post-sub_container .more-btn a {
    font-size: 1.3rem;
  }
  .post_except .post-sub_container .more-btn a:after {
    font-size: 1.8rem;
    top: -1rem;
    right: -3.4em;
  }
  .tags-main-container {
    margin: 0.8rem;
    margin-top: 10rem;
  }
  .tags-main-container .tags-counter {
    font-size: 2rem;
    margin-top: 0;
  }
  .tags-main-container .tags-counter span {
    font-size: 2.5rem;
  }
  .tags-main-container .tags-tagscloud a {
    font-size: 1.2rem !important;
    line-height: 3rem;
  }
  .tag-page-title {
    padding-left: 0.8rem;
  }
  .tag-page-title .tag_title {
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
    padding-left: 0.6rem !important;
    font-size: 1.6rem !important;
  }
  .tag-page-title .fa {
    font-size: 2rem;
  }
  .about-main-container {
    font-size: 1.4rem;
    padding: 5rem 5rem 1rem 5rem !important;
  }
  .about-main-container p:first-child {
    margin-bottom: 0;
  }
  .about-main-container p:first-child img {
    width: 15rem;
    height: 15rem;
    margin-bottom: 2px;
  }
  .categories-main-container {
    margin-top: 10rem;
  }
  .categories-main-container .categories-counter {
    margin-left: 5rem;
    margin-bottom: 0;
    font-size: 2.4rem;
  }
  .categories-main-container .categories-counter span {
    font-size: 2.5rem;
  }
  .categories-main-container .category-list {
    margin-left: 12rem;
    margin-top: 0;
    font-size: 3rem;
  }
  .categories-main-container .category-list .category-list-count {
    font-size: 1.6rem;
  }
  .categories-main-container .category-list .category-list-link {
    font-size: 1.6rem;
  }
  .categories-main-container .category-list .category-list-item {
    line-height: 2.4rem;
  }
  .category-page-title {
    padding-left: 0.8rem;
  }
  .category-page-title .category_title {
    margin-top: 0.6rem !important;
    margin-bottom: 0.6rem !important;
    padding-left: 0.6rem !important;
    font-size: 1.6rem !important;
  }
  .category-page-title .fa {
    font-size: 2rem;
  }
  .archive-page-container {
    margin-top: 10rem;
  }
  .archive {
    margin-left: 25%;
    margin-bottom: 1rem;
  }
  .archive::before {
    left: 0.5rem;
  }
  .archive .time-section {
    padding-left: 1rem;
  }
  .archive .time-section .section-year {
    font-size: 2rem;
    padding-top: 2.8rem;
  }
  .archive .time-section .section-year::before {
    width: 1rem;
    height: 1rem;
    left: -0.3rem;
    top: 3.6rem;
  }
  .archive .time-section .section-year .fa {
    font-size: 3.4rem;
  }
  .archive .time-section .section-list .section-list-item {
    margin-bottom: 3rem;
  }
  .archive .time-section .section-list .section-list-item .archive-title {
    font-size: 1.3rem !important;
  }
  .archive .time-section .section-list .section-list-item .archive-title .circle:after {
    width: 0.8rem;
    height: 0.8rem;
    left: -2rem;
    top: 3.5rem;
  }
  .archive .time-section .section-list .section-list-item .archive-date {
    top: 2.8rem;
    left: -10.5rem;
    font-size: 1.3rem;
  }
  .posts-counter {
    font-size: 2rem;
  }
  .posts-counter span {
    font-size: 2.5rem;
  }
  .toast {
    font-size: 1.3rem;
    left: 26%;
    padding: 0.7rem 1.4rem;
    border-radius: 3.5rem;
  }
  .pager-nav {
    padding: 0;
  }
  .pager-nav .page-number {
    font-size: 1.5rem;
    margin: 0.5rem;
  }
  .pager-nav .extend {
    font-size: 1.4rem;
    margin: 0.6rem;
  }
  #back-to-top {
    width: 6rem;
    height: 6rem;
  }
  #back-to-top svg {
    width: 4rem;
    height: 3rem;
  }
  .at-expanding-share-button-toggle-bg span {
    width: 6rem !important;
    height: 6rem !important;
    background-size: 4rem;
  }
  .at-expanding-share-button-services-list li {
    width: 100px;
    height: 100px;
  }
  .v {
    margin: 0.56rem !important;
    width: auto !important;
  }
  .v .vwrap {
    padding: 0.3rem !important;
  }
  .v .vwrap .vheader .vinput {
    font-size: 1.1rem !important;
  }
  .v .vwrap .vedit #veditor {
    font-size: 2rem !important;
    padding-bottom: 0 !important;
  }
  .v .vwrap .vedit .vctrl {
    font-size: 1.2rem !important;
  }
  .v .vwrap .vcontrol {
    padding: 0.4rem;
    padding-top: 0 !important;
  }
  .v .vwrap .vcontrol .vbtn {
    font-size: 1.2rem;
    padding: 0.6rem 2.2rem;
  }
  .v .vlist .vcard {
    padding: 0 2rem;
  }
  .v .info .txt-right {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  .v .info a {
    font-size: 1.2rem !important;
  }
}
@media screen and (max-width: 369px) {
  html {
    font-size: 62.5%;
    width: auto;
  }
  .header {
    height: 20rem;
  }
  .header .theme {
    left: 1rem;
    font-size: 1.8rem;
  }
  .header .theme a {
    font-size: 1.6rem;
  }
  .header .blog-title {
    top: 40%;
  }
  .header .blog-title .logo {
    font-size: 2rem;
  }
  .header .blog-title .descr {
    font-size: 1.8rem;
  }
  .header .navbar {
    float: none;
    padding-top: 13rem;
    display: flex;
    justify-content: center;
  }
  .header .navbar .menu {
    padding: 0;
  }
  .header .navbar .menu .menu-item {
    margin: 0.7rem;
  }
  .header .navbar .menu .menu-item .menu-item-link {
    font-size: 0.6rem;
  }
  .header .navbar .menu .menu-item .menu-item-link2 {
    font-size: 0.6rem;
  }
}
