﻿@charset "utf-8";

   /* ===== 页面横幅 ===== */
        .page-banner {
            background: linear-gradient(135deg, rgba(10, 47, 108, 0.82) 0%, rgba(26, 75, 140, 0.70) 100%),
                        url('../img1/a8.jpg') center / cover no-repeat;
            padding: 5rem 2rem;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            right: -80px;
            top: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(106, 176, 254, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            left: -40px;
            bottom: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(143, 203, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        .page-banner .banner-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #b3d9ff;
            background: rgba(255, 255, 255, 0.12);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: auto;
            border: 2px solid rgba(255, 255, 255, 0.25);
            text-shadow: 0 2px 10px rgba(0,0,0,0.4);
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        .page-banner h1 {
            font-size: 2.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
            margin-bottom: 0.6rem;
        }
        .page-banner p {
            font-size: 1.15rem;
            font-weight: 300;
            letter-spacing: 0.5px;
            opacity: 0.92;
            text-shadow: 0 2px 12px rgba(0,0,0,0.4);
        }
        @media (max-width: 768px) {
            .page-banner { padding: 3.5rem 1.5rem; }
            .page-banner h1 { font-size: 1.8rem; }
            .page-banner p { font-size: 0.95rem; }
        }

        /* ===== 主内容区：左菜单 + 右应用列表 ===== */
        .applications-layout {
            display: flex;
            gap: 2.5rem;
            margin: 2.8rem auto 2.5rem;
            width: 73%;
            align-items: flex-start;
        }

        /* ===== 左栏菜单 ===== */
        .sidebar-menu {
            flex: 0 0 280px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(10, 47, 108, 0.08);
            border: 1px solid #e8f0fe;
            overflow: hidden;
            position: sticky;
            top: 92px;
        }
        .sidebar-menu .menu-header {
            background: linear-gradient(135deg, #0a2f6c, #1a6bc4);
            padding: 1.5rem 1.5rem;
            color: #fff;
            text-align: center;
        }
        .sidebar-menu .menu-header h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: 0.5px;
        }
        .sidebar-menu .menu-header .menu-count {
            font-size: 0.78rem;
            opacity: 0.8;
            margin-top: 0.3rem;
            font-weight: 300;
        }
        .sidebar-menu ul {
            list-style: none;
            margin: 0;
            padding: 0.5rem 0;
        }
        .sidebar-menu ul li { margin: 0; }
        .sidebar-menu ul li a {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            padding: 0.95rem 1.5rem;
            color: #2a4a6a;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.25s ease;
            border-left: 3px solid transparent;
            position: relative;
            cursor: pointer;
        }
        .sidebar-menu ul li a .menu-num {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: #e8f2ff;
            color: #1a6bc4;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.78rem;
            font-weight: 700;
            transition: all 0.25s ease;
            flex-shrink: 0;
        }
        .sidebar-menu ul li a:hover {
            background: #f5f9fe;
            color: #08305c;
            border-left-color: #6ab0fe;
            padding-left: 1.8rem;
        }
        .sidebar-menu ul li a:hover .menu-num {
            background: #1a6bc4;
            color: #fff;
            transform: scale(1.1);
        }
        .sidebar-menu ul li a.active {
            background: linear-gradient(90deg, rgba(26, 107, 196, 0.08), rgba(26, 107, 196, 0.02));
            color: #08305c;
            font-weight: 600;
            border-left-color: #1a6bc4;
        }
        .sidebar-menu ul li a.active .menu-num {
            background: linear-gradient(135deg, #1a6bc4, #0a2f6c);
            color: #fff;
            box-shadow: 0 4px 12px rgba(26, 107, 196, 0.3);
        }

        /* ===== 右栏应用区域 ===== */
        .applications-main {
            flex: 1;
            min-width: 0;
        }
        .applications-main .category-header {
            margin-bottom: 2.2rem;
        }
        .applications-main .category-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #08305c;
            margin-bottom: 0.3rem;
        }
        .applications-main .category-header .category-desc {
            font-size: 0.95rem;
            color: #5d7a9e;
            letter-spacing: 0.3px;
            padding: 0.4rem 0 0.6rem;
        }
        .applications-main .category-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #1a6bc4, #6ab0fe);
            border-radius: 3px;
            margin-bottom: 2rem;
        }

        /* ===== 应用场景卡片（纯文字版） ===== */
        .app-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.4rem;
        }
        .app-card {
            background: #fff;
            border-radius: 16px;
            border: 1px solid #e8f0fe;
            box-shadow: 0 2px 10px rgba(10, 47, 108, 0.04);
            transition: all 0.3s ease;
            padding: 1.6rem 1.8rem;
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
        }
        .app-card:hover {
            box-shadow: 0 8px 28px rgba(10, 47, 108, 0.1);
            border-color: #6ab0fe;
        }
        .app-card .app-icon-box {
            flex: 0 0 52px;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, #e8f2ff, #d0e2ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            color: #1a6bc4;
            transition: all 0.3s ease;
            margin-top: 2px;
        }
        .app-card:hover .app-icon-box {
            background: linear-gradient(135deg, #1a6bc4, #0a2f6c);
            color: #fff;
        }
        .app-card .app-body {
            flex: 1;
            min-width: 0;
        }
        .app-card .app-body .app-title {
            font-size: 1.08rem;
            font-weight: 700;
            color: #08305c;
            margin-bottom: 0.4rem;
            line-height: 1.3;
        }
        .app-card .app-body .app-desc {
            font-size: 0.9rem;
            color: #5d7a9e;
            line-height: 1.75;
            margin-bottom: 0.6rem;
        }
        .app-card .app-body .app-details {
            font-size: 0.84rem;
            color: #6e8aa8;
            line-height: 1.7;
            margin-bottom: 0.7rem;
        }
        .app-card .app-body .app-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .app-card .app-body .app-tags span {
            font-size: 0.72rem;
            font-weight: 600;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            letter-spacing: 0.3px;
            background: #f0f6ff;
            color: #1a6bc4;
            border: 1px solid #dce6f5;
            transition: all 0.25s;
        }
        .app-card:hover .app-body .app-tags span {
            background: #1a6bc4;
            color: #fff;
            border-color: #1a6bc4;
        }

        /* 响应式 */
        @media (max-width: 900px) {
            .applications-layout { flex-direction: column; margin: 1.5rem 1rem 2rem; width: auto; }
            .sidebar-menu {
                flex: none;
                width: 100%;
                position: static;
                border-radius: 16px;
            }
            .sidebar-menu ul {
                display: flex;
                flex-wrap: wrap;
                gap: 0.3rem;
                padding: 0.8rem;
            }
            .sidebar-menu ul li a {
                padding: 0.6rem 1rem;
                font-size: 0.82rem;
                border-left: none;
                border-radius: 10px;
                background: #f5f9fe;
            }
            .sidebar-menu ul li a:hover { padding-left: 1rem; background: #e8f2ff; }
            .sidebar-menu ul li a .menu-num { display: none; }
            .sidebar-menu ul li a.active {
                background: linear-gradient(135deg, #1a6bc4, #0a2f6c);
                color: #fff;
            }
            .app-grid { gap: 1rem; }
            .app-card { padding: 1.2rem 1.2rem; }
        }
        @media (max-width: 600px) {
            .app-grid { gap: 0.8rem; }
            .app-card { border-radius: 12px; padding: 1rem 1rem; flex-direction: column; }
            .app-card .app-icon-box { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 10px; }
            .app-card .app-body .app-title { font-size: 1rem; }
            .app-card .app-body .app-desc { font-size: 0.84rem; }
            .app-card .app-body .app-details { font-size: 0.78rem; }
            .applications-main .category-header h2 { font-size: 1.4rem; }
        }