/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.zd9405container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.zd9405header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.zd9405header .zd9405container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.zd9405logo {
    font-size: 24px;
    color: #2c3e50;
    font-weight: bold;
}

.zd9405main-nav ul {
    display: flex;
    list-style: none;
}

.zd9405main-nav li {
    margin-left: 30px;
}

.zd9405main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.zd9405main-nav a:hover {
    color: #3498db;
}

/* 移动端菜单按钮 */
.zd9405menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 20px;
    color: #2c3e50;
    padding: 5px;
    z-index: 1001;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.zd9405menu-toggle:hover {
    background-color: #f8f9fa;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zd9405menu-toggle {
        display: flex;
    }

    .zd9405main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: #fff;
        padding: 60px 15px 20px;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .zd9405main-nav.active {
        right: 0;
    }

    .zd9405main-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        z-index: -1;
    }

    .zd9405main-nav.active::before {
        opacity: 1;
        visibility: visible;
    }

    .zd9405main-nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .zd9405main-nav li {
        margin: 5px 0;
    }

    .zd9405main-nav a {
        display: block;
        padding: 10px;
        font-size: 15px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .zd9405main-nav a:hover {
        background: #f8f9fa;
        color: #3498db;
    }

    .zd9405header .zd9405container {
        padding: 10px 15px;
    }

    .zd9405logo {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .zd9405header .zd9405container {
        padding: 8px 12px;
    }

    .zd9405logo {
        font-size: 16px;
    }

    .zd9405main-nav {
        width: 75%;
        padding: 50px 12px 15px;
    }

    .zd9405main-nav a {
        padding: 8px;
        font-size: 14px;
    }

    .zd9405menu-toggle {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
}

/* 英雄区域样式 */
.zd9405hero {
    position: relative;
    background: url('images/kongf.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 0;
    overflow: hidden;
    min-height: 500px;
}

.zd9405hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.zd9405hero .zd9405container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.zd9405hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.zd9405hero-text {
    text-align: center;
}

.zd9405hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.zd9405hero h2 span {
    color: #3498db;
    position: relative;
    display: inline-block;
}

.zd9405hero h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.zd9405hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.zd9405hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zd9405stat-item {
    text-align: center;
    padding: 0;
    background: none;
    border: none;
}

.zd9405stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #3498db;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.zd9405stat-text {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.4;
    font-weight: 500;
}

.zd9405cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.zd9405btn {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 160px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.zd9405btn-primary {
    background-color: #3498db;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.zd9405btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.zd9405btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.zd9405hero-image {
    display: none;
}

/* 服务项目样式 */
.zd9405services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.zd9405services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zd9405section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.zd9405section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.zd9405service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.zd9405service-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    pointer-events: none;
}

.zd9405service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e0e0e0;
    padding: 5px;
}

.zd9405service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #3498db;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zd9405service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zd9405service-card:hover::before {
    opacity: 1;
}

.zd9405service-card .zd9405card-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.zd9405service-card h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.zd9405service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.zd9405service-card:hover h3::after {
    width: 80px;
}

.zd9405service-card p {
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
}

.zd9405service-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.zd9405service-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.zd9405service-features li:last-child {
    margin-bottom: 0;
}

.zd9405service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.zd9405service-card .zd9405service-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    font-size: 24px;
}

.zd9405service-card:hover .zd9405service-icon {
    background: #3498db;
    color: white;
    transform: scale(1.1);
    border-color: #3498db;
}

.zd9405service-card .zd9405service-amount {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 0 auto 20px;
    color: #3498db;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.zd9405service-card .zd9405service-time {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.zd9405service-card .zd9405service-time::before {
    content: "⏱";
    margin-right: 5px;
}

@media (max-width: 1200px) {
    .zd9405service-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        padding: 0 15px;
    }

    .zd9405service-card {
        margin: 0 5px;
    }
}

@media (max-width: 992px) {
    .zd9405services {
        padding: 80px 0;
    }

    .zd9405section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .zd9405service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 12px;
    }

    .zd9405service-card h3 {
        font-size: 20px;
    }

    .zd9405service-features li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .zd9405services {
        padding: 60px 0;
    }

    .zd9405section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .zd9405service-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }

    .zd9405service-card {
        margin: 0;
    }

    .zd9405service-card h3 {
        font-size: 18px;
    }

    .zd9405service-features li {
        font-size: 13px;
        padding-left: 25px;
    }

    .zd9405service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .zd9405services {
        padding: 40px 0;
    }

    .zd9405section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .zd9405service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .zd9405service-card {
        margin: 0;
    }

    .zd9405service-card h3 {
        font-size: 16px;
    }

    .zd9405service-features li {
        font-size: 12px;
        padding-left: 20px;
    }

    .zd9405service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* 服务优势样式 */
.zd9405features {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.zd9405features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2ecc71, #3498db);
}

.zd9405feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.zd9405feature-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    pointer-events: none;
}

.zd9405feature-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e0e0e0;
    padding: 5px;
}

.zd9405feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #2ecc71;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zd9405feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zd9405feature-item:hover::before {
    opacity: 1;
}

.zd9405feature-item .zd9405feature-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.zd9405feature-item h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.zd9405feature-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #2ecc71;
    transition: width 0.3s ease;
}

.zd9405feature-item:hover h3::after {
    width: 80px;
}

.zd9405feature-item p {
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
}

.zd9405feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.zd9405feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.zd9405feature-list li:last-child {
    margin-bottom: 0;
}

.zd9405feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 16px;
}

.zd9405feature-item .zd9405feature-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    font-size: 32px;
}

.zd9405feature-item:hover .zd9405feature-icon {
    background: #2ecc71;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: #2ecc71;
}

.zd9405feature-item .zd9405feature-tag {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 0 auto 20px;
    color: #2ecc71;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.zd9405feature-item .zd9405feature-note {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.zd9405feature-item .zd9405feature-note::before {
    content: "💡";
    margin-right: 5px;
}

@media (max-width: 1200px) {
    .zd9405feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .zd9405features {
        padding: 80px 0;
    }

    .zd9405feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .zd9405feature-item h3 {
        font-size: 22px;
    }

    .zd9405feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .zd9405features {
        padding: 60px 0;
    }

    .zd9405feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }

    .zd9405feature-item {
        margin: 0 10px;
    }

    .zd9405feature-item h3 {
        font-size: 20px;
    }

    .zd9405feature-list li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zd9405features {
        padding: 40px 0;
    }

    .zd9405feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zd9405feature-item {
        margin: 0 15px;
    }
}

/* 办理流程样式 */
.zd9405process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.zd9405process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zd9405process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.zd9405process-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    pointer-events: none;
}

.zd9405process-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e0e0e0;
    padding: 5px;
}

.zd9405process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #3498db;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zd9405process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zd9405process-item:hover::before {
    opacity: 1;
}

.zd9405process-item .zd9405process-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.zd9405process-item .zd9405process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.zd9405process-item:hover .zd9405process-number {
    transform: scale(1.1) rotate(5deg);
}

.zd9405process-item h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.zd9405process-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.zd9405process-item:hover h3::after {
    width: 80px;
}

.zd9405process-item p {
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
}

.zd9405process-details {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.zd9405process-details li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.zd9405process-details li:last-child {
    margin-bottom: 0;
}

.zd9405process-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 16px;
}

.zd9405process-item .zd9405process-time {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.zd9405process-item .zd9405process-time::before {
    content: "⏱";
    margin-right: 5px;
}

.zd9405process-item .zd9405process-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    font-size: 32px;
}

.zd9405process-item:hover .zd9405process-icon {
    background: #3498db;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: #3498db;
}

@media (max-width: 1200px) {
    .zd9405process-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .zd9405process {
        padding: 80px 0;
    }

    .zd9405process-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .zd9405process-item h3 {
        font-size: 22px;
    }

    .zd9405process-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .zd9405process {
        padding: 60px 0;
    }

    .zd9405process-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }

    .zd9405process-item {
        margin: 0 10px;
    }

    .zd9405process-item h3 {
        font-size: 20px;
    }

    .zd9405process-details li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zd9405process {
        padding: 40px 0;
    }

    .zd9405process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zd9405process-item {
        margin: 0 15px;
    }
}

/* FAQ样式 */
.zd9405faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.zd9405faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zd9405faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.zd9405faq-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    pointer-events: none;
}

.zd9405faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e0e0e0;
    padding: 5px;
}

.zd9405faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #3498db;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zd9405faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zd9405faq-item:hover::before {
    opacity: 1;
}

.zd9405faq-item .zd9405faq-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.zd9405faq-item .zd9405faq-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    font-size: 28px;
}

.zd9405faq-item:hover .zd9405faq-icon {
    background: #3498db;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: #3498db;
}

.zd9405faq-item h3 {
    color: #2c3e50;
    font-size: 22px;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.zd9405faq-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.zd9405faq-item:hover h3::after {
    width: 80px;
}

.zd9405faq-item p {
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
}

.zd9405faq-details {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.zd9405faq-details li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.zd9405faq-details li:last-child {
    margin-bottom: 0;
}

.zd9405faq-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.zd9405faq-item .zd9405faq-tag {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 0 auto 20px;
    color: #3498db;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.zd9405faq-item .zd9405faq-note {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.zd9405faq-item .zd9405faq-note::before {
    content: "💡";
    margin-right: 5px;
}

@media (max-width: 1200px) {
    .zd9405faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .zd9405faq {
        padding: 80px 0;
    }

    .zd9405faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .zd9405faq-item h3 {
        font-size: 20px;
    }

    .zd9405faq-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .zd9405faq {
        padding: 60px 0;
    }

    .zd9405faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .zd9405faq-item {
        margin: 0 10px;
    }

    .zd9405faq-item h3 {
        font-size: 18px;
    }

    .zd9405faq-details li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zd9405faq {
        padding: 40px 0;
    }

    .zd9405faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zd9405faq-item {
        margin: 0 15px;
    }
}

/* 成功案例样式 */
.zd9405cases {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.zd9405cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zd9405case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.zd9405case-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    pointer-events: none;
}

.zd9405case-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e0e0e0;
    padding: 5px;
}

.zd9405case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #3498db;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zd9405case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zd9405case-item:hover::before {
    opacity: 1;
}

.zd9405case-item .zd9405case-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.zd9405case-item .zd9405case-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    font-size: 28px;
}

.zd9405case-item:hover .zd9405case-icon {
    background: #3498db;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: #3498db;
}

.zd9405case-item .zd9405case-tag {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 0 auto 20px;
    color: #3498db;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.zd9405case-item h3 {
    color: #2c3e50;
    font-size: 22px;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.zd9405case-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.zd9405case-item:hover h3::after {
    width: 80px;
}

.zd9405case-details {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.zd9405case-details li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.zd9405case-details li:last-child {
    margin-bottom: 0;
}

.zd9405case-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 16px;
}

.zd9405case-item .zd9405case-note {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.zd9405case-item .zd9405case-note::before {
    content: "💡";
    margin-right: 5px;
}

@media (max-width: 1200px) {
    .zd9405case-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .zd9405cases {
        padding: 80px 0;
    }

    .zd9405case-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .zd9405case-item h3 {
        font-size: 20px;
    }

    .zd9405case-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .zd9405cases {
        padding: 60px 0;
    }

    .zd9405case-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .zd9405case-item {
        margin: 0 10px;
    }

    .zd9405case-item h3 {
        font-size: 18px;
    }

    .zd9405case-details li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zd9405cases {
        padding: 40px 0;
    }

    .zd9405case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zd9405case-item {
        margin: 0 15px;
    }
}

/* 行业资讯样式 */
.zd9405news {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.zd9405news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zd9405news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 15px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.zd9405news-grid::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    bottom: -10px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    pointer-events: none;
}

.zd9405news-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
    padding: 2px;
    width: 100%;
}

.zd9405news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #3498db;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zd9405news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.zd9405news-item:hover::before {
    opacity: 1;
}

.zd9405news-item .zd9405news-content {
    background: white;
    border-radius: 8px;
    padding: 15px;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.zd9405news-item .zd9405news-icon {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.zd9405news-item:hover .zd9405news-icon {
    background: #3498db;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: #3498db;
}

.zd9405news-item .zd9405news-tag {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    margin: 0 auto 10px;
    color: #3498db;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
    width: auto;
    min-width: 80px;
    box-sizing: border-box;
}

.zd9405news-item h3 {
    color: #2c3e50;
    font-size: 16px;
    margin: 0 0 10px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    line-height: 1.4;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zd9405news-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.zd9405news-item:hover h3::after {
    width: 40px;
}

.zd9405news-item .zd9405news-date {
    color: #666;
    font-size: 12px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
}

.zd9405news-item .zd9405news-date::before {
    content: "📅";
    margin-right: 4px;
}

.zd9405news-item .zd9405news-content p {
    color: #666;
    line-height: 1.5;
    font-size: 13px;
    margin: 0 0 10px;
    text-align: center;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.zd9405news-item .zd9405news-highlights {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zd9405news-item .zd9405news-highlights li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 12px;
    line-height: 1.3;
    height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zd9405news-item .zd9405news-highlights li:last-child {
    margin-bottom: 0;
}

.zd9405news-item .zd9405news-highlights li:before {
    content: "📌";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 12px;
}

.zd9405news-item .zd9405news-note {
    color: #666;
    font-size: 11px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    height: 20px;
}

.zd9405news-item .zd9405news-note::before {
    content: "💡";
    margin-right: 4px;
}

@media (max-width: 1200px) {
    .zd9405news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 12px;
    }
}

@media (max-width: 992px) {
    .zd9405news {
        padding: 50px 0;
    }

    .zd9405news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .zd9405news-item h3 {
        font-size: 15px;
    }

    .zd9405news-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .zd9405news {
        padding: 40px 0;
    }

    .zd9405news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 8px;
    }

    .zd9405news-item {
        margin: 0 5px;
    }

    .zd9405news-item h3 {
        font-size: 14px;
    }

    .zd9405news-highlights li {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .zd9405news {
        padding: 30px 0;
    }

    .zd9405news-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }

    .zd9405news-item {
        margin: 0 8px;
    }
}

/* 贷款小贴士样式 */
.zd9405tips {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.zd9405tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00bcd4);
}

.zd9405tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.zd9405tip-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.zd9405tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.zd9405tip-item h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.zd9405tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zd9405tip-list li {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.zd9405tip-list li::before {
    content: '•';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 992px) {
    .zd9405tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .zd9405tip-item {
        padding: 15px;
    }
    
    .zd9405tip-item h3 {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .zd9405tip-list li {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .zd9405tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .zd9405tip-item {
        padding: 15px;
    }
}

/* 页脚样式 */
.zd9405footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.zd9405footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.zd9405footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.zd9405footer-section ul {
    list-style: none;
}

.zd9405footer-section ul li {
    margin-bottom: 10px;
}

.zd9405copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .zd9405hero h2 {
        font-size: 42px;
    }
    
    .zd9405hero p {
        font-size: 18px;
    }
    
    .zd9405stat-number {
        font-size: 32px;
    }

    .zd9405hero-stats {
        padding: 20px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .zd9405header .zd9405container {
        flex-direction: column;
        text-align: center;
    }

    .zd9405main-nav ul {
        margin-top: 20px;
        flex-direction: column;
    }

    .zd9405main-nav li {
        margin: 10px 0;
    }

    .zd9405hero h2 {
        font-size: 36px;
    }

    .zd9405hero p {
        font-size: 16px;
    }

    .zd9405hero-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
        gap: 15px;
    }
    
    .zd9405stat-number {
        font-size: 28px;
    }
    
    .zd9405btn {
        padding: 12px 24px;
        min-width: 120px;
        font-size: 14px;
    }

    .zd9405section-title {
        font-size: 28px;
    }

    .zd9405footer-content {
        text-align: center;
    }

    .zd9405footer-section ul {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .zd9405container {
        padding: 0 15px;
    }

    .zd9405hero h2 {
        font-size: 32px;
    }
    
    .zd9405hero p {
        font-size: 15px;
    }
    
    .zd9405hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 12px;
    }
    
    .zd9405stat-number {
        font-size: 24px;
    }
    
    .zd9405btn {
        width: 100%;
        max-width: 200px;
        padding: 10px 20px;
        font-size: 13px;
    }

    .zd9405cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
} 