/* ==========================================================================
   File: style.css
   说明：BingLangCard 主题样式，包含全局变量、重置、布局、组件及响应式适配。
   ========================================================================== */

/* ==========================================================================
   一、CSS 自定义属性（全局主题变量）
   用途：统一定义颜色、背景、字体等主题值，便于整体换肤和主题切换。
   ========================================================================== */
:root {
  --tzt-BG-0: #ededed;
  --tzt-BG-1: #f7f7f7;
  --tzt-BG-2: #fff;
  --tzt-BG-3: #f7f7f7;
  --tzt-BG-4: #4c4c4c;
  --tzt-BG-5: #fff;
  --tzt-FG-0: rgba(0, 0, 0, 0.9);
  --tzt-FG-HALF: rgba(0, 0, 0, 0.9);
  --tzt-FG-1: rgba(0, 0, 0, 0.5);
  --tzt-FG-2: rgba(0, 0, 0, 0.3);
  --tzt-FG-3: rgba(0, 0, 0, 0.1);
  --tzt-FG-4: rgba(0, 0, 0, 0.15);
  --tzt-RED: #fa5151;
  --tzt-ORANGE: #fa9d3b;
  --tzt-YELLOW: #ffc300;
  --tzt-GREEN: #91d300;
  --tzt-LIGHTGREEN: #95ec69;
  --tzt-BRAND: #07c160;
  --tzt-BLUE: #10aeff;
  --tzt-INDIGO: #1485ee;
  --tzt-WHITE: #fff;
  --tzt-LINK: #576b95;
  --tzt-TEXTGREEN: #06ae56;
  --tzt-FG: #000;
  --tzt-BG: #fff;
}

/* ==========================================================================
   二、全局重置 & 基础样式
   用途：清除浏览器默认内外边距，设置全局字体、颜色、背景和盒模型。
   ========================================================================== */
body, html {
  width: 100%;
}

body {
  background-color: var(--tzt-BG-1);
  font-size: 14px;
  line-height: 140%;
  font-family: -apple-system-font, "Helvetica Neue", sans-serif;
  color: var(--tzt-FG-0);
}

body, ul, ol, li, p, h1, h2, h3, h4, h5, h6,
form, fieldset, table, td, img, div, tr {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, select {
  font-size: 12px;
  vertical-align: middle;
  border: none;
}

ul, li, ol {
  list-style-type: none;
}

img {
  border: 0 none;
}

p {
  margin-bottom: 10px;
}

a, button {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: var(--tzt-FG-0);
}

a:focus, a:hover, a:active,
button:focus, button:hover, button:active {
  cursor: pointer;
  text-decoration: none;
  color: var(--tzt-LINK);
}

button {
  border-color: transparent;
  background: none;
}

/* ==========================================================================
   三、盒模型 & 清除浮动
   用途：统一 border-box 盒模型，提供 clearfix 工具类。
   ========================================================================== */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  padding-top: 86px;
}

.page-bd {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.page-bd:before, .page-bd:after,
.row:before, .row:after,
.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
  clear: both;
}

/* ==========================================================================
   四、文本样式（标题、颜色、工具类）
   用途：定义各级标题大小、颜色工具类及分割线。
   ========================================================================== */
h1 { font-size: 26px; line-height: 32px; }
h2 { font-size: 24px; line-height: 28px; }
h3 { font-size: 18px; line-height: 22px; }
h4 { font-size: 16px; line-height: 18px; }
h5 { font-size: 14px; line-height: 16px; }
h6 { font-size: 12px; line-height: 14px; }
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin-bottom: 10px;
}

.text-center { text-align: center; }
.text-red { color: var(--tzt-RED); }
.text-blue { color: var(--tzt-BLUE); }
.text-muted { color: var(--tzt-FG-1); }
.text-link { color: var(--tzt-INDIGO); }

.pull-left { float: left !important; }
.pull-right { float: right !important; }
.margin-0 { margin: 0 !important; }
.mt15 { margin-top: 15px; }
.mb15{ margin-bottom: 15px;}

/* 分割线（inline 分隔符） */
.split-line {
  position: relative;
  display: inline-block;
  margin-left: 12px;
  margin-right: 12px;
  height: 14px;
  vertical-align: -2px;
}
.split-line:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px solid var(--tzt-FG-3);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
}

/* ==========================================================================
   五、图片样式
   用途：默认最大宽度，圆角工具类。
   ========================================================================== */
img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}

img.img-radius {
  border-radius: 10px;
}

/* ==========================================================================
   六、按钮（Btn）
   用途：基础按钮及颜色变体（蓝色、红色、边框等）。
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  color: #fff;
}
.btn:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.btn:hover, .btn:active, .btn:focus {
  color: #fff;
}
.btn.btn-mini {
  padding: 6px 12px;
  font-size: 12px;
}
.btn.btn-width {
  min-width: 160px;
  text-align: center;
}
.btn-blue, .btn.blue {
  background-color: var(--tzt-INDIGO);
}
.btn-red, .btn.red {
  background-color: var(--tzt-RED);
}
.btn-border {
  border: 1px solid var(--tzt-BG-1);
  color: var(--tzt-FG-0);
}
.btn-border:hover, .btn-border:active, .btn-border:focus {
  color: var(--tzt-FG-0);
}
.btn-default {
  background-color: var(--tzt-BG-1);
  border: 1px solid var(--tzt-FG-3);
  color: var(--tzt-FG-0);
}
.btn-default:hover, .btn-default:active, .btn-default:focus {
  color: var(--tzt-FG-0);
}

/* ==========================================================================
   七、表单控件（Form）
   用途：统一样式输入框、文本域、搜索框等。
   ========================================================================== */
select {
  cursor: pointer;
  border: none;
  outline: none;
}
input, textarea {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input.form-control, input.btn {
  outline: 0px;
  -webkit-appearance: none;
}
input[type="checkbox"] {
  vertical-align: -2px;
}

.form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 8px;
  background-color: var(--tzt-BG-2);
  border: 1px solid var(--tzt-BG-0);
  color: var(--tzt-FG-0);
}
.form-control:active, .form-control:focus {
  outline: none;
  border: 1px solid var(--tzt-INDIGO);
}
textarea.form-control {
  height: auto;
  padding: 6px 15px;
}

.search-form {
  position: relative;
}
.search-form .submit {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 5px 5px 0;
  z-index: 3;
  padding: 10px 18px;
  background-color: var(--tzt-INDIGO);
  color: #fff;
}

/* ==========================================================================
   八、表格（Table）
   用途：基础表格样式，带边框和内边距。
   ========================================================================== */
table {
  padding: 15px;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  max-width: 100%;
  margin-bottom: 20px;
  background-color: var(--tzt-BG-1);
}
tbody > tr > td, tbody > tr > th,
tfoot > tr > td, tfoot > tr > th,
thead > tr > td, thead > tr > th {
  border: 1px solid var(--tzt-FG-3);
  padding: 10px;
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* ==========================================================================
   九、头部（Header）
   用途：固定顶部导航栏，包含 logo、菜单项和图标。
   ========================================================================== */
.tzt-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: var(--tzt-BG-2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.tzt-header_hd {
  padding-top: 15px;
  margin-right: 10px;
}
.tzt-header_hd img {
  width: 115px;
}
.tzt-header_bd, .tzt-header_ft {
  padding: 17px 0;
}
.tzt-header_bd .icon, .tzt-header_ft .icon {
  display: inline-block;
  margin-left: 25px;
  font-size: 24px;
}
.tzt-header_ft {
  float: right;
  display: flex;
  align-items: center;
}
.tzt-header_ft a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   十、导航菜单（Menu）
   用途：层级菜单，带分割线和激活箭头指示。
   ========================================================================== */
.tzt-nav-menu li {
  position: relative;
}
.tzt-nav-menu li a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  text-align: center;
}
.tzt-nav-menu li.active > a {
  color: var(--tzt-INDIGO);
}
.tzt-nav-menu li.active:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--tzt-INDIGO);
}
.tzt-nav-menu li ul.child li {
  padding-left: 15px;
}
.tzt-nav-menu li:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid var(--tzt-FG-3);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}

/* ==========================================================================
   十一、面板（Panel）
   用途：卡片式容器，包含头部、内容和底部，带分割线和背景变体。
   ========================================================================== */
.tzt-panel {
  position: relative;
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--tzt-BG-2);
}
.tzt-panel.bg {
  background-color: var(--tzt-BG-1);
}
.tzt-panel_hd {
  position: relative;
  margin-bottom: 15px;
}
.tzt-panel_hd:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid var(--tzt-FG-3);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.tzt-panel_hd h3 {
  padding-bottom: 15px;
  text-align: center;
}
.tzt-panel_hd .more {
  font-size: 12px;
  color: var(--tzt-FG-1);
}
.tzt-panel_bread {
  padding-bottom: 15px;
  color: var(--tzt-FG-1);
}
.tzt-panel_bread a, .tzt-panel_bread .icon {
  font-size: 12px;
  color: var(--tzt-FG-1);
}
.tzt-panel_ft {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}
.tzt-panel_ft:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid var(--tzt-FG-3);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}

/* ==========================================================================
   十二、媒体盒子（Media Box）
   用途：图文混排卡片，用于文章列表展示。
   ========================================================================== */
.tzt-media-box {
  position: relative;
  padding: 30px;
  margin-top: 30px;
  background-color: var(--tzt-BG-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.tzt-panel_bd > .tzt-media-box:first-child {
  margin-top: 0;
}
.tzt-media-box_hd {
  flex: 1;
  min-width: 0;
}
.tzt-media-box_desc {
  margin-bottom: 10px;
  color: var(--tzt-FG-1);
}
.tzt-media-box_time {
  color: var(--tzt-FG-1);
}
.tzt-media-box_bd {
  width: 200px;
  margin-left: 20px;
}
.tzt-media-box_bd img {
  max-width: 100%;
}

/* ==========================================================================
   十三、文章（Article）
   用途：文章正文样式，包含标题、段落、引用、列表、图片等。
   ========================================================================== */
.tzt-article_content h1,
.tzt-article_content h2,
.tzt-article_content h3,
.tzt-article_content h4,
.tzt-article_content h5,
.tzt-article_content h6 {
  font-weight: bold;
}
.tzt-article_content a, .tzt-article_content a span {
  color: var(--tzt-LINK);
}
.tzt-article_content p {
  font-size: 16px;
  line-height: 24px;
  word-wrap: break-word;
}
.tzt-article_content img {
  max-width: 100%;
  cursor: zoom-in;
}
.tzt-article_content ol li {
  list-style: decimal;
  padding-left: 3px;
}
.tzt-article_content ul li {
  list-style-type: disc;
}
.tzt-article_desc, .tzt-article_content blockquote {
  padding: 30px;
  background-color: var(--tzt-BG-1);
  border-radius: 10px;
}
.tzt-article_tag {
  margin-bottom: 15px;
}

/* ==========================================================================
   十四、评论（Comment）
   用途：评论列表项，支持嵌套（child）和激活状态。
   ========================================================================== */
.tzt-comment-box {
  position: relative;
  padding: 15px;
  margin-top: 15px;
  background-color: var(--tzt-BG-1);
  border-radius: 10px;
  display: flex;
  align-items: initial;
  transition: all 0.3s;
}
.tzt-comment-box_bd {
  flex: 1;
  min-width: 0;
  margin-left: 15px;
}
.tzt-comment-box_hd {
  width: 42px;
}
.tzt-comment-box_hd img {
  border-radius: 50%;
}
.tzt-comment-box.active {
  margin-top: 15px;
  padding: 15px;
  background-color: var(--tzt-BG-2);
}
.tzt-comment-box.active .tzt-comment-box_bd {
  margin: 0;
}
.tzt-comment-box.active .tzt-comment-box_user {
  font-size: 12px;
}
.tzt-comment-box.active .tzt-comment-box_user img {
  border-radius: 50%;
}
.tzt-comment-box.child {
  padding: 10px 0 0;
  margin-top: 10px;
}
.tzt-comment-box.child:first-child {
  margin-top: 10px;
}
.tzt-comment-box.child:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid var(--tzt-FG-3);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}

/* ==========================================================================
   十五、分页（Pagination）
   用途：页码列表，带激活高亮。
   ========================================================================== */
.tzt-pagination {
  text-align: center;
}
.tzt-pagination li {
  display: inline-block;
  margin: 5px;
}
.tzt-pagination li a {
  padding: 6px 12px;
  border-radius: 4px;
  background-color: var(--tzt-BG-1);
}
.tzt-pagination li.active a {
  background-color: var(--tzt-INDIGO);
  color: #fff;
}

/* ==========================================================================
   十六、对话框（Dialog）
   用途：从底部或右侧滑出的模态框，带过渡动画。
   ========================================================================== */
.tzt-dialog {
  position: fixed;
  z-index: 5000;
  transition: transform 0.3s;
  background-color: var(--tzt-BG-2);
  overflow-y: auto;
  overflow-x: hidden;
}
.tzt-dialog .tzt-panel {
  background: none;
}
.tzt-dialog.bottom {
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px 14px 0 0;
  min-height: 255px;
  max-height: 75%;
  transform: translateY(100%);
}
.tzt-dialog.right {
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px 0 0 14px;
  min-width: 255px;
  max-width: 75%;
  transform: translateX(100%);
}
.tzt-dialog.bottom.show {
  transform: translateY(0);
}
.tzt-dialog.right.show {
  transform: translateX(0);
}

#DialogSearch .tzt-panel_hd:after {
  display: none;
}
.tzt-dialog.bottom .search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.tzt-dialog.bottom .search-form .form-control {
  flex: 1;
  min-width: 0;
  height: 48px;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 15px;
  background-color: var(--tzt-BG-1);
  border: 1px solid var(--tzt-FG-3);
}
.tzt-dialog.bottom .search-form .form-control:focus {
  border-color: var(--tzt-INDIGO);
  background-color: var(--tzt-BG-2);
}
.tzt-dialog.bottom .search-form .submit {
  position: static;
  flex-shrink: 0;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  background-color: var(--tzt-INDIGO);
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
  transition: background-color 0.2s;
}
.tzt-dialog.bottom .search-form .submit:hover {
  background-color: #1273d4;
}

/* ==========================================================================
   十七、侧边栏 & 二维码
   用途：右侧固定侧边栏，包含二维码面板和分类导航。
   ========================================================================== */
.tzt-code {
  width: 240px;
  position: absolute;
  top: 86px;
  right: -270px;
}

.fixed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.fixed .page-bd {
  position: relative;
}
.fixed .tzt-code {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}
.fixed .tzt-code .tzt-qrcode {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  height: var(--banner-h);
}
.fixed .tzt-code .tzt-qrcode .tzt-panel_bd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.fixed .tzt-code .tzt-qrcode .tzt-panel_bd .qrcode-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.fixed .tzt-code .tzt-qrcode .tzt-panel_bd .text-muted {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
  word-break: break-all;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex-shrink: 0;
}
.fixed .tzt-code .tzt-panel:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   十八、滚动公告条
   用途：带图标的通知横幅，用于永久入口等提示信息。
   ========================================================================== */
.tzt-notice {
  overflow: hidden;
  background-color: var(--tzt-INDIGO);
  color: #fff;
  font-size: 13px;
  line-height: 36px;
  border-radius: 6px;
  margin-bottom: 15px;
}
.tzt-notice_bd {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.tzt-notice_icon {
  flex-shrink: 0;
  padding: 0 12px;
  font-size: 16px;
}
.tzt-notice_text {
  flex: 1;
  min-width: 0;
}
.tzt-notice_text a {
  color: #fff;
  text-decoration: none;
}

/* ==========================================================================
   十九、横幅图（Banner）
   用途：首页横幅区域样式。
   ========================================================================== */
.tzt-banner {
  padding: 20px;
}

/* ==========================================================================
   二十、链接列表（Link）
   用途：横向浮动的链接标签列表。
   ========================================================================== */
.tzt-link li {
  float: left;
  margin: 0 10px 10px 0;
}

/* ==========================================================================
   二十一、导航标签（Tabs）
   用途：弹性布局的选项卡，带下划线滑动效果。
   ========================================================================== */
.tzt-nav-tabs {
  position: relative;
  display: flex;
  align-items: center;
}
.tzt-nav-tabs li {
  position: relative;
  flex: 1;
  text-align: center;
}
.tzt-nav-tabs li a {
  display: inline-block;
  padding-bottom: 12px;
  font-size: 16px;
}
.tzt-nav-tabs li::before {
  content: "";
  display: table;
  width: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  opacity: 0.1;
  background: var(--tzt-INDIGO);
  position: absolute;
  left: 50%;
  bottom: 0;
  transition: all 0.2s;
}
.tzt-nav-tabs li:hover::before, .tzt-nav-tabs li.active::before {
  width: 32px;
  margin-left: -16px;
  opacity: 1;
}

/* ==========================================================================
   二十二、面包屑（Breadcrumb）
   用途：页面当前位置导航指示。
   ========================================================================== */
.tzt-breadcrumb-panel {
  padding-top: 12px;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.tzt-breadcrumb {
  font-size: 13px;
  color: var(--tzt-FG-1);
  line-height: 1.5;
}
.tzt-breadcrumb a {
  color: var(--tzt-FG-0);
}
.tzt-breadcrumb a:hover {
  color: var(--tzt-INDIGO);
}
.tzt-breadcrumb .split-line {
  height: 12px;
  margin-left: 8px;
  margin-right: 8px;
  vertical-align: -1px;
}

/* ==========================================================================
   二十三、页脚 & 杂项
   用途：页脚、遮罩层、返回顶部按钮等辅助组件。
   ========================================================================== */
.footer {
  padding: 30px;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.6);
}

.backtop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 998;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--tzt-BG-2);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   二十四、响应式适配（桌面端 ≥ 1024px）
   用途：宽屏下固定内容宽度、卡片圆角、悬浮交互等增强效果。
   ========================================================================== */
@media (min-width: 1024px) {
  .page-bd {
    width: 768px;
  }
  .tzt-panel {
    border-radius: 10px;
  }
  .tzt-media-box:hover {
    box-shadow: 0 34px 20px -24px rgba(136, 161, 206, 0.3);
    transform: translateY(-5px);
  }
  .tzt-comment_input {
    display: flex;
    align-items: center;
  }
  .tzt-comment_input p {
    flex: 1;
    min-width: 0;
  }
  .tzt-comment_input p.center {
    padding: 0 10px;
  }
}

/* ==========================================================================
   二十五、响应式适配（移动端 < 1024px）
   用途：缩小间距、隐藏桌面专属元素、优化弹窗和交互尺寸。
   ========================================================================== */
@media (max-width: 1024px) {
  h1 { font-size: 22px; }
  h3 { font-size: 16px; }

  .page {
    padding-top: 56px;
  }
  .m-hidden {
    display: none !important;
  }

  .tzt-header {
    padding: 0 15px;
  }
  .tzt-header_bd .icon, .tzt-header_ft .icon {
    margin-left: 15px;
  }

  .tzt-nav-tabs li a {
    font-size: 14px;
  }

  .tzt-panel, .tzt-article_desc, .tzt-article_content blockquote {
    padding: 15px;
  }
  .tzt-panel_ft {
    padding-top: 15px;
    margin-top: 15px;
  }

  .tzt-media-box {
    padding: 15px;
    margin-top: 15px;
  }
  .tzt-media-box_bd {
    width: 120px;
    margin-left: 10px;
  }
  .tzt-media-box_time {
    font-size: 12px;
  }

  .tzt-pagination li a {
    border-radius: 2px;
    font-size: 12px;
  }

  .fixed .tzt-code .tzt-panel_hd h3 {
    text-align: center;
  }

  #DialogType .tzt-panel_hd h3, #DialogType .text-center h3 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #DialogType .tzt-panel_hd h3 .dialogclose, #DialogType .text-center h3 .dialogclose {
    position: absolute;
    left: 0;
  }

  .tzt-breadcrumb-panel {
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 15px;
  }

  .backtop {
    right: 15px;
    bottom: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 5px;
  }

  .tzt-dialog.bottom .search-form .form-control {
    height: 44px;
    font-size: 14px;
    border-radius: 8px;
  }
  .tzt-dialog.bottom .search-form .submit {
    height: 44px;
    padding: 0 18px;
    font-size: 14px;
    border-radius: 8px;
  }
  .tzt-dialog.bottom {
    min-height: 200px;
  }
}

/* ==========================================================================
   网盘下载链接样式
   ========================================================================== */
.wangpan-download-box {
  background: linear-gradient(135deg, rgba(20,133,238,0.08) 0%, rgba(20,133,238,0.03) 100%);
  border-left: 4px solid var(--tzt-INDIGO);
  padding: 20px 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.wangpan-download-box .wangpan-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--tzt-INDIGO);
  display: flex;
  align-items: center;
}
.wangpan-download-box .btn {
  border-radius: 6px;
}
