/* ===========================
   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;
    }
}/*通用结束*/
/* ===========================
   Home Page Styles
=========================== */

/* Hero Section */
.xxyy-hero {
    width: 100%;
    background: #f5f5f5;
    padding: 80px 0;
}

.xxyy-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.xxyy-hero-text {
    flex: 1;
}

.xxyy-hero-title {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.xxyy-hero-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.xxyy-hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #0a0a0a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: opacity .2s;
}

.xxyy-hero-btn:hover {
    opacity: .8;
}

.xxyy-hero-img {
    flex: 1;
    text-align: right;
}

.xxyy-hero-img img {
    width: 100%;
    max-width: 480px;
}

/* Product Highlights */
.xxyy-products {
    padding: 80px 0;
}

.xxyy-products-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.xxyy-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.xxyy-product-item {
    flex: 1;
    min-width: 260px;
    background: #fafafa;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    transition: transform .2s;
}

.xxyy-product-item:hover {
    transform: translateY(-4px);
}

.xxyy-product-item img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 16px;
}

.xxyy-product-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.xxyy-product-item p {
    font-size: .95rem;
    color: #666;
}

/* SaaS Section */
.xxyy-saas {
    padding: 80px 0;
    background: #f8f8f8;
}

.xxyy-saas-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.xxyy-saas-text {
    flex: 1;
}

.xxyy-saas-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.xxyy-saas-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.xxyy-saas-list {
    list-style: none;
}

.xxyy-saas-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
}

.xxyy-saas-img {
    flex: 1;
}

.xxyy-saas-img img {
    width: 100%;
    max-width: 420px;
}

/* Training Content */
.xxyy-content {
    padding: 80px 0;
}

.xxyy-content-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.xxyy-content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.xxyy-content-item {
    flex: 1;
    min-width: 260px;
    background: #fafafa;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
}

.xxyy-content-item img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 16px;
}

.xxyy-content-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.xxyy-content-item p {
    font-size: .95rem;
    color: #666;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 992px) {
    .xxyy-hero-inner,
    .xxyy-saas-inner {
        flex-direction: column;
        text-align: center;
    }

    .xxyy-hero-img,
    .xxyy-saas-img {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .xxyy-hero-title {
        font-size: 2rem;
    }

    .xxyy-products-grid,
    .xxyy-content-grid {
        flex-direction: column;
    }
}
/* ===========================
   Sports News Section
=========================== */
.xxyy-news {
    padding: 80px 0;
    background: #f9f9f9;
}

.xxyy-news-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.xxyy-news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.xxyy-news-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    transition: transform .2s;
}

.xxyy-news-item:hover {
    transform: translateY(-4px);
}

.xxyy-news-img img {
    width: 100%;
    height: auto;
    display: block;
}

.xxyy-news-content {
    padding: 20px;
}

.xxyy-news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.xxyy-news-content p {
    font-size: .95rem;
    color: #555;
    margin-bottom: 16px;
}

.xxyy-news-content a {
    display: inline-block;
    font-size: .9rem;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: bold;
    transition: opacity .2s;
}

.xxyy-news-content a:hover {
    opacity: .7;
}

/* Responsive */
@media (max-width: 992px) {
    .xxyy-news-grid {
        flex-direction: column;
    }
}
/* ===========================
   FAQ Section
=========================== */
.xxyy-faq {
    padding: 80px 0;
    background: #fff;
}

.xxyy-faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.xxyy-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.xxyy-faq-item {
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.xxyy-faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0a0a0a;
}

.xxyy-faq-item p {
    font-size: .95rem;
    color: #555;
    line-height: 1.6;
}
