        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #faf8f5;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.8rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #1a1a2e;
            color: #f5f0e8;
            padding: 0.8rem 0;
            border-bottom: 4px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5e6c8;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            background: linear-gradient(135deg, #b8860b, #e6c27a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            -webkit-text-fill-color: #c0b29a;
            color: #c0b29a;
            letter-spacing: 2px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b8860b;
            color: #f5e6c8;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #b8860b22;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            display: block;
            padding: 0.5rem 1rem;
            color: #d4c9b4;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
        }
        .main-nav li a:hover {
            background: #b8860b33;
            color: #f5e6c8;
            text-decoration: none;
        }
        .main-nav li a.active {
            background: #b8860b55;
            color: #fff4e0;
        }
        .breadcrumb {
            background: #f0ebe3;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6cb;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #6b5a4a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .sep {
            color: #a09585;
            margin: 0 0.2rem;
        }
        .breadcrumb .current {
            color: #3d3228;
            font-weight: 600;
        }
        main {
            padding: 2rem 0 3rem;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 0.6rem;
            line-height: 1.2;
            border-left: 6px solid #b8860b;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #2a2a3e;
            margin: 2.2rem 0 0.8rem;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid #e0d6c8;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #3d3228;
            margin: 1.6rem 0 0.6rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #4d3f32;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin: 0 0 1rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #3d3228;
            font-weight: 400;
            background: #f5f0e8;
            padding: 1.2rem 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #b8860b;
            margin-bottom: 1.8rem;
        }
        .highlight {
            background: #fcf6e8;
            padding: 0.1rem 0.3rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            background: #e8e0d6;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #5a4f42;
            background: #f5f0e8;
            font-style: italic;
        }
        .insight-box {
            background: #f0ebe3;
            border-radius: 12px;
            padding: 1.5rem 1.8rem;
            margin: 1.8rem 0;
            border-left: 6px solid #b8860b;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .insight-box h4 {
            margin-top: 0;
            color: #1a1a2e;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 10px;
            padding: 1.2rem;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e0d6;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b8860b;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #6b5a4a;
            margin-top: 0.3rem;
        }
        .interview-block {
            background: #fffdf9;
            border: 1px solid #e0d6c8;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #1a1a2e;
        }
        .interview-block .quote {
            font-style: italic;
            border-left: 4px solid #b8860b;
            padding-left: 1.2rem;
            margin: 0.6rem 0 1rem;
            color: #3d3228;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
        }
        th {
            background: #1a1a2e;
            color: #f5e6c8;
            font-weight: 600;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #f0ebe3;
        }
        tr:nth-child(even) td {
            background: #faf8f5;
        }
        tr:hover td {
            background: #f5efe6;
        }
        .search-section {
            background: #f5f0e8;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border: 1px solid #e0d6c8;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #d4c9b4;
            border-radius: 8px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #b8860b;
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #9e7209;
            transform: scale(1.02);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 700px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .card-form {
            background: #fff;
            border: 1px solid #e0d6c8;
            border-radius: 14px;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .card-form h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #1a1a2e;
            border-bottom: 2px solid #f0ebe3;
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .card-form form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            padding: 0.6rem 0.9rem;
            border: 2px solid #e0d6c8;
            border-radius: 6px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.2s;
            background: #faf8f5;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            outline: none;
            border-color: #b8860b;
        }
        .card-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card-form .star-group {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4c9b4;
            cursor: pointer;
            direction: rtl;
        }
        .card-form .star-group input {
            display: none;
        }
        .card-form .star-group label {
            transition: color 0.2s;
            color: #d4c9b4;
        }
        .card-form .star-group label:hover,
        .card-form .star-group label:hover~label,
        .card-form .star-group input:checked~label {
            color: #f5b342;
        }
        .card-form .btn-submit {
            padding: 0.7rem 1.4rem;
            background: #1a1a2e;
            color: #f5e6c8;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .card-form .btn-submit:hover {
            background: #2a2a4e;
            transform: scale(1.02);
        }
        .card-form .btn-submit i {
            margin-right: 0.5rem;
        }
        friend-link {
            display: block;
            background: #1a1a2e;
            color: #d4c9b4;
            padding: 1.2rem 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 4px solid #b8860b;
            margin-top: 2rem;
        }
        friend-link a {
            color: #e6c27a;
            margin: 0 0.8rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #f5e6c8;
            text-decoration: underline;
        }
        .site-footer {
            background: #0f0f1a;
            color: #a09585;
            padding: 1.8rem 0 1.2rem;
            font-size: 0.85rem;
            border-top: 2px solid #2a2a3e;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
        }
        .site-footer .copyright {
            color: #7a6f5f;
        }
        .site-footer .copyright strong {
            color: #c0b29a;
        }
        .site-footer .update-time {
            color: #8a7f6f;
            font-style: italic;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 0.8rem 0;
                border-top: 1px solid #2a2a3e;
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav li a {
                padding: 0.6rem 1.2rem;
                border-radius: 0;
            }
            .header-inner {
                align-items: center;
            }
            .lead {
                font-size: 1rem;
                padding: 1rem;
            }
            .interview-block {
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 0.9rem;
            }
            main {
                padding: 1.2rem 0 2rem;
            }
            .feedback-section {
                gap: 1.2rem;
            }
        }
        @media print {
            .site-header {
                position: static;
            }
            .nav-toggle,
            .search-section {
                display: none;
            }
            .site-footer {
                break-inside: avoid;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b8860b;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            border: none;
            z-index: 999;
        }
        .scroll-top:hover {
            background: #9e7209;
            transform: scale(1.08);
        }
