        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background: #fefefe;
            color: #11181c;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* 导航风格 - 与首页一致 */
        .site-header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .brand-logo-img {
            width: 38px;
            height: 38px;
            object-fit: contain;
            border-radius: 8px;
            flex-shrink: 0;
        }
        .brand-name {
            font-size: 1.55rem;
            font-weight: 700;
            letter-spacing: -0.4px;
            color: #0c4e6e;
            white-space: nowrap;
        }
        .brand-name span {
            font-weight: 400;
            color: #5a7d8c;
            font-size: 0.85rem;
            letter-spacing: 0;
            margin-left: 2px;
        }
        .nav-links-new {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links-new a {
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            color: #2c3e50;
            transition: color 0.2s, transform 0.15s;
            position: relative;
            white-space: nowrap;
        }
        .nav-links-new a:hover,
        .nav-links-new a.active {
            color: #1f7b8c;
        }
        .nav-links-new a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #1f7b8c;
            border-radius: 2px;
            transition: width 0.25s ease;
        }
        .nav-links-new a:hover::after,
        .nav-links-new a.active::after {
            width: 100%;
        }
        .btn-ghost {
            border: 1px solid #cbd5e1;
            padding: 7px 20px;
            border-radius: 100px;
            background: transparent;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            color: #2c3e50;
            white-space: nowrap;
        }
        .btn-ghost:hover {
            border-color: #1f7b8c;
            color: #1f7b8c;
            background: #f0faf9;
        }

        /* 页面标题 */
        .page-hero {
            padding: 48px 0 28px;
            text-align: center;
            background: #ffffff;
        }
        .page-hero h1 {
            font-size: 2.7rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #134e6f 0%, #1e6b5e 60%, #2a7f6e 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 10px;
        }
        .page-hero .page-sub {
            color: #3e5a6c;
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* 今日网络优化建议（动态创意区块） */
        .daily-tips {
            background: linear-gradient(105deg, #f0faf8 0%, #e6f7f3 100%);
            border: 1px solid #c0dfd9;
            border-radius: 32px;
            padding: 28px 32px;
            margin: 20px 0 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
        }
        .daily-tips .date-badge {
            background: #1f7b8c;
            color: white;
            border-radius: 40px;
            padding: 6px 18px;
            font-weight: 700;
            font-size: 0.85rem;
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .daily-tips .tips-list {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            flex: 1;
        }
        .daily-tips .tip-item {
            background: white;
            border-radius: 20px;
            padding: 10px 18px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #1a3c4a;
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid #e8edf2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        .tip-emoji {
            font-size: 1.2rem;
        }

        /* 内容区卡片通用 */
        .content-card {
            background: #ffffff;
            border-radius: 28px;
            padding: 36px 32px;
            margin-bottom: 32px;
            border: 1px solid #e8eef3;
            transition: box-shadow 0.25s;
        }
        .content-card:hover {
            box-shadow: 0 8px 28px -12px rgba(0, 0, 0, 0.06);
        }
        .content-card h2 {
            font-size: 1.55rem;
            font-weight: 700;
            color: #1a3c4a;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .content-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1a3c4a;
            margin: 20px 0 8px;
        }
        .content-card p {
            font-size: 0.96rem;
            color: #3e5a6c;
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .content-card ul,
        .content-card ol {
            margin: 8px 0 16px 20px;
            color: #3e5a6c;
            font-size: 0.94rem;
            line-height: 1.7;
        }
        .content-card li {
            margin-bottom: 6px;
        }
        .content-card code {
            background: #f1f5f9;
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 0.88rem;
            color: #1a4d55;
            font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
        }
        .highlight-box {
            background: #f6faf9;
            border-left: 4px solid #1f7b8c;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 18px 0;
            font-weight: 500;
            color: #1a4d55;
            font-size: 0.93rem;
        }
        .info-table-wrap {
            overflow-x: auto;
            margin: 16px 0;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 500px;
        }
        .info-table th {
            background: #f1f5f9;
            padding: 10px 14px;
            text-align: left;
            font-weight: 700;
            color: #1a3c4a;
            border-radius: 8px 8px 0 0;
        }
        .info-table td {
            padding: 10px 14px;
            border-bottom: 1px solid #e8edf2;
            color: #3e5a6c;
        }
        .info-table tr:hover td {
            background: #fafcfd;
        }

        /* 内链卡片 */
        .crosslink-card {
            background: #f0faf8;
            border: 1px solid #c0dfd9;
            border-radius: 18px;
            padding: 16px 20px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            text-decoration: none;
            color: #1a3c4a;
            transition: all 0.25s;
            font-weight: 500;
            font-size: 0.92rem;
        }
        .crosslink-card:hover {
            background: #e6f7f3;
            border-color: #1f7b8c;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px -8px rgba(15, 110, 106, 0.18);
        }
        .crosslink-emoji {
            font-size: 1.6rem;
            flex-shrink: 0;
        }
        .crosslink-arrow {
            margin-left: auto;
            color: #1f7b8c;
            font-weight: 700;
            white-space: nowrap;
        }

        /* 页脚 - 与首页一致 */
        .footer-alt {
            background: #f1f5f9;
            border-top: none;
            padding: 44px 0 32px;
            font-size: 0.9rem;
            color: #5c7380;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        .footer-col h5 {
            font-weight: 700;
            color: #1a3c4a;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        .footer-col a {
            display: block;
            color: #5c7380;
            text-decoration: none;
            margin-bottom: 6px;
            transition: color 0.2s;
            font-size: 0.88rem;
        }
        .footer-col a:hover {
            color: #1f7b8c;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 28px;
            padding-top: 20px;
            border-top: 1px solid #dde4ea;
            font-size: 0.82rem;
            color: #8a9ba7;
        }

        @media (max-width: 780px) {
            .container {
                padding: 0 20px;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            .content-card {
                padding: 24px 18px;
                border-radius: 22px;
            }
            .daily-tips {
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                border-radius: 24px;
            }
            .daily-tips .tips-list {
                flex-direction: column;
                width: 100%;
            }
            .nav-links-new {
                gap: 12px;
            }
            .nav-links-new a {
                font-size: 0.85rem;
            }
            .brand-name {
                font-size: 1.3rem;
            }
            .brand-name span {
                display: none;
            }
            .crosslink-card {
                font-size: 0.85rem;
                padding: 12px 14px;
            }
        }
        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 1.7rem;
            }
            .content-card {
                padding: 18px 14px;
                border-radius: 18px;
            }
            .header-flex {
                gap: 10px;
            }
            .content-card h2 {
                font-size: 1.2rem;
            }
            .content-card p {
                font-size: 0.88rem;
            }
        }