::-webkit-scrollbar{width:3px;height:3px}
::-webkit-scrollbar-thumb{background:#909090;}
::-webkit-scrollbar-track{background:rgba(203,213,224);}
::-webkit-scrollbar-thumb:hover{background:#000000;}
.dark ::-webkit-scrollbar-thumb{background:rgba(203,213,224);}
.dark ::-webkit-scrollbar-track{background:#909090;}
* {
  outline: none;
}
html{
    min-height: 100vh;
    height:100%;
    scrollbar-color: #2d3748 rgba(203,213,224,0.4);
    scrollbar-width: thin;
    min-height: -webkit-fill-available;
    scroll-padding-top:60px;
}
@font-face {
  font-family: Emoji;
  src: local("Apple Color Emojiji"), local("Segoe UI Emoji"), local("Segoe UI Symbol"), local("Noto Color Emoji");
  unicode-range: U+1F000-1F644, U+203C-3299;
}
body{
  min-height:100%;
  height:100%;
  margin:0;
  padding:0;
  min-height: -webkit-fill-available;
  font-family: system-ui, —apple-system, Segoe UI, Rototo, Emoji, Helvetica, Arial, sans-serif;
}
#app::after{
    display: none;
    content: ' ';
    position: fixed;
    inset: 0;
    z-index: -10;
    background: url(./img/bg-bl.png) no-repeat fixed bottom left, url(./img/bg-tr.png) no-repeat fixed top right, transparent;
  }
 @media (min-width: 640px){
  #app::after{
    display: block;
  }
 }
.dark #app::after{
  display: none;
}
button{
  cursor: pointer;
}
[x-cloak] { display: none !important; }

.text-shadow {
  text-shadow: 0 0.1875rem 0.3125rem #1c1f21;
}

.text-stroke{
      position: relative;
      z-index: 0;
      letter-spacing: 7.5px;
  }
.text-stroke::after {
      content: attr(data-text);
      position: absolute; left: 0;top: 0;
      z-index: -1;
  }
.text-stroke::after {
  -webkit-text-stroke:9px var(--primary);
  }

footer img {
  display: initial;
  vertical-align: sub;
}
center {
  display: block;
  text-align: -webkit-center;
}
.scroll-hidden::-webkit-scrollbar {
  height: 0px;
  background: transparent; /* make scrollbar transparent */
}
.scroll-hidden{
  scrollbar-width:none;
}

/*通用文章样式草案*/
.markdown-section {
    margin: 0 auto 2rem;
    padding: 15px 0 0;
    position: relative;
}

.markdown-section img{
    max-height: 60vh;
    border-radius: 5px;
    width: auto;
}

.markdown-section>* {
    box-sizing: border-box;
    font-size: inherit
}

.markdown-section>:first-child {
    margin-top: 0!important
}

.markdown-section hr {
    border: none;
    border-bottom: 1px solid #eee;
    margin: 2em 0
}

.markdown-section table {
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    margin-bottom: 1rem;
    overflow: auto;
    width: 100%
}

.markdown-section th {
    font-weight: 700
}

.markdown-section td,.markdown-section th {
    border: 1px solid #ddd;
    padding: 6px 13px
}
.dark .markdown-section td, .dark .markdown-section th {
    border: 1px solid #454545;
}

.markdown-section tr {
    border-top: 1px solid #ccc
}

.dark .markdown-section em {
    color: #cad9da;
}
.markdown-section p.warn {
    background: rgba(66,185,131,.1);
    border-radius: 2px;
    padding: 1rem
}

.markdown-section h1,.markdown-section h2,.markdown-section h3,.markdown-section h4,.markdown-section strong {
    color: #2c3e50;
    font-weight: 600
}
.dark .markdown-section h1,.dark .markdown-section h2,.dark .markdown-section h3,.dark .markdown-section h4,.dark .markdown-section strong {
    color: #ffffff;
}
.markdown-section h1,.markdown-section h2,.markdown-section h3,.markdown-section h4 {
    position: relative;
    padding-top:.75rem;
}
.markdown-section h1:before,.markdown-section h2:before,.markdown-section h3:before,.markdown-section h4:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 5px;
    border-radius: 10px;
    left: 0;
    top: 0;
    z-index: 1;
    background: var(--primary);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.markdown-section a {
    color: var(--primary,#2196F3);
    font-weight: 600;
    cursor: pointer;
}

.markdown-section h1 {
    font-size: 1.5rem;
    margin: 1em 0 1em 0;
}

.markdown-section h2 {
    font-size: 1.4rem;
    margin: 1em 0 1em 0;
}

.markdown-section h3 {
    font-size: 1.3rem;
    margin: 1em 0 1em 0;
}

.markdown-section h4 {
    font-size: 1.2rem;
    margin: 1em 0 0.5em 0;
}

.markdown-section h5 {
    font-size: 1.1rem;
    margin: 1em 0 0.5em 0;
}

.markdown-section h6 {
    font-size: 1rem;
    margin: 1em 0 0.5em 0;
}

.markdown-section figure,.markdown-section p {
    margin: 1.2em 0
}

.markdown-section ol,.markdown-section p,.markdown-section ul {
    line-height: 1.6rem;
    word-spacing: .05rem;
    list-style: inherit;
}
.markdown-section ol {
    list-style: auto;
}
.markdown-section ol,.markdown-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.2em;
}
.markdown-section ul li::marker, .markdown-section ol li::marker {
  color: var(--primary);
}
.markdown-section blockquote {
    border-left: 4px solid var(--theme-color,#2196F3);
    color: #858585;
    margin: 2em 0;
    padding-left: 20px
}
.markdown-section blockquote blockquote {
    margin: 0;
}

.markdown-section blockquote p {
    font-weight: 600;
    margin-left: 0
}

.markdown-section iframe {
    margin: 1em 0
}

.markdown-section em {
    color: #7f8c8d
}

.markdown-section code, .post-comment code {
    border-radius: 2px;
    font-size: .8rem;
    margin: 0 2px;
    white-space: pre-wrap;
    background-color: #5591f7;
    padding: .125rem .25rem;
    color: #fff;
}

.markdown-section pre,.post-comment pre {
    background-color: #f8f8f8;
    font-family: Roboto Mono,Monaco,courier,monospace
}

.markdown-section pre,.post-comment pre {
    -moz-osx-font-smoothing: initial;
    -webkit-font-smoothing: initial;
    line-height: 1.5rem;
    margin: 1.2em 0;
    overflow: auto;
    padding: 0 1.4rem;
    position: relative;
    word-wrap: normal
}

.markdown-section pre>code,.post-comment pre>code {
    -moz-osx-font-smoothing: initial;
    -webkit-font-smoothing: initial;
    background-color: #f8f8f8;
    border-radius: 2px;
    color: #525252;
    display: block;
    font-family: Roboto Mono,Monaco,courier,monospace;
    font-size: .8rem;
    line-height: inherit;
    margin: 0 2px;
    max-width: inherit;
    overflow: inherit;
    padding: 2.2em 5px;
    white-space: inherit
}

.markdown-section code:after,.markdown-section code:before,.post-comment code:after,.post-comment code:before {
    letter-spacing: .05rem
}

code .token {
    -moz-osx-font-smoothing: initial;
    -webkit-font-smoothing: initial;
    min-height: 1.5rem
}

pre:after {
    color: #ccc;
    content: attr(data-lang);
    font-size: .6rem;
    font-weight: 600;
    height: 15px;
    line-height: 15px;
    padding: 5px 10px 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0
}
/*加密文章密码输入框样式*/
form.protected {
    text-align: center;
}
.protected input.text {
    background: #f7f7f7;
    border-radius: 5px;
    padding: 4px 8px;
}
.dark .protected input.text {
    background: #374151;
}
.protected .submit {
    cursor: pointer;
    background: #2196F3;
    color: white;
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 5px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 100ms;
}
.protected .submit:hover {
    background: #3F51B5;
}
/*--------------------------------------------------------------
## Media
--------------------------------------------------------------*/
iframe,
embed {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.media {
  position: relative;
  display: block;
  padding: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.media:after {
  content: '';
  display: block;
  padding-top: 100%;
}
.media:after{
    background-repeat: no-repeat;
    background-position: 50%;
}
.media iframe,.media-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 0;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
img.media-content{
    max-height: 100%;
}
.media-diy:after {
  padding-top: calc(var(--bili) * 1%);
}
/*代码高亮*/
.markdown-section pre:before, .post-comment pre:before {
  content: " ";
  position: absolute;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fc625d;
  width: 11px;
  height: 11px;
  left: 10px;
  top: 10px;
  -webkit-box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
  box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
  z-index: 2;
}
button.copy:before {
  content: '\590d\5236';
}
button.copyed:before {
  content: '\590d\5236\5b8c\6210';
}
button.copyerror:before {
  content: '\590d\5236\5931\8d25';
}
.markdown-section pre, .post-comment pre{
    font-size: 100%;
    border-radius: 4px;
    position: relative;
    margin: 20px 0 20px 0;
    padding: 0;
    padding-top: 31px;
    border:none;
    overflow: auto;
    max-height: unset;
    -webkit-box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
    box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
}
.dark .markdown-section pre,.dark .post-comment pre{
    background-color: #000000;
}
.markdown-section pre code ul {
    counter-reset: items;
    margin: 0 !important;
    padding: 0px;
    list-style: disc;
}
.markdown-section pre li {
    display: block;
    counter-increment: items;
    margin: 0 !important;
    line-height: 1.38em;
    word-break: break-all;
    word-wrap: break-word;
}
.markdown-section pre code ul li:before {
    content: "00" counter(items)" ";
  }
.markdown-section pre code ul li:nth-child(n+10):before {
    content: "0" counter(items)" ";
  }
.markdown-section pre code ul li:nth-child(n+100):before {
    content: counter(items)" ";
  }

.hljs {
  display: block;
  overflow: auto;
  padding: 0.5em !important;
  background: #f8f8f8 !important;
  color: #333 !important;
  border-radius: 0px !important;
  max-height: 500px;
  margin: 0 !important;
}
.dark .hljs{
  background: #2e394a !important;
  color: #fff !important;
}
.hljs,
.hljs-subst {
  color: #ebdbb2;
}

/* Gruvbox Red */
.hljs-deletion,
.hljs-formula,
.hljs-keyword,
.hljs-link,
.hljs-selector-tag {
  color: #fb4934;
}

/* Gruvbox Blue */
.hljs-built_in,
.hljs-emphasis,
.hljs-name,
.hljs-quote,
.hljs-strong,
.hljs-title,
.hljs-variable {
  color: #83a598;
}

/* Gruvbox Yellow */
.hljs-attr,
.hljs-params,
.hljs-template-tag,
.hljs-type {
  color: #fabd2f;
}

/* Gruvbox Purple */
.hljs-builtin-name,
.hljs-doctag,
.hljs-literal,
.hljs-number {
  color: #8f3f71;
}

/* Gruvbox Orange */
.hljs-code,
.hljs-meta,
.hljs-regexp,
.hljs-selector-id,
.hljs-template-variable {
  color: #fe8019;
}

/* Gruvbox Green */
.hljs-addition,
.hljs-meta-string,
.hljs-section,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-string,
.hljs-symbol {
  color: #b8bb26;
}

/* Gruvbox Aqua */
.hljs-attribute,
.hljs-bullet,
.hljs-class,
.hljs-function,
.hljs-function .hljs-keyword,
.hljs-meta-keyword,
.hljs-selector-pseudo,
.hljs-tag {
  color: #8ec07c;
}

/* Gruvbox Gray */
.hljs-comment {
  color: #928374;
}

/* Gruvbox Purple */
.hljs-link_label,
.hljs-literal,
.hljs-number {
  color: #d3869b;
}

.hljs-comment,
.hljs-emphasis {
  font-style: italic;
}

.hljs-section,
.hljs-strong,
.hljs-tag {
  font-weight: bold;
}


.post-comment p{
  padding: .25rem 0;
}
.post-comment .comment-list .children {
  margin-left: 3.25rem;
}
.post-comment .comment-list .children .children{
  margin-left: 0px;
}

@media (max-width: 767.98px) {
.post-comment .comment-list .children {
    margin-left: 1.5rem;
  }
}

/*隐私评论样式适配*/
#PrivateComments + label {
	-webkit-transition: all 0.1s ease-in;
	transition: all 0.1s ease-in;
	width: 30px;
	height: 1rem;
}
#PrivateComments + label:after {
	content: ' ';
	position: absolute;
	top: 0;
	-webkit-transition: box-shadow 0.1s ease-in;
	transition: box-shadow 0.1s ease-in;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100px;
}
#PrivateComments + label:before {
	content: ' ';
	position: absolute;
	background: white;
	top: 0;
	left: 1px;
	z-index: 9;
	width: 1rem;
	-webkit-transition: all 0.1s ease-in;
	transition: all 0.1s ease-in;
	height: 1rem;
	border-radius: 100px;
}
/*隐私评论样式适配*/
#PrivateComments:active + label:before {
	width: 1.15rem;
}

#PrivateComments:checked:active + label:before {
	width: 1.15rem;
	left: 10px;
}
#PrivateComments:checked + label:before {
	content: ' ';
	position: absolute;
	left: 16px;
	border-radius: 100px;
}

#PrivateComments:checked + label:after {
	content: ' ';
	position: absolute;
	background: #ef4444;
}
/*表情*/
.OwO-item{width:calc(100% / 8 - 4px); aspect-ratio:1 / 1; margin: 2px;}
 @media (min-width: 640px){
.OwO-item{width:calc(100% / 10 - 10px);margin: 5px;}
 } 
 @media (min-width: 768px){
.OwO-item{width:calc(100% / 12 - 10px);}
 } 
 @media (min-width: 1024px){
.OwO-item{width:calc(100% / 16 - 10px);}
 } 
 @media (min-width: 1280px){
.OwO-item{width:calc(100% / 20 - 10px);}
 } 
 @media (min-width: 1536px) {
.OwO-item{width:calc(100% / 22 - 10px);}
 }

.OwO{position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;   }.OwO.OwO-open .OwO-body{display:block}.OwO.OwO-up .OwO-body{top:inherit;bottom:21px;border-radius:4px 4px 4px 0}.OwO.OwO-up .OwO-body .OwO-bar .OwO-packages li:nth-child(1){border-radius:0}.OwO.OwO-up.OwO-open .OwO-logo{border:1px solid #ddd;border-radius:0 0 4px 4px;border-top:none}.OwO .OwO-logo{position:relative;display:inline-block;cursor:pointer;box-sizing:border-box;z-index:2;}.OwO .OwO-logo:hover span{display:inline-block;-webkit-animation:a 5s infinite ease-in-out;animation:a 5s infinite ease-in-out}.OwO .OwO-body{display:none;position:relative;;border:2px solid #f0f0f0;z-index:1;border-radius:0 4px 4px 4px;}
.OwO .OwO-body .OwO-items{
  -webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:none;padding:10px;margin:0;overflow-y:scroll;font-size:0;}
.OwO .OwO-body .OwO-items .OwO-item{aspect-ratio:1 / 1;list-style-type:none;display:inline-block;font-size:12px;
cursor:pointer;-webkit-transition:.3s;transition:.3s}.OwO .OwO-body .OwO-items-emoji .OwO-item{font-size:20px;line-height:19px}.OwO .OwO-body .OwO-items-image .OwO-item{max-width:calc(25% - 10px);box-sizing:border-box}.OwO .OwO-body .OwO-items-image .OwO-item img{max-width:100%}
  .OwO .OwO-body .OwO-items-show{display:block;}.OwO .OwO-body .OwO-bar{width:100%;height:30px;border-top:1px solid #ddd;background:#fff;border-radius:0 0 4px 4px;color:#444}.OwO .OwO-body .OwO-bar .OwO-packages{margin:0;padding:0;font-size:0}.OwO .OwO-body .OwO-bar .OwO-packages li{list-style-type:none;display:inline-block;line-height:30px;font-size:14px;padding:0 10px;cursor:pointer;margin:0}.OwO .OwO-body .OwO-bar .OwO-packages li:nth-child(1){border-radius:0 0 0 3px}.OwO .OwO-body .OwO-bar .OwO-packages li:hover{background:#eee}.OwO .OwO-body .OwO-bar .OwO-packages .OwO-package-active{background:#eee;-webkit-transition:.3s;transition:.3s}
.OwO-jio{position: absolute;top: -10px;left: 10px;width: 0;height: 0;border-left: 10px solid transparent;border-right: 10px solid transparent;border-bottom: 10px solid #f0f0f0;}
.OwO-jio:before{content: '';display: block;width: 0;height: 0;border-left: 8px solid transparent;border-right: 8px solid transparent;border-bottom: 8px solid #FFF;position: absolute;left: -8px;top: 2px;}
.dark .OwO .OwO-body .OwO-bar {border-top: 2px solid #374151;background: #374151;color: #fff;}
.dark .OwO .OwO-body .OwO-bar .OwO-packages .OwO-package-active,.dark .OwO .OwO-body .OwO-bar .OwO-packages li:hover {background: #111827;}
.dark .OwO .OwO-body {border: 2px solid #374151;}
.dark .OwO-jio {border-bottom: 10px solid #374151;}
.dark .OwO-jio:before {border-bottom: 8px solid #1f2937;}
.OwO-bar{  display: none;}
img.biaoqing,svg.biaoqing{
    display: inline-block;
    vertical-align: bottom;
    margin: 0;
}
svg.biaoqing{
    width: 100%;
    height: 100% !important;
}
.comment-content img.biaoqing, .comment-content svg.biaoqing{
    height: 35px !important;
    width: 35px;
}
.OwO-bar img {
    top: 0 !important;
    height: auto;
}

/*--------------------------------------------------------------
    tips close btn
--------------------------------------------------------------*/
.btn-close-tips {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  z-index: 44;
  cursor: pointer;
  transform: translateY(150%);
  text-align: center;
}
@-webkit-keyframes tips-open {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(0, 50px, 0)
  }

  100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0)
  }

}

@keyframes tips-open {
  0% {
      opacity: 0;
      -webkit-transform: translate3d(0, 50px, 0);
      transform: translate3d(0, 50px, 0)
  }

  100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0)
  }

}

@-webkit-keyframes tips-close {
  0% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0)
  }

  100% {
      opacity: 0;
      -webkit-transform: translate3d(0, 50px, 0)
  }

}

@keyframes tips-close {
  0% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0)
  }

  100% {
      opacity: 0;
      -webkit-transform: translate3d(0, 50px, 0);
      transform: translate3d(0, 50px, 0)
  }

}
.sinner-tips .tips-body{
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.sitips-open .tips-body{
  -webkit-animation-name: tips-open;
  animation-name: tips-open
}
.sitips-close .tips-body {
  -webkit-animation-name: tips-close;
  animation-name: tips-close
}
/*打赏二维码切换逻辑代替js方案*/
#wxpay:checked ~ .wx-img,#alipay:checked ~ .tb-img{
  display: block;
}
#wxpay:checked ~ .rounded-full label[for="wxpay"] span,#alipay:checked ~ .rounded-full label[for="alipay"] span{
  background: #fff;
}
.dark #wxpay:checked ~ .rounded-full label[for="wxpay"] span,.dark #alipay:checked ~ .rounded-full label[for="alipay"] span{
background-color: rgba(31, 41, 55, 1);
}

/* 图片加载动画 */
.lazy-load {
  background-image: url('img/loading.svg?20260');
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #111827;
}


html.is-transitioning,
html.is-transitioning * {
  pointer-events: none;
  cursor: progress; }

  .is-transitioning [data-barba='container'] {
    position: absolute;
    width: 100%;}

@keyframes PageMove {
	0% {
    transform: translateX(-100%);
	}
	100% {
    transform: translateX(0%);
	}
}

@keyframes PageOut {
	0% {
    transform: translateX(0%);
	}
	100% {
    transform: translateX(100%);
	}
}



.is-transitioning.in .instantclick-bar{
  animation: PageMove .3s ease-in-out;
}
.is-transitioning.out .instantclick-bar{
  animation: PageOut .3s ease-in-out;
}

#instantclick{position:fixed;top:0;left:0;width:100%;pointer-events:none;z-index:2147483647;transition:opacity .25s .1s}
.instantclick-bar{
  background:#5a82f1;
  width:100%;
  height:5px;
  transition:all .25s;
  transform: translateX(-100%);
}


.hover\:animate-play-paused:hover div{
    animation-play-state: paused;
}
.move1{
animation: move 40s linear infinite;
animation-delay: -40s;
}
.move2{
    animation: move2 40s linear infinite;
    animation-delay: -20s;
}

@keyframes move {
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
@keyframes move2 {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-200%);
    }
    
}


.color_bg .color_bg_obj1,
.color_bg .color_bg_obj2,
.color_bg .color_bg_star {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: opacity,visibility;
  transition-property: opacity,visibility;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.color_bg.action .color_bg_obj1, .color_bg.action .color_bg_obj2, .color_bg.action .color_bg_star {
    visibility: visible;
    opacity: 1;
}
.color_bg .color_bg_obj1:before, .color_bg .color_bg_obj1:after,
.color_bg .color_bg_obj2:before,
.color_bg .color_bg_obj2:after,
.color_bg .color_bg_star:before,
.color_bg .color_bg_star:after {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
  background-size: 51.25vw 51.25vw;
  background-position: 0 0;
  background-repeat: repeat;
  position: absolute;
  content: " ";
  display: block;
  width: 205vw;
  height: 153.75vw;
  will-change: transform;
}

.color_bg.action .color_bg_obj1:before, .color_bg.action .color_bg_obj1:after, .color_bg.action .color_bg_obj2:before, .color_bg.action .color_bg_obj2:after, .color_bg.action .color_bg_star:before, .color_bg.action .color_bg_star:after {
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}
.color_bg_obj1:before, .color_bg_obj1:after {
    background-image: url(./img/bg_page_obj1.png);
}
.color_bg .color_bg_obj1:before {
  -webkit-animation: color_bg1 80s linear infinite;
          animation: color_bg1 80s linear infinite;
}
.color_bg .color_bg_obj1:after {
  -webkit-animation: color_bg2 80s linear infinite;
          animation: color_bg2 80s linear infinite;
}

.color_bg_obj2:before, .color_bg_obj2:after {
    background-image: url(./img/bg_page_obj2.png);
}

.color_bg .color_bg_obj2:before {
  -webkit-animation: color_bg1 100s linear infinite;
          animation: color_bg1 100s linear infinite;
}
.color_bg .color_bg_obj2:after {
  -webkit-animation: color_bg2 100s linear infinite;
          animation: color_bg2 100s linear infinite;
}


.color_bg_star:before, .color_bg_star:after {
    background-image: url(./img/bg_page_stars.png);
}

.color_bg .color_bg_star:before {
  -webkit-animation: color_bg1 50s linear infinite;
          animation: color_bg1 50s linear infinite;
}
.color_bg .color_bg_star:after {
  -webkit-animation: color_bg2 50s linear infinite;
          animation: color_bg2 50s linear infinite;
}





@-webkit-keyframes color_bg1 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 100%, 0);
            transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes color_bg1 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 100%, 0);
            transform: translate3d(-100%, 100%, 0);
  }
}
@-webkit-keyframes color_bg2 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes color_bg2 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}