.dynamic-island:hover img {width:30px;    height:30px;;}
.bars {display:flex;align-items:center;  justify-content:flex-end;  gap:3px;}
.bar {width:2px;height:13px;background-color:green;animation:bounce 1s infinite ease-in-out;animation-direction:alternate;}
.bar:nth-child(1) {animation-duration:1s;}
.bar:nth-child(2) {animation-duration:0.9s;}
.bar:nth-child(3) {animation-duration:0.8s;}
.bar:nth-child(4) {animation-duration:0.7s;}
.bar:nth-child(5) {animation-duration:0.6s;}
.bar:nth-child(6) {animation-duration:0.9s;}
.bar:nth-child(7) {animation-duration:0.7s;}
.dynamic-island {position:fixed;top:80px;left:50%;transform:translateX(-50%) scale(0);    transform-origin:center;width:auto;max-width:80%;height:40px;background-color:#000;border-radius:25px;    color:white;display:flex;align-items:center;justify-content:space-between;    transition:transform 0.4s ease-in-out,height 0.6s ease-in-out,border-radius 0.6s ease-in-out,box-shadow 0.5s ease-in-out,opacity 0.5s ease-in-out;overflow:visible;    z-index:1000;padding-left:35px;    padding-right:20px;    opacity:0;box-shadow:0 0px 10px rgba(0,0,0,0.45);;}
.dynamic-island.active {transform:translateX(-50%) scale(1);    opacity:1;}
.dynamic-island.inactive {transform:translateX(-50%) scale(0);    opacity:0;}
.island-content {opacity:0;transition:opacity 0.9s ease-in-out,filter 0.8s ease-in-out;    font-weight:bold;    flex-grow:1;    text-align:right;    width:100%;}
.dynamic-island.active .island-content {opacity:1;}
.dynamic-island img {position:absolute;left:10px;    width:20px;    height:20px;    object-fit:cover;    transition:height 0.8s ease-in-out,width 0.8s ease-in-out,filter 0.8s ease-in-out;}
.dynamic-island:hover {height:60px;border-radius:50px;}
@keyframes bounce {0% {transform:scaleY(0.3);background-color:green;}
50% {transform:scaleY(1);background-color:orange;}
100% {transform:scaleY(0.3);background-color:green;}
;}


.dark-theme {
    background-image: url("https://cos.longs.cn/You/2024/08/20240822213904973.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
}

.item-tags a {
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 5px;
}

.item-tags a.meta-pay {
  background-color: #FFD700;
  color: black;
}

.item-tags a.c-blue {
  background-color: #1E90FF;
  color: white;
}

.item-tags a[href*="tag/"] {
  background-color: #FF69B4;
  color: white;
}

.index-tab {
  padding: 5px 8px;
  background: transparent;
  border-radius: 0;
}

.index-tab ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-tab ul>li {
  display: inline-block;
  padding: 3px 14px;
  margin: 0 2px;
  font-weight: 500;
  font-family: "Comic Sans MS", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 13px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 240, 248, 0.9) 0%, rgba(255, 225, 238, 0.7) 100%);
  color: #e66ba3;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 3px rgba(230, 107, 163, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.index-tab ul>li:hover:not(.active) {
  background: linear-gradient(135deg, rgba(255, 225, 238, 0.9) 0%, rgba(255, 210, 230, 0.8) 100%);
  border-color: rgba(255, 180, 210, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(230, 107, 163, 0.2);
}

.index-tab ul>li.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ffcceb 0%, #ff99cc 50%, #ff66b3 100%) !important;
  border-radius: 20px;
  z-index: 1;
  position: relative;
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
  box-shadow: 0 3px 8px rgba(230, 107, 163, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.index-tab ul>li.active::before,
.index-tab ul>li.active::after {
  content: none;
}

@media (max-width:768px) {
  .index-tab ul>li {
    padding: 2px 10px;
    font-size: 12px;
  }

  .index-tab ul>li.active {
    height: 28px;
    line-height: 28px;
  }
}

.posts-item.card {
  padding: 30px 10px 10px 10px !important;
      background-size: cover;
  background: url('https://www.huijuf.com/wp-content/themes/zbboxPro/images/card_background.png') no-repeat, linear-gradient(to bottom, #ECF5FF, #FFFFFF);
}

.item-thumbnail:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background .35s;
  border-radius: 8px;
  z-index: 2;
  max-width: 765px;
  margin: 0 auto;
  pointer-events: none;
}

.item-thumbnail:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  background: url(https://obs.longs.cn/img/2025/11/20251112111259483.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 3;
  -webkit-transform: scale(2);
  transform: scale(2);
  transition: opacity .35s, -webkit-transform .35s;
  transition: transform .35s, opacity .35s;
  transition: transform .35s, opacity .35s, -webkit-transform .35s;
  opacity: 0;
  pointer-events: none;
}

.item-thumbnail:hover:before {
  background: rgba(0, 0, 0, .5)
}

.item-thumbnail:hover:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1
}

.wp-posts-content img{border-radius: 8px;}
.list-group-item {background-color: rgba(255, 255, 255, 0);}


.title-theme {
  padding:0px 0px 0px 45px!important;
  background:url(https://obs.longs.cn/SVG/copy.svg) 10px center no-repeat;
  background-size:30px 20px;
  color:#566889;
}
.title-theme:before {
  display:none;
}
.wp-posts-content>h2:not([class]) {
  padding:0px 0px 0px 45px!important;
  background:url(https://obs.longs.cn/SVG/copy1.svg) 10px center no-repeat;
  background-size:30px 20px;
  color:#000;
}
.wp-posts-content>h2:not([class]):before {
  display:none;
}
.wp-posts-content>h1.wp-block-heading {
  padding:0px 0px 0px 45px!important;
  background:url(https://obs.longs.cn/SVG/copy1.svg) 10px center no-repeat;
  background-size:30px 20px;
}
.wp-posts-content>h2.wp-block-heading {
  padding:0px 0px 0px 45px!important;
  background:url(https://obs.longs.cn/SVG/copy2.svg) 10px center no-repeat;
  background-size:30px 20px;
}
.wp-posts-content>h3.wp-block-heading {
  padding:0px 0px 0px 45px!important;
  background:url(https://obs.longs.cn/SVG/copy3.svg) 10px center no-repeat;
  background-size:30px 20px;
}
.wp-posts-content>h4.wp-block-heading {
  padding:0px 0px 0px 45px!important;
  background:url(https://obs.longs.cn/SVG/copy3.svg) 10px center no-repeat;
  background-size:30px 20px;
}
.wp-posts-content>h1.wp-block-heading:before {
  display:none;
}
.wp-posts-content>h2.wp-block-heading:before.wp-posts-content>h3.wp-block-heading:before {
  display:none;
}
.wp-posts-content>h4.wp-block-heading:before {
  display:none;
}

.navbar-top li.current-menu-item>a, .navbar-top li:hover>a {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    text-decoration: underline wavy;
    text-decoration-thickness: from-font;
    text-underline-offset: 3px;
}

@media screen and (min-width: 850px) {
  .header-slider-search .line-form .icon {
    color: #fff;
  }

  .header-slider-search .line-form .icon {
    color: #fff;
    background-color: var(--theme-color);
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    padding: 15px;
    display: block;
    height: 52px;
    width: 100px;
    padding-right: 4px;
    line-height: 0;
    margin-right: -26px;
    border: none;
    position: absolute;
    right: 0;
    top: -14px;
  }

  .line-form:hover {
    box-shadow: 0 2px 30px 0 #fff;
  }

  .filter-blur .header-slider-card .zib-widget,
  .filter-blur .header-slider-search .line-form {
    overflow: hidden;
  }
}

ul li .list-img a .avatar-lg img.avatarbox_Miniimgbox {
  display: none;
}

#comment {
  background-color: transparent;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url(https://pc.acgimg.cn/picimg/20260101/a943f5b6534bdd0269e0ef948390c33f.png) right 10px bottom 10px no-repeat;
  -moz-transition: ease-in-out 0.45s;
  -webkit-transition: ease-in-out 0.45s;
  -o-transition: ease-in-out 0.45s;
  -ms-transition: ease-in-out 0.45s;
  transition: ease-in-out 0.45s;
}

textarea#comment:focus {
  background-position-y: 789px;
  -moz-transition: ease-in-out 0.45s;
  -webkit-transition: ease-in-out 0.45s;
  -o-transition: ease-in-out 0.45s;
  -ms-transition: ease-in-out 0.45s;
  transition: ease-in-out 0.45s;
}


.comment-mini-lists>div.posts-mini {
  border: 1px dashed #999999;
  border-radius: 10px;
  margin-top: 10px;
}

.forum-posts .forum-title {
  font-weight: 600 !important;
}


.member-scrolling .new-swiper {
  width: calc(100% - 10px);
  height: 60px;
  margin: 5px;
  overflow: hidden;
  border-radius: 9px;
}

@media screen and (min-width:768px) {
  .member-scrolling .new-swiper {
    width: calc(33.33333% - 10px)
  }
}

.member-scrolling .relative-h {
  padding: 7px 10px 6px;
  width: 100%;
  height: 100%;
}

.member-scrolling .list-inline>li+li {
  width: calc(100% - 58px)
}

.member-scrolling>li {
  vertical-align: middle
}

.member-scrolling .orange {
  background: rgba(230, 125, 97, .08)
}

.member-scrolling .blue {
  background: rgba(63, 140, 255, .08)
}

.member-scrolling .green {
  background: rgba(70, 198, 158, .08)
}

.posts-item {
    position: relative;
}

.posts-item.card::before {
    content: "";
    display: block;
    background: #fc625d;
    top: 10px;
    left: 15px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    box-shadow: 16px 0 #fdbc40,32px 0 #35cd4b;
    position: absolute;
}

.posts-item.card {
    padding: 26px 10px 10px 10px;
}

.enlighter::before {
    content: "";
    display: block;
    background: #fc625d;
    top: 9px;
    left: 15px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    box-shadow: 20px 0 #fdbc40,40px 0 #35cd4b;
    margin: 0px 2px -7px;
    z-index: 1;
    position: absolute;
}

.enlighter-overflow-scroll.enlighter-v-standard .enlighter {
    padding: 35px 0 12px 0;
}

.navbar-brand {
    position: relative;
    overflow: hidden;
    margin: 0px 0 0 0px;
}

.navbar-brand:before {
    content: "";
    position: absolute;
    left: -665px;
    top: -460px;
    width: 200px;
    height: 15px;
    background-color: rgba(255,255,255,.5);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: searchLights 6s ease-in 0s infinite;
    -o-animation: searchLights 6s ease-in 0s infinite;
    animation: searchLights 6s ease-in 0s infinite;
}

@-moz-keyframes searchLights {
    50% {
        left: -100px;
        top: 0;
    }

    65% {
        left: 120px;
        top: 100px;
    }
}

@keyframes searchLights {
    40% {
        left: -100px;
        top: 0;
    }

    60% {
        left: 120px;
        top: 100px;
    }

    80% {
        left: -100px;
        top: 0px;
    }
}

.vip-card {
    background: url(https://cos.longs.cn/You/2024/08/20240822210356433.png);
    background-size: auto;
    background-size: 115%;
}

.sub-vip-card .vip-card {
    background-size: 175%;
}

.payvip-icon {
    background: url(https://cos.longs.cn/You/2024/08/20240822210356433.png);
}

.sign-img+.sign::before {
    content: '';
    position: absolute;
    top: -144px;
    left: 80px;
    width: 191px;
    height: 187px;
    background: url(https://cos.longs.cn/You/2024/08/20240812135435257.png) no-repeat center / 100%;
}

.sign-img {
    padding-right: 50%;
}

@-webkit-keyframes burn {
    0% {
        -webkit-clip-path: polygon(51% 94%,44% 93%,40% 92%,35% 89%,31% 83%,32% 77%,34% 71%,38% 62%,38% 55%,38% 47%,42% 52%,45% 56%,45% 53%,45% 47%,45% 42%,46% 40%,49% 35%,50% 44%,51% 49%,54% 54%,56% 59%,58% 62%,59% 56%,60% 52%,63% 57%,63% 62%,61% 68%,63% 72%,65% 77%,67% 81%,66% 86%,63% 90%,60% 92%);
        clip-path: polygon(51% 94%,44% 93%,40% 92%,35% 89%,31% 83%,32% 77%,34% 71%,38% 62%,38% 55%,38% 47%,42% 52%,45% 56%,45% 53%,45% 47%,45% 42%,46% 40%,49% 35%,50% 44%,51% 49%,54% 54%,56% 59%,58% 62%,59% 56%,60% 52%,63% 57%,63% 62%,61% 68%,63% 72%,65% 77%,67% 81%,66% 86%,63% 90%,60% 92%);
    }

    25% {
        -webkit-clip-path: polygon(49% 97%,41% 97%,35% 92%,33% 86%,34% 80%,30% 74%,34% 77%,38% 81%,38% 78%,36% 72%,35% 67%,37% 61%,37% 54%,39% 61%,39% 67%,43% 63%,43% 58%,45% 44%,44% 58%,48% 66%,51% 67%,51% 59%,54% 67%,56% 72%,57% 79%,59% 77%,60% 71%,61% 77%,61% 83%,60% 89%,61% 94%,57% 97%,52% 98%);
        clip-path: polygon(49% 97%,41% 97%,35% 92%,33% 86%,34% 80%,30% 74%,34% 77%,38% 81%,38% 78%,36% 72%,35% 67%,37% 61%,37% 54%,39% 61%,39% 67%,43% 63%,43% 58%,45% 44%,44% 58%,48% 66%,51% 67%,51% 59%,54% 67%,56% 72%,57% 79%,59% 77%,60% 71%,61% 77%,61% 83%,60% 89%,61% 94%,57% 97%,52% 98%);
    }

    50% {
        -webkit-clip-path: polygon(46% 97%,39% 96%,35% 89%,36% 84%,34% 77%,30% 73%,30% 65%,30% 70%,35% 75%,38% 68%,37% 61%,40% 53%,41% 42%,42% 56%,44% 65%,50% 67%,51% 57%,53% 68%,52% 74%,51% 81%,55% 78%,57% 72%,58% 79%,57% 85%,55% 88%,60% 87%,63% 82%,63% 89%,59% 94%,55% 98%,51% 92%,50% 99%,45% 96%);
        clip-path: polygon(46% 97%,39% 96%,35% 89%,36% 84%,34% 77%,30% 73%,30% 65%,30% 70%,35% 75%,38% 68%,37% 61%,40% 53%,41% 42%,42% 56%,44% 65%,50% 67%,51% 57%,53% 68%,52% 74%,51% 81%,55% 78%,57% 72%,58% 79%,57% 85%,55% 88%,60% 87%,63% 82%,63% 89%,59% 94%,55% 98%,51% 92%,50% 99%,45% 96%);
    }

    75% {
        -webkit-clip-path: polygon(45% 97%,38% 97%,33% 93%,31% 87%,31% 81%,29% 76%,25% 69%,29% 61%,30% 69%,35% 71%,35% 62%,34% 54%,38% 45%,38% 54%,43% 62%,47% 57%,48% 49%,44% 38%,50% 46%,53% 60%,54% 71%,53% 79%,59% 76%,60% 66%,64% 73%,63% 79%,59% 85%,64% 90%,68% 84%,68% 92%,60% 97%,53% 98%,48% 99%);
        clip-path: polygon(45% 97%,38% 97%,33% 93%,31% 87%,31% 81%,29% 76%,25% 69%,29% 61%,30% 69%,35% 71%,35% 62%,34% 54%,38% 45%,38% 54%,43% 62%,47% 57%,48% 49%,44% 38%,50% 46%,53% 60%,54% 71%,53% 79%,59% 76%,60% 66%,64% 73%,63% 79%,59% 85%,64% 90%,68% 84%,68% 92%,60% 97%,53% 98%,48% 99%);
    }

    100% {
        -webkit-clip-path: polygon(48% 97%,42% 97%,37% 93%,31% 92%,28% 88%,26% 81%,29% 84%,34% 84%,33% 79%,30% 74%,31% 67%,34% 57%,34% 65%,39% 71%,43% 65%,43% 55%,40% 45%,48% 59%,49% 69%,51% 76%,55% 71%,54% 65%,54% 58%,58% 64%,61% 72%,57% 82%,61% 87%,64% 78%,66% 85%,64% 93%,57% 96%,54% 93%,48% 97%);
        clip-path: polygon(48% 97%,42% 97%,37% 93%,31% 92%,28% 88%,26% 81%,29% 84%,34% 84%,33% 79%,30% 74%,31% 67%,34% 57%,34% 65%,39% 71%,43% 65%,43% 55%,40% 45%,48% 59%,49% 69%,51% 76%,55% 71%,54% 65%,54% 58%,58% 64%,61% 72%,57% 82%,61% 87%,64% 78%,66% 85%,64% 93%,57% 96%,54% 93%,48% 97%);
    }
}

@keyframes burn {
    0% {
        -webkit-clip-path: polygon(51% 94%,44% 93%,40% 92%,35% 89%,31% 83%,32% 77%,34% 71%,38% 62%,38% 55%,38% 47%,42% 52%,45% 56%,45% 53%,45% 47%,45% 42%,46% 40%,49% 35%,50% 44%,51% 49%,54% 54%,56% 59%,58% 62%,59% 56%,60% 52%,63% 57%,63% 62%,61% 68%,63% 72%,65% 77%,67% 81%,66% 86%,63% 90%,60% 92%);
        clip-path: polygon(51% 94%,44% 93%,40% 92%,35% 89%,31% 83%,32% 77%,34% 71%,38% 62%,38% 55%,38% 47%,42% 52%,45% 56%,45% 53%,45% 47%,45% 42%,46% 40%,49% 35%,50% 44%,51% 49%,54% 54%,56% 59%,58% 62%,59% 56%,60% 52%,63% 57%,63% 62%,61% 68%,63% 72%,65% 77%,67% 81%,66% 86%,63% 90%,60% 92%);
    }

    25% {
        -webkit-clip-path: polygon(49% 97%,41% 97%,35% 92%,33% 86%,34% 80%,30% 74%,34% 77%,38% 81%,38% 78%,36% 72%,35% 67%,37% 61%,37% 54%,39% 61%,39% 67%,43% 63%,43% 58%,45% 44%,44% 58%,48% 66%,51% 67%,51% 59%,54% 67%,56% 72%,57% 79%,59% 77%,60% 71%,61% 77%,61% 83%,60% 89%,61% 94%,57% 97%,52% 98%);
        clip-path: polygon(49% 97%,41% 97%,35% 92%,33% 86%,34% 80%,30% 74%,34% 77%,38% 81%,38% 78%,36% 72%,35% 67%,37% 61%,37% 54%,39% 61%,39% 67%,43% 63%,43% 58%,45% 44%,44% 58%,48% 66%,51% 67%,51% 59%,54% 67%,56% 72%,57% 79%,59% 77%,60% 71%,61% 77%,61% 83%,60% 89%,61% 94%,57% 97%,52% 98%);
    }

    50% {
        -webkit-clip-path: polygon(46% 97%,39% 96%,35% 89%,36% 84%,34% 77%,30% 73%,30% 65%,30% 70%,35% 75%,38% 68%,37% 61%,40% 53%,41% 42%,42% 56%,44% 65%,50% 67%,51% 57%,53% 68%,52% 74%,51% 81%,55% 78%,57% 72%,58% 79%,57% 85%,55% 88%,60% 87%,63% 82%,63% 89%,59% 94%,55% 98%,51% 92%,50% 99%,45% 96%);
        clip-path: polygon(46% 97%,39% 96%,35% 89%,36% 84%,34% 77%,30% 73%,30% 65%,30% 70%,35% 75%,38% 68%,37% 61%,40% 53%,41% 42%,42% 56%,44% 65%,50% 67%,51% 57%,53% 68%,52% 74%,51% 81%,55% 78%,57% 72%,58% 79%,57% 85%,55% 88%,60% 87%,63% 82%,63% 89%,59% 94%,55% 98%,51% 92%,50% 99%,45% 96%);
    }

    75% {
        -webkit-clip-path: polygon(45% 97%,38% 97%,33% 93%,31% 87%,31% 81%,29% 76%,25% 69%,29% 61%,30% 69%,35% 71%,35% 62%,34% 54%,38% 45%,38% 54%,43% 62%,47% 57%,48% 49%,44% 38%,50% 46%,53% 60%,54% 71%,53% 79%,59% 76%,60% 66%,64% 73%,63% 79%,59% 85%,64% 90%,68% 84%,68% 92%,60% 97%,53% 98%,48% 99%);
        clip-path: polygon(45% 97%,38% 97%,33% 93%,31% 87%,31% 81%,29% 76%,25% 69%,29% 61%,30% 69%,35% 71%,35% 62%,34% 54%,38% 45%,38% 54%,43% 62%,47% 57%,48% 49%,44% 38%,50% 46%,53% 60%,54% 71%,53% 79%,59% 76%,60% 66%,64% 73%,63% 79%,59% 85%,64% 90%,68% 84%,68% 92%,60% 97%,53% 98%,48% 99%);
    }

    100% {
        -webkit-clip-path: polygon(48% 97%,42% 97%,37% 93%,31% 92%,28% 88%,26% 81%,29% 84%,34% 84%,33% 79%,30% 74%,31% 67%,34% 57%,34% 65%,39% 71%,43% 65%,43% 55%,40% 45%,48% 59%,49% 69%,51% 76%,55% 71%,54% 65%,54% 58%,58% 64%,61% 72%,57% 82%,61% 87%,64% 78%,66% 85%,64% 93%,57% 96%,54% 93%,48% 97%);
        clip-path: polygon(48% 97%,42% 97%,37% 93%,31% 92%,28% 88%,26% 81%,29% 84%,34% 84%,33% 79%,30% 74%,31% 67%,34% 57%,34% 65%,39% 71%,43% 65%,43% 55%,40% 45%,48% 59%,49% 69%,51% 76%,55% 71%,54% 65%,54% 58%,58% 64%,61% 72%,57% 82%,61% 87%,64% 78%,66% 85%,64% 93%,57% 96%,54% 93%,48% 97%);
    }
}

@-webkit-keyframes burn_alt {
    0% {
        -webkit-clip-path: polygon(48% 97%,43% 97%,38% 97%,34% 94%,33% 91%,32% 87%,29% 83%,26% 80%,21% 75%,20% 71%,20% 66%,20% 59%,20% 65%,24% 68%,28% 67%,28% 62%,25% 60%,21% 52%,21% 43%,24% 32%,23% 39%,24% 46%,28% 48%,33% 44%,33% 39%,31% 32%,28% 23%,30% 14%,31% 22%,35% 28%,39% 28%,41% 25%,40% 21%,39% 13%,41% 6%,42% 15%,45% 23%,49% 25%,52% 22%,51% 13%,54% 21%,56% 29%,53% 35%,50% 41%,53% 46%,58% 46%,60% 39%,60% 34%,64% 39%,65% 45%,63% 51%,61% 56%,64% 61%,68% 59%,71% 55%,73% 48%,73% 40%,76% 48%,77% 56%,76% 62%,74% 66%,69% 71%,71% 74%,75% 74%,79% 71%,81% 65%,82% 72%,81% 77%,77% 82%,73% 86%,73% 89%,78% 89%,82% 85%,81% 91%,78% 95%,72% 97%,65% 98%,59% 98%,53% 99%,47% 97%);
        clip-path: polygon(48% 97%,43% 97%,38% 97%,34% 94%,33% 91%,32% 87%,29% 83%,26% 80%,21% 75%,20% 71%,20% 66%,20% 59%,20% 65%,24% 68%,28% 67%,28% 62%,25% 60%,21% 52%,21% 43%,24% 32%,23% 39%,24% 46%,28% 48%,33% 44%,33% 39%,31% 32%,28% 23%,30% 14%,31% 22%,35% 28%,39% 28%,41% 25%,40% 21%,39% 13%,41% 6%,42% 15%,45% 23%,49% 25%,52% 22%,51% 13%,54% 21%,56% 29%,53% 35%,50% 41%,53% 46%,58% 46%,60% 39%,60% 34%,64% 39%,65% 45%,63% 51%,61% 56%,64% 61%,68% 59%,71% 55%,73% 48%,73% 40%,76% 48%,77% 56%,76% 62%,74% 66%,69% 71%,71% 74%,75% 74%,79% 71%,81% 65%,82% 72%,81% 77%,77% 82%,73% 86%,73% 89%,78% 89%,82% 85%,81% 91%,78% 95%,72% 97%,65% 98%,59% 98%,53% 99%,47% 97%);
    }

    25% {
        -webkit-clip-path: polygon(44% 99%,41% 99%,35% 98%,29% 97%,24% 93%,21% 86%,20% 80%,16% 74%,16% 64%,16% 71%,21% 75%,25% 72%,25% 65%,22% 59%,19% 53%,19% 44%,21% 52%,25% 59%,29% 57%,29% 51%,26% 44%,26% 38%,30% 32%,31% 26%,30% 18%,34% 25%,33% 35%,33% 44%,34% 50%,39% 53%,44% 52%,45% 49%,44% 44%,42% 38%,44% 33%,48% 26%,45% 35%,47% 41%,50% 44%,51% 52%,49% 60%,48% 65%,53% 69%,58% 65%,57% 59%,58% 51%,62% 41%,66% 40%,64% 47%,61% 58%,63% 66%,66% 68%,70% 67%,72% 62%,73% 57%,71% 48%,75% 53%,79% 57%,79% 64%,76% 70%,72% 75%,70% 78%,74% 80%,78% 79%,82% 76%,84% 71%,85% 66%,84% 62%,88% 67%,89% 72%,89% 79%,87% 83%,84% 89%,81% 93%,76% 97%,69% 98%,60% 99%,54% 99%,48% 100%,45% 97%);
        clip-path: polygon(44% 99%,41% 99%,35% 98%,29% 97%,24% 93%,21% 86%,20% 80%,16% 74%,16% 64%,16% 71%,21% 75%,25% 72%,25% 65%,22% 59%,19% 53%,19% 44%,21% 52%,25% 59%,29% 57%,29% 51%,26% 44%,26% 38%,30% 32%,31% 26%,30% 18%,34% 25%,33% 35%,33% 44%,34% 50%,39% 53%,44% 52%,45% 49%,44% 44%,42% 38%,44% 33%,48% 26%,45% 35%,47% 41%,50% 44%,51% 52%,49% 60%,48% 65%,53% 69%,58% 65%,57% 59%,58% 51%,62% 41%,66% 40%,64% 47%,61% 58%,63% 66%,66% 68%,70% 67%,72% 62%,73% 57%,71% 48%,75% 53%,79% 57%,79% 64%,76% 70%,72% 75%,70% 78%,74% 80%,78% 79%,82% 76%,84% 71%,85% 66%,84% 62%,88% 67%,89% 72%,89% 79%,87% 83%,84% 89%,81% 93%,76% 97%,69% 98%,60% 99%,54% 99%,48% 100%,45% 97%);
    }

    50% {
        -webkit-clip-path: polygon(45% 99%,40% 98%,34% 98%,31% 96%,28% 93%,26% 89%,27% 84%,26% 81%,23% 77%,20% 73%,18% 70%,19% 65%,19% 60%,20% 53%,20% 43%,24% 41%,28% 32%,28% 40%,28% 48%,29% 53%,33% 52%,35% 49%,36% 42%,36% 35%,36% 27%,39% 19%,42% 12%,40% 23%,39% 29%,41% 37%,43% 41%,44% 47%,45% 52%,47% 55%,50% 57%,52% 54%,53% 48%,52% 42%,51% 33%,50% 26%,54% 36%,55% 39%,57% 46%,57% 52%,55% 58%,55% 61%,58% 65%,62% 64%,64% 60%,65% 54%,64% 49%,65% 43%,68% 38%,67% 44%,69% 51%,72% 53%,72% 59%,70% 65%,68% 69%,68% 74%,71% 75%,74% 73%,76% 69%,78% 63%,82% 58%,81% 63%,81% 69%,81% 75%,76% 80%,75% 85%,79% 87%,82% 84%,83% 91%,79% 94%,75% 96%,71% 97%,64% 98%,58% 99%,53% 98%,46% 100%);
        clip-path: polygon(45% 99%,40% 98%,34% 98%,31% 96%,28% 93%,26% 89%,27% 84%,26% 81%,23% 77%,20% 73%,18% 70%,19% 65%,19% 60%,20% 53%,20% 43%,24% 41%,28% 32%,28% 40%,28% 48%,29% 53%,33% 52%,35% 49%,36% 42%,36% 35%,36% 27%,39% 19%,42% 12%,40% 23%,39% 29%,41% 37%,43% 41%,44% 47%,45% 52%,47% 55%,50% 57%,52% 54%,53% 48%,52% 42%,51% 33%,50% 26%,54% 36%,55% 39%,57% 46%,57% 52%,55% 58%,55% 61%,58% 65%,62% 64%,64% 60%,65% 54%,64% 49%,65% 43%,68% 38%,67% 44%,69% 51%,72% 53%,72% 59%,70% 65%,68% 69%,68% 74%,71% 75%,74% 73%,76% 69%,78% 63%,82% 58%,81% 63%,81% 69%,81% 75%,76% 80%,75% 85%,79% 87%,82% 84%,83% 91%,79% 94%,75% 96%,71% 97%,64% 98%,58% 99%,53% 98%,46% 100%);
    }

    75% {
        -webkit-clip-path: polygon(45% 99%,41% 99%,35% 98%,30% 98%,25% 94%,22% 89%,21% 84%,23% 77%,23% 70%,19% 63%,23% 66%,27% 71%,28% 76%,32% 78%,35% 72%,32% 67%,28% 64%,24% 58%,24% 49%,27% 42%,30% 34%,31% 24%,29% 13%,33% 18%,38% 25%,38% 36%,37% 44%,41% 48%,45% 48%,48% 45%,48% 39%,46% 33%,48% 27%,52% 20%,50% 29%,51% 38%,53% 44%,54% 52%,56% 57%,61% 57%,64% 55%,65% 48%,63% 39%,63% 32%,66% 37%,69% 44%,70% 52%,68% 59%,66% 64%,67% 69%,73% 72%,76% 71%,77% 66%,76% 58%,76% 51%,80% 57%,82% 62%,82% 68%,80% 73%,77% 78%,74% 82%,75% 87%,78% 87%,81% 84%,84% 79%,86% 74%,88% 78%,87% 83%,84% 89%,82% 92%,78% 97%,74% 97%,69% 97%,66% 98%,61% 98%,57% 97%,53% 99%,49% 96%,47% 99%,48% 99%);
        clip-path: polygon(45% 99%,41% 99%,35% 98%,30% 98%,25% 94%,22% 89%,21% 84%,23% 77%,23% 70%,19% 63%,23% 66%,27% 71%,28% 76%,32% 78%,35% 72%,32% 67%,28% 64%,24% 58%,24% 49%,27% 42%,30% 34%,31% 24%,29% 13%,33% 18%,38% 25%,38% 36%,37% 44%,41% 48%,45% 48%,48% 45%,48% 39%,46% 33%,48% 27%,52% 20%,50% 29%,51% 38%,53% 44%,54% 52%,56% 57%,61% 57%,64% 55%,65% 48%,63% 39%,63% 32%,66% 37%,69% 44%,70% 52%,68% 59%,66% 64%,67% 69%,73% 72%,76% 71%,77% 66%,76% 58%,76% 51%,80% 57%,82% 62%,82% 68%,80% 73%,77% 78%,74% 82%,75% 87%,78% 87%,81% 84%,84% 79%,86% 74%,88% 78%,87% 83%,84% 89%,82% 92%,78% 97%,74% 97%,69% 97%,66% 98%,61% 98%,57% 97%,53% 99%,49% 96%,47% 99%,48% 99%);
    }

    100% {
        -webkit-clip-path: polygon(47% 99%,42% 99%,37% 98%,32% 96%,28% 92%,26% 89%,26% 83%,26% 80%,26% 72%,23% 67%,16% 63%,14% 52%,16% 46%,16% 53%,20% 60%,26% 58%,27% 51%,25% 46%,20% 41%,19% 36%,19% 30%,21% 26%,24% 20%,23% 13%,22% 7%,26% 11%,28% 17%,28% 24%,26% 30%,30% 34%,34% 34%,39% 32%,40% 27%,38% 21%,43% 28%,43% 36%,41% 41%,46% 44%,51% 41%,53% 35%,53% 26%,57% 26%,59% 33%,60% 39%,57% 46%,55% 53%,58% 57%,64% 56%,66% 52%,69% 41%,70% 48%,69% 56%,66% 63%,64% 67%,65% 71%,70% 71%,74% 68%,76% 62%,77% 54%,79% 60%,81% 66%,80% 71%,76% 75%,72% 78%,71% 82%,75% 84%,80% 83%,84% 78%,86% 83%,83% 89%,78% 92%,74% 92%,73% 96%,69% 97%,65% 96%,62% 98%,57% 99%,54% 97%,51% 99%,46% 99%);
        clip-path: polygon(47% 99%,42% 99%,37% 98%,32% 96%,28% 92%,26% 89%,26% 83%,26% 80%,26% 72%,23% 67%,16% 63%,14% 52%,16% 46%,16% 53%,20% 60%,26% 58%,27% 51%,25% 46%,20% 41%,19% 36%,19% 30%,21% 26%,24% 20%,23% 13%,22% 7%,26% 11%,28% 17%,28% 24%,26% 30%,30% 34%,34% 34%,39% 32%,40% 27%,38% 21%,43% 28%,43% 36%,41% 41%,46% 44%,51% 41%,53% 35%,53% 26%,57% 26%,59% 33%,60% 39%,57% 46%,55% 53%,58% 57%,64% 56%,66% 52%,69% 41%,70% 48%,69% 56%,66% 63%,64% 67%,65% 71%,70% 71%,74% 68%,76% 62%,77% 54%,79% 60%,81% 66%,80% 71%,76% 75%,72% 78%,71% 82%,75% 84%,80% 83%,84% 78%,86% 83%,83% 89%,78% 92%,74% 92%,73% 96%,69% 97%,65% 96%,62% 98%,57% 99%,54% 97%,51% 99%,46% 99%);
    }
}

@keyframes burn_alt {
    0% {
        -webkit-clip-path: polygon(48% 97%,43% 97%,38% 97%,34% 94%,33% 91%,32% 87%,29% 83%,26% 80%,21% 75%,20% 71%,20% 66%,20% 59%,20% 65%,24% 68%,28% 67%,28% 62%,25% 60%,21% 52%,21% 43%,24% 32%,23% 39%,24% 46%,28% 48%,33% 44%,33% 39%,31% 32%,28% 23%,30% 14%,31% 22%,35% 28%,39% 28%,41% 25%,40% 21%,39% 13%,41% 6%,42% 15%,45% 23%,49% 25%,52% 22%,51% 13%,54% 21%,56% 29%,53% 35%,50% 41%,53% 46%,58% 46%,60% 39%,60% 34%,64% 39%,65% 45%,63% 51%,61% 56%,64% 61%,68% 59%,71% 55%,73% 48%,73% 40%,76% 48%,77% 56%,76% 62%,74% 66%,69% 71%,71% 74%,75% 74%,79% 71%,81% 65%,82% 72%,81% 77%,77% 82%,73% 86%,73% 89%,78% 89%,82% 85%,81% 91%,78% 95%,72% 97%,65% 98%,59% 98%,53% 99%,47% 97%);
        clip-path: polygon(48% 97%,43% 97%,38% 97%,34% 94%,33% 91%,32% 87%,29% 83%,26% 80%,21% 75%,20% 71%,20% 66%,20% 59%,20% 65%,24% 68%,28% 67%,28% 62%,25% 60%,21% 52%,21% 43%,24% 32%,23% 39%,24% 46%,28% 48%,33% 44%,33% 39%,31% 32%,28% 23%,30% 14%,31% 22%,35% 28%,39% 28%,41% 25%,40% 21%,39% 13%,41% 6%,42% 15%,45% 23%,49% 25%,52% 22%,51% 13%,54% 21%,56% 29%,53% 35%,50% 41%,53% 46%,58% 46%,60% 39%,60% 34%,64% 39%,65% 45%,63% 51%,61% 56%,64% 61%,68% 59%,71% 55%,73% 48%,73% 40%,76% 48%,77% 56%,76% 62%,74% 66%,69% 71%,71% 74%,75% 74%,79% 71%,81% 65%,82% 72%,81% 77%,77% 82%,73% 86%,73% 89%,78% 89%,82% 85%,81% 91%,78% 95%,72% 97%,65% 98%,59% 98%,53% 99%,47% 97%);
    }

    25% {
        -webkit-clip-path: polygon(44% 99%,41% 99%,35% 98%,29% 97%,24% 93%,21% 86%,20% 80%,16% 74%,16% 64%,16% 71%,21% 75%,25% 72%,25% 65%,22% 59%,19% 53%,19% 44%,21% 52%,25% 59%,29% 57%,29% 51%,26% 44%,26% 38%,30% 32%,31% 26%,30% 18%,34% 25%,33% 35%,33% 44%,34% 50%,39% 53%,44% 52%,45% 49%,44% 44%,42% 38%,44% 33%,48% 26%,45% 35%,47% 41%,50% 44%,51% 52%,49% 60%,48% 65%,53% 69%,58% 65%,57% 59%,58% 51%,62% 41%,66% 40%,64% 47%,61% 58%,63% 66%,66% 68%,70% 67%,72% 62%,73% 57%,71% 48%,75% 53%,79% 57%,79% 64%,76% 70%,72% 75%,70% 78%,74% 80%,78% 79%,82% 76%,84% 71%,85% 66%,84% 62%,88% 67%,89% 72%,89% 79%,87% 83%,84% 89%,81% 93%,76% 97%,69% 98%,60% 99%,54% 99%,48% 100%,45% 97%);
        clip-path: polygon(44% 99%,41% 99%,35% 98%,29% 97%,24% 93%,21% 86%,20% 80%,16% 74%,16% 64%,16% 71%,21% 75%,25% 72%,25% 65%,22% 59%,19% 53%,19% 44%,21% 52%,25% 59%,29% 57%,29% 51%,26% 44%,26% 38%,30% 32%,31% 26%,30% 18%,34% 25%,33% 35%,33% 44%,34% 50%,39% 53%,44% 52%,45% 49%,44% 44%,42% 38%,44% 33%,48% 26%,45% 35%,47% 41%,50% 44%,51% 52%,49% 60%,48% 65%,53% 69%,58% 65%,57% 59%,58% 51%,62% 41%,66% 40%,64% 47%,61% 58%,63% 66%,66% 68%,70% 67%,72% 62%,73% 57%,71% 48%,75% 53%,79% 57%,79% 64%,76% 70%,72% 75%,70% 78%,74% 80%,78% 79%,82% 76%,84% 71%,85% 66%,84% 62%,88% 67%,89% 72%,89% 79%,87% 83%,84% 89%,81% 93%,76% 97%,69% 98%,60% 99%,54% 99%,48% 100%,45% 97%);
    }

    50% {
        -webkit-clip-path: polygon(45% 99%,40% 98%,34% 98%,31% 96%,28% 93%,26% 89%,27% 84%,26% 81%,23% 77%,20% 73%,18% 70%,19% 65%,19% 60%,20% 53%,20% 43%,24% 41%,28% 32%,28% 40%,28% 48%,29% 53%,33% 52%,35% 49%,36% 42%,36% 35%,36% 27%,39% 19%,42% 12%,40% 23%,39% 29%,41% 37%,43% 41%,44% 47%,45% 52%,47% 55%,50% 57%,52% 54%,53% 48%,52% 42%,51% 33%,50% 26%,54% 36%,55% 39%,57% 46%,57% 52%,55% 58%,55% 61%,58% 65%,62% 64%,64% 60%,65% 54%,64% 49%,65% 43%,68% 38%,67% 44%,69% 51%,72% 53%,72% 59%,70% 65%,68% 69%,68% 74%,71% 75%,74% 73%,76% 69%,78% 63%,82% 58%,81% 63%,81% 69%,81% 75%,76% 80%,75% 85%,79% 87%,82% 84%,83% 91%,79% 94%,75% 96%,71% 97%,64% 98%,58% 99%,53% 98%,46% 100%);
        clip-path: polygon(45% 99%,40% 98%,34% 98%,31% 96%,28% 93%,26% 89%,27% 84%,26% 81%,23% 77%,20% 73%,18% 70%,19% 65%,19% 60%,20% 53%,20% 43%,24% 41%,28% 32%,28% 40%,28% 48%,29% 53%,33% 52%,35% 49%,36% 42%,36% 35%,36% 27%,39% 19%,42% 12%,40% 23%,39% 29%,41% 37%,43% 41%,44% 47%,45% 52%,47% 55%,50% 57%,52% 54%,53% 48%,52% 42%,51% 33%,50% 26%,54% 36%,55% 39%,57% 46%,57% 52%,55% 58%,55% 61%,58% 65%,62% 64%,64% 60%,65% 54%,64% 49%,65% 43%,68% 38%,67% 44%,69% 51%,72% 53%,72% 59%,70% 65%,68% 69%,68% 74%,71% 75%,74% 73%,76% 69%,78% 63%,82% 58%,81% 63%,81% 69%,81% 75%,76% 80%,75% 85%,79% 87%,82% 84%,83% 91%,79% 94%,75% 96%,71% 97%,64% 98%,58% 99%,53% 98%,46% 100%);
    }

    75% {
        -webkit-clip-path: polygon(45% 99%,41% 99%,35% 98%,30% 98%,25% 94%,22% 89%,21% 84%,23% 77%,23% 70%,19% 63%,23% 66%,27% 71%,28% 76%,32% 78%,35% 72%,32% 67%,28% 64%,24% 58%,24% 49%,27% 42%,30% 34%,31% 24%,29% 13%,33% 18%,38% 25%,38% 36%,37% 44%,41% 48%,45% 48%,48% 45%,48% 39%,46% 33%,48% 27%,52% 20%,50% 29%,51% 38%,53% 44%,54% 52%,56% 57%,61% 57%,64% 55%,65% 48%,63% 39%,63% 32%,66% 37%,69% 44%,70% 52%,68% 59%,66% 64%,67% 69%,73% 72%,76% 71%,77% 66%,76% 58%,76% 51%,80% 57%,82% 62%,82% 68%,80% 73%,77% 78%,74% 82%,75% 87%,78% 87%,81% 84%,84% 79%,86% 74%,88% 78%,87% 83%,84% 89%,82% 92%,78% 97%,74% 97%,69% 97%,66% 98%,61% 98%,57% 97%,53% 99%,49% 96%,47% 99%,48% 99%);
        clip-path: polygon(45% 99%,41% 99%,35% 98%,30% 98%,25% 94%,22% 89%,21% 84%,23% 77%,23% 70%,19% 63%,23% 66%,27% 71%,28% 76%,32% 78%,35% 72%,32% 67%,28% 64%,24% 58%,24% 49%,27% 42%,30% 34%,31% 24%,29% 13%,33% 18%,38% 25%,38% 36%,37% 44%,41% 48%,45% 48%,48% 45%,48% 39%,46% 33%,48% 27%,52% 20%,50% 29%,51% 38%,53% 44%,54% 52%,56% 57%,61% 57%,64% 55%,65% 48%,63% 39%,63% 32%,66% 37%,69% 44%,70% 52%,68% 59%,66% 64%,67% 69%,73% 72%,76% 71%,77% 66%,76% 58%,76% 51%,80% 57%,82% 62%,82% 68%,80% 73%,77% 78%,74% 82%,75% 87%,78% 87%,81% 84%,84% 79%,86% 74%,88% 78%,87% 83%,84% 89%,82% 92%,78% 97%,74% 97%,69% 97%,66% 98%,61% 98%,57% 97%,53% 99%,49% 96%,47% 99%,48% 99%);
    }

    100% {
        -webkit-clip-path: polygon(47% 99%,42% 99%,37% 98%,32% 96%,28% 92%,26% 89%,26% 83%,26% 80%,26% 72%,23% 67%,16% 63%,14% 52%,16% 46%,16% 53%,20% 60%,26% 58%,27% 51%,25% 46%,20% 41%,19% 36%,19% 30%,21% 26%,24% 20%,23% 13%,22% 7%,26% 11%,28% 17%,28% 24%,26% 30%,30% 34%,34% 34%,39% 32%,40% 27%,38% 21%,43% 28%,43% 36%,41% 41%,46% 44%,51% 41%,53% 35%,53% 26%,57% 26%,59% 33%,60% 39%,57% 46%,55% 53%,58% 57%,64% 56%,66% 52%,69% 41%,70% 48%,69% 56%,66% 63%,64% 67%,65% 71%,70% 71%,74% 68%,76% 62%,77% 54%,79% 60%,81% 66%,80% 71%,76% 75%,72% 78%,71% 82%,75% 84%,80% 83%,84% 78%,86% 83%,83% 89%,78% 92%,74% 92%,73% 96%,69% 97%,65% 96%,62% 98%,57% 99%,54% 97%,51% 99%,46% 99%);
        clip-path: polygon(47% 99%,42% 99%,37% 98%,32% 96%,28% 92%,26% 89%,26% 83%,26% 80%,26% 72%,23% 67%,16% 63%,14% 52%,16% 46%,16% 53%,20% 60%,26% 58%,27% 51%,25% 46%,20% 41%,19% 36%,19% 30%,21% 26%,24% 20%,23% 13%,22% 7%,26% 11%,28% 17%,28% 24%,26% 30%,30% 34%,34% 34%,39% 32%,40% 27%,38% 21%,43% 28%,43% 36%,41% 41%,46% 44%,51% 41%,53% 35%,53% 26%,57% 26%,59% 33%,60% 39%,57% 46%,55% 53%,58% 57%,64% 56%,66% 52%,69% 41%,70% 48%,69% 56%,66% 63%,64% 67%,65% 71%,70% 71%,74% 68%,76% 62%,77% 54%,79% 60%,81% 66%,80% 71%,76% 75%,72% 78%,71% 82%,75% 84%,80% 83%,84% 78%,86% 83%,83% 89%,78% 92%,74% 92%,73% 96%,69% 97%,65% 96%,62% 98%,57% 99%,54% 97%,51% 99%,46% 99%);
    }
}

.posts-item.card.ajax-item .item-thumbnail .img-badge.left.jb-red,.posts-item.list.ajax-item.flex .post-graphic .img-badge.left.jb-red {
    font-size: 14px;
    padding: 0 5px;
    background: linear-gradient(to right,#FF5722,#ff9800,#FFC107)!important;
    border-radius: 9px 5px 5px 9px;
    color: #fff;
    padding-right: 10px;
}

.posts-item.card.ajax-item .item-thumbnail .img-badge.left.jb-red:before,.posts-item.list.ajax-item.flex .post-graphic .img-badge.left.jb-red:before {
    -webkit-animation: burn 0.9s linear alternate infinite;
    animation: burn .9s linear alternate infinite;
    right: -43px;
    top: -26px;
    z-index: 2;
    background: linear-gradient(0deg,#ffb305 10%,#FF9800 20%,#E91E63 50%,#e91e1e 99%);
    opacity: 0.7;
    position: absolute;
    content: "";
    transform: rotate(90deg);
    height: 70px;
    width: 35px;
}

.posts-item.card.ajax-item .item-thumbnail .img-badge.left.jb-red:after,.posts-item.list.ajax-item.flex .post-graphic .img-badge.left.jb-red:after {
    z-index: 1;
    opacity: 1;
    -webkit-animation: burn_alt .7s linear alternate infinite;
    animation: burn_alt .7s linear alternate infinite;
    right: -45px;
    top: -32px;
    background: linear-gradient(0deg,#ffb305 10%,#ffbd04 20%,#ed6434 50%,#fa4708 59%);
    position: absolute;
    content: "";
    transform: rotate(90deg);
    height: 80px;
    width: 30px;
}

.navbar-top .navbar-right .sub-menu,.posts-item.card,.zib-widget,.plate-lists .plate-item,.forum-posts,.article,.radius8 {
    -webkit-box-shadow: 0 1px 4px 0 #87CEEB inset;
    -moz-box-shadow: 0 1px 4px 0 #87CEEB inset;
    box-shadow: inset 0 1px 4px 0 #87CEEB;
}

.nav {
    font-weight: 950;
}

.user-ranking-item.relative {
    background: #ffd1d8;
    border-radius: var(--main-radius);
}

.user-ranking-item.relative:nth-child(1) {
    background: #ffd1d8;
}

.user-ranking-item.relative:nth-child(2) {
    background: #ffa50085;
}

.user-ranking-item.relative:nth-child(3) {
    background: #ffff0080;
}

.user-ranking-item.relative:nth-child(4) {
    background: #98ff0073;
}

.user-ranking-item.relative:nth-child(5) {
    background: #c4cffa;
}

.user-ranking-item.relative:nth-child(6) {
    background: #c97eff75;
}

.user-ranking-item.relative:nth-child(7) {
    background: #82eee782;
}

.user-ranking-item.relative:nth-child(8) {
    background: #ff559480;
}

.user-ranking-item.relative:nth-child(9) {
    background: #089e0f7d;
}

.enlighter-default .enlighter {
    max-height: 400px;
    overflow-y: auto !important;
}

.posts-item .item-heading>a {
    font-weight: bold;
    color: unset;
}

.lazyloaded {
    --lazy-animation: lazy_fade;
}

@media (max-width: 640px) {
    .meta-right .meta-view {
        display:unset !important;
    }
}

.footer-miniimg p {
    position: relative;
}

.footer-miniimg p:hover {
    filter: contrast(1.1);
}

.footer-miniimg p:active {
    filter: contrast(0.9);
}

.footer-miniimg p::before,.footer-miniimg p::after {
    content: "";
    border: 2px solid;
    border-image: linear-gradient(45deg,gold,deeppink) 1;
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    animation: clippath 3s infinite;
}

.footer-miniimg p::before {
    animation: clippath 3s infinite -1.5s linear;
}

@keyframes clippath {
    0%,100% {
        clip-path: inset(0 0 96% 0);
        filter: hue-rotate(0deg);
    }

    25% {
        clip-path: inset(0 96% 0 0);
    }

    50% {
        clip-path: inset(96% 0 0 0);
        filter: hue-rotate(360deg);
    }

    75% {
        clip-path: inset(0 0 0 96%);
    }
}

.absolute::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 58%;
    right: 0;
    bottom: 0;
    transform: scale(1.01);
    background: linear-gradient(180deg,rgb(255 255 255 / 0%) 0%,var(--body-bg-color) 100%);
}

.qian {
    color: #fff;
}

@keyframes maskedAnimation {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.card__count-text--big {
    background-image: linear-gradient(30deg,#32c5ff 25%,#b620e0 50%,#f7b500 75%,#20e050 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    animation: maskedAnimation 4s infinite linear;
}

.posts-item .item-heading {
    background-image: linear-gradient(30deg,#32c5ff 25%,#b620e0 50%,#f7b500 75%,#20e050 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    animation: maskedAnimation 4s infinite linear;
}

.ranking-item {
    color: #1100f173;
}

.muted-color {
    color: #ff07de;
}

.muted-3-color {
    color: #0fe352;
}

.muted-2-color {
    color: #2e32b3;
}

.explain {
    color: #d53aa9;
}

.text-center {
    color: #2e32b3;
}

.h4,h4 {
    font-size: 22px;
}

.mr3 {
    font-size: 18px;
}

.jb-yellow,.order-type-3 .pay-tag {
    --this-bg: linear-gradient(135deg,#f59f5475 10%,#ff69224d 100%);
}

.jb-pink,.order-type-2 .pay-tag {
    --this-bg: linear-gradient(135deg,#ff5e7f57 30%,#ff967e7d 100%);
}

.jb-blue,.order-type-7 .pay-tag {
    --this-bg: linear-gradient(135deg,#59c3fb45 10%,#268df74a 100%);
}

.jb-red,.order-type-9 .pay-tag {
    --this-bg: linear-gradient(135deg,#c4fd649e 10%,#fb2d2d66 100%);
}

.vip-card {
    overflow: hidden;
    position: relative;
    border-radius: 6px;
    padding: 15px;
    margin: 5px;
    background: linear-gradient(25deg,#e6aa4f3d 10%,#f1d7ad80 70%,#f5b97b52 100%);
    transition: .3s;
}

.vip-theme2 {
    background: linear-gradient(317deg,#2c294a33,#68688682 30%,#35343e73) rgba(107,106,102,.3);
    color: #e4e2fb;
}

.vip-product .original-price {
    color: #0aed65;
}

.footer {
    color: #f700fb99;
}

.footer a:not(.but):not(.focus-color) {
    color: #1708ff7a;
}

.item-tags a {
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 5px;
}

.item-tags a.meta-pay {
    background-color: #FFD700;
    color: black;
}

.item-tags a.c-blue {
    background-color: #1E90FF;
    color: white;
}

.item-tags a[href*="tag/"] {
    background-color: #FF69B4;
    color: white;
}

#zibpay_modal,.modal-open .modal {
    background: url(https://img.alicdn.com/imgextra/i3/2210123621994/O1CN01sHaYCQ1QbIkXDzSVg_!!2210123621994.png);
    backdrop-filter: blur(10px);
}

.tengfei_search_frame {
    border: 5px solid rgb(255 255 255 / 30%);
    border-radius: 45px;
    padding: 15px;
    font-size: 15px;
}

.tengfei-search-button-red {
    background: #ff1856;
    right: 106%;
    position: absolute;
}

.tengfei-search-button-blue {
    background: #0088ff;
    border: 1px solid #33aaff;
    color: rgb(255,255,255);
    border-radius: 18px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    margin-right: -17px;
}

.payvip-icon {
    color: #ffffff;
    --this-color: #ffffff;
    background: linear-gradient(135deg,#ff7faf91 10%,#43b2ff 100%);
}

.vip-theme1 {
    background: linear-gradient(135deg,#ff7faf91 10%,#43b2ff 100%);
}

.vip-theme2 {
    background: linear-gradient(43deg,#ff6ac3 0%,#465dff 46%,#72e699 100%);
    color: #e4e2fb;
}

.bili-dyn-item__ornament {
    position: sticky;
    top: 18px;
    margin-top: -10px;
    float: right;
}

.bili-dyn-ornament__type--3 {
    height: 44px;
    width: 146px;
}

.bili-dyn-ornament img {
    height: 100%;
    width: 100%;
}

.bili-dyn-ornament__type--3 span {
    font-family: num !important;
    font-size: 12px;
    position: absolute;
    right: 54px;
    top: 15px;
    transform: scale(.88);
    transform-origin: right;
}

@media (max-width: 420px) {
    .bili-dyn-ornament__type--3 {
        width:11rem !important;
    }
}

.chat-next a,.theme-pagination .ajax-next a,.theme-pagination .order-ajax-next a {
    display: inline-block;
    width: 130px;
    border-radius: 0 0 16px 16px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    background: url(https://www.longs.cn/wp-content/plugins/ACG/img/home.55842.png) no-repeat;
    color: #fff;
    transition: all 0.2s ease;
}

.chat-next a:hover,.theme-pagination .ajax-next a:hover,.theme-pagination .order-ajax-next a:hover {
    opacity: 0.85;
    transform: translateY(1px);
}

.article-tags {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.article-tags a {
    padding: 4px 10px;
    color: #ffffff;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    border-radius: 2px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tags a:nth-child(5n+1) {
    background-color: #ff5e5c;
}

.article-tags a:nth-child(5n+2) {
    background-color: #ffbb50;
}

.article-tags a:nth-child(5n+3) {
    background-color: #1ac756;
}

.article-tags a:nth-child(5n+4) {
    background-color: #19B5FE;
}

.article-tags a:nth-child(5n) {
    background-color: #4A4A4A;
}

.article-tags a:hover {
    background-color: #1B1B1B;
    transform: translateY(-2px);
}

.notyf.success {
    background: linear-gradient(90deg,rgba(255,179,236,0.85),rgba(255,154,222,0.85),rgba(227,144,249,0.85));
    border-radius: 18px 0 0 18px;
}

.enlighter-default .enlighter {
    max-height: 400px;
    overflow-y: auto !important;
}

.posts-item .item-heading > a {
    font-weight: bold;
    color: unset;
}

@media (max-width: 640px) {
    .meta-right .meta-like {
        display:unset !important;
    }
}

.pagenav .current,.pagenav .page-numbers,.pagenav a {
    border: 0;
    padding: 8px 14px;
    background: linear-gradient(148deg,hsla(0,0%,100%,0),var(--main-bg-color));
    -webkit-box-shadow: 0 0 8px 0 rgba(95,95,95,.15);
    box-shadow: 0 0 8px 0 rgba(95,95,95,.15);
    border-radius: 6px;
}

#post-details p a:not([class]),.wp-block-list a:not([class]) {
    color: var(--focus-color);
    line-height: 1.15em;
    padding: .1em .35em;
    font-size: max(.75rem,.75em);
    border-radius: 2em;
    background: var(--focus-color-opacity1) linear-gradient(var(--focus-shadow-color) 0 0) no-repeat 100% 100%/0 100% border-box;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    transition: .7s cubic-bezier(.6,.1,0,1),background-position 0s;
    word-break: break-all;
    display: inline-flex;
    align-items: center;
    transform: translateY(-1.15px)
}

#post-details p a:not([class]):hover,.wp-block-list a:not([class]):hover {
    color: #fff;
    background-position-x: 0;
    background-size: 100% 100%
}

#post-details p a:not([class]):before,.wp-block-list a:not([class]):before {
    content: "\e038";
    font-family: HulikuIcon!important;
    height: 1.15em;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    aspect-ratio: 1;
    margin: 0 0 0 -.3em;
    background: var(--focus-shadow-color);
    border-radius: 50%;
    color: #fff;
    transition: inherit
}

#post-details p a:not([class]):hover:before,.wp-block-list a:not([class]):hover:before {
    background: #fff;
    color: var(--focus-color);
    rotate: 45deg;
    scale: .9
}
.user-ranking-item.relative {
    background: #ffd1d8;
    border-radius: var(--main-radius);
}

.user-ranking-item.relative:nth-child(1) {
    background: #ffd1d8;
}

.user-ranking-item.relative:nth-child(2) {
    background: #ffa50085;
}

.user-ranking-item.relative:nth-child(3) {
    background: #ffff0080;
}

.user-ranking-item.relative:nth-child(4) {
    background: #98ff0073;
}

.user-ranking-item.relative:nth-child(5) {
    background: #c4cffa;
}

.user-ranking-item.relative:nth-child(6) {
    background: #c97eff75;
}

.user-ranking-item.relative:nth-child(7) {
    background: #82eee782;
}

.user-ranking-item.relative:nth-child(8) {
    background: #ff559480;
}

.user-ranking-item.relative:nth-child(9) {
    background: #089e0f7d;
}

.enlighter-default .enlighter {
    max-height: 400px;
    overflow-y: auto !important;
}

.posts-item .item-heading > a {
    font-weight: bold;
    color: unset;
}

.lazyloaded {
    --lazy-animation: lazy_fade;
}

@media (max-width: 640px) {
    .meta-right .meta-view {
        display:unset !important;
    }
}
#nr{   font-size:15px; margin: 0;background: -webkit-linear-gradient(left,#ffffff,#ff0000 6.25%,#ff7d00 12.5%,#ffff00 18.75%,#00ff00 25%,#00ffff 31.25%,#0000ff 37.5%,#ff00ff 43.75%,#ffff00 50%,#ff0000 56.25%,#ff7d00 62.5%,#ffff00 68.75%,#00ff00 75%,#00ffff 81.25%,#0000ff 87.5%,#ff00ff 93.75%,#ffff00 100%);-webkit-background-clip: text;-webkit-text-fill-color: transparent;background-size: 200% 100%;animation: masked-animation 2s infinite linear;}@keyframes masked-animation {0% {background-position: 0 0;}100% {background-position: -100%, 0;}}


            .github-badge {
                display: inline-block;
                border-radius: 4px;
                text-shadow: none;
                font-size: 12px;
                color: #fff;
                /* line-height: 15px; */
                background-color: #abbac3;
                margin-bottom: 5px;
            }
            .github-badge .badge-subject {
                display: inline-block;
                background-color: #f6b044;
                padding: 4px 4px 4px 6px;
                border-top-left-radius: 4px;
                border-bottom-left-radius: 4px;
            }
            .github-badge .bg-red {
                background-color: #f55066;
            }
            .github-badge .badge-value {
                display: inline-block;
                padding: 4px 6px 4px 4px;
                border-top-right-radius: 4px;
                border-bottom-right-radius: 4px;
            }
            .github-badge .bg-green {
                background-color: #e76dcb;
            }
            .github-badge .bg-orange {
                background-color: #05b1a4;
            }
            .github-badge .bg-blue {
                background-image: -webkit-linear-gradient(0deg, #3ca5f6 0%, #a86af9 100%);
            }
            
            #postcomments .commentlist .comment {
    border-top: 1px solid var(--main-border-color)
border-top: 1px solid rgb(50 50 50 / 0%);
    border-radius: 15px;
    margin: 0px;
    border: 1px solid;
    position: relative;
    display: flow-root;
    background-image: url(https://img.alicdn.com/imgextra/i1/2210123621994/O1CN01LFyvtv1QbIhfnZWvp_!!2210123621994.png);
    padding: 0px 10px 0px;
    border-color: #71baff80;
    background-color: var(--acg-color2);
}


.moe-copyright {
  position: relative;
  border: 3px dashed #f7c8e1;
  background: #fff9fc;
  padding: 18px;
  border-radius: 20px;
  line-height: 1.8em;
  box-sizing: border-box;
  max-width: 100%;
  margin: 20px 0;
  box-shadow: 0 0 14px rgba(247, 200, 225, 0.25);
  transition: all 0.4s ease;

  /* 二次元圆润字体 */
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
}
.moe-copyright:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(245, 165, 209, 0.35);
}

.moe-copyright .inner {
  border: 1px dashed #f5a5d1;
  padding: 20px;
  border-radius: 14px;
  font-size: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.65);
}

.moe-copyright p {
  margin: 0 0 10px;
  color: #8a5a7b;
}

.moe-copyright hr {
  border: none;
  border-top: 1px dashed #f7c8e1;
  margin: 14px 12%;
  opacity: 0.6;
}

.moe-copyright .hl-pink { color: #f77fb9; }
.moe-copyright .hl-blue { color: #87b9f7; }
.moe-copyright .hl-orange { color: #f9c394; }

/* 四角星芒 ✧ */
.moe-copyright::before,
.moe-copyright::after,
.moe-copyright .inner::before,
.moe-copyright .inner::after {
  content: "✧";
  position: absolute;
  font-size: 14px;
  color: #f77fb9;
  opacity: 0.7;
}
.moe-copyright::before { top: 10px; left: 14px; }
.moe-copyright::after { top: 10px; right: 14px; }
.moe-copyright .inner::before { bottom: 10px; left: 14px; }
.moe-copyright .inner::after { bottom: 10px; right: 14px; }


@media screen and (min-width: 850px) {
    .simi::before {
        content: '';
        position: absolute;
        width: 70px;
        top: -30px;
        height: 35px;
        background: url(https://obs.longs.cn/img/2025/11/20251105133007841.png) no-repeat center / 100%;
    }
}


.single-gg,.single-gg-left{display:flex;align-items:center}
.single-gg{height:50px}
.single-gg-left{flex:1;padding:10px;background-color:#FE7573;border-radius:8px 0 0 8px}
.single-gg-img{height:30px;width:30px}
.single-gg-img img{height:100%;width:100%}
.single-gg-desc{margin-left:10px;color:#fff;font-size:16px;font-weight:600;letter-spacing: 1px;}
.single-gg-right{position:relative;display:flex;height:100%;width:100px;justify-content:center;align-items:center;background-color:#FE7573;border-radius:0 4px 4px 0;border-left:1px dashed #fff}
.single-gg-right::after,.single-gg-right::before{content:'';position:absolute;width:10px;height:5px;left:-5px;background-color:#fff}
.single-gg-right::before{top:0;border-radius:0 0 5px 5px}
.single-gg-right::after{bottom:0;border-radius:5px 5px 0 0}
.single-gg-btn{display:block;padding:2px 5px;font-size: 12px;background-color:#fff;color:#FE7573 !important;border-radius:4px}



body {
    background-image: url("https://cos.longs.cn/You/2024/08/20240817125636915.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
}