body {
  --mian-max-width: 1200px;
  --posts-card-scale: 70%;
  --posts-list-scale: 70%;
  --single-cover-scale: 35%;
  --theme-color: #ff1856;
  --focus-shadow-color: rgba(0, 162, 227, .4);
  --focus-color-opacity1: rgba(0, 162, 227, .1);
  --focus-color: var(--theme-color);
  --focus-shadow-color: rgba(253, 83, 161, 0.4);
  --key-color: #333;
  --main-color: #4e5358;
  --main-shadow: rgba(116, 116, 116, 0.08);
  --muted-color: #777;
  --muted-2-color: #999;
  --muted-3-color: #b1b1b1;
  --body-bg-color: #f5f6f7;
  --main-bg-color: #fff;
  --muted-bg-color: #eee;
  --main-border-color: rgba(50, 50, 50, 0.06);
  --muted-border-color: rgba(0, 0, 0, 0.03);
  --main-radius: 15px;
  --blur-bg: rgba(255, 255, 255, 0.8);
  --float-btn-bg: rgba(200, 200, 200, 0.4);
  --header-bg: var(--blur-bg);
  --header-color: var(--main-color);
  --footer-bg: var(--main-bg-color);
  --footer-color: var(--muted-2-color);
}

.dark-theme {
  --key-color: #f8fafc;
  --main-color: #e5eef7;
  --main-shadow: rgba(24, 24, 24, 0.1);
  --muted-color: #b4b6bb;
  --muted-2-color: #888a8f;
  --muted-3-color: #636469;
  --body-bg-color: #292a2d;
  --main-bg-color: #323335;
  --muted-bg-color: #2d2e31;
  --main-border-color: rgba(114, 114, 114, 0.1);
  --muted-border-color: rgba(184, 184, 184, 0.02);
  --blur-bg: rgba(50, 51, 53, 0.8);
  --float-btn-bg: rgba(70, 70, 70, 0.4);
  --header-bg: var(--blur-bg);
  --header-color: var(--main-color);
  --footer-bg: var(--main-bg-color);
  --footer-color: var(--muted-2-color);
}

@supports not ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
  body {
    --blur-bg: #ffffff;
  }

  body.dark-theme {
    --blur-bg: #37383a;
  }
}

.item-thumbnail img,
.hover-zoom-img:hover img,
.hover-zoom:hover,
.social_loginbar .social-login-item:hover,
.social_loginbar .xh-social-item:hover {
  transform: scale(1.05);
}

.hover-zoom-img-sm:hover img,
.hover-zoom-sm:hover,
.posts-item.mult-thumb .thumb-items>span>img:hover,
.posts-item:hover .item-thumbnail img,

.tab-nav-theme li:before {
  width: 20px;
  height: 2px;
  bottom: 5px;
  opacity: 0;
}

.tab-nav-theme li.active::before,
.tab-nav-theme li.swiper-slide-thumb-active::before {
  opacity: 1;
}

.tab-nav-theme li.active a {
  color: var(--focus-color);
}

.tab-nav-theme.mini-scrollbar>li,
.tab-nav-theme.swiper-wrapper>li {
  padding-left: 5px;
  margin: 0;
  padding-right: 5px;
  line-height: 1.4;
}

.tab-nav-but.list-inline {
  margin: 0 -3px 10px -3px;
}

.tab-nav-but li {
  padding: 0 3px;
}

.tab-nav-but li.active .but {
  --this-bg: var(--focus-color);
  --this-color: #fff;
}

.splitters-this-l,
.splitters-this-r,
.splitters>li+li {
  position: relative;
}

.splitters-this-l,
.splitters-this-r:before,
.splitters>li+li:before {
  content: "";
  width: 1px;
  height: 1.1em;
  position: absolute;
  display: inline-block;
  background: var(--main-color);
  left: -1px;
  top: 50%;
  opacity: 0.2 !important;
  transform: translateY(-50%);
}

.splitters-this-r:before {
  left: auto;
  right: 0;
}

.horizontal-line {
  width: 100%;
  display: inline-block;
  height: 1px;
  background: var(--main-border-color);
  transform: translateY(1.25em);
}

.loading,
.notyf.load::before,
.swiper-lazy-preloader {
  content: "";
  width: 0.7em;
  height: 0.7em;
  display: inline-block;
  border: 0.1em solid transparent;
  border-radius: 50%;
  border-top-color: var(--this-color);
  border-bottom-color: var(--this-color);
  -webkit-animation: huan-rotate 1s cubic-bezier(0.7, 0.1, 0.31, 0.9) infinite;
  animation: huan-rotate 1s cubic-bezier(0.7, 0.1, 0.31, 0.9) infinite;
}

.loading-spot {
  height: 1em;
  --this-bg: var(--muted-2-color);
}

.loading-spot.zts {
  height: 1em;
  --this-bg: var(--focus-color);
}

.loading-spot::after,
.loading-spot::before,
.loading-spot>* {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-radius: 5px;
  margin: 1.5px;
  -webkit-animation: ball-pulse-sync 0.8s infinite ease-in-out;
  animation: ball-pulse-sync 0.8s infinite ease-in-out;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  border: 2px solid;
}

.loading-spot>* {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.loading-spot::after {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes ball-pulse-sync {
  33% {
    transform: translateY(4px);
  }

  66% {
    transform: translateY(-4px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes ball-pulse-sync {
  33% {
    transform: translateY(4px);
  }

  66% {
    transform: translateY(-4px);
  }

  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes huan-rotate {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes huan-rotate {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.swiper-lazy-preloader {
  font-size: 50px;
  position: absolute;
  --this-color: #fff;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.loading.zts {
  --this-color: var(--theme-color);
}

.badg.cir,
.but.cir,
.circular {
  padding: 0;
  border-radius: 5em;
  --this-size: 1.8em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: var(--this-size);
  min-width: var(--this-size);
}

.badg.cir.radius4,
.but.cir.radius4,
.circular.radius4 {
  border-radius: 4px;
}

.but.cir svg.icon,
.but.cir>.fa {
  margin: 0;
}

.but-group>.but {
  border-radius: 0;
  margin: 0;
}

.but-group>.but:last-of-type {
  border-radius: 0 4px 4px 0;
}

.but-group>.but:first-of-type {
  border-radius: 4px 0 0 4px;
}

.but-average {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

.but-average.inline {
  display: inline-flex;
}

.but-average.radius {
  border-radius: 100px;
}

.but-average>.but {
  margin: 0 !important;
  border-radius: 0;
  width: 100%;
}

.but-average>.but.active {
  --this-bg: var(--focus-color-opacity1);
  --this-color: var(--focus-color);
}

.badg.badg-sm,
.but.badg-sm {
  font-size: 0.8em;
  padding: 0 0.2em;
  vertical-align: 0.1em;
  min-width: 1.6em;
}

.but.but-sm {
  font-size: 0.9em;
  padding: 0.1em 0.4em;
  vertical-align: 0.05em;
}

.active.badg,
.active>.badg:not(.vip-tag) {
  --this-bg: var(--focus-color);
  --this-color: #fff;
}

.padding-6 {
  padding: 6px;
}

.padding-h6 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.padding-w6 {
  padding-left: 6px;
  padding-right: 6px;
}

.padding-10 {
  padding: 10px;
}

.padding-h10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.padding-w10 {
  padding-left: 10px;
  padding-right: 10px;
}

.p-b6 {
  padding-bottom: 6px;
}

.badg.badg-lg,
.but.padding-lg,
.padding-lg {
  padding: 0.5em 2em;
}

.toggle-radius {
  background: var(--this-bg);
  width: 29px;
  height: 29px;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  position: relative;
  vertical-align: text-top;
  --this-bg: var(--main-border-color);
}

.toggle-radius .fa,
.toggle-radius .icon {
  right: 0 !important;
  left: 0 !important;
  margin: auto;
}

.b-blue,
.b-blue-2,
.b-cyan,
.b-gray,
.b-green,
.b-purple,
.b-red,
.b-theme,
.b-yellow,
.jb-blue,
.jb-cyan,
.jb-green,
.jb-pink,
.jb-purple,
.jb-red,
.jb-vip1,
.jb-vip2,
.jb-yellow {
  color: var(--this-color);
  background: var(--this-bg);
  --this-color: #fff;
}

.jb-blue,
.jb-cyan,
.jb-green,
.jb-pink,
.jb-purple,
.jb-red,
.jb-vip1,
.jb-vip2,
.jb-yellow {
  border: none;
}

.b-theme {
  --this-bg: var(--focus-color);
}

.b-gray {
  --this-bg: #818b95;
}

.b-red {
  --this-bg: #ff5473;
}

.b-yellow {
  --this-bg: #ff6f06;
}

.b-cyan {
  --this-bg: #08c4c1;
}

.b-blue {
  --this-bg: #2997f7;
}

.b-blue-2 {
  --this-bg: #5c7cff;
}

.b-green {
  --this-bg: #12b928;
}

.b-purple {
  --this-bg: #d448f5;
}

.c-blue,
.c-blue-2,
.c-cyan,
.c-gray,
.c-green,
.c-green-2,
.c-purple,
.c-purple-2,
.c-red,
.c-red-2,
.c-theme,
.c-white,
.c-yellow,
.c-yellow-2 {
  color: var(--this-color);
}

.c-theme {
  --this-color: var(--focus-color);
  --this-bg: var(--focus-color-opacity1);
}

.c-gray {
  --this-color: #888;
  --this-bg: rgba(136, 136, 136, 0.1);
}

.c-white {
  --this-color: #fff;
  --this-bg: rgba(255, 255, 255, 0.1);
}

.c-red {
  --this-color: #ff5473;
  --this-bg: rgba(255, 84, 115, 0.1);
}

.c-red-2 {
  --this-color: #d6064c;
  --this-bg: rgba(194, 41, 46, 0.1);
}

.c-yellow {
  --this-color: #ff6f06;
  --this-bg: rgba(255, 111, 6, 0.1);
}

.c-yellow-2 {
  --this-color: #c58516;
  --this-bg: rgba(179, 103, 8, 0.1);
}

.c-blue {
  --this-color: #2997f7;
  --this-bg: rgba(41, 151, 247, 0.1);
}

.c-blue-2 {
  --this-color: #5c7cff;
  --this-bg: rgba(77, 130, 249, 0.1);
}

.c-cyan {
  --this-color: #04b9b6;
  --this-bg: rgba(8, 196, 193, 0.1);
}

.c-green {
  --this-color: #18a52a;
  --this-bg: rgba(18, 185, 40, 0.1);
}

.c-green-2 {
  --this-color: #6a933e;
  --this-bg: rgba(72, 135, 24, 0.1);
}

.c-purple {
  --this-color: #e434e1;
  --this-bg: rgba(213, 72, 245, 0.1);
}

.c-purple-2 {
  --this-color: #8e4aff;
  --this-bg: rgba(154, 72, 245, 0.1);
}

.pay-tag,
.vip-tag:not(.badg) {
  --this-color: #fff;
  --this-bg: linear-gradient(135deg, #ff74cd 10%, #ec7d0b 100%);
}

.pay-tag.badg-sm {
  border: 0;
  padding: 1px 4px;
}

.jb-red,
.order-type-9 .pay-tag {
  --this-bg: linear-gradient(135deg, #fd7a64 10%, #fb2d2d 100%);
}

.jb-pink,
.order-type-2 .pay-tag {
  --this-bg: linear-gradient(135deg, #ff5e7f 30%, #ff967e 100%);
}

.jb-yellow,
.order-type-3 .pay-tag {
  --this-bg: linear-gradient(135deg, #f59f54 10%, #ff6922 100%);
}

.jb-blue,
.order-type-7 .pay-tag {
  --this-bg: linear-gradient(135deg, #59c3fb 10%, #268df7 100%);
}

.jb-cyan {
  --this-bg: linear-gradient(140deg, #039ab3 10%, #58dbcf 90%) !important;
}

.jb-green,
.order-type-5 .pay-tag {
  --this-bg: linear-gradient(135deg, #60e464 10%, #5cb85b 100%);
}

.jb-purple,
.order-type-6 .pay-tag {
  --this-bg: linear-gradient(135deg, #f98dfb 10%, #ea00f9 100%);
}

.jb-vip1,
.order-type-4 .pay-tag {
  --this-bg: linear-gradient(25deg, #eabe7b 10%, #f5e3c7 70%, #edc788 100%);
  --this-color: #866127;
}

.jb-vip2,
.order-type-8 .pay-tag {
  --this-bg: linear-gradient(317deg, #4d4c4c 30%, #7b7b7b 70%, #5f5c5c 100%);
  --this-color: #ddd;
}

.colorful-bg,
.modal-colorful-header {
  background-size: 120%;
  overflow: hidden;
  position: relative;
  color: var(--this-color);
  background: var(--this-bg);
}

.colorful-bg>.colorful-make,
.colorful-bg>.colorful-make::after,
.colorful-bg>.colorful-make::before {
  position: absolute;
  color: var(--this-color);
  background: var(--this-bg);
  border-radius: 100%;
  content: " ";
}

.colorful-bg>.colorful-make {
  bottom: 0;
  height: 290px;
  width: 323px;
  top: 60%;
}

.colorful-bg>.colorful-make::before {
  right: -558px;
  bottom: 0;
  height: 300px;
  width: 677px;
  top: -325px;
  transform: rotate(341deg);
  opacity: 0.6;
}

.colorful-bg>.colorful-make::after {
  left: -262px;
  bottom: 0;
  height: 214px;
  width: 402px;
  top: -170px;
  transform: rotate(326deg);
  opacity: 0.4;
}

.colorful-bg>.colorful-make+* {
  position: relative;
}

.modal-colorful-header {
  border-radius: var(--main-radius) var(--main-radius) 0 0;
  background-size: 120%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-colorful-header+* {
  margin-top: 120px;
}

.modal-colorful-header>.close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: var(--this-color);
  opacity: 0.6;
  font-size: 18px;
  z-index: 9;
}

.change-show,
.enlighter-origin,
.enlighter-raw,
.hide {
  display: none;
}

.fixed-body {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  background: rgba(24, 25, 27, 0.8);
  opacity: 0;
  transition: 0.3s;
}

.popover {
  background: var(--main-bg-color);
  box-shadow: 0 0 10px 5px var(--main-shadow);
  padding: 0;
}

.popover-title {
  background: var(--muted-border-color);
  border: 0 !important;
}

.popover.top>.arrow:after {
  border-top-color: var(--main-bg-color) !important;
}

.popover.right>.arrow::after {
  border-right-color: var(--main-bg-color) !important;
}

.popover.bottom>.arrow::after {
  border-bottom-color: var(--main-bg-color) !important;
}

.popover.left>.arrow::after {
  border-left-color: var(--main-bg-color) !important;
}

.affix {
  position: fixed;
}

.sidebar-affix,
.sidebar-affix~* {
  transition: opacity 0.3s;
}

.sidebar-affix.affix-bottom~*,
.sidebar-affix.affix~* {
  opacity: 0;
}

.sidebar-affix.affix,
.sidebar-affix.affix-top {
  position: fixed;
}

.sidebar-affix.affix-top {
  opacity: 0;
  z-index: -999;
}

.sidebar-affix.affix-bottom {
  position: absolute;
}

.scroll-x,
.scroll-y {
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-x: auto;
}

.scroll-x {
  white-space: nowrap;
}

.scroll-y {
  overflow-x: hidden;
  overflow-y: auto;
}

.enlighter,
.mini-scrollbar,
.no-scrollbar {
  /* -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: thin; */
  scrollbar-width: none;
}

.enlighter::-webkit-scrollbar,
.mini-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.mini-scrollbar::-webkit-scrollbar-track {
  border-radius: 10px;
}

.mini-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0);
}

.mini-scrollbar:hover::-webkit-scrollbar-thumb {
  background: rgba(146, 146, 146, 0.3);
}

.mini-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(145, 145, 145, 0.7);
}

.mini-scrollbar::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(146, 146, 146, 0.1);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
}

.scroll-x-next,
.scroll-x-prev {
  position: absolute;
  top: 50%;
  width: 1.6em;
  height: 1.6em;
  margin-top: -0.8em;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.2s;
  opacity: 1;
  justify-content: center;
  background: var(--main-bg-color);
  border-radius: 40px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.scroll-x-next {
  right: 0;
}

.scroll-x-next:hover,
.scroll-x-prev:hover {
  opacity: 1;
  color: var(--focus-color);
}

.scroll-x-next::after,
.scroll-x-prev::after {
  font: normal normal normal 12px/1 FontAwesome;
}

.scroll-x-next::after {
  content: "\f054";
}

.scroll-x-prev::after {
  content: "\f053";
}

.form-control {
  border-color: transparent;
  background: var(--body-bg-color);
  color: var(--main-color);
  box-shadow: none;
  transition: border-color ease-in-out 0.15s, background ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s, opacity ease-in-out 0.3s;
}

select.form-control {
  -webkit-appearance: none;
  cursor: pointer;
}

.form-control:focus {
  border-color: var(--focus-color);
  box-shadow: 0 0 2px 3px var(--focus-shadow-color);
}

.form-control:hover {
  border-color: var(--focus-color);
  opacity: 0.8;
}

.form-control[disabled] {
  background: var(--body-bg-color);
  opacity: 0.5;
}

.form-right-icon .form-control {
  padding-right: 2em;
}

.screen-reader-text {
  display: none;
}

.form-right-icon,
.form-select {
  position: relative;
}

.form-select::before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f107";
  opacity: 0.5;
}

.form-but-radio input {
  display: none;
}

.form-but-radio label {
  cursor: pointer;
}

.form-but-radio input:checked+.but-radio {
  --this-bg: var(--focus-color);
  --this-color: #fff;
}

.form-switch {
  border-radius: 100px;
  width: 46px;
  height: 26px;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: rgba(189, 189, 189, 0.4);
}

.form-switch::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 100px;
  top: 2px;
  left: 2px;
  position: absolute;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.form-switch:active::after {
  width: 30px;
}

input:checked~.form-switch:active::after {
  width: 30px;
  left: 14px;
}

input:checked~.form-switch {
  background: #4fb845;
}

input:checked~.form-switch::after {
  left: 22px;
}

input+.limit-warning {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: #ff5473;
  color: #fff;
  line-height: 1;
  margin: 6px 0;
  position: absolute;
  bottom: -101%;
  font-size: 12px;
}

input+.limit-warning::before {
  content: "\f05a";
  font: normal normal normal 12px/1 FontAwesome;
  text-rendering: auto;
  margin-right: 5px;
}

input+.limit-warning::after {
  content: " ";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff5473;
  position: absolute;
  top: -3px;
  transform: rotate(45deg);
  left: 9px;
  border-radius: 2px 0 10px 0;
}

input+.limit-warning.top {
  bottom: auto;
  top: -101%;
}

input+.limit-warning.top::after {
  top: auto;
  bottom: -3px;
  transform: rotate(225deg);
}

.dropdown-menu {
  border-color: transparent;
  background: var(--main-bg-color);
  --this-color: var(--main-color);
  color: var(--this-color);
  box-shadow: 0 0 10px 8px var(--main-shadow);
  min-width: 100px;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.3s;
  display: block;
  margin-top: 6px;
  visibility: hidden;
  list-style: none !important;
  z-index: 992;
}

.dropdown-menu.column-2 {
  width: 269px;
}

.dropdown-menu.column-2>li {
  display: inline-block;
  width: 50%;
}

.dropdown-menu.fluid {
  right: 0;
}

.dropup {
  position: relative;
}

.drop-select {
  transition: box-shadow 0.2s;
}

.drop-select.open .dropdown-menu {
  box-shadow: 0 0 100px 8000px rgba(0, 0, 0, 0.1);
}

.dropup .dropdown-menu {
  bottom: 100%;
  margin-bottom: 6px;
  transform: translateY(-6px);
}

.focus-show:focus~.dropdown-menu,
.open>.dropdown-menu {
  visibility: unset;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu>li>a {
  color: var(--this-color);
  padding: 6px 20px;
  text-shadow: none;
}

.dropdown-menu>li>a>.fa,
.dropdown-menu>li>a>svg {
  width: 1.28571429em;
  text-align: center;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
  color: var(--focus-color);
  background: var(--muted-border-color);
}

.dropdown-menu>.active>a:hover {
  opacity: 0.7;
}

.dropdown-menu .divider {
  background-color: var(--muted-border-color);
}

.dropdown-smilie {
  width: 260px;
  height: 300px;
  padding: 8px 10px;
  white-space: inherit;
  text-align: center;
}

.dropdown-smilie .smilie-icon {
  display: inline-block;
  padding: 3px;
  width: 38px !important;
}

.dropdown-code,
.dropdown-image {
  width: 250px;
  padding: 8px 10px;
}

span.dropdown,
span.dropup {
  display: inline-block;
}

.dropdown-menu.right {
  right: 0;
  left: auto;
}

.dropdown-menu.right::before {
  left: auto;
  right: 12px;
}

.navbar-form {
  box-shadow: none;
}

.list-inline {
  margin-left: 0;
}

.list-inline>li {
  vertical-align: middle;
}

.list-group-item:first-child {
  border-top-left-radius: var(--main-radius);
  border-top-right-radius: var(--main-radius);
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: var(--main-radius);
  border-bottom-left-radius: var(--main-radius);
}

.list-group-item {
  background-color: var(--main-bg-color);
  border-color: var(--muted-border-color);
  color: var(--main-color);
}

a.list-group-item {
  color: var(--main-color);
}

a.list-group-item:focus,
a.list-group-item:hover {
  background-color: var(--body-bg-color);
  border-color: var(--main-border-color);
  color: var(--focus-color);
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
  background-color: transparent;
  border-color: transparent;
}

.modal {
  justify-content: center;
  align-items: center;
  padding-right: 0 !important;
}

.modal-title {
  font-size: 16px;
}

.modal-content {
  border-radius: var(--main-radius);
  background: var(--main-bg-color);
  border: none;
}

.modal-footer,
.modal-header {
  border-color: var(--main-border-color);
}

.modal.fade .modal-dialog {
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.32, 0.85, 0.45, 1.18), width 0.3s;
}

.modal.in .modal-dialog {
  transform: scale(1);
}

.modal.in+*+*+.modal,
.modal.in+*+.modal {
  background: 0 0;
  transition: 0.3s;
}

.modal.in+*+*+.modal.in,
.modal.in+*+.modal.in {
  background: rgba(0, 0, 0, 0.4);
}

.modal-backdrop~.modal-backdrop,
.modal.in+*+*+.modal.in+.modal-backdrop,
.modal.in+*+.modal.in+.modal-backdrop {
  opacity: 0 !important;
}

.modal-dialog .loading-mask {
  z-index: 99;
}

.modal-dialog.modal-sm,
.modal-mini {
  width: 300px;
  max-width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
}

.modal-mini {
  width: 400px;
}

.modal-buts .but,
.modal-footer .but {
  padding: 0.3em 1em;
}

.modal-buts .but+.but,
.modal-dialog .pull-right .but,
.modal-footer .but+.but {
  margin-left: 0.5em;
  margin-right: unset;
}

.modal.flex .modal-dialog {
  max-width: calc(100% - 20px);
  margin: 0;
}

.modal.flex .modal-content {
  max-height: calc(100vh - 20px);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal.bottom.flex {
  align-items: flex-end;
  overflow: hidden;
  height: 100%;
  opacity: 1;
}

.modal.bottom .modal-dialog {
  transform: translateY(125%);
  transition: 0.4s;
  margin-bottom: 10px;
  margin-bottom: calc(10px + constant(safe-area-inset-bottom));
  margin-bottom: calc(10px + env(safe-area-inset-bottom));
}

.modal.bottom .modal-dialog .modal-content {
  box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.15);
}

.modal.bottom.in .modal-dialog {
  transform: translateY(0);
  transition: 0.8s cubic-bezier(0.28, 0.9, 0.34, 0.99);
}

.modal .touch-close {
  position: absolute;
  top: -24px;
  width: 100%;
}

.modal .touch-close::before {
  content: " ";
  width: 40px;
  height: 4px;
  display: block;
  background: var(--muted-3-color);
  border-radius: 10px;
  margin: 15px auto;
  opacity: 0.8;
}

.modal-buts.but-average {
  border-top: 1px solid var(--main-border-color);
  border-radius: 0 0 var(--main-radius) var(--main-radius);
}

.modal-buts.but-average>.but {
  background: 0 0;
  padding: 0.8em;
}

.modal-buts.but-average>.but+.but {
  border-left: 1px solid var(--main-border-color);
}

.modal-buts.but-average>.but:hover {
  background: var(--this-bg);
}

.modal-body .modal-buts.but-average {
  margin: 0 -15px -15px;
}

.modal-body .modal-buts.but-average .miniupload-ing * {
  --this-color: var(--key-color);
}

.modal-body .modal-buts.but-average .progress-bar {
  opacity: 0.5;
}

.gutters-5 {
  margin: -5px;
}

.gutters-5>* {
  padding: 5px;
}

.gutters-7 {
  margin: -7px;
}

.gutters-7>* {
  padding: 5px;
}

.gutters-10 {
  margin: -10px;
}

.gutters-10>* {
  padding: 10px;
}

.mi-col-2 {
  width: 50%;
}

.mi-col-2.mr6 {
  width: calc(50% - 6px);
}

.flex {
  display: flex;
}

.inflex {
  display: inline-flex;
}

.flex.hh {
  flex-wrap: wrap;
}

.flex.xx,
.inflex.xx {
  flex-direction: column;
}

.flex.ac,
.inflex.ac {
  align-items: center;
}

.flex.ab,
.inflex.ab {
  align-items: flex-end;
}

.flex.at,
.inflex.at {
  align-items: flex-start;
}

.flex.jc,
.inflex.jc {
  align-items: center;
  justify-content: center;
}

.flex.jsb,
.inflex.jsb {
  justify-content: space-between;
}

.flex.jse {
  justify-content: space-evenly;
}

.flex.jsa {
  justify-content: space-around;
}

.flex .grow1 {
  flex-grow: 1;
}

.flex .shrink0 {
  flex-shrink: 0;
}

.flex .flex0 {
  flex: none;
}

.flex .flex1 {
  flex: 1;
  overflow: hidden;
}

.flex .flex-auto {
  flex: auto;
}

.order0 {
  order: 0;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.mr3 {
  margin-right: 3px;
}

.mr6 {
  margin-right: 6px;
}

.mr10 {
  margin-right: 10px;
}

.mrn10 {
  margin-right: -10px;
}

.mr20 {
  margin-right: 20px;
}

.ml3 {
  margin-left: 3px;
}

.mln3 {
  margin-left: -3px;
}

.ml6 {
  margin-left: 6px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.mt3 {
  margin-top: 3px;
}

.mt6 {
  margin-top: 6px;
}

.mt10 {
  margin-top: 10px;
}

.mtn10 {
  margin-top: -10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb6 {
  margin-bottom: 6px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mm3 {
  margin: 3px;
}

.col-ml6>*+* {
  margin-left: 6px;
}

.max-vh3 {
  max-height: 30vh;
}

.max-vh5 {
  max-height: 50vh;
}

.max-vh7 {
  max-height: 70vh;
}

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-ellipsis-2,
.text-ellipsis-3,
.text-ellipsis-5 {
  line-height: 1.4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
}

.text-ellipsis-5 img {
  max-width: 1.5em;
  max-height: 1.5em;
}

.text-ellipsis-2 {
  height: 2.8em;
  -webkit-line-clamp: 2;
}

.text-ellipsis-3 {
  height: 4.2em;
  -webkit-line-clamp: 3;
}

.text-ellipsis-5 {
  max-height: 7em;
  -webkit-line-clamp: 5;
}

.separator {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.separator::after,
.separator::before {
  content: "";
  background: var(--main-border-color);
  max-width: 20%;
  height: 1px;
  margin: 0 1em;
  flex: 1;
}

.zib-widget>h3 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 15px;
}

.zib-widget.widget_media_image,
.zib-widget.widget_media_video {
  padding: 0;
  overflow: hidden;
}

.zib-widget.widget_media_image img {
  width: 100%;
}

.widget-tag-cloud.author-tag .but {
  font-size: 13px;
}

.widget-tag-cloud.fixed-width .but {
  width: 89px;
}

.term-aggregation .term-img {
  width: 10em;
}

.zib-widget.widget_custom_html {
  padding: unset;
  background: unset;
  box-shadow: unset;
  border-radius: unset;
}

.graphic,
.page-cover {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  --main-color: #fff;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px var(--main-shadow);
  padding: 0;
  padding-bottom: 55%;
  border-radius: var(--main-radius);
}

.page-cover {
  padding-bottom: calc(25% + 80px);
}

.page-cover .dropdown-menu {
  --this-color: var(--muted-color);
}

.graphic>.fit-cover {
  position: absolute;
  width: 100%;
  height: 100%;
}

.linear-mask {
  background-image: linear-gradient(0deg,
      rgba(29, 41, 49, 0.4) 3em,
      rgba(255, 255, 255, 0) 8em);
}

.graphic-mask {
  background: #000;
}

.graphic-text {
  padding: 5px 10px;
  transition: 0.3s;
}

.graphic.style-2 badge {
  margin: 5px;
  padding: 0.2em 0.6em;
}

.style-3 .graphic-text {
  background: rgba(0, 0, 0, 0.2);
}

.style-3 .graphic-text+.graphic-text {
  opacity: 0;
  transform: translateY(100%);
  white-space: normal;
  word-break: break-all;
}

.graphic.style-3:hover .graphic-text {
  opacity: 0;
  transform: translateY(100%);
}

.graphic.style-3:hover .graphic-text+.graphic-text {
  opacity: 1;
  transform: unset;
}

.graphic.style-4 {
  margin-bottom: 0;
  border-radius: var(--main-radius) var(--main-radius) 0 0;
}

.author-minicard,
.author-minicard .avatar-img {
  display: inline-block;
}

.author-minicard {
  width: calc(33.333333% - 10px);
  min-width: 280px;
  background: var(--muted-border-color);
  text-align: left;
  padding: 10px 0 10px 15px;
  margin: 5px;
  vertical-align: top;
}

.author-minicard .list-inline>li+li {
  width: calc(100% - 58px);
}

.mobile-nav-widget .author-minicard {
  padding: 8px 4px;
  min-width: 240px;
}

.user-ranking-box .img-badge.left {
  left: -15px;
  padding: 2px 3px;
  top: -5px;
  transform: scale(0.8);
  transform-origin: left;
}

.posts-nav-lists {
  max-height: 400px;
  padding-left: 10px;
}

.posts-nav-lists .bl {
  border-left: 1px solid var(--main-border-color);
  padding: 20px 10px 20px 0;
}

.posts-nav-lists li.yc:not(.active) {
  display: none;
}

.posts-nav-lists li a {
  margin: 0 10px;
  display: block;
  border-radius: 4px;
  margin-right: 25px;
  padding: 8px;
}

.posts-nav-lists .fa-angle-right {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
  padding: 8px 15px;
  color: var(--muted-2-color);
  margin-right: -15px;
  transition: all 0.2s;
  font-size: 20px;
}

.dosc-nav li a:focus,
.dosc-nav li a:hover,
.nav .active a,
.nav>li>a:focus,
.nav>li>a:hover,
.posts-nav-lists li a:hover,
.posts-nav-lists li.active a {
  background: var(--main-shadow);
  color: var(--focus-color);
}

.posts-nav-lists li.n-H1 a,
.posts-nav-lists li.n-H2 a {
  font-weight: 700;
}

.posts-nav-lists li.n-H3 a {
  padding-left: 25px;
}

.posts-nav-lists li.n-H4 a {
  padding-left: 42px;
  font-size: 12px;
}

.posts-nav-lists .bl::after,
.posts-nav-lists .bl::before,
.posts-nav-lists li::before {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--focus-color);
  background: var(--main-bg-color);
  border-radius: 15px;
  content: "";
  transition: 0.15s;
}

.posts-nav-lists .bl::before {
  bottom: auto;
  top: 0;
}

.posts-nav-lists li::before {
  top: 50%;
  transform: translateY(-50%);
  border: 3px solid var(--main-bg-color);
  background: var(--muted-3-color);
  opacity: 0;
}

.posts-nav-lists li.n-H1::before,
.posts-nav-lists li.n-H2::before {
  border-width: 2px;
  opacity: 1;
}

.posts-nav-lists li.n-H2::before {
  border-width: 3px;
}

.posts-nav-lists li.n-H3::before {
  border-width: 4px;
  opacity: 0.6;
}

.posts-nav-lists li.active::before,
.posts-nav-lists li:hover::before {
  opacity: 1;
  border-width: 2px;
  background: var(--focus-color);
}

.dosc-nav .panel-toggle {
  padding: 10px;
  display: block;
}

.dosc-nav .title-h-left {
  margin-bottom: 12px;
}

.dosc-nav .panel {
  border: none;
  box-shadow: none;
  border-radius: 0 !important;
  border-top: 1px solid var(--main-border-color);
}

.dosc-nav .panel+.panel {
  margin: 0;
}

.dosc-nav .panel-group {
  margin: 0;
}

.panel-child {
  padding-left: 20px;
}

.dosc-nav .nav>li>a {
  padding: 5px 10px;
}

.dosc-nav .nav>li:last-of-type {
  margin-bottom: 10px;
}

.dosc-article-title {
  padding: 15px 0 5px 0;
  font-size: 20px;
  border-bottom: 1px solid var(--muted-border-color);
}

.dosc-article-meta item,
.dosc-article-meta item a {
  margin-right: 8px;
  font-size: 13px;
  --main-color: var(--muted-2-color);
}

.dosc-article-meta item .action {
  display: inline;
  vertical-align: unset;
  padding: 0;
}

.dosc-article-meta item .action .icon {
  font-size: 1em;
  width: 1em;
  margin: 0;
}

.article-content .article-docs-footer {
  padding: 10px 0;
}

.article-content .article-docs-footer a {
  padding: 5px;
  height: auto;
  font-size: 24px;
  vertical-align: middle;
}

.article-content .article-docs-footer a icon {
  width: 24px;
  height: 24px;
  font-size: 13px;
  margin-right: 6px;
}

.article-content .article-docs-footer a text {
  font-size: 13px;
}

.article-content .article-docs-footer .action .icon {
  width: auto;
  margin: 0;
}

.article-content .article-docs-footer .action text {
  font-size: 14px;
}

.page-cover .dosc-search {
  --main-color: #fff;
  --muted-2-color: #fff;
  --muted-color: #fff;
  --main-border-color: #fff;
}

.document-nav .cat-load {
  padding: 10px;
  display: block;
}

.document-nav .category,
.document-nav .panel-child {
  padding-left: 15px;
}

.document-nav .panel {
  border-color: transparent !important;
}

.document-nav .loading {
  overflow: hidden;
  width: 0;
  opacity: 0;
  transition: 0.3s;
}

.document-nav .is-loading .loading {
  width: 0.7em;
  opacity: 1;
  margin-right: 6px;
}

.payment-hided {
  display: none;
}

.hided {
  display: none !important;
}

.hidden {
  display: none;
}

.document-nav>.panel-group>.cat-load {
  padding-left: 2px;
}

.document-nav>.panel-group>.cat-load::before {
  color: initial;
}

.document-nav .panel-toggle:not(.collapsed) {
  color: var(--focus-color);
}

.document-nav .cat-load.active {
  background: var(--main-border-color);
  color: var(--focus-color);
  border-radius: 4px;
}

.document-nav-container {
  transition: 0.3s;
}

.document-nav-container.is-loading {
  opacity: 0.5;
}

.document-search .search-loading {
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}

.document-search.is-loading .search-loading {
  visibility: unset;
  opacity: 0.8;
}

.modal .modal-dialog.poster-share {
  width: 360px;
}

.poster-imgbox>img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 360px;
  height: 100%;
  width: 100%;
  border-radius: var(--main-radius);
}

.poster-loading .loading {
  margin: 1em 0;
  font-size: 40px;
}

.poster-imgbox.loaded .poster-loading {
  display: none;
}

.poster-share .toggle-radius {
  width: 36px;
  height: 36px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mini-media-my-box .drop-mask {
  position: absolute;
  background: rgba(33, 55, 81, 0.7);
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  font-size: 1.6em;
  color: #fff;
  padding: 20px;
  display: none;
  align-items: center;
  justify-content: center;
}

.mini-media-my-box.drag-over {
  position: relative;
}

.mini-media-my-box.drag-over .drop-mask {
  display: flex;
}

.mini-media-modal .mini-media-my-lists .progress-text {
  position: absolute;
  font-size: 12px;
  bottom: 5px;
  top: auto;
  color: #fff;
  text-align: center;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.mini-media-my-lists {
  flex-wrap: wrap;
  display: flex;
}

.mini-media-my-lists .list-item {
  flex: auto;
  flex-basis: auto;
  margin: 3px;
  flex-basis: calc(50% - 6px);
  flex-grow: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--main-border-color);
}

.mini-media-my-lists .list-item:not(.upload-ing) {
  cursor: pointer;
}

.mini-media-my-lists .list-item.upload-ing {
  box-shadow: 0 0 5px 1px #74c374;
}

.mini-media-my-lists .list-item-icon-box {
  width: 33px;
  height: 33px;
  border-radius: 4px;
  background: var(--main-bg-color);
}

.mini-media-my-lists.type-image .list-item {
  flex-basis: calc(25% - 6px);
}

.mini-media-my-lists.type-image .list-item .list-box {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.mini-media-my-lists.type-image .list-box>img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.mini-media-my-lists .theme-pagination {
  flex: auto;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  flex-basis: 100%;
  margin: 12px 0 0;
}

[disabled]+.upload-btn {
  opacity: 0.5;
  cursor: no-drop;
}

.list-item.active {
  box-shadow: 0 0 0 2px var(--focus-color);
}

.list-item[disabled] {
  opacity: 0.5;
}

.list-item .active-index {
  color: #fff;
  position: absolute;
  right: -1px;
  top: -1px;
  z-index: 1;
  background: var(--focus-color);
  border-radius: 0 1px 0 4px;
  padding: 2px 3px;
  font-size: 12px;
  line-height: 12px;
  min-width: 16px;
  text-align: center;
}

.rewards-img {
  height: 140px;
  width: 140px;
  border-radius: var(--main-radius);
  overflow: hidden;
  margin: auto;
}

.admin-edit a {
  color: var(--focus-color) !important;
  font-size: 0.8em;
  padding: 0.1em;
}

.imagecaptcha>img {
  width: 92px;
  height: 35px;
  border-radius: 4px;
}

.line-form .imagecaptcha.abs-right {
  margin-top: -2px;
}

.sign .line-form .imagecaptcha.abs-right {
  margin-top: -8px;
  margin-right: -8px;
}

.slidercaptcha {
  min-height: 205px;
}

.captcha-body-bg {
  border-radius: 4px;
  border: 1px solid var(--muted-border-color);
  background: var(--main-shadow);
}

.slidercaptcha .captcha-body-bar {
  position: absolute;
  top: 0;
  left: 0;
}

.sliderContainer {
  text-align: center;
  background: var(--main-shadow);
  color: var(--muted-2-color);
  border-radius: 4px;
  margin-top: 0.5rem;
  position: relative;
  line-height: 40px;
  height: 40px;
}

.refreshIcon {
  position: absolute;
  right: 0;
  opacity: 0.6;
  top: 0;
  padding: 10px;
  color: #fff;
  text-shadow: 0 0 5px #000;
}

.sliderMask {
  position: absolute;
  border-radius: 4px;
  height: 40px;
  transition: 0.3s;
}

.sliderContainer_active .sliderMask {
  background: rgba(5, 224, 96, 0.1);
  border: 1px solid rgba(94, 182, 89, 0.6);
  transition: unset;
}

.sliderContainer_success .sliderMask {
  background: rgba(0, 153, 255, 0.2);
  border: 1px solid #43b5fc;
}

.sliderContainer_fail .sliderMask {
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid #ff4842;
}

.captcha-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--main-bg-color);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.sliderContainer_active .captcha-slider {
  transition: unset;
}

.sliderContainer_success .captcha-slider {
  background: #3ca4f9;
  color: #fff;
}

.sliderContainer_fail .captcha-slider {
  background: #f7564a;
  color: #fff;
}

.sliderContainer_success .sliderIcon:before {
  content: "\f00c";
}

.sliderContainer_fail .sliderIcon:before {
  content: "\f00d";
}

.sign-content {
  padding: 20px 0;
}

.sign-img {
  position: absolute;
  padding-right: 40%;
}

.sign-logo img {
  max-width: 180px;
  max-height: 60px;
}

.sign {
  max-width: 330px;
  margin: auto;
}

.sign-img+.sign {
  margin-left: 45%;
  max-width: unset;
}

.sign ul>li {
  margin: 10px 0;
}

.sign .but {
  margin: 0;
}

#sign-in,
#sign-up {
  padding: 0 10px;
}

.sign .line-form-input {
  padding: 0 2em 0.3em 0.3em;
  margin-top: 1.7em;
}

.sign .line-form .abs-right {
  margin-top: -8px;
}

.sign .captchsubmit {
  margin-right: -0.7em;
  padding: 0.3em 1em;
}

.sign .signup-captch {
  display: none;
}

.match-ok {
  right: 110px;
  color: #45b6f7;
  opacity: 0;
}

.match-ok.show {
  opacity: 1;
}

.yztx~.match-ok {
  right: 110px;
}

.social_loginbar {
  text-align: center;
}

.social_loginbar .social-login-item,
.social_loginbar .xh-social-item {
  float: none;
  display: inline-block;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px;
  cursor: pointer;
  border-radius: 50px;
  margin: 3px 5px;
}

.social-login-item.button-lg {
  width: 120px !important;
}

.social-login-item.button-lg .fa,
.social-login-item.button-lg .icon {
  margin-right: 6px;
  font-size: 1.1em;
}

.social-login-item.button-lg.baidu .icon {
  font-size: 1.2em;
}

.social-login-item,
.social-login-item svg {
  color: #fff !important;
}

.social-login-item.weibo {
  background: #ea5d5c;
}

.social-login-item.weixin,
.social-login-item.weixingzh {
  background: #24b76a;
}

.social-login-item.facebook {
  background: #1296db;
}

.social-login-item.alipay {
  background: #1296db;
}

.social-login-item.github {
  background: #505050;
}

.social-login-item.gitee {
  background: #c2292f;
}

.social-login-item.dingtalk,
.social-login-item.twitter {
  background: #399ffb;
}

.social-login-item.huawei {
  background: #f2363f;
}

.social-login-item.xiaomi {
  background: #ff6901;
}

.social-login-item.google {
  background: #e4ba00;
}

.social-login-item.microsoft {
  background: #f25022;
}

.social-login-item.toggle-radius {
  font-size: 16px;
}

.social-login-item.toggle-radius.alipay,
.social-login-item.toggle-radius.baidu,
.social-login-item.toggle-radius.github {
  font-size: 20px;
}

.social-login-item.toggle-radius.weibo {
  font-size: 18px;
}

.qrcode-signin-container {
  min-height: 254px;
}

.signin-qrcode-img {
  width: 180px;
  min-height: 180px;
  border-radius: 6px;
}

.pay-box.pay-widget .vip-price {
  padding-top: 8px;
  width: 100%;
  display: inline-block;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: inherit;
}

.vip-price:hover {
  color: inherit;
  background: rgba(0, 0, 0, 0.05);
}

.vip-price-text {
  display: inline-block;
}

.pay-widget .vip-price+.vip-price {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.pay-widget .cashier-link,
.pay-widget .initiate-pay,
.pay-widget .pay-button .dropup,
.pay-widget .signin-loader,
.pay-widget .vip-price,
.pay-widget .vip-price-buts {
  width: 100%;
}

.pay-widget .but-group>.but,
.pay-widget .but-group>.vip-price {
  width: 50%;
}

.pay-widget .cashier-link,
.pay-widget .initiate-pay {
  padding: 0.5em;
}

.pay-widget .vip-price>.em12 {
  font-size: 2em;
  display: block;
}

.pay-widget .price-box>.c-yellow {
  text-align: center;
  --this-color: #fff;
}

.pay-gallery {
  width: 45%;
  background: var(--main-border-color);
}

.pay-box .paid-info {
  border-left: 1px dashed rgba(255, 255, 255, 0.51);
  padding-left: 20px;
}

.pay-thumb {
  width: 40%;
}

.pay-widget .paid-info {
  border: unset;
  padding: unset;
  border-top: 1px dashed rgba(255, 255, 255, 0.51);
  padding-top: 10px;
}

.paid-box {
  border-radius: var(--main-radius);
}

.paid-box {
  padding: 0 !important;
}

.paid-info-box.flex {
  display: flex;
}

.paid-info a {
  color: inherit;
}

.paid-gallery {
  background: var(--main-border-color);
  padding: 60px;
}

.paid-down-group>.btn-block {
  display: inline-block;
  width: 50%;
}

.pay-box {
  font-size: 14px;
  position: relative;
  overflow: hidden;
  line-height: 1.4;
}

.pay-box .pay-tag,
.vip-product .vip-tag {
  font-size: 13px;
  padding: 3px 10px;
  right: auto;
  width: auto;
  top: 10px;
  background: var(--this-bg);
  color: var(--this-color);
  border-radius: var(--main-radius) 0 var(--main-radius) 0;
  line-height: 1.4;
  z-index: 1;
}

.pay-box ul.list-inline {
  margin: 0 !important;
  padding: 0 !important;
}

.pay-box ul.list-inline li {
  width: 90px;
  margin: 0;
}

.pay-box ul.list-inline li+li {
  width: calc(100% - 95px);
}

.cashier-link {
  padding: 0.5em 3em;
}

.but.initiate-pay {
  padding: 0.6em 1em;
}

.paid-info-box,
.pay-attr,
.pay-box .pay-details,
.pay-box .pay-extra-hide {
  font-size: 13px;
  background: var(--muted-border-color);
  display: block;
  padding: 6px 10px;
  line-height: 1.4;
  color: var(--muted-color);
  border-radius: 4px;
}

.pay-attr {
  line-height: 1.6;
}

.pay-box .pay-mark {
  font-size: 12px;
  margin-right: 3px;
}

.pay-box .pay-cuont {
  margin-left: 10px;
  font-size: 12px;
  padding: 1px 10px;
  vertical-align: top;
}

.pay-box .pay-details {
  margin-top: 10px;
  padding: 10px;
}

.pay-details ul {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.pay-box .pay-thumbnail {
  width: 80px;
  height: 80px;
}

.pay-box .pay-thumbnail img {
  height: 100%;
}

.pay-box .pay-box-price {
  color: #fb403f;
  margin: 4px 0;
  font-size: 16px;
}

.pay-box .vip-price {
  border: none;
  font-size: 12px;
  padding: 4px 12px;
  flex: content;
}

.original-price {
  opacity: 0.7;
  position: relative;
  padding: 0 3px 0 2px;
  font-size: 14px;
  display: inline-block;
}

.original-price::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ff343b;
  top: 0.6em;
  left: 0;
  transform: rotate(5deg);
}

.pay-box .but-download {
  padding: 10px 10px 5px 10px;
  min-width: 50%;
}

.pay-box .but-download .but {
  min-width: 130px;
}

.pay-box .but-download .but+.but {
  min-width: auto;
}

.pay-box .but-download .but svg.icon,
.pay-box .but-download .but>.fa {
  margin-right: 1em;
}

.pay-box .but.baidu {
  background: #1578f8;
}

.pay-box .but.lanzou {
  background: #f37526;
}

.pay-box .but.weiyun {
  background: #33b0fa;
}

.pay-box .but.onedrive {
  background: #1254c6;
}

.pay-box .but.tianyi {
  background: #fe9c0a;
}

.pay-box .but.ctfile {
  background: #08be9f;
}

.payment-method-radio {
  padding: 5px;
}

.payment-method-radio>* {
  margin: 3px;
}

.payment-method-radio img {
  height: 35px;
}

.payment-method-radio+.payment-method-radio {
  margin-left: 10px;
}

.payvip-modal {
  padding: 30px;
}

.payvip-modal .user-box>li+li {
  width: calc(100% - 70px);
}

.payvip_icon {
  color: #f9915a;
}

.payvip_icon .fa {
  font-size: 50px;
}

.payvip_equity {
  line-height: 1.8;
}

.vip-product {
  border: 2px solid var(--main-border-color);
  background: var(--main-shadow);
  box-shadow: none;
  min-width: 140px;
  min-height: 86px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin: 4px;
  font-weight: 400;
  padding: 5px 8px;
  cursor: pointer;
}

.vip-product .product-price {
  font-size: 22px;
}

.vip-product .pay-mark {
  font-size: 13px;
}

.vip-product .original-price {
  font-size: 15px;
  color: var(--muted-color);
}

.vip-product .vip-tag {
  font-size: 12px;
  padding: 1px 5px;
  border-radius: 4px;
  left: auto;
  right: -8px;
  top: -10px;
  transform: scale(0.9);
}

.vip-product-input:checked~.vip-product,
.vip-product.active {
  border-color: #ff5473;
  background: var(--main-bg-color);
}

.exchange-card-box>.vip-card.active::before,
.vip-product-input:checked~.vip-product::before,
.vip-product.active::before {
  content: "\f058";
  font: normal normal normal 14px/1 FontAwesome;
  color: #ff5473;
  position: absolute;
  left: 2px;
  top: 2px;
}

.balance-charge-form .vip-product {
  min-width: 82px;
  min-height: 65px;
}

.active-icon.abs-right {
  color: #fff;
  top: 20px;
  right: auto;
  left: 13px;
  font-size: 20px;
  opacity: 0;
  transition: 0.15s;
}

.payvip-modal .label-box>label {
  vertical-align: bottom;
}

.payvip-modal .active .vip-card {
  box-shadow: 0 0 10px rgba(98, 98, 98, 0.6);
  transform: translateY(-1px);
}

.active .active-icon {
  opacity: 1;
}

.vip-card {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  padding: 15px;
  background: #d2b484;
  background: linear-gradient(25deg, #e6aa4f 10%, #f1d7ad 70%, #f5b97b 100%);
  color: #866127;
  transition: 0.3s;
}

.vip-img {
  font-size: 70px;
}

.vip-icon {
  font-size: 2em;
}

.vip-name {
  font-size: 20px;
}

.vip-theme2 {
  background: linear-gradient(317deg, #2c294a, #686886 30%, #35343e) rgba(107, 106, 102, 0.3);
  color: #e4e2fb;
}

.vip-theme2 .vip-baicon {
  color: #5f5f5f;
}

.payvip-button {
  background: linear-gradient(135deg, #ff9633 10%, #f14315 100%);
  padding: 4px 15px !important;
  box-shadow: 0 0 10px rgba(26, 22, 15, 0.3);
  position: relative;
  z-index: 2;
}

.vip-expdate-tag {
  font-size: 0.8em;
  padding: 0.1em 6px;
  vertical-align: 0.1em;
}

.vip-theme2 .payvip-button {
  background: linear-gradient(270deg, #ada48a, #eae5b7 45%, #f5efd6);
  color: #72511d;
  --this-color: #72511d;
}

.payvip-icon {
  background: linear-gradient(300deg,
      #4c4d51,
      #2a2a31 15%,
      #85858a 40%,
      #393a3c 60%,
      #393838 80%,
      #5e5f62 100%);
  text-shadow: none;
  font-weight: 400;
  position: relative;
  color: #ece0e0;
  border: none;
  --this-color: #ece0e0;
  overflow: hidden;
}

.payvip-icon:before {
  content: "\f219";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 3.5em;
  right: -0.2em !important;
  top: 80% !important;
  opacity: 0.06;
}

.vipbg-v1 {
  background: linear-gradient(60deg,
      #f0bf81 0,
      #fdefd6 30%,
      #f2deb9 40%,
      #fdc277 80%,
      #f9e1b7 100%);
  color: #8c5728;
  --this-color: #8c5728;
}

.vipbg-v1:before {
  content: "\f006";
}

.vip-texticon {
  font-size: 0.85em;
  background: 0 0;
  color: #de8644;
}

.vip-baicon.abs-center {
  font-size: 15em;
  top: 80%;
  left: -22%;
  opacity: 0.2;
  z-index: 0;
}

.vip-cardminis>li {
  flex: auto;
}

.vip-cardmini .vip-baicon.abs-center {
  font-size: 7em;
}

.vip-cardmini {
  text-align: center;
}

.exchange-card-box {
  margin: -5px;
}

.exchange-card-box>.vip-card {
  width: calc(50% - 10px);
  padding: 8px 10px;
  margin: 5px;
}

.exchange-card-box>.vip-card.active {
  box-shadow: 0 0 0 2px var(--focus-color);
}

.exchange-card-box>.vip-card.active::before {
  left: auto;
  right: 4px;
  top: 4px;
  color: #fff;
  font-size: 18px;
}

.avatar-icontag {
  position: absolute;
  border-radius: 50px;
  line-height: 1;
  padding: 2px;
  right: -3px;
  bottom: -2px;
  font-size: 11px;
  background: #f7efe3;
  border: 1px solid var(--main-bg-color);
}

.page-share>a {
  font-size: 22px;
  margin: 0 10px;
}

.archives ul>li {
  padding: 5px 0;
}

.posts-navs .title-theme h2 {
  margin: inherit;
  font-size: inherit;
}

.option-dropdown {
  padding: 5px 10px;
  display: inline-block;
  color: var(--muted-color);
}

.ajax-option .option-items {
  margin-left: 10px;
  --main-color: var(--muted-2-color);
}

.ajax-option .option-dropdown {
  color: var(--main-color);
}

.ajax-option .option-dropdown .dropdown-menu {
  max-height: 400px;
  overflow-y: auto;
}

.yiyan-box {
  padding: 10px 15px;
  min-height: 40px;
}

.yiyan .en {
  font-size: 0.8em;
  opacity: 0.8;
}

.yiyan-box:hover {
  box-shadow: inset 0 0 5px 0 var(--focus-shadow-color);
}

.notyn {
  position: fixed;
  bottom: 6em;
  right: 0;
  max-width: 320px;
  z-index: 10000000;
}

.notyf {
  margin-bottom: 0.6em;
  color: #fff;
  float: right;
  min-width: 200px;
  padding: 1em 3em 1em 3.4em;
  box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(1.5em);
  transition: 0.3s;
  -webkit-backdrop-filter: saturate(5) blur(20px);
  backdrop-filter: saturate(5) blur(20px);
  -webkit-animation: notyf 0.4s cubic-bezier(0.35, 0.71, 0.46, 1.08);
  animation: notyf 0.4s cubic-bezier(0.35, 0.71, 0.46, 1.08);
}

.notyn-out .notyf {
  transform: translateX(110%);
  opacity: 0.5;
  transition: 0.5s;
}

@-webkit-keyframes notyf {
  0% {
    transform: translateX(110%);
    opacity: 0;
  }

  100% {
    transform: translateX(1.5em);
    opacity: 1;
  }
}

@keyframes notyf {
  0% {
    transform: translateX(110%);
    opacity: 0;
  }

  100% {
    transform: translateX(1.5em);
    opacity: 1;
  }
}

.notyf:before {
  font: normal normal normal 16px/1 FontAwesome;
  left: 0.8em;
  font-size: 1.5em;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 20px;
}

.notyf.success {
  background: linear-gradient(90deg,
      rgba(15, 147, 249, 0.7),
      rgba(61, 189, 249, 0.8));
}

.notyf.success:before {
  content: "\f058";
}

.notyf.info {
  background: linear-gradient(90deg,
      rgba(58, 162, 54, 0.8),
      rgba(89, 247, 131, 0.8));
}

.notyf.info:before {
  content: "\f0a1";
}

.notyf.load,
.notyf.warning {
  background: linear-gradient(90deg,
      rgba(253, 170, 71, 0.7),
      rgba(247, 154, 13, 0.8));
}

.notyf.warning:before {
  content: "\f05a";
}

.notyf.danger {
  background: linear-gradient(90deg,
      rgba(253, 69, 28, 0.7),
      rgba(251, 110, 75, 0.8));
}

.notyf.danger:before {
  content: "\f057";
}

.notyf .fa-close {
  float: right;
  padding: 0.6em;
  margin: -0.4em;
}

.action-comment-like.action-animation .icon,
.action-like.action-animation .icon {
  -webkit-animation: lovestar 0.6s 0s 1 ease normal none;
  animation: lovestar 0.6s 0s 1 ease normal none;
}

@-webkit-keyframes lovestar {
  0% {
    transform: translate3d(0, 0, 0);
  }

  35% {
    transform: translate3d(0, 4px, 0) rotate(5deg);
  }

  60% {
    transform: translate3d(-2px, -6px, 0) scale(1.3) rotate(-25deg);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
  }
}

@keyframes lovestar {
  0% {
    transform: translate3d(0, 0, 0);
  }

  35% {
    transform: translate3d(0, 4px, 0) rotate(5deg);
  }

  60% {
    transform: translate3d(-2px, -6px, 0) scale(1.3) rotate(-25deg);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
  }
}

.close {
  transition: 0.2s;
  opacity: 0.4;
  color: var(--muted-color);
  position: relative;
  z-index: 1;
}

.close:focus,
.close:hover {
  color: inherit;
}

.absolute,
.fixed,
.progress {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.fixed {
  position: fixed;
}

.abs-center,
.abs-left,
.abs-right,
.form-select::before,
.line-form-label,
.payvip-icon:before,
.toggle-radius .fa,
.toggle-radius .icon {
  position: absolute;
  top: 50%;
  right: 0.7em;
  transform: translateY(-50%);
  z-index: 1;
}

.abs-center {
  left: 0;
  width: 100%;
}

.abs-left {
  right: auto;
  left: 0.7em;
}

.abs-center.left-top,
.abs-center.right-top {
  transform: unset;
  top: 0;
}

.abs-center.right-top {
  left: auto;
  width: auto;
}

.abs-center.left-top {
  text-align: left;
}

.abs-center.conter-bottom,
.abs-center.conter-conter {
  text-align: center;
}

.abs-center.right-bottom,
.abs-center.right-conter,
.abs-center.right-top {
  text-align: right;
}

.abs-center.conter-bottom,
.abs-center.left-bottom,
.abs-center.right-bottom {
  top: auto;
  transform: unset;
  bottom: 0;
}

.abs-blur-bg {
  position: absolute;
  left: -50px;
  top: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  -webkit-filter: blur(30px);
  filter: blur(30px);
}

.scale-placeholder {
  position: absolute;
  bottom: 5px;
  opacity: 0.5;
  transition: 0.2s;
  padding-left: 4px;
  transform-origin: left top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  cursor: text;
}

.scale-placeholder.is-focus,
input:focus~.scale-placeholder {
  transform: translateY(-20px);
  font-size: 11px;
}

input:-internal-autofill-previewed~.scale-placeholder,
input:-internal-autofill-selected~.scale-placeholder {
  transform: translateY(-20px);
  font-size: 11px;
}

input:focus~.scale-placeholder {
  color: var(--focus-color);
  opacity: 0.9;
}

.line-form .abs-right {
  margin-top: 3px;
}

.line-form-input {
  outline: 0 !important;
  border: none;
  display: block;
  width: 100%;
  padding: 1em 2em 0.4em 0.3em;
  opacity: 0.8;
  transition: 0.3s;
  background: 0 0 !important;
}

.line-form-input::-webkit-input-placeholder {
  color: var(--muted-2-color);
}

.line-form-input:-moz-placeholder {
  color: var(--muted-2-color);
}

.line-form-input:-moz-placeholder {
  color: var(--muted-2-color);
}

.line-form-input:focus {
  opacity: 1;
}

.line-form-label {
  left: 1em;
  right: unset;
}

.line-form-line,
.line-form-line:before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  transition: 0.8s;
  background: var(--main-border-color);
}

.line-form-line:before {
  content: "";
  width: 0;
  background: var(--focus-color);
}

.line-form-input:focus~.line-form-line:before,
.line-form-input:hover~.line-form-line:before {
  width: 100%;
}

.line-form-input:focus~.line-form-line:before {
  box-shadow: 0 -1px 3px 1.5px var(--focus-shadow-color);
}

.link-img img {
  border-radius: 0;
}

.link-only-img img {
  height: 45px;
  width: auto;
  border-radius: 0;
  margin: 5px 10px;
}

.step-simple {
  padding: 10px;
  background: var(--main-border-color);
  border-radius: 4px;
  text-align: center;
  display: flex;
}

.step-simple>li {
  flex: 1;
  position: relative;
  margin: 0 6px;
}

.step-simple>li:last-of-type::after {
  content: unset;
  display: none;
}

.step-simple>li::after {
  font: normal normal normal 18px/1 FontAwesome;
  font-size: 18px;
  content: "\f105";
  color: var(--muted-3-color);
  position: absolute;
  right: -10px;
  font-size: 20px;
  top: 0;
}

.step-simple a {
  color: inherit;
}

.step-simple .active {
  color: var(--focus-color);
}

@media (min-width: 1240px) {
  .container {
    max-width: var(--mian-max-width);
    width: auto;
  }
}

.container-footer,
.container-header {
  max-width: 1380px;
  max-width: calc(var(--mian-max-width) + 180px);
}

.content-wrap {
  float: left;
  width: 100%;
}

.sidebar {
  float: left;
  width: 311px;
  position: relative;
}

.site-layout-1 .sidebar {
  display: none;
}

.site-layout-2 .content-layout {
  margin-right: calc(311px + 15px);
}

.site-layout-2 .sidebar {
  float: left;
  margin-left: -311px;
  width: 311px;
  position: unset;
}

.site-layout-3 .content-layout {
  margin-left: calc(311px + 15px);
  margin-right: unset;
}

.site-layout-3 .sidebar {
  margin-left: -100%;
}

.header {
  padding: 8px 20px;
  background: var(--header-bg);
  margin-bottom: 20px;
  transition: 0.3s;
}

.body-scroll .header {
  box-shadow: 0 4px 10px var(--main-shadow);
}

.header a:not(.but),
.header svg {
  color: var(--header-color);
}

.header .sub-menu {
  background: var(--main-bg-color);
  text-shadow: none;
}

.header .dropdown-menu a,
.header .sub-menu a,
.header .sub-menu svg {
  color: var(--main-color);
}

body.nav-fixed:not(.body-scroll) .header.show-slide {
  --header-bg: linear-gradient(0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.1) 80%);
  --header-color: #fff;
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
}

body:not(.nav-fixed) .header.show-slide {
  margin-bottom: 0;
}

body.nav-fixed .slide-header {
  margin-top: -90px;
}

.slide-header .slide-text {
  padding-top: 70px;
}

.slide-header .s-desc,
.slide-header img,
.slide-header video,
.theme-block-carousel figcaption {
  border-radius: 0 !important;
}

.search-keywords {
  padding: 10px;
}

.header form {
  text-align: center;
}

.header-slider-search {
  max-width: 840px;
  margin: auto;
  padding: 0 20px;
  font-size: 17px;
  top: calc(50% - 10px);
  z-index: 2;
}

.card-0 .header-slider-search {
  top: calc(50% + 20px);
}

.header-slider-search .search-input {
  max-width: 800px;
}

.header-slider-search-more {
  color: #fff;
}

.header-slider-search-more.before {
  margin-bottom: 1.8em;
}

.header-slider-search .search-type-but-average {
  margin-bottom: 2em;
}

.header-slider-search .search-type-but-average .but,
.header-slider-search .search_keywords {
  --this-bg: rgba(255, 255, 255, 0.8);
  --this-color: #888;
}

.filter-blur .header-slider-search .search-type-but-average .but,
.filter-blur .header-slider-search .search_keywords {
  -webkit-backdrop-filter: saturate(5) blur(20px);
  backdrop-filter: saturate(5) blur(20px);
}

.header-slider-search .search-type-but-average .but.active {
  --this-bg: var(--focus-color);
  --this-color: #fff;
}

.header-slider-search .line-form {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  padding: 0.5em 1.2em;
  z-index: 1;
  color: #555;
}

.header-slider-search .line-form .dropdown>a,
.header-slider-search .line-form .dropdown>a a,
.header-slider-search .line-form .icon {
  color: #555;
}

.header-slider-search .search-input-text {
  position: relative;
  padding: 5px 10px;
}

.header-slider-search .line-form-input {
  padding: 0;
}

.header-slider-search .search-input-text .line-form-line,
.header-slider-search .search-keywords>p {
  display: none;
}

.header-slider-search .search-keywords {
  text-align: center;
}

.header-slider-search .search_keywords {
  padding: 3px 5px;
  font-size: 0.85em;
}

.header-slider-search .line-form .abs-right {
  margin-top: 0;
  margin-right: -6px;
}

.header-slider-card {
  margin-top: -40px;
  z-index: 1;
}

.header-slider-card .zib-widget {
  margin-bottom: 0;
}

.filter-blur .header-slider-card .zib-widget,
.filter-blur .header-slider-search .line-form {
  -webkit-backdrop-filter: saturate(5) blur(20px);
  backdrop-filter: saturate(5) blur(20px);
}

.filter-blur .header-slider-card .zib-widget {
  background: var(--blur-bg);
}

.nav-fixed .header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  -webkit-backdrop-filter: saturate(5) blur(20px);
  backdrop-filter: saturate(5) blur(20px);
}

.mobile-navbar+.fixed-body {
  z-index: 996;
}

.navbar-top {
  margin: 0;
  border-radius: 0 !important;
  font-size: 15px;
}

.navbar-top badge,
badge.top {
  transform: translate(-5px, -10px) scale(0.85);
  margin-right: -10px;
}

.navbar-top .navbar-nav {
  margin-left: 20px;
  margin-right: 20px;
}

.navbar-top .navbar-right {
  padding-right: 0;
}

.navbar-right~.navbar-right {
  padding-right: 5px;
}

.navbar-top .navbar-but .but {
  font-size: 0.8em;
  padding: 0.3em 1em !important;
  margin: 0.4em;
}

.navbar-top .navbar-but .but.hover-show {
  z-index: 99;
}

.navbar-top .navbar-brand {
  padding: 7px 10px;
}

.navbar-logo>img {
  height: 36px;
  padding: 0 30px;
}

.navbar-top .nav>li>a {
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  display: inline-block !important;
  overflow: hidden;
}

.menu-item>a>.but {
  transform: translateY(-2px);
  margin: -0.3em;
}

.current-menu-item>a,
.navbar-top .nav li a:focus,
.navbar-top .nav li a:hover {
  background-color: transparent;
  color: var(--focus-color);
}

.navbar-top .fa {
  transition: 0.2s;
}

.navbar-collapse .search-input {
  background: var(--main-shadow);
}

.navbar-collapse .search-input~.dropdown-menu {
  margin-top: 15px;
}

.navbar-collapse .dropdown-menu .search-input {
  background: 0 0;
  padding: 10px;
  width: 460px;
}

.navbar-nav li,
.navbar-nav li a {
  max-height: 50px;
  position: relative;
}

.navbar-top .sub-menu,
.theme-popover {
  visibility: hidden;
  position: absolute;
  min-width: 120px;
  background-color: var(--main-bg-color);
  padding: 10px 5px;
  z-index: 99;
  border-radius: var(--main-radius);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar-top li:hover>.sub-menu {
  visibility: unset;
}

.navbar-top .sub-menu .sub-menu {
  left: 100%;
  top: -10px;
}

.theme-popover {
  display: unset;
}

.navbar-search {
  visibility: hidden;
  transform: translateY(-101%);
  padding: 10px 30px;
  padding-top: 80px;
  background: var(--main-bg-color);
  height: auto;
  opacity: 1;
  box-shadow: 0 14px 10px rgba(0, 0, 0, 0.08);
  z-index: 998;
  transition: all 0.5s;
}

.navbar-search.show {
  visibility: unset;
  transform: translateY(0);
}

.navbar-top .navbar-right .sub-menu {
  right: 0;
}

.navbar-top .sub-menu li>a {
  white-space: nowrap;
  display: block;
  padding: 5px 15px;
}

.navbar-top .sub-menu li>a:hover {
  transform: translateX(5px);
}

.navbar-top .sub-menu .menu-item-has-children>a {
  padding-right: 35px;
}

.navbar-top .sub-menu .menu-item-has-children>a>.fa-angle-down {
  position: absolute;
  right: 15px;
  top: 8px;
}

.navbar-top .newadd-btns {
  opacity: 1 !important;
}

.navbar-top .drop-newadd {
  width: 137px;
  padding: 7px 10px;
}

.navbar-top .drop-newadd::before {
  top: -4px;
  left: auto;
  right: 27px;
}

.sub-user-box {
  width: 242px;
  word-break: break-word;
  white-space: normal;
}

.mobile-navbar.top .sub-user-box {
  width: auto;
  text-align: center;
  margin: auto;
  max-width: 400px;
}

.mobile-navbar.top .sub-user-box>ul {
  overflow: hidden;
}

.sub-user-box .list-inline>li+li {
  width: calc(100% - 48px);
}

.sub-user-box .social-login-item.button-lg {
  width: 110px !important;
  font-size: 13px;
}

.sub-user-box .user-name {
  width: calc(100% - 3em);
}

.sub-user-box .author-tag>* {
  max-height: 41px;
  overflow: hidden;
  flex: auto;
}

.sub-vip-card {
  font-size: 12px;
}

.sub-vip-card .vip-card {
  display: inline-block;
  width: 240px;
  margin: 5px;
}

.sub-vip-card .vip-baicon.abs-center {
  font-size: 10em;
  left: 55%;
}

.sub-vip-card .payvip-button {
  font-size: 1em !important;
  margin: 0 !important;
}

.sub-vip-card .vip-name {
  font-size: 16px;
}

.sub-vip-card .vip-img {
  display: none;
}

.sub-user-box .payvip-icon {
  padding: 8px 0;
}

.header-user-href>a {
  display: inline-block;
  padding: 10px 10px 0 10px;
}

.header-user-href>a:hover {
  opacity: 0.7;
}

.header-user-href>a div+div {
  font-size: 12px;
}

.header-user-href .toggle-radius {
  width: 36px;
  height: 36px;
}

.navbar-top li.current-menu-item>a,
.navbar-top li:hover>a {
  color: var(--focus-color);
}

.navbar-top li.current-menu-item:before,
.navbar-top li.current-menu-item>a:before,
.navbar-top li:hover:before,
.navbar-top li:hover>a:before {
  opacity: 1;
}

.navbar-nav li:hover>a .fa-angle-down {
  transform: rotate(-90deg);
}

.navbar-nav>li:before {
  content: " ";
  position: absolute;
  width: 100%;
  top: -10px;
  background: var(--focus-color);
  height: 5px;
  border-radius: 0 0 15px 15px;
  opacity: 0;
}

.navbar-avatar {
  margin-top: 3px;
  display: block;
  width: 29px;
  height: 29px;
}

.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  transform: translate3d(0, 0, 0);
  display: flex;
  position: relative;
}

.swiper-slide {
  transform: translate3d(0, 0, 0);
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition-property: transform;
}

.new-swiper,
.overflow-hidden,
.swiper-tab,
.swiper-tab-nav {
  overflow: hidden;
  position: relative;
}

.swiper-tab .swiper-slide .swiper-slide {
  height: 100%;
}

.new-swiper {
  --pc-height: auto;
  --m-height: auto;
  --max-height: auto;
  --min-height: auto;
}

.scale-height {
  --scale-height: 40%;
  --pc-height: 100%;
  --m-height: 100%;
  padding-bottom: var(--scale-height);
  width: 100%;
  height: 0;
}

.scale-height .swiper-slide img,
.scale-height .swiper-wrapper {
  position: absolute;
}

.new-swiper .swiper-wrapper {
  height: var(--pc-height);
  display: flex;
}

.new-swiper .swiper-slide img:not(.img-icon):not(.smilie-icon):not(.avatar-badge):not(.avatar) {
  max-height: var(--max-height);
  min-height: var(--min-height);
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.swiper-scroll .swiper-slide {
  width: unset;
  margin-right: 10px;
}

.swiper-scroll .swiper-slide:last-of-type {
  margin-right: 0;
}

.swiper-tab-nav .swiper-slide.swiper-slide-thumb-active a {
  color: var(--focus-color);
}

.s-desc,
.slide-text,
.theme-block-carousel figcaption {
  position: absolute;
  color: #fff;
  bottom: 0;
  padding: 1.8em 2.5em;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent);
  width: 100%;
  font-size: 16px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 0 0 var(--main-radius) var(--main-radius);
}

.swiper-slide .slide-layer img {
  -o-object-fit: contain !important;
  object-fit: contain !important;
  width: auto !important;
  position: unset !important;
}

.slide-text {
  background: unset;
  opacity: 0;
  bottom: unset;
  transition: opacity 1s;
  --text-size-pc: 20px;
  font-size: var(--text-size-pc);
}

.swiper-bulletin {
  padding: 0.1em 6px;
  background: var(--this-bg);
}

.swiper-bulletin .new-swiper {
  line-height: 2.4em;
  height: 2.4em;
  overflow: hidden;
}

.swiper-bulletin .text-ellipsis {
  display: block;
  line-height: 33px;
}

.swiper-bulletin a {
  color: var(--this-color);
}

.bulletin-icon {
  background: var(--this-color);
  width: 26px;
  height: 26px;
  text-align: center;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  display: inline-block;
  vertical-align: -8px;
}

.sbg .bulletin-icon {
  color: var(--this-bg);
}

.imgbox {
  display: none;
}

.alone-imgbox-img,
.comment-content .box-img:not(.smilie-icon),
.cursor-zoom-in {
  cursor: zoom-in;
}

.media-body {
  width: auto;
}

.posts-row {
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 15px;
}

.posts-row> :not(.post_ajax_loader) {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.posts-item {
  padding: 20px;
  margin: 15px 0;
  background: var(--main-bg-color);
  overflow: hidden;
  transition: 0.2s;
  box-shadow: 0 0 10px var(--main-shadow);
  border-radius: var(--main-radius);
}

.posts-item .post-graphic:not(.order1) {
  margin-right: 20px;
}

.posts-item .order1.post-graphic {
  margin-right: 0;
  margin-left: 20px;
}

.posts-item .item-thumbnail {
  width: 190px;
  height: 0;
  padding-bottom: var(--posts-list-scale);
  position: relative;
  overflow: hidden;
  border-radius: var(--main-radius);
}

.item-thumbnail .swiper-wrapper {
  height: 100% !important;
}

.list .item-thumbnail .zib-slider,
.list .item-thumbnail.new-swiper {
  margin: 0 !important;
  position: absolute;
  height: 100%;
}

.item-thumbnail .dplayer-thumb {
  padding-bottom: var(--posts-list-scale);
  transition: opacity 0.3s;
}

.item-thumbnail .dplayer-thumb .dplayer-bezel .dplayer-bezel-icon {
  opacity: 0 !important;
}

.item-thumbnail .dplayer-video-wrap,
.item-thumbnail .swiper-wrapper,
.item-thumbnail img {
  position: absolute;
}

.item-thumbnail .dplayer-video-wrap {
  z-index: 1;
}

.dplayer-thumb-hide {
  opacity: 0;
}

.forum-lists-cover .swiper-pagination,
.item-thumbnail .swiper-pagination {
  text-align: center !important;
  bottom: 0 !important;
  padding: 0 2px !important;
  left: 0 !important;
  right: 0 !important;
}

.posts-item .item-heading {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
  max-height: 2.8em;
}

.list.style2 .item-thumbnail {
  width: 130px;
}

.list.style2 .item-heading {
  text-overflow: ellipsis;
  white-space: nowrap;
  display: unset;
  max-height: 1.4em;
}

.posts-item .item-heading>a {
  color: var(--key-color);
}

.posts-item .item-heading>a:hover {
  color: var(--focus-color);
}

.posts-item .item-meta item {
  margin-right: 8px;
  font-size: 13px;
}

.posts-item .meta-right item:last-child {
  margin-right: 0;
}

.item-meta .avatar-mini {
  transform: translateY(-1px);
}

.item-meta .meta-pay {
  padding: 0 4px;
}

.posts-item .item-meta a,
.posts-mini .item-meta a {
  color: inherit;
}

.posts-item .item-tags a {
  font-size: 11px;
  padding: 2px 5px;
  margin-right: 5px;
}

.posts-item .item-tags a .fa {
  font-size: 1em;
}

.posts-item.card {
  width: calc(33.333% - 16px);
  display: inline-block;
  margin: 8px;
  padding: 10px;
  vertical-align: top;
  transition: 0.3s;
}

.posts-item.card:last-child {
  margin-bottom: 20px;
}

.posts-item.card .item-body {
  width: 100%;
  margin: 10px 0 0 0;
  padding: 0;
}

.posts-item.card .item-meta item {
  font-size: 12px;
}

.posts-item.card .item-heading,
.posts-mini-con .item-heading {
  font-size: 14px;
}

.posts-item.card .item-heading {
  min-height: 2.8em;
}

.posts-item.card .item-tags {
  min-height: 23px;
}

.posts-mini-con .badg {
  min-width: 18px;
}

.posts-item.card .item-thumbnail {
  width: 100%;
  padding-bottom: var(--posts-card-scale);
}

.posts-item.card.style2 {
  background: 0 0;
  box-shadow: none;
}

.posts-item.card.style2:hover {
  background: var(--main-bg-color);
  box-shadow: 0 0 10px var(--main-shadow);
}

.posts-item.card.style3 {
  padding: 0;
}

.posts-item.card.style3 .item-thumbnail,
.posts-item.card.style3 .item-thumbnail img {
  border-radius: var(--main-radius) var(--main-radius) 0 0;
}

.posts-item.card.style3 .item-body {
  padding: 10px;
  margin: 0;
}

.swiper-scroll .posts-item {
  flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.swiper-scroll .posts-item.card {
  margin: 0 !important;
  margin-right: 21px !important;
}

.posts-item.mult-thumb .thumb-items {
  margin: 0 -3px 6px -3px;
}

.posts-item.mult-thumb .thumb-items>span {
  width: calc(25% - 6px);
  display: inline-block;
  height: 0;
  padding-bottom: calc(var(--posts-list-scale) / 4);
  margin: 0 3px;
  position: relative;
}

.posts-item.no_margin {
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}

.posts-item.no-thumb .item-excerpt {
  height: auto;
}

.posts-item.mult-thumb .thumb-items>span>img {
  position: absolute;
}

.posts-item+.pagenav {
  margin-top: -15px;
}

.posts-item.card+.pagenav {
  margin-top: -10px;
}

.no_margin:first-of-type {
  margin-top: 10px;
  border-radius: var(--main-radius) var(--main-radius) 0 0;
}

.no_margin:last-of-type {
  margin-bottom: 15px;
  border-radius: 0 0 var(--main-radius) var(--main-radius);
}

.posts-mini {
  padding: 10px;
  display: inline-flex;
  width: 50%;
}

.posts-mini-con {
  flex: auto;
  overflow: hidden;
}

.mobile-nav-widget .posts-mini,
.sidebar .posts-mini {
  width: 100% !important;
}

.mobile-nav-widget .posts-mini {
  padding-left: 0;
  padding-right: 0;
}

.mobile-navbar.left .posts-mini .meta-author>span,
.mobile-navbar.right .posts-mini .meta-author>span {
  display: none;
}

.posts-mini .item-thumbnail {
  width: 96px;
  height: 0;
  padding-bottom: var(--posts-list-scale);
  position: relative;
  overflow: hidden;
  border-radius: var(--main-radius);
}

.posts-mini:last-of-type {
  margin-bottom: 0;
}

.posts-mini .item-heading {
  margin: 0;
}

.posts-mini .item-heading.icon-circle {
  margin-left: -5px;
}

.posts-mini .item-meta {
  font-size: 12px;
}

.posts-mini-lists {
  padding: 5px;
}

.posts-mini-lists .tab-nav-theme {
  padding: 0 5px 2px;
}

.mobile-nav-widget .posts-mini-lists .tab-nav-theme {
  margin: 0 -5px;
  padding: 0;
}

.index-tab ul>li {
  display: inline-block;
  padding: 2px 11px;
  font-weight: 500;
  border-radius: 20px;
  margin: 0 1px;
}

.index-tab ul>li.active {
  background: var(--focus-color);
  --main-color: #fff;
}

.index-tab ul>li.active a {
  color: #fff !important;
}

.footer {
  color: var(--footer-color);
  background: var(--footer-bg);
  padding: 30px;
  font-size: 13px;
}

.footer a:not(.but):not(.focus-color) {
  color: var(--footer-color);
}

.footer a:hover {
  color: var(--focus-color);
}

.footer .list-inline>li {
  margin: 5px 15px;
}

.footer .list-inline>li+li+li {
  float: right;
}

.footer-miniimg {
  width: 90px;
  margin: 0 10px;
  text-align: center;
  vertical-align: text-top;
  display: inline-block;
}

.footer-contact>a {
  font-size: 20px;
  margin: 5px;
  width: 35px;
  height: 35px;
}

.footer-wechat-img {
  width: 140px;
  bottom: 90%;
  left: -55px;
  padding-bottom: 20px;
}

.footer-tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1035;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  background: var(--header-bg);
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 5px var(--main-shadow);
  -webkit-backdrop-filter: saturate(5) blur(20px);
  backdrop-filter: saturate(5) blur(20px);
  transition: transform 0.3s;
}

.scroll-ing .scrolling-hide.footer-tabbar {
  transform: translateY(120%);
}

.footer-tabbar .tabbar-item,
.footer-tabbar .tabbar-item a {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 49px;
  padding: 3px 0;
  color: var(--muted-color);
}

.tabbar-item.tabbar-ontop>a {
  position: absolute;
}

.ontop.tabbar-item {
  transform: translateY(55px);
}

.ontop.tabbar-item.show {
  display: flex !important;
}

.ontop.tabbar-item.show+a {
  transform: translateY(-55px);
}

.tabbar-item.active,
.tabbar-item.actived {
  color: var(--focus-color);
}

.tabbar-item>icon,
.tabbar-item>svg {
  font-size: 24px;
  line-height: 1em;
  height: 1em;
}

.tabbar-item>badge {
  font-size: 12px;
  transform: scale(0.8) translateX(13px);
  position: absolute;
  top: 1px;
}

.tabbar-item.newadd-btns {
  position: unset;
}

.tabbar-item .drop-newadd {
  top: auto;
  bottom: 59px;
  left: 10px;
  right: 10px;
  align-items: center;
  display: flex;
  padding: 10px 5px;
}

.tabbar-item .drop-newadd::before {
  bottom: -4px;
  top: auto;
  left: calc(50% - 4px);
}

.tabbar-item .btn-newadd {
  text-align: center;
}

.tabbar-item .btn-newadd icon {
  width: 46px;
  height: 46px;
  margin: 0 0 10px;
}

.tabbar-item .btn-newadd text {
  font-size: 16px;
}

.footer-tabbar text {
  width: 100%;
  font-size: 13px;
  line-height: 1em;
  transform: scale(0.8);
}

.footer-tabbar .single-action-tabbar {
  flex: unset;
  min-width: 40px;
  margin-right: 12px;
  flex-shrink: 0;
}

.footer-tabbar .single-action-tabbar:first-child {
  margin-left: 12px;
}

.footer-tabbar .single-pay-tabbar {
  background: var(--this-bg);
  color: var(--this-color);
  padding: 7px;
  flex: auto;
  min-height: auto;
  margin: 0 16px 0 12px;
  border-radius: 100px;
}

.footer-tabbar .single-action-tabbar text,
.footer-tabbar .virtual-input .but {
  display: none;
}

.footer-tabbar .virtual-input {
  flex: auto;
  height: auto;
  min-height: auto;
  margin: 0 12px;
  overflow: hidden;
}

.footer-tabbar count {
  color: var(--muted-2-color);
  border-radius: 20px;
  margin-top: -22px;
  font-size: 13px;
  line-height: 1em;
  transform: scale(0.8);
}

.footer-tabbar count:not(:empty) {
  margin-left: -15%;
}

.float-right {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 1030;
  text-align: center;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  transition: 0.3s;
}

.imgbox-show .float-right,
.modal-open .float-right,
.scroll-ing .scrolling-hide.float-right {
  transform: translateX(200%);
}

.scroll-ing .scrolling-hide.float-right.position-center {
  transform: translate(200%, -50%);
}

.tabbar-item.active {
  color: var(--focus-color);
}

.float-right.position-center {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}

.float-right .float-btn {
  width: 40px;
  line-height: 40px;
  display: block;
  font-size: 1.4em;
  --this-color: var(--muted-2-color);
  --this-bg: var(--float-btn-bg);
  background: var(--this-bg);
  position: relative;
  color: var(--this-color) !important;
}

.filter .float-btn {
  -webkit-backdrop-filter: saturate(2) blur(10px);
  backdrop-filter: saturate(2) blur(10px);
}

.float-right.square .float-btn+.float-btn {
  border-top: 1px solid var(--main-shadow);
}

.float-right.round .float-btn {
  margin-top: 6px;
  border-radius: 8px;
}

.float-btn.ontop {
  opacity: 0;
  transition: 0.5s;
  transform: translateY(10px);
  visibility: hidden;
}

.ontop.show {
  opacity: 1;
  transform: translateY(0);
  visibility: unset;
}

.float-btn .hover-show-con {
  right: 35px;
  left: auto;
  width: 200px;
  margin-right: 15px;
  top: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--main-color);
  padding: 10px;
  margin-top: 0;
  border-radius: var(--main-radius);
  cursor: auto;
}

.float-btn .dropdown-menu::before {
  left: auto;
  top: 15px;
  right: -5px;
}

.float-btn.service-wechat .hover-show-con {
  width: 120px;
  top: -40px;
  padding: 0;
}

.float-btn.service-wechat .dropdown-menu::before {
  top: 53px;
}

.float-btn.qrcode-btn .hover-show-con {
  width: 150px;
  top: -60px;
  padding: 16px 5px 12px;
  text-align: center;
}

.float-btn.qrcode-btn .qrcode {
  background: #fff;
  display: inline-flex;
  padding: 5px;
}

.float-btn.qrcode-btn .dropdown-menu::before {
  top: 73px;
}

.float-btn.newadd-btns .drop-newadd {
  width: 137px;
  top: -74px;
}

.float-btn.newadd-btns .drop-newadd::before {
  left: auto;
  top: 88px;
  right: -5px;
}

.search-input {
  max-width: 600px;
  margin: auto;
}

.search-input .line-form {
  display: flex;
  align-items: flex-end;
}

.search-input .line-form .search-input-text {
  flex-grow: 2;
}

.search-input .line-form .option-dropdown {
  flex-shrink: 0;
  padding-left: 2px;
}

.search-null-img {
  max-width: 300px;
  width: 100%;
  margin: 40px 0;
}

.search-loading .search-icon,
.search-loading .search-remind {
  color: var(--focus-color);
}

.page-content-full .article,
.page-content-nobox .article {
  all: unset;
}

.container.page-content-full {
  all: unset;
}

.article.page-article {
  padding-top: 30px;
}

.breadcrumb {
  background: 0 0;
  padding: 0 8px;
  opacity: 0.6;
  margin-bottom: 12px;
}

.breadcrumb>li+li:before {
  padding: 0 0 0 6px;
  opacity: 0.6;
}

.article {
  padding: 0 30px;
  overflow: hidden;
}

.item-thumbnail .abs-right,
.page-cover .article-meta {
  top: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
}

.single-cover-con .breadcrumb {
  font-size: 13px;
  margin: 5px 0 0 -6px;
  opacity: unset;
}

.article-cover-slide.page-cover {
  padding-bottom: 0 !important;
  overflow: unset;
  background: 0;
}

.article-title {
  line-height: 1.4;
}

.article-title>a:hover {
  color: inherit;
}

.article-header .article-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--key-color);
}

.article-header .article-avatar,
.article-header .article-title {
  margin-top: 15px;
}

.article-header .article-avatar .list-inline>li {
  padding-left: unset;
}

.article-header .article-avatar .relative {
  margin-top: 20px;
}

.single-metabox {
  right: 0;
  font-size: 15px;
  --meta-color: var(--muted-color);
}

.single-metabox .post-metas {
  background: var(--body-bg-color);
  right: 0;
  padding: 2px 6px;
  border-radius: 100px;
  color: var(--meta-color);
}

.single-metabox .post-metas item {
  margin: 0 6px;
}

.single-metabox .post-metas item a {
  color: inherit;
}

.single-metabox .post-metas item .fa,
.single-metabox .post-metas item .icon {
  margin-right: 3px;
}

.single-metabox .post-drop-meta {
  --this-size: 1.73em;
  --this-color: var(--meta-color);
  --this-bg: var(--body-bg-color);
}

.single-metabox .pull-right.dropdown .dropdown-menu::before {
  right: 7px;
}

.single-metabox .dropdown-menu>li>a {
  --this-color: var(--muted-color);
}

.single-metabox.cover-meta {
  font-size: 14px;
  right: 1em;
  top: 1.6em;
  --meta-color: rgba(255, 255, 255, 0.8);
  --body-bg-color: rgba(0, 0, 0, 0.3);
}

.article-header .avatar-button {
  margin-left: 50px;
}

.single-cover {
  padding-bottom: calc(var(--single-cover-scale) + 50px);
}

.single-cover-slide {
  padding-bottom: calc(var(--scale-height) + 50px);
  border-radius: var(--main-radius);
}

.single-cover-con {
  color: #fff;
  padding: 15px 15px 10px 15px;
  border-radius: 0 0 var(--main-radius) var(--main-radius);
  background-image: linear-gradient(0deg,
      rgba(29, 41, 49, 0.5),
      rgba(255, 255, 255, 0));
  padding-top: 2em;
}

.single-cover-con .article-title,
.single-video .article-title {
  font-size: 18px;
  font-weight: 700;
}

.featured-video-episode {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 14px;
}

.featured-video-episode .badg.badg-sm {
  min-width: 19px;
}

.featured-video-episode .switch-video {
  line-height: 1.6;
  border-radius: 4px;
  padding: 6px 20px;
  text-align: center;
  background: rgba(136, 136, 136, 0.1);
  --main-color: var(--muted-color);
  display: inline-block;
  margin: 4px 4px 0;
  min-width: calc(20% - 8px);
}

.switch-video .episode-active-icon {
  display: inline-block;
  width: 0;
  height: 1.2em;
  vertical-align: middle;
  margin-right: 0;
  transition: 0.6s;
}

.switch-video.active .episode-active-icon {
  background-image: url(../img/playing.svg);
  width: 1em;
  margin-right: 6px;
}

.switch-video.active {
  color: var(--focus-color);
}

.switch-video.active .badg {
  background: var(--focus-color);
  color: #fff;
}

.single-cover-con a {
  color: #fff;
}

.single-video {
  overflow: hidden;
  clear: both;
  background: var(--main-bg-color);
  box-shadow: 0 0 10px var(--main-shadow);
  border-radius: var(--main-radius);
  margin-bottom: 20px;
}

.single-video .article-title {
  margin: 0;
}

.single-video-footer {
  padding: 15px;
}

.single-video .breadcrumb {
  padding: 0;
}

.single-video .cover-meta {
  background: 0 0;
  padding: 0;
  color: var(--main-color);
}

.theme-posts-content {
  line-height: 2;
  font-size: 16px;
  min-height: 90px;
}

.limit-height {
  overflow: hidden;
  position: relative;
}

.limit-height .read-more {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-image: linear-gradient(0deg,
      var(--main-bg-color) 70px,
      rgba(255, 255, 255, 0) 100%);
  -webkit-animation: lazy_fade 0.5s;
  animation: lazy_fade 0.5s;
  z-index: 80;
}

.dark-theme .limit-height .read-more {
  background-image: linear-gradient(0deg,
      var(--main-bg-color) 70px,
      rgba(53, 54, 55, 0) 100%);
}

.limit-height .read-more a {
  padding: 25px 0;
  display: inline-block;
  color: var(--focus-color);
  margin-top: 80px;
}

.article-postsbox {
  line-height: 1.6;
  overflow: hidden;
  font-size: 14px;
  max-width: 550px;
  margin: auto;
  margin-bottom: 20px;
  box-shadow: none;
}

.article-postsbox .posts-mini {
  width: 100%;
}

.post-nav-links,
.post-page-numbers {
  line-height: 1;
}

.post-nav-links {
  background: var(--main-shadow);
}

.post-page-numbers.current {
  --this-bg: var(--focus-color);
  --this-color: #fff;
}

.article-postsbox .pay-tag {
  font-size: 12px;
  padding: 1px 5px;
}

.article-content .article-postsbox .item-meta a {
  color: inherit;
}

.article-postsbox .item-thumbnail img {
  border-radius: 4px;
}

.article-postsbox .abs-blur-bg,
.author-minicard .abs-blur-bg {
  opacity: 0.15;
}

.article-postsbox .posts-mini {
  width: 100% !important;
  margin: 0 !important;
  background: var(--muted-border-color);
  position: relative;
}

.comment-content a:not([class]),
.msg-content a:not([class]),
.private-content a:not([class]),
.theme-posts-content a:not([class]) {
  color: var(--focus-color);
}

.theme-posts-content .but a {
  color: inherit;
}

.theme-posts-content code:not([class]) {
  color: #ff3c98;
  background-color: rgba(253, 153, 153, 0.2);
  margin: 2px;
}

.theme-posts-content img {
  max-width: 100%;
  height: auto;
  /* display: block; */
  /* margin: auto; */
  border-radius: 15px;
}

.theme-posts-content img.fit-cover {
  height: 100%;
}

.theme-posts-content img.avatar {
  height: 100%;
  display: inline-block;
}

.theme-posts-content .alignright {
  text-align: right;
}

img.alignright {
  display: block;
  margin-left: auto;
}

img.alignleft {
  display: block;
  margin-right: auto;
}

.theme-posts-content .aligncenter {
  display: table;
  margin: auto;
}

.theme-posts-content .theme-block-table {
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  overflow-x: auto;
  margin-bottom: 20px;
  border: none;
}

.theme-posts-content .theme-block-table table {
  white-space: nowrap;
}

.theme-posts-content table {
  font-size: 14px;
  width: 100%;
}

.theme-posts-content tfoot,
.theme-posts-content thead {
  border: none;
}

.theme-posts-content tbody>tr>td,
.theme-posts-content tbody>tr>th,
.theme-posts-content tfoot>tr>td,
.theme-posts-content tfoot>tr>th,
.theme-posts-content thead>tr>td,
.theme-posts-content thead>tr>th {
  border: 1px solid var(--main-border-color);
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
}

.theme-posts-content tfoot>tr>td,
.theme-posts-content tfoot>tr>th,
.theme-posts-content thead>tr>td,
.theme-posts-content thead>tr>th {
  background: var(--muted-border-color);
}

.theme-posts-content thead>tr>td,
.theme-posts-content thead>tr>th {
  text-align: center;
}

.theme-posts-content tbody>tr {
  transition: 0.3s;
}

.theme-posts-content tbody>tr:hover {
  background-color: var(--focus-color-opacity1) !important;
}

.theme-posts-content .theme-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: var(--main-shadow);
}

.theme-posts-content .theme-block-table .has-background {
  color: #666;
}

.theme-posts-content h1,
.theme-posts-content h2,
.theme-posts-content h3,
.theme-posts-content h4,
.theme-posts-content h5 {
  margin: 20px 0;
  font-weight: 700;
}

.theme-posts-content h1 {
  font-size: 22px;
}

.theme-posts-content h2 {
  font-size: 20px;
}

.theme-posts-content h3 {
  font-size: 18px;
}

.theme-posts-content h4 {
  font-size: 16px;
}

.theme-posts-content h5,
.theme-posts-content h6 {
  font-size: 14px;
}

.theme-posts-content ol:not(.blocks-gallery-grid),
.theme-posts-content ul:not(.blocks-gallery-grid) {
  margin: 10px 0 20px 15px;
  padding-left: 15px;
}

.theme-posts-content ul {
  list-style: disc;
}

.theme-posts-content ol {
  list-style: decimal;
}

.theme-posts-content li {
  margin-bottom: 10px;
}

.theme-posts-content ul li:not(.blocks-gallery-item):last-of-type {
  margin-bottom: 0;
}

.theme-posts-content p {
  margin-bottom: 20px;
  word-wrap: break-word;
}

.theme-posts-content pre:not(.theme-block-code) {
  border: none;
  background: 0 0;
  padding: 0;
  margin: 0;
}

.theme-posts-content pre {
  background: var(--muted-border-color);
  color: var(--main-color);
}

.theme-posts-content .theme-block-code code {
  color: inherit;
  background-color: unset;
  margin: unset;
}

.article-content .article-tags a {
  font-size: 12px;
  margin: 3px;
}

.theme-block-image:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.blocks-gallery-grid.is-cropped .blocks-gallery-image a,
.blocks-gallery-grid.is-cropped .blocks-gallery-image img,
.blocks-gallery-grid.is-cropped .blocks-gallery-item a,
.blocks-gallery-grid.is-cropped .blocks-gallery-item img,
.theme-block-gallery.is-cropped .blocks-gallery-image a,
.theme-block-gallery.is-cropped .blocks-gallery-image img,
.theme-block-gallery.is-cropped .blocks-gallery-item a,
.theme-block-gallery.is-cropped .blocks-gallery-item img {
  overflow: hidden;
}

.post-tab {
  padding: 0 10px;
  border-radius: var(--main-radius);
  border: 1px solid var(--main-border-color);
}

.post-tab .tab-content {
  padding: 5px;
}

.post-tab.nav-left {
  display: flex;
}

.post-tab.nav-left .tab-nav-theme {
  border: none;
  border-right: 1px solid var(--main-border-color);
  padding-right: 8px;
  min-width: 80px;
  margin-right: 10px;
}

.post-tab.nav-left .tab-nav-theme>li {
  display: block;
  padding: 0;
  margin-left: 6px;
}

.post-tab.nav-left .post-tab-toggle {
  padding: 8px;
  display: block;
}

.post-tab.nav-left .tab-nav-theme li:before {
  width: 2px;
  top: 10px;
  bottom: 10px;
  left: 0;
  right: auto;
  height: auto !important;
}

.post-tab.nav-left .tab-content {
  flex: 1;
}

.post-tab.nav-left.nav-right .tab-nav-theme {
  order: 2;
  margin-right: 0;
  padding-right: 0;
  border: none;
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid var(--main-border-color);
}

.single-posts-lists .posts-mini .item-heading a {
  color: var(--main-color);
}

.single-posts-lists .posts-mini .item-heading a:hover {
  color: var(--focus-color);
}

.article-content .article-tags a {
  font-size: 12px;
  margin: 3px;
}

.post-dplayer,
.theme-block-gallery,
.theme-block-image {
  margin-bottom: 20px;
}

.article .post-actions {
  padding-bottom: 15px;
}

.article .action {
  width: 80px;
  padding: 10px 0;
  display: inline-block;
  opacity: 0.7;
  vertical-align: top;
}

.article .action:hover {
  color: inherit;
  opacity: 1;
}

.article .action .icon {
  font-size: 24px;
  width: 100%;
  margin: 5px 0;
}

.article .action count,
.article .action text {
  opacity: 0.7;
  font-size: 0.9em;
}

.action.actived {
  color: var(--focus-color);
}

.article .action.actived {
  opacity: 0.9;
}

.article .action count {
  margin-left: 2px;
}

.action-share {
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  z-index: 90;
}

.action-share.show-share {
  opacity: 1;
}

.share-button {
  width: 130px;
  margin-bottom: -10px !important;
  left: -24px;
}

.dropup .share-button.dropdown-menu::before {
  left: 59px;
}

.share-button .share-btn {
  display: flex;
  align-items: center;
}

.share-button .share-btn+.share-btn {
  margin-top: 10px;
}

.drop-newadd icon,
.share-btn icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  border-radius: 100%;
  background: var(--main-border-color);
  justify-content: center;
  align-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.drop-newadd icon>svg {
  margin: 0 !important;
  color: inherit;
}

.share-btn icon .icon {
  margin: auto !important;
}

.share-button .share-btn icon {
  margin-right: 10px;
}

.share-button .share-btn .icon {
  width: 1em;
  font-size: inherit;
}

.share-button .share-btn:hover {
  opacity: 0.8;
}

.horizontal .share-btn {
  display: inline-flex;
  text-align: center;
  width: 4em;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2px 4px;
}

.horizontal .share-btn icon {
  display: flex;
  margin-bottom: 6px;
  width: 50px;
  height: 50px;
  font-size: 28px;
}

.drop-newadd {
  border-radius: var(--main-radius);
}

.drop-newadd text,
.horizontal .share-btn text {
  font-size: 12px;
  color: var(--muted-color);
}

.drop-newadd icon {
  margin-right: 6px;
  background: var(--this-bg);
}

.drop-newadd .btn-newadd {
  display: flex;
  align-items: center;
  padding: 5px;
}

.author-tag .badg,
.author-tag .but {
  margin-right: 5px;
  margin: 2px;
  padding: 0.15em 0.4em;
  font-size: 12px;
  font-weight: 400;
}

.author-tag a .fa,
.author-tag a .icon,
.author-tag>span .fa,
.author-tag>span .icon,
.item-meta item .icon {
  margin-right: 2px;
}

.social-separator {
  padding: 10px 0;
}

.relates-content .graphic-text {
  padding: 2px 6px;
  font-size: 13px;
}

.relates .no-thumb li+li {
  margin-top: 10px;
}

.search-input .relates-thumb li,
.user-card .more-posts .swiper-slide {
  width: 150px;
}

.relates-thumb li a,
.user-card .more-posts a {
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  display: block;
  overflow: hidden;
}

.relates-thumb .swiper-slide {
  width: 220px;
}

.relates-thumb .graphic {
  margin-bottom: 0;
}

.mini-scrollbar>li {
  padding-left: 0;
  padding-right: 8px;
}

.relates-thumb .relates-content ul {
  padding: 5px 0;
  margin: -5px 0;
}

.article-nav .box-body {
  width: calc(50% - 7px);
  margin: 0;
  display: inline-block;
}

.article-nav .box-body+.box-body {
  margin-right: 0;
  float: right;
  text-align: right;
}

#comments #cancel-comment-reply-link,
#comments .action-text {
  display: none;
}

#comments #postcomments #cancel-comment-reply-link,
#comments #postcomments .action-text {
  display: inline-block;
}

#comments .comt-title {
  width: 90px;
}

#comments .comt-title .comt-avatar .avatar {
  width: 60px;
  height: 60px;
}

#comments #postcomments .comt-title {
  display: none;
}

#respond:not(.mobile-fixed) #postcomments .comt-box {
  padding: 5px 5px 4px 5px;
  background: var(--main-bg-color);
  border-radius: 4px;
  margin-top: 12px;
}

#comments #postcomments .comt-ctrl .but {
  margin-bottom: 2px;
}

#comments .list-inline {
  padding: 15px;
}

#comment {
  margin-bottom: 5px;
}

.comment-signarea {
  background: var(--main-shadow);
}

#respond+#postcomments .comment-filter,
.comment-signarea+#postcomments .comment-filter {
  margin-top: 20px;
}

#postcomments .tab-nav-theme {
  margin-top: 0;
}

#postcomments .tab-nav-theme li {
  padding-bottom: 1px;
}

#postcomments .tab-nav-theme li::before {
  bottom: -2px;
}

.smilie-icon {
  width: 30px !important;
}

#postcomments .comment-footer {
  position: relative;
}

#postcomments .avatar-img {
  --this-size: 45px;
  margin-right: 20px;
}

#postcomments .children .avatar-img {
  --this-size: 26px;
  vertical-align: 2px;
  margin-right: 6px;
}

#postcomments .commentlist>.comment>.list-inline .author-box {
  align-items: start;
}

.author-header .display-name {
  font-size: 20px;
  font-weight: 700;
}

.author-header .desc {
  max-width: 520px;
}

.author-header .cover-btns .item {
  opacity: 0.8;
}

.author-tab .posts-item {
  background: 0 0;
  box-shadow: none;
}

.lists-nav .tab-nav-theme>li>a {
  display: flex;
  padding: 10px 6px;
  align-items: center;
  border-radius: 6px;
}

.user-icon-but-box>item {
  width: calc(25% - 10px);
  margin: 5px;
  min-width: 50px;
  max-width: 100px;
  cursor: pointer;
}

.preview .add,
.preview-item {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  background: var(--muted-border-color);
  margin: 5px;
  vertical-align: top;
}

.preview-item img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  border-radius: 4px;
  height: 100%;
}

.preview-item .ic-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 18px;
  height: 18px;
  background-image: url('../img/svg/icon-close.svg');
  background-size: cover;
  color: #fff;
  border-radius: 100%;
  padding: 2px;
  font-size: 18px;
  cursor: pointer;
}

.pillar-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  overflow: unset;
}

.pillar-item+.pillar-item {
  padding-left: 20px;
}

.pillar-item .pillar {
  width: 6px;
  border-radius: 6px;
  background: linear-gradient(0deg, #707479 10%, #bfc5cc 100%);
}

.pillar-item.active~.pillar-item {
  opacity: 0.5;
}

.pillar-item.active {
  color: #b97030;
}

.pillar-item.active .pillar {
  background: linear-gradient(0deg, #c1764a 10%, #e8c48e 100%);
}

.user-card.author .card-content,
.user-card.author .user-content {
  display: flex;
  align-items: center;
}

.chat-lists badge {
  transform: translate(-7px, -7px);
}

.chat-lists .avatar,
.private-item .avatar {
  border-radius: 4px;
}

.theme-block-gallery .blocks-gallery-image figcaption,
.theme-block-gallery .blocks-gallery-item figcaption {
  padding: 10px 10px 5px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0, 60%, transparent);
  font-size: 1em;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.theme-block-gallery .blocks-gallery-image figcaption,
.theme-block-gallery .blocks-gallery-item figcaption {
  font-size: 0.8em;
  padding: 10px 10px 3px;
  line-height: 18px;
}

.fluid-widget .posts-item:not(.card),
.site-layout-1 .posts-item:not(.card) {
  margin: 8px;
  display: inline-flex;
  width: calc(50% - 16px);
}

.fluid-widget .posts-item.no_margin,
.site-layout-1 .posts-item.no_margin {
  border-radius: var(--main-radius);
}

.author-tab .posts-item {
  padding: 10px 0;
}

.posts-item .item-thumbnail {
  width: 138px;
}

.list.style2 .item-thumbnail,
.posts-mini .item-thumbnail {
  width: 90px;
}

.posts-item .post-graphic:not(.order1) {
  margin-right: 15px;
}

.posts-item .order1.post-graphic {
  margin-left: 15px;
}

.posts-item .item-heading {
  font-size: 15px;
}

.drop-fixed-sm .dropdown-menu::before,
.posts-item:not(.no-thumb) .item-excerpt {
  display: none;
}

.posts-item.card {
  width: calc(50% - 10px);
  margin: 5px;
}

.posts-item.card:nth-child(odd) {
  margin-right: 5px;
}

.posts-item.card:nth-child(even) {
  margin-left: 5px;
}

.posts-item.mult-thumb .thumb-items>span {
  width: calc(33.333% - 6px);
  padding-bottom: calc(var(--posts-list-scale) / 3);
}

.posts-item.mult-thumb .thumb-items>span:nth-child(4) {
  display: none;
}

.posts-item:not(.no-thumb) .meta-right item {
  display: none;
}

.posts-item {
  padding: 10px;
  margin: 10px 0;
}

.zib-widget .posts-item.no_margin {
  padding: 10px 0;
}

.single-metabox .post-metas item {
  margin: 0 4px;
}

.hidden-box.flex {
  align-items: center;
  line-height: 1.4;
}

.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(/images/svg-icons/7306-pepegay.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
}
