.wx_assort {
  position: relative;
  font-size: 14px;
  margin-right: 15px;
  transition: color 0.35s;
  white-space: nowrap;
  color: var(--main);
}
.wx_assort_link {
  display: flex;
  align-items: center;
}
.wx_assort_link-icon {
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition:
    transform 0.35s,
    -webkit-transform 0.35s;
}
.wx_assort_si {
  position: absolute;
  left: 50%;
  visibility: hidden;
  z-index: 999;
  -webkit-transform-origin: top;
  transform-origin: top;
  background: var(--top);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  -webkit-transform: translateX(-50%) perspective(600px) rotateX(-45deg);
  transform: translateX(-50%) perspective(600px) rotateX(-45deg);
  transition:
    opacity 0.35s,
    visibility 0.35s,
    -webkit-transform 0.35s;
  transition:
    opacity 0.35s,
    visibility 0.35s,
    transform 0.35s;
  transition:
    opacity 0.35s,
    visibility 0.35s,
    transform 0.35s,
    -webkit-transform 0.35s;
}
.wx_assort.active .wx_assort_link-icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.wx_assort.active .wx_assort_si {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%) perspective(600px) rotateX(0);
  transform: translateX(-50%) perspective(600px) rotateX(0);
}
.wx_header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  transition: top 0.35s;
}
.wx_header.active {
  top: 0px;
}
.wx_header.active .header_below {
  border-top: none;
}
.wx_header.active.current .header_below-title {
  display: block;
}
.header_internal {
  position: relative;
  z-index: 999;
  background: var(--background);
  backdrop-filter: blur(2px);
}
.header_internal .wx_total {
  max-width: 1280px;
  align-items: center;
}
.header_internal-logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
  padding-right: 10px;
  margin-right: 10px;
}
.header_internal-logo img {
  min-width: 40px;
  max-width: 150px;
  height: 40px;
  object-fit: cover;
  border-radius: 5%;
}
.header_internal-logo .wx_logo.night {
  display: none;
}
.header_internal_nav {
  display: flex;
  align-items: center;
}
.header_internal_nav .item {
  position: relative;
  height: 60px;
  line-height: 60px;
  font-size: 15px;
  padding: 0 5px;
  margin-right: 15px;
  transition: color 0.35s;
  white-space: nowrap;
  color: var(--main);
}
.header_internal_nav .item:last-child {
}
.header_internal_nav .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition:
    opacity 0.5s,
    -webkit-transform 0.5s;
  transition:
    opacity 0.5s,
    transform 0.5s;
  transition:
    opacity 0.5s,
    transform 0.5s,
    -webkit-transform 0.5s;
  border-radius: 6px 6px 0 0;
  opacity: 0;
  -webkit-transform: scaleX(0.25);
  transform: scaleX(0.25);
  background: var(--theme);
}
.header_internal_nav .item.active,
.header_internal_nav .item:hover {
  color: var(--theme);
}
.header_internal_nav .item.active::after,
.header_internal_nav .item:hover::after {
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.header_internal_nav .wx_assort_link a {
  height: 60px;
  line-height: 60px;
  font-size: 15px;
  padding-left: 5px;
  padding-right: 3px;
  transition: color 0.35s;
  white-space: nowrap;
  color: var(--main);
}
.header_internal_nav .wx_assort_si a {
  display: block;
  line-height: 42px;
  height: 42px;
  transition: 0.35s;
  color: var(--routine);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 15px;
}
.header_internal_nav .wx_assort_si a:hover,
.header_internal_nav .wx_assort_si a.active {
  background: var(--Toolbox);
  color: var(--theme);
  transition: 0.35s;
}
.header_internal-searchicon,
.header_internal-slideicon {
  display: none;
  width: 19px;
  height: 19px;
  fill: var(--routine);
  cursor: pointer;
}
.header_internal-searchicon {
  margin-left: auto;
}
.header_below {
  position: relative;
}
.header_below-title {
  max-width: 450px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: none;
  line-height: 45px;
  font-size: 17px;
  font-weight: 700;
  color: var(--main);
  -webkit-animation: showHeaderTitle 0.35s;
  animation: showHeaderTitle 0.35s;
}
.header_below-classify {
  display: flex;
}
.header_below-classify .item {
  margin-right: 15px;
  color: var(--routine);
  height: 45px;
  line-height: 45px;
  transition: color 0.35s;
  white-space: nowrap;
}
.header_below-classify .item:hover,
.header_below-classify .item.active {
  color: var(--theme);
}
.header_below-classify .wx_assort {
  margin-right: 15px;
}
.header_below-classify .wx_assort_link .item {
  margin-right: 3px;
}
.header_below-classify .wx_assort_si a {
  display: block;
  height: 42px;
  line-height: 42px;
  padding: 0 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--minor);
  transition:
    color 0.35s,
    background 0.35s;
}
.header_below-classify .wx_assort_si a:hover,
.header_below-classify .wx_assort_si a.active {
  color: var(--theme);
  background: var(--classD);
}
.header_search {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 890;
  background: var(--background);
  border-top: 1px solid var(--classC);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  transition:
    visibility 0.35s,
    -webkit-transform 0.35s;
  transition:
    transform 0.35s,
    visibility 0.35s;
  transition:
    transform 0.35s,
    visibility 0.35s,
    -webkit-transform 0.35s;
  visibility: hidden;
}
.header_search.active {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.header_search_all {
  padding: 10px 0 20px;
  width: 100%;
}
.header_search_all .search {
  width: 100%;
  display: flex;
  align-items: center;
}
.header_search_all .search input {
  flex: 1;
  height: 36px;
  padding: 0 18px;
  border: 1px solid var(--classB);
  border-right: none;
  border-radius: 20px 0 0 20px;
  color: var(--routine);
  background: var(--classD);
}
.header_search_all .search button {
  white-space: nowrap;
  padding: 0 15px;
  height: 36px;
  border: none;
  background: var(--theme);
  color: #fff;
  border-radius: 0px 20px 20px 0px;
  letter-spacing: 0.1em;
}
.header_search_all .title {
  color: var(--main);
  padding: 15px 0 15px;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.header_search_all .title .icon {
  width: 22px;
  height: 22px;
  fill: var(--routine);
  margin-right: 5px;
}
.header_search_all .cloud {
  display: flex;
  flex-wrap: wrap;
}
.header_search_all .cloud .item {
  padding: 5px;
}
.header_search_all .cloud .item a {
  display: block;
  transition: 0.15s ease-out;
  color: #fff;
  padding: 3px 6px;
  font-size: 13px;
  border-radius: 2px;
}
.header_roll {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80%;
  z-index: 1020;
  background: var(--top);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  transition:
    visibility 0.35s,
    -webkit-transform 0.35s;
  transition:
    transform 0.35s,
    visibility 0.35s;
  transition:
    transform 0.35s,
    visibility 0.35s,
    -webkit-transform 0.35s;
  overflow-y: auto;
  padding: 100px 15px 15px;
}
.header_roll.active .iconfont {
  margin-right: 5px;
}
.header_roll::before {
  content: "";
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    var(--background)
  );
}
.header_roll::-webkit-scrollbar {
  display: none;
}
.header_roll.active {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.header_roll-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
.header_roll-author {
  margin-bottom: 15px;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header_roll-author .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.header_roll-author .info {
  overflow: hidden;
  line-height: 25px;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}
.header_roll-author .info .link,
.header_roll-author .info .motto {
  text-overflow: ellipsis;
  overflow: hidden;
}
.header_roll-author .info .link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--main);
}
.header_roll-author .info .motto {
  font-size: 13px;
  color: var(--routine);
}
.header_roll-count {
  margin-bottom: 15px;
}
.header_roll-count .item {
  display: flex;
  align-items: center;
  color: var(--routine);
  padding: 5px 0;
}
.header_roll-count .item .icon {
  width: 15px;
  height: 15px;
  fill: var(--routine);
  margin-right: 5px;
}
.header_roll-count .item strong {
  font-weight: 500;
  color: var(--theme);
}
.header_roll-menu .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--main);
  transition: color 0.15s;
}
.header_roll-menu .link a {
  transition: color 0.15s;
  color: var(--routine);
}
.header_roll-menu .link .icon {
  fill: var(--minor);
  transition:
    fill 0.15s,
    -webkit-transform 0.15s;
  transition:
    transform 0.15s,
    fill 0.15s;
  transition:
    transform 0.15s,
    fill 0.15s,
    -webkit-transform 0.15s;
}
.header_roll-menu .link.in {
  color: var(--theme);
}
.header_roll-menu .link.in a {
  color: var(--theme);
}
.header_roll-menu .link.in .icon {
  fill: var(--theme);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header_roll-menu .current a {
  color: var(--theme);
  font-weight: 500;
}
.header_roll-menu .slides {
  display: none;
  padding-left: 25px;
}
.header_roll-menu .slides .link {
  color: var(--routine);
}
.header_roll-menu .slides .current {
  color: var(--theme);
  font-weight: 500;
}
.header_hyal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition:
    visibility 0.35s,
    opacity 0.35s;
  z-index: 880;
}
.header_hyal.active {
  visibility: visible;
  opacity: 1;
}
.header_hyal.slideout {
  z-index: 1010;
}
.showInUp {
  padding-top: 2rem;
  -webkit-animation: showInUp 1s;
  animation: showInUp 1s;
}
.wx_aside {
  width: 260px;
  margin-left: 20px;
}
.wx_aside_item {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--radius-wrap);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.wx_aside_item:last-child {
  position: -webkit-sticky;
  position: sticky;
  margin-bottom: 0;
  transition: top 0.35s;
}
.wx_aside_item-title {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--classC);
  font-size: 15px;
  font-weight: 500;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  color: var(--main);
}
.wx_aside_item-title .icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: var(--main);
}
.wx_aside_item-title .line {
  width: 10px;
  height: 1px;
  background: #54b5db;
  margin-left: 12px;
}
.wx_aside_item-contain {
  position: relative;
  padding: 15px;
}
.wx_aside_item.author {
  background: var(--background);
  padding: 85px 15px 15px;
}
.wx_aside_item.author::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fcfcfc);
}
.wx_aside_item.author:hover::after {
  display: block;
}
.wx_aside_item.author .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.wx_aside_item.author .user {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 25px;
}
.wx_aside_item.author .user .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.75s;
  transition: transform 0.75s;
  transition:
    transform 0.75s,
    -webkit-transform 0.75s;
  border: rgba(144, 147, 153, 0.23) 3px solid;
  padding: 0px;
}
.wx_aside_item.author .user .avatar:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.wx_aside_item.author .user .link {
  color: var(--theme);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}
.wx_aside_item.author .user .link:hover {
  text-decoration: underline;
}
.wx_aside_item.author .user .motto {
  color: var(--main);
  text-align: center;
  word-break: break-word;
}
.wx_aside_item.author .count {
  width: 100%;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--classC);
}
.wx_aside_item.author .count .item {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--routine);
  font-size: 13px;
}
.wx_aside_item.author .count .item .num {
  max-width: 70px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--main);
  margin-bottom: 3px;
  text-shadow: var(--text_shadow);
}
.wx_aside_item.author .list {
  padding-top: 15px;
}
.wx_aside_item.author .list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 30px;
}
.wx_aside_item.author .list .item .link {
  position: relative;
  color: var(--routine);
  max-width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wx_aside_item.author .list .item .link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--theme);
  transition: all 0.35s;
}
.wx_aside_item.author .list .item .link:hover {
  color: var(--theme);
}
.wx_aside_item.author .list .item .link:hover::after {
  width: 100%;
}
.wx_aside_item.author .list .item .icon {
  fill: var(--routine);
}
.wx_aside_item.timelife {
  background: var(--background);
}
.wx_aside_item.timelife .item {
  margin-bottom: 15px;
}
.wx_aside_item.timelife .item:last-child {
  margin-bottom: 0;
}
.wx_aside_item.timelife .item .title {
  font-size: 12px;
  color: var(--minor);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.wx_aside_item.timelife .item .title .text {
  color: var(--theme);
  font-weight: 500;
  font-size: 14px;
  margin: 0 5px;
}
.wx_aside_item.timelife .item .progress {
  display: flex;
  align-items: center;
}
.wx_aside_item.timelife .item .progress-bar {
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--classC);
  width: 0;
  min-width: 0;
  flex: 1;
  margin-right: 5px;
}
.wx_aside_item.timelife .item .progress-bar-inner {
  width: 0;
  height: 100%;
  border-radius: 5px;
  transition: width 0.35s;
  -webkit-animation: progress 750ms linear infinite;
  animation: progress 750ms linear infinite;
}
.wx_aside_item.timelife .item .progress-bar-inner-0 {
  background: #bde6ff;
  background-image: linear-gradient(
    135deg,
    #50bfff 25%,
    transparent 25%,
    transparent 50%,
    #50bfff 50%,
    #50bfff 75%,
    transparent 75%,
    transparent 100%
  );
  background-size: 30px 30px;
}
.wx_aside_item.timelife .item .progress-bar-inner-1 {
  background: #ffd980;
  background-image: linear-gradient(
    135deg,
    #f7ba2a 25%,
    transparent 25%,
    transparent 50%,
    #f7ba2a 50%,
    #f7ba2a 75%,
    transparent 75%,
    transparent 100%
  );
  background-size: 30px 30px;
}
.wx_aside_item.timelife .item .progress-bar-inner-2 {
  background: #ffa9a9;
  background-image: linear-gradient(
    135deg,
    #ff4949 25%,
    transparent 25%,
    transparent 50%,
    #ff4949 50%,
    #ff4949 75%,
    transparent 75%,
    transparent 100%
  );
  background-size: 30px 30px;
}
.wx_aside_item.timelife .item .progress-bar-inner-3 {
  background: #67c23a;
  background-image: linear-gradient(
    135deg,
    #4f9e28 25%,
    transparent 25%,
    transparent 50%,
    #4f9e28 50%,
    #4f9e28 75%,
    transparent 75%,
    transparent 100%
  );
  background-size: 30px 30px;
}
.wx_aside_item.timelife .item .progress-percentage {
  color: var(--minor);
}
.wx_aside_item.hot {
  background: var(--background);
}
.wx_aside_item.hot .empty {
  text-align: center;
  color: var(--routine);
}
.wx_aside_item.hot .item {
  margin-bottom: 15px;
}
.wx_aside_item.hot .item:last-child {
  margin-bottom: 0;
}
.wx_aside_item.hot .item:nth-child(1) .link .sort {
  background: #ff183e;
}
.wx_aside_item.hot .item:nth-child(2) .link .sort {
  background: #ff5c38;
}
.wx_aside_item.hot .item:nth-child(3) .link .sort {
  background: #ffb821;
}
.wx_aside_item.hot .item .link {
  position: relative;
  display: block;
  border-radius: var(--radius-inner);
  overflow: hidden;
}
.wx_aside_item.hot .item .link:hover .image {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.wx_aside_item.hot .item .link .sort {
  position: absolute;
  top: 5px;
  right: -20px;
  background: #7f7f8c;
  color: #fff;
  width: 65px;
  text-align: center;
  font-size: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  font-weight: 500;
  z-index: 1;
  font-style: normal;
}
.wx_aside_item.hot .item .link .image {
  width: 100%;
  height: 130px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition:
    transform 0.35s,
    -webkit-transform 0.35s;
}
.wx_aside_item.hot .item .link .describe {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  font-size: 12px;
  color: var(--seat);
}
.wx_aside_item.hot .item .link .describe h6 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  line-height: 24px;
  font-size: 14px;
}
.wx_aside_item.today {
  background: var(--background);
}
.wx_aside_item.newreply {
  background: var(--background);
}
.wx_aside_item.newreply .empty {
  text-align: center;
  color: var(--routine);
}
.wx_aside_item.newreply .item {
  margin-bottom: 15px;
  border-bottom: 1px dashed var(--classC);
  padding-bottom: 15px;
}
.wx_aside_item.newreply .item:last-child {
  margin-bottom: 0;
  border-bottom-color: transparent;
  padding-bottom: 0;
}
.wx_aside_item.newreply .item .user {
  display: flex;
  margin-bottom: 12px;
}
.wx_aside_item.newreply .item .user .avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  margin-right: 12px;
  border-radius: 50%;
  border: 1px solid var(--classA);
  padding: 2px;
}
.wx_aside_item.newreply .item .user .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wx_aside_item.newreply .item .user .info .author {
  color: var(--main);
  font-weight: 500;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wx_aside_item.newreply .item .user .info .date {
  font-size: 13px;
  color: var(--minor);
}
.wx_aside_item.newreply .item .reply {
  position: relative;
  background: var(--classD);
  border-radius: 6px;
  padding: 5px 10px;
}
.wx_aside_item.newreply .item .reply::before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 6px solid var(--classD);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  left: 15px;
  bottom: 100%;
}
.wx_aside_item.newreply .item .reply .link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  color: var(--minor);
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.35s;
  max-height: 48px;
}
.wx_aside_item.newreply .item .reply .link:hover {
  color: var(--theme);
}
.wx_aside_item.newreply .item .reply .link .owo_image {
  height: 18px;
  vertical-align: -5px;
}
.wx_aside_item.advert {
  display: block;
}
.wx_aside_item.advert img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.wx_aside_item.advert .icon {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 5px;
  border-radius: 2px;
  color: #ebebeb;
  pointer-events: none;
}
.wx_aside_item.tags {
  background: var(--background);
}
.wx_aside_item.tags .empty {
  text-align: center;
  color: var(--routine);
}
.wx_aside_item.flatterer {
  background: var(--background);
}
.wx_aside_item.flatterer .content {
  border-style: solid;
  border-color: var(--classC);
  padding: 15px;
  line-height: 1.8;
  background: var(--classD);
  color: var(--routine);
  margin-bottom: 15px;
}
.wx_aside_item.flatterer .content mark {
  background-color: transparent;
  background-image: linear-gradient(#ffe21d, #ffe21d);
  background-position: 0 85%;
  background-size: 100% 25%;
  background-repeat: no-repeat;
  color: var(--routine);
}
.wx_aside_item.flatterer .content.type1 {
  border-bottom-left-radius: 15px 255px;
  border-bottom-right-radius: 225px 15px;
  border-top-left-radius: 255px 15px;
  border-top-right-radius: 15px 225px;
}
.wx_aside_item.flatterer .content.type2 {
  border-bottom-left-radius: 185px 25px;
  border-bottom-right-radius: 20px 205px;
  border-top-left-radius: 125px 25px;
  border-top-right-radius: 10px 205px;
}
.wx_aside_item.flatterer .content.type3 {
  border-bottom-left-radius: 225px 15px;
  border-bottom-right-radius: 15px 255px;
  border-top-left-radius: 15px 225px;
  border-top-right-radius: 255px 15px;
}
.wx_aside_item.flatterer .content.type4 {
  border-bottom-left-radius: 25px 115px;
  border-bottom-right-radius: 155px 25px;
  border-top-left-radius: 15px 225px;
  border-top-right-radius: 25px 150px;
}
.wx_aside_item.flatterer .content.type5 {
  border-bottom-left-radius: 20px 115px;
  border-bottom-right-radius: 115px 20px;
  border-top-left-radius: 250px 15px;
  border-top-right-radius: 25px 80px;
}
.wx_aside_item.flatterer .content.type6 {
  border-bottom-left-radius: 15px 225px;
  border-bottom-right-radius: 20px 205px;
  border-top-left-radius: 28px 125px;
  border-top-right-radius: 100px 30px;
}
.wx_aside_item.flatterer .change {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto;
  cursor: pointer;
  border: 2px solid var(--classC);
}
.wx_aside_item.flatterer .change .icon {
  fill: var(--routine);
}
.wx_alert {
  padding: 10px;
  border-radius: var(--radius-inner);
  line-height: 26px;
}
.wx_alert.info {
  background: #abdcff;
  color: #000;
}
.wx_alert.success {
  background: #8ce6b0;
  color: #000;
}
.wx_alert.warning {
  background: #ffd77a;
  color: #000;
}
.wx_alert.error {
  background: #ffb08f;
  color: #000;
}
.wx_alert *:last-child {
  margin-bottom: 0 !important;
}
.wx_gird {
  display: grid;
}
.wx_gird__item *:last-child {
  margin-bottom: 0 !important;
}
.wx_checkbox {
  -webkit-appearance: none;
  position: relative;
  border-radius: 2px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--theme);
  vertical-align: -2px;
}
.wx_checkbox:disabled {
  cursor: not-allowed;
}
.wx_checkbox:checked {
  border: none;
  background: var(--theme);
}
.wx_checkbox:checked::after {
  content: "";
  width: 3px;
  height: 7px;
  position: absolute;
  top: 2px;
  left: 5px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.wx_mtitle {
  display: flex;
  justify-content: center;
}
.wx_mtitle__text {
  position: relative;
  color: var(--minor);
  padding: 0 12px;
  transition: padding 0.35s;
}
.wx_mtitle__text:hover {
  padding: 0;
}
.wx_mtitle__text::before,
.wx_mtitle__text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--theme);
}
.wx_mtitle__text::before {
  left: -35px;
}
.wx_mtitle__text::after {
  right: -35px;
}
.wx_abtn {
  display: inline-block;
  color: #fff;
  height: 35px;
  line-height: 35px;
  padding: 0 15px;
  transition: 0.2s;
}
.wx_abtn:hover {
  opacity: 0.8;
}
.wx_abtn__content {
  color: #fff;
  display: inline-block;
  vertical-align: top;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wx_dotted {
  display: block;
  width: 100%;
  height: 2px;
  background-size: 80px;
}
.wx_hide {
  color: #e39b52;
  display: block;
  background: repeating-linear-gradient(
    145deg,
    var(--classD),
    var(--classD) 15px,
    var(--background) 0,
    var(--background) 25px
  );
  padding: 20px 0;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: normal;
}
.wx_hide__button {
  position: relative;
  font-style: normal;
  cursor: pointer;
  color: var(--theme);
}
.wx_message {
  display: block;
  position: relative;
  border-left-width: 4px;
  border-left-style: solid;
  padding: 8px 15px;
  border-radius: 0 4px 4px 0;
  line-height: 26px;
}
.wx_message:hover .wx_message__icon {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.wx_message__icon {
  position: absolute;
  top: -9px;
  left: -11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: -webkit-transform 0.85s;
  transition: transform 0.85s;
  transition:
    transform 0.85s,
    -webkit-transform 0.85s;
}
.wx_message__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  fill: #fff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.wx_message.success {
  border-left-color: #2bde3f;
  background: #2bde3f20;
  color: #2bde3f;
}
.wx_message.success .wx_message__icon {
  background: #2bde3f;
}
.wx_message.success .wx_message__icon::before {
  background-image: url(/usr/themes/omnia/assets/img/tips/success.svg);
}
.wx_message.info {
  border-left-color: #1d72f3;
  background: #1d72f320;
  color: #1d72f3;
}
.wx_message.info .wx_message__icon {
  background: #1d72f3;
}
.wx_message.info .wx_message__icon::before {
  background-image: url(/usr/themes/omnia/assets/img/tips/info.svg);
}
.wx_message.warning {
  border-left-color: #ffc007;
  background: #ffc00720;
  color: #ffc007;
}
.wx_message.warning .wx_message__icon {
  background: #ffc007;
}
.wx_message.warning .wx_message__icon::before {
  background-image: url(/usr/themes/omnia/assets/img/tips/warning.svg);
}
.wx_message.error {
  border-left-color: #f56c6c;
  background: #f56c6c20;
  color: #f56c6c;
}
.wx_message.error .wx_message__icon {
  background: #f56c6c;
}
.wx_message.error .wx_message__icon::before {
  background-image: url(/usr/themes/omnia/assets/img/tips/error.svg);
}
.wx_message__content {
  display: block;
}
.wx_progress {
  width: 100%;
  display: flex;
  align-items: center;
}
.wx_progress__strip {
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--classC);
  min-width: 0;
  flex: 1;
  margin-right: 10px;
}
.wx_progress__strip-percent {
  position: relative;
  height: 100%;
  border-radius: 6px;
}
.wx_progress__percentage {
  color: var(--minor);
}
.wx_callout {
  padding: 12px;
  border: 1px solid var(--classB);
  border-left-width: 4px;
  border-radius: var(--radius-inner);
  color: var(--routine);
  line-height: 26px;
}
.wx_callout *:last-child {
  margin-bottom: 0 !important;
}

.wx_timeline {
  line-height: 26px;
}
.wx_timeline__item {
  position: relative;
  padding-bottom: 15px;
}
.wx_timeline__item-tail {
  position: absolute;
  top: 0;
  left: 6px;
  height: 100%;
  border-left: 1px solid var(--classC);
}
.wx_timeline__item-circle {
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: var(--background);
  border-radius: 50%;
  border: 1px solid #19be6b;
}
.wx_timeline__item-content {
  padding-left: 24px;
  position: relative;
  top: -5px;
}
.wx_timeline__item-content *:last-child {
  margin-bottom: 0 !important;
}
.wx_timeline__item:last-child {
  padding-bottom: 0;
}
.wx_timeline__item:last-child .wx_timeline__item-tail {
  display: none;
}
.wx_tabs {
  width: 100%;
  overflow: hidden;
  background: var(--background);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--classC);
  border-radius: var(--radius-inner);
  line-height: 26px;
}
.wx_tabs__head {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  background: var(--classD);
}
.wx_tabs__head-item {
  position: relative;
  padding: 0 15px;
  line-height: 40px;
  height: 40px;
  color: var(--minor);
  cursor: pointer;
  transition: color 0.5s;
  white-space: nowrap;
  font-size: 14px;
}
.wx_tabs__head-item::after {
  content: "";
  position: absolute;
  background: var(--theme);
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  opacity: 0;
  border-radius: 2px;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
  transition:
    opacity 0.25s,
    -webkit-transform 0.25s;
  transition:
    opacity 0.25s,
    transform 0.25s;
  transition:
    opacity 0.25s,
    transform 0.25s,
    -webkit-transform 0.25s;
}
.wx_tabs__head-item.active {
  color: #fff;
  background: var(--theme);
}
.wx_tabs__head-item.active::after {
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.wx_tabs__body-item {
  padding: 15px;
}
.wx_tabs__body-item *:last-child {
  margin-bottom: 0 !important;
}
.wx_vplayer {
  width: 100%;
  height: 500px;
}
.wx_lamp {
  display: block;
  position: relative;
  width: 100%;
  height: 3px;
  border-radius: 1.5px;
  overflow: hidden;
  -webkit-animation: lamp-background linear 4s infinite;
  animation: lamp-background linear 4s infinite;
}
.wx_lamp::before,
.wx_lamp::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  -webkit-animation: lamp-front linear 4s infinite;
  animation: lamp-front linear 4s infinite;
}
.wx_lamp::before {
  right: 50%;
  -webkit-transform-origin: right;
  transform-origin: right;
}
.wx_lamp::after {
  left: 50%;
  -webkit-transform-origin: left;
  transform-origin: left;
}
.wx_fold {
  line-height: 26px;
}
.wx_fold__item {
  margin-bottom: 10px;
  color: var(--routine);
  border: 1px solid var(--classC);
}
.wx_fold__item-head {
  display: flex;
  align-items: center;
  background: var(--classD);
  padding: 10px 12px;
  padding-right: 8px;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wx_fold__item-head--label {
  padding-right: 8px;
}
.wx_fold__item-head--icon {
  flex-shrink: 0;
  margin-left: auto;
  fill: var(--minor);
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
}
.wx_fold__item-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.wx_fold__item-wrapper--content {
  padding: 12px;
}
.wx_fold__item-wrapper--content *:last-child {
  margin-bottom: 0 !important;
}
.wx_fold__item:last-child {
  margin-bottom: 0;
}
.wx_fold__item.active .wx_fold__item-head--icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.wx_cloud {
  display: flex;
  align-items: center;
  padding: 10px;
  background: var(--classD);
  border-radius: var(--radius-inner);
  overflow: hidden;
}
.wx_cloud__logo {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  background-size: 100% 100%;
}

.wx_cloud__describe {
  line-height: normal;
  flex: 1;
  overflow: hidden;
}
.wx_cloud__describe-title {
  color: var(--theme);
  font-size: 14px;
  margin-bottom: 3px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wx_cloud__describe-type {
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wx_cloud__btn {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--theme);
  color: #fff;
  width: 33px;
  height: 33px;
  border-radius: 50%;
}
.wx_reads {
  background: var(--background);
  border-radius: var(--radius-wrap);
  padding: 15px;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
}
.wx_reads_category {
  display: flex;
  align-items: center;
}
.wx_reads_category .edit {
  color: var(--minor);
  margin-left: auto;
  margin-bottom: 15px;
}
.wx_reads_category .edit:hover {
  color: var(--theme);
}
.wx_reads_title {
  margin: 15px 0 2rem;
  color: var(--main);
  text-align: center;
  text-shadow: var(--text-shadow);
  font-size: 24px;
}
.wx_reads_topic {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--classB);
  text-align: center;
}
.wx_reads_topic .wx_post_Rotation {
  margin-top: -15px;
  margin-bottom: 2rem;
  color: var(--routine);
  font-size: 13px;
}
.wx_reads_topic .wx_post_Rotation_source span {
  display: inline-flex;
  align-items: center;
}
.wx_reads_topic .wx_post_Rotation_source .iconfont {
  margin-right: 2px;
}
.wx_archive_title {
  margin: 0 0 20px;
  padding: 15px;
  border-radius: var(--radius-wrap);
  background: var(--background);
  box-shadow: var(--box-shadow);
  color: var(--main);
  text-align: center;
  text-shadow: var(--text-shadow);
  font-size: 24px;
  transition: color 0.35s;
}
.wx_reads_overdue {
  padding-top: 15px;
}
.wx_reads_overdue-wrapper {
  background: #fffcef;
  border-radius: var(--radius-inner);
  padding: 15px;
  color: #db7c22;
  border: 1px solid #ffbb76;
  -webkit-animation: overdue 1.5s ease-in-out;
  animation: overdue 1.5s ease-in-out;
}
.wx_reads_overdue-wrapper .title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}
.wx_reads_overdue-wrapper .title .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.wx_reads_overdue-wrapper .content {
  padding-left: 28px;
}
.wx_reads_overdue-wrapper:hover {
  -webkit-clip-path: circle(75%);
  clip-path: circle(75%);
}
.wx_reads_article {
  padding-top: 15px;
  font-size: 15px;
  word-break: break-word;
  color: var(--routine);
}
.wx_reads_article h1,
.wx_reads_article h2,
.wx_reads_article h3,
.wx_reads_article h4,
.wx_reads_article h5,
.wx_reads_article h6 {
  color: var(--main);
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 18px;
  position: relative;
}
.wx_reads_article h1 {
  padding: 0 15px 0 20px;
}
.wx_reads_article h1::before {
  content: "¶";
  color: var(--theme);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 22px;
}
.wx_reads_article h2 {
  padding: 0 15px;
}
.wx_reads_article h2::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 4px;
  border-radius: 2px;
  background: var(--theme);
}
.wx_reads_article h3 {
  padding: 0 15px;
}
.wx_reads_article h3::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--theme);
  border-radius: 0 4px 4px 0;
}
.wx_reads_article h4::before {
  content: "「";
  color: var(--theme);
  font-weight: 600;
  margin-right: 5px;
}
.wx_reads_article h4::after {
  content: "」";
  color: var(--theme);
  font-weight: 600;
  margin-left: 5px;
}
.wx_reads_article h5 {
  padding: 0 15px 0 28px;
}
.wx_reads_article h5::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAC8klEQVRYR+3WP2gTURwH8O/vKnVRRHKXP52cBO3g4p/BqYNIhy4muajUQRBFKjQV1En6ZxJBcmlRCoJDRe3FDiJVwamLS3FwqbgIgss1l2ZQF5XeT3I1Z3NJ7u5dLlAwN9699/t97vfe7/EIO/yhHe5DD9jpCv3fFVTu856+Xzi62Y/35hj9CFPNrlUwWeRJAJfBGADwBcBNI0/PRZFdAdo4xlQLjCqKjBzogat7hZCRAgPghJGBgbFnxglAOvS7b/fLb+q+qnv5BHBCyEBAWTdnANy2IxOtWSC1qsY+1jOFwAVG+gIVvXyHQbcaKuZCxmf5iMQogXFQtEsBeO5JT6BcMu+Bcb1lUhcyqfExACUAB6JEtgUqi+U5JrrmmcyFHCjwSYtQO+tSUSFbAmXdnAdwJVASdyWLPAS2kbFA8xsHNS13EzCmlx8R6KJQcBcypfFpho3cKxRna3ADsgEo6+ZjAKMhgjZ1d2KWR2gTSyD0h4jnIB2gXDIXwciFCPZvSnMl0wwshYrJGDImaMUGKovlLBPVOrDjh8APzFx8zDkjNa7FzYoGZsKT9XEarQOHmei1aJA246cqOWW6/i2l8VMGzoWIPW/k6eq2Ja6UwCz8pw2JGZ8sS8pUz8fWau/jGp+SgLchcGBgZD1Py41NUuoI+ZloV8ZU93+ogZKzfBiWfXAPCgMJU8Y42avQdMzI4ZBfmSizocqrUeJaAmsvBZGGBCtTziXeRY1rCxRAViEhXckqK93AeQJ9kYTvlmVlqmcTdhNEtefc+9X3utVmuX+CkK6oyqtu4nwrWP8bF5IZdGYjJ79wDuMCz4D+XmhFWnZbt7ab5ltBB6mbkyAaBPFCJassuwMmNb4L4EZgXwBc4AoGTZrUeA6A9x1yK6tzzvnFDlxBv0D176kCP2TCpbbjBXCRV9DZk0VeAONCE1IQ1zWg3dlF1sFQHWQIXFeBNrLAw5BwHBZWjQl6E3SbbB8X+R4Mg/Ca0wN2WtFeBTut4B84mFI4VpekyAAAAABJRU5ErkJggg==");
  background-size: 100% 100%;
}
.wx_reads_article h6 {
  padding: 0 15px 0 28px;
}
.wx_reads_article h6::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAEI0lEQVRYR+3Xb2wTZRwH8G/vL22RPy5GW8fK6rJpGeFFY9RO3TRRE1HfmEAammEyjZmOSEg1RrPZaTD6xjhU/Ndlf0CZgwmD+qcgZBRIETeqY0Vcnc7pGonhRY2l3m2t5upqjq693l2vcy+8N81zz/NcPvf75fd7rjos8ku3yH34HyjK0PqlDLPzD56vMNL0VHxmpgXAoUIZXKgI3sMSpK+cNTAbylaj/9IkprnLM3+mkg8XQi4EsJ4lSL+ZNbAfVd+JG/XLcSERg3M8IAtZauBtDEkeNdN6fX9NfRqXueQiSwm00wQRMDMGw94snBJkqYBrSYIIXs/ojftqGq6IXHZRFIpkKYC2JSw9SJE663W0nthlqcMawwrJYpVCag1M48pNy1YNvLWRffGNIYSCv6Cnog7rjCtVIbUEXoG7qeqaNMj51F58dWoKPZY62JeWyUJG+ctcIplcIizWCpgTl9EIyODJn9BtceDWq/6B57tO/H4R688fFaZ7AWzWAiiJEyMDx39Ed6UDdyy7Ni/w1ekxbP95VJi/F8CRYoGycGLksaEJdFU6cPdy0zxkR/RbtE6FhPvHATQUm2JFODHSfyyCLmsd7lth/hf53q/jcE8OC+NTAG7PTKiNoCqcGPnpF+PotDrwwNXl+OC3H9A8cVqYPgPgFnFo1QCLwomRg4cvoPMGBzZHTgq3zwKwZ+ddKVATXAZhf+gdnPvuojAUqmJdrspRAtQU93pXEM+8clgwhQHU5itruUBNcTt6TsP9sl8weQC0S/VFOUBNcW/2folt2z+XhZPTZh6kSKJ79aqVRuFszRxfUm8sNbdz9xlsfekz2bhCQBvDMMM8z+ubN92Mjrb71brS+97dM4wtnk8U4SSBBEGErVarzeVywePxoHVLA1pb6lUh3+8bwZMv+BTjpIAVACa9Xq+uqakJ7e3tqpGd/WfR3Jr+81awIJS0mY0A+sLhMGw2W3qfGmTXvhAef/6gapxUBDuqqqoejUQiBvFbKUH2DHyNx54bLAqXF0jT9HBjY6Pd6/XOi7oc5K7936Dp2QNF4/IBrTqdLuLxeIi2tracRSGF/PDgKB55er8muHzATQB2m81m+P1+1NbmPoVyIfsOnUOj+2PNcPmAO1iWbeE4TmexWODz+WQhayrL4No2oCkuJ5Bl2VGO49ZmcisXObdeVSuRaq7ZZ3G10KBTqRQl3pQPGY1GEQgE4HQ6heVDAO5S1cklNmUDXQRB9KZSqXkfESaTCW63G7FYDKFQKDEyMoJoNKqfe/bbAJ7QGpcrxa8xDLOV5/k0kGXZv2ZnZ5FMJtNjmqYvURR1IpFInAcwAeD7ud/pUuDmAY1G41g8Hl9DkmScoqggx3FHAIyJMMlSQfI9V5zKagDC93dsoRFKimQx2dIWOV/U/yn6bx0WyDj8vgLOAAAAAElFTkSuQmCC");
  background-size: 100% 100%;
}
.wx_reads_article hr {
  border: none;
  height: 1px;
  background-color: var(--classB);
  margin-bottom: 18px;
}
.wx_reads_article p {
  line-height: 26px;
  margin-bottom: 18px;
}
.wx_reads_article blockquote {
  line-height: 26px;
  margin-bottom: 18px;
  background: var(--Omnia-mment);
  border-left: 5px solid var(--theme);
  color: var(--routine);
  padding: 8px 15px;
  border-radius: 5px 5px 5px 5px;
}
.wx_reads_article blockquote p {
  margin: 0;
}
.wx_reads_article a:not([class]) {
  display: inline-block;
  line-height: 26px;
  color: var(--theme);
  position: relative;
}
.wx_reads_article a:not([class]):hover::after {
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.wx_reads_article .wx_hide a:not([class])::after {
  width: 0;
}
.wx_reads_article a:not([class])::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background: var(--theme);
  -webkit-transform: scaleX(0.25);
  transform: scaleX(0.25);
  opacity: 0;
  transition:
    opacity 0.35s,
    -webkit-transform 0.35s;
  transition:
    transform 0.35s,
    opacity 0.35s;
  transition:
    transform 0.35s,
    opacity 0.35s,
    -webkit-transform 0.35s;
}
.wx_reads_article code:not([class]) {
  border-radius: var(--radius-inner);
  font-size: 14px;
  background: #ecf5ff;
  color: #409eff;
  padding: 2px 8px;
  vertical-align: top;
  word-break: break-word;
  letter-spacing: 0.05em;
}
.wx_reads_article pre[class*="language-"] {
  position: relative;
  margin: 0 0 18px;
  padding: 30px 0 0;
  font-size: 14px;
  border-radius: 5px 5px 5px 5px;
  overflow: hidden;
  letter-spacing: 0.05em;
}
.wx_reads_article pre[class*="language-"] code[class*="language-"] {
  display: block;
  overflow: auto;
  padding: 5px 15px 15px;
}
.wx_reads_article pre[class*="language-"]::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fc625d;
  box-shadow:
    20px 0 #fdbc40,
    40px 0 #35cd4b;
  z-index: 1;
}
.wx_reads_article pre[class*="language-"] .copy {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 5;
  cursor: pointer;
}
.wx_reads_article img:not([class]) {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-inner);
  transition:
    box-shadow 0.35s,
    -webkit-transform 0.35s;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    -webkit-transform 0.35s;
  cursor: zoom-in;
  margin: 0 auto;
}
.wx_reads_article img:not([class]):hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 34px 20px -24px rgba(136, 161, 206, 0.3);
}
.wx_reads_article .owo_image {
  max-height: 26px;
  vertical-align: top;
}
.wx_reads_article ol,
.wx_reads_article ul {
  margin-bottom: 18px;
  padding-left: 36px;
}
.wx_reads_article ol li,
.wx_reads_article ul li {
  line-height: 26px;
}
.wx_reads_article ol li {
  list-style: decimal;
}
.wx_reads_article ul li {
  list-style: disc;
}
.wx_reads_article table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  color: var(--minor);
  margin-bottom: 18px;
  font-size: 14px;
  border-top: 1px solid var(--classC);
  border-left: 1px solid var(--classC);
}
.wx_reads_article table td,
.wx_reads_article table th {
  padding: 10px;
  border-bottom: 1px solid var(--classC);
  border-right: 1px solid var(--classC);
}
.wx_reads_article table thead th {
  font-weight: 500;
  background: var(--classC);
}
.wx_reads_article table tbody tr {
  transition: background 0.35s;
}
.wx_reads_article table tbody tr:hover {
  background: var(--classD);
}
.wx_reads_article-video {
  margin-bottom: 18px;
}
.wx_reads_article-video .play,
.wx_reads_article-video .episodes {
  position: relative;
  background: var(--classD);
  padding: 60px 15px 15px;
}
.wx_reads_article-video .play .title,
.wx_reads_article-video .episodes .title {
  position: absolute;
  top: 15px;
  left: -10px;
  background: var(--theme);
  color: #fff;
  font-weight: 500;
  box-shadow: 2px 5px 10px rgba(49, 58, 70, 0.15);
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  border-radius: 2px 2px 2px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wx_reads_article-video .play .title::after,
.wx_reads_article-video .episodes .title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  border-style: solid;
  border-width: 10px;
  border-color: var(--theme) transparent transparent;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.wx_reads_article-video .play .box,
.wx_reads_article-video .episodes .box {
  border-top: 1px solid var(--classB);
  padding-top: 15px;
}
.wx_reads_article-video .play {
  margin-bottom: 15px;
}
.wx_reads_article-video .play .box iframe {
  background: #000;
  width: 100%;
  height: 520px;
}
.wx_reads_article-video .episodes .box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
.wx_reads_article-video .episodes .box .item {
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  background: var(--background);
  color: var(--routine);
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    box-shadow 0.35s,
    background 0.35s,
    color 0.35s,
    -webkit-transform 0.35s;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    background 0.35s,
    color 0.35s;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    background 0.35s,
    color 0.35s,
    -webkit-transform 0.35s;
  padding: 0 10px;
}
.wx_reads_article-video .episodes .box .item.active {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  color: #fff;
  background: var(--theme);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.wx_reads_article-video .episodes .box .item:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.wx_reads_article-protected {
  display: flex;
  justify-content: center;
  background: repeating-linear-gradient(
    145deg,
    var(--classB),
    var(--classB) 15px,
    var(--background) 0,
    var(--background) 30px
  );
  padding: 20px 0;
  margin-bottom: 18px;
}
.wx_reads_article-protected .contain {
  position: relative;
  box-shadow: var(--box-shadow);
  border-radius: 20px;
  overflow: hidden;
}
.wx_reads_article-protected .contain .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
}
.wx_reads_article-protected .contain .password {
  width: 260px;
  color: var(--routine);
  padding-left: 50px;
  background: var(--background);
  flex: 1;
  height: 38px;
  padding: 0 40px;
  border: 1px solid var(--classB);
  border-radius: 20px 0 0 20px;
  font-size: 14px;
}
.wx_reads_article-protected .contain .submit {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  padding: 0 18px;
  height: 100%;
  border: none;
  background: var(--theme);
  color: #fff;
  border-radius: 0 20px 20px 0;
}
.wx_reads_article-protected .contain .submit:hover {
  background-color: #449d44;
}
.wx_reads_agree {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--routine);
  margin-top: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.wx_reads_agree a {
  color: var(--routine);
}
.wx_reads_agree .agree {
  text-align: center;
  font-size: 14px;
  color: var(--minor);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wx_reads_agree .agree .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow:
    0 0 1px rgba(0, 0, 0, 0.1),
    0 0px 8px var(--seat);
  background: var(--background);
  cursor: pointer;
  margin-bottom: 8px;
}
.wx_reads_agree .agree .icon.active {
  -webkit-animation: box_shadow 1s;
  animation: box_shadow 1s;
}
.wx_reads_agree .agree .sponsorship {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow:
    0 0 1px rgba(0, 0, 0, 0.1),
    0 0px 8px var(--seat);
  background: var(--background);
  cursor: pointer;
  margin-bottom: 8px;
}
.wx_reads_agree .agree .icon svg {
  position: absolute;
  width: 26px;
  height: 26px;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  transition:
    opacity 0.5s,
    -webkit-transform 0.5s;
  transition:
    transform 0.5s,
    opacity 0.5s;
  transition:
    transform 0.5s,
    opacity 0.5s,
    -webkit-transform 0.5s;
}
.wx_reads_agree .agree .icon svg.active {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.wx_reads_operate {
  margin-bottom: 15px;
  color: var(--routine);
  display: flex;
  align-items: center;
}
.wx_reads_operate-tags {
  flex-shrink: 0;
  flex: 1;
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.wx_reads_operate-tags::-webkit-scrollbar {
  display: none;
}
.wx_reads_operate-tags a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  margin-right: 10px;
  font-size: 13px;
  background-color: var(--classC);
  color: var(--routine);
  padding-right: 8px;
  padding-left: 8px;
  height: 26px;
  line-height: 26px;
  border-radius: 2px;
  max-width: 125px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.15s;
}
.wx_reads_operate-tags a:nth-child(1) {
  color: rgb(50 204 188);
  background-color: rgb(50 204 188 / 15%);
}
.wx_reads_operate-tags a:nth-child(2) {
  color: rgb(211 76 251);
  background-color: rgb(211 76 251 / 15%);
}
.wx_reads_operate-tags a:nth-child(3) {
  color: rgb(255 82 82);
  background-color: rgb(255 82 82 / 15%);
}
.wx_reads_operate-tags a:nth-child(4) {
  color: rgb(58 198 116);
  background-color: rgb(58 198 116 / 15%);
}
.wx_reads_operate-tags a:nth-child(5) {
  margin-right: 0;
  color: rgb(255 170 0);
  background-color: rgb(255 170 0 / 15%);
}
.wx_reads_operate-tags a:nth-child(n + 6) {
  display: none;
}
.wx_reads_operate a:hover {
  background: #333;
  color: #fff;
}
.wx_reads_copyright {
  background: var(--background);
  border-radius: var(--radius-wrap);
  padding: 15px;
  box-shadow: var(--box-shadow);
  margin-top: 20px;
  margin-bottom: 20px;
}
.wx_reads_copyright .content .item {
  color: var(--minor);
  margin-bottom: 5px;
  word-break: break-word;
  line-height: 22px;
}
.wx_reads_copyright .content .item:last-child {
  margin-bottom: 0;
}
.wx_reads_copyright .content .item .link {
  color: var(--minor);
}
.wx_reads_copyright .content .item .link:hover {
  color: var(--theme);
}
.wx_reads_related-title {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: var(--main);
  padding-left: 15px;
  margin-bottom: 15px;
}
.wx_reads_related-title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  border-radius: 2px;
  background: var(--theme);
}
.wx_reads_related-content {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
}
.wx_reads_leaving {
  padding-top: 15px;
}
.wx_reads_leaving-none {
  padding: 15px 0;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--minor);
}
.wx_reads_leaving-list {
  position: relative;
  height: 500px;
}
.wx_reads_leaving-list .item {
  display: none;
  position: absolute;
  width: 200px;
  overflow: hidden;
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.88;
}
.wx_reads_leaving-list .item .user {
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #fff;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.85);
  height: 40px;
  cursor: move;
}
.wx_reads_leaving-list .item .user .avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.wx_reads_leaving-list .item .user .nickname {
  min-width: 0;
  flex: 1;
  margin: 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wx_reads_leaving-list .item .user .nickname a {
  color: #fff;
}
.wx_reads_leaving-list .item .user .date {
  margin-left: auto;
}
.wx_reads_leaving-list .item .wrapper {
  padding: 10px;
}
.wx_reads_leaving-list .item .wrapper .content {
  height: 140px;
  overflow-y: auto;
  word-break: break-word;
  line-height: 25px;
  color: #fff;
}
.wx_reads_leaving-list .item .wrapper .content .draw_image {
  max-width: 100%;
}
.wx_reads_leaving-list .item .wrapper .content .owo_image {
  max-height: 24px;
}
.wx_footer {
  border-top: 0px solid var(--classB);
  color: var(--routine);
  margin-top: 2em;
  letter-spacing: 0.05em;
  background-color: var(--background);
}
.wx_footer .wx_total {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  justify-content: space-between;
  padding: 20px 10px 20px 10px;
}
.wx_footer .wx_total a {
  color: var(--routine);
}
.wx_footer .wx_total a:hover {
  color: var(--theme);
}
.wx_footer .wx_total .item {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.wx_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
.wx_pagination li {
  margin-left: 5px;
}
.wx_pagination li.active a {
  background: var(--theme);
  color: #fff;
  font-weight: 500;
}
.wx_pagination li a {
  display: flex;
  align-items: center;
  height: 32px;
  color: var(--main);
  padding: 0 15px;
  background: var(--classD);
  border-radius: 2px;
  transition:
    background 0.35s,
    color 0.35s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wx_pagination li a:hover {
  background: var(--theme);
  color: #fff;
}
.wx_pagination li a:hover .icon {
  fill: #fff;
}
.wx_pagination li a .icon {
  width: 12px;
  height: 12px;
  fill: var(--routine);
  transition: fill 0.35s;
}
.wx_pagination li a .icon-next {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.wx_action_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  margin: 0 0 0 12px;
  cursor: pointer;
}
.wx_action_item svg {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: var(--routine);
  transition: 0.35s ease-out;
}
.wx_action_item.mode svg {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}
.wx_action_item.mode svg.active {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.wx_comment {
  background: var(--background);
  border-radius: var(--radius-wrap);
  box-shadow: var(--box-shadow);
  padding: 15px;
}
.wx_comment_title {
  font-weight: 500;
  text-align: center;
  font-size: 24px;
  color: var(--main);
  text-shadow: var(--text-shadow);
  border-bottom: 0px solid var(--classC);
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.wx_comment_close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--routine);
}
.wx_comment_close-icon {
  fill: var(--routine);
  margin-right: 5px;
}
.wx_comment_respond-type {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.wx_comment_respond-form .head {
  display: flex;
  align-items: center;
}
.wx_comment_respond-form .head .list {
  position: relative;
  display: flex;
  flex: 1;
  border-radius: var(--radius-inner);
  width: auto;
  margin-left: 1rem;
}
.wx_comment_respond-form .head .list .title {
  white-space: nowrap;
  padding: 8px 1rem;
  border-radius: 4px 0px 0px 4px;
  background-color: rgba(144, 147, 153, 0.23);
  color: var(--main);
}
.wx_comment_respond-form .head .list input:focus {
  background: var(--background);
  border-color: var(--classA);
  padding-right: 15px;
}
.wx_comment_respond-form .head .list input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0 15px;
  border-radius: 0px 4px 4px 0px;
  border: 1px solid #90939950;
  color: var(--routine);
}
.wx_comment_respond-form .body {
  padding: 15px;
  margin-bottom: 0;
  border: 1px solid #90939950;
  border-radius: var(--radius-inner);
}
.wx_comment_respond-form .body .text {
  width: 100%;
  height: 130px;
  border: none;
  resize: none;
  color: var(--routine);
  background: transparent;
}
.wx_comment_respond-form .body .draw {
  position: relative;
  width: 100%;
}
.wx_comment_respond-form .body .draw .line {
  display: flex;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wx_comment_respond-form .body .draw .line li {
  cursor: pointer;
  margin-right: 10px;
  color: var(--main);
  transition: color 0.35s;
}
.wx_comment_respond-form .body .draw .line li.active {
  color: var(--theme);
}
.wx_comment_respond-form .body .draw .color {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.wx_comment_respond-form .body .draw .color li {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: box-shadow 0.35s;
}
.wx_comment_respond-form .body .draw .color li.active {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}
.wx_comment_respond-form .body .draw .color li:nth-child(1) {
  background: #303133;
}
.wx_comment_respond-form .body .draw .color li:nth-child(2) {
  background: #67c23a;
}
.wx_comment_respond-form .body .draw .color li:nth-child(3) {
  background: #e6a23c;
}
.wx_comment_respond-form .body .draw .color li:nth-child(4) {
  background: #f56c6c;
}
.wx_comment_respond-form .body .draw .icon {
  position: absolute;
  right: 10px;
  cursor: pointer;
  fill: var(--minor);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wx_comment_respond-form .body .draw .icon-undo {
  top: 10px;
}
.wx_comment_respond-form .body .draw .icon-animate {
  bottom: 10px;
}
.wx_comment_respond-form .body .draw canvas {
  background: var(--background);
  border-radius: var(--radius-inner);
}
.wx_comment_respond-form .foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px 0;
}
.wx_comment_respond-form .foot .owo {
  min-height: 33px;
  padding-top: 8px;
}
.wx_comment_respond-form .foot .owo .seat {
  opacity: 0.8;
}
.wx_comment_respond-form .foot .submit {
  position: absolute;
  top: 0;
  right: 10px;
  white-space: nowrap;
}
.wx_comment_respond-form .foot .submit .cancle {
  display: none;
  color: var(--main);
  cursor: pointer;
  margin-right: 10px;
  transition: color 0.35s;
}
.wx_comment_respond-form .foot .submit .cancle:hover {
  color: var(--theme);
}
.wx_comment_respond-form .foot .submit button {
  border-radius: 3px;
  height: 33px;
  padding: 0 15px;
  border: none;
  background: var(--theme);
  color: #fff;
  font-size: 14px;
  transition: 0.2s;
}
.wx_comment_respond-form .foot .submit button:hover {
  opacity: 0.8;
}
.wx_comment .comment-list {
  padding-top: 2rem;
}
.wx_comment .comment_list_item-contain .term {
  display: flex;
  margin-bottom: 15px;
}
.wx_comment .comment_list_item-contain .term .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 15px;
  padding: 2px;
  border: 1px solid var(--classA);
  -o-object-fit: cover;
  object-fit: cover;
}
.wx_comment .comment_list_item-contain .term .content {
  min-width: 0;
  flex: 1;
  border-bottom: 1px solid var(--classC);
  padding-bottom: 15px;
}
.wx_comment .comment_list_item-contain .term .content .user {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  color: var(--main);
}
.wx_comment .comment_list_item-contain .term .content .user .author {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 5px;
}
.wx_comment .comment_list_item-contain .term .content .user .author a {
  color: var(--main);
}
.wx_comment .comment_list_item-contain .term .content .user .owner {
  flex-shrink: 0;
  border: 1px solid #fb7299;
  color: #fb7299;
  padding: 0 5px;
  border-radius: 3px;
  font-style: normal;
  font-size: 12px;
  margin-right: 10px;
}
.wx_comment .comment_list_item-contain .term .content .user .agent {
  display: flex;
  align-items: center;
  font-size: 13px;
  padding-left: 8px;
  color: var(--minor);
}
.wx_comment .comment_list_item-contain .term .content .user .waiting {
  color: #e6a23c;
  font-style: normal;
}
.wx_comment .comment_list_item-contain .term .content .substance {
  width: 100%;
  background: var(--classD);
  padding: 10px 13px;
  border-radius: 4px 4px 4px 4px;
  color: var(--main);
  margin-bottom: 8px;
  word-break: break-word;
  line-height: 26px;
}
.wx_comment .comment_list_item-contain .term .content .substance .parent {
  color: #388bff;
  margin-bottom: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
}
.wx_comment .comment_list_item-contain .term .content .substance .owo_image {
  border: 0;
  height: 24px;
  vertical-align: middle;
}
.wx_comment .comment_list_item-contain .term .content .substance .draw_image {
  max-width: 100%;
}
.wx_comment .comment_list_item-contain .term .content .handle {
  display: flex;
  align-items: center;
  color: var(--minor);
}
.wx_comment .comment_list_item-contain .term .content .handle .date {
  margin-right: 10px;
  margin-bottom: 5px;
  font-size: 13px;
}
.wx_comment .comment_list_item-contain .term .content .handle .reply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--routine);
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 5px;
  margin-left: auto;
  line-height: 1;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.wx_comment .comment_list_item-contain .term .content .handle .reply .icon {
  margin: 0;
  width: 16px;
  height: 16px;
  fill: currentColor;
  transform: translateY(1px);
}
.wx_comment .comment_list_item-contain .term .content .handle .reply:hover {
  color: var(--theme);
}
.wx_comment .comment_list_item-children {
  padding-left: 63px;
}
.wx_comment .comment_list_item-children .comment_list_item-children {
  padding-left: 0;
}
.wx_comment .comment_list_item .wx_comment_respond {
  margin-left: 63px;
  margin-bottom: 15px;
  -webkit-animation: showComment 0.5s;
  animation: showComment 0.5s;
}
.wx_comment .comment-list .comment-list {
  padding-top: 0;
}
.wx_run__day,
.wx_run__hour,
.wx_run__minute,
.wx_run__second {
  font-weight: 500;
  color: var(--theme);
}
.wx_owo_contain {
  position: relative;
}
.wx_owo_contain .seat {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

/* 评论区：语录按钮（与表情按钮同一行，适配手机/平板/电脑） */
.wx_owo_contain .wx_owo_toolbar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wx_owo_contain .wx_quote_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 23px;
  line-height: 23px;
  padding: 0 10px;
  border-radius: 50px;
  background: #bec6d4c9;
  opacity: 0.8;
  color: var(--routine);
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}
.wx_owo_contain .wx_quote_btn:hover {
  opacity: 1;
}
.wx_owo_contain .wx_quote_btn.loading {
  pointer-events: none;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .wx_owo_contain .wx_quote_btn {
    padding: 0 8px;
    font-size: 12px;
  }
}
.wx_owo_contain .box {
  width: 100%;
  display: none;
  background: var(--background);
  border-radius: var(--radius-inner);
  overflow: hidden;
  margin-top: 15px;
}
.wx_owo_contain .box .scroll {
  display: none;
  max-height: 200px;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  padding: 5px;
}
.wx_owo_contain .box .scroll .item {
  text-align: center;
  width: calc(100% / 18);
  display: inline-block;
  padding: 5px;
  cursor: pointer;
  border-radius: var(--radius-inner);
  transition: background 0.25s;
}
.wx_owo_contain .box .scroll .item img {
  max-width: 100%;
  max-height: 100%;
}
.wx_owo_contain .box .scroll .item:hover {
  background: var(--classD);
}
.wx_owo_contain .box .bar {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--classC);
}
.wx_owo_contain .box .bar .item {
  line-height: 30px;
  padding: 0 10px;
  cursor: pointer;
  color: var(--routine);
  transition:
    background 0.25s,
    color 0.25s;
}
.wx_owo_contain .box .bar .item.active {
  color: #fff;
  background: var(--theme);
}
.wx_archive__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 16px;
  padding: 50px 0;
  color: var(--routine);
}
.wx_archive__empty-icon {
  margin-bottom: 30px;
  fill: var(--routine);
}
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: var(--theme);
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  opacity: 1;
  transform: rotate(3deg) translate(0, -4px);
}

@-webkit-keyframes showComment {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes showComment {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes showInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes showInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lamp-background {
  0%,
  24.9% {
    background-color: #54b5db;
  }
  25%,
  49.9% {
    background-color: #da4733;
  }
  50%,
  74.9% {
    background-color: #3b78e7;
  }
  75%,
  to {
    background-color: #fdba2c;
  }
}
@-webkit-keyframes lamp-front {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #da4733;
  }
  24.9% {
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
    background-color: #da4733;
  }
  25% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #3b78e7;
  }
  49.9% {
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
    background-color: #3b78e7;
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #fdba2c;
  }
  74.9% {
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
    background-color: #fdba2c;
  }
  75% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #409eff;
  }
  to {
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
    background-color: #409eff;
  }
}

@-webkit-keyframes rainbow {
  to {
    background-position: -2000vw;
  }
}
.color_Dazzle {
  background-image: linear-gradient(
    to left,
    #ff4500,
    orange,
    gold,
    #90ee90,
    #0ff,
    #1e90ff,
    #9370db,
    #ff69b4,
    #ff4500
  );
  background-size: 110vw;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-animation: rainbow 60s linear infinite;
  animation: rainbow 60s linear infinite;
}
@keyframes rainbow {
  to {
    background-position: -2000vw;
  }
}

/* =============================
 * 手机端左侧抽屉(header_roll)修复
 * 目标：与示例图一致的卡片化布局
 * ============================= */
@media (max-width: 768px) {
  .header_roll {
    width: 86%;
    padding: 90px 14px 18px;
  }

  .header_roll-author .avatar {
    width: 86px;
    height: 86px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.95);
  }

  .header_roll-count.panel-box,
  .header_roll-menu.panel-box,
  .header_roll-menu .slides.panel-box {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    padding: 10px 14px;
    margin: 0 0 14px;
    backdrop-filter: blur(6px);
  }

  .header_roll-count .item {
    padding: 10px 0;
  }

  .header_roll-menu .link {
    padding: 12px 0;
  }

  .header_roll-menu .slides {
    padding-left: 18px;
  }
}


/* 修复：样式1-5 侧边栏热门文章卡片偶发“高度塌陷/重叠” */
.showInUp01 .wx_aside_item.hot .item .link,
.showInUp02 .wx_aside_item.hot .item .link,
.showInUp03 .wx_aside_item.hot .item .link,
.showInUp04 .wx_aside_item.hot .item .link,
.showInUp05 .wx_aside_item.hot .item .link {
  height: 130px; /* 与图片高度一致，避免 lazyload/渲染抖动导致后续条目覆盖 */
}

.showInUp01 .wx_aside_item.hot .item .link .image,
.showInUp02 .wx_aside_item.hot .item .link .image,
.showInUp03 .wx_aside_item.hot .item .link .image,
.showInUp04 .wx_aside_item.hot .item .link .image,
.showInUp05 .wx_aside_item.hot .item .link .image {
  display: block;
}


/* =====================
 * 移动端文章阅读自适配（适配编辑器输出）
 * - 目标：不改内容，只让内容在手机端“正常阅读”
 * - 影响范围：移动端（max-width: 991px）
 * ===================== */
@media (max-width: 991px) {
  .wx_reads_article-contain,
  .wx_reads_article-contain * {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* 图片/媒体：防止溢出 */
  .wx_reads_article-contain img,
  .wx_reads_article-contain video,
  .wx_reads_article-contain iframe {
    max-width: 100% !important;
    height: auto !important;
  }

  /* 表格：横向滚动，避免挤爆 */
  .wx_reads_article-contain table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
  }

  /* 代码块：允许换行与滚动 */
  .wx_reads_article-contain pre {
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }
  .wx_reads_article-contain pre code {
    white-space: pre;
  }

  /* 引用/提示：更清晰 */
  .wx_reads_article-contain blockquote {
    margin: 12px 0;
    padding: 10px 12px;
    border-left: 4px solid rgba(251, 113, 133, .65);
    background: rgba(251, 113, 133, .06);
    border-radius: 10px;
  }

  /* 长链接/长英文：允许断行 */
  .wx_reads_article-contain a,
  .wx_reads_article-contain p,
  .wx_reads_article-contain li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}



/* 修复加强版：样式1-5 侧边栏热门文章条目重叠（提高优先级） */
.showInUp01 .wx_aside_item.hot .item,
.showInUp02 .wx_aside_item.hot .item,
.showInUp03 .wx_aside_item.hot .item,
.showInUp04 .wx_aside_item.hot .item,
.showInUp05 .wx_aside_item.hot .item {
  position: relative;
  clear: both;
}

.showInUp01 .wx_aside_item.hot .item .link,
.showInUp02 .wx_aside_item.hot .item .link,
.showInUp03 .wx_aside_item.hot .item .link,
.showInUp04 .wx_aside_item.hot .item .link,
.showInUp05 .wx_aside_item.hot .item .link {
  display: block !important;
  height: 130px !important;
  min-height: 130px !important;
}

.showInUp01 .wx_aside_item.hot .item .link .image,
.showInUp02 .wx_aside_item.hot .item .link .image,
.showInUp03 .wx_aside_item.hot .item .link .image,
.showInUp04 .wx_aside_item.hot .item .link .image,
.showInUp05 .wx_aside_item.hot .item .link .image {
  height: 130px !important;
}


/* 修复加强版：样式6 侧边栏热门文章条目重叠（与样式1-5同逻辑） */
.showInUp06 .wx_aside_item.hot .item {
  position: relative;
  clear: both;
}

.showInUp06 .wx_aside_item.hot .item .link {
  display: block !important;
  height: 130px !important;
  min-height: 130px !important;
}

.showInUp06 .wx_aside_item.hot .item .link .image {
  height: 130px !important;
  display: block;
}


/* 终极兜底：任何页面（桌面端）侧边栏热门文章都不允许“折叠/重叠” */
@media (min-width: 992px) {
  .wx_aside_item.hot .item { clear: both; }
  .wx_aside_item.hot .item .link {
    display: block !important;
    height: 130px !important;
    min-height: 130px !important;
    overflow: hidden !important;
  }
  .wx_aside_item.hot .item .link .image {
    display: block !important;
    width: 100% !important;
    height: 130px !important;
    object-fit: cover;
  }
}


/* 评论区样式2修复：@显示为角标（参考你截图的效果）
 * 仅影响 comment2.php 内的结构（wx_comment_reply + wx_comment_at）
 */
.wx_comment .comment_list_item-contain .term .wx_comment_reply{
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  line-height: 0;
  margin-right: 15px;
}
.wx_comment .comment_list_item-contain .term .wx_comment_reply .avatar{
  display:block;
  width: 45px;
  height: 45px;
  margin-right: 0; /* 由外层 a 控制间距 */
}
.wx_comment .comment_list_item-contain .term .wx_comment_at{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: rgb(0 0 0 / 0.35);
  opacity: 0;
  transition: all .2s;
  z-index: 2;
  pointer-events: none;
}
/* 参考 Xc：默认不显示，hover 头像时显示 @ 覆盖层（手机端基本不触发 hover，因此不会挡头像） */
.wx_comment .comment_list_item-contain .term:hover .wx_comment_at{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 768px){
  .wx_comment .comment_list_item-contain .term .wx_comment_reply,
  .wx_comment .comment_list_item-contain .term .wx_comment_reply .avatar{
    width:45px;
    height:45px;
  }
}
