﻿.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; }        .nav li:hover ul { opacity: 1; visibility: visible; transform: translateY(0); }

        .main-layout { max-width: 1200px; margin: 0 auto; padding: 30px 40px 60px; display: flex; gap: 32px; }
        .sidebar { width: 200px; flex-shrink: 0; }
        .sidebar-menu { background: #fff; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); overflow: hidden; }
        .sidebar-menu .group-title { display: block; padding: 12px 20px; font-size: 14px; font-weight: 700; color: #1a1a2e; background: #f8f9fc; border-bottom: 1px solid #eee; cursor: pointer; position: relative; }
        .sidebar-menu .group-title::after { content: ''; position: absolute; right: 16px; top: 50%; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #999; margin-top: -3px; transition: transform .2s; }
        .sidebar-menu .group-title.open::after { transform: rotate(180deg); }
        .sidebar-menu .group-items { overflow: hidden; max-height: 0; transition: max-height .3s; }
        .sidebar-menu .group-items.open { max-height: 600px; }
        .sidebar-menu .group-items a { display: block; padding: 10px 20px 10px 32px; color: #666; text-decoration: none; font-size: 13px; border-bottom: 1px solid #f8f8f8; transition: all .15s; }
        .sidebar-menu .group-items a:hover, .sidebar-menu .group-items a.active { color: #e94560; background: #fdf2f4; }
        .sidebar-menu .group-items a:last-child { border-bottom: none; }
        .sidebar-menu .single-link { display: block; padding: 12px 20px; color: #555; text-decoration: none; font-size: 14px; font-weight: 700; border-bottom: 1px solid #eee; transition: all .15s; background: #f8f9fc; }
        .sidebar-menu .single-link:hover, .sidebar-menu .single-link.active { color: #e94560; background: #fdf2f4; }

        .content { flex: 1; min-width: 0; }
        .news-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); padding: 20px; margin-bottom: 16px; transition: transform .2s, box-shadow .2s; display: flex; gap: 24px; }
        .news-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
        .news-card .news-img { width: 200px; height: 140px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: #f0f0f0; }
        .news-card .news-img img { width: 100%; height: 100%; object-fit: cover; }
        .news-card .news-info { flex: 1; min-width: 0; }
        .news-card h3 { font-size: 18px; margin-bottom: 8px; }
        .news-card h3 a { color: #1a1a2e; text-decoration: none; }
        .news-card h3 a:hover { color: #e94560; }
        .news-card .news-date { font-size: 13px; color: #bbb; margin-bottom: 10px; }
        .news-card .news-summary { font-size: 14px; color: #777; line-height: 1.8; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
        .news-card .news-more { font-size: 13px; color: #e94560; text-decoration: none; font-weight: 500; }
        .news-card .news-more:hover { text-decoration: underline; }

        @media (max-width: 768px) {
            .main-layout { flex-direction: column; padding: 20px 16px; }
            .sidebar { width: 100%; }
            .news-card { flex-direction: column; padding: 16px; }
            .news-card .news-img { width: 100%; height: 180px; }
        }