/* 全局样式重置 */
* {
    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;
}

.z49dfdcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.z49dfdheader {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.z49dfdheader .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.z49dfdlogo h1 {
    font-size: 24px;
    color: #1a73e8;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.main-nav {
    /* 参考原z49dfdmain-nav的样式内容 */
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0 24px 0 0;
    padding: 0 8px;
    justify-content: flex-end;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a73e8;
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #1a73e8;
}

.main-nav a:hover:after {
    width: 100%;
}

/* 移动端导航样式 */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 70px 15px 20px;
        gap: 10px;
    }

    .main-nav a {
        display: block;
        padding: 10px 12px;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-size: 0.95em;
    }

    .main-nav a:hover {
        background-color: #f0f4f8;
    }

    .main-nav a:after {
        display: none;
    }

    /* 添加遮罩层 */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .z49dfdhero {
        padding: 62px 0 12px;
    }

    .z49dfdhero-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .z49dfdhero-text {
        max-width: 100%;
        padding: 0 8px;
    }

    .z49dfdhero-content h2 {
        font-size: 1.5em;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .z49dfdhero-content p {
        font-size: 0.95em;
        margin-bottom: 12px;
    }

    .z49dfdhero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        margin: 12px 0;
        padding: 0 4px;
    }

    .stat-item {
        text-align: center;
        padding: 5px 3px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .stat-number {
        font-size: 1.1em;
        margin-bottom: 2px;
        font-weight: 600;
    }

    .stat-label {
        font-size: 0.7em;
        opacity: 0.9;
    }

    .z49dfdhero-image {
        max-width: 220px;
        margin: 0 auto;
        padding: 0 8px;
    }

    .z49dfdhero-img {
        transform: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .z49dfddownload-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 12px;
        margin-top: 12px;
    }

    .z49dfdbtn {
        width: 100%;
        text-align: center;
        padding: 8px 12px;
        font-size: 0.9em;
    }

    .z49dfdbtn-secondary {
        margin-left: 0;
    }

    .z49dfdlogo h1 {
        font-size: 20px;
        margin-bottom: 4px;
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .z49dfdheader .container {
        flex-direction: column;
        height: auto;
        padding: 8px 10px 8px 10px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        right: 15px;
        top: 15px;
    }

    .main-nav {
        width: 85%;
        max-width: 260px;
    }

    .main-nav ul {
        padding: 60px 12px 15px;
        gap: 8px;
    }

    .main-nav a {
        padding: 8px 10px;
        font-size: 0.9em;
    }

    .z49dfdhero {
        padding: 40px 0 4px;
    }

    .z49dfdhero-content {
        gap: 6px;
    }

    .z49dfdhero-text {
        padding: 0 2px;
    }

    .z49dfdhero-content h2 {
        font-size: 1.1em;
        margin-bottom: 2px;
    }

    .z49dfdhero-content p {
        font-size: 0.8em;
        margin-bottom: 4px;
    }

    .z49dfdhero-stats {
        gap: 4px;
        margin: 10px 0;
    }

    .stat-item {
        padding: 4px 2px;
    }

    .stat-number {
        font-size: 1em;
    }

    .stat-label {
        font-size: 0.65em;
    }

    .z49dfdhero-image {
        max-width: 180px;
        padding: 0 6px;
    }

    .z49dfddownload-buttons {
        gap: 4px;
        padding: 0 2px;
        margin-top: 4px;
    }

    .z49dfdbtn {
        padding: 5px 6px;
        font-size: 0.8em;
    }

    .z49dfdlogo h1 {
        font-size: 18px;
        margin-bottom: 2px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .z49dfdheader .container {
        height: 44px;
    }
}

/* 响应式调整 */
@media (max-width: 480px) {
    .z49dfdheader .container {
        height: 60px;
    }

    .z49dfdlogo h1 {
        font-size: 20px;
    }

    .main-nav {
        width: 100%;
        max-width: none;
    }

    .main-nav ul {
        padding: 70px 15px 15px;
    }
}

/* 英雄区域样式 */
.z49dfdhero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.z49dfdhero .container {
    position: relative;
    z-index: 2;
}

.z49dfdhero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.z49dfdhero-text {
    flex: 1;
    max-width: 600px;
}

.z49dfdhero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.z49dfdhero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.z49dfdhero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.z49dfdhero-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.z49dfdhero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.z49dfdhero-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

.z49dfddownload-buttons {
    margin-top: 30px;
}

/* 按钮样式 */
.z49dfdbtn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.z49dfdbtn-primary {
    background-color: #fff;
    color: #1a73e8;
}

.z49dfdbtn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 15px;
}

.z49dfdbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 特性区域样式 */
.z49dfdfeatures {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.z49dfdsection-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.z49dfdsection-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #1a73e8;
}

.z49dfdfeatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.z49dfdfeature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.z49dfdfeature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #0d47a1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.z49dfdfeature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.z49dfdfeature-card:hover:before {
    opacity: 1;
}

.z49dfdfeature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
}

.z49dfdfeature-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.z49dfdfeature-card p {
    color: #666;
    margin-bottom: 15px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
}

.z49dfdfeature-list {
    list-style: none;
    margin-top: auto;
    text-align: left;
    padding: 0 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.z49dfdfeature-list li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.3;
    font-size: 0.95em;
}

.z49dfdfeature-list li:before {
    content: "✓";
    color: #1a73e8;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.z49dfdfeatures-summary {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(to right, rgba(26,115,232,0.05), rgba(13,71,161,0.05));
    border-radius: 10px;
    border: 1px solid rgba(26,115,232,0.1);
}

.z49dfdfeatures-summary p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* 响应式设计优化 */
@media (max-width: 1200px) {
    .z49dfdcontainer {
        max-width: 960px;
        padding: 0 15px;
    }

    .z49dfdhero-content {
        gap: 30px;
    }

    .z49dfdhero-text {
        max-width: 500px;
    }

    .z49dfdhero-image {
        max-width: 450px;
    }

    .z49dfdfeatures-grid,
    .z49dfdproducts-grid,
    .z49dfdguide-grid,
    .z49dfdfaq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .z49dfdcontainer {
        max-width: 720px;
    }

    .z49dfdheader .container {
        padding: 0 15px;
    }

    .main-nav ul {
        gap: 20px;
    }

    .z49dfdhero {
        padding: 140px 0 70px;
    }

    .z49dfdhero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .z49dfdhero-text {
        max-width: 100%;
    }

    .z49dfdhero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .z49dfdhero-stats {
        justify-content: center;
        gap: 30px;
    }

    .stat-item {
        text-align: center;
    }

    .z49dfdsection-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .z49dfdfeature-card,
    .z49dfdproduct-card,
    .z49dfdguide-card,
    .z49dfdfaq-card {
        padding: 25px;
    }

    .z49dfddownload-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .z49dfdfooter-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .z49dfdcontainer {
        max-width: 540px;
    }

    .z49dfdheader {
        position: relative;
    }

    .z49dfdheader .container {
        flex-direction: column;
        height: auto;
        padding: 8px 10px 8px 10px;
    }

    .z49dfdlogo h1 {
        font-size: 20px;
        margin-bottom: 4px;
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .z49dfdhero {
        padding: 62px 0 12px;
    }

    .z49dfdhero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .z49dfdhero-text {
        max-width: 100%;
        padding: 0 15px;
    }

    .z49dfdhero-content h2 {
        font-size: 1.8em;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .z49dfdhero-content p {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .z49dfdhero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin: 20px 0;
        padding: 0 10px;
    }

    .stat-item {
        text-align: center;
        padding: 8px 5px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
    }

    .stat-number {
        font-size: 1.4em;
        margin-bottom: 3px;
        font-weight: 600;
    }

    .stat-label {
        font-size: 0.8em;
        opacity: 0.9;
    }

    .z49dfdhero-image {
        max-width: 280px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .z49dfdhero-img {
        transform: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .z49dfddownload-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .z49dfdbtn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .z49dfdbtn-secondary {
        margin-left: 0;
    }

    .z49dfdfeatures-grid,
    .z49dfdproducts-grid,
    .z49dfdguide-grid,
    .z49dfdfaq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .z49dfdfeature-card,
    .z49dfdproduct-card,
    .z49dfdguide-card,
    .z49dfdfaq-card {
        min-height: auto;
    }

    .z49dfdfeature-icon,
    .z49dfdproduct-icon,
    .z49dfdguide-icon,
    .z49dfdfaq-icon {
        font-size: 2.2em;
        width: 45px;
        height: 45px;
    }

    .z49dfddownload-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .z49dfddownload-card {
        min-height: auto;
    }

    .z49dfdguide-features,
    .z49dfdfaq-features {
        grid-template-columns: 1fr;
    }

    .z49dfdfooter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .z49dfdsocial-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .z49dfdcontainer {
        padding: 0 10px;
    }

    .z49dfdhero-content h2 {
        font-size: 1.6em;
    }

    .z49dfdhero-content p {
        font-size: 1em;
    }

    .z49dfdhero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 15px 0;
        padding: 0 5px;
    }

    .stat-item {
        padding: 6px 4px;
        border-radius: 4px;
    }

    .stat-number {
        font-size: 1.2em;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 0.75em;
    }

    .z49dfdhero-image {
        max-width: 240px;
    }

    .z49dfdbtn {
        padding: 10px 15px;
        font-size: 0.95em;
    }

    .z49dfdsection-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .z49dfdfeature-card h3,
    .z49dfdproduct-card h3,
    .z49dfdguide-card h3,
    .z49dfdfaq-card h3 {
        font-size: 1.3em;
    }

    .z49dfdfeature-card p,
    .z49dfdproduct-card p,
    .z49dfdguide-card p,
    .z49dfdfaq-card p {
        font-size: 1em;
    }
}

/* 修复特定设备上的显示问题 */
@media (min-width: 992px) and (max-width: 1199px) {
    .z49dfdhero-content {
        max-width: 960px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .z49dfdhero-content {
        max-width: 720px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .z49dfdhero-content {
        max-width: 540px;
    }
}

/* 确保图片在移动端正确显示 */
@media (max-width: 768px) {
    .z49dfdhero-img {
        transform: none;
    }
    
    .z49dfdhero-img:hover {
        transform: none;
    }
}

/* 产品服务样式 */
.z49dfdproducts {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.z49dfdproducts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.z49dfdproduct-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.z49dfdproduct-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #0d47a1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.z49dfdproduct-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.z49dfdproduct-card:hover:before {
    opacity: 1;
}

.z49dfdproduct-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
}

.z49dfdproduct-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.z49dfdproduct-desc {
    color: #666;
    margin-bottom: 15px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
}

.z49dfdproduct-features {
    list-style: none;
    margin-top: auto;
    text-align: left;
    padding: 0 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.z49dfdproduct-features li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.3;
    font-size: 0.95em;
}

.z49dfdproduct-features li:before {
    content: "✓";
    color: #1a73e8;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.z49dfdproducts-summary {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(to right, rgba(26,115,232,0.05), rgba(13,71,161,0.05));
    border-radius: 10px;
    border: 1px solid rgba(26,115,232,0.1);
}

.z49dfdproducts-summary p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* 下载区域样式 */
.z49dfddownload-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.z49dfddownload-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.z49dfddownload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.z49dfddownload-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.z49dfddownload-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.z49dfddownload-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.z49dfddownload-icon {
    font-size: 2.8em;
    color: #1a73e8;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z49dfddownload-title {
    flex-grow: 1;
}

.z49dfddownload-title h3 {
    font-size: 1.5em;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.z49dfddownload-desc {
    color: #666;
    font-size: 1.1em;
    margin: 0;
    line-height: 1.4;
}

.z49dfdversion-info {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    flex-grow: 1;
}

.z49dfdversion-info li {
    color: #666;
    margin: 10px 0;
    font-size: 1em;
    padding-left: 25px;
    position: relative;
}

.z49dfdversion-info li:before {
    content: "•";
    color: #1a73e8;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.z49dfdbtn-download {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: auto;
    text-align: center;
    font-size: 1.1em;
}

.z49dfdbtn-download:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.z49dfddownload-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.z49dfdfeature-item {
    text-align: center;
    padding: 15px;
}

.z49dfdfeature-item .feature-icon {
    font-size: 2em;
    margin-bottom: 10px;
    color: #1a73e8;
}

.z49dfdfeature-item h4 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #333;
}

.z49dfdfeature-item p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

/* 使用指南样式 */
.z49dfdguide {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.z49dfdguide-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.z49dfdguide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.z49dfdguide-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.z49dfdguide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.z49dfdguide-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.z49dfdguide-icon {
    font-size: 2.8em;
    color: #1a73e8;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z49dfdguide-title {
    flex-grow: 1;
}

.z49dfdguide-title h3 {
    font-size: 1.5em;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.z49dfdguide-desc {
    color: #666;
    font-size: 1.1em;
    margin: 0;
    line-height: 1.4;
}

.z49dfdguide-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.z49dfdstep-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.z49dfdstep-item:hover {
    background: #f0f4f8;
    transform: translateX(5px);
}

.z49dfdstep-number {
    width: 32px;
    height: 32px;
    background: #1a73e8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.z49dfdstep-content {
    flex-grow: 1;
}

.z49dfdstep-content h4 {
    font-size: 1.1em;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.z49dfdstep-content p {
    color: #666;
    font-size: 0.95em;
    margin: 0;
    line-height: 1.4;
}

.z49dfdguide-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.z49dfdguide-features .feature-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.z49dfdguide-features .feature-item:hover {
    transform: translateY(-5px);
    background: #f0f4f8;
}

.z49dfdguide-features .feature-icon {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #1a73e8;
}

.z49dfdguide-features h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.z49dfdguide-features p {
    color: #666;
    font-size: 0.95em;
    margin: 0;
}

/* FAQ样式 */
.z49dfdfaq {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.z49dfdfaq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.z49dfdfaq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.z49dfdfaq-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.z49dfdfaq-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #0d47a1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.z49dfdfaq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.z49dfdfaq-card:hover:before {
    opacity: 1;
}

.z49dfdfaq-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.z49dfdfaq-icon {
    font-size: 2.8em;
    color: #1a73e8;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,115,232,0.1);
    border-radius: 12px;
    padding: 10px;
}

.z49dfdfaq-title {
    flex-grow: 1;
}

.z49dfdfaq-title h3 {
    font-size: 1.5em;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.z49dfdfaq-desc {
    color: #666;
    font-size: 1.1em;
    margin: 0;
    line-height: 1.4;
}

.z49dfdfaq-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.z49dfdfaq-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.z49dfdfaq-item:hover {
    background: #f0f4f8;
    transform: translateX(5px);
    border-color: #1a73e8;
}

.z49dfdfaq-item h4 {
    font-size: 1.1em;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.z49dfdfaq-item h4:before {
    content: "Q:";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.z49dfdfaq-item p {
    color: #666;
    font-size: 0.95em;
    margin: 0;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.z49dfdfaq-item p:before {
    content: "A:";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.z49dfdfaq-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e8e8e8;
}

.z49dfdfaq-features .feature-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.z49dfdfaq-features .feature-item:hover {
    transform: translateY(-5px);
    background: #f0f4f8;
    border-color: #1a73e8;
}

.z49dfdfaq-features .feature-icon {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #1a73e8;
    background: rgba(26,115,232,0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 15px;
}

.z49dfdfaq-features h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.z49dfdfaq-features p {
    color: #666;
    font-size: 0.95em;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z49dfdfaq {
        padding: 60px 0;
    }

    .z49dfdfaq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z49dfdfaq-card {
        padding: 20px;
    }

    .z49dfdfaq-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .z49dfdfaq-icon {
        font-size: 2.2em;
        width: 50px;
        height: 50px;
    }

    .z49dfdfaq-title h3 {
        font-size: 1.3em;
    }

    .z49dfdfaq-desc {
        font-size: 1em;
    }

    .z49dfdfaq-item {
        padding: 15px;
    }

    .z49dfdfaq-item h4 {
        font-size: 1em;
        margin-bottom: 10px;
    }

    .z49dfdfaq-item p {
        font-size: 0.9em;
    }

    .z49dfdfaq-features {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .z49dfdfaq {
        padding: 40px 0;
    }

    .z49dfdfaq-card {
        padding: 15px;
    }

    .z49dfdfaq-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .z49dfdfaq-icon {
        font-size: 2em;
        width: 45px;
        height: 45px;
    }

    .z49dfdfaq-title h3 {
        font-size: 1.2em;
    }

    .z49dfdfaq-desc {
        font-size: 0.9em;
    }

    .z49dfdfaq-item {
        padding: 12px;
    }

    .z49dfdfaq-item h4 {
        font-size: 0.95em;
        margin-bottom: 8px;
    }

    .z49dfdfaq-item p {
        font-size: 0.85em;
    }

    .z49dfdfaq-features {
        padding: 15px;
    }
}

/* 页脚样式 */
.z49dfdfooter {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.z49dfdfooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.z49dfdfooter-section h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.z49dfdsocial-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.z49dfdfooter-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .z49dfdheader .container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-top: 20px;
    }

    .z49dfdhero {
        padding: 120px 0 60px;
    }

    .z49dfdhero-content h2 {
        font-size: 2em;
    }

    .z49dfdhero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .z49dfddownload-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .z49dfdbtn-secondary {
        margin-left: 0;
    }

    .z49dfdfooter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .z49dfdsocial-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .z49dfdcontainer {
        padding: 0 15px;
    }

    .z49dfdhero-content h2 {
        font-size: 1.8em;
    }

    .z49dfdsection-title {
        font-size: 1.8em;
    }

    .stat-number {
        font-size: 2em;
    }
}

/* 新主横幅样式 */
.z49dfdredesigned-hero {
    background: linear-gradient(120deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.z49dfdredesign-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    gap: 40px;
}
.z49dfdredesign-hero-main {
    max-width: 480px;
    margin: 0 auto;
}
.z49dfdredesign-hero-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.z49dfdredesign-hero-desc {
    font-size: 1.1em;
    opacity: 0.92;
    margin-bottom: 22px;
    line-height: 1.6;
}
.z49dfdredesign-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.z49dfdredesign-hero-actions .btn {
    min-width: 110px;
    font-size: 1em;
    padding: 10px 18px;
    border-radius: 6px;
}
.z49dfdredesign-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
}
.z49dfdredesign-hero-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    background: #fff;
}
@media (max-width: 900px) {
    .z49dfdredesign-hero-content {
        gap: 18px;
    }
    .z49dfdredesign-hero-image {
        max-width: 100vw;
    }
    .z49dfdredesign-hero-image img {
        max-width: 90vw;
    }
}
@media (max-width: 768px) {
    .z49dfdredesign-hero-content {
        flex-direction: column;
        gap: 12px;
    }
    .z49dfdredesign-hero-image {
        max-width: 90vw;
        margin-top: 10px;
    }
    .z49dfdredesign-hero-image img {
        max-width: 98vw;
    }
}
@media (max-width: 480px) {
    .z49dfdredesign-hero-image {
        max-width: 100vw;
        min-width: 220px;
    }
    .z49dfdredesign-hero-image img {
        max-width: 98vw;
    }
}

@media (min-width: 1200px) {
    .z49dfdcontainer {
        max-width: 1400px;
    }
    .main-nav ul {
        gap: 60px;
        padding: 0 32px;
    }
} 