     .content-wrapper {
          display: flex;
          max-width: 1200px;
          margin: 0 auto;
          padding: 20px;
          gap: 30px;
          flex: 1;
          align-items: flex-start;
      }
      
      /* 主内容区域 */
      .main-content {
          flex: 1;
          margin: 0;
          padding: 0;
      }
      
      /* 侧边子菜单 - 根据示例图片设计 */
      .sidebar {
          width: 250px;
          flex-shrink: 0;
          background: #ffffff;
          border: 1px solid #e5e7eb;
          border-radius: 4px;
          overflow: hidden;
      }
      
      /* 侧边子菜单 - 调整为示例样式 */
      .sidebar {
          width: 250px;
          flex-shrink: 0;
          background: #ffffff;
          border: 1px solid #e5e7eb;
          border-radius: 4px;
          overflow: hidden;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      }
      
      /* 面包屑导航 */
      .breadcrumb {
          background: #ffffff;
          padding: 0;
          margin: 0;
          flex-shrink: 0;
      }
      
      .breadcrumb__list {
          list-style: none;
          padding: 0;
          margin: 0;
          display: flex;
          gap: 10px;
          font-size: 14px;
          color: #6b7280;
          align-items: center;
      }
      
      /* 标题容器样式 */
      .title-breadcrumb-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 24px;
          flex-wrap: wrap;
          gap: 16px;
      }
      
      /* 侧边栏头部 */
      .sidebar__header {
          background: #1165b3;
          color: #ffffff;
          padding: 16px 20px;
          text-align: center;
          font-size: 18px;
          font-weight: 600;
          margin: 0;
          border-bottom: none;
      }
      
      /* 侧边栏菜单项 */
      .sidebar__menu {
          list-style: none;
          padding: 0;
          margin: 0;
          background: #ffffff;
      }
      
      .sidebar__menu-item {
          margin: 0;
          border-bottom: 1px solid #f3f4f6;
      }
      
      .sidebar__menu-item:last-child {
          border-bottom: none;
      }
      
      /* 侧边栏菜单链接 */
      .sidebar__menu-link {
          display: block;
          padding: 16px 20px;
          color: #374151;
          text-decoration: none;
          transition: all 0.2s ease;
          font-size: 16px;
          position: relative;
          background: #ffffff;
      }
      
      .sidebar__menu-link::before {
          content: '▶';
          color: #1165b3;
          margin-right: 10px;
          font-size: 12px;
          font-weight: bold;
      }
      
      .sidebar__menu-link:hover {
          background: #f9fafb;
          color: #1165b3;
      }
      
      .sidebar__menu-link--active {
          background: #f3f4f6;
          color: #1165b3;
          font-weight: 600;
      }
      
      /* 响应式设计 */
      @media (max-width: 992px) {
          .sidebar {
              width: 100%;
              margin-bottom: 24px;
          }
          
          .sidebar__header {
              padding: 16px 20px;
              font-size: 18px;
          }
          
          .sidebar__menu-link {
              padding: 14px 18px;
              font-size: 15px;
          }
      }
      
      @media (max-width: 768px) {
          .sidebar {
              border-radius: 8px;
          }
          
          .sidebar__header {
              padding: 12px 16px;
              font-size: 16px;
          }
          
          .sidebar__menu-link {
              padding: 12px 16px;
              font-size: 14px;
          }
      }
      
      /* 学院新闻列表容器 */
      .colleges-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      
      /* 学院新闻卡片 */
      .college-card {
        display: flex;
        gap: 16px;
        background: white;
        padding: 16px 0;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.2s ease;
      }
      
      /* 卡片悬停效果 */
      .college-card:hover {
        background: #fafafa;
      }
      
      /* 学院新闻图片 */
      .college-image {
        width: 200px;
        height: 150px;
        overflow: hidden;
        flex-shrink: 0;
      }
      
      .college-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      
      /* 学院新闻内容区域 */
      .college-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      
      /* 学院新闻标题 */
      .college-title {
        font-size: 16px;
        font-weight: 600;
        color: #000;
        margin: 0;
        line-height: 1.5;
        text-decoration: none;
        transition: color 0.2s ease;
      }
      
      .college-title:hover {
        color: #3b82f6;
      }
      
      /* 学院新闻描述 */
      .college-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
      }
      
      /* 学院新闻日期 */
      .college-date {
        font-size: 12px;
        color: #999;
        margin: 0;
      }
      
      /* 日期下划线 */
      .college-date::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #e0e0e0;
        margin-top: 16px;
      }
      
      /* 最后一个卡片移除下划线 */
      .college-card:last-child {
        border-bottom: none;
      }
      
      .college-card:last-child .college-date::after {
        display: none;
      }
      
      /* 响应式设计 */
      @media (max-width: 768px) {
        .college-card {
          flex-direction: column;
          gap: 12px;
        }
        
        .college-image {
          width: 100%;
          height: 200px;
        }
      }
      
      
      /* zy */
      /* 公寓列表容器 */
      .apartment-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        /*container-type: inline-size;*/
      }
      
      /* 容器查询响应式卡片 */
      @container (max-width: 768px) {
        .apartment-card {
          flex-direction: column;
        }
        
        .card-image {
          width: 100%;
          height: 200px;
          margin-right: 0;
          margin-bottom: 16px;
        }
      }
      
      /* 公寓卡片 */
      .apartment-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 16px;
        padding: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        min-height: 240px;
        display: flex;
        gap: 28px;
        align-items: stretch;
      }
      
      /* 卡片内容区域 */
      .card-content {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      
      /* 卡片详情 */
      .card-details {
        align-self: flex-start;
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        font-size: 14px;
        color: #4b5563;
        margin-bottom: 20px;
      }
      
      /* 卡片悬停效果 */
      .apartment-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        border-color: rgba(59, 130, 246, 0.3);
      }
      
      /* 卡片图片 */
      .card-image {
        width: 300px;
        height: 190px;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
      }
      
      .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
      }
      
      .apartment-card:hover .card-image img {
        transform: scale(1.05);
      }
      
      /* 卡片内容区域 */
      .card-content {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
      }
      
      /* 卡片标题 */
      .card-title {
        font-size: 22px;
        font-weight: 700;
        color: #1f2937;
        margin: 0 0 14px;
        line-height: 1.3;
        transition: color 0.3s ease;
        text-wrap: pretty;
        hanging-punctuation: first;
      }
      
      .apartment-card:hover .card-title {
        color: #3b82f6;
      }
      
      /* 卡片描述 */
      .card-desc {
        font-size: 15px;
        color: #6b7280;
        line-height: 1.6;
        margin: 0 0 24px;
        text-wrap: pretty;
        flex: 1;
      }
      
      /* 卡片详情 */
      .card-details {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        font-size: 14px;
        color: #4b5563;
        align-self: flex-start;
      }
      
      .card-detail-item {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      
      /* 零媒体查询响应式 */
      .apartment-grid:has(.apartment-card:hover) .apartment-card:not(:hover) {
        opacity: 0.8;
        transform: scale(0.99);
      }
      
      /* 滚动驱动动画 */
      .apartment-card {
        opacity: 0;
        transform: translateY(20px);
        view-timeline-name: --apartment-card;
        animation: reveal 0.6s ease-out both;
        animation-timeline: --apartment-card;
        animation-range: entry 20% cover 30%;
      }
      
      @keyframes reveal {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      /* OKLCH + Relative Color Syntax动态主题 */
      :root {
        --primary-color: oklch(59.6% 0.17 240);
        --primary-hover: oklch(from var(--primary-color) calc(l + 5%) c h);
      }
      
      /* 卡片操作按钮 */
      .card-action {
        margin-top: auto;
        display: flex;
        justify-content: flex-end;
        padding: 0;
      }
      
      .card-btn {
        background-color: #3b82f6;
        color: white;
        padding: 10px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        align-self: flex-end;
      }
      
      .card-btn:hover {
        background-color: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
      }
      
      /* @property驱动的物理动画 */
      @property --rotate {
        syntax: '<angle>';
        inherits: false;
        initial-value: 0deg;
      }
      
      .apartment-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        height: 4px;
        background: linear-gradient(var(--rotate), #3b82f6, #06b6d4);
        opacity: 0;
        transition: opacity 0.3s ease, --rotate 2s linear infinite;
      }
      
      .apartment-card:hover::before {
        opacity: 1;
      }