@font-face {
    font-family: 'ali';
    src: url('/fonts/AlibabaPuHuiTi-2-45-Light.woff2') format('woff2'),
         url('/fonts/AlibabaPuHuiTi-2-45-Light.woff') format('woff');
    font-style: normal;
    font-display: swap; 
  }
@font-face {
    font-family: 'ali115';
    src: url('/fonts/AlibabaPuHuiTi-2-115-Black.woff2') format('woff2'),
         url('/fonts/AlibabaPuHuiTi-2-115-Black.woff') format('woff');
    font-style: normal;
    font-display: swap; 
  }
@font-face {
    font-family: 'ali95';
    src: url('/fonts/AlibabaPuHuiTi-2-95-ExtraBold.woff2') format('woff2'),
         url('/fonts/AlibabaPuHuiTi-2-95-ExtraBold.woff') format('woff');
    font-style: normal;
    font-display: swap; 
  }

  :root {
    --jlzx-primary: #00C6A0;
    --jlzx-primary-light: #E6F9F5;
    --jlzx-primary-dark: #00A085;
    --jlzx-dark: #2D2D2D;
    --jlzx-gray-mid: #8C8C8C;
    --jlzx-gray-light: #EDEDE9;
    /* 外层背景改为 #eeeff1 */
    --jlzx-bg: #eeeff1;
    --jlzx-white: #FFFFFF;
    --jlzx-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --jlzx-shadow-md: 0 2px 8px rgba(0,0,0,0.08);
    --jlzx-radius: 8px;
    --jlzx-radius-lg: 12px;
    --jlzx-max-width: 1230px;
    --jlzx-transition: 0.2s ease;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'ali45'; background: var(--jlzx-bg); color: var(--jlzx-dark); line-height:1.6; -webkit-font-smoothing: antialiased; }

/* ========== 内容区主容器，内背景白色 ========== */
.jlzx-info-main { max-width: var(--jlzx-max-width); margin: 0 auto; padding: 24px 16px; background: var(--jlzx-white); border-radius: 0; }

/* ========== 第一行 ========== */
.jlzx-header-row { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; }
.jlzx-category-scroll { flex: 1; overflow-x: auto; white-space: nowrap; display: flex; gap: 12px; padding-bottom: 4px; }
.jlzx-category-scroll::-webkit-scrollbar { height: 4px; }
.jlzx-category-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
.jlzx-cat-item { display: inline-flex; align-items: center; justify-content: center; padding: 9px 18px; background: var(--jlzx-white); border: 1px solid var(--jlzx-gray-light); border-radius: 20px; cursor: pointer; white-space: nowrap; font-size: 14px; color: var(--jlzx-dark); transition: var(--jlzx-transition); text-decoration: none; }
.jlzx-cat-item:hover, .jlzx-cat-item.active { background: var(--jlzx-primary); color: #fff; border-color: var(--jlzx-primary); }
.jlzx-cat-add { border-style: dashed; color: var(--jlzx-gray-mid); font-size: 16px; padding: 9px 12px; }
.jlzx-search-box { display: flex; align-items: center; background: var(--jlzx-white); border: 1px solid var(--jlzx-gray-light); border-radius: 24px; padding: 4px 4px 4px 16px; flex-shrink: 0; width: 280px; }
.jlzx-search-box:focus-within { border-color: var(--jlzx-primary); box-shadow: 0 0 0 3px rgba(0,198,160,0.1); }
.jlzx-search-input { border: none; outline: none; background: transparent; flex:1; font-size:14px; }
.jlzx-search-input::placeholder { color: #B0B0B0; }
.jlzx-search-btn { background: var(--jlzx-primary); color: #fff; border: none; padding: 8px 20px; border-radius: 20px; cursor: pointer; font-size:13px; white-space: nowrap; }

/* ========== 第二行 ========== */
.jlzx-row2 { display: flex; gap: 24px; margin-bottom: 32px; }
.jlzx-hot-panel { flex: 1; min-width: 0; }
.jlzx-notice-panel { width: 320px; flex-shrink: 0; }
.jlzx-hot-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.jlzx-hot-title-group { display: flex; align-items: center; gap: 16px; }
.jlzx-hot-title { font-size: 20px; font-weight: 700; color: var(--jlzx-dark); border-bottom: 2px solid var(--jlzx-primary); padding-bottom: 4px; cursor: pointer; }
.jlzx-daren-link { font-size: 13px; color: var(--jlzx-primary); cursor: pointer; padding: 4px 12px; background: var(--jlzx-primary-light); border-radius: 12px; text-decoration: none; white-space: nowrap; }
.jlzx-daren-link.active { background: var(--jlzx-primary); color: #fff; }
.jlzx-more-link { font-size: 14px; color: var(--jlzx-primary); cursor: pointer; text-decoration: none; white-space: nowrap; }

.jlzx-hot-carousel { position: relative; overflow: hidden; margin-bottom: 8px; }
.jlzx-hot-track { display: flex; transition: transform 0.4s ease; }
.jlzx-hot-card { flex: 0 0 calc(25% - 6px); background: var(--jlzx-white); border: 1px solid var(--jlzx-gray-light); border-radius: var(--jlzx-radius-lg); padding: 0; margin-right: 8px; text-decoration: none; color: inherit; overflow: hidden; cursor: pointer; transition: var(--jlzx-transition); }
.jlzx-hot-card:hover { border-color: var(--jlzx-primary); box-shadow: var(--jlzx-shadow-md); }
.jlzx-hot-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.jlzx-hot-card-body { padding: 10px; }
.jlzx-hot-card-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--jlzx-dark); }
.jlzx-hot-card-meta { font-size: 12px; color: var(--jlzx-gray-mid); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.jlzx-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: rgba(255,255,255,0.9); border: 1px solid var(--jlzx-gray-light); border-radius: 50%; cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--jlzx-dark); transition: var(--jlzx-transition); }
.jlzx-carousel-btn:hover { background: var(--jlzx-primary); color: #fff; border-color: var(--jlzx-primary); }
.jlzx-carousel-btn.prev { left: 8px; }
.jlzx-carousel-btn.next { right: 8px; }

/* 达人卡片 */
.jlzx-daren-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.jlzx-daren-card { background: var(--jlzx-white); border: 1px solid var(--jlzx-gray-light); border-radius: var(--jlzx-radius-lg); padding: 16px; text-align: center; }
.jlzx-daren-card img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 8px; }
.jlzx-daren-card .name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.jlzx-daren-card .meta { font-size: 12px; color: var(--jlzx-gray-mid); display: flex; flex-direction: column; gap: 2px; }

/* 公告栏 */
.jlzx-notice-panel { background: var(--jlzx-white); border: 1px solid var(--jlzx-gray-light); border-radius: var(--jlzx-radius-lg); padding: 20px; display: flex; flex-direction: column; }
.jlzx-notice-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.jlzx-notice-switch { display: flex; gap: 4px; }
.jlzx-notice-switch button { background: #f0f0ed; border: none; padding: 4px 10px; border-radius: 12px; font-size: 12px; cursor: pointer; color: var(--jlzx-gray-mid); }
.jlzx-notice-switch button.active { background: var(--jlzx-primary); color: #fff; }
.jlzx-notice-list { flex: 1; overflow: hidden; position: relative; min-height: 180px; }
.jlzx-notice-item { padding: 10px 0; border-bottom: 1px solid var(--jlzx-gray-light); cursor: pointer; display: block; text-decoration: none; color: var(--jlzx-dark); }
.jlzx-notice-item:last-child { border-bottom: none; }
.jlzx-notice-item h4 { font-size: 14px; font-weight: 500; }
.jlzx-notice-item p { font-size: 12px; color: var(--jlzx-gray-mid); margin-top: 4px; }
.jlzx-write-btn { display: block; width: 100%; padding: 10px; background: var(--jlzx-primary); color: #fff; border: none; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; margin-top: 12px; text-align: center; text-decoration: none; }

/* ========== 第三行 ========== */
.jlzx-row3 { display: flex; gap: 24px; }
.jlzx-all-articles { flex: 1; min-width: 0; }
.jlzx-sidebar-v2 { width: 320px; flex-shrink: 0; }
.jlzx-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.jlzx-section-title { font-size: 20px; font-weight: 700; padding-left: 14px; border-left: 4px solid var(--jlzx-primary); }
.jlzx-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.jlzx-article-card-2 { background: var(--jlzx-white); border: 1px solid var(--jlzx-gray-light); border-radius: var(--jlzx-radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: var(--jlzx-transition); }
.jlzx-article-card-2:hover { border-color: var(--jlzx-primary); box-shadow: var(--jlzx-shadow-md); }
.jlzx-article-card-2 img { width: 100%; height: 160px; object-fit: cover; }
.jlzx-article-card-2 .jlzx-card-content { padding: 12px; }
.jlzx-article-card-2 h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.jlzx-article-card-2 .jlzx-meta-row { font-size: 12px; color: var(--jlzx-gray-mid); display: flex; flex-wrap: wrap; gap: 10px; }

/* 分页 */
.jlzx-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 16px; list-style: none; padding: 0; }
.jlzx-pagination a,
.jlzx-pagination span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--jlzx-gray-light); border-radius: var(--jlzx-radius); background: var(--jlzx-white); cursor: pointer; font-size: 14px; color: var(--jlzx-dark); transition: var(--jlzx-transition); text-decoration: none; }
.jlzx-pagination a:hover { border-color: var(--jlzx-primary); color: var(--jlzx-primary); }
.jlzx-pagination .active span,
.jlzx-pagination .active a { background: var(--jlzx-primary); color: #fff; border-color: var(--jlzx-primary); }

/* 侧边栏 */
.jlzx-sidebar-card { background: var(--jlzx-white); border: 1px solid var(--jlzx-gray-light); border-radius: var(--jlzx-radius-lg); padding: 20px; margin-bottom: 16px; }
.jlzx-sidebar-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--jlzx-primary); }
.jlzx-ad-carousel { position: relative; border-radius: 8px; overflow: hidden; margin-bottom: 8px; }
.jlzx-ad-carousel img { width: 100%; height: auto; display: block; }
.jlzx-ad-dots { display: flex; justify-content: center; gap: 6px; margin-bottom: 12px; }
.jlzx-ad-dot { width: 8px; height: 8px; border-radius: 50%; background: #ccc; cursor: pointer; }
.jlzx-ad-dot.active { background: var(--jlzx-primary); }
.jlzx-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.jlzx-tag-item { padding: 4px 12px; background: #FAFAF7; border: 1px solid var(--jlzx-gray-light); border-radius: 16px; font-size: 12px; color: var(--jlzx-dark); cursor: pointer; text-decoration: none; }
.jlzx-tag-item:hover { background: var(--jlzx-primary-light); border-color: var(--jlzx-primary); color: var(--jlzx-primary); }
.jlzx-rank-list { list-style: none; }
.jlzx-rank-list li { padding: 8px 0; border-bottom: 1px solid var(--jlzx-gray-light); display: flex; align-items: center; gap: 8px; font-size: 14px; }
.jlzx-rank-list li a { text-decoration: none; color: var(--jlzx-dark); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.jlzx-rank-list li a:hover { color: var(--jlzx-primary); }
.jlzx-rank-num { width: 20px; height: 20px; border-radius: 4px; background: #eee; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.jlzx-rank-num.top1 { background: #FF4D4F; }
.jlzx-rank-num.top2 { background: #FF8C42; }
.jlzx-rank-num.top3 { background: #FFB84D; }
.jlzx-hot-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--jlzx-gray-light); text-decoration: none; color: var(--jlzx-dark); font-size: 14px; }
.jlzx-hot-item:last-child { border-bottom: none; }
.jlzx-hot-item:hover { color: var(--jlzx-primary); }

/* 移动端 */
@media (max-width: 1024px) {
    .jlzx-row2, .jlzx-row3 { flex-direction: column; }
    .jlzx-notice-panel, .jlzx-sidebar-v2 { width: 100%; }
    .jlzx-hot-card { flex: 0 0 calc(50% - 4px); }
    .jlzx-article-grid { grid-template-columns: repeat(2, 1fr); }
    .jlzx-daren-grid { grid-template-columns: repeat(2, 1fr); }
    .jlzx-search-box { width: 200px; }
}
@media (max-width: 768px) {
    .jlzx-header-row { flex-direction: column; gap: 12px; }
    .jlzx-search-box { width: 100%; }
    .jlzx-category-scroll { width: 100%; }
    .jlzx-hot-card { flex: 0 0 100%; margin-right: 0; }
    .jlzx-article-grid { grid-template-columns: 1fr; }
    .jlzx-daren-grid { grid-template-columns: 1fr 1fr; }
    .jlzx-carousel-btn { display: none; }
}