@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');
    body {
      font-family: 'Noto Sans SC', sans-serif;
    }
    
    /* Header响应式高度 */
    header {
      height: 60px !important;
      transition: all 0.3s ease;
      position: relative;
      z-index: 100;
    }
    
    @media (min-width: 768px) {
      header {
        height: 80px !important;
      }
    }
    
    /* 滚动时的固定导航栏样式 */
    header.scrolled {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.8) !important;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* 鼠标悬停时变为纯白背景 */
    header.scrolled:hover {
      background: rgba(255, 255, 255, 1) !important;
    }
    
    /* 移动端导航菜单样式 */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: white;
      z-index: 1000;
      transition: right 0.3s ease;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-nav.active {
      right: 0;
    }
    
    .mobile-nav-content {
      position: relative;
      height: 100%;
      overflow-y: auto;
      padding: 20px;
    }
    
    .close-menu-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      font-size: 24px;
      color: #374151;
      cursor: pointer;
      padding: 8px;
      z-index: 10;
    }
    
    .mobile-nav-items {
      margin-top: 60px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .mobile-nav-item {
      display: block;
      padding: 16px;
      color: #374151;
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.2s;
      font-size: 16px;
    }
    
    .mobile-nav-item:hover {
      background: #f3f4f6;
    }
    
    .mobile-dropdown {
      border-radius: 8px;
      overflow: hidden;
    }
    
    .mobile-dropdown-btn {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px;
      background: none;
      border: none;
      color: #374151;
      font-size: 16px;
      cursor: pointer;
      text-align: left;
      transition: background 0.2s;
    }
    
    .mobile-dropdown-btn:hover {
      background: #f3f4f6;
    }
    
    .mobile-dropdown-btn i {
      transition: transform 0.3s ease;
    }
    
    .mobile-dropdown.active .mobile-dropdown-btn i {
      transform: rotate(180deg);
    }
    
    .mobile-dropdown-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #f9fafb;
    }
    
    .mobile-dropdown.active .mobile-dropdown-content {
      max-height: 500px;
    }
    
    .mobile-dropdown-content a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px 12px 32px;
      color: #6b7280;
      text-decoration: none;
      transition: all 0.2s;
      font-size: 14px;
    }
    
    .mobile-dropdown-content a i {
      color: #2563eb;
      width: 20px;
    }
    
    .mobile-dropdown-content a:hover {
      background: #e5e7eb;
      color: #2563eb;
    }
    
    /* 移动端导航遮罩层 */
    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-nav-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    /* 下拉菜单通用样式 */
    .dropdown {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
    }
    
    @media (min-width: 768px) {
      .dropdown {
        height: 80px;
      }
    }
    
    /* 下拉箭头旋转动画 */
    .dropdown i.fa-chevron-down {
      transition: transform 0.3s ease;
    }
    .dropdown:hover i.fa-chevron-down {
      transform: rotate(180deg);
    }
    
    /* 样式1: 原有简洁下拉样式 - 优化版 */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      border-radius: 12px;
      min-width: 200px;
      z-index: 50;
      padding: 8px 0;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu {
      display: block;
      opacity: 1;
    }
    
    .dropdown-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      color: #374151;
      transition: all 0.2s;
      font-size: 14px;
    }
    
    .dropdown-menu a i {
      color: #2563eb;
      font-size: 16px;
      width: 20px;
      transition: transform 0.2s;
    }
    
    .dropdown-menu a:hover {
      background: linear-gradient(90deg, #eff6ff 0%, #dbeafe 100%);
      color: #2563eb;
      padding-left: 24px;
    }
    
    .dropdown-menu a:hover i {
      transform: translateX(2px);
    }
    
    /* 样式2: 图文三列下拉样式 */
    .dropdown-menu-grid {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      border-radius: 16px;
      min-width: 650px;
      z-index: 50;
      padding: 24px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu-grid {
      display: block;
      opacity: 1;
    }
    
    .dropdown-grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    
    .dropdown-grid-item {
      display: flex;
      flex-direction: column;
      padding: 16px;
      border-radius: 12px;
      transition: all 0.3s ease;
      cursor: pointer;
      text-decoration: none;
      border: 1px solid transparent;
    }
    
    .dropdown-grid-item:hover {
      background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
      border-color: #bfdbfe;
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    }
    
    .dropdown-grid-item-image {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      margin-bottom: 12px;
      object-fit: cover;
    }
    
    .dropdown-grid-item-title {
      font-size: 15px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 6px;
      transition: color 0.2s;
    }
    
    .dropdown-grid-item:hover .dropdown-grid-item-title {
      color: #2563eb;
    }
    
    .dropdown-grid-item-desc {
      font-size: 12px;
      color: #6b7280;
      line-height: 1.4;
    }
    
    /* 轮播图样式 */
    .carousel {
      position: relative;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 16/9;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 100%;
      height: 100%;
    }
    .carousel-slide {
      min-width: 100%;
      width: 100%;
      flex-shrink: 0;
      height: 100%;
    }
    .carousel-slide picture {
      width: 100%;
      height: 100%;
      display: block;
    }
    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    /* 移动端轮播优化 */
    @media (max-width: 768px) {
      .carousel {
        aspect-ratio: 4/3;
      }
      

    }


    /* 独立模块样式 - 使用 al- 前缀避免冲突 */
    .al-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 40px 20px;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    }

    .al-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .al-title {
      font-size: 36px;
      font-weight: bold;
      color: #1e3a8a;
      margin: 0;
    }

    .al-promo-banner {
      display: block;
      max-width: 600px;
    }

    .al-promo-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    .al-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .al-card {
        border-radius: 16px;
        transition: transform 0.3s 
        ease;
        cursor: pointer;
        overflow: hidden;
        border: 1px solid #ffffff;
    }

    .al-card:hover {
      transform: translateY(-5px);
    }

    .al-card-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .al-card-desc {
      font-size: 14px;
      color: #374151;
      margin: 0 0 20px 0;
      line-height: 1.6;
      padding: 0 20px;
    }

    .al-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(59, 130, 246, 0.2);
      padding: 16px 20px;
    }

    .al-card-author {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #6b7280;
      font-size: 13px;
    }

    .al-card-author-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      object-fit: cover;
    }

    .al-card-views {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #6b7280;
      font-size: 13px;
    }

    .al-card-views img {
      width: 16px;
      height: 16px;
    }

    .al-more-btn-wrapper {
      text-align: center;
      margin-top: 40px;
    }

    .al-more-btn {
      background: #1e3a8a;
      color: white;
      border: none;
      padding: 16px 80px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .al-more-btn:hover {
      background: #1e40af;
    }

    @media (max-width: 768px) {
      .al-title {
        font-size: 28px;
      }

      .al-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      }

      .al-promo-banner {
        width: 100%;
      }
    }


    /* 独立模块样式 - 使用 pngen- 前缀避免冲突 */
    .pngen-wrapper {
      width: 100%;
      background: linear-gradient(180deg, #e3f2fd 0%, #90caf9 100%);
    }

    .pngen-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 100px 20px;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    }

    .pngen-form-section {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .pngen-select-wrapper {
      position: relative;
      min-width: 200px;
    }

    .pngen-select {
      width: 100%;
      padding: 12px 40px 12px 16px;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      background: white;
      font-size: 16px;
      color: #666;
      cursor: pointer;
      appearance: none;
      transition: all 0.3s ease;
    }

    .pngen-select:hover {
      border-color: #2196f3;
    }

    .pngen-select:focus {
      outline: none;
      border-color: #2196f3;
      box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
    }

    /* Updated dropdown icon to use Font Awesome */
    .pngen-select-wrapper::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: #999;
      font-size: 12px;
    }

    .pngen-input-group {
      flex: 1;
      min-width: 300px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pngen-input {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .pngen-input:focus {
      outline: none;
      border-color: #2196f3;
      box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
    }

    .pngen-label {
      color: #666;
      font-size: 16px;
      white-space: nowrap;
    }

    .pngen-btn-primary {
      padding: 14px 48px;
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .pngen-btn-primary:hover {
      transform: translateY(-2px);
    }

    .pngen-btn-primary:active {
      transform: translateY(0);
    }

    .pngen-status-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .pngen-status-items {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .pngen-status-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: white;
        font-size: 16px;
        border-radius: 50px;
        background-color: #1e3a8a;
        padding: 4px 10px;
    }

    .pngen-status-icon {
      width: 24px;
      height: 24px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2196f3;
      font-weight: bold;
      font-size: 14px;
    }

    .pngen-btn-check {
      padding: 12px 32px;
      background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
      color: white;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pngen-btn-check:hover {
      transform: translateY(-2px);
    }

    .pngen-platforms {
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 24px;
      padding: 20px;
      backdrop-filter: blur(10px);
    }

    .pngen-platforms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .pngen-platform-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      transition: transform 0.3s ease;
    }

    .pngen-platform-item:hover {
      transform: translateY(-5px);
    }

    .pngen-platform-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      object-fit: cover;
    }

    .pngen-platform-name {
      color: #1565c0;
      font-size: 16px;
      font-weight: 600;
      text-align: center;
    }

    @media (max-width: 768px) {
      .pngen-form-section {
        flex-direction: column;
        align-items: stretch;
      }

      .pngen-select-wrapper,
      .pngen-input-group {
        min-width: 100%;
      }

      .pngen-status-section {
        flex-direction: column;
        align-items: stretch;
      }

      .pngen-status-items {
        flex-direction: column;
        gap: 15px;
      }

      .pngen-platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
      }

      .pngen-platform-icon {
        width: 60px;
        height: 60px;
      }
    }


    /* 榜单模块 */
    /* 使用新的 alm- 前缀，改为白色背景，优化布局 */
    .alm-wrapper {
      width: 100%;
      background-color: #ffffff;
    }

    /* 使用新的 alm- 前缀，改为白色背景，优化布局 */
    .alm-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    .alm-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }

    .alm-title {
      font-size: 32px;
      font-weight: 700;
      color: #1a3a7d;
      margin: 0;
    }

    .alm-more-link {
      color: #1a3a7d;
      text-decoration: underline;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: color 0.2s;
    }

    .alm-more-link:hover {
      color: #4a90e2;
    }

    .alm-content {
      display: flex;
      gap: 40px;
    }

    /* 左侧平台列表优化为2列滚动布局 */
    .alm-platforms {
      flex: 0 0 380px;
      display: flex;
      gap: 24px;
      height: 600px;
      overflow: hidden;
      position: relative;
    }

    /* 添加顶部和底部的白色渐变遮罩 */
    .alm-platforms::before,
    .alm-platforms::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 80px;
      z-index: 10;
      pointer-events: none;
    }

    .alm-platforms::before {
      top: 0;
      background: linear-gradient(to bottom, #ffffff 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0) 100%);
    }

    .alm-platforms::after {
      bottom: 0;
      background: linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0) 100%);
    }

    .alm-platform-column {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .alm-platform-scroll {
      display: flex;
      flex-direction: column;
      gap: 16px;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }

    /* 桌面端动画 */
    .alm-column-1 .alm-platform-scroll {
      animation-name: scrollUp;
      animation-duration: 30s;
    }

    .alm-column-2 .alm-platform-scroll {
      animation-name: scrollDown;
      animation-duration: 30s;
    }

    @keyframes scrollUp {
      0% {
        transform: translateY(0);
      }
      100% {
        transform: translateY(-50%);
      }
    }

    @keyframes scrollDown {
      0% {
        transform: translateY(-50%);
      }
      100% {
        transform: translateY(0);
      }
    }

    /* 悬停暂停 */
    .alm-platform-column:hover .alm-platform-scroll {
      animation-play-state: paused;
    }

    .alm-platform-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 8px;
      transition: all 0.2s;
      background-color: #fff;
      /* 改为蓝色渐变边框 */
      border: 2px solid transparent;
      background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #1a3a7d 0%, #4a90e2 50%, #87ceeb 100%);
      background-origin: border-box;
      background-clip: padding-box, border-box;
      flex-shrink: 0;
    }

    .alm-platform-item:hover {
      background-image: 
        linear-gradient(#f5f7fa, #f5f7fa),
        linear-gradient(135deg, #1a3a7d 0%, #4a90e2 50%, #87ceeb 100%);
      transform: translateY(-2px);
    }

    .alm-platform-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .alm-platform-name {
      font-size: 15px;
      color: #333;
      font-weight: 500;
      white-space: nowrap;
    }

    .alm-right-section {
      flex: 1;
      min-width: 0;
    }

    .alm-section {
      margin-bottom: 50px;
    }

    .alm-section:last-child {
      margin-bottom: 0;
    }

    .alm-section-title {
      font-size: 24px;
      font-weight: 700;
      color: #1a3a7d;
      margin: 0 0 24px 0;
    }

    /* 国家分布改为6列网格 (PC端) */
    .alm-countries-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px 20px;
    }

    .alm-country-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .alm-country-flag {
      width: 28px;
      height: 21px;
      object-fit: cover;
      border-radius: 3px;
      flex-shrink: 0;
    }

    .alm-country-name {
      font-size: 14px;
      color: #333;
      font-weight: 500;
    }

    .alm-news-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .alm-news-item {
      margin-bottom: 16px;
      padding-left: 20px;
      position: relative;
      line-height: 1.6;
    }

    .alm-news-item::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #1a3a7d;
      font-weight: bold;
      font-size: 18px;
    }

    .alm-news-link {
      font-size: 15px;
      color: #333;
      text-decoration: none;
      transition: color 0.2s;
      display: inline;
    }

    .alm-news-link:hover {
      color: #1a3a7d;
      text-decoration: underline;
    }

    @media (max-width: 968px) {
      .alm-content {
        flex-direction: column;
      }

      .alm-platforms {
        flex: none;
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 16px;
      }

      /* 移动端的左右渐变遮罩 */
      .alm-platforms::before,
      .alm-platforms::after {
        top: 0;
        bottom: 0;
        height: auto;
        width: 60px;
      }

      .alm-platforms::before {
        left: 0;
        right: auto;
        background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0) 100%);
      }

      .alm-platforms::after {
        right: 0;
        left: auto;
        background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0) 100%);
      }

      .alm-platform-column {
        width: 100%;
        height: 80px;
        overflow: hidden;
      }

      .alm-platform-scroll {
        flex-direction: row;
        gap: 16px;
      }

      /* 移动端动画 */
      .alm-column-1 .alm-platform-scroll {
        animation-name: scrollLeft;
        animation-duration: 25s;
      }

      .alm-column-2 .alm-platform-scroll {
        animation-name: scrollRight;
        animation-duration: 25s;
      }

      @keyframes scrollLeft {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      @keyframes scrollRight {
        0% {
          transform: translateX(-50%);
        }
        100% {
          transform: translateX(0);
        }
      }

      .alm-platform-item {
        min-width: 160px;
      }

      .alm-countries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px 20px;
      }
    }

    @media (max-width: 640px) {
      .alm-title {
        font-size: 24px;
      }

      .alm-section-title {
        font-size: 20px;
      }

      .alm-countries-grid {
        gap: 12px 16px;
      }

      .alm-country-item {
        gap: 6px;
      }

      .alm-country-flag {
        width: 24px;
        height: 18px;
      }

      .alm-country-name {
        font-size: 13px;
      }
    }
    

    /* 独立模块样式 - 使用 artlist- 前缀避免冲突 */
    .artlist-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    }
    
    .artlist-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      color: #1e3a8a;
      margin-bottom: 3rem;
    }
    
    /* 修改网格布局为固定3列 */
    .artlist-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    
    /* 卡片容器无背景 */
    .artlist-card {
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .artlist-card:hover {
      transform: translateY(-4px);
    }
    
    /* 图片区域 - 无背景无padding，圆角20px，底部间距10px */
    .artlist-thumbnail {
      width: 100%;
      height: 240px;
      overflow: hidden;
      border-radius: 20px;
      margin-bottom: 10px;
    }
    
    .artlist-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* 内容区域 - 白色背景，只有上圆角 */
    .artlist-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      background: white;
      border-radius: 20px 20px 0 0;
      transition: all 0.3s ease;
    }
    
    /* 添加标签容器 */
    .artlist-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    
    .artlist-tag {
      padding: 0.375rem 0.875rem;
      background: #dbeafe;
      color: #1e40af;
      font-size: 0.8125rem;
      border-radius: 1rem;
      font-weight: 500;
    }
    
    /* 标题样式更新 */
    .artlist-card-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: #1e3a8a;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    /* 描述文字样式更新 */
    .artlist-description {
      font-size: 0.9375rem;
      color: #6b7280;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    /* 底部信息栏 - 无间距，紧贴排列 */
    .artlist-footer {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
    }
    
    /* 日期容器 - 白色背景，左下圆角 */
    .artlist-date-wrapper {
      display: flex;
      align-items: center;
      background: white;
      padding: 0.5rem 1.5rem;
      border-radius: 0 0 20px 20px;
      flex: 1;
      position: relative;
    }
    .artlist-date-wrapper::after {
      content: '';
      position: absolute;
      width: 23px;
      height: 23px;
      background: rgb(249 250 251);
      border-radius: 50%;
      top: 1px;
      right: -25px;
      box-shadow: -10px -10px 0 0 #ffffff;
    }
    
    .artlist-date {
      font-size: 0.875rem;
      color: #ef4444;
      font-weight: 500;
    }
    
    /* 按钮容器 - 白色背景，右下圆角 */
    .artlist-button-wrapper {
      display: flex;
      align-items: center;
      padding: 0.5rem 1.5rem;
      border-radius: 0 0 20px 0;
      flex-shrink: 0;
    }
    
    /* 阅读更多按钮 */
    .artlist-read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.5rem 1.25rem;
      background: #1e3a8a;
      color: white;
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: 1.5rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .artlist-read-more:hover {
      background: #1e40af;
      transform: translateX(2px);
    }
    
    .artlist-arrow {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
    }
    
    .artlist-read-more:hover .artlist-arrow {
      transform: translateX(3px);
    }
    
    /* 平板端改为2列布局 */
    @media (max-width: 1024px) {
      .artlist-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    /* 移动端改为单列布局 */
    @media (max-width: 768px) {
      .artlist-grid {
        grid-template-columns: 1fr;
      }
      
      .artlist-title {
        font-size: 2rem;
      }
      
      .artlist-thumbnail {
        height: 220px;
      }
      


    }


    /* 秀肌肉 */
    .showcase-section {
      display: block;
      width: 100%;
      background: url('https://blog.echodata.cc/bg51x.png') center top/100% auto no-repeat;
      padding: 80px 20px;
      margin: 0;
      position: relative;
      isolation: isolate;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      overflow: hidden;
      margin-top: 60px;
    }

    .showcase-section * {
      box-sizing: border-box;
    }

    .showcase-container {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .showcase-header {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      margin-bottom: 60px;
      gap: 12px;
    }

    .showcase-title {
      font-size: 36px;
      font-weight: 600;
      color: #1a1a1a;
      margin: 0;
      padding: 0;
      line-height: 1.2;
    }

    .showcase-more {
      color: #666;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
      display: inline-block;
    }

    .showcase-more:hover {
      color: #1a1a1a;
    }

    .showcase-carousel-wrapper {
      position: relative;
      height: 450px;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }

    .showcase-carousel-track {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      padding: 0;
    }

    .showcase-carousel-item {
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      will-change: transform, opacity;
    }

    .showcase-carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      margin: 0;
      padding: 0;
      pointer-events: none;
    }

    .showcase-carousel-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      margin-top: 40px;
    }

    .showcase-carousel-nav {
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border: none;
      border-radius: 50px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #333;
      transition: all 0.3s ease;
    }

    .showcase-carousel-nav:hover {
      background: rgba(255, 255, 255, 1);
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .showcase-section {
        padding: 50px 15px;
        background: url('https://blog.echodata.cc/bg51x.png') center top/cover no-repeat;
      }

      .showcase-title {
        font-size: 28px;
      }

      .showcase-carousel-wrapper {
        height: 350px;
      }

      .showcase-carousel-nav {
        width: 48px;
        height: 48px;
        font-size: 16px;
      }
    }



    /* 底部 */
    /* 独立前缀：ft-mod- 避免全局样式冲突 */
        .ft-mod-container {
            background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
            color: #ffffff;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            padding: 60px 40px 30px;
        }

        .ft-mod-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* 主内容网格 */
        .ft-mod-main {
            display: grid;
            grid-template-columns: 2fr 1.5fr 1.5fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        /* 左侧：品牌信息 */
        .ft-mod-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .ft-mod-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .ft-mod-logo img {
            height: 30px;
            border-radius: 4px;
        }

        .ft-mod-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }

        /* 中间和右侧：链接列表 */
        .ft-mod-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .ft-mod-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .ft-mod-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ft-mod-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .ft-mod-links a:hover {
            color: #ffffff;
        }

        /* 右侧：联系方式 */
        .ft-mod-contact {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .ft-mod-email {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            word-break: break-all;
        }

        .ft-mod-social {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .ft-mod-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: background 0.3s ease;
            text-decoration: none;
        }

        .ft-mod-social a:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .ft-mod-social img {
            width: 18px;
            height: 18px;
        }

        /* 底部分割线 */
        .ft-mod-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 30px 0;
        }

        /* 底部：版权和法律链接 */
        .ft-mod-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            flex-wrap: wrap;
            gap: 20px;
        }

        .ft-mod-copyright {
            order: 1;
        }

        .ft-mod-legal {
            display: flex;
            gap: 30px;
            order: 2;
        }

        .ft-mod-legal a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .ft-mod-legal a:hover {
            color: #ffffff;
        }

        /* 响应式设计 */
        @media (max-width: 1024px) {
            .ft-mod-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .ft-mod-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .ft-mod-container {
                padding: 40px 20px 20px;
            }

            .ft-mod-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .ft-mod-footer {
                flex-direction: column;
                text-align: center;
            }

            .ft-mod-copyright {
                order: 1;
                width: 100%;
            }

            .ft-mod-legal {
                order: 2;
                justify-content: center;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .ft-mod-container {
                padding: 30px 15px 15px;
            }

            .ft-mod-description {
                font-size: 13px;
            }

            .ft-mod-social {
                gap: 10px;
            }

            .ft-mod-legal {
                flex-direction: column;
                gap: 15px;
            }
        }


.bg-color-04227D {
    background-color: #04227D;
}

.cl-04227D {
    color: #04227D;
}

.title-color-04227D {
    color: #04227D;
    font-size: 36px;
    font-weight: bold;
}

/* 分类介绍区域样式 */
.category-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 4rem 5rem;
    background: #04227D;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.category-intro-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-intro-right {
    display: flex;
    align-items: flex-start;
}

.category-intro-card {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.category-intro-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.category-intro-content {
    flex: 1;
}

.category-intro-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
}

.category-intro-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.category-intro-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    min-width: 120px;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 快速导航样式 */
.category-quick-nav {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.quick-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-nav-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.4);
}

.quick-nav-item i {
    font-size: 1.125rem;
    opacity: 0.9;
}



/* 分页组件样式 */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 2rem 0;
    flex-wrap: wrap;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #04227D;
    color: white;
    border-color: #04227D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 34, 125, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn i {
    font-size: 0.875rem;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: #f3f4f6;
    border-color: #04227D;
    color: #04227D;
}

.pagination-number.active {
    background: #04227D;
    color: white;
    border-color: #04227D;
}

.pagination-ellipsis {
    color: #9ca3af;
    font-weight: 500;
    padding: 0 0.25rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .category-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2.5rem;
    }
    
    .category-intro-stats {
        justify-content: flex-start;
    }
    
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-intro {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .category-intro-card {
        flex-direction: column;
        text-align: center;
    }
    
    .category-intro-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .category-intro-title {
        font-size: 1.25rem;
    }
    
    .category-intro-desc {
        font-size: 0.875rem;
    }
    
    .category-intro-stats {
        gap: 0.75rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: calc(33.333% - 0.5rem);
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .quick-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination-btn span {
        display: none;
    }
    
    .pagination-btn {
        padding: 0.75rem;
    }
    
    .pagination-number {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}