/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo h1 {
    font-size: 20px;
    color: #2c3e50;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.main-nav a:hover {
    color: #3498db;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.main-image {
    max-width: 80%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-image {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: float 4s ease-in-out infinite;
    opacity: 0.8;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.float-image.speed {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.float-image.security {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
    transform: rotate(15deg);
}

.float-image.global {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
    transform: rotate(-10deg);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.version-info {
    margin-bottom: 30px;
    font-size: 16px;
}

.version-info span {
    margin: 0 15px;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin: 0 10px;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
}

.btn-secondary {
    background-color: #2ecc71;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 功能特点区域 */
.features {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(44, 62, 80, 0.05));
    z-index: 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.features-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.features-row:last-child {
    margin-bottom: 0;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: calc(33.333% - 14px);
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.feature-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.feature-details {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.feature-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.feature-details li:before {
    content: "✓";
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 优势区域 */
.advantages {
    padding: 100px 0;
    background: white;
    position: relative;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(44, 62, 80, 0.05));
    z-index: 0;
}

.advantages-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.advantages-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.advantages-row:last-child {
    margin-bottom: 0;
}

.advantage-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: calc(33.333% - 14px);
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.advantage-item:hover::before {
    opacity: 1;
}

.advantage-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.advantage-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.advantage-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.advantage-details {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.advantage-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.advantage-details li:before {
    content: "✓";
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 使用指南区域 */
.guide {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(44, 62, 80, 0.05));
    z-index: 0;
}

.guide-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.guide-row:last-child {
    margin-bottom: 0;
}

.guide-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: calc(33.333% - 14px);
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.guide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.guide-item:hover::before {
    opacity: 1;
}

.guide-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.guide-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.guide-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.guide-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.guide-details {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.guide-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.guide-details li:before {
    content: "→";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ区域 */
.faq {
    padding: 100px 0;
    background: white;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(44, 62, 80, 0.05));
    z-index: 0;
}

.faq-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.faq-row:last-child {
    margin-bottom: 0;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: calc(33.333% - 14px);
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.faq-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.faq-details {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.faq-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.faq-details li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 联系我们区域 */
.contact {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(44, 62, 80, 0.05));
    z-index: 0;
}

.contact-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: calc(33.333% - 14px);
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.contact-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.contact-details {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.contact-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.contact-details li:before {
    content: "→";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 页脚 */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

/* 页脚友情链接样式 */
.footer-links {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links h3,
.footer-links .flink_title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: white;
}

.footer-links .links-container {
    max-width: 100%;
    padding: 0;
}

.footer-links .links-container ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.footer-links .links-container li {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-links .links-container li:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.footer-links .links-container a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links .links-container a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

@media (max-width: 768px) {
    .footer-links .links-container ul {
        gap: 10px;
    }

    .footer-links .links-container li {
        padding: 6px 12px;
    }

    .footer-links .links-container a {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .footer-links {
        margin: 30px 0;
        padding: 20px 0;
    }

    .footer-links h3,
    .footer-links .flink_title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links .links-container ul {
        gap: 8px;
    }

    .footer-links .links-container li {
        padding: 5px 10px;
    }
}

/* 响应式设计优化 */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }

    .hero-content h2 {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        min-height: 300px;
    }

    .main-image {
        max-width: 60%;
    }

    .features-row,
    .advantages-row,
    .guide-row,
    .faq-row,
    .contact-row,
    .download-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .feature-item,
    .advantage-item,
    .guide-item,
    .faq-item,
    .contact-item,
    .download-item {
        width: calc(50% - 8px);
        margin-bottom: 15px;
    }

    .version-info {
        justify-content: center;
    }

    .download-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }

    .header .container {
        height: 50px;
        padding: 0 15px;
        position: relative;
    }

    .logo h1 {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
        width: 24px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #2c3e50;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .menu-toggle span:nth-child(1) {
        top: 0;
    }

    .menu-toggle span:nth-child(2) {
        top: 9px;
    }

    .menu-toggle span:nth-child(3) {
        top: 18px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .main-nav {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 10px 0;
        margin: 0;
    }

    .main-nav li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        font-size: 14px;
        padding: 12px 20px;
        color: #2c3e50;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .main-nav a:hover {
        background-color: #f8f9fa;
    }

    /* 调整hero区域的上边距 */
    .hero {
        padding-top: 80px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .version-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .version-info span {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn {
        margin: 5px 0;
        width: 100%;
        max-width: 280px;
    }

    .hero-image {
        min-height: 200px;
    }

    .main-image {
        max-width: 70%;
    }

    .features-row,
    .advantages-row,
    .guide-row,
    .faq-row,
    .contact-row,
    .download-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .feature-item,
    .advantage-item,
    .guide-item,
    .faq-item,
    .contact-item,
    .download-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .feature-item,
    .advantage-item,
    .guide-item,
    .faq-item,
    .contact-item,
    .download-item {
        padding: 20px;
    }

    .feature-icon,
    .advantage-icon,
    .guide-icon,
    .faq-icon,
    .contact-icon,
    .download-icon {
        font-size: 28px;
    }

    .feature-item h3,
    .advantage-item h3,
    .guide-item h3,
    .faq-item h3,
    .contact-item h3,
    .download-item h3 {
        font-size: 16px;
    }

    .feature-item p,
    .advantage-item p,
    .guide-item p,
    .faq-item p,
    .contact-item p,
    .download-item p {
        font-size: 13px;
    }

    .feature-details li,
    .advantage-details li,
    .guide-details li,
    .faq-details li,
    .contact-details li,
    .download-details li {
        font-size: 13px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .header .container {
        height: 45px;
    }

    .logo h1 {
        font-size: 16px;
    }

    .main-nav {
        top: 45px;
    }

    .main-nav li {
        padding: 6px 15px;
    }

    .main-nav a {
        font-size: 13px;
        padding: 10px 15px;
    }

    .menu-toggle {
        width: 20px;
        height: 16px;
    }

    .menu-toggle span:nth-child(2) {
        top: 7px;
    }

    .menu-toggle span:nth-child(3) {
        top: 14px;
    }

    .menu-toggle.active span:nth-child(1) {
        top: 7px;
    }

    .menu-toggle.active span:nth-child(3) {
        top: 7px;
    }
}

/* 确保PC端菜单按钮隐藏 */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: block !important;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
}

/* 添加平滑滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 优化移动端触摸体验 */
@media (hover: none) {
    .feature-item:hover,
    .advantage-item:hover,
    .guide-item:hover,
    .faq-item:hover,
    .contact-item:hover,
    .download-item:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.98);
    }
}

/* 优化高分辨率屏幕显示 */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-content h2 {
        font-size: 54px;
    }

    .section-title {
        font-size: 40px;
    }

    .feature-item,
    .advantage-item,
    .guide-item,
    .faq-item,
    .contact-item,
    .download-item {
        padding: 30px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item,
.step,
.faq-item {
    animation: fadeIn 0.5s ease-out forwards;
}

/* 下载区域 */
.download {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(44, 62, 80, 0.05));
    z-index: 0;
}

.download-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.download-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.download-row:last-child {
    margin-bottom: 0;
}

.download-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: calc(33.333% - 14px);
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.download-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.download-item:hover::before {
    opacity: 1;
}

.download-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.download-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.download-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.download-details {
    list-style: none;
    margin: 15px 0;
    text-align: left;
}

.download-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.download-details li:before {
    content: "✓";
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.download-item .btn {
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 992px) {
    .download-row {
        flex-wrap: wrap;
    }
    
    .download-item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .download-row {
        flex-direction: column;
        align-items: center;
    }

    .download-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
}

/* 友情链接区域 */
.related-sites {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.links-container ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.links-container li {
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.links-container li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.links-container a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.links-container a:hover {
    color: #3498db;
}

@media (max-width: 768px) {
    .links-container ul {
        gap: 15px;
    }

    .links-container li {
        padding: 8px 15px;
    }

    .links-container a {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .related-sites {
        padding: 40px 0;
    }

    .links-container {
        padding: 15px;
    }

    .links-container ul {
        gap: 10px;
    }

    .links-container li {
        padding: 6px 12px;
    }
}

/* ========== 365JZ 导航与内页扩展 ========== */
.logo-link {
    color: inherit;
    text-decoration: none;
}

.logo-link:hover {
    color: #3498db;
}

.z41753nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav-ul {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 16px;
    row-gap: 4px;
}

.main-nav .z41753nav-item.z41753this > a,
.main-nav .z41753nav-item.z41753this a,
.z41753nav-item.z41753this > a {
    color: #3498db;
}

.nav-megamenu-wrap {
    border-top: 1px solid #eef2f5;
    background: #fbfcfd;
}

.z41753nav-megamenu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 10px 0;
    align-items: flex-start;
}

.z41753nav-megamenu > .z41753nav-item {
    position: relative;
}

.z41753nav-child {
    margin: 8px 0 0;
    padding: 8px 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 160px;
}

.z41753nav-child dd {
    margin: 0;
}

.z41753nav-child a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 13px;
    display: block;
    padding: 4px 0;
}

.z41753nav-child a:hover {
    color: #3498db;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 首页横幅幻灯条 */
.home-slide-strip {
    background: #f8f9fa;
    border-bottom: 1px solid #eef2f5;
}

.home-slide-inner {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 12px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.home-slide-inner:empty {
    display: none;
}

.home-slide-cell {
    flex: 0 0 220px;
    height: 100px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.home-slide-cell a {
    display: block;
    width: 100%;
    height: 100%;
}

/* 首页资讯网格：大屏每行 5 条，两行 */
.home-articles {
    padding: 80px 0;
    background: #fff;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin: -40px auto 36px;
    max-width: 720px;
    font-size: 15px;
}

.home-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.home-article-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.home-article-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.home-article-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef2f5;
}

.home-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-article-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.home-article-title {
    font-size: 15px;
    line-height: 1.35;
    color: #2c3e50;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-article-desc {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-article-meta {
    font-size: 12px;
    color: #888;
    margin-top: auto;
}

.home-article-type {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(52, 152, 219, 0.12);
    color: #2980b9;
}

/* 内页顶区 */
.sub-hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #fff;
    padding: 100px 0 36px;
    margin-top: 60px;
}

.sub-hero-compact {
    padding-top: 88px;
    padding-bottom: 28px;
}

.sub-hero-slide {
    margin-bottom: 12px;
}

.sub-hero-title {
    font-size: 28px;
    margin: 8px 0;
    line-height: 1.3;
}

.sub-hero-meta {
    opacity: 0.92;
    font-size: 14px;
}

.breadcrumb {
    font-size: 13px;
    opacity: 0.9;
}

.breadcrumb a {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb .sep {
    margin: 0 6px;
    opacity: 0.7;
}

.breadcrumb .current {
    font-weight: 600;
}

.page-main {
    padding: 40px 0 70px;
    background: #f8f9fa;
}

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.page-content {
    min-width: 0;
}

.page-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-inner {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-panel-title {
    font-size: 16px;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eef2f5;
}

.sidebar-panel-title a {
    color: #2c3e50;
    text-decoration: none;
}

.sidebar-panel-title a:hover {
    color: #3498db;
}

.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-article-link {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
}

.sidebar-thumb {
    flex: 0 0 96px;
    width: 96px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: #eef2f5;
}

.sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-line-title {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-line-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-site-link {
    text-align: center;
    font-size: 13px;
}

.sidebar-site-link a {
    color: #3498db;
    text-decoration: none;
}

/* 文章页 */
.article-single {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 22px 22px 28px;
}

.article-lead-pic {
    margin: 0 0 18px;
    border-radius: 10px;
    overflow: hidden;
    background: #eef2f5;
}

.article-lead-pic img {
    width: 100%;
    display: block;
    max-height: 420px;
    object-fit: cover;
}

.typography {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}

.typography img {
    max-width: 100%;
    height: auto;
}

.article-gallery figure {
    margin: 12px 0;
}

.z41753meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
}

.z41753tagitem a {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef6fc;
    color: #2980b9;
    text-decoration: none;
    font-size: 13px;
}

.article-prenext {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #eef2f5;
    font-size: 14px;
}

.article-prenext a {
    color: #3498db;
    text-decoration: none;
}

.related-like {
    margin-top: 28px;
    background: #fff;
    border-radius: 12px;
    padding: 18px 18px 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.block-title {
    font-size: 18px;
    margin: 0 0 14px;
    color: #2c3e50;
}

.related-like-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-like-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.related-like-thumb {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #eef2f5;
}

.related-like-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-like-title {
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 4px;
}

.related-like-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.45;
}

.related-sql-sample {
    margin-top: 22px;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.related-sql-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.related-sql-list a {
    color: #2c3e50;
    text-decoration: none;
}

.related-sql-list a:hover {
    color: #3498db;
}

/* 列表页 */
.list-article-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.list-article-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    align-items: start;
}

.list-article-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.list-article-channel {
    font-size: 13px;
    margin: 0 0 6px;
}

.list-article-channel a {
    color: #3498db;
    text-decoration: none;
}

.list-article-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.list-article-title:hover {
    color: #3498db;
}

.list-article-intro {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 10px;
}

.list-article-info {
    font-size: 13px;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 0;
}

.list-pagebar {
    margin-top: 22px;
}

.pagination-split .pagelist-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 12px 14px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.channel-loop-sample {
    margin-top: 28px;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.channel-loop-head {
    margin-bottom: 12px;
}

.channel-loop-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    font-size: 13px;
    margin-bottom: 8px;
}

.channel-loop-tabs a {
    color: #3498db;
    text-decoration: none;
}

.channel-loop-more {
    margin-left: auto;
    font-weight: 600;
}

.channel-loop-head h4 {
    margin: 0;
    font-size: 17px;
}

.channel-loop-head h4 a {
    color: #2c3e50;
    text-decoration: none;
}

.channel-loop-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.channel-loop-item a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px;
}

.channel-loop-thumb img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.channel-loop-t {
    font-weight: 600;
    font-size: 14px;
    color: #2c3e50;
    display: block;
    margin-bottom: 4px;
}

.channel-loop-d {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.footer-city {
    margin: 10px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    font-size: 13px;
}

.footer-city-label {
    opacity: 0.85;
}

.footer-city-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.footer-city-list a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.footer-city-list a:hover {
    color: #3498db;
}

@media (max-width: 1100px) {
    .home-articles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
        order: 2;
    }

    .page-content {
        order: 1;
    }

    .list-article-card {
        grid-template-columns: 1fr;
    }

    .list-article-thumb {
        max-width: 360px;
    }

    .channel-loop-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-megamenu-wrap {
        display: none;
    }

    .home-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .sub-hero-title {
        font-size: 22px;
    }

    .article-prenext {
        gap: 8px;
    }

    .related-like-link {
        flex-direction: column;
    }

    .related-like-thumb {
        width: 100%;
        height: auto;
        max-height: 200px;
    }

    .main-nav.active {
        max-height: calc(100vh - 50px);
        overflow-y: auto;
    }

    .pagination-split .pagelist-flex {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .home-articles {
        padding: 56px 0;
    }

    .home-articles-grid {
        grid-template-columns: 1fr;
    }

    .home-slide-cell {
        flex-basis: 78%;
    }

    .sidebar-thumb {
        flex-basis: 80px;
        width: 80px;
        height: 60px;
    }
}

@media (min-width: 769px) {
    .main-nav-ul {
        justify-content: flex-end;
    }
} 