:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-y: scroll;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

body::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background-color: #eee;
    border-radius: 0px;
}
.solution-content {
    overflow-x: auto;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.solution-content::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Í·²¿ÐÎ×´ */
.transparent-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-direction: row;  /* È·±£º£º£ºáÏò·ÖÁÐ */
    justify-content: flex-end;  /* ¿¿ÓÒ¶ÔÆë */
    align-items: center;
}

.nav-menu li {
    margin: 0 5px;  /* µ÷Õû¼ä¾à */
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 10px 20px;
    transition: all 0.3s;
    border-radius: 5px;
    white-space: nowrap;  /* Ô¤·ÀÎÄ×Ö»»ÐÐ */
}

/* ÒÆ¶¯¶ËÏìÓ¦Ê½ÐÎ×´ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;  /* ÔÚÒÆ¶¯¶ËÊ±¸ÄÎª×ÝÏò·ÖÁÐ */
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-color);
}

/* Ó¢ÐÛÇøÓòÐÎ×´ */
.hero {
    height: 355px;
    background: linear-gradient(45deg, #0978fb, #705bc9);
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--white);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-buttons {
    margin-left: 50px;
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards 1s;
}

/* ÏìÓ¦Ê½µ÷Õû */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        margin-left: 0;
        margin-top: 20px;
    }
}
.cta-button {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.cta-button.primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* ¸öÐÔÇøÓòÐÎ×´ */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Í³¼ÆÊý¾ÝÇøÓòÐÎ×´ */
.stats {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.2rem;
}

/* Ò³½ÅÐÎ×´ */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ¶¯»­ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ÏìÓ¦Ê½Éè¼Æ */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        transition: 0.3s;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ÏÂÔØÖÐÐÄÐÎ×´ */
.download-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.download-icon img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.download-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

/* ÎÄµµÖÐÐÄÐÎ×´ */
.docs-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.docs-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.docs-sidebar {
    padding: 30px;
    border-right: 1px solid #eee;
}

.docs-menu {
    list-style: none;
}

.docs-menu a {
    display: block;
    padding: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.docs-menu a:hover,
.docs-menu a.active {
    color: var(--secondary-color);
}

.docs-content {
    padding: 30px;
}

/* ²¿ÊðÅäÖÃÐÎ×´ */
.deploy-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.deploy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.deploy-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.deploy-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.deploy-content {
    color: var(--text-color);
}

.deploy-content ul,
.deploy-content ol {
    margin-left: 20px;
    margin-top: 10px;
}

.deploy-content li {
    margin-bottom: 10px;
}

/* ÏìÓ¦Ê½µ÷Õû */
@media (max-width: 768px) {
    .docs-container {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

/* ½éÉÜ¿éÐÎ×´ */
.intro-blocks {
    padding: 50px 0;
    background-color: var(--white);
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.intro-block {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.intro-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.intro-block h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.intro-block p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .blocks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-header p {
    color: #666;
    font-size: 1.2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.card-header {
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .period {
    font-size: 1rem;
    color: #666;
}

.description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    color: #666;
}

.features-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.pricing-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card {
        padding: 30px;
    }
}

.platform-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.platform-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.platform-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.platform-features {
    display: grid;
    gap: 15px;
}

.platform-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.platform-feature span {
    color: #555;
}

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        padding: 30px;
    }
}
.price-solutions {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.solution-card:hover {
    transform: translateX(10px);
}

.solution-card.featured {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.solution-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.price-tag {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.price-tag span {
    font-size: 1rem;
    color: #666;
}

.solution-desc {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.solution-features i {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        padding: 30px;
    }
    
    .solution-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

tr{
    height: 32px;line-height: 32px;
}
th{
    border-top: #c3cfe2 1px solid;
    border-bottom: #c3cfe2 1px solid;
    border-right: #c3cfe2 1px solid;
    text-align: center;
    font-size: 14px;
}
td{
    border-bottom: #c3cfe2 1px solid;
    border-right: #c3cfe2 1px solid;
    text-align: center;
    font-size: 14px;
}

.a111{
    color: #fff;
}

.qrcode-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.qrcode-container img {
    width: 60%;
    max-width: 300px;
}<!--ºÄÊ±1778744169.3589Ãë-->