/* ============================================================
   bridge2026.css — 旧版类名 → 2026新视觉风格 桥接样式

   加载顺序：theme2026.css → works.css(可选) → bridge2026.css
   桥接CSS总是最后加载，因此无需 !important 即可覆盖。
   ============================================================ */

/* ===== 0. 导航栏叠加在晶蝶背景图上方（透明导航效果） ===== */
.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

/* ===== 1. 容器 & 布局 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: auto;
}
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
.f-l { float: left; }
.f-r { float: right; }
.hide { display: none !important; }
.text-center { text-align: center; }
.t-right { text-align: right; }
.c-p { cursor: pointer; }

/* ===== 2. 间距工具类 ===== */
.mr-50 { margin-right: 50px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }

/* ===== 3. 字体 & 颜色工具类 ===== */
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.f-w { font-weight: 700; }
.fc-blue { color: #2B7AE8; }
.fc-green { color: #52c41a; }
.fc-white { color: #fff; }

/* ===== 4. 面包屑 ===== */
.breadcrumb {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  align-items: center;
  margin: 30px 0;
  padding: 0;
  border-bottom: none;
  font-size: 14px;
  float: none;
}
.breadcrumb ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  float: none;
  list-style: none;
}
.breadcrumb a {
  color: var(--text-secondary, #4A5568);
  text-decoration: none;
  transition: color 0.25s;
}
.breadcrumb a:hover {
  color: var(--primary, #2B7AE8);
}
.breadcrumb .name,
.breadcrumb li a.name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 8px;
  background: #fff;
  color: #0F1B3D;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #E8ECF2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: auto;
  height: auto;
  line-height: 1.5;
  margin-right: 0;
  transition: all 0.25s ease;
  text-align: center;
  vertical-align: middle;
}
.breadcrumb .name:hover {
  color: #1255AD;
  border-color: #C5D5F0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.breadcrumb .name.active {
  color: #1255AD;
  border-color: #1255AD;
  background: #F0F5FF;
  box-shadow: 0 2px 8px rgba(18,85,173,0.10);
  font-weight: 700;
}
.breadcrumb .name.active:hover {
  box-shadow: 0 4px 14px rgba(18,85,173,0.16);
  transform: translateY(-2px);
}
.breadcrumb .l-h-50 {
  line-height: 1.5;
}
.breadcrumb-1 {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin: 30px 0;
}
.breadcrumb-1 a,
.breadcrumb-1 span {
  padding: 8px 20px;
  background: #F7F8FA;
  color: #4A5568;
  font-size: 14px;
  border: 1px solid #E2E8F0;
}
.breadcrumb-1 a:first-child,
.breadcrumb-1 span:first-child {
  border-radius: 8px 0 0 8px;
}
.breadcrumb-1 a:last-child,
.breadcrumb-1 span:last-child {
  border-radius: 0 8px 8px 0;
}
.breadcrumb-1 a.active,
.breadcrumb-1 span.active,
.breadcrumb-1 a:hover {
  background: linear-gradient(135deg, #1255AD 0%, #2B7AE8 100%);
  color: #fff;
  border-color: transparent;
}

/* ===== 5. 分类头 ===== */
.category {
  font-size: 20px;
  font-weight: 600;
  color: #0F1B3D;
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category a {
  color: #0F1B3D;
  text-decoration: none;
}
.category .more {
  font-size: 14px;
  font-weight: 400;
  color: #2B7AE8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.category .more:hover {
  color: #1255AD;
}

/* ===== 6. 文章列表 (.list-tp) ===== */
.list-tp {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-tp .itm {
  display: flex;
  gap: 20px;
  padding: 24px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(226,232,240,0.5);
  transition: all 0.25s;
}
.list-tp .itm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43,122,232,0.10);
}
.list-tp .u-pic {
  width: 200px;
  min-width: 200px;
  flex-shrink: 0;
  float: none;
  margin: 0;
  display: block;
}
.list-tp .u-pic img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  border-radius: 8px;
}
.list-tp .u-ct {
  flex: 1;
  min-width: 0;
  width: auto;
  float: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.list-tp .u-tit {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}
.list-tp .u-tit a {
  color: #0F1B3D;
  text-decoration: none;
  transition: color 0.25s;
}
.list-tp .u-tit a:hover {
  color: #2B7AE8;
}
.list-tp .u-txt {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-tp .data {
  font-size: 13px;
  color: #8A95AD;
  text-align: right;
  margin-top: auto;
}

/* .list-tp-1 — 带网格的变体（dsdt, cpzs等） */
.list-tp-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-tp-1 .itm {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(226,232,240,0.5);
  transition: all 0.25s;
}
.list-tp-1 .itm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43,122,232,0.10);
}
.list-tp-1 .u-pic {
  width: 100%;
  display: block;
}
.list-tp-1 .u-pic img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.list-tp-1 .u-ct {
  flex: 1;
  width: auto;
}
.list-tp-1 .u-tit {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.list-tp-1 .u-tit a {
  color: #0F1B3D;
  text-decoration: none;
}
.list-tp-1 .u-tit a:hover {
  color: #2B7AE8;
}
.list-tp-1 .data {
  font-size: 13px;
  color: #8A95AD;
  text-align: right;
}

/* ===== 7. 分页 (.page) ===== */
.page {
  text-align: center;
  margin: 40px 0;
  padding: 20px 0;
}
.page a,
.page span {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  background: #F7F8FA;
  color: #4A5568;
  margin: 0 2px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s;
  min-width: 36px;
}
.page a:hover,
.page a.active,
.page span.active,
.page .current {
  background: linear-gradient(135deg, #1255AD 0%, #2B7AE8 100%);
  color: #fff;
}
.page-tb {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 30px 0;
}

/* ===== 8. 文章详情 ===== */
.article {
  padding-top: 30px;
  padding-bottom: 60px;
}

/* 大赛介绍卡片容器 */
.article-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 48px 56px;
  margin-bottom: 60px;
}
.article-card .article-title {
  padding-top: 0;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8ECF2;
}
.article-card .u-type {
  margin-top: 10px;
}
.article-card .article-ct {
  margin-bottom: 10px;
}
.article-card .public-time {
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 12px;
}
.article-card .breadcrumb {
  margin-top: 0;
  margin-bottom: 24px;
}

/* 面包屑独立于卡片外，与卡片内容区水平对齐 */
.breadcrumb-bar {
  padding: 0 56px;
  margin-bottom: 24px;
}

/* 搜索结果标题 */
.search-heading {
  padding: 0 56px;
  margin-bottom: 24px;
}
.search-heading h2 {
  font-size: 20px;
  font-weight: 600;
  color: #0F1B3D;
  margin: 0 0 6px;
}
.search-heading .search-count {
  font-size: 14px;
  color: #8A95AD;
}

.article-card .list-tp,
.article-card .list-tp-1 {
  margin-bottom: 0;
}
.article-card .page {
  margin-bottom: 0;
  padding-bottom: 0;
}
.article-card .container {
  max-width: none;
  padding: 0;
}
.article-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 20px 0 16px;
  color: #0F1B3D;
  line-height: 1.4;
}
.public-time,
.public-time-1 {
  text-align: center;
  margin: 16px 0 24px;
  padding-bottom: 24px;
  color: #8A95AD;
  font-size: 14px;
  border-bottom: 1px solid #E2E8F0;
}
.article-ct {
  padding: 0;
  font-size: 16px;
  line-height: 2;
  color: #0F1B3D;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.article-ct img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.u-type {
  font-size: 20px;
  font-weight: 600;
  color: #0F1B3D;
  padding: 10px 0;
  margin: 30px 0 16px;
  border-left: 4px solid #2B7AE8;
  padding-left: 14px;
}

/* ===== 9. 大赛介绍导航 (.detail-menu) ===== */
.detail-menu {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 30px;
  border-bottom: none;
}
.detail-menu .name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  white-space: nowrap;
  background: #fff;
  color: #0F1B3D;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #E8ECF2;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: all 0.25s ease;
  width: auto;
  text-align: center;
}
.detail-menu .name:hover {
  color: #1255AD;
  border-color: #C5D5F0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.detail-menu .name.active {
  color: #1255AD;
  border-color: #1255AD;
  background: #F0F5FF;
  box-shadow: 0 2px 8px rgba(18,85,173,0.10);
  font-weight: 700;
}
.detail-menu .name.active:hover {
  box-shadow: 0 4px 14px rgba(18,85,173,0.16);
  transform: translateY(-2px);
}

/* ===== 10. 浮动锚点导航 (.fix-box) ===== */
.fix-box {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fix-box .item {
  display: block;
  padding: 10px 16px;
  background: #F7F8FA;
  color: #4A5568;
  font-size: 13px;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #E2E8F0;
  transition: all 0.25s;
}
.fix-box .item:hover,
.fix-box .item.active {
  background: #2B7AE8;
  color: #fff;
  border-color: transparent;
}

/* ===== 11. 专家/人物列表 (.p-list) ===== */
.p-list-1,
.p-list-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.p-list-1 .itm,
.p-list-2 .itm {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(226,232,240,0.5);
  transition: all 0.25s;
  height: auto;
  text-align: center;
}
.p-list-1 .itm:hover,
.p-list-2 .itm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43,122,232,0.10);
}
.p-list-1 .u-pic,
.p-list-2 .u-pic {
  width: 120px;
  height: 120px;
  background: #E8ECF2;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid rgba(43,122,232,0.1);
}
.p-list-1 .u-ct,
.p-list-2 .u-ct {
  width: 100%;
  text-align: center;
}
.p-list-1 .u-name,
.p-list-2 .u-name {
  font-size: 16px;
  font-weight: 600;
  color: #0F1B3D;
  margin-bottom: 4px;
}
.p-list-1 .u-work,
.p-list-2 .u-work {
  font-size: 13px;
  color: #8A95AD;
  margin-bottom: 8px;
}
.p-list-1 .u-summary,
.p-list-2 .u-summary {
  font-size: 13px;
  color: #4A5568;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.p-list-1 .u-txt {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== 12. 表单 — 布局 ===== */
.add-form {
  width: 100%;
}
.add-form .t-cell {
  font-size: 18px;
  font-weight: 600;
  color: #0F1B3D;
  padding: 12px 0;
  margin-bottom: 16px;
  border-bottom: 2px solid #E2E8F0;
}
.add-form .f-cell {
  margin: auto;
  width: 100%;
}
.add-form .f-cell .itm,
.add-form .itm {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.add-form .itm .inline-block {
  display: inline-block;
}

/* ===== 13. 表单 — 标签 ===== */
.u-label,
.add-form .u-label {
  width: 20%;
  min-width: 160px;
  padding-right: 16px;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  color: #0F1B3D;
  line-height: 44px;
  vertical-align: top;
  flex-shrink: 0;
  box-sizing: border-box;
}
.u-label-1,
.add-form .u-label-1 {
  padding-right: 30px;
}

/* ===== 14. 表单 — 输入框 ===== */
.u-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 14px;
  color: #0F1B3D;
  background: #fff;
  outline: none;
  box-shadow: none;
  text-indent: 0;
  line-height: 44px;
  transition: all 0.25s;
  box-sizing: border-box;
  font-family: inherit;
}
.u-input:focus {
  border-color: #2B7AE8;
  box-shadow: 0 0 0 3px rgba(43,122,232,0.1);
}
.u-input::placeholder {
  color: #B5BFCE;
}
.u-input-1 {
  width: 100%;
  max-width: 640px;
}
.u-input-2 {
  width: 100%;
  max-width: 320px;
}

/* 数字编号输入 */
.num-input,
.add-form .num-input {
  width: 100%;
  max-width: 640px;
  height: 44px;
  padding: 0 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 14px;
  color: #4A5568;
  outline: none;
  line-height: 44px;
  box-sizing: border-box;
}

/* ===== 15. 表单 — 文本域 ===== */
.u-textarea,
.add-form .u-textarea {
  width: 100%;
  max-width: 825px;
  min-height: 120px;
  padding: 12px 14px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 14px;
  color: #0F1B3D;
  background: #fff;
  outline: none;
  box-shadow: none;
  resize: vertical;
  box-sizing: border-box;
  font-family: inherit;
}
.u-textarea:focus,
.add-form .u-textarea:focus {
  border-color: #2B7AE8;
  box-shadow: 0 0 0 3px rgba(43,122,232,0.1);
}

/* ===== 16. 表单 — 提交按钮 ===== */
.u-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 40px;
  width: auto;
  min-width: 160px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #1255AD 0%, #2B7AE8 50%, #4A9EF7 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s;
  height: auto;
  line-height: 1.5;
  margin: 36px auto 0;
}
.u-submit:hover {
  box-shadow: 0 8px 24px rgba(43,122,232,0.3);
  transform: translateY(-1px);
  opacity: 1;
}

/* ===== 17. 表单 — 文件上传 ===== */
.file-style,
.add-form .file-style,
.file-style-1,
.add-form .file-style-1 {
  display: inline-block;
  padding: 8px 20px;
  background: #EBF3FE;
  color: #2B7AE8;
  border: 1px dashed #2B7AE8;
  border-radius: 8px;
  font-size: 14px;
  text-indent: 0;
  cursor: pointer;
  transition: all 0.25s;
  width: auto;
}
.file-style:hover,
.file-style-1:hover {
  background: #D6E6FD;
}
.upload-image .word {
  font-size: 14px;
  display: inline-block;
  margin-top: 30px;
  background: #EBF3FE;
  color: #2B7AE8;
  border: 1px dashed #2B7AE8;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
}
.upload-image .word:hover {
  background: #D6E6FD;
}

/* ===== 18. 表单 — 文件上传列表 ===== */
.add-form .upload-wrap {
  display: inline-block;
  width: auto;
  max-width: 825px;
  font-size: 14px;
}
.add-form .upload-wrap .reload {
  margin-left: 20px;
  display: inline-block;
  color: #2B7AE8;
  cursor: pointer;
  text-decoration: underline;
}

/* ===== 19. 图片上传列表 ===== */
.image-list {
  width: auto;
  max-width: 825px;
  display: inline-block;
}
.image-list li {
  margin: 5px;
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.image-list .pic-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pic-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-list .delete-btn {
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
  font-size: 22px;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d4f;
  line-height: 1;
}
.image-list .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fff;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.image-list .mask .loading {
  font-size: 22px;
}
.image-list .mask .text {
  font-size: 11px;
  margin-top: 4px;
}
.upload-image {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #F7F8FA;
  cursor: pointer;
  overflow: hidden;
}
.upload-image .u-file {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* ===== 20. 表单 — layui 进度条 ===== */
.add-form .layui-progress {
  width: 200px;
  display: inline-block;
  vertical-align: middle;
}
.add-form .layui-progress.hide {
  display: none;
}

/* ===== 21. 表单 — 上传状态提示 ===== */
.add-form .upload-wrap .onload,
.add-form .upload-wrap .success,
.add-form .upload-wrap .error {
  font-size: 13px;
  margin-left: 10px;
}
.add-form .upload-wrap .onload { color: #8A95AD; }
.add-form .upload-wrap .success { color: #52c41a; }
.add-form .upload-wrap .error { color: #ff4d4f; }

/* ===== 22. 表格 (.result / .tb-wrap) ===== */
.tb-wrap {
  padding: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}
.result {
  width: 100%;
  border-collapse: collapse;
}
.result th {
  background: #F7F8FA;
  color: #4A5568;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
}
.result td {
  padding: 12px 10px;
  border-bottom: 1px solid #E2E8F0;
  font-size: 14px;
}
.result tbody tr:hover {
  background: rgba(43,122,232,0.03);
}
.result a {
  color: #2B7AE8;
}

/* ===== 23. 表单 — 添加按钮 (.add) ===== */
.add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1255AD 0%, #2B7AE8 100%);
  color: #fff;
  text-align: center;
  width: auto;
  min-width: 120px;
  padding: 0 20px;
  line-height: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  margin: 0 auto;
  transition: all 0.25s;
}
.add:hover {
  box-shadow: 0 4px 16px rgba(43,122,232,0.3);
  transform: translateY(-1px);
}

/* ===== 24. 登录/修改密码表单 (.log-box) ===== */
.log-box {
  max-width: 440px;
  margin: 60px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(43,122,232,0.12);
  padding: 40px;
  border: 1px solid rgba(226,232,240,0.5);
}
.log-tab {
  display: flex;
  margin-bottom: 36px;
  border-bottom: 2px solid #E2E8F0;
}
.log-tab .itm {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: #8A95AD;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.25s;
  text-decoration: none;
}
.log-tab .itm.active,
.log-tab .itm:hover {
  color: #2B7AE8;
  border-bottom-color: #2B7AE8;
}
.log-form {
  width: 100%;
}
.log-form .itm {
  margin-bottom: 20px;
  position: relative;
}
.log-form .u-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 14px;
  color: #0F1B3D;
  background: #fff;
  outline: none;
  box-shadow: none;
  text-indent: 0;
  line-height: 44px;
  transition: all 0.25s;
  box-sizing: border-box;
}
.log-form .u-input:focus {
  border-color: #2B7AE8;
  box-shadow: 0 0 0 3px rgba(43,122,232,0.1);
}
.log-form .u-input.user,
.log-form .u-input.password,
.log-form .u-input.code {
  background-image: none;
  padding: 0 14px;
}
.log-form .u-submit {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #1255AD 0%, #2B7AE8 50%, #4A9EF7 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 2px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.log-form .u-submit:hover {
  box-shadow: 0 8px 24px rgba(43,122,232,0.3);
  transform: translateY(-1px);
}
.log-form .vertify {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #2B7AE8;
  border-radius: 6px;
  background: rgba(43,122,232,0.04);
  color: #2B7AE8;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s;
}
.log-form .vertify:hover {
  background: #2B7AE8;
  color: #fff;
}

/* ===== 25. 日期选择器 ===== */
.datepicker-wrap {
  display: inline-block;
  position: relative;
}
.datepicker-wrap .icon {
  position: absolute;
  top: 11px;
  right: 10px;
  width: 25px;
  height: 25px;
}

/* ===== 26. layui 表单禁用态 ===== */
.layui-select-disabled .layui-disabled {
  border-color: #000 !important;
}
.layui-disabled,
.layui-disabled:hover {
  color: #000 !important;
  cursor: not-allowed !important;
}
.layui-radio-disabled > i {
  color: #000 !important;
}
.layui-radio-disabled * {
  color: #000 !important;
}

/* ===== 27. 作品信息 & 团队信息区块 ===== */
.works-info,
.team-info {
  margin-bottom: 10px;
}

/* ===== 28. 全局修正 ===== */
img {
  vertical-align: middle;
}

/* ===== 29. 统一顶部背景图 ===== */
.butterfly-bg {
  width: 100%;
  height: 300px;
  background: url('../images/page-bg.webp') no-repeat center 10% / cover;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

/* ===== 30. 响应式 ===== */
@media (max-width: 1024px) {
  .list-tp .itm {
    flex-direction: column;
  }
  .list-tp .u-pic {
    width: 100%;
    min-width: auto;
    max-width: 300px;
  }
  .list-tp .u-pic img {
    height: auto;
  }
  .list-tp-1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-list-1,
  .p-list-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-menu {
    flex-wrap: wrap;
  }
  .fix-box {
    display: none;
  }
  .u-label,
  .add-form .u-label {
    width: 100%;
    text-align: left;
    margin-bottom: 6px;
    line-height: 1.5;
    padding-right: 0;
  }
  .add-form .itm,
  .add-form .f-cell .itm {
    flex-direction: column;
  }
  .u-input-1,
  .u-input-2 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .article-title {
    font-size: 22px;
  }
  .article-card {
    padding: 32px 20px;
    border-radius: 8px;
  }
  .breadcrumb-bar,
  .search-heading {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .list-tp-1 {
    grid-template-columns: 1fr;
  }
  .p-list-1,
  .p-list-2 {
    grid-template-columns: 1fr;
  }
  .log-box {
    padding: 28px 20px;
    margin: 30px 16px;
  }
  .category {
    font-size: 18px;
  }
  .breadcrumb {
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
  }
  .breadcrumb .name,
  .breadcrumb li a.name {
    padding: 6px 12px;
    font-size: 12px;
  }
  .page a,
  .page span {
    padding: 4px 10px;
    font-size: 12px;
  }
}
