  :root {
      --max-width: 1500px;
      --gap-sm: 9px;
      --gap-md: 12px;
      --gap-lg: 14px;
      --red-primary: #b00020;
      --red-dark: #8b0018;
      --red-accent: #CF0101;
      --card-bg: rgba(250, 250, 250, 1);
      --card-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
      --text-dark: #1a252f;
      --text-muted: #666;
      --border-light: #d3d3d3;
      --font-sans: '微软雅黑', 'PingFang SC', 'Helvetica Neue', Roboto, sans-serif;
  }

  /* ========== 全局基础 ========== */
  body {
      margin: 0;
      background: url("../img/background.jpg") center/cover no-repeat fixed;
  }

  * {
      text-decoration: none;
  }

  .content {
      width: 1415px;
      max-width: 100%;
      margin: auto;
      box-sizing: border-box;
  }

  .line {
      width: 100%;
      border-bottom: 1px #ccc solid;
  }

  .header-wrap {
      width: 100%;
      margin: 0 auto;
      padding: 0;
      box-sizing: border-box;
  }

  /* ---- 头部 ---- */
  .alllogo {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 20%;
      box-sizing: border-box;
      max-width: 1415px;
      margin: 6px auto 0;
      background-image: url('../img/diwen.jpg');
      background-size: cover;
      background-position: center;
      background-color: rgba(255, 255, 255, 0.35);
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
      z-index: 10;
      min-height: 100px;
      overflow: hidden;
  }

  .alllogo img {
      max-width: 42%;
      height: auto;
      display: block;
      margin: 0;
      z-index: 1;
  }

  .alllogo .side-img {
      position: absolute;
      right: 8%;
      top: 0;
      height: 100%;
      width: 30%;
      object-fit: cover;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
      border-radius: 0;
      z-index: 2;
  }

  /* ========== 搜索框 ========== */
  #box {
      flex-shrink: 0;
      width: 200px;
      height: 34px;
      font-size: 14px;
      position: relative;
      margin-left: 12px;
  }

  #box input[type="text"] {
      width: 100%;
      height: 34px;
      border: 1px solid #ddd;
      border-radius: 20px;
      padding: 0 40px 0 15px;
      box-sizing: border-box;
      color: #555;
      box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
      transition: all 0.2s;
  }

  #box input[type="text"]:focus {
      outline: none;
      border-color: var(--red-primary);
      box-shadow: 0 0 0 2px rgba(176, 0, 32, 0.2);
  }

  #search {
      position: absolute;
      right: 0;
      top: 0;
  }

  #search input {
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 0 20px 20px 0;
      background: #8e4da3 url("../img/base/search.png") center/18px no-repeat;
      cursor: pointer;
      transition: background-color 0.2s;
  }

  #search input:hover {
      background-color: #6e3385;
  }

  /* ========== 主导航 ========== */
  .container {
      width: 100%;
      background: linear-gradient(180deg, #8e4da3 0%, #6e3385 100%);
      z-index: 100;
      box-shadow: 0 2px 12px rgba(110, 51, 133, 0.3);
      margin-bottom: 6px;
  }

  .container-inner {
      width: 1415px;
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      height: 56px;
      padding: 0 15px;
      box-sizing: border-box;
  }

  #navigation {
      flex: 1;
      display: flex;
      list-style: none;
      justify-content: space-around;
      line-height: 56px;
      font-size: 19px;
      padding: 0;
      margin: 0;
      max-width: 100%;
      min-width: 0;
      font-family: var(--font-sans);
      letter-spacing: 0.5px;
  }

  #navigation>li {
      flex: 1 1 0;
      min-width: 0;
      text-align: center;
      height: 58px;
      color: #fff;
      position: relative;
      font-weight: 500;
      letter-spacing: 1px;
      white-space: nowrap;
  }

  #navigation>li:hover {
      background: #6e3385;
      cursor: pointer;
  }

  #navigation a {
      text-decoration: none;
      color: #fff;
      display: block;
      width: 100%;
      height: 100%;
  }

  #navigation li ul li {
      list-style: none;
      color: #fff;
      background: #8e4da3;
      font-size: 16px;
      height: 38px;
      line-height: 38px;
      width: 100%;
  }

  #navigation li ul li:hover {
      background: #6e3385;
  }

  #navigation>li>ul {
      margin: 0;
      padding: 0;
      width: 100%;
      min-width: 140px;
      position: absolute;
      left: 0;
      top: 58px;
      z-index: 200;
  }

  #navigation .Three1,
  #navigation .Three2,
  #navigation .Three3 {
      position: absolute;
      left: 100%;
      top: 0;
      width: 130px;
      margin: 0;
      padding: 0;
  }

  #list11,
  #list21,
  #list22 {
      position: relative;
  }

  .Two1,
  .Two2,
  .Two3,
  .Two4,
  .Two5,
  .Two6,
  .Two7,
  .Three1,
  .Three2,
  .Three3 {
      display: none;
  }


  /* ========== 通用卡片组件 ========== */
  .grid-card,
  .side-card {
      background-color: var(--card-bg);
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      border-radius: 8px;
      overflow: hidden;
      min-width: 0;
  }

  .grid-card .card-title-bar,
  .side-card .card-title-bar {
      width: 100%;
      background: transparent;
      border-bottom: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10px;
      box-sizing: border-box;
      flex-shrink: 0;
      position: relative;
  }

  .grid-card .card-title-bar::after,
  .side-card .card-title-bar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50%;
      height: 2px;
      background: var(--red-accent);
  }

  .grid-card .card-title-bar {
      height: 35px;
  }

  .side-card .card-title-bar {
      height: 39px;
  }

  /* 标题左侧 */
  .title-left {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #333;
      font-weight: 700;
      font-size: 16px;
  }

  .side-card .title-left {
      font-size: 16px;
      gap: 8px;
  }

  .title-left img {
      width: 22px;
      height: auto;
      margin-top: 1px;
      filter: brightness(0) saturate(100%) invert(10%) sepia(100%) saturate(6500%) hue-rotate(355deg) brightness(0.95);
  }

  .side-card .title-left img {
      width: 24px;
      margin-top: 2px;
  }

  /* 标题右侧 more */
  .title-right {
      text-decoration: none;
  }

  .title-right img {
      width: 30px;
      height: auto;
      padding-top: 2px;
  }

  .side-card .title-right img {
      width: 32px;
  }

  .title-right span {
      display: inline-block;
      font-size: 12px;
      color: var(--red-primary);
      padding: 3px 10px;
      border: 1px solid var(--red-primary);
      border-radius: 3px;
      transition: all 0.25s ease;
  }

  .title-right:hover span {
      background: var(--red-primary);
      color: #fff;
  }

  /* 卡片内容区 */
  .grid-card .card-body,
  .side-card .card-body {
      flex: 1;
      padding: 6px 10px 6px 14px;
      overflow: hidden;
      position: relative;
  }

  .side-card .card-body {
      padding: 6px 12px 6px 15px;
  }

  .grid-card .card-body {
      min-height: 160px;
  }

  /* 新闻列表行 - 通用 */
  .item-row,
  .sticky-first {
      display: flex;
      align-items: center;
      border-bottom: none;
      gap: 6px;
      flex-shrink: 0;
      position: relative;
  }

  .item-row::after,
  .sticky-first::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--border-light);
  }

  .item-row img,
  .sticky-first img {
      flex-shrink: 0;
  }

  .item-row a,
  .sticky-first a {
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      text-decoration: none;
      color: #000;
      font-size: 15px;
      min-width: 0;
  }

  .item-row a:hover,
  .sticky-first a:hover {
      color: #333;
      font-weight: 700;
  }

  .item-row span,
  .sticky-first span {
      flex-shrink: 0;
      color: var(--text-muted);
      white-space: nowrap;
      font-size: 13px;
  }

  /* side-card / grid-card 行差异 */
  .side-card .item-row {
      height: 40px;
  }

  .grid-card .item-row {
      height: 41px;
  }

  .item-row img {
      width: 18px;
      height: 20px;
  }

  .side-card .item-row img,
  .sticky-first img {
      width: 22px;
      height: 24px;
  }

  /* 首条高亮 */
  .item-row.first-highlight,
  .sticky-first.first-highlight {
      background: transparent;
      border-left: 2px solid #b00020;
      padding-left: 8px;
  }

  .item-row.first-highlight a,
  .sticky-first.first-highlight a {
      color: #b00020;
      font-weight: 700;
  }

  .item-row.first-highlight span,
  .sticky-first.first-highlight span {
      color: #b00020;
      font-weight: 700;
  }

  /* 灰色图标（侧边栏和中间列） */
  .top-row .side-card .item-row img,
  .middle-col .grid-card .item-row img {
      filter: grayscale(100%) brightness(0.7);
      opacity: 0.6;
  }

  /* ========== 布局行 ========== */
  .main-layout {
      display: flex;
      gap: var(--gap-lg);
      align-items: stretch;
      padding: 0 15px;
      box-sizing: border-box;
  }

  .main-left {
      flex: 1;
      min-width: 0;
  }

  .main-right {
      width: 310px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: var(--gap-sm);
  }

  .main-right .grid-card {
      border: 1px solid #ddd;
      border-radius: 7px;
  }

  .main-right .notice-card {
      flex: 0 0 auto;
      margin-top: 5px;
      height: 269px;
      display: flex;
      flex-direction: column;
  }

  .main-right .notice-card .card-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      overflow: hidden;
  }

  /* 通知公告滚动区域 */
  .notice-scroll-wrap {
      flex: 1;
      overflow: hidden;
      position: relative;
  }

  .notice-scroll-inner {
      position: relative;
  }

  .main-right .file-card {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
  }

  /* 右侧栏联系方式方块 */
  .contact-squares {
      display: flex;
      gap: 10px;
      justify-content: space-between;
      height: 120px;
  }

  .sq-box {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      border: 1.5px solid #d3d3d3;
      border-radius: 10px;
      background: #fce4e4;
      text-decoration: none;
      transition: box-shadow 0.25s, border-color 0.25s;
      padding: 10px 8px;
      box-sizing: border-box;
      min-width: 0;
  }

  .sq-box:hover {
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
      border-color: var(--red-primary);
  }

  .sq-vert-label {
      writing-mode: horizontal-tb;
      font-size: 14px;
      color: #333;
      font-weight: 600;
      letter-spacing: 2px;
      flex-shrink: 0;
      text-align: center;
  }

  .sq-icon-mail {
      display: block;
      width: 55px;
      height: 55px;
      flex-shrink: 0;
      background: url("../img/base/mail.png") center/contain no-repeat;
  }

  .sq-wechat img {
      width: 66px;
      height: 66px;
      border-radius: 6px;
      flex-shrink: 0;
  }

  /* 右侧栏列表行覆盖 */
  .main-right .item-row {
      align-items: flex-start;
      height: auto;
      min-height: 32px;
      padding: 3px 0;
      box-sizing: border-box;
  }

  .main-right .item-row a {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      font-size: 15px;
      line-height: 1.65;
      word-break: break-all;
      white-space: normal;
  }

  .main-right .notice-card .item-row {
      min-height: 38px;
      padding: 5px 0;
  }

  .main-right .notice-card .item-row a {
      line-height: 1.45;
  }

  .main-right .file-card .item-row {
      padding: 8.55px 0;
      min-height: 40px;
  }

  .main-right .file-card .item-row a {
      line-height: 1.42;
  }

  .main-right .notice-card .title-left {
      color: var(--red-primary);
  }

  /* 右侧栏 sticky-first */
  .main-right .notice-card .sticky-first {
      display: flex;
      align-items: center;
      height: 38px;
      gap: 6px;
      padding: 6px 10px 6px 14px;
  }

  .main-right .notice-card .sticky-first img {
      width: 18px;
      height: 20px;
  }

  .main-right .notice-card .sticky-first a {
      font-size: 15px;
  }

  .main-right .notice-card .sticky-first span {
      font-size: 13px;
  }

  /* 顶部行 */
  .top-row {
      display: flex;
      gap: var(--gap-lg);
      margin-top: 6px; /* 统一纵向缝隙 (原为5px) */
      align-items: stretch;
      flex-wrap: nowrap;
  }

  .top-sidebar {
      flex: 1;
      min-width: 320px;
      display: flex;
      flex-direction: column;
      height: 270px;
  }

  .top-sidebar .side-card {
      flex: 1;
      min-height: 0;
  }

  /* 学院要闻 - 垂直标题布局 */
  .news-side {
      flex-direction: row;
  }

  .news-side .card-title-bar {
      width: auto;
      height: auto;
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      gap: 16px;
      padding-right: 0;
      border-bottom: none;
      flex-shrink: 0;
  }

  .news-side .card-title-bar::after {
      display: none;
  }

  .news-side .title-left {
      flex-direction: column;
      gap: 4px;
      writing-mode: vertical-rl;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 2px;
      color: var(--red-primary);
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .news-side .title-left img {
      display: none;
  }

  .news-side .title-right {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .news-side .title-right span {
      writing-mode: vertical-rl;
      letter-spacing: 2px;
      font-size: 12px;
      padding: 4px 6px;
  }

  .news-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-width: 0;
  }

  .news-content .card-body {
      flex: 1;
      overflow-y: hidden;
  }

  .news-side .item-row a {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
  }

  /* ========== 头条独立板块 ========== */
  .headline-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: var(--card-shadow);
      padding: 8px 16px;
      display: flex;
      justify-content: flex-start; /* 修复：文字应当左对齐 */
      align-items: center;
      flex-shrink: 0;
      margin-bottom: 12px;
  }

  .headline-card a {
      font-family: "SimHei", "黑体", sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--text-dark);
      text-decoration: none;
      letter-spacing: 1px;
      text-align: left; /* 修复：文字左对齐 */
  }

  .headline-card a:hover {
      color: #b00020;
  }

  .news-content .headline-date {
      flex-shrink: 0;
      color: #999;
      font-size: 13px;
      white-space: nowrap;
  }

  .headline-tag {
      display: inline-block;
      background: #b00020;
      color: #fff !important;
      font-size: 12px;
      padding: 1px 6px;
      border-radius: 3px;
      margin-right: 6px;
      vertical-align: middle;
      font-weight: 700;
  }

  /* ========== 中间四列布局 ========== */
  .middle-section {
      display: flex;
      gap: var(--gap-md);
      margin-top: 8px;
      align-items: stretch;
  }

  .middle-col {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: var(--gap-sm);
  }

  .middle-col .grid-card {
      flex: 1;
      min-height: 0;
  }

  .col-links {
      flex: 0 0 230px;
      gap: var(--gap-sm);
  }

.col-links .linkall2 {
    /* flex: 1;  <-- 这句必须删掉或者注释掉 */
    flex: 0 0 auto; /* 加上这句，意思是高度只由内容决定，绝不拉伸 */
}

  .col-links .linkall {
      flex-shrink: 0;
  }

  /* ========== 系室链接 / 服务机构 ========== */
  .linkall,
  .linkall2 {
      width: 100%;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
      padding: 14px 16px;
      box-sizing: border-box;
  }

  .slink {
      font-family: var(--font-sans);
      font-size: 17px;
      font-weight: 900;
      color: #b00020;
      text-align: left;
      margin: 0 0 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid #ddd;
      letter-spacing: 1px;
      position: relative;
  }

  .slink::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 18px;
      background-color: #b00020;
      border-radius: 2px;
      margin-right: 10px;
      vertical-align: middle;
  }

  .chi,
  .chi2 {
      width: 100%;
      margin: 9px 0 0;
      padding: 0;
      background: none;
      border: none;
      border-radius: 0;
      text-align: center;
      box-shadow: none;
  }

  .chi:first-of-type,
  .chi2:first-of-type {
      margin-top: 4px;
  }

  .chi a,
  .chi2 a {
      display: block;
      padding: 7px 12px;
      color: var(--text-dark);
      font-size: 14px;
      font-family: var(--font-sans);
      text-decoration: none;
      text-align: center;
      border-radius: 20px;
      border: 2px solid #eee;
      letter-spacing: 0.5px;
      line-height: 1.6;
      box-sizing: border-box;
      transition: transform 0.2s, box-shadow 0.2s;
      background: #fff;
  }

  .chi a:hover,
  .chi2 a:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  }

  .chi2 a {
      white-space: normal;
      word-break: keep-all;
      padding: 7px 8px;
  }

  /* 系室链接彩色边框 */
  .linkall .chi:nth-child(2) a {
      border-color: #e74c3c;
  }

  .linkall .chi:nth-child(3) a {
      border-color: #e67e22;
  }

  .linkall .chi:nth-child(4) a {
      border-color: #2ecc71;
  }

  .linkall .chi:nth-child(5) a {
      border-color: #3498db;
  }

  .linkall .chi:nth-child(6) a {
      border-color: #9b59b6;
  }

  .linkall .chi2 a {
      border-color: #e91e63;
  }

  .linkall .chi:nth-child(8) a {
      border-color: #1abc9c;
  }

  .linkall2 .chi:nth-child(2) a {
      border-color: #c0392b;
  }

  .linkall2 .chi:nth-child(3) a {
      border-color: #d35400;
  }

  /* ========== 底部师生风采 ========== */
  .bottom-section {
      margin-top: 6px; /* 统一纵向缝隙 */
      margin-bottom: 6px; /* 统一纵向缝隙 (原为8px) */
  }

  .showcase-card {
      background-color: var(--card-bg);
      box-shadow: var(--card-shadow);
      border-radius: 8px;
      overflow: hidden;
      position: relative;
  }

  .showcase-title-bar {
      width: 100%;
      background: transparent;
      border-bottom: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10px;
      box-sizing: border-box;
      height: 39px;
      flex-shrink: 0;
      position: relative;
  }

  .showcase-title-bar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50%;
      height: 2px;
      background: var(--red-accent);
  }

  .showcase-title-bar .title-left {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #333;
      font-weight: 700;
      font-size: 16px;
  }

  .showcase-title-bar .title-left img {
      width: 24px;
      height: auto;
      margin-top: 2px;
      filter: brightness(0) saturate(100%) invert(10%) sepia(100%) saturate(6500%) hue-rotate(355deg) brightness(0.95);
  }

  .showcase-carousel-wrapper {
      overflow: hidden;
      padding: 12px 16px;
      position: relative;
  }

  .showcase-track {
      display: flex;
      gap: 12px;
      scroll-behavior: smooth;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
  }

  .showcase-track::-webkit-scrollbar {
      display: none;
  }

  .showcase-item {
      flex: 0 0 200px;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
  }

  .showcase-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .showcase-item a {
      text-decoration: none;
      color: inherit;
      display: block;
  }

  .showcase-img {
      width: 100%;
      height: 180px;
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      background-color: #e0e0e0;
  }

  .showcase-item p {
      margin: 0;
      padding: 10px 12px;
      font-size: 14px;
      color: #333;
      line-height: 1.5;
      font-weight: 500;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .showcase-arrows {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 0;
      pointer-events: none;
      z-index: 5;
  }

  .showcase-prev,
  .showcase-next {
      position: absolute;
      top: -20px;
      width: 36px;
      height: 36px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      text-decoration: none;
      pointer-events: auto;
      transition: background 0.25s;
      opacity: 0;
  }

  .showcase-card:hover .showcase-prev,
  .showcase-card:hover .showcase-next {
      opacity: 1;
  }

  .showcase-prev:hover,
  .showcase-next:hover {
      background: rgba(176, 0, 32, 0.8);
  }

  .showcase-prev {
      left: 6px;
  }

  .showcase-next {
      right: 6px;
  }

  /* ========== Footer ========== */
  footer {
      position: relative;
      min-height: 130px;
      background-color: rgba(250, 250, 250, 0.5);
      box-shadow: 0 5px 5px rgba(50, 50, 50, 0.8);
  }

  .footer-container {
      width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      padding: 15px 0;
  }

  .mail {
      border-radius: 20px;
      width: 173px;
      height: 81px;
      border: rgba(190, 3, 3, 0.9) 2px solid;
      transition: all 500ms;
      background-color: transparent;
  }

  .mail:hover {
      transform: scale(1.1);
  }

  .iconEmail {
      display: inline-block;
      position: relative;
      margin: 0 5px;
      top: 10px;
      width: 32px;
      height: 32px;
      background: url("../img/base/mail.png") center/contain no-repeat;
  }

  .mail p {
      margin-top: 30.5px;
      display: inline-block;
      font-size: 20px;
      font-family: Helvetica, "Lucida Grande", Arial, "Microsoft YaHei", sans-serif;
      color: var(--red-accent);
  }

  .footer-center ul {
      list-style: none;
      color: #BE0303;
      font-size: 14px;
      padding: 0;
      margin: 0 0 10px;
      text-align: center;
  }

  .footer-center ul li {
      display: inline-block;
  }

  .footer-center ul li a {
      color: #BE0303;
      text-decoration: none;
  }

  .footer-center ul a:hover {
      color: #000;
  }

  .footnote {
      font-size: 13px;
      color: #666;
      line-height: 1.6;
      text-align: center;
  }

  .footer-right {
      display: flex;
      gap: 20px;
  }

  .qr {
      text-align: center;
      width: 80px;
  }

  .qr img {
      width: 90px;
      height: 90px;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s;
  }

  .qr p {
      font-size: 12px;
      color: var(--red-primary);
      margin-top: 6px;
      font-weight: 500;
  }

/* 覆盖博达列表的默认样式 */
.card-body ul { list-style: none; padding: 0; margin: 0; }
.card-body ul li { display: flex; justify-content: space-between; align-items: center; line-height: 36px; border-bottom: 1px solid #eaeaea; }
.card-body ul li a { color: #333; flex: 1; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
.card-body ul li span { color: #999; font-size: 13px; margin-left: 10px; }

.middle-col.col-links {
    align-self: flex-start;
}