/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.ze65fdcontainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.ze65fdheader {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.ze65fdheader .ze65fdcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    padding: 0 20px;
}

.ze65fdlogo {
    font-size: 24px;
    color: #1a73e8;
    font-weight: bold;
}

.ze65fdmenu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    background: none;
    border: none;
}

.ze65fdmenu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.ze65fdmenu-toggle.ze65fdactive span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.ze65fdmenu-toggle.ze65fdactive span:nth-child(2) {
    opacity: 0;
}

.ze65fdmenu-toggle.ze65fdactive span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.ze65fdnav {
    display: flex;
    align-items: center;
}

.ze65fdnav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ze65fdnav ul li {
    margin-left: 30px;
}

.ze65fdnav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
    display: block;
    padding: 5px 0;
}

.ze65fdnav ul li a:hover {
    color: #1a73e8;
}

/* 响应式导航样式 */
@media (max-width: 1200px) {
    .ze65fdcontainer {
        max-width: 960px;
        padding: 0 15px;
    }

    .ze65fdhero {
        padding: 140px 0 80px;
    }

    .ze65fdhero-content h2 {
        font-size: 42px;
    }

    .ze65fdhero-content p {
        font-size: 20px;
    }

    .ze65fdservice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ze65fdadvantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .ze65fdcontainer {
        max-width: 720px;
    }

    /* 导航栏 */
    .ze65fdheader .ze65fdcontainer {
        height: 70px;
    }

    .ze65fdlogo {
        font-size: 22px;
    }

    .ze65fdmenu-toggle {
        display: flex;
    }

    .ze65fdnav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 70px;
    }

    .ze65fdnav.ze65fdactive {
        right: 0;
    }

    .ze65fdnav ul {
        flex-direction: column;
        padding: 0;
    }

    .ze65fdnav ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .ze65fdnav ul li:last-child {
        border-bottom: none;
    }

    .ze65fdnav ul li a {
        padding: 15px 20px;
        font-size: 16px;
    }

    /* 英雄区域 */
    .ze65fdhero {
        padding: 120px 0 60px;
    }

    .ze65fdhero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ze65fdhero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .ze65fdhero-content h2 {
        font-size: 36px;
    }

    .ze65fdhero-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .ze65fdhero-features {
        justify-content: center;
        gap: 30px;
    }

    .ze65fdhero-image {
        min-height: 300px;
        max-width: 500px;
        margin: 0 auto;
    }

    /* 服务区域 */
    .ze65fdservice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ze65fdadvantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 流程区域 */
    .ze65fdprocess-wrapper {
        grid-template-columns: 1fr;
    }

    .ze65fdprocess-steps {
        grid-template-columns: 1fr;
    }

    /* 特点区域 */
    .ze65fdfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ区域 */
    .ze65fdfaq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 联系区域 */
    .ze65fdcontact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ze65fdcontact-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* 基础容器 */
    .ze65fdcontainer {
        width: 100%;
        padding: 0 15px;
        overflow-x: hidden;
    }

    /* 导航栏 */
    .ze65fdheader {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .ze65fdheader .ze65fdcontainer {
        height: 50px;
        padding: 0 15px;
    }

    .ze65fdnav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding: 60px 20px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .ze65fdnav.ze65fdactive {
        right: 0;
    }

    .ze65fdnav ul {
        flex-direction: column;
        padding: 0;
    }

    .ze65fdnav ul li {
        margin: 0;
        width: 100%;
    }

    .ze65fdnav ul li a {
        display: block;
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }

    /* 英雄区域 */
    .ze65fdhero {
        padding: 70px 0 40px;
        margin-top: 50px;
    }

    .ze65fdhero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .ze65fdhero-content {
        width: 100%;
        text-align: center;
    }

    .ze65fdhero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .ze65fdhero-feature-item {
        width: 100%;
        max-width: 300px;
    }

    .ze65fdhero-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* 服务区域 */
    .ze65fdservices {
        padding: 40px 0;
    }

    .ze65fdservice-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ze65fdservice-card {
        width: 100%;
        margin: 0;
    }

    /* 流程区域 */
    .ze65fdprocess {
        padding: 40px 0;
    }

    .ze65fdprocess-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .ze65fdprocess-steps {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ze65fdprocess-step {
        width: 100%;
    }

    /* 特点区域 */
    .ze65fdfeatures {
        padding: 40px 0;
    }

    .ze65fdfeatures-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ze65fdfeature-card {
        width: 100%;
    }

    /* FAQ区域 */
    .ze65fdfaq {
        padding: 40px 0;
    }

    .ze65fdfaq-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ze65fdfaq-card {
        width: 100%;
    }

    /* 联系区域 */
    .ze65fdcontact {
        padding: 40px 0;
    }

    .ze65fdcontact-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ze65fdcontact-card {
        width: 100%;
    }

    .ze65fdcontact-form-wrapper {
        width: 100%;
    }

    .ze65fdform-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* 页脚 */
    .ze65fdfooter {
        padding: 30px 0 15px;
    }

    .ze65fdfooter-wrapper {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .ze65fdfooter-info,
    .ze65fdfooter-links,
    .ze65fdfooter-contact {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* 基础容器 */
    .ze65fdcontainer {
        padding: 0 10px;
    }

    /* 导航栏 */
    .ze65fdheader .ze65fdcontainer {
        height: 45px;
        padding: 0 10px;
    }

    .ze65fdnav {
        width: 90%;
        padding: 55px 15px 15px;
    }

    /* 英雄区域 */
    .ze65fdhero {
        padding: 60px 0 30px;
        margin-top: 45px;
    }

    .ze65fdhero-content h2 {
        font-size: 24px;
    }

    .ze65fdhero-content p {
        font-size: 14px;
    }

    .ze65fdhero-feature-item {
        max-width: 100%;
    }

    /* 服务区域 */
    .ze65fdservices {
        padding: 30px 0;
    }

    .ze65fdservice-card {
        padding: 15px;
    }

    .ze65fdservice-icon {
        height: 140px;
    }

    /* 流程区域 */
    .ze65fdprocess {
        padding: 30px 0;
    }

    .ze65fdprocess-step {
        padding: 15px;
    }

    /* 特点区域 */
    .ze65fdfeatures {
        padding: 30px 0;
    }

    .ze65fdfeature-card {
        padding: 15px;
    }

    /* FAQ区域 */
    .ze65fdfaq {
        padding: 30px 0;
    }

    .ze65fdfaq-card {
        padding: 15px;
    }

    /* 联系区域 */
    .ze65fdcontact {
        padding: 30px 0;
    }

    .ze65fdcontact-card {
        padding: 15px;
    }

    .ze65fdcontact-form-wrapper {
        padding: 15px;
    }

    .ze65fdform-group {
        gap: 10px;
    }

    /* 页脚 */
    .ze65fdfooter {
        padding: 25px 0 12px;
    }

    .ze65fdfooter-wrapper {
        gap: 20px;
    }
}

/* 防止页面滚动 */
body.ze65fdnav-open {
    overflow: hidden;
}

/* 导航遮罩层 */
.ze65fdnav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.ze65fdnav-overlay.ze65fdactive {
    display: block;
}

/* 英雄区域样式 */
.ze65fdhero {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    padding: 160px 0 100px;
    overflow: hidden;
}

.ze65fdhero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ze65fdhero-content {
    text-align: left;
}

.ze65fdhero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ze65fdhero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.ze65fdhero-features {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.ze65fdhero-feature-item {
    text-align: center;
}

.ze65fdfeature-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ze65fdfeature-text {
    font-size: 18px;
}

.ze65fdhero-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ze65fdhero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 按钮样式 */
.ze65fdbtn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin: 0 10px;
}

.ze65fdbtn-primary {
    background-color: #fff;
    color: #1a73e8;
}

.ze65fdbtn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.ze65fdbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 服务区域样式 */
.ze65fdservices {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.ze65fdsection-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a73e8;
    position: relative;
    padding-bottom: 15px;
}

.ze65fdsection-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1a73e8;
    border-radius: 3px;
}

.ze65fdservices-intro {
    text-align: center;
    margin-bottom: 50px;
}

.ze65fdintro-text {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.ze65fdservice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ze65fdservice-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.ze65fdservice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ze65fdservice-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.ze65fdservice-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 10px;
}

.ze65fdservice-card:hover .ze65fdservice-icon img {
    transform: scale(1.05);
}

.ze65fdservice-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

.ze65fdservice-tag {
    background: rgba(26, 115, 232, 0.9);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.ze65fdservice-content {
    padding: 30px;
}

.ze65fdservice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ze65fdservice-header h3 {
    color: #1a73e8;
    font-size: 24px;
    margin: 0;
}

.ze65fdservice-badge {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
}

.ze65fdservice-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.ze65fdservice-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.ze65fddetail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ze65fddetail-label {
    color: #666;
    font-size: 14px;
}

.ze65fddetail-value {
    color: #1a73e8;
    font-weight: bold;
    font-size: 16px;
}

.ze65fdservice-features {
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
}

.ze65fdservice-features h4 {
    color: #1a73e8;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ze65fdservice-features h4:before {
    content: "✓";
    color: #1a73e8;
    font-weight: bold;
}

.ze65fdservice-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.ze65fdservice-features ul li {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.ze65fdservice-features ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #1a73e8;
    font-weight: bold;
}

.ze65fdservice-cta {
    display: flex;
    gap: 15px;
}

.ze65fdservice-cta .ze65fdbtn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
}

.ze65fdbtn-outline {
    background: transparent;
    border: 2px solid #1a73e8;
    color: #1a73e8;
}

.ze65fdbtn-outline:hover {
    background: #1a73e8;
    color: #fff;
}

/* 服务优势样式 */
.ze65fdservice-advantages {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.ze65fdservice-advantages h3 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.ze65fdservice-advantages h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1a73e8;
    border-radius: 3px;
}

.ze65fdadvantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.ze65fdadvantage-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ze65fdadvantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ze65fdadvantage-icon {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    padding: 25px;
    text-align: center;
    color: #fff;
}

.ze65fdadvantage-icon .ze65fdicon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.ze65fdadvantage-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ze65fdadvantage-content h4 {
    color: #1a73e8;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.ze65fdadvantage-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ze65fdadvantage-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.ze65fdadvantage-features li {
    color: #555;
    font-size: 14px;
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.ze65fdadvantage-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

/* 统计数据样式 */
.ze65fdadvantages-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border-radius: 15px;
    color: #fff;
}

.ze65fdstat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.ze65fdstat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.ze65fdstat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.ze65fdstat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* 贷款流程样式 */
.ze65fdprocess {
    padding: 100px 0;
    background-color: #fff;
}

.ze65fdprocess-intro {
    text-align: center;
    margin-bottom: 50px;
}

.ze65fdprocess-intro .ze65fdintro-text {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.ze65fdprocess-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.ze65fdprocess-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ze65fdprocess-step {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.ze65fdprocess-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ze65fdstep-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.ze65fdstep-content h3 {
    color: #1a73e8;
    font-size: 20px;
    margin-bottom: 10px;
}

.ze65fdstep-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
}

.ze65fdstep-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze65fdstep-details li {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}

.ze65fdstep-icon {
    margin-right: 10px;
    font-size: 18px;
}

.ze65fdprocess-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ze65fdprocess-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    max-height: 500px;
}

.ze65fdprocess-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 115, 232, 0.9), rgba(13, 71, 161, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ze65fdprocess-image:hover .ze65fdprocess-overlay {
    opacity: 1;
}

.ze65fdoverlay-content {
    text-align: center;
    color: #fff;
    padding: 30px;
}

.ze65fdoverlay-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.ze65fdoverlay-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.ze65fdoverlay-content .ze65fdbtn {
    background: #fff;
    color: #1a73e8;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.ze65fdoverlay-content .ze65fdbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ze65fdprocess-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.ze65fdfeature-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ze65fdfeature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ze65fdfeature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.ze65fdfeature-item h4 {
    color: #1a73e8;
    font-size: 18px;
    margin-bottom: 10px;
}

.ze65fdfeature-item p {
    color: #666;
    font-size: 14px;
}

/* 特点区域样式 */
.ze65fdfeatures {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.ze65fdfeatures-intro {
    text-align: center;
    margin-bottom: 50px;
}

.ze65fdfeatures-intro .ze65fdintro-text {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.ze65fdfeatures-wrapper {
    margin-bottom: 60px;
}

.ze65fdfeatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ze65fdfeature-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.ze65fdfeature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ze65fdfeature-icon {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    padding: 25px;
    text-align: center;
    color: #fff;
}

.ze65fdfeature-icon .ze65fdicon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.ze65fdfeature-content {
    padding: 25px;
}

.ze65fdfeature-content h3 {
    color: #1a73e8;
    font-size: 20px;
    margin-bottom: 10px;
}

.ze65fdfeature-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.ze65fdfeature-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.ze65fdfeature-details li {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}

.ze65fddetail-icon {
    color: #1a73e8;
    margin-right: 10px;
    font-weight: bold;
}

.ze65fdfeature-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.ze65fdstat {
    text-align: center;
}

.ze65fdstat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 5px;
}

.ze65fdstat-label {
    font-size: 14px;
    color: #666;
}

.ze65fdfeatures-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border-radius: 15px;
    color: #fff;
}

.ze65fdhighlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ze65fdhighlight-icon {
    font-size: 32px;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ze65fdhighlight-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.ze65fdhighlight-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* FAQ样式 */
.ze65fdfaq {
    padding: 100px 0;
    background-color: #fff;
}

.ze65fdfaq-intro {
    text-align: center;
    margin-bottom: 50px;
}

.ze65fdfaq-intro .ze65fdintro-text {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.ze65fdfaq-wrapper {
    margin-bottom: 60px;
}

.ze65fdfaq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ze65fdfaq-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.ze65fdfaq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ze65fdfaq-header {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ze65fdfaq-icon {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ze65fdfaq-header h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    flex: 1;
}

.ze65fdfaq-content {
    padding: 20px;
}

.ze65fdfaq-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ze65fdfaq-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze65fdfaq-details li {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}

.ze65fddetail-icon {
    color: #1a73e8;
    margin-right: 10px;
    font-weight: bold;
}

.ze65fdfaq-contact {
    margin-top: 50px;
}

.ze65fdcontact-card {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border-radius: 15px;
    padding: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.ze65fdcontact-icon {
    font-size: 36px;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ze65fdcontact-content {
    flex: 1;
}

.ze65fdcontact-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.ze65fdcontact-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.ze65fdcontact-content .ze65fdbtn {
    background: #fff;
    color: #1a73e8;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.ze65fdcontact-content .ze65fdbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 联系区域样式 */
.ze65fdcontact {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.ze65fdcontact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.ze65fdcontact-intro .ze65fdintro-text {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.ze65fdcontact-wrapper {
    margin-bottom: 60px;
}

.ze65fdcontact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.ze65fdcontact-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.ze65fdcontact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ze65fdcontact-icon {
    font-size: 36px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #fff;
}

.ze65fdcontact-content h3 {
    color: #1a73e8;
    font-size: 20px;
    margin-bottom: 10px;
}

.ze65fdcontact-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
}

.ze65fdcontact-time {
    color: #999;
    font-size: 14px;
}

.ze65fdcontact-form-wrapper {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
}

.ze65fdform-header {
    text-align: center;
    margin-bottom: 30px;
}

.ze65fdform-header h3 {
    color: #1a73e8;
    font-size: 24px;
    margin-bottom: 10px;
}

.ze65fdform-header p {
    color: #666;
    font-size: 16px;
}

.ze65fdcontact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ze65fdform-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ze65fdform-group:last-child {
    grid-template-columns: 1fr;
}

.ze65fdcontact-form input,
.ze65fdcontact-form select,
.ze65fdcontact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ze65fdcontact-form input:focus,
.ze65fdcontact-form select:focus,
.ze65fdcontact-form textarea:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.1);
    outline: none;
}

.ze65fdcontact-form textarea {
    height: 150px;
    resize: vertical;
}

.ze65fdcontact-form button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border-radius: 8px;
}

.ze65fdcontact-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.ze65fdcontact-features .ze65fdfeature-item {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ze65fdcontact-features .ze65fdfeature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ze65fdcontact-features .ze65fdfeature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.ze65fdcontact-features h4 {
    color: #1a73e8;
    font-size: 18px;
    margin-bottom: 10px;
}

.ze65fdcontact-features p {
    color: #666;
    font-size: 14px;
}

/* 针对超小屏幕的优化 */
@media (max-width: 360px) {
    .ze65fdcontainer {
        padding: 0 10px;
    }

    .ze65fdcontact-card {
        padding: 15px;
    }

    .ze65fdcontact-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .ze65fdcontact-content h3 {
        font-size: 15px;
    }

    .ze65fdcontact-content p {
        font-size: 13px;
    }

    .ze65fdcontact-form-wrapper {
        padding: 15px;
    }

    .ze65fdform-header h3 {
        font-size: 16px;
    }

    .ze65fdform-header p {
        font-size: 13px;
    }

    .ze65fdcontact-form input,
    .ze65fdcontact-form select,
    .ze65fdcontact-form textarea {
        padding: 8px;
        font-size: 13px;
    }

    .ze65fdcontact-form button {
        padding: 8px;
        font-size: 14px;
    }
}

/* 页脚样式 */
.ze65fdfooter {
    background: #1a1a1a;
    color: #fff;
    padding: 30px 0 15px;
}

.ze65fdfooter-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ze65fdfooter-info {
    padding-right: 20px;
}

.ze65fdfooter-logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
    display: block;
}

.ze65fdfooter-desc {
    color: #999;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.ze65fdfooter-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze65fdfooter-contact li {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 13px;
    margin-bottom: 6px;
}

.ze65fdfooter-contact li i {
    margin-right: 8px;
    color: #1a73e8;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.ze65fdfooter-title {
    color: #fff;
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.ze65fdfooter-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #1a73e8;
}

.ze65fdfooter-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze65fdfooter-links li {
    margin-bottom: 6px;
}

.ze65fdfooter-links a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-block;
    padding: 2px 0;
}

.ze65fdfooter-links a:hover {
    color: #1a73e8;
    transform: translateX(5px);
}

.ze65fdfooter-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ze65fdfooter-bottom p {
    color: #999;
    font-size: 12px;
    margin: 0;
}

.ze65fdfooter-social {
    display: flex;
    gap: 15px;
}

.ze65fdfooter-social a {
    color: #999;
    font-size: 16px;
    transition: all 0.3s;
}

.ze65fdfooter-social a:hover {
    color: #1a73e8;
    transform: translateY(-2px);
}

/* 页脚响应式样式 */
@media (max-width: 992px) {
    .ze65fdfooter {
        padding: 25px 0 12px;
    }

    .ze65fdfooter-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .ze65fdfooter-info {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }

    .ze65fdfooter-logo {
        margin-bottom: 10px;
    }

    .ze65fdfooter-desc {
        max-width: 500px;
        margin: 0 auto 12px;
    }

    .ze65fdfooter-contact {
        justify-content: center;
    }

    .ze65fdfooter-contact li {
        justify-content: center;
    }

    .ze65fdfooter-title {
        text-align: center;
    }

    .ze65fdfooter-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ze65fdfooter {
        padding: 20px 0 10px;
    }

    .ze65fdfooter-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ze65fdfooter-info {
        text-align: left;
    }

    .ze65fdfooter-desc {
        margin: 0 0 12px;
    }

    .ze65fdfooter-contact {
        justify-content: flex-start;
    }

    .ze65fdfooter-contact li {
        justify-content: flex-start;
    }

    .ze65fdfooter-title {
        text-align: left;
    }

    .ze65fdfooter-title:after {
        left: 0;
        transform: none;
    }

    .ze65fdfooter-bottom {
        flex-direction: column;
        text-align: center;
    }

    .ze65fdfooter-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ze65fdfooter {
        padding: 15px 0 10px;
    }

    .ze65fdfooter-wrapper {
        gap: 15px;
    }

    .ze65fdfooter-logo {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .ze65fdfooter-desc {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .ze65fdfooter-contact li {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .ze65fdfooter-title {
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }

    .ze65fdfooter-links li {
        margin-bottom: 5px;
    }

    .ze65fdfooter-links a {
        font-size: 12px;
    }

    .ze65fdfooter-bottom {
        padding-top: 10px;
    }

    .ze65fdfooter-bottom p {
        font-size: 11px;
    }

    .ze65fdfooter-social {
        gap: 12px;
    }

    .ze65fdfooter-social a {
        font-size: 14px;
    }
}

/* ========== 导航扩展 ========== */
.ze65fdlogo a {
    color: #1a73e8;
    text-decoration: none;
}

.ze65fdnav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
}

.ze65fdnav-item {
    margin-left: 24px;
}

.ze65fdnav-item a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    transition: color 0.3s;
}

.ze65fdnav-item a:hover,
.ze65fdnav-item.ze65fdthis a {
    color: #1a73e8;
}

/* ========== 内页通用布局 ========== */
.ze65fdpage-main {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 60vh;
}

.ze65fdbreadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ze65fdbreadcrumb a {
    color: #1a73e8;
    text-decoration: none;
}

.ze65fdbreadcrumb a:hover {
    text-decoration: underline;
}

.ze65fdbreadcrumb-sep {
    margin: 0 8px;
    color: #ccc;
}

.ze65fdbreadcrumb-current {
    color: #333;
}

.ze65fdpage-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.ze65fdpage-content {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 35px;
}

.ze65fdpage-head {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.ze65fdpage-title {
    font-size: 28px;
    color: #1a73e8;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ze65fdpage-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* ========== 列表页 ========== */
.ze65fdlist-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ze65fdlist-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}

.ze65fdlist-item:last-child {
    border-bottom: none;
}

.ze65fdlist-thumb {
    flex-shrink: 0;
    width: 220px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    background: #f0f0f0;
}

.ze65fdlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ze65fdlist-thumb:hover img {
    transform: scale(1.05);
}

.ze65fdlist-body {
    flex: 1;
    min-width: 0;
}

.ze65fdlist-title {
    font-size: 20px;
    margin: 0 0 12px;
    line-height: 1.4;
}

.ze65fdlist-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.ze65fdlist-title a:hover {
    color: #1a73e8;
}

.ze65fdlist-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.ze65fdlist-meta a {
    color: #1a73e8;
    text-decoration: none;
}

.ze65fdlist-intro {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.ze65fdlist-more {
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.ze65fdlist-more:hover {
    text-decoration: underline;
}

/* 分页左右布局 */
.ze65fdpagebar {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.ze65fdpagebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.ze65fdpagebar-prev,
.ze65fdpagebar-next {
    flex: 0 0 auto;
    min-width: 100px;
}

.ze65fdpagebar-prev {
    text-align: left;
}

.ze65fdpagebar-next {
    text-align: right;
}

.ze65fdpagebar-center {
    flex: 1;
    text-align: center;
}

.ze65fdpagebar-center ul,
.ze65fdpagebar-prev ul,
.ze65fdpagebar-next ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.ze65fdpagebar a,
.ze65fdpagebar span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    background: #f5f5f5;
    transition: all 0.3s;
}

.ze65fdpagebar a:hover {
    background: #1a73e8;
    color: #fff;
}

/* ========== 内容页 ========== */
.ze65fdarticle-title {
    font-size: 30px;
    color: #222;
    line-height: 1.4;
    margin-bottom: 16px;
}

.ze65fdarticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 14px;
    color: #999;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}

.ze65fdarticle-meta a {
    color: #1a73e8;
    text-decoration: none;
}

.ze65fdarticle-thumb {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    background: #f8f9fa;
}

.ze65fdarticle-thumb img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ze65fdarticle-body {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    word-break: break-word;
}

.ze65fdarticle-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}

.ze65fdarticle-body p {
    margin-bottom: 16px;
}

.ze65fdarticle-gallery {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed #eee;
}

.ze65fdarticle-gallery p {
    margin-bottom: 20px;
}

.ze65fdarticle-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.ze65fdarticle-gallery span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.ze65fddiyfield {
    margin-top: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.ze65fdmeta-tags {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ze65fdtagitem a {
    display: inline-block;
    padding: 6px 14px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.ze65fdtagitem a:hover {
    background: #1a73e8;
    color: #fff;
}

.ze65fdarticle-navlinks {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.ze65fdarticle-prev,
.ze65fdarticle-next {
    flex: 1;
    max-width: 48%;
}

.ze65fdarticle-prev a,
.ze65fdarticle-next a {
    color: #1a73e8;
    text-decoration: none;
}

.ze65fdarticle-next {
    text-align: right;
}

.ze65fdrelated {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.ze65fdrelated-title {
    font-size: 22px;
    color: #1a73e8;
    margin-bottom: 24px;
}

.ze65fdrelated-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.ze65fdrelated-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ze65fdrelated-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.ze65fdrelated-thumb {
    display: block;
    height: 130px;
    overflow: hidden;
    background: #e0e0e0;
}

.ze65fdrelated-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ze65fdrelated-body {
    padding: 14px;
}

.ze65fdrelated-body h4 {
    font-size: 15px;
    margin: 0 0 8px;
    line-height: 1.4;
}

.ze65fdrelated-body h4 a {
    color: #333;
    text-decoration: none;
}

.ze65fdrelated-body h4 a:hover {
    color: #1a73e8;
}

.ze65fdrelated-body p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ========== 侧栏 ========== */
.ze65fdsidebar {
    position: sticky;
    top: 100px;
}

.ze65fdsidebar-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 22px;
    margin-bottom: 24px;
}

.ze65fdsidebar-box:last-child {
    margin-bottom: 0;
}

.ze65fdsidebar-title {
    font-size: 18px;
    color: #1a73e8;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f0fe;
}

.ze65fdsidebar-title a {
    color: inherit;
    text-decoration: none;
}

.ze65fdsidebar-title a:hover {
    opacity: 0.85;
}

.ze65fdsidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 520px;
    overflow-y: auto;
}

.ze65fdsidebar-item {
    border-bottom: 1px solid #f0f0f0;
}

.ze65fdsidebar-item:last-child {
    border-bottom: none;
}

.ze65fdsidebar-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s;
}

.ze65fdsidebar-item a:hover {
    color: #1a73e8;
}

.ze65fdsidebar-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ze65fdsidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ze65fdsidebar-text {
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 首页资讯板块 ========== */
.ze65fdhome-articles {
    padding: 100px 0;
    background: #fff;
}

.ze65fdhome-articles-intro {
    text-align: center;
    margin-bottom: 50px;
}

.ze65fdhome-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.ze65fdhome-article-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ze65fdhome-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ze65fdhome-article-thumb {
    display: block;
    height: 140px;
    overflow: hidden;
    background: #f0f0f0;
}

.ze65fdhome-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ze65fdhome-article-card:hover .ze65fdhome-article-thumb img {
    transform: scale(1.06);
}

.ze65fdhome-article-info {
    padding: 16px;
}

.ze65fdhome-article-info h3 {
    font-size: 15px;
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ze65fdhome-article-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.ze65fdhome-article-info h3 a:hover {
    color: #1a73e8;
}

.ze65fdhome-article-date {
    font-size: 12px;
    color: #999;
}

/* ========== 内页与资讯板块响应式 ========== */
@media (max-width: 1200px) {
    .ze65fdhome-articles-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ze65fdpage-layout {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 992px) {
    .ze65fdpage-main {
        padding: 100px 0 60px;
    }

    .ze65fdpage-layout {
        grid-template-columns: 1fr;
    }

    .ze65fdsidebar {
        position: static;
    }

    .ze65fdhome-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ze65fdnav-item {
        margin-left: 0;
    }

    .ze65fdlist-item {
        flex-direction: column;
    }

    .ze65fdlist-thumb {
        width: 100%;
        height: 200px;
    }

    .ze65fdpagebar {
        flex-direction: column;
        align-items: stretch;
    }

    .ze65fdpagebar-prev,
    .ze65fdpagebar-next {
        text-align: center;
        min-width: auto;
    }

    .ze65fdarticle-navlinks {
        flex-direction: column;
    }

    .ze65fdarticle-prev,
    .ze65fdarticle-next {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .ze65fdpage-main {
        padding: 80px 0 40px;
    }

    .ze65fdpage-content {
        padding: 22px 18px;
    }

    .ze65fdpage-title,
    .ze65fdarticle-title {
        font-size: 22px;
    }

    .ze65fdhome-articles {
        padding: 50px 0;
    }

    .ze65fdhome-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ze65fdhome-article-thumb {
        height: 120px;
    }

    .ze65fdrelated-list {
        grid-template-columns: 1fr 1fr;
    }

    .ze65fdsidebar-list {
        max-height: 360px;
    }
}

@media (max-width: 480px) {
    .ze65fdhome-articles-grid {
        grid-template-columns: 1fr;
    }

    .ze65fdlist-thumb {
        height: 160px;
    }

    .ze65fdrelated-list {
        grid-template-columns: 1fr;
    }

    .ze65fdbreadcrumb {
        font-size: 12px;
    }
}
