:root {
  --t2-bg: #ffffff;
  --t2-card: #ffffff;
  --t2-border: #e5e7eb;
  --t2-text: #1e2226;
  --t2-muted: #878b9a;
  --t2-soft: #f3f4f6;
  --t2-primary: #1e2226;
  --t2-red: #ef4444;
  --t2-blue: #3d45ff;
  --t2-shadow: 0 8px 24px rgba(15, 23, 42, .06);
  --t2-pink: #ff5169;
  --t2-pink-bg: #fff0f3;
}

* {
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap');

body {
  margin: 0;
  background: var(--t2-bg);
  color: var(--t2-text);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

.t2-page {
  min-height: 100vh;
  background: var(--t2-bg);
}

.t2-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.t2-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0;
  background: #fff;
  box-shadow: 0 2px 20px rgba(14, 28, 97, .06);
}

.t2-topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  min-height: 72px;
  padding: 0 20px 0 40px;
}

.t2-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
  min-width: 0;
  max-width: max(0px, min(260px, calc(max(16px, (100vw - 1200px) / 2) - 48px)));
  overflow: hidden;
  color: #181d27;
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: -.02em;
}

.t2-brand-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t2-brand img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

.t2-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0;
  margin-right: 20px;
  color: #4b5563;
  font-size: 14px;
}

.t2-nav a,
.t2-nav .t2-nav-action {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
}

.t2-nav .t2-feedback-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-right: 8px;
  border: 0;
  background: transparent;
  color: var(--t2-red);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.t2-nav .t2-feedback-link:hover {
  color: #dc2626;
}

.t2-nav .t2-nav-action {
  padding: 8px 12px;
  border-radius: 8px;
  background: #eff2f6;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 20px;
}

.t2-nav a:hover,
.t2-nav .t2-nav-action:hover {
  color: #181d27;
}

.t2-nav .t2-nav-action:hover {
  background: #e8edf3;
}

.t2-nav-extra,
.t2-nav-extra .btns {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
}

.t2-nav-extra a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #eff2f6;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 20px;
}

.t2-mobile-more-wrap,
.t2-mobile-more,
.t2-desktop-more-wrap {
  display: none;
}

.t2-mobile-more-wrap,
.t2-desktop-more-wrap {
  position: relative;
}

.t2-desktop-more-wrap {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.t2-more-dropdown {
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 130;
  display: block;
  width: 132px;
  padding: 4px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.t2-mobile-more-wrap.open .t2-more-dropdown,
.t2-desktop-more-wrap.open .t2-more-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.t2-more-dropdown-extra,
.t2-more-dropdown-extra .btns {
  display: grid;
  gap: 4px;
}

.t2-more-dropdown a,
.t2-more-dropdown button {
  display: flex;
  align-items: center;
  width: 122px;
  min-height: 30px;
  margin: 0 0 4px;
  padding: 5px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #4a4b54;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
}

.t2-more-dropdown a:last-child,
.t2-more-dropdown button:last-child {
  margin-bottom: 0;
}

.t2-more-dropdown a:hover,
.t2-more-dropdown button:hover {
  background: #f5f5f5;
  color: #181d27;
}

.t2-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 60px;
  height: 36px;
  min-height: 36px;
  margin-left: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  background: transparent;
  color: #181d27;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  cursor: pointer;
}

.t2-lang.open {
  background: rgba(24, 29, 39, .04);
}

.t2-lang-current {
  color: #181d27;
  font-size: 14px;
  line-height: 21px;
}

.t2-lang-arrow {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-left: 0;
  color: #181d27;
  transition: transform .18s ease;
}

.t2-lang.open .t2-lang-arrow {
  transform: rotate(180deg);
}

.t2-lang-dropdown {
  position: absolute;
  top: 36px;
  right: 0;
  z-index: 120;
  display: block;
  width: 120px;
  min-height: 70px;
  margin-top: 8px;
  padding: 4px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.t2-lang.open .t2-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.t2-lang-dropdown a {
  display: flex;
  align-items: center;
  width: 110px;
  height: 28px;
  min-height: 0;
  margin: 0 0 4px;
  padding: 4px 16px;
  border-radius: 6px;
  background: transparent;
  color: #4a4b54;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.t2-lang-dropdown a:last-child {
  margin-bottom: 0;
}

.t2-lang-dropdown a:hover {
  background: #f5f5f5;
  color: #181d27;
}

.t2-lang-dropdown a.active {
  background: #ff5169;
  color: #fff;
}

.t2-hero {
  padding: 56px 0 28px;
  text-align: center;
}

.t2-logo-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.t2-logo-large img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.t2-subtitle {
  max-width: 680px;
  margin: 0 auto 22px;
  color: var(--t2-muted);
  font-size: 15px;
  line-height: 1.8;
}

.t2-search {
  display: flex;
  align-items: center;
  width: min(720px, 100%);
  min-height: 52px;
  margin: 0 auto;
  border: 1px solid #dfe3ea;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.t2-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 22px;
  border: 0;
  outline: 0;
  color: var(--t2-text);
  font-size: 16px;
  background: transparent;
}

.t2-search button,
.t2-search .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 44px;
  margin-right: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--t2-pink);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.t2-search button:hover,
.t2-search .btn:hover {
  background: #e64555;
}

.t2-search-mini {
  width: min(420px, 42vw);
  min-height: 40px;
  box-shadow: none;
}

.t2-search-mini input {
  height: 40px;
  padding: 0 14px;
  font-size: 14px;
}

.t2-search-mini button,
.t2-search-mini .btn {
  width: 72px;
  height: 34px;
  font-size: 13px;
}

.t2-search-topbar {
  position: absolute;
  left: max(16px, calc((100% - 1200px) / 2));
  top: 15px;
  flex: 1 1 520px;
  width: min(766px, 45vw);
  max-width: 766px;
  min-width: 280px;
  min-height: 42px;
  margin: 0;
  transform: none;
  border: 2px solid rgba(30, 34, 38, .1);
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.t2-search-topbar input {
  height: 38px;
  padding: 12px 0 12px 12px;
  color: #1e2226;
  font-size: 15px;
  line-height: 21px;
}

.t2-search-topbar button,
.t2-search-topbar .btn {
  width: 36px;
  height: 38px;
  margin: 0 8px 0 0;
  border-radius: 0;
  background: transparent;
  color: #ffcece;
  font-size: 20px;
  font-weight: 400;
}

.t2-search-topbar button:hover,
.t2-search-topbar .btn:hover {
  background: transparent;
  color: #ff5169;
}

.t2-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 880px) 300px;
  justify-content: center;
  gap: 20px;
  align-items: start;
  width: min(1200px, calc(100% - 32px));
  padding: 24px 0 54px;
}

.t2-home-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0 54px;
}

.t2-single {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 54px;
}

.t2-card {
  border: 1px solid var(--t2-border);
  border-radius: 14px;
  background: var(--t2-card);
  box-shadow: var(--t2-shadow);
  overflow: hidden;
}

.t2-main-grid .t2-card {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(237, 237, 237, .5);
}

.t2-section {
  margin-bottom: 18px;
}

.t2-side-card {
  margin-bottom: 14px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(237, 237, 237, .5);
  overflow: hidden;
}

.t2-side-notice {
  display: flex;
  align-items: center;
  min-height: 134px;
  padding: 22px 16px;
  color: #434343;
}

.t2-side-notice-img {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  margin-right: 11px;
  padding: 2px;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.t2-side-notice-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t2-side-notice-img span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff5169, #ffcece);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.t2-side-notice-text {
  min-width: 0;
  color: #434343;
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  overflow: hidden;
}

.t2-side-notice-title {
  margin: 0 0 8px;
  color: #1e2226;
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t2-side-notice-desc {
  display: -webkit-box;
  margin: 0;
  color: #787878;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.t2-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px 0;
  margin-bottom: 16px;
  border-bottom: 0;
}

.t2-card-title {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  margin: 0;
  color: #2c2323;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  overflow: hidden;
}

.t2-detail-recommend .t2-card-head {
  padding: 0;
  margin-bottom: 16px;
}

.t2-recommend-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 40px;
}

.t2-recommend-item {
  display: flex;
  align-items: center;
  min-width: 0;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.t2-recommend-item:hover .t2-rank-title {
  color: #ff5169;
}

.t2-card-title svg,
.t2-card-title img {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: #ff5169;
  object-fit: contain;
}

.t2-more {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #817f7f;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}

.t2-more svg {
  width: 12px;
  height: 12px;
  margin-left: 2px;
}

.t2-more:hover {
  color: #ff5169;
}

.t2-rank-list,
.t2-list {
  display: block;
  padding: 0 16px 6px;
}

.t2-rank-item,
.t2-list-item {
  display: flex;
  align-items: center;
  min-height: 20px;
  margin-bottom: 14px;
  padding: 0;
  color: #1f1f1f;
  overflow: hidden;
}

.t2-rank-item:last-child,
.t2-list-item:last-child {
  margin-bottom: 0;
}

.t2-rank-item:hover,
.t2-list-item:hover {
  background: transparent;
  color: #ff5169;
}

.t2-rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 4px 0;
  background: transparent;
  color: #868686;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.t2-rank-item:nth-child(1) .t2-rank-num,
.t2-rank-item:nth-child(2) .t2-rank-num,
.t2-rank-item:nth-child(3) .t2-rank-num {
  background: #ffe8bc;
  color: #b76e00;
}

.t2-rank-title,
.t2-list-title {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t2-rank-item-count .t2-rank-title {
  flex: 1 1 auto;
}

.t2-search-bottom,
.t2-detail-bottom {
  display: none;
}

.t2-search-sidebar-wrap {
  display: contents;
}

.t2-count,
.t2-time,
.t2-badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 50px;
  width: 50px;
  margin-left: auto;
  color: rgba(31, 31, 31, .6);
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
  white-space: nowrap;
  overflow: hidden;
}

.t2-count svg {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  color: #ff5169;
}

.t2-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  padding: 0 16px 20px;
}

.t2-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  background: #f6f7fb;
  color: #434343;
  font-size: 12px;
  font-weight: 400;
}

.t2-tag:hover,
.t2-tag.active {
  background: #fff1f3;
  color: #ff5169;
}

.t2-source-tabs,
.t2-pan-tabs {
  display: flex;
  flex-wrap: wrap;
  min-height: 48px;
  margin-bottom: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(237, 237, 237, .5);
}

.t2-source-tabs a,
.t2-pan-tabs a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-right: 12px;
  padding: 0 6px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  transition: color .18s ease;
}

.t2-source-tabs a::after,
.t2-pan-tabs a::after {
  position: absolute;
  right: 6px;
  bottom: -10px;
  left: 6px;
  height: 3px;
  border-radius: 999px;
  background: #ff5169;
  content: '';
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .18s ease, transform .18s ease;
}

.t2-source-tabs a:hover,
.t2-pan-tabs a:hover,
.t2-source-tabs a.active,
.t2-pan-tabs a.active {
  background: transparent;
  color: #181d27;
}

.t2-source-tabs a:hover::after,
.t2-pan-tabs a:hover::after,
.t2-source-tabs a.active::after,
.t2-pan-tabs a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.t2-result-panel {
  padding: 0;
}

.t2-result-titlebar {
  display: flex;
  min-height: 48px;
  margin-bottom: 14px;
  padding: 5px 9px 5px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(237, 237, 237, .5);
  color: #434343;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.t2-result-titlebar > div:first-child {
  min-width: 0;
}

.t2-result-titlebar > div:last-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

.t2-result-titlebar strong,
.t2-result-titlebar span {
  color: #ef4444;
  font-weight: 700;
}

.t2-result-list {
  display: block;
}

.t2-result-item {
  min-height: 142px;
  margin-bottom: 14px;
  padding: 16px 16px 14px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(237, 237, 237, .5);
  overflow: hidden;
}

.t2-result-item:hover {
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(237, 237, 237, .75);
}

.t2-new-list {
  display: grid;
}

.t2-new-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 16px;
  border-bottom: 1px solid #f0f1f4;
  color: var(--t2-text);
}

.t2-new-item:last-child {
  border-bottom: 0;
}

.t2-new-item:hover {
  background: #fafafa;
}

.t2-new-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
  font-size: 12px;
  white-space: nowrap;
}

.t2-result-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 86px;
  overflow: hidden;
}

.t2-result-title-wrap {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #434343;
}

.t2-result-title-wrap:hover .t2-result-title {
  color: #ff5169;
}

.t2-result-desc {
  display: -webkit-box;
  margin: 12px 0 0;
  color: #444546;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.t2-result-category {
  align-self: flex-start;
  max-width: 88px;
  padding: 2px 7px;
  border-radius: 4px;
  background: #2c2323;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t2-disk-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.t2-action.t2-result-get-btn {
  margin-left: 0;
  border-color: #ff5169;
  background: #ff5169;
  color: #fff;
}

.t2-action.t2-result-get-btn:hover {
  border-color: #ff6f83;
  background: #ff6f83;
  color: #fff;
}

.t2-quan-link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.t2-quan-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fafafa;
}

.t2-quan-disk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 13px;
  white-space: nowrap;
}

.t2-quan-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.t2-disk-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.t2-chip-time {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 0;
  padding: 0;
  background: transparent;
  color: #808080;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
}

.t2-time-icon {
  width: 14px;
  height: 14px;
  margin-right: 2px;
  color: #808080;
}

.t2-result-title {
  display: block;
  margin: 0 0 0;
  color: #1e2226;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  overflow: hidden;
  transition: color .18s ease;
}

.t2-result-title p {
  margin: 0;
}

.t2-result-title em,
.t2-result-title span {
  color: #f97316 !important;
  font-style: normal;
}


.t2-page .el-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  font-weight: 400;
}

.t2-page .el-pagination.is-background .btn-prev,
.t2-page .el-pagination.is-background .btn-next,
.t2-page .el-pagination.is-background .el-pager li {
  min-width: 32px;
  height: 32px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #fff;
  color: #323233;
  font-size: 14px;
  line-height: 30px;
  box-shadow: 0 4px 8px rgba(237, 237, 237, .5);
}

.t2-page .el-pagination.is-background .btn-prev:hover,
.t2-page .el-pagination.is-background .btn-next:hover,
.t2-page .el-pagination.is-background .el-pager li:hover {
  border-color: #ff5169;
  color: #ff5169;
}

.t2-page .el-pagination.is-background .el-pager li:not(.disabled).active,
.t2-page .el-pagination.is-background .el-pager li:not(.disabled).is-active {
  border-color: #ff5169;
  background: #ff5169;
  color: #fff;
}

.t2-page .el-pagination.is-background .btn-prev:disabled,
.t2-page .el-pagination.is-background .btn-next:disabled,
.t2-page .el-pagination.is-background .el-pager li.disabled {
  color: #c0c4cc;
  cursor: not-allowed;
}

.t2-new-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.t2-new-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #fff;
  color: #323233;
  font-size: 14px;
  line-height: 30px;
  box-shadow: 0 4px 8px rgba(237, 237, 237, .5);
}

.t2-new-page-link:hover {
  border-color: #ff5169;
  color: #ff5169;
}

.t2-new-page-link.active {
  border-color: #ff5169;
  background: #ff5169;
  color: #fff;
}

.t2-new-page-link.disabled {
  color: #c0c4cc;
  pointer-events: none;
  cursor: not-allowed;
}

.t2-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  margin-top: 14px;
  color: #808080;
  font-size: 13px;
}

.t2-result-tags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

.t2-chip {
  display: inline-flex;
  align-items: center;
  max-width: 92px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: #f4f5f7;
  color: #808080;
  font-size: 12px;
  line-height: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t2-resource-links {
  margin: 14px 0 22px;
  padding: 22px 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(237, 237, 237, .5);
  color: #434343;
  overflow: hidden;
}

.t2-detail-resource-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  color: #444546;
  font-size: 14px;
  line-height: 21px;
}

.t2-resource-links .label {
  align-items: center;
  height: 30px;
  line-height: 30px;
}

.t2-resource-value {
  display: grid;
  gap: 10px;
  min-width: 0;
  color: #1e2226;
}

.t2-resource-link-block {
  display: flex;
  align-items: center;
  min-height: 30px;
  color: #1e2226;
  font-size: 14px;
  line-height: 30px;
}

.t2-disk {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 80px;
  margin-right: 20px;
  color: #444546;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
}

.t2-disk img,
.t2-disk .icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  object-fit: contain;
}

.t2-actions {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0;
}

.t2-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 30px;
  margin-left: 12px;
  padding: 5px 8px;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  background: transparent;
  color: #444546;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  cursor: pointer;
}

.t2-action:first-child {
  margin-left: 0;
}

.t2-action-download,
.t2-detail-row .t2-action-download {
  border-color: #0e60ff;
  color: #0e60ff;
}

.t2-action-copy,
.t2-detail-row .t2-action-copy {
  border-color: #4f4545;
  color: #2c2323;
}

.t2-action-feedback,
.t2-detail-row .t2-action-feedback {
  min-width: 90px;
  border-color: #ff6e6e;
  color: #ff6e6e;
}

.t2-action-qr,
.t2-detail-row .t2-action-qr {
  min-width: 120px;
  border-color: #c1c1c1;
  color: #444546;
}

.t2-action:hover {
  background: rgba(255, 110, 110, .08);
}

.t2-action-download:hover,
.t2-detail-row .t2-action-download:hover {
  color: #0e60ff;
}

.t2-action-copy:hover,
.t2-detail-row .t2-action-copy:hover {
  color: #2c2323;
}

.t2-action-feedback:hover,
.t2-detail-row .t2-action-feedback:hover {
  color: #ff6e6e;
}

.t2-action-qr:hover,
.t2-detail-row .t2-action-qr:hover {
  color: #444546;
}

.t2-scan-hint {
  display: none;
}

.t2-empty,
.t2-loading {
  padding: 46px 18px;
  border: 1px dashed var(--t2-border);
  border-radius: 12px;
  background: #fff;
  color: var(--t2-muted);
  text-align: center;
}

.t2-detail-basic {
  padding: 24px 34px 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(237, 237, 237, .5);
  color: #434343;
}

.t2-detail-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  color: #525252;
  font-size: 14px;
  line-height: 21px;
  list-style: none;
}

.t2-detail-breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.t2-detail-breadcrumb li:not(:last-child)::after {
  margin: 0 8px;
  color: #a3a3a3;
  content: '/';
}

.t2-detail-breadcrumb a {
  color: #525252;
}

.t2-detail-breadcrumb li:last-child {
  color: #535353;
  font-weight: 500;
}

.t2-detail-info {
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  justify-content: center;
}

.t2-detail-title {
  margin: 0 0 16px;
  color: #1e2226;
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  text-align: center;
}

.t2-detail-summary {
  margin: -6px 0 14px;
  color: #444546;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.t2-detail-meta {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  row-gap: 14px;
  margin: 0;
  color: #444546;
  font-size: 14px;
  line-height: 21px;
}

.t2-detail-row {
  display: contents;
  color: #444546;
  font-size: 14px;
  line-height: 21px;
}

.t2-detail-row .label {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-self: start;
  height: 21px;
  margin-right: 0;
  color: #444546;
  font-weight: 500;
  white-space: nowrap;
}

.t2-detail-row .label::after {
  content: ':';
  line-height: 21px;
}

.t2-detail-row a:not(.t2-action) {
  color: #1e2226;
}

.t2-detail-row > span:not(.label),
.t2-detail-meta > span:not(.label) {
  min-height: 21px;
  color: #1e2226;
  line-height: 21px;
}

.t2-resource-links .t2-detail-resource-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  color: #444546;
  font-size: 14px;
  line-height: 21px;
}

.t2-resource-links .t2-detail-row .label {
  align-items: center;
  height: 30px;
  line-height: 30px;
}

.t2-resource-links .t2-detail-row .label::after {
  line-height: 30px;
}

.t2-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t2-detail-tag {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 0 8px;
  border-radius: 4px;
  background: #f4f5f7;
  color: #444546;
  font-size: 12px;
}

.t2-detail-recommend {
  min-height: 232px;
  margin: 14px 0;
  padding: 20px 36px 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(237, 237, 237, .5);
  color: #434343;
  font-size: 16px;
  line-height: 24px;
}

.t2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--t2-pink);
  background: var(--t2-pink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.t2-btn-outline {
  background: #fff;
  color: var(--t2-pink);
}

.t2-dialog-url-box .el-dialog,
.dialogUrlBox .el-dialog {
  border-radius: 16px;
  overflow: hidden;
}

.t2-dialog-url {
  position: relative;
  text-align: center;
}

.t2-dialog-url .title {
  color: var(--t2-primary);
  font-size: 18px;
  font-weight: 900;
}

.t2-dialog-url .title span {
  color: var(--t2-red);
}

.t2-dialog-url .tips {
  margin-top: 8px;
  color: var(--t2-muted);
  font-size: 13px;
}

.t2-dialog-url .qrcode {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.t2-dialog-url .nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: #374151;
  font-size: 13px;
  line-height: 1.6;
  word-break: break-all;
}

.t2-dialog-statement {
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--t2-muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: left;
}

.t2-modal-toggle {
  display: none;
}

.t2-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 23, 42, .58);
}

.t2-modal-toggle:checked + .t2-modal {
  display: flex;
}

.t2-modal-card {
  width: min(340px, 100%);
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .22);
  text-align: center;
}

.t2-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  max-width: 100%;
  margin: 12px auto;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--t2-muted);
  font-size: 13px;
}

.t2-qr img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.t2-notice {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin: 14px 0 36px;
  padding: 12px 22px 12px 16px;
  border: 1px solid #ffdede;
  border-radius: 10px;
  background: #fffafa;
  box-shadow: 0 4px 12px rgba(246, 247, 249, .5);
  color: #434343;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.t2-footer-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--t2-border);
  border-radius: 12px;
  background: #fff;
  color: var(--t2-muted);
  font-size: 13px;
  line-height: 1.8;
}

.footerBox {
  border-top: 1px solid var(--t2-border);
  background: #fff;
  color: var(--t2-muted);
}

.footerBox .box {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
}


/* ── 微信机器人入口 ── */
.t2-nav-wechat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  margin-right: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #ecfff4;
  color: #148a45;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  white-space: nowrap;
}

.t2-nav-wechat:hover {
  background: #dff8eb;
  color: #0f7338;
}

.t2-wechat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #6bb657;
}

.t2-wechat-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.t2-more-dropdown-wechat {
  display: flex;
  align-items: center;
  width: 122px;
  min-height: 30px;
  margin: 0 0 4px;
  padding: 5px 12px;
  border-radius: 6px;
  background: transparent;
  color: #148a45;
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.t2-more-dropdown-wechat:hover {
  background: #ecfff4;
}

.t2-wechat-bot-card h3 {
  margin: 0 0 12px;
  color: var(--t2-text);
  font-size: 18px;
  font-weight: 800;
}

.t2-wechat-bot-card p {
  margin: 12px 0 0;
  color: var(--t2-muted);
  font-size: 13px;
  line-height: 1.7;
}

.t2-wechat-bot-card .t2-btn {
  margin-top: 18px;
}

/* ── 单列主布局 ── */
.t2-single-col {
  padding: 24px 0 54px;
}

/* ── 热门榜单卡片 ── */
.t2-hot-section {
  position: relative;
  width: 100%;
  min-height: 190px;
  margin: 0 auto 30px;
  border: 2px solid #ffcece;
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.t2-hot-section::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 126px;
  height: 52px;
  border-bottom-left-radius: 42px;
  background: #ffcece;
  pointer-events: none;
}

.t2-hot-section::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -2px;
  width: 46px;
  height: 46px;
  border-top-right-radius: 46px;
  background: #fff;
  box-shadow: 20px -18px 0 14px #ffcece;
  pointer-events: none;
}

.t2-hot-section .t2-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 32px;
  margin: 13px 20px 21px;
  padding: 0 4px 0 0;
  border-bottom: 0;
  pointer-events: none;
}

.t2-hot-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 104px;
  height: 30px;
  margin-top: 2px;
  padding: 7px 10px 6px;
  border-radius: 6px;
  background: #ff5169;
  color: #fff;
  font-size: 0;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
  pointer-events: auto;
}

.t2-hot-badge::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 1.7c.4 3.4-.7 5.5-2.4 7.5-.8-1.4-1-2.8-.6-4.4C7.3 7.1 5 10.4 5 14.1 5 19 8.4 22 12 22s7-3 7-7.9c0-3.2-1.6-5.9-4.2-8.2.2 2.3-.5 3.9-1.8 5.1.5-2.7.5-5.7.5-9.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 1.7c.4 3.4-.7 5.5-2.4 7.5-.8-1.4-1-2.8-.6-4.4C7.3 7.1 5 10.4 5 14.1 5 19 8.4 22 12 22s7-3 7-7.9c0-3.2-1.6-5.9-4.2-8.2.2 2.3-.5 3.9-1.8 5.1.5-2.7.5-5.7.5-9.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t2-hot-badge::after {
  content: "热门资源";
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 18px;
  white-space: nowrap;
}

.t2-hot-badge:hover {
  color: #fff;
  background: #ff5169;
}

.t2-more-pink {
  position: relative;
  top: -2px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  color: #ff5169;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  pointer-events: auto;
}

.t2-more-pink:hover {
  color: #ff5169;
}

.t2-hot-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 18px;
  margin: 0 20px 24px;
  padding: 0 6px 0 0;
}

.t2-hot-item {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  height: 20px;
  padding: 0;
  overflow: hidden;
  color: #1f1f1f;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.t2-hot-item:hover {
  background: transparent;
}

.t2-hot-item:hover .t2-rank-title,
.t2-hot-item:hover .t2-rank-title[style] {
  color: #ff5169 !important;
}

.t2-hot-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #878b9a;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.t2-hot-item:nth-child(1) .t2-hot-num { color: #ff1800; }
.t2-hot-item:nth-child(2) .t2-hot-num { color: #ff5407; }
.t2-hot-item:nth-child(3) .t2-hot-num { color: #ff9400; }
.t2-hot-num.top { color: inherit; }
.t2-hot-item:nth-child(1) .t2-hot-num.top { color: #ff1800; }
.t2-hot-item:nth-child(2) .t2-hot-num.top { color: #ff5407; }
.t2-hot-item:nth-child(3) .t2-hot-num.top { color: #ff9400; }

.t2-hot-item .t2-rank-title,
.t2-hot-item .t2-rank-title[style] {
  display: block;
  min-width: 0;
  margin-left: 16px;
  overflow: hidden;
  color: #1f1f1f !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t2-badge-hot {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  padding: 0;
  border-radius: 4px;
  background: #ff5169;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
}

/* ── 最新资源 Tab 栏 ── */
.t2-single-col {
  width: min(1200px, calc(100% - 32px));
}

.t2-resource-section {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.t2-tabs-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 48px;
  min-height: 48px;
  padding: 10px 0 0;
  border-bottom: 0;
  background: #fff;
}

.t2-tabs-list {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex: 1;
  gap: 0;
  height: 38px;
  margin-left: 32px;
  overflow-x: auto;
  overflow-y: hidden;
}

.t2-tabs-hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 0;
  height: 28px;
  border-radius: 4px;
  background: #f1f1f1;
  opacity: 0;
  pointer-events: none;
  transition: .15s cubic-bezier(.4, 0, .2, 1);
}

.t2-tabs-list a {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: 28px;
  min-height: auto;
  margin: 0 20px 0 0;
  padding: 4px 6px;
  border: 0;
  border-radius: 4px;
  color: #444;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  transition: .15s cubic-bezier(.4, 0, .2, 1);
}

.t2-tabs-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 0;
  background: transparent;
}

.t2-tabs-list a.active {
  color: #444;
  border-bottom-color: transparent;
  font-weight: 600;
}

.t2-tabs-list a.active::after {
  background: #ff5169;
}

.t2-tabs-list a:hover:not(.active) {
  color: #444;
}

.t2-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 28px;
  min-height: auto;
  margin-left: 6px;
  padding: 4px 4px 4px 8px;
  border-radius: 4px;
  background: #ff5169;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.t2-more-btn:hover {
  color: #fff;
  background: #ff5169;
}

.t2-resource-section [id^="t2HotPanel"] {
  margin-top: 24px;
}

/* ── 最新资源列表行 ── */
.t2-new-row {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 212px 188px;
  align-items: center;
  gap: 0;
  min-height: 62px;
  padding: 0;
  border-bottom: 1px solid #f6f6f6;
  color: #1e2226;
  background: transparent;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
}

.t2-new-row-plain {
  grid-template-columns: 110px minmax(0, 1fr);
}

.t2-new-row:last-child {
  border-bottom: 1px solid #f6f6f6;
}

.t2-new-row:hover {
  background: #f9f9f9;
}

.t2-new-row:hover .t2-row-title {
  color: #ff5169;
}

.t2-row-num {
  display: flex;
  align-items: center;
  width: 110px;
  height: 20px;
  padding-left: 30px;
  color: #878b9a;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
}

.t2-row-num.top {
  color: #ff1800;
}

.t2-new-row:nth-child(2) .t2-row-num.top {
  color: #ff5407;
}

.t2-new-row:nth-child(3) .t2-row-num.top {
  color: #ff9400;
}

.t2-row-title {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 62px;
  padding: 20px 16px;
  overflow: hidden;
  color: #1e2226;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t2-row-date {
  display: block;
  width: 212px;
  height: 24px;
  padding: 1px 16px;
  overflow: hidden;
  color: #1e2226;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
}

.t2-new-row > .t2-disk-icons {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
  width: 188px;
  padding-right: 30px;
}

.t2-new-row > .t2-disk-icons .t2-disk-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .t2-hot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    padding: 18px 24px 24px;
  }

  .t2-tabs-list {
    gap: 20px;
    overflow-x: auto;
  }

  .t2-new-row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    padding: 0 10px 0 14px;
  }

  .t2-row-date {
    display: none;
  }

  .t2-main-grid,
  .t2-home-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .t2-result-titlebar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }

  .t2-result-titlebar > div:last-child {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .t2-topbar-inner {
    flex-wrap: wrap;
  }

  .t2-hot-section::before,
  .t2-hot-section::after {
    display: none;
  }

  .t2-hot-section .t2-card-head {
    min-height: auto;
    padding: 14px 14px 6px;
  }

  .t2-hot-grid {
    grid-template-columns: 1fr;
    padding: 12px 18px 18px;
  }

  .t2-hot-item {
    min-height: 40px;
    font-size: 15px;
  }

  .t2-hot-item .t2-rank-title {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .t2-container,
  .t2-single {
    width: min(100% - 20px, 1180px);
  }

  .t2-hero {
    padding: 36px 0 18px;
  }

  .t2-search button,
  .t2-search .btn {
    width: 78px;
  }

  .t2-main-grid {
    padding-top: 12px;
  }

  .t2-rank-item,
  .t2-list-item {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .t2-count,
  .t2-time,
  .t2-badge {
    grid-column: 2;
  }

  .t2-detail-basic,
  .t2-detail-recommend {
    padding: 18px 16px 20px;
  }

  .t2-detail-meta,
  .t2-detail-resource-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .t2-detail-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .t2-detail-resource-row {
    gap: 8px;
  }

  .t2-resource-link-block,
  .t2-actions {
    flex-wrap: wrap;
  }

  .t2-disk {
    width: 100%;
    margin: 0 0 8px;
  }

  .t2-recommend-list {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 640px) {
  body {
    background: #fff;
  }

  .t2-page {
    background: #fff;
  }

  .t2-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 121px;
    background: #fff;
    box-shadow: none;
  }

  .t2-topbar-inner {
    width: calc(100% - 32px);
    min-height: 121px;
    margin: 0 auto;
    padding: 8px 0;
    align-items: flex-start;
    gap: 0;
  }

  .t2-brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 132px);
    height: 44px;
    gap: 7px;
    overflow: hidden;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    white-space: nowrap;
  }

  .t2-brand-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .t2-brand img {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
  }

  .t2-nav {
    flex: 0 0 auto;
    height: 44px;
    margin-left: 12px;
    margin-right: 0;
    align-items: center;
    gap: 8px;
  }

  .t2-nav-extra,
  .t2-nav-action,
  .t2-feedback-link,
  .t2-nav-wechat,
  .t2-desktop-more-wrap {
    display: none;
  }

  .t2-mobile-more-wrap {
    display: inline-flex;
    order: 2;
  }

  .t2-mobile-more {
    display: inline-flex;
    align-items: center;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #323233;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
  }

  .t2-mobile-more span {
    display: inline-flex;
    align-items: center;
    height: 22px;
    font-size: 16px;
    line-height: 22px;
  }


  .t2-topbar .t2-nav-action,
  .t2-topbar .t2-nav-extra,
  .t2-topbar .t2-feedback-link,
  .t2-topbar .t2-nav-wechat,
  .t2-topbar .t2-desktop-more-wrap {
    display: none;
  }

  .t2-lang {
    min-width: 58px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    font-size: 15px;
    line-height: 22px;
  }

  .t2-search-topbar {
    position: static;
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    min-height: 47px;
    margin: 14px 0 0;
    transform: none;
    border: 1px solid rgba(30, 34, 38, .1);
    border-radius: 8px;
    background: transparent;
  }

  .t2-search-topbar input {
    height: 45px;
    padding: 10px 0 10px 12px;
    font-size: 15px;
    line-height: 20px;
  }

  .t2-search-topbar button,
  .t2-search-topbar .btn {
    width: 20px;
    height: 45px;
    margin: 0 14px 0 0;
    color: #ffcece;
    font-size: 20px;
  }

  .t2-search-topbar button svg,
  .t2-search-topbar .btn svg {
    width: 20px;
    height: 20px;
  }

  .t2-container,
  .t2-single,
  .t2-single-col {
    width: calc(100% - 32px);
  }

  .t2-single,
  .t2-single-col,
  .t2-main-grid {
    padding: 8px 0 30px;
  }

  .t2-main-grid {
    padding-top: 0;
  }

  .t2-search-page,
  .t2-detail-page {
    display: block;
  }

  .t2-section {
    margin-bottom: 16px;
  }

  .t2-card {
    border: 0;
    border-radius: 8px;
    box-shadow: none;
  }

  .t2-hot-section {
    height: 238px;
    min-height: 238px;
    margin: 0 0 14px;
    border: 1px solid #ffcece;
    border-radius: 8px;
    background: #ffcece;
  }

  .t2-hot-section::before,
  .t2-hot-section::after {
    display: block;
    border: 0;
    pointer-events: none;
  }

  .t2-hot-section::before {
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    width: auto;
    height: auto;
    border-radius: 7px;
    background: #fff;
    box-shadow: none;
    clip-path: path("M354 47.0644C354 38.2279 346.837 31.0644 338 31.0644H293.307C283.627 31.0644 274.468 26.6834 268.394 19.1478L261.758 10.9167C255.683 3.38109 246.524 -1 236.845 -1H7C3.134 -1 0 2.134 0 6V228C0 231.866 3.134 235 7 235H347C350.866 235 354 231.866 354 228V47.0644Z");
    z-index: 0;
  }

  .t2-hot-section::after {
    display: none;
  }

  .t2-hot-section .t2-card-head {
    height: 19px;
    margin: 16px 16px 21px;
    padding: 0 4px 0 0;
  }

  .t2-hot-badge {
    min-width: 89px;
    height: 19px;
    margin: 0 12px 0 0;
    padding: 0;
    background: transparent;
    color: #1e2226;
  }

  .t2-hot-badge::before {
    width: 16px;
    height: 17px;
    flex-basis: 16px;
    background: #ff5169;
  }

  .t2-hot-badge::after {
    content: "热门资源";
    color: #1e2226;
    font-size: 14px;
    font-weight: 800;
    line-height: 18px;
  }

  .t2-hot-badge:hover {
    background: transparent;
    color: #1e2226;
  }

  .t2-more-pink {
    top: -8px;
    left: 4px;
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
  }

  .t2-hot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 16px;
    margin: 0 16px 18px;
    padding: 0 6px 0 0;
  }

  .t2-hot-item {
    width: 100%;
    height: 20px;
    min-height: 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .t2-hot-item .t2-rank-title,
  .t2-hot-item .t2-rank-title[style] {
    margin-left: 6px;
    font-size: 14px;
    line-height: 20px;
  }

  .t2-badge-hot {
    display: inline-flex;
    width: 16px;
    height: 17px;
    margin-left: 8px;
    border-radius: 3px;
    font-size: 10px;
    line-height: 17px;
  }

  .t2-resource-section,
  .t2-main-grid > div > .t2-card,
  .t2-single > .t2-card {
    position: relative;
    padding-top: 14px;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
  }

  .t2-resource-section {
    padding-top: 0;
  }

  .t2-card-head {
    min-height: 20px;
    padding: 0;
    margin: 0;
    border-bottom: 0;
  }

  .t2-card-title {
    color: #1e2226;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }

  .t2-more {
    color: #ff5169;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
  }

  .t2-tabs-bar {
    position: sticky;
    top: 121px;
    z-index: 20;
    display: block;
    height: 67px;
    min-height: 67px;
    margin-top: 0;
    padding: 38px 0 0;
    background: #fff;
  }

  .t2-tabs-bar::before {
    content: "电视剧";
    position: absolute;
    left: 0;
    top: 0;
    color: #1e2226;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }

  .t2-tabs-bar::after {
    content: "更多";
    position: absolute;
    right: 0;
    top: 0;
    color: #ff5169;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
  }

  .t2-tabs-list {
    justify-content: flex-start;
    column-gap: 0;
    height: 29px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .t2-tabs-list::-webkit-scrollbar {
    display: none;
  }

  .t2-tabs-hover,
  .t2-tabs-list a::after {
    display: none;
  }

  .t2-tabs-list a {
    flex: 0 0 auto;
    width: auto;
    height: 29px;
    margin: 0 8px 0 0;
    padding: 6px 10px;
    border-radius: 6px;
    background: #fff4f4;
    color: #bf8585;
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
  }

  .t2-tabs-list a.active {
    background: #ff5169;
    color: #fff;
  }

  .t2-more-btn {
    display: none;
  }

  .t2-resource-section [id^="t2HotPanel"] {
    margin-top: 12px;
  }

  .t2-new-row {
    display: flex;
    align-items: center;
    min-height: 51px;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f6f6f6;
  }

  .t2-row-num {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 50px;
    margin-top: 0;
    padding-left: 0;
    border-radius: 0;
    background: transparent;
    color: #878b9a;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
  }

  .t2-new-row .t2-row-num.top,
  .t2-new-row:nth-child(2) .t2-row-num.top,
  .t2-new-row:nth-child(3) .t2-row-num.top {
    background: linear-gradient(#ffe8bc, #ffe8bc) center / 18px 18px no-repeat;
    color: #b76e00;
  }

  .t2-row-title {
    flex: 1 1 auto;
    height: 50px;
    padding: 14px 0;
    color: #1e2226;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
  }

  .t2-new-row > .t2-disk-icons,
  .t2-row-date {
    display: none;
  }

  .t2-rank-list,
  .t2-list {
    margin-top: 22px;
    padding: 0;
  }

  .t2-hot-nav {
    display: flex;
    align-items: center;
    height: 29px;
    margin: 16px 0 21px;
    overflow-x: auto;
    background: #fff;
    scrollbar-width: none;
  }

  .t2-hot-nav::-webkit-scrollbar {
    display: none;
  }

  .t2-hot-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    height: 29px;
    margin-right: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    color: #1e2226;
    font-size: 13px;
    font-weight: 500;
    line-height: 17px;
    white-space: nowrap;
  }

  .t2-hot-nav a.active {
    background: #ff5169;
    color: #fff;
    font-weight: 600;
  }

  .t2-hot-page {
    padding-top: 0;
  }

  .t2-hot-primary .t2-card-head {
    height: 20px;
    min-height: 20px;
    align-items: center;
  }

  .t2-hot-primary .t2-card-title {
    gap: 4px;
    color: #1e2226;
    font-size: 0;
    font-weight: 700;
    line-height: 20px;
  }

  .t2-hot-primary .t2-card-title svg {
    width: 16px;
    height: 16px;
    color: #ff5169;
  }

  .t2-hot-primary .t2-card-title span {
    display: inline-flex;
    align-items: center;
    color: #1e2226;
    font-size: 16px;
    font-weight: 800;
    line-height: 20px;
  }

  .t2-hot-primary .t2-more {
    display: inline-flex;
    align-items: center;
    height: 18px;
    color: #434343;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
  }

  .t2-hot-primary .t2-more svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
  }

  .t2-hot-primary .t2-rank-list {
    margin-top: 0;
  }

  .t2-rank-item,
  .t2-list-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 51px;
    margin: 0;
    padding: 0;
    color: #1e2226;
    background: #fff;
  }

  .t2-list-item,
  .t2-hot-primary .t2-rank-item {
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    min-height: 36px;
    margin-bottom: 14px;
    padding: 0 0 14px;
  }

  .t2-hot-primary .t2-rank-item,
  .t2-new-primary .t2-list-item,
  .t2-search-rank-primary .t2-rank-item {
    border-bottom: 0.5px solid #eee;
  }

  .t2-rank-num {
    width: 20px;
    height: 20px;
    margin-right: 0;
    border-radius: 0;
    background: transparent;
    color: #868686;
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
  }

  .t2-rank-item:nth-child(1) .t2-rank-num,
  .t2-list-item:nth-child(1) .t2-rank-num {
    background: transparent;
    color: #ff1800;
  }

  .t2-rank-item:nth-child(2) .t2-rank-num,
  .t2-list-item:nth-child(2) .t2-rank-num {
    background: transparent;
    color: #ff5407;
  }

  .t2-rank-item:nth-child(3) .t2-rank-num,
  .t2-list-item:nth-child(3) .t2-rank-num {
    background: transparent;
    color: #ff9400;
  }

  .t2-rank-title,
  .t2-list-title,
  .t2-rank-title[style] {
    min-width: 0;
    overflow: hidden;
    color: #434343 !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .t2-hot-primary .t2-rank-num {
    font-weight: 500;
  }

  .t2-hot-primary .t2-rank-item:nth-child(n+4) .t2-rank-num {
    color: #b3b3b3;
  }

  .t2-hot-primary .t2-rank-title,
  .t2-hot-primary .t2-rank-title[style] {
    padding: 0 16px;
  }

  .t2-count,
  .t2-time,
  .t2-badge {
    grid-column: auto;
    justify-self: end;
    color: #878b9a;
    font-size: 13px;
    line-height: 20px;
  }

  .t2-list-item .t2-time,
  .t2-hot-primary .t2-badge,
  .t2-search-rank-primary .t2-count {
    display: none;
  }

  .t2-hot-bottom {
    margin: 0;
    padding: 14px 16px 23px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px 1px rgba(223, 229, 237, 0.5);
  }

  .t2-hot-bottom-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 32px;
  }

  .t2-hot-bottom-tabs {
    display: flex;
    align-items: flex-start;
    max-width: calc(100% - 44px);
    height: 32px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .t2-hot-bottom-tabs::-webkit-scrollbar {
    display: none;
  }

  .t2-hot-bottom-tabs button {
    position: relative;
    flex: 0 0 auto;
    height: 32px;
    padding: 0 19px 12px 0;
    border: 0;
    background: transparent;
    color: #868686;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
  }

  .t2-hot-bottom-tabs button.active {
    color: #1e2226;
    font-weight: 700;
  }

  .t2-hot-bottom-tabs button.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background: #1e2226;
  }

  .t2-hot-bottom-more {
    flex: 0 0 auto;
    color: #1e2226;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
  }

  .t2-hot-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 0;
    margin-top: 20px;
  }

  .t2-hot-bottom-empty {
    margin-top: 20px;
    color: #868686;
    font-size: 14px;
    line-height: 31px;
  }

  .t2-hot-bottom-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: center;
    min-width: 0;
    height: 31px;
    color: #1e2226;
  }

  .t2-hot-bottom-num {
    color: #868686;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
  }

  .t2-hot-bottom-item:nth-child(1) .t2-hot-bottom-num {
    color: #ff1800;
  }

  .t2-hot-bottom-item:nth-child(2) .t2-hot-bottom-num {
    color: #ff5407;
  }

  .t2-hot-bottom-item:nth-child(3) .t2-hot-bottom-num {
    color: #ff9400;
  }

  .t2-hot-bottom-title {
    min-width: 0;
    overflow: hidden;
    color: #434343;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .t2-hot-bottom-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 16px;
    margin-left: 4px;
    border-radius: 3px;
    background: #ff5169;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
  }

  .t2-search-bottom,
  .t2-detail-bottom {
    display: block;
  }

  .t2-search-sidebar-wrap {
    display: none;
  }

  .t2-result-panel {
    padding: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
  }

  .t2-search-tab-stack {
    position: sticky;
    top: 121px;
    z-index: 30;
    margin: 0 0 16px;
    padding: 0 0 16px;
    background: #fff;
    box-shadow: 0 12px 18px -18px rgba(15, 23, 42, .25);
  }

  .t2-source-tabs,
  .t2-pan-tabs {
    position: relative;
    z-index: auto;
    gap: 8px;
    height: 29px;
    min-height: 29px;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .t2-pan-tabs {
    margin-top: 16px;
  }

  .t2-source-tabs::-webkit-scrollbar,
  .t2-pan-tabs::-webkit-scrollbar {
    display: none;
  }

  .t2-source-tabs a,
  .t2-pan-tabs a {
    flex: 0 0 auto;
    height: 29px;
    margin: 0 8px 0 0;
    padding: 6px 10px;
    border: 0;
    border-radius: 6px;
    background: #fff4f4;
    color: #bf8585;
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
  }

  .t2-source-tabs a:hover,
  .t2-pan-tabs a:hover,
  .t2-source-tabs a.active,
  .t2-pan-tabs a.active {
    background: #ff5169;
    color: #fff;
  }

  .t2-source-tabs {
    height: 47px;
    min-height: 47px;
    padding: 14px 16px 5px;
  }

  .t2-source-tabs a {
    position: relative;
    height: 28px;
    margin: 0 16px 0 0;
    padding: 0 6px;
    border-radius: 4px;
    background: transparent;
    color: #0f172a;
    font-size: 15px;
    line-height: 28px;
  }

  .t2-source-tabs a:hover,
  .t2-source-tabs a.active {
    background: transparent;
    color: #0f172a;
  }

  .t2-source-tabs a:hover::after,
  .t2-source-tabs a.active::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: -5px;
    height: 3px;
    border-radius: 3px;
    background: #ff5169;
  }

  .t2-pan-tabs a::after {
    display: none;
  }

  .t2-pan-tabs a {
    transition: background .18s ease, color .18s ease;
  }

  .t2-search-results-section .t2-result-titlebar {
    display: none;
  }

  .t2-result-item {
    min-height: 138px;
    margin: 0 0 14px;
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px 1px rgba(237, 237, 237, .5);
  }

  .t2-result-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
  }

  .t2-result-desc {
    margin-top: 10px;
    font-size: 13px;
    line-height: 20px;
  }

  .t2-result-link-row {
    gap: 10px;
    min-height: 82px;
  }

  .t2-result-category {
    max-width: 70px;
    padding: 1px 6px;
  }

  .t2-meta {
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
  }

  .t2-result-tags {
    flex: 1 1 auto;
  }

  .t2-disk-icons {
    margin-left: auto;
  }

  .t2-quan-link-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .t2-quan-actions {
    justify-content: flex-start;
  }


  .t2-detail-basic {
    padding: 18px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px 1px rgba(223, 229, 237, .5);
  }

  .t2-detail-info {
    margin-top: 28px;
  }

  .t2-detail-breadcrumb {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 21px;
  }

  .t2-detail-title {
    margin: 0 0 70px;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
  }

  .t2-detail-meta {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: start;
    column-gap: 0;
    row-gap: 14px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
  }

  .t2-detail-row {
    display: contents;
  }

  .t2-detail-resource-row {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
  }

  .t2-resource-links .t2-detail-resource-row {
    display: block;
  }

  .t2-detail-row .label,
  .t2-detail-meta .label {
    color: #878b9a;
  }

  .t2-resource-links .label {
    display: block;
    height: 30px;
    margin-bottom: 14px;
    color: #878b9a;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
  }

  .t2-notice {
    margin: 14px 0;
    border-radius: 8px;
    font-size: 13px;
    line-height: 20px;
  }

  .t2-resource-links {
    margin-top: 14px;
    padding: 22px 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px 1px rgba(223, 229, 237, .5);
    color: #434343;
    overflow: hidden;
  }

  .t2-resource-value {
    display: block;
    padding-left: 0;
  }

  .t2-resource-link-block {
    display: flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 14px;
    color: #1e2226;
    font-size: 14px;
    line-height: 30px;
  }

  .t2-resource-link-block:last-child {
    margin-bottom: 0;
  }

  .t2-disk {
    flex: 0 0 50px;
    width: 50px;
    min-width: 50px;
    margin: 0 20px 0 0;
    color: #444546;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
  }

  .t2-disk img,
  .t2-disk .icon {
    display: none;
  }

  .t2-actions {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: 12px;
  }

  .t2-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 30px;
    margin: 0;
    padding: 5px 8px;
    border: 1px solid #4f4545;
    border-radius: 4px;
    background: #fff;
    color: #2c2323;
    font-size: 14px;
    line-height: 18px;
    white-space: nowrap;
  }

  .t2-action::before {
    content: '';
    display: inline-block;
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    background-color: currentColor;
  }

  .t2-action-download::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8.5 2a.5.5 0 0 0-1 0v7.79L4.85 7.15a.5.5 0 1 0-.7.7l3.5 3.5a.5.5 0 0 0 .7 0l3.5-3.5a.5.5 0 0 0-.7-.7L8.5 9.79V2ZM3 13.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8.5 2a.5.5 0 0 0-1 0v7.79L4.85 7.15a.5.5 0 1 0-.7.7l3.5 3.5a.5.5 0 0 0 .7 0l3.5-3.5a.5.5 0 0 0-.7-.7L8.5 9.79V2ZM3 13.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .t2-action-copy::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4.2 1.1h4.5c.8 0 1.4.6 1.4 1.4V7H9V2.5c0-.2-.1-.3-.3-.3H4.2V1.1ZM1.9 3.4c0-.8.6-1.4 1.4-1.4h3.4c.8 0 1.4.6 1.4 1.4v5.2c0 .8-.6 1.4-1.4 1.4H3.3c-.8 0-1.4-.6-1.4-1.4V3.4Zm1.4-.3c-.2 0-.3.1-.3.3v5.2c0 .2.1.3.3.3h3.4c.2 0 .3-.1.3-.3V3.4c0-.2-.1-.3-.3-.3H3.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4.2 1.1h4.5c.8 0 1.4.6 1.4 1.4V7H9V2.5c0-.2-.1-.3-.3-.3H4.2V1.1ZM1.9 3.4c0-.8.6-1.4 1.4-1.4h3.4c.8 0 1.4.6 1.4 1.4v5.2c0 .8-.6 1.4-1.4 1.4H3.3c-.8 0-1.4-.6-1.4-1.4V3.4Zm1.4-.3c-.2 0-.3.1-.3.3v5.2c0 .2.1.3.3.3h3.4c.2 0 .3-.1.3-.3V3.4c0-.2-.1-.3-.3-.3H3.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .t2-action-feedback::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M2.1 2.1h4.4v1H3.1v5.8h5.8V5.5h1v3.4c0 .6-.4 1-1 1H3.1c-.6 0-1-.4-1-1V2.1Zm5.1 0h2.7v2.7h-1V3.8L5.8 6.9l-.7-.7 3.1-3.1h-1v-1Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M2.1 2.1h4.4v1H3.1v5.8h5.8V5.5h1v3.4c0 .6-.4 1-1 1H3.1c-.6 0-1-.4-1-1V2.1Zm5.1 0h2.7v2.7h-1V3.8L5.8 6.9l-.7-.7 3.1-3.1h-1v-1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .t2-action-download,
  .t2-detail-row .t2-action-download {
    border-color: #0e60ff;
    color: #0e60ff;
  }

  .t2-action-feedback,
  .t2-detail-row .t2-action-feedback {
    border-color: #ff6e6e;
    color: #ff6e6e;
  }

  .t2-action-qr,
  .t2-detail-row .t2-action-qr {
    border-color: #c1c1c1;
    color: #444546;
    display: none;
  }

  .t2-scan-hint,
  .t2-detail-recommend,
  .t2-detail-page .t2-sidebar {
    display: none;
  }

  .t2-detail-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .t2-detail-bottom-tag {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 6px;
    background: #f6f7fb;
    color: #434343;
    font-size: 13px;
    line-height: 28px;
  }

  .t2-detail-bottom .t2-hot-bottom-empty {
    grid-column: 1 / -1;
  }

  .t2-detail-page .t2-sidebar {
    margin-top: 0;
  }

  .t2-side-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px 1px rgba(237, 237, 237, .5);
  }

  .t2-sidebar .t2-side-notice,
  .t2-sidebar .t2-side-card:nth-of-type(n+3),
  .t2-sidebar .t2-rank-item:nth-child(n+5) {
    display: none;
  }

  .t2-search-page .t2-sidebar {
    display: none;
  }

  .t2-sidebar .t2-side-card {
    margin-bottom: 0;
    box-shadow: none;
  }

  body:has(.t2-modal) {
    overflow: hidden;
  }

  .t2-modal {
    z-index: 999;
    padding: 0;
    background: rgba(0, 0, 0, .45);
    transition: opacity .2s cubic-bezier(0, 0, .2, 1), visibility .2s cubic-bezier(0, 0, .2, 1);
  }

  .t2-modal-card {
    width: min(333px, calc(100% - 56px));
    padding: 22px 24px 24px;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  }

  .t2-modal-card h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .t2-dialog-url-box .el-overlay,
  .t2-dialog-url-box.el-overlay {
    z-index: 999 !important;
  }

  .el-dialog.t2-dialog-url-box,
  .t2-dialog-url-box .el-dialog,
  .dialogUrlBox .el-dialog {
    width: min(333px, calc(100% - 56px));
    padding: 22px 24px 24px;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  }
}
