@charset "UTF-8";

:root {
  color-scheme: light;
  --h-color-white: #ffffff;
  --h-color-black: #000000;
  --h-color-primary: #1e9fff;
  --h-color-success: #5fb878;
  --h-color-status-success: #16a34a;
  --h-color-danger: #ff5722;
  --h-color-muted: #94a3b8;
  --h-color-text: #333333;
  --h-color-text-strong: #000000;
  --h-color-text-soft: #4a494d;
  --h-color-text-subtle: #4b5563;
  --h-color-disabled: #999999;
  --h-color-disabled-border: #c2c2c2;
  --h-color-footer-text: #a0a0a0;
  --h-color-warning: #f93b00;
  --h-bg-page: #f4f8fb;
  --h-bg-white: #ffffff;
  --h-bg-soft: #f7f7f7;
  --h-bg-light: #f2f2f2;
  --h-bg-pagination: #eeeeee;
  --h-bg-hover: #eeeeee33;
  --h-bg-nav-hover: #f3f6fb;
  --h-bg-brand-end: #16baaa;
  --h-bg-rank: #6c757d;
  --h-bg-dark: #1e1e1e;
  --h-bg-header-hover: #434752;
  --h-bg-warning: #fffaf5;
  --h-bg-link-check-hover: #eaf6ff;
  --h-shadow-color: #d0d0d0;
  --h-shadow-side: rgba(15, 23, 42, 0.2);
  --h-shadow-rank: rgba(49, 58, 70, 0.5);
  --h-overlay-mobile: rgba(15, 23, 42, 0.45);
  --h-header-text-muted: rgba(255, 255, 255, 0.8);
  --h-header-hover-bg: rgba(255, 255, 255, 0.05);
  --h-avatar-border: rgba(255, 255, 255, 0.82);
  --h-scroll-track: #d9d9d9;
  --h-scroll-thumb: #a6a6a6;
  --h-scroll-thumb-hover: #aaaaaa;
  --h-scroll-corner: #535353;
  --h-scroll-resizer: #ff6e00;
  --h-border-arrow: #d2d2d2;
  --h-success-hover: #5fb878cc;
  --h-success-soft: #5fb8784d;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --h-color-black: #f8fafc;
  --h-color-text: #dbe4ef;
  --h-color-text-strong: #ffffff;
  --h-color-text-soft: #cbd5e1;
  --h-color-text-subtle: #b6c2d1;
  --h-color-disabled: #94a3b8;
  --h-color-disabled-border: #7b8797;
  --h-color-footer-text: #94a3b8;
  --h-color-muted: #64748b;
  --h-bg-page: #111827;
  --h-bg-white: #1f2937;
  --h-bg-soft: #182233;
  --h-bg-light: #334155;
  --h-bg-pagination: #334155;
  --h-bg-hover: rgba(148, 163, 184, 0.12);
  --h-bg-nav-hover: #273449;
  --h-bg-rank: #475569;
  --h-bg-dark: #0b1220;
  --h-bg-header-hover: #334155;
  --h-bg-warning: #2b2119;
  --h-bg-link-check-hover: #1f3a50;
  --h-shadow-color: rgba(0, 0, 0, 0.42);
  --h-shadow-side: rgba(0, 0, 0, 0.45);
  --h-shadow-rank: rgba(0, 0, 0, 0.45);
  --h-overlay-mobile: rgba(0, 0, 0, 0.58);
  --h-scroll-track: #1f2937;
  --h-scroll-thumb: #475569;
  --h-scroll-thumb-hover: #64748b;
  --h-scroll-corner: #111827;
  --h-border-arrow: #94a3b8;
}

.h-body {
  font: 14px Consolas, 'Microsoft JhengHei', 'Apple LiGothic Medium,Microsoft YaHei', 微软雅黑, Arial, sans-serif;
  background-color: var(--h-bg-page);
  color: var(--h-color-text);
  user-select: none;
}

body,
.layui-card,
.layui-card-header,
.layui-card-body {
  color: var(--h-color-text);
  background-color: var(--h-bg-white);
}

.layui-card-header {
  border-bottom-color: var(--h-bg-light);
}

.layui-input,
.layui-textarea {
  color: var(--h-color-text);
  border-color: var(--h-bg-light);
  background-color: var(--h-bg-white);
}

.layui-input::placeholder,
.layui-textarea::placeholder {
  color: var(--h-color-disabled);
}

html[data-theme="dark"] a,
html[data-theme="dark"] .layui-card,
html[data-theme="dark"] .layui-card-body,
html[data-theme="dark"] .layui-card-header,
html[data-theme="dark"] .h-webinfo,
html[data-theme="dark"] .h-webinfo b,
html[data-theme="dark"] .h-webinfo span,
html[data-theme="dark"] .h-catalog-list .layui-links p,
html[data-theme="dark"] .h-topcard a b {
  color: var(--h-color-text);
}

html[data-theme="dark"] a:hover,
html[data-theme="dark"] .layui-card-header h2,
html[data-theme="dark"] .layui-card-header h3,
html[data-theme="dark"] .h-comcard header>h2,
html[data-theme="dark"] .h-comcard header>h3,
html[data-theme="dark"] .h-topcard header>h2,
html[data-theme="dark"] .h-topcard header>h3,
html[data-theme="dark"] .h-catalog header>h2,
html[data-theme="dark"] .h-catalog header>h3,
html[data-theme="dark"] .h-catalog-list header>h2,
html[data-theme="dark"] .h-catalog-list header>h3,
html[data-theme="dark"] .h-detail header>h2,
html[data-theme="dark"] .h-detail header>h3 {
  color: var(--h-color-text-strong);
}

html[data-theme="dark"] .layui-card-header>i,
html[data-theme="dark"] .h-breadcrumb-wrapper .h-breadcrumb,
html[data-theme="dark"] .h-breadcrumb-wrapper .h-breadcrumb a {
  color: var(--h-color-text-subtle);
}

html[data-theme="dark"] .layui-nav-child {
  border-color: var(--h-bg-light);
  background-color: var(--h-bg-white);
}

html[data-theme="dark"] .layui-nav-child dd a {
  color: var(--h-color-text) !important;
}

html[data-theme="dark"] .layui-nav-child dd a:hover {
  color: var(--h-color-text-strong) !important;
  background-color: var(--h-bg-nav-hover);
}

.h-fleft {
  float: left;
}

.h-fright {
  float: right;
}

.h-bg-white {
  background-color: var(--h-bg-white) !important;
}

.h-bg-green {
  background-color: var(--h-color-success) !important;
}

.h-box-shadow {
  box-shadow: 0 0 0.6rem 0 var(--h-shadow-color);
}

/*头部*/
.h-height {
  position: relative;
  height: 4.375rem;
}

.h-nav {
  margin: 0 1.25rem;
}

.h-nav .layui-nav-item {
  line-height: 4.375rem;
}

.h-nav .h-nav-child {
  top: 4.375rem;
  width: 25rem;
  border: none;
  box-shadow: 0 5px 10px 1px var(--h-shadow-color);
  padding: 0.625rem;
}

.h-nav .h-nav-child li {
  float: left;
  width: 25%;
  text-align: center;
}

.h-user-wrapper {
  width: 100%;
  height: 138px;
  color: var(--h-color-white);
  background-image: linear-gradient(135deg, var(--h-color-primary) 0%, var(--h-bg-brand-end) 100%);
  text-align: center;
}

.h-user-wrapper .h-user-avatar {
  display: block;
  padding-top: 26px;
}

.h-user-wrapper .h-user-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--h-avatar-border);
}

.h-user-wrapper .h-user-title {
  display: block;
  margin-top: 8px;
  line-height: 20px;
}

.h-user-wrapper .h-user-tag {
  margin-top: 6px;
  font-style: normal;
}

.h-nav-side {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 300px;
  max-width: 82vw;
  height: 100vh;
  overflow: hidden;
  border-radius: 0 14px 14px 0;
  box-shadow: 6px 0 26px var(--h-shadow-side);
  transform: translateX(-105%);
  transition: transform 0.22s ease;
  will-change: transform;
}

.h-nav-side.h-nav-side-active {
  transform: translateX(0);
}

.h-nav-side .layui-side-scroll {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 24px;
  background: var(--h-bg-white);
}

.h-nav-side .layui-nav-tree {
  width: 100%;
  padding: 10px 10px 18px;
  background: var(--h-bg-white);
}

.h-nav-side .layui-nav-tree .layui-nav-item {
  margin-bottom: 4px;
}

.h-nav-side .layui-nav-tree .layui-nav-item a {
  height: 44px;
  line-height: 44px;
  border-radius: 8px;
        color: var(--h-color-black) !important;
}

.h-nav-side .layui-nav-tree .layui-nav-item a:hover {
          background-color: var(--h-bg-nav-hover);
}

.h-nav-side .layui-nav-tree .layui-nav-item a i {
          color: var(--h-color-black) !important;
}

.h-nav-side .layui-nav-itemed .layui-nav-child {
      background-color: var(--h-bg-white) !important;
  padding: 4px 0 6px 10px;
}

.h-nav-side .layui-nav-itemed .layui-nav-child dd a {
  height: 40px;
  line-height: 40px;
        color: var(--h-color-text-subtle) !important;
}

.h-nav-side .layui-nav-itemed a .layui-nav-more {
      border-color: transparent transparent var(--h-border-arrow);
}

#btnNavSide {
  width: 44px;
  text-align: right;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

#btnNavSide .layui-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  font-size: 22px;
    color: var(--h-color-white);
}

.h-mobile-search-btn {
  width: 44px;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.h-mobile-search-btn .layui-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  font-size: 22px;
  color: var(--h-color-white);
}

.h-mobile-search-btn.is-active .layui-icon,
#btnNavSide .layui-icon:hover,
.h-mobile-search-btn .layui-icon:hover {
  background-color: var(--h-header-hover-bg);
}

.h-mobile-search-panel {
  position: absolute;
  top: 4.375rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 15px;
  background-color: var(--h-bg-dark);
  box-shadow: 0 8px 18px var(--h-shadow-side);
}

.h-mobile-search-form {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.h-mobile-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 38px;
  border: none;
  border-radius: 3px 0 0 3px;
  color: var(--h-color-text);
  background-color: var(--h-bg-white);
}

.h-mobile-search-submit {
  flex: 0 0 44px;
  width: 44px;
  height: 38px;
  border: none;
  border-radius: 0 3px 3px 0;
  color: var(--h-color-white);
  background-color: var(--h-bg-header-hover);
  cursor: pointer;
}

.h-nav-side-open {
  overflow: hidden;
}

.h-rmain {
  height: 4.375rem;
  line-height: 4.375rem;
  overflow: hidden;
}

.h-rmain .h-search {
  display: flex;
  align-items: center;
  height: inherit;
  padding: 0 0.625rem;
}

.h-rmain .h-search .h-sinput {
  display: inline;
  background-color: var(--h-header-hover-bg);
  border: none 0;
  color: var(--h-header-text-muted);
  font-size: 12px;
}

.h-rmain .h-search .h-sbutton {
  background: var(--h-bg-header-hover);
  border: none;
  color: var(--h-color-white);
}

.h-rmain .h-search .h-sbutton .h-sicon {
  background-color: var(--h-bg-header-hover);
  height: 38px;
  line-height: 38px;
  padding: 0 10px;
  cursor: pointer;
}

/* banner */
.h-banner .h-banner-item a,
.h-banner .h-banner-item .h-lazy-banner {
  display: block;
}

.h-banner .h-banner-item .h-lazy-banner {
  height: 304px;
  min-height: 304px;
}

.h-banner .h-banner-item img {
  width: 100%;
  height: 304px;
}

/*面包屑*/
.h-breadcrumb-wrapper {
  margin-bottom: 10px;
}

.h-breadcrumb-wrapper .h-breadcrumb {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 10px 10px 10px 0;
}

.h-breadcrumb-wrapper .h-breadcrumb .breadcrumb-item {
  float: left;
}

.h-breadcrumb-wrapper .h-breadcrumb .breadcrumb-item a {
  padding: 0 5px;
}

.h-breadcrumb-wrapper .h-breadcrumb .breadcrumb-item::before {
  content: "/";
}

.h-breadcrumb-wrapper .h-breadcrumb .breadcrumb-item:first-child::before {
  content: "";
}

.h-breadcrumb-wrapper .h-breadcrumb .breadcrumb-item:last-child {
  max-width: 45%;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.h-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.layui-card-header h2,
.layui-card-header h3 {
  display: initial;
  font-weight: 600;
  font-size: 18px;
}

.layui-card-header a {
  float: right;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.layui-card-header a p {
  display: initial;
}

.layui-card-header a i {
  position: static;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
}

.h-comcard,
.h-topcard,
.h-catalog,
.h-catalog-list,
.h-detail {
  overflow: hidden;
}

.h-comcard .layui-card-header>i,
.h-topcard .layui-card-header>i,
.h-catalog .layui-card-header>i,
.h-catalog-list .layui-card-header>i,
.h-detail .layui-card-header>i {
  padding-right: 5px;
}

.h-comcard header>h2,
.h-comcard header>h3,
.h-topcard header>h2,
.h-topcard header>h3,
.h-catalog header>h2,
.h-catalog header>h3,
.h-catalog-list header>h2,
.h-catalog-list header>h3,
.h-detail header>h2,
.h-detail header>h3 {
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.h-comcard section,
.h-topcard section,
.h-catalog section,
.h-catalog-list section,
.h-detail section {
  overflow: hidden;
}

.h-comcard li {
  float: left;
  padding: 0 0.625rem;
  text-align: center;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.h-comcard li a:hover {
  color: var(--h-color-text);
  text-decoration: underline;
}

.h-index-catalog ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.h-index-catalog li {
  width: 17%;
  padding: 0 0.625rem;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.h-index-catalog li a:hover {
  color: var(--h-color-text);
  text-decoration: underline;
}

html[data-theme="dark"] .h-index-catalog {
  background-color: var(--h-bg-white);
}

html[data-theme="dark"] .h-index-catalog .layui-card-header {
  color: var(--h-color-text-strong);
  background-color: var(--h-bg-white);
  border-bottom-color: var(--h-bg-light);
}

html[data-theme="dark"] .h-index-catalog .layui-card-header a,
html[data-theme="dark"] .h-index-catalog .layui-card-header i {
  color: var(--h-color-text-subtle);
}

html[data-theme="dark"] .h-index-catalog .layui-card-body {
  background-color: var(--h-bg-white);
}

html[data-theme="dark"] .h-index-catalog .layui-links .link-item {
  background-color: var(--h-bg-soft) !important;
  border: 1px solid var(--h-bg-light);
}

html[data-theme="dark"] .h-index-catalog .layui-links .link-item a {
  color: var(--h-color-text) !important;
}

html[data-theme="dark"] .h-index-catalog .layui-links .link-item:hover {
  background-image: none !important;
  background-color: var(--h-bg-nav-hover) !important;
  border-color: var(--h-color-primary);
}

html[data-theme="dark"] .h-index-catalog .layui-links .link-item:hover a {
  color: var(--h-color-text-strong) !important;
  text-decoration: none;
}

.h-favicon {
  width: 16px;
  height: 16px;
  padding-right: 5px;
  border-radius: 50%;
  object-fit: contain;
  vertical-align: middle;
}

.h-lazy-placeholder {
  position: relative;
  display: block;
  width: 100%;
  min-height: 80px;
  overflow: hidden;
  background-color: var(--h-bg-soft);
  color: var(--h-color-disabled);
}

.h-lazy-placeholder>.layui-icon {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
}

.h-lazy-placeholder>img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: none;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.h-lazy-placeholder.is-loaded>.layui-icon,
.h-lazy-placeholder.is-failed>img {
  display: none;
}

.h-lazy-placeholder.is-loaded>img {
  opacity: 1;
}

.h-recommend {
  height: 304px;
}

.h-recommend section {
  height: 234px;
}

.h-recommend .layui-links {
  height: 251px;
}

.h-topcard a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.h-topcard a strong {
  line-height: 16px;
  padding: 0px 0.3125rem;
  background-color: var(--h-bg-rank);
  color: var(--h-color-white);
  box-shadow: 0 0 0.3125rem 0 var(--h-shadow-rank);
}

.h-topcard a h3 {
  flex-grow: 2;
  width: 70%;
  margin: 0 0.3125rem;
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  color: var(--h-color-text-soft);
}

.h-topcard a h3:hover {
  text-decoration: underline;
}

.h-topcard a b {
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.h-topcard li:nth-child(1) strong {
  background-color: var(--h-color-success);
}

.h-topcard li:nth-child(2) strong {
  background-color: var(--h-color-primary);
}

.h-topcard li:nth-child(3) strong {
  background-color: var(--h-color-danger);
}

/*目录页*/
.h-catalog section {
  min-height: 0;
}

.h-catalog .layui-links li {
  float: left;
  width: 15%;
  height: 3.125rem;
  line-height: 3.125rem;
  color: var(--h-color-white);
  text-align: center;
  padding: 0 0.625rem;
  margin: 0.625rem;
  border-radius: 0.3125rem;
  cursor: pointer;
}

.h-catalog .layui-links li a {
  font-size: 16px;
}

.h-catalog .layui-links li.h-link-this,
.h-catalog .layui-links li:hover {
  background-color: var(--h-bg-light);
  box-shadow: 0 0 0 0 var(--h-color-white);
}

.h-catalog .layui-links li.h-link-this a,
.h-catalog .layui-links li:hover a {
  color: var(--h-color-text-strong);
  text-decoration: none;
}

/*目录列表*/
.h-catalog-list section {
  min-height: 0;
  padding: 0;
}

.h-catalog-list .layui-links {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  overflow: hidden;
}

.h-catalog-list .layui-links li {
  padding: 1.25rem;
  overflow: hidden;
  color: var(--h-color-white);
  text-align: center;
  border-bottom: 1px solid var(--h-bg-light);
  border-right: 1px solid var(--h-bg-light);
  cursor: pointer;
}

.h-catalog-list .layui-links li:hover {
  background-color: var(--h-bg-hover);
}

.h-catalog-list .layui-links li:hover a {
  color: var(--h-color-text-strong);
  text-decoration: none;
}

.h-catalog-list .layui-links li:nth-child(3n) {
  border-right: none;
}

.h-catalog-list .layui-links li:nth-last-child(1),
.h-catalog-list .layui-links li:nth-last-child(2),
.h-catalog-list .layui-links li:nth-last-child(3) {
  border-bottom: none;
}

.h-catalog-list .layui-links a {
  display: block;
  height: 100%;
}

.h-catalog-list .layui-links img {
  width: 12.5rem;
  height: 4.375rem;
}

.h-catalog-list .layui-links .h-lazy-thumb {
  width: 12.5rem;
  height: 4.375rem;
  min-height: 4.375rem;
  margin: 0 auto;
  padding: 0;
  background-color: var(--h-bg-soft);
  color: var(--h-color-disabled);
}

.h-catalog-list .layui-links .h-lazy-thumb:hover {
  background-color: var(--h-bg-soft);
  color: var(--h-color-disabled);
}

.h-catalog-list .layui-links p {
  height: 3.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.h-catalog-list .layui-links span {
  margin-top: 0.625rem;
  padding: 0.1875rem 0.625rem;
  background-color: var(--h-bg-light);
  color: var(--h-color-success);
}

.h-catalog-list .layui-links span:hover {
  background-color: var(--h-color-success);
  color: var(--h-color-white);
}

.h-catalog-list .layui-links span.h-fleft {
  float: left;
  border-top-right-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
}

.h-catalog-list .layui-links span.h-fright {
  float: right;
  border-top-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}

.h-page-list .page-control .pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.h-page-list .page-control .pagination .page-item {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--h-bg-pagination);
}

.h-page-list .page-control .pagination .page-item a {
  display: block;
  color: var(--h-color-text);
}

.h-page-list .page-control .pagination .active {
  background: var(--h-color-primary);
  color: var(--h-color-white);
}

/**详情页**/
.h-detail .layui-card-header {
  position: relative;
}

.h-detail .h-detail-left {
  overflow: hidden;
}

.h-detail .layui-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.h-detail .layui-links>li {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  padding: 1.25rem;
  overflow: hidden;
  text-align: left;
}

.h-detail .layui-links>li:hover {
  background-color: var(--h-bg-hover);
}

.h-detail .layui-links>li:hover a {
  color: var(--h-color-text-strong);
  text-decoration: none;
}

.h-detail .layui-links>li span {
  color: var(--h-color-disabled-border);
}

.h-detail .layui-links>li span:first-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

.h-detail .layui-links>li.h-weight-item {
  gap: 8px;
}

.h-detail .layui-links>li.h-weight-item span:first-child {
  color: var(--h-color-text);
  font-weight: 600;
}

.h-detail .layui-links>li img.h-weight-img {
  flex: 0 0 auto;
  min-width: 44px;
  width: auto;
  max-width: 72px;
  height: 18px;
  object-fit: contain;
}

.h-detail .layui-links>li a,
.h-detail .layui-links>li strong,
.h-detail .layui-links>li #web_rate {
  min-width: 0;
  flex: 1 1 auto;
}

.h-detail .layui-links>li a,
.h-detail .layui-links>li strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--h-color-text);
  font-weight: normal;
}

.h-detail .layui-links>li .layui-rate {
  padding: 0;
}

.h-detail .layui-links>li a img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.h-detail .h-detail-right img {
  width: 100%;
  height: 12.5rem;
  box-shadow: 0 0 0.6rem 0 var(--h-shadow-color);
  border: 2px solid var(--h-bg-light);
}

.h-detail .h-detail-right .h-lazy-detail-thumb {
  width: 100%;
  height: 12.5rem;
  min-height: 12.5rem;
  border: 2px solid var(--h-bg-light);
  box-shadow: 0 0 0.6rem 0 var(--h-shadow-color);
  box-sizing: border-box;
}

.h-detail .h-detail-right .h-lazy-detail-thumb img {
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: none;
}

.h-comcard .h-lazy-detail-thumb {
  width: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 9;
}

.h-comcard .h-lazy-detail-thumb img {
  width: 100%;
  height: 100%;
}

.h-snapshot-card .layui-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  height: auto;
  min-height: 42px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.5;
}

.h-snapshot-card .layui-card-header>i {
  flex: 0 0 auto;
  padding-right: 0;
  margin-top: 0;
}

.h-snapshot-card header>h2,
.h-snapshot-card header>h3 {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.5;
}

.h-snapshot-card .layui-card-body {
  padding: 14px;
}

.h-snapshot-card .layui-card-body>a {
  display: block;
}

.h-snapshot-card .layui-card-body>a>img {
  display: block;
  width: 100%;
  min-height: 320px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--h-bg-light);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--h-bg-soft) 0%, var(--h-bg-page) 100%);
  box-shadow: 0 10px 24px -18px var(--h-shadow-side);
  object-fit: cover;
  object-position: center top;
}

.h-snapshot-card .layui-card-body>a>img.h-lazy-loaded {
  opacity: 1;
}

.h-snapshot-link {
  display: block;
}

.h-snapshot-thumb {
  min-height: 320px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--h-bg-light);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--h-bg-soft) 0%, var(--h-bg-page) 100%);
  box-shadow: 0 10px 24px -18px var(--h-shadow-side);
}

.h-snapshot-thumb>img {
  object-fit: cover;
  object-position: center top;
}

.h-snapshot-card .layui-card-body>a:hover>img {
  border-color: var(--h-color-primary);
}

.h-detail .h-detail-right .h-dright-btn,
.h-detail .h-detail-right .h-dright-btnout {
  display: block;
  width: 100%;
  height: 28px;
  line-height: 28px;
  border: 1px solid var(--h-color-success);
  background-color: var(--h-color-success);
  color: var(--h-color-white);
  margin-top: 0.625rem;
  text-align: center;
  font-size: 14px;
  border-radius: 0.1875rem;
  transition: 0.2s all;
}

.h-detail .h-detail-right .h-dright-btn:hover,
.h-detail .h-detail-right .h-dright-btnout:hover {
  background-color: var(--h-success-hover);
  color: var(--h-color-white);
}

.h-detail .h-detail-right .h-dright-btnout {
  background-color: var(--h-bg-white);
  color: var(--h-color-success);
}

.h-detail .h-detail-right .h-dright-btnout:hover {
  background-color: var(--h-success-soft);
  color: var(--h-color-success);
}

.h-link-check-btn {
  display: block;
  width: 100%;
  height: 28px;
  line-height: 26px;
  border: 1px solid var(--h-color-primary);
  background-color: var(--h-bg-white);
  color: var(--h-color-primary);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  text-align: center;
  font-size: 14px;
  border-radius: 0.1875rem;
  cursor: pointer;
  transition: 0.2s all;
}

.h-link-check-btn:hover {
  background-color: var(--h-bg-link-check-hover);
}

.h-link-check-btn:disabled {
  border-color: var(--h-color-disabled-border);
  color: var(--h-color-disabled);
  background-color: var(--h-bg-soft);
  cursor: not-allowed;
}

.h-link-status-tag {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 44px solid var(--h-color-muted);
  border-left: 54px solid transparent;
  line-height: 0;
}

.h-link-status-tag b {
  position: absolute;
  top: -35px;
  right: -5px;
  width: 44px;
  color: var(--h-color-white);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  transform: rotate(45deg);
  transform-origin: center;
  font-weight: bold;
}

.h-link-status-tag.is-available {
  border-top-color: var(--h-color-status-success);
}

.h-link-status-tag.is-unavailable {
  border-top-color: var(--h-color-danger);
}

.h-link-status-tag.is-unknown {
  border-top-color: var(--h-color-muted);
}

.h-detail-warning {
  margin-left: 40%;
  margin: 5% 20%;
  line-height: 30px;
  background: var(--h-bg-warning);
  color: var(--h-color-warning);
  padding: 15px 30px;
  border-radius: 5px;
}

/**友情连接**/
.h-flink {
  margin: 0.625rem 0;
}

.h-flink .layui-card-header {
  display: block;
}

/**底部**/
.h-footer {
  color: var(--h-color-footer-text);
  margin-top: 0.625rem;
  padding: 50px 0;
  background-color: var(--h-bg-dark);
  /****公众号****/
}

.h-footer .h-fqqq,
.h-footer .h-fgzh {
  display: flex;
  flex-flow: column-reverse;
  margin-left: 1.25rem;
  text-align: center;
}

.h-footer .h-fqqq span,
.h-footer .h-fgzh span {
  margin-top: 0.3125rem;
  color: var(--h-color-white);
}

.h-footer .h-fqqq img,
.h-footer .h-fgzh img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  box-sizing: border-box;
  background-color: var(--h-color-white);
}

.h-footer .h-fqqq .h-lazy-qrcode,
.h-footer .h-fgzh .h-lazy-qrcode {
  width: 80px;
  height: 80px;
  min-height: 80px;
  margin-top: 0;
  color: var(--h-color-disabled);
  background-color: var(--h-color-white);
}

.h-footer .h-rheader,
.h-footer .h-rmcopy,
.h-footer .h-rmICP,
.h-footer .h-rmnote,
.h-footer .h-rmcontact {
  margin-bottom: 0.3rem;
}

.h-footer .h-rmcopy span,
.h-footer .h-rmcopy a,
.h-footer .h-rmICP span,
.h-footer .h-rmICP a,
.h-footer .h-rmnote p,
.h-footer .h-rmcontact p {
  color: var(--h-color-footer-text);
}

.h-footer .h-rheader a:hover,
.h-footer .h-rmcopy a:hover,
.h-footer .h-rmICP a:hover {
  color: var(--h-color-success);
  text-decoration: underline;
}

.layui-fixbar {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 999999;
}

.layui-fixbar li {
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-bottom: 1px;
  text-align: center;
  cursor: pointer;
  font-size: 30px;
  background-color: var(--h-bg-rank);
  color: var(--h-color-white);
  border-radius: 2px;
  opacity: 0.95;
}

.layui-fixbar li:hover {
  opacity: 0.85;
}

.layui-fixbar .h-theme-toggle {
  font-size: 24px;
}

html[data-theme="dark"] .layui-fixbar .h-theme-toggle {
  background-color: var(--h-color-primary);
}

.h-webinfo .layui-links li {
  line-height: 2.2em;
}

.h-webinfo .h-webinfo-inner-links {
  display: flex;
  align-items: center;
}

.h-webinfo .h-webinfo-inner-links b {
  flex: 0 0 auto;
}

.h-webinfo .h-webinfo-inner-links span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.h-webinfo .h-webinfo-inner-links a {
  color: var(--h-color-primary);
  line-height: 1.8;
}

.h-webinfo .h-webinfo-inner-links a:hover {
  text-decoration: underline;
}

.h-user-stat-num {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.site-mobile-shade {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--h-overlay-mobile);
  backdrop-filter: blur(2px);
  z-index: 998;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-button,
::-webkit-scrollbar-button:vertical {
  display: none;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track:vertical {
  background-color: black;
}

::-webkit-scrollbar-track-piece {
  background-color: var(--h-scroll-track);
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:vertical {
  margin-right: 10px;
  background-color: var(--h-scroll-thumb);
}

::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:vertical:hover {
  background-color: var(--h-scroll-thumb-hover);
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-corner:vertical {
  background-color: var(--h-scroll-corner);
}

::-webkit-scrollbar-resizer,
::-webkit-scrollbar-resizer:vertical {
  background-color: var(--h-scroll-resizer);
}

@media screen and (max-width: 992px) {

  .h-snapshot-card .layui-card-header {
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.4;
  }

  .h-snapshot-card header>h2,
  .h-snapshot-card header>h3 {
    font-size: 15px;
    line-height: 1.5;
  }

  .h-snapshot-card .layui-card-body {
    padding: 10px;
  }

  .h-snapshot-card {
    overflow: hidden;
  }

  .h-snapshot-thumb {
    min-height: 200px;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .h-snapshot-thumb>.layui-icon {
    font-size: 26px;
  }

  .h-snapshot-card .layui-card-body>a>img {
    min-height: 200px;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .h-index-catalog .layui-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
  }

  .h-index-catalog li {
    box-sizing: border-box;
    width: auto;
    min-width: 0;
    padding: 0 0.375rem;
  }

  .h-index-catalog li a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .h-catalog .layui-links {
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
    overflow: hidden;
  }

  .h-catalog .layui-links li {
    width: 100%;
  }

  .h-detail .layui-links {
    display: block;
  }

  .h-detail .layui-links>li {
    padding: 0.5rem;
  }

  .h-catalog-list .layui-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .h-catalog-list .layui-links>li {
    box-sizing: border-box;
    padding: 0.5rem;
    border-bottom: 1px dashed var(--h-bg-pagination) !important;
  }

  .h-catalog-list .layui-links img {
    width: 100%;
    height: 3.75rem;
    object-fit: cover;
  }

  .h-catalog-list .layui-links .h-lazy-thumb {
    width: 100%;
    height: 3.75rem;
    min-height: 3.75rem;
  }
}

/* product pages */
.product-layout {
  padding: 16px 0 28px;
  background: var(--h-bg-page);
}

.product-layout .h-breadcrumb {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--h-color-text-subtle);
}

.product-layout .h-breadcrumb a {
  color: var(--h-color-text-subtle);
}

.product-layout .h-breadcrumb a:hover {
  color: var(--h-color-primary);
  text-decoration: none;
}

.product-list-grid > [class*="layui-col-"] {
  display: flex;
}

.product-list-grid:empty::before {
  content: "暂无内容";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  border: 1px dashed var(--h-bg-light);
  border-radius: 8px;
  background: var(--h-bg-white);
  color: var(--h-color-text-subtle);
}

.product-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--h-bg-light);
  border-radius: 8px;
  background: var(--h-bg-white);
  box-shadow: 0 10px 26px -22px var(--h-shadow-side);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-item:hover {
  border-color: var(--h-color-primary);
  box-shadow: 0 18px 34px -24px var(--h-shadow-side);
  transform: translateY(-2px);
}

.product-item .item-link {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--h-bg-soft);
}

.product-item .item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-item:hover .item-img {
  transform: scale(1.03);
}

.product-item .item-body {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
}

.product-item .item-title {
  width: 100%;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.product-item .item-title a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--h-color-text-strong);
  text-decoration: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-item .item-title a:hover {
  color: var(--h-color-primary);
}

.product-pagination {
  padding: 8px 0 0;
  text-align: center;
}

.product-panel {
  overflow: hidden;
  border: 1px solid var(--h-bg-light);
  border-radius: 8px;
  background: var(--h-bg-white);
  box-shadow: 0 12px 30px -24px var(--h-shadow-side);
}

.product-summary {
  margin-bottom: 15px;
}

.product-panel-heading {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--h-bg-light);
}

.product-panel-heading .title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--h-color-text-strong);
}

.product-detail {
  padding: 22px;
}

.product-detail .detail-img {
  overflow: hidden;
  border: 1px solid var(--h-bg-light);
  border-radius: 8px;
  background: var(--h-bg-soft);
  aspect-ratio: 16 / 10;
}

.product-detail .detail-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail .detail-info {
  min-width: 0;
}

.product-detail .title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--h-color-text-strong);
}

.product-detail .detail-meta {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin-right: 10px;
  padding: 7px 10px;
  border: 1px solid var(--h-bg-light);
  border-radius: 6px;
  background: var(--h-bg-soft);
  color: var(--h-color-text-subtle);
  line-height: 1.4;
  vertical-align: top;
}

.product-detail .detail-meta a {
  color: var(--h-color-primary);
}

.product-detail-page .ssy-detail-body {
  padding: 20px 22px 24px;
  color: var(--h-color-text);
  font-size: 15px;
  line-height: 1.9;
}

.product-detail-page .ssy-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-detail-page .ssy-detail-body p {
  margin-bottom: 1em;
}

html[data-theme="dark"] .product-item,
html[data-theme="dark"] .product-panel {
  border-color: var(--h-bg-light);
  background: var(--h-bg-white);
}

@media screen and (max-width: 992px) {
  .product-layout {
    padding-top: 10px;
  }

  .product-detail {
    padding: 14px;
  }

  .product-detail .title {
    font-size: 20px;
  }

  .product-detail .detail-meta {
    display: flex;
    width: 100%;
    margin-right: 0;
  }

  .product-detail-page .ssy-detail-body {
    padding: 16px 14px 20px;
  }
}

.layout-main,
.ssy-main {
  padding: 15px 0;
  background-color: var(--h-bg-page);
}

.ssy-box,
.panel-box {
  margin-bottom: 15px;
  border: 1px solid var(--h-bg-light);
  background-color: var(--h-bg-white);
}

.ssy-box-heading,
.panel-box-heading {
  min-height: 42px;
  padding: 12px 15px;
  border-bottom: 1px solid var(--h-bg-light);
  background-color: var(--h-bg-white);
}

.ssy-box-heading .title,
.panel-box-heading .title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--h-color-text-strong);
}

.ssy-box-body,
.panel-box-body {
  padding: 15px;
  background-color: var(--h-bg-white);
}

.layui-input,
.layui-textarea {
  box-sizing: border-box;
}

.form-label,
.layui-form-item label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--h-color-text);
}

.h-form-label {
  min-height: 38px;
  line-height: 38px;
  text-align: right;
}

.layui-btn[disabled],
.layui-btn.layui-disabled {
  cursor: not-allowed;
  opacity: .65;
}

.ssy-btn {
  display: inline-block;
  box-sizing: border-box;
  height: 38px;
  line-height: 36px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
}

.ssy-btn-sm {
  height: 30px;
  line-height: 28px;
  padding: 0 10px;
  font-size: 12px;
}

.ssy-btn-xs {
  height: 24px;
  line-height: 22px;
  padding: 0 8px;
  font-size: 12px;
}

.ssy-btn-primary {
  border-color: var(--h-color-primary);
  background-color: var(--h-color-primary);
  color: var(--h-color-white) !important;
}

.ssy-btn-empty {
  border-color: var(--h-bg-light);
  background-color: transparent;
  color: var(--h-color-text);
}

.h-list-unstyled {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.h-text-left {
  text-align: left !important;
}

.h-text-center {
  text-align: center !important;
}

.h-text-right {
  text-align: right !important;
}

.h-float-left {
  float: left !important;
}

.h-float-right {
  float: right !important;
}

.h-w-100 {
  width: 100% !important;
}

.h-bg-transparent {
  background-color: transparent !important;
}

.h-justify-center {
  justify-content: center !important;
}

.h-p-0 {
  padding: 0 !important;
}

.h-p-3 {
  padding: 15px !important;
}

.h-py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.h-pb-3 {
  padding-bottom: 15px !important;
}

.h-pb-5 {
  padding-bottom: 48px !important;
}

.h-mt-2 {
  margin-top: 8px !important;
}

.h-mt-3 {
  margin-top: 15px !important;
}

.h-mt-4 {
  margin-top: 24px !important;
}

.h-mb-2 {
  margin-bottom: 8px !important;
}

.h-mb-3 {
  margin-bottom: 15px !important;
}

.h-mb-4 {
  margin-bottom: 24px !important;
}

.h-ml-1 {
  margin-left: 4px !important;
}

.h-ml-2 {
  margin-left: 8px !important;
}

.h-ml-3 {
  margin-left: 15px !important;
}

.h-breadcrumb {
  margin: 0;
  padding: 12px 0;
  list-style: none;
}

.h-breadcrumb .breadcrumb-item {
  display: inline-block;
  color: var(--h-color-text-subtle);
}

.h-breadcrumb .breadcrumb-item::before {
  display: inline-block;
  padding: 0 8px;
  color: var(--h-color-disabled);
  content: "/";
}

.h-breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}

.account-main {
  min-height: 455px;
}

.admin-container-header {
  min-height: 50px;
  padding: 10px 15px;
  border-bottom: 1px solid var(--h-bg-light);
  background-color: var(--h-bg-white);
}

.admin-container-body {
  padding: 15px;
  background-color: var(--h-bg-page);
}

.diy-table-list {
  width: 100%;
  min-height: 120px;
}

.diy-table-item {
  border-bottom: 1px solid var(--h-bg-light);
}

.diy-table-item > .layui-row,
.diy-table-item > ul {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.diy-table-item li {
  box-sizing: border-box;
  padding: 8px 10px;
}

.diy-table-item-header {
  background-color: var(--h-bg-soft);
  font-weight: 600;
}

.over-h-e {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.h-agreement-layer {
  padding: 20px;
  line-height: 1.8;
}

@media screen and (min-width: 992px) {
  .h-mb-lg-0 {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .login-box,
  .reg-box,
  .email-box {
    width: auto !important;
  }

  .user-menu-side {
    min-height: auto;
    margin-bottom: 15px;
  }
}
