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

img {
    max-width: 100%;
    height: auto;
}

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

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

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

.zef94elogo 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 {
    /* 参考原zef94emain-nav的样式内容 */
}

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.92em;
    white-space: nowrap;
    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;
    }

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

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

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

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

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

    .zef94ehero-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;
    }

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

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

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

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

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

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

    .zef94eheader .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;
    }

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

    .zef94ehero-content {
        gap: 6px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zef94ehero-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;
}

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

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

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

.zef94ehero-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;
}

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

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

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

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

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

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

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

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

.zef94efeatures-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);
}

.zef94efeature-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;
}

.zef94efeature-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;
}

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

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

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

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

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

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

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

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

.zef94efeatures-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);
}

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

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

    .zef94ehero-content {
        gap: 30px;
    }

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

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

    .zef94efeatures-grid,
    .zef94eproducts-grid,
    .zef94eguide-grid,
    .zef94efaq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

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

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

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

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

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

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

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

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

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

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

    .zef94efeature-card,
    .zef94eproduct-card,
    .zef94eguide-card,
    .zef94efaq-card {
        padding: 25px;
    }

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

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

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

    .zef94eheader {
        position: relative;
    }

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

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

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

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

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

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

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

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

    .zef94ehero-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;
    }

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

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

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

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

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

    .zef94efeatures-grid,
    .zef94eproducts-grid,
    .zef94eguide-grid,
    .zef94efaq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .zef94efeature-card,
    .zef94eproduct-card,
    .zef94eguide-card,
    .zef94efaq-card {
        min-height: auto;
    }

    .zef94efeature-icon,
    .zef94eproduct-icon,
    .zef94eguide-icon,
    .zef94efaq-icon {
        font-size: 2.2em;
        width: 45px;
        height: 45px;
    }

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

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

    .zef94eguide-features,
    .zef94efaq-features {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .zef94ehero-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;
    }

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

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

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

    .zef94efeature-card h3,
    .zef94eproduct-card h3,
    .zef94eguide-card h3,
    .zef94efaq-card h3 {
        font-size: 1.3em;
    }

    .zef94efeature-card p,
    .zef94eproduct-card p,
    .zef94eguide-card p,
    .zef94efaq-card p {
        font-size: 1em;
    }
}

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

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

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

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

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

.zef94eproducts-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);
}

.zef94eproduct-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;
}

.zef94eproduct-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;
}

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

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

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

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

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

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

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

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

.zef94eproducts-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);
}

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

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

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

.zef94edownload-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;
}

.zef94edownload-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;
}

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

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

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

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

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

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

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

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

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

.zef94ebtn-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;
}

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

.zef94edownload-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);
}

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

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

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

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

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

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

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

.zef94eguide-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;
}

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

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

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

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

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

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

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

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

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

.zef94estep-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;
}

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

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

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

.zef94eguide-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);
}

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

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

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

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

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

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

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

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

.zef94efaq-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;
}

.zef94efaq-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;
}

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

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

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

.zef94efaq-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;
}

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

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

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

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

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

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

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

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

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

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

.zef94efaq-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;
}

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

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

.zef94efaq-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;
}

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

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

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

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

    .zef94efaq-card {
        padding: 20px;
    }

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

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

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

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

    .zef94efaq-item {
        padding: 15px;
    }

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

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

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

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

    .zef94efaq-card {
        padding: 15px;
    }

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

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

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

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

    .zef94efaq-item {
        padding: 12px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 新主横幅样式 */
.zef94eredesigned-hero {
    background: linear-gradient(120deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 96px 0 48px;
    position: relative;
    overflow: hidden;
}
.zef94eredesign-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    text-align: left;
}
.zef94eredesign-hero-main {
    flex: 1 1 52%;
    min-width: 0;
    max-width: 580px;
    margin: 0;
}
.zef94eredesign-hero-title {
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    line-height: 1.35;
}
.zef94eredesign-hero-desc {
    font-size: 0.98em;
    opacity: 0.92;
    margin-bottom: 10px;
    line-height: 1.65;
}
.zef94eredesign-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}
.zef94eredesign-hero-actions .btn {
    min-width: 110px;
    font-size: 1em;
    padding: 10px 18px;
    border-radius: 6px;
}
.zef94eredesign-hero-image {
    flex: 0 1 42%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    max-width: 420px;
}
.zef94eredesign-hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    background: #fff;
}
@media (max-width: 900px) {
    .zef94eredesign-hero-content {
        gap: 24px;
    }
    .zef94eredesign-hero-image {
        max-width: 360px;
    }
}
@media (max-width: 768px) {
    .zef94eredesign-hero-content {
        flex-direction: column;
        gap: 20px;
    }
    .zef94eredesign-hero-main {
        flex: none;
        max-width: 100%;
    }
    .zef94eredesign-hero-image {
        flex: none;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .zef94eredesign-hero-image {
        max-width: 280px;
    }
}

@media (min-width: 1200px) {
    .zef94econtainer {
        max-width: 1200px;
    }
    .main-nav ul {
        gap: 28px;
        padding: 0;
    }
}

/* 头部容器布局 */
.zef94eheader .zef94econtainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 16px;
}

.zef94elogo {
    flex-shrink: 0;
    min-width: 0;
}

.zef94elogo h1 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-nav {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

.zef94elogo h1 a {
    text-decoration: none;
    color: #1a73e8;
}

.zef94enav-item.zef94ethis a,
.main-nav li.zef94ethis a {
    color: #1a73e8;
}

/* 首页文章板块 */
.zef94earticles {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.zef94earticles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.zef94earticle-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.zef94earticle-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f0f4f8;
}

.zef94earticle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zef94earticle-thumb:not(:has(img)),
.zef94elist-thumb:not(:has(img)),
.zef94esidebar-thumb:not(:has(img)),
.zef94erelated-thumb:not(:has(img)) {
    display: none;
}

.zef94earticle-card:hover .zef94earticle-thumb img {
    transform: scale(1.05);
}

.zef94earticle-info {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zef94earticle-info h3 {
    font-size: 0.95em;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 600;
}

.zef94earticle-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.zef94earticle-info h3 a:hover {
    color: #1a73e8;
}

.zef94earticle-desc {
    color: #666;
    font-size: 0.85em;
    line-height: 1.5;
    margin-bottom: 8px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zef94earticle-meta {
    color: #999;
    font-size: 0.8em;
}

/* 内页通用布局 */
.zef94epage-main {
    padding-top: 80px;
    min-height: 60vh;
    background: #f8f9fa;
}

.zef94epage-banner {
    background: linear-gradient(120deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 40px 0 30px;
}

.zef94epage-title {
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.zef94ebreadcrumb {
    font-size: 0.95em;
    opacity: 0.9;
}

.zef94ebreadcrumb a {
    color: #fff;
    text-decoration: none;
}

.zef94ebreadcrumb a:hover {
    text-decoration: underline;
}

.zef94ebreadcrumb-inner {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.zef94ebreadcrumb-inner a {
    color: #1a73e8;
    text-decoration: none;
}

.zef94ebreadcrumb-inner a:hover {
    text-decoration: underline;
}

.zef94elist-item:not(:has(.zef94elist-thumb)) .zef94elist-body {
    width: 100%;
}

.zef94earticle-nav:empty,
.zef94earticle-nav:not(:has(a)) {
    display: none;
    margin: 0;
    padding: 0;
    border: none;
}

.zef94epage-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 40px 0 60px;
    align-items: start;
}

.zef94epage-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

/* 列表页 */
.zef94elist-items {
    list-style: none;
}

.zef94elist-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.zef94elist-item:first-child {
    padding-top: 0;
}

.zef94elist-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.zef94elist-item:hover {
    background: #fafbfc;
}

.zef94elist-thumb {
    flex-shrink: 0;
    width: 200px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f4f8;
    display: block;
}

.zef94elist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.zef94elist-item:hover .zef94elist-thumb img {
    transform: scale(1.05);
}

.zef94elist-body {
    flex: 1;
    min-width: 0;
}

.zef94elist-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    line-height: 1.4;
}

.zef94elist-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.zef94elist-title a:hover {
    color: #1a73e8;
}

.zef94elist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #999;
    font-size: 0.85em;
    margin-bottom: 10px;
}

.zef94elist-meta span {
    position: relative;
}

.zef94elist-intro {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* 分页 - 左右布局 */
.zef94epagebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
    gap: 15px;
}

.zef94epagebar-left,
.zef94epagebar-right {
    flex-shrink: 0;
    min-width: 80px;
}

.zef94epagebar-left {
    text-align: left;
}

.zef94epagebar-right {
    text-align: right;
}

.zef94epagebar-center {
    flex: 1;
    text-align: center;
}

.zef94epagebar .pagelist,
.zef94epagebar ul {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.zef94epagebar .pagelist li,
.zef94epagebar ul li {
    display: inline-block;
}

.zef94epagebar .pagelist a,
.zef94epagebar .pagelist span,
.zef94epagebar ul a,
.zef94epagebar ul span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s;
    background: #fff;
}

.zef94epagebar .pagelist a:hover,
.zef94epagebar ul a:hover {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

.zef94epagebar .pagelist .thisclass a,
.zef94epagebar ul .thisclass a {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

/* 侧栏 */
.zef94esidebar {
    position: sticky;
    top: 100px;
}

.zef94esidebar-block {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.zef94esidebar-block:last-child {
    margin-bottom: 0;
}

.zef94esidebar-title {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a73e8;
    font-weight: 600;
}

.zef94esidebar-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.zef94esidebar-title a:hover {
    color: #1a73e8;
}

.zef94esidebar-list {
    list-style: none;
}

.zef94esidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.zef94esidebar-item:last-child {
    border-bottom: none;
}

.zef94esidebar-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 45px;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f4f8;
    display: block;
}

.zef94esidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zef94esidebar-link {
    flex: 1;
    color: #333;
    text-decoration: none;
    font-size: 0.88em;
    line-height: 1.4;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zef94esidebar-link:hover {
    color: #1a73e8;
}

/* 内容页 */
.zef94earticle-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.zef94earticle-title {
    font-size: 1.8em;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.zef94earticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #999;
    font-size: 0.9em;
}

.zef94earticle-meta a {
    color: #1a73e8;
    text-decoration: none;
}

.zef94earticle-litpic {
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f4f8;
}

.zef94earticle-litpic img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
    object-fit: cover;
}

.zef94earticle-litpic:empty,
.zef94earticle-litpic img[src=""],
.zef94earticle-litpic img:not([src]) {
    display: none;
}

.zef94earticle-body {
    font-size: 1.05em;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.zef94earticle-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.zef94earticle-body p {
    margin-bottom: 16px;
}

.zef94ediyfield {
    margin-bottom: 24px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.zef94earticle-gallery {
    margin-bottom: 24px;
}

.zef94egallery-item {
    margin-bottom: 16px;
    text-align: center;
}

.zef94egallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.zef94egallery-item figcaption {
    margin-top: 8px;
    color: #666;
    font-size: 0.9em;
}

.zef94emeta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.zef94etagitem a {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f4f8;
    color: #1a73e8;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85em;
    transition: all 0.3s;
}

.zef94etagitem a:hover {
    background: #1a73e8;
    color: #fff;
}

.zef94earticle-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95em;
}

.zef94earticle-nav-prev,
.zef94earticle-nav-next {
    flex: 1;
    min-width: 0;
}

.zef94earticle-nav-prev span,
.zef94earticle-nav-next span {
    color: #999;
}

.zef94earticle-nav-prev a,
.zef94earticle-nav-next a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.zef94earticle-nav-prev a:hover,
.zef94earticle-nav-next a:hover {
    color: #1a73e8;
}

.zef94earticle-nav-next {
    text-align: right;
}

.zef94erelated-title {
    font-size: 1.3em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a73e8;
    font-weight: 600;
}

.zef94erelated-list {
    list-style: none;
}

.zef94erelated-item {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.zef94erelated-item:last-child {
    border-bottom: none;
}

.zef94erelated-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f4f8;
    display: block;
}

.zef94erelated-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zef94erelated-info {
    flex: 1;
    min-width: 0;
}

.zef94erelated-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.zef94erelated-link:hover {
    color: #1a73e8;
}

.zef94erelated-info p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.5;
}

/* 内页与文章板块响应式 */
@media (max-width: 1200px) {
    .zef94earticles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .zef94earticles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .zef94epage-layout {
        grid-template-columns: 1fr;
    }

    .zef94esidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .zef94epage-main {
        padding-top: 0;
    }

    .zef94eheader .zef94econtainer {
        height: auto;
        padding: 10px 15px;
        position: relative;
    }

    .zef94earticles {
        padding: 60px 0;
    }

    .zef94earticles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .zef94epage-banner {
        padding: 70px 0 24px;
    }

    .zef94epage-title {
        font-size: 1.6em;
    }

    .zef94epage-layout {
        padding: 24px 0 40px;
        gap: 20px;
    }

    .zef94epage-content {
        padding: 20px;
    }

    .zef94elist-item {
        flex-direction: column;
        gap: 12px;
    }

    .zef94elist-thumb {
        width: 100%;
        height: 180px;
    }

    .zef94epagebar {
        flex-direction: column;
        align-items: stretch;
    }

    .zef94epagebar-left,
    .zef94epagebar-right,
    .zef94epagebar-center {
        text-align: center;
        min-width: auto;
    }

    .zef94earticle-title {
        font-size: 1.4em;
    }

    .zef94earticle-nav {
        flex-direction: column;
        gap: 12px;
    }

    .zef94earticle-nav-next {
        text-align: left;
    }

    .zef94erelated-item {
        flex-direction: column;
    }

    .zef94erelated-thumb {
        width: 100%;
        height: 160px;
    }

    .zef94esidebar-block {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .zef94earticles-grid {
        grid-template-columns: 1fr;
    }

    .zef94earticle-info h3 {
        font-size: 0.9em;
    }

    .zef94epage-content {
        padding: 16px;
    }

    .zef94elist-title {
        font-size: 1.05em;
    }

    .zef94earticle-title {
        font-size: 1.25em;
    }

    .zef94earticle-meta {
        flex-direction: column;
        gap: 6px;
    }
}

/* ===== 首页板块差异化布局 ===== */
.zef94efeatures,
.zef94eproducts,
.zef94eguide,
.zef94efaq,
.zef94earticles {
    padding: 64px 0;
}

.zef94edownload-section {
    padding: 64px 0;
}

.zef94esection-head--left {
    text-align: left;
    margin-bottom: 28px;
}

.zef94esection-title {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    margin-bottom: 32px;
}

.zef94esection-title--left {
    text-align: left;
    margin-bottom: 8px;
}

.zef94esection-title--left:after {
    left: 0;
    transform: none;
}

.zef94esection-title--light {
    color: #fff;
    margin-bottom: 14px;
}

.zef94esection-title--light:after {
    background-color: rgba(255,255,255,0.85);
}

.zef94esection-subtitle {
    color: #666;
    font-size: 0.98em;
    line-height: 1.6;
    max-width: 640px;
    margin: 0;
}

.zef94efaq-aside .zef94esection-title {
    margin-bottom: 10px;
}

/* 平台优势 - 顶部横幅 + 三列网格 */
.zef94efeatures-bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.zef94efeatures-bento .zef94efeature-card {
    text-align: left;
    min-height: 0;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    overflow: visible;
}

.zef94efeatures-bento .zef94efeature-card:hover {
    transform: translateY(-3px);
}

.zef94efeatures-bento .zef94efeature-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 1.75em;
}

.zef94efeatures-bento .zef94efeature-body {
    flex: 1;
    min-width: 0;
}

.zef94efeatures-bento .zef94efeature-card h3,
.zef94efeatures-bento .zef94efeature-card p {
    height: auto;
    justify-content: flex-start;
    text-align: left;
    display: block;
}

.zef94efeatures-bento .zef94efeature-card h3 {
    font-size: 1.1em;
    margin-bottom: 4px;
}

.zef94efeatures-bento .zef94efeature-card p {
    font-size: 0.88em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.zef94efeature-card--lead {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    background: linear-gradient(145deg, #fff 0%, #f0f6ff 100%);
}

.zef94efeature-card--lead .zef94efeature-icon {
    width: 56px;
    height: 56px;
    font-size: 2.4em;
}

.zef94efeature-card--lead .zef94efeature-list {
    border-top: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zef94efeature-card--lead .zef94efeature-list li {
    margin: 0;
    padding: 4px 12px;
    background: #fff;
    border-radius: 20px;
    font-size: 0.85em;
    border: 1px solid #dce8f8;
}

.zef94efeature-card--lead .zef94efeature-list li:before {
    display: none;
}

.zef94efeature-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.zef94efeature-tags li {
    background: #eef4fc;
    color: #1a73e8;
    font-size: 0.78em;
    padding: 3px 8px;
    border-radius: 20px;
    line-height: 1.4;
}

.zef94efeatures-summary,
.zef94eproducts-summary {
    margin-top: 28px;
    padding: 18px 20px;
}

/* 产品服务 - 横向列表 */
.zef94eproducts {
    background: #fff;
}

.zef94eproducts-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.zef94eproduct-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 10px 16px;
    align-items: start;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.zef94eproduct-row .zef94eproduct-icon {
    grid-row: 1 / 3;
    align-self: start;
}

.zef94eproduct-row:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(26,115,232,0.08);
    border-color: #c5daf7;
}

.zef94eproduct-row .zef94eproduct-icon {
    margin-bottom: 0;
    height: 48px;
    width: 48px;
    font-size: 1.6em;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.zef94eproduct-row h3 {
    font-size: 1.2em;
    margin-bottom: 6px;
    color: #333;
    height: auto;
}

.zef94eproduct-row .zef94eproduct-desc {
    height: auto;
    justify-content: flex-start;
    text-align: left;
    font-size: 0.95em;
    margin-bottom: 0;
}

.zef94eproduct-pills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
    grid-column: 2;
    max-width: none;
    margin: 0;
    padding: 0;
}

.zef94eproduct-pills li {
    background: #fff;
    border: 1px solid #dce8f8;
    color: #555;
    font-size: 0.78em;
    padding: 4px 9px;
    border-radius: 6px;
    line-height: 1.3;
}

/* 下载中心 - 分栏面板 */
.zef94edownload-section {
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
    border: none;
}

.zef94edownload-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.15);
}

.zef94edownload-lead {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin: 16px 0 24px;
    font-size: 0.98em;
}

.zef94edownload-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
}

.zef94edownload-badges li {
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zef94edownload-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zef94edownload-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px 14px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    transition: box-shadow 0.3s ease;
}

.zef94edownload-row:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.zef94edownload-row-icon {
    font-size: 2em;
    text-align: center;
}

.zef94edownload-row-body h3 {
    font-size: 1.1em;
    margin-bottom: 4px;
    color: #333;
}

.zef94edownload-row .zef94edownload-desc {
    font-size: 0.88em;
    color: #666;
    margin: 0;
}

.zef94edownload-row .zef94ebtn-download {
    margin-top: 0;
    padding: 9px 16px;
    font-size: 0.88em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 使用指南 - 三列等高卡片 */
.zef94eguide-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
    align-items: stretch;
}

.zef94eguide-phase {
    background: #fff;
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.zef94eguide-phase-head {
    margin-bottom: 20px;
}

.zef94eguide-phase-num {
    display: inline-block;
    background: #1a73e8;
    color: #fff;
    font-weight: 700;
    font-size: 0.85em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.zef94eguide-phase-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.zef94eguide-phase-title .zef94eguide-icon {
    width: 44px;
    height: 44px;
    font-size: 1.8em;
    margin: 0;
}

.zef94eguide-phase-title h3 {
    font-size: 1.2em;
    margin-bottom: 4px;
}

.zef94eguide-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.zef94eguide-steps-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zef94eguide-steps-list li:last-child {
    border-bottom: none;
}

.zef94eguide-steps-list strong {
    color: #333;
    font-size: 0.95em;
}

.zef94eguide-steps-list span {
    color: #666;
    font-size: 0.88em;
    line-height: 1.5;
}

.zef94eguide-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(to right, rgba(26,115,232,0.06), rgba(13,71,161,0.06));
    border-radius: 12px;
    border: 1px solid rgba(26,115,232,0.12);
}

.zef94eguide-note {
    flex: 1;
    min-width: 240px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.zef94eguide-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.zef94eguide-links li {
    background: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9em;
    color: #333;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 常见问题 - 侧栏 + 问答列表 */
.zef94efaq-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.zef94efaq-main {
    background: #fff;
    border-radius: 14px;
    padding: 24px 28px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.zef94efaq-aside {
    position: sticky;
    top: 100px;
}

.zef94efaq-aside-desc {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 24px;
}

.zef94efaq-support {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zef94efaq-support li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
}

.zef94efaq-support li span {
    font-size: 1.4em;
    flex-shrink: 0;
}

.zef94efaq-support strong {
    display: block;
    font-size: 0.95em;
    margin-bottom: 2px;
}

.zef94efaq-support p {
    color: #666;
    font-size: 0.85em;
    margin: 0;
}

.zef94efaq-group {
    margin-bottom: 28px;
}

.zef94efaq-group:last-child {
    margin-bottom: 0;
}

.zef94efaq-group-title {
    font-size: 1.15em;
    color: #1a73e8;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f0fe;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zef94efaq-dl {
    margin: 0;
}

.zef94efaq-dl .zef94efaq-item {
    padding: 16px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
}

.zef94efaq-dl .zef94efaq-item:hover {
    transform: none;
    background: none;
}

.zef94efaq-dl .zef94efaq-item:last-child {
    border-bottom: none;
}

.zef94efaq-dl dt {
    font-weight: 600;
    color: #333;
    font-size: 1em;
    margin-bottom: 8px;
    padding-left: 0;
}

.zef94efaq-dl dt:before,
.zef94efaq-dl dd:before {
    display: none;
}

.zef94efaq-dl dd {
    color: #666;
    font-size: 0.92em;
    line-height: 1.7;
    margin: 0;
    padding-left: 0;
}

/* 最新资讯 - 杂志布局 */
.zef94earticles {
    background: #f8f9fa;
}

.zef94earticles-magazine {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.zef94earticles-magazine .zef94earticle-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: stretch;
}

.zef94earticles-magazine .zef94earticle-card:first-child .zef94earticle-thumb {
    aspect-ratio: 16 / 9;
    max-height: 240px;
}

.zef94earticles-magazine .zef94earticle-card:first-child .zef94earticle-info {
    padding: 22px 24px;
    justify-content: center;
}

.zef94earticles-magazine .zef94earticle-card:first-child h3 {
    font-size: 1.15em;
    line-height: 1.45;
}

.zef94earticles-magazine .zef94earticle-card:not(:first-child) .zef94earticle-info h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 首页新布局响应式 */
@media (max-width: 1100px) {
    .main-nav ul {
        gap: 24px;
    }

    .zef94efeatures-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zef94efeature-card--lead {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: flex-start;
    }

    .zef94edownload-panel {
        grid-template-columns: 1fr;
    }

    .zef94edownload-row {
        grid-template-columns: 40px minmax(0, 1fr);
        grid-template-rows: auto auto;
    }

    .zef94edownload-row .zef94ebtn-download {
        grid-column: 1 / -1;
        width: 100%;
        text-align: center;
    }

    .zef94eguide-timeline {
        grid-template-columns: 1fr;
    }

    .zef94efaq-layout {
        grid-template-columns: 1fr;
    }

    .zef94efaq-aside {
        position: static;
    }

    .zef94efaq-support {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .zef94efaq-support li {
        flex: 1 1 180px;
    }

    .zef94earticles-magazine {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zef94earticles-magazine .zef94earticle-card:first-child {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .zef94eredesigned-hero {
        padding: 88px 0 36px;
    }

    .zef94eredesign-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .zef94eredesign-hero-main {
        max-width: 100%;
    }

    .zef94eredesign-hero-actions {
        justify-content: center;
    }

    .zef94efeatures-bento {
        grid-template-columns: 1fr;
    }

    .zef94efeature-card--lead {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: flex-start;
    }

    .zef94efeatures-bento .zef94efeature-card {
        flex-direction: row;
    }

    .zef94esection-title {
        margin-bottom: 24px;
    }

    .zef94eproduct-row {
        padding: 16px;
        gap: 10px 12px;
    }

    .zef94eproduct-row .zef94eproduct-icon {
        grid-row: 1;
    }

    .zef94eproduct-pills {
        grid-column: 1 / -1;
    }

    .zef94edownload-panel {
        padding: 20px;
    }

    .zef94edownload-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .zef94edownload-row-icon {
        font-size: 2.4em;
    }

    .zef94edownload-row .zef94ebtn-download {
        width: 100%;
    }

    .zef94eguide-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .zef94eguide-links {
        flex-direction: column;
    }

    .zef94efaq-support {
        flex-direction: column;
    }

    .zef94earticles-magazine {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zef94earticles-magazine .zef94earticle-card:first-child {
        grid-template-columns: 1fr;
    }

    .zef94earticles-magazine .zef94earticle-card:first-child .zef94earticle-thumb {
        max-height: 200px;
    }

    .zef94efaq-main {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .zef94eredesign-hero-title {
        font-size: 1.6em;
    }

    .zef94eredesign-hero-desc {
        font-size: 0.95em;
    }

    .zef94eredesign-hero-actions {
        flex-direction: column;
    }

    .zef94eredesign-hero-actions .zef94ebtn {
        width: 100%;
    }

    .zef94earticles-magazine {
        grid-template-columns: 1fr;
    }

    .zef94esection-head--left,
    .zef94esection-title--left {
        text-align: left;
    }
}