/* ===========================
   Global Reset
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #fff;
    color: #333;
    line-height: 1.6;
}

/* ===========================
   Layout Container
=========================== */
.xxyy-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===========================
   Header
=========================== */
.xxyy-header {
    width: 100%;
    background: #0a0a0a;
    color: #fff;
    border-bottom: 1px solid #222;
}

.xxyy-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.xxyy-logo {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.xxyy-nav {
    display: flex;
    gap: 24px;
}

.xxyy-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity .2s;
}

.xxyy-nav a:hover {
    opacity: .7;
}

/* Mobile Menu Button */
.xxyy-menu-btn {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
}

/* ===========================
   Footer
=========================== */
.xxyy-footer {
    background: #111;
    color: #ccc;
    padding: 40px 0;
    margin-top: 60px;
}

.xxyy-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.xxyy-footer-col {
    flex: 1;
    min-width: 200px;
}

.xxyy-footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #fff;
}

.xxyy-footer-col ul {
    list-style: none;
}

.xxyy-footer-col ul li {
    margin-bottom: 10px;
}

.xxyy-footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: opacity .2s;
}

.xxyy-footer-col ul li a:hover {
    opacity: .7;
}

.xxyy-footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: .9rem;
    color: #aaa;
}

/* ===========================
   Responsive Design
=========================== */

/* Tablet */
@media (max-width: 992px) {
    .xxyy-nav {
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .xxyy-menu-btn {
        display: block;
    }

    .xxyy-nav {
        display: none;
        flex-direction: column;
        background: #0a0a0a;
        padding: 20px;
        gap: 16px;
    }

    .xxyy-nav.xxyy-show {
        display: flex;
    }
}/*通用结束*/
/* ===========================
   Breadcrumb
=========================== */
.xxyy-breadcrumb {
    font-size: .95rem;
    margin-bottom: 30px;
    color: #666;
}

.xxyy-breadcrumb a {
    color: #0a0a0a;
    text-decoration: none;
    transition: opacity .2s;
}

.xxyy-breadcrumb a:hover {
    opacity: .7;
}

.xxyy-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* ===========================
   Article Page
=========================== */
.xxyy-article-page {
    padding: 60px 0 80px;
    background: #f9f9f9;
}

.xxyy-article-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.xxyy-article-meta {
    font-size: .9rem;
    color: #888;
    margin-bottom: 30px;
}

.xxyy-article-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

.xxyy-article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

/* ===========================
   Comments
=========================== */
.xxyy-comments {
    margin-top: 50px;
}

.xxyy-comments h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.xxyy-comment {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.xxyy-comment strong {
    color: #0a0a0a;
    display: block;
    margin-bottom: 6px;
}

.xxyy-comment p {
    font-size: .95rem;
    color: #555;
}

/* ===========================
   Prev/Next Navigation
=========================== */
.xxyy-article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.xxyy-article-nav a {
    color: #0a0a0a;
    text-decoration: none;
    font-size: .95rem;
    transition: opacity .2s;
}

.xxyy-article-nav a:hover {
    opacity: .7;
}
