.pl-page { min-height: 100vh; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.pl-wrap { max-width: 1000px; margin: 0 auto; padding: 20px 24px 60px; }
body.ez-has-sidebar .pl-wrap { max-width: 100%; }

/* Toolbar (sidebar mode) */
.pl-toolbar { margin-bottom: 16px; }
.pl-toolbar-title { font-size: 16px; font-weight: 700; color: #1a1a1a; }
.pl-toolbar-sub { font-size: 12px; color: #8c8c8c; margin-top: 2px; }

/* Tabs */
.pl-tabs { display: flex; gap: 0; border-bottom: 1px solid #f0f0f0; margin-bottom: 0; background: #fff; border-radius: 8px 8px 0 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pl-tabs::-webkit-scrollbar { display: none; }
.pl-tab { padding: 12px 20px; font-size: 13px; font-weight: 600; color: #8c8c8c; cursor: pointer; border: none; background: none; border-bottom: 2px solid transparent; white-space: nowrap; transition: all .2s; display: flex; align-items: center; gap: 6px; }
.pl-tab:hover { color: #1677ff; }
.pl-tab.active { color: #1677ff; border-bottom-color: #1677ff; }
.pl-tab i { font-size: 16px; }

/* Card */
.pl-card { background: #fff; border-radius: 0 0 8px 8px; border: 1px solid #f0f0f0; border-top: none; }
.pl-card-body { padding: 24px; }

/* Content panel */
.pl-panel { display: none; }
.pl-panel.active { display: block; }

/* Section */
.pl-section { margin-bottom: 24px; }
.pl-section:last-child { margin-bottom: 0; }
.pl-section-title { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid #f5f5f5; }
.pl-section-title i { font-size: 18px; }
.pl-section-title.green i { color: #52c41a; }
.pl-section-title.red i { color: #ff4d4f; }
.pl-section-title.blue i { color: #1677ff; }
.pl-section-title.orange i { color: #fa8c16; }
.pl-section-desc { font-size: 13px; color: #8c8c8c; margin: 0 0 16px; line-height: 1.6; }

/* List */
.pl-list { list-style: none; padding: 0; margin: 0; }
.pl-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 13px; color: #333; line-height: 1.6; border-bottom: 1px solid #fafafa; }
.pl-list li:last-child { border-bottom: none; }
.pl-list li i { font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.pl-list.ok li i { color: #52c41a; }
.pl-list.warn li i { color: #ff4d4f; }
.pl-list.info li i { color: #1677ff; }
.pl-list.note li i { color: #fa8c16; }

/* Alert */
.pl-alert { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; border-radius: 6px; font-size: 13px; line-height: 1.6; margin-top: 16px; }
.pl-alert i { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.pl-alert.info { background: #e6f4ff; border: 1px solid #91caff; color: #0958d9; }
.pl-alert.info i { color: #1677ff; }
.pl-alert.warn { background: #fff7e6; border: 1px solid #ffd591; color: #ad6800; }
.pl-alert.warn i { color: #fa8c16; }

/* Bottom */
.pl-bottom { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; background: #fafafa; border-top: 1px solid #f0f0f0; border-radius: 0 0 8px 8px; flex-wrap: wrap; gap: 12px; }
.pl-bottom-text { font-size: 12px; color: #8c8c8c; }
.pl-bottom-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; background: #1677ff; color: #fff; border: none; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; transition: background .2s; }
.pl-bottom-btn:hover { background: #0958d9; }

/* Last update badge */
.pl-updated { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: #8c8c8c; background: #fafafa; border: 1px solid #f0f0f0; border-radius: 4px; padding: 2px 8px; margin-top: 16px; }
.pl-updated i { font-size: 12px; }

@media (max-width: 600px) {
    .pl-wrap { padding: 12px 12px 40px; }
    .pl-hero-inner { padding: 32px 16px 28px; }
    .pl-hero h1 { font-size: 22px; }
    .pl-card-body { padding: 16px; }
    .pl-tab { padding: 10px 14px; font-size: 12px; }
    .pl-bottom { flex-direction: column; align-items: stretch; text-align: center; }
}

