/* 重置默认样式 */
* {
    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;
}

/* 容器 */
.z12c44container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.z12c44header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .z12c44container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.z12c44logo h1 {
    font-size: 20px;
    color: #2c3e50;
}

.z12c44main-nav ul {
    display: flex;
    list-style: none;
}

.z12c44main-nav li {
    margin-left: 30px;
}

.z12c44main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.z12c44main-nav a:hover {
    color: #3498db;
}

/* 英雄区域 */
.z12c44hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.z12c44hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.z12c44hero-text {
    flex: 1;
    max-width: 600px;
}

.z12c44hero-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.z12c44main-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));
}

.z12c44floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.z12c44float-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));
}

.z12c44float-image.speed {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.z12c44float-image.security {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
    transform: rotate(15deg);
}

.z12c44float-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);
    }
}

.z12c44hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.z12c44hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.z12c44version-info {
    margin-bottom: 30px;
    font-size: 16px;
}

.z12c44version-info span {
    margin: 0 15px;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* 按钮样式 */
.z12c44btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin: 0 10px;
}

.z12c44btn-primary {
    background-color: #e74c3c;
    color: white;
}

.z12c44btn-secondary {
    background-color: #2ecc71;
    color: white;
}

.z12c44btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 功能特点区域 */
.z12c44features {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.z12c44features::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;
}

.z12c44section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.z12c44features-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.z12c44features-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.z12c44features-row:last-child {
    margin-bottom: 0;
}

.z12c44feature-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;
}

.z12c44feature-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;
}

.z12c44feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z12c44feature-item:hover::before {
    opacity: 1;
}

.z12c44feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.z12c44feature-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.z12c44feature-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.z12c44feature-details {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.z12c44feature-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.z12c44feature-details li:before {
    content: "✓";
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 优势区域 */
.z12c44advantages {
    padding: 100px 0;
    background: white;
    position: relative;
}

.z12c44advantages::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;
}

.z12c44advantages-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.z12c44advantages-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.z12c44advantages-row:last-child {
    margin-bottom: 0;
}

.z12c44advantage-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;
}

.z12c44advantage-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;
}

.z12c44advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z12c44advantage-item:hover::before {
    opacity: 1;
}

.z12c44advantage-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.z12c44advantage-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.z12c44advantage-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.z12c44advantage-details {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.z12c44advantage-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.z12c44advantage-details li:before {
    content: "✓";
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 使用指南区域 */
.z12c44guide {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.z12c44guide::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;
}

.z12c44guide-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.z12c44guide-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.z12c44guide-row:last-child {
    margin-bottom: 0;
}

.z12c44guide-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;
}

.z12c44guide-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;
}

.z12c44guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z12c44guide-item:hover::before {
    opacity: 1;
}

.z12c44guide-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.z12c44guide-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;
}

.z12c44guide-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.z12c44guide-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.z12c44guide-details {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.z12c44guide-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.z12c44guide-details li:before {
    content: "→";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ区域 */
.z12c44faq {
    padding: 100px 0;
    background: white;
    position: relative;
}

.z12c44faq::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;
}

.z12c44faq-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.z12c44faq-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.z12c44faq-row:last-child {
    margin-bottom: 0;
}

.z12c44faq-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;
}

.z12c44faq-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;
}

.z12c44faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z12c44faq-item:hover::before {
    opacity: 1;
}

.z12c44faq-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.z12c44faq-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.z12c44faq-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.z12c44faq-details {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.z12c44faq-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.z12c44faq-details li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 联系我们区域 */
.z12c44contact {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.z12c44contact::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;
}

.z12c44contact-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.z12c44contact-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.z12c44contact-row:last-child {
    margin-bottom: 0;
}

.z12c44contact-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;
}

.z12c44contact-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;
}

.z12c44contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z12c44contact-item:hover::before {
    opacity: 1;
}

.z12c44contact-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.z12c44contact-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.z12c44contact-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.z12c44contact-details {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.z12c44contact-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.z12c44contact-details li:before {
    content: "→";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 页脚 */
.z12c44footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.z12c44footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.z12c44footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.z12c44footer-section ul {
    list-style: none;
}

.z12c44footer-section ul li {
    margin: 10px 0;
}

.z12c44footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.z12c44footer-section a:hover {
    color: #3498db;
}

/* 页脚友情链接样式 */
.z12c44footer-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);
}

.z12c44footer-links h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: white;
}

.z12c44footer-links .z12c44links-container {
    max-width: 100%;
    padding: 0;
}

.z12c44footer-links .z12c44links-container ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.z12c44footer-links .z12c44links-container li {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.z12c44footer-links .z12c44links-container li:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.z12c44footer-links .z12c44links-container a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.z12c44footer-links .z12c44links-container a:hover {
    color: #3498db;
}

.z12c44footer-bottom {
    text-align: center;
    padding-top: 30px;
}

@media (max-width: 768px) {
    .z12c44footer-links .z12c44links-container ul {
        gap: 10px;
    }

    .z12c44footer-links .z12c44links-container li {
        padding: 6px 12px;
    }

    .z12c44footer-links .z12c44links-container a {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .z12c44footer-links {
        margin: 30px 0;
        padding: 20px 0;
    }

    .z12c44footer-links h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .z12c44footer-links .z12c44links-container ul {
        gap: 8px;
    }

    .z12c44footer-links .z12c44links-container li {
        padding: 5px 10px;
    }
}

/* 响应式设计优化 */
@media (max-width: 1200px) {
    .z12c44container {
        max-width: 960px;
        padding: 0 15px;
    }

    .z12c44hero-content h2 {
        font-size: 42px;
    }

    .z12c44section-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .z12c44container {
        max-width: 720px;
    }

    .z12c44hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .z12c44hero-text {
        max-width: 100%;
    }

    .z12c44hero-image {
        min-height: 300px;
    }

    .z12c44main-image {
        max-width: 60%;
    }

    .z12c44features-row,
    .z12c44advantages-row,
    .z12c44guide-row,
    .z12c44faq-row,
    .z12c44contact-row,
    .z12c44download-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .z12c44feature-item,
    .z12c44advantage-item,
    .z12c44guide-item,
    .z12c44faq-item,
    .z12c44contact-item,
    .z12c44download-item {
        width: calc(50% - 8px);
        margin-bottom: 15px;
    }

    .z12c44version-info {
        justify-content: center;
    }

    .z12c44download-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .z12c44container {
        max-width: 540px;
        padding: 0 15px;
    }

    .z12c44header .z12c44container {
        height: 50px;
        padding: 0 15px;
        position: relative;
    }

    .z12c44logo h1 {
        font-size: 18px;
    }

    .z12c44menu-toggle {
        display: block;
        width: 24px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .z12c44menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #2c3e50;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .z12c44menu-toggle span:nth-child(1) {
        top: 0;
    }

    .z12c44menu-toggle span:nth-child(2) {
        top: 9px;
    }

    .z12c44menu-toggle span:nth-child(3) {
        top: 18px;
    }

    .z12c44menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .z12c44menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .z12c44menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .z12c44main-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;
    }

    .z12c44main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .z12c44main-nav ul {
        flex-direction: column;
        padding: 10px 0;
        margin: 0;
    }

    .z12c44main-nav li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .z12c44main-nav li:last-child {
        border-bottom: none;
    }

    .z12c44main-nav a {
        display: block;
        font-size: 14px;
        padding: 12px 20px;
        color: #2c3e50;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .z12c44main-nav a:hover {
        background-color: #f8f9fa;
    }

    /* 调整hero区域的上边距 */
    .z12c44hero {
        padding-top: 80px;
    }

    .z12c44hero-content h2 {
        font-size: 32px;
    }

    .z12c44hero-content p {
        font-size: 16px;
    }

    .z12c44version-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .z12c44version-info span {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }

    .z12c44download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .z12c44btn {
        margin: 5px 0;
        width: 100%;
        max-width: 280px;
    }

    .z12c44hero-image {
        min-height: 200px;
    }

    .z12c44main-image {
        max-width: 70%;
    }

    .z12c44features-row,
    .z12c44advantages-row,
    .z12c44guide-row,
    .z12c44faq-row,
    .z12c44contact-row,
    .z12c44download-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .z12c44feature-item,
    .z12c44advantage-item,
    .z12c44guide-item,
    .z12c44faq-item,
    .z12c44contact-item,
    .z12c44download-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .z12c44section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .z12c44footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .z12c44container {
        padding: 0 15px;
    }

    .z12c44hero-content h2 {
        font-size: 28px;
    }

    .z12c44hero-content p {
        font-size: 15px;
    }

    .z12c44section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .z12c44feature-item,
    .z12c44advantage-item,
    .z12c44guide-item,
    .z12c44faq-item,
    .z12c44contact-item,
    .z12c44download-item {
        padding: 20px;
    }

    .z12c44feature-icon,
    .z12c44advantage-icon,
    .z12c44guide-icon,
    .z12c44faq-icon,
    .z12c44contact-icon,
    .z12c44download-icon {
        font-size: 28px;
    }

    .z12c44feature-item h3,
    .z12c44advantage-item h3,
    .z12c44guide-item h3,
    .z12c44faq-item h3,
    .z12c44contact-item h3,
    .z12c44download-item h3 {
        font-size: 16px;
    }

    .z12c44feature-item p,
    .z12c44advantage-item p,
    .z12c44guide-item p,
    .z12c44faq-item p,
    .z12c44contact-item p,
    .z12c44download-item p {
        font-size: 13px;
    }

    .z12c44feature-details li,
    .z12c44advantage-details li,
    .z12c44guide-details li,
    .z12c44faq-details li,
    .z12c44contact-details li,
    .z12c44download-details li {
        font-size: 13px;
    }

    .z12c44btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .z12c44header .z12c44container {
        height: 45px;
    }

    .z12c44logo h1 {
        font-size: 16px;
    }

    .z12c44main-nav {
        top: 45px;
    }

    .z12c44main-nav li {
        padding: 6px 15px;
    }

    .z12c44main-nav a {
        font-size: 13px;
        padding: 10px 15px;
    }

    .z12c44menu-toggle {
        width: 20px;
        height: 16px;
    }

    .z12c44menu-toggle span:nth-child(2) {
        top: 7px;
    }

    .z12c44menu-toggle span:nth-child(3) {
        top: 14px;
    }

    .z12c44menu-toggle.active span:nth-child(1) {
        top: 7px;
    }

    .z12c44menu-toggle.active span:nth-child(3) {
        top: 7px;
    }
}

/* 确保PC端菜单按钮隐藏 */
@media (min-width: 769px) {
    .z12c44menu-toggle {
        display: none;
    }

    .z12c44main-nav {
        display: block !important;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
}

/* 添加平滑滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 优化移动端触摸体验 */
@media (hover: none) {
    .z12c44feature-item:hover,
    .z12c44advantage-item:hover,
    .z12c44guide-item:hover,
    .z12c44faq-item:hover,
    .z12c44contact-item:hover,
    .z12c44download-item:hover {
        transform: none;
    }

    .z12c44btn:active {
        transform: scale(0.98);
    }
}

/* 优化高分辨率屏幕显示 */
@media (min-width: 1400px) {
    .z12c44container {
        max-width: 1320px;
    }

    .z12c44hero-content h2 {
        font-size: 54px;
    }

    .z12c44section-title {
        font-size: 40px;
    }

    .z12c44feature-item,
    .z12c44advantage-item,
    .z12c44guide-item,
    .z12c44faq-item,
    .z12c44contact-item,
    .z12c44download-item {
        padding: 30px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.z12c44feature-item,
.z12c44step,
.z12c44faq-item {
    animation: fadeIn 0.5s ease-out forwards;
}

/* 下载区域 */
.z12c44download {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.z12c44download::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;
}

.z12c44download-framework {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.z12c44download-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.z12c44download-row:last-child {
    margin-bottom: 0;
}

.z12c44download-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;
}

.z12c44download-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;
}

.z12c44download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z12c44download-item:hover::before {
    opacity: 1;
}

.z12c44download-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3498db;
}

.z12c44download-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 18px;
}

.z12c44download-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.z12c44download-details {
    list-style: none;
    margin: 15px 0;
    text-align: left;
}

.z12c44download-details li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.z12c44download-details li:before {
    content: "✓";
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.download-item .z12c44btn {
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 992px) {
    .z12c44download-row {
        flex-wrap: wrap;
    }
    
    .z12c44download-item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .z12c44download-row {
        flex-direction: column;
        align-items: center;
    }

    .z12c44download-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
}

/* 友情链接区域 */
.z12c44related-sites {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.z12c44links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.z12c44links-container ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.z12c44links-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;
}

.z12c44links-container li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.z12c44links-container a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.z12c44links-container a:hover {
    color: #3498db;
}

@media (max-width: 768px) {
    .z12c44links-container ul {
        gap: 15px;
    }

    .z12c44links-container li {
        padding: 8px 15px;
    }

    .z12c44links-container a {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .z12c44related-sites {
        padding: 40px 0;
    }

    .z12c44links-container {
        padding: 15px;
    }

    .z12c44links-container ul {
        gap: 10px;
    }

    .z12c44links-container li {
        padding: 6px 12px;
    }
} 