/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.zcd8fdcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.zcd8fdheader {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.zcd8fdheader .zcd8fdcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.zcd8fdlogo {
    font-size: 24px;
    color: #2c3e50;
    font-weight: bold;
}

.zcd8fdmain-nav ul {
    display: flex;
    list-style: none;
}

.zcd8fdmain-nav li {
    margin-left: 30px;
}

.zcd8fdmain-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.zcd8fdmain-nav a:hover {
    color: #3498db;
}

/* 移动端菜单按钮 */
.zcd8fdmenu-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;
}

.zcd8fdmenu-toggle:hover {
    background-color: #f8f9fa;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zcd8fdmenu-toggle {
        display: flex;
    }

    .zcd8fdmain-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;
    }

    .zcd8fdmain-nav.active {
        right: 0;
    }

    .zcd8fdmain-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;
    }

    .zcd8fdmain-nav.active::before {
        opacity: 1;
        visibility: visible;
    }

    .zcd8fdmain-nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .zcd8fdmain-nav li {
        margin: 5px 0;
    }

    .zcd8fdmain-nav a {
        display: block;
        padding: 10px;
        font-size: 15px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .zcd8fdmain-nav a:hover {
        background: #f8f9fa;
        color: #3498db;
    }

    .zcd8fdheader .zcd8fdcontainer {
        padding: 10px 15px;
    }

    .zcd8fdlogo {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .zcd8fdheader .zcd8fdcontainer {
        padding: 8px 12px;
    }

    .zcd8fdlogo {
        font-size: 16px;
    }

    .zcd8fdmain-nav {
        width: 75%;
        padding: 50px 12px 15px;
    }

    .zcd8fdmain-nav a {
        padding: 8px;
        font-size: 14px;
    }

    .zcd8fdmenu-toggle {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
}

/* 英雄区域样式 */
.zcd8fdhero {
    position: relative;
    background: url('images/kongf.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 0;
    overflow: hidden;
    min-height: 500px;
}

.zcd8fdhero::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;
}

.zcd8fdhero .zcd8fdcontainer {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.zcd8fdhero-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
}

.zcd8fdhero-text {
    flex: 1 1 300px;
    max-width: 52%;
    text-align: left;
}

.zcd8fdhero 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);
}

.zcd8fdhero h2 span {
    color: #3498db;
    position: relative;
    display: inline-block;
}

.zcd8fdhero 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);
}

.zcd8fdhero 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;
}

.zcd8fdhero-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);
}

.zcd8fdstat-item {
    text-align: center;
    padding: 0;
    background: none;
    border: none;
}

.zcd8fdstat-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);
}

.zcd8fdstat-text {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.4;
    font-weight: 500;
}

.zcd8fdcta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: flex-start;
}

.zcd8fdbtn {
    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;
}

.zcd8fdbtn-primary {
    background-color: #3498db;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.zcd8fdbtn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.zcd8fdbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.zcd8fdhero-image {
    display: flex;
    flex: 0 1 42%;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.zcd8fdhero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

/* 服务项目样式 */
.zcd8fdservices {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.zcd8fdservices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zcd8fdsection-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.zcd8fdsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.zcd8fdservice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.zcd8fdservice-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    pointer-events: none;
}

.zcd8fdservice-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;
}

.zcd8fdservice-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;
}

.zcd8fdservice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zcd8fdservice-card:hover::before {
    opacity: 1;
}

.zcd8fdservice-card .zcd8fdcard-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.zcd8fdservice-card h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.zcd8fdservice-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.zcd8fdservice-card:hover h3::after {
    width: 80px;
}

.zcd8fdservice-card p {
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
}

.zcd8fdservice-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.zcd8fdservice-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.zcd8fdservice-features li:last-child {
    margin-bottom: 0;
}

.zcd8fdservice-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.zcd8fdservice-card .zcd8fdservice-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;
}

.zcd8fdservice-card:hover .zcd8fdservice-icon {
    background: #3498db;
    color: white;
    transform: scale(1.1);
    border-color: #3498db;
}

.zcd8fdservice-card .zcd8fdservice-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;
}

.zcd8fdservice-card .zcd8fdservice-time {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.zcd8fdservice-card .zcd8fdservice-time::before {
    content: "⏱";
    margin-right: 5px;
}

@media (max-width: 1200px) {
    .zcd8fdservice-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        padding: 0 15px;
    }

    .zcd8fdservice-card {
        margin: 0 5px;
    }
}

@media (max-width: 992px) {
    .zcd8fdservices {
        padding: 80px 0;
    }

    .zcd8fdsection-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .zcd8fdservice-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 12px;
    }

    .zcd8fdservice-card h3 {
        font-size: 20px;
    }

    .zcd8fdservice-features li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .zcd8fdservices {
        padding: 60px 0;
    }

    .zcd8fdsection-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .zcd8fdservice-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }

    .zcd8fdservice-card {
        margin: 0;
    }

    .zcd8fdservice-card h3 {
        font-size: 18px;
    }

    .zcd8fdservice-features li {
        font-size: 13px;
        padding-left: 25px;
    }

    .zcd8fdservice-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .zcd8fdservices {
        padding: 40px 0;
    }

    .zcd8fdsection-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .zcd8fdservice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .zcd8fdservice-card {
        margin: 0;
    }

    .zcd8fdservice-card h3 {
        font-size: 16px;
    }

    .zcd8fdservice-features li {
        font-size: 12px;
        padding-left: 20px;
    }

    .zcd8fdservice-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* 服务优势样式 */
.zcd8fdfeatures {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.zcd8fdfeatures::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2ecc71, #3498db);
}

.zcd8fdfeature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.zcd8fdfeature-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    pointer-events: none;
}

.zcd8fdfeature-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;
}

.zcd8fdfeature-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;
}

.zcd8fdfeature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zcd8fdfeature-item:hover::before {
    opacity: 1;
}

.zcd8fdfeature-item .zcd8fdfeature-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.zcd8fdfeature-item h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.zcd8fdfeature-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #2ecc71;
    transition: width 0.3s ease;
}

.zcd8fdfeature-item:hover h3::after {
    width: 80px;
}

.zcd8fdfeature-item p {
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
}

.zcd8fdfeature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.zcd8fdfeature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.zcd8fdfeature-list li:last-child {
    margin-bottom: 0;
}

.zcd8fdfeature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 16px;
}

.zcd8fdfeature-item .zcd8fdfeature-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;
}

.zcd8fdfeature-item:hover .zcd8fdfeature-icon {
    background: #2ecc71;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: #2ecc71;
}

.zcd8fdfeature-item .zcd8fdfeature-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;
}

.zcd8fdfeature-item .zcd8fdfeature-note {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.zcd8fdfeature-item .zcd8fdfeature-note::before {
    content: "💡";
    margin-right: 5px;
}

@media (max-width: 1200px) {
    .zcd8fdfeature-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .zcd8fdfeatures {
        padding: 80px 0;
    }

    .zcd8fdfeature-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .zcd8fdfeature-item h3 {
        font-size: 22px;
    }

    .zcd8fdfeature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .zcd8fdfeatures {
        padding: 60px 0;
    }

    .zcd8fdfeature-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }

    .zcd8fdfeature-item {
        margin: 0 10px;
    }

    .zcd8fdfeature-item h3 {
        font-size: 20px;
    }

    .zcd8fdfeature-list li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zcd8fdfeatures {
        padding: 40px 0;
    }

    .zcd8fdfeature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zcd8fdfeature-item {
        margin: 0 15px;
    }
}

/* 办理流程样式 */
.zcd8fdprocess {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.zcd8fdprocess::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zcd8fdprocess-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.zcd8fdprocess-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    pointer-events: none;
}

.zcd8fdprocess-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;
}

.zcd8fdprocess-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;
}

.zcd8fdprocess-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zcd8fdprocess-item:hover::before {
    opacity: 1;
}

.zcd8fdprocess-item .zcd8fdprocess-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.zcd8fdprocess-item .zcd8fdprocess-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;
}

.zcd8fdprocess-item:hover .zcd8fdprocess-number {
    transform: scale(1.1) rotate(5deg);
}

.zcd8fdprocess-item h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.zcd8fdprocess-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.zcd8fdprocess-item:hover h3::after {
    width: 80px;
}

.zcd8fdprocess-item p {
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
}

.zcd8fdprocess-details {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.zcd8fdprocess-details li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.zcd8fdprocess-details li:last-child {
    margin-bottom: 0;
}

.zcd8fdprocess-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 16px;
}

.zcd8fdprocess-item .zcd8fdprocess-time {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.zcd8fdprocess-item .zcd8fdprocess-time::before {
    content: "⏱";
    margin-right: 5px;
}

.zcd8fdprocess-item .zcd8fdprocess-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;
}

.zcd8fdprocess-item:hover .zcd8fdprocess-icon {
    background: #3498db;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: #3498db;
}

@media (max-width: 1200px) {
    .zcd8fdprocess-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .zcd8fdprocess {
        padding: 80px 0;
    }

    .zcd8fdprocess-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .zcd8fdprocess-item h3 {
        font-size: 22px;
    }

    .zcd8fdprocess-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .zcd8fdprocess {
        padding: 60px 0;
    }

    .zcd8fdprocess-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }

    .zcd8fdprocess-item {
        margin: 0 10px;
    }

    .zcd8fdprocess-item h3 {
        font-size: 20px;
    }

    .zcd8fdprocess-details li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zcd8fdprocess {
        padding: 40px 0;
    }

    .zcd8fdprocess-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zcd8fdprocess-item {
        margin: 0 15px;
    }
}

/* FAQ样式 */
.zcd8fdfaq {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.zcd8fdfaq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zcd8fdfaq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.zcd8fdfaq-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    pointer-events: none;
}

.zcd8fdfaq-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;
}

.zcd8fdfaq-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;
}

.zcd8fdfaq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zcd8fdfaq-item:hover::before {
    opacity: 1;
}

.zcd8fdfaq-item .zcd8fdfaq-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.zcd8fdfaq-item .zcd8fdfaq-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;
}

.zcd8fdfaq-item:hover .zcd8fdfaq-icon {
    background: #3498db;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: #3498db;
}

.zcd8fdfaq-item h3 {
    color: #2c3e50;
    font-size: 22px;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.zcd8fdfaq-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.zcd8fdfaq-item:hover h3::after {
    width: 80px;
}

.zcd8fdfaq-item p {
    color: #666;
    margin: 0 0 20px;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
}

.zcd8fdfaq-details {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.zcd8fdfaq-details li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.zcd8fdfaq-details li:last-child {
    margin-bottom: 0;
}

.zcd8fdfaq-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.zcd8fdfaq-item .zcd8fdfaq-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;
}

.zcd8fdfaq-item .zcd8fdfaq-note {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.zcd8fdfaq-item .zcd8fdfaq-note::before {
    content: "💡";
    margin-right: 5px;
}

@media (max-width: 1200px) {
    .zcd8fdfaq-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .zcd8fdfaq {
        padding: 80px 0;
    }

    .zcd8fdfaq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .zcd8fdfaq-item h3 {
        font-size: 20px;
    }

    .zcd8fdfaq-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .zcd8fdfaq {
        padding: 60px 0;
    }

    .zcd8fdfaq-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .zcd8fdfaq-item {
        margin: 0 10px;
    }

    .zcd8fdfaq-item h3 {
        font-size: 18px;
    }

    .zcd8fdfaq-details li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zcd8fdfaq {
        padding: 40px 0;
    }

    .zcd8fdfaq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zcd8fdfaq-item {
        margin: 0 15px;
    }
}

/* 成功案例样式 */
.zcd8fdcases {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.zcd8fdcases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zcd8fdcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
}

.zcd8fdcase-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    pointer-events: none;
}

.zcd8fdcase-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;
}

.zcd8fdcase-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;
}

.zcd8fdcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.zcd8fdcase-item:hover::before {
    opacity: 1;
}

.zcd8fdcase-item .zcd8fdcase-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.zcd8fdcase-item .zcd8fdcase-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;
}

.zcd8fdcase-item:hover .zcd8fdcase-icon {
    background: #3498db;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: #3498db;
}

.zcd8fdcase-item .zcd8fdcase-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;
}

.zcd8fdcase-item h3 {
    color: #2c3e50;
    font-size: 22px;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.zcd8fdcase-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.zcd8fdcase-item:hover h3::after {
    width: 80px;
}

.zcd8fdcase-details {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.zcd8fdcase-details li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.zcd8fdcase-details li:last-child {
    margin-bottom: 0;
}

.zcd8fdcase-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 16px;
}

.zcd8fdcase-item .zcd8fdcase-note {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.zcd8fdcase-item .zcd8fdcase-note::before {
    content: "💡";
    margin-right: 5px;
}

@media (max-width: 1200px) {
    .zcd8fdcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .zcd8fdcases {
        padding: 80px 0;
    }

    .zcd8fdcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .zcd8fdcase-item h3 {
        font-size: 20px;
    }

    .zcd8fdcase-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .zcd8fdcases {
        padding: 60px 0;
    }

    .zcd8fdcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .zcd8fdcase-item {
        margin: 0 10px;
    }

    .zcd8fdcase-item h3 {
        font-size: 18px;
    }

    .zcd8fdcase-details li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zcd8fdcases {
        padding: 40px 0;
    }

    .zcd8fdcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zcd8fdcase-item {
        margin: 0 15px;
    }
}

/* 行业资讯样式 */
.zcd8fdnews {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.zcd8fdnews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zcd8fdnews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 15px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.zcd8fdnews-grid::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    bottom: -10px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    pointer-events: none;
}

.zcd8fdnews-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%;
}

.zcd8fdnews-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;
}

.zcd8fdnews-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.zcd8fdnews-item:hover::before {
    opacity: 1;
}

.zcd8fdnews-item .zcd8fdnews-content {
    background: white;
    border-radius: 8px;
    padding: 15px;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.zcd8fdnews-item .zcd8fdnews-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;
}

.zcd8fdnews-item:hover .zcd8fdnews-icon {
    background: #3498db;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: #3498db;
}

.zcd8fdnews-item .zcd8fdnews-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;
}

.zcd8fdnews-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;
}

.zcd8fdnews-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.zcd8fdnews-item:hover h3::after {
    width: 40px;
}

.zcd8fdnews-item .zcd8fdnews-date {
    color: #666;
    font-size: 12px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
}

.zcd8fdnews-item .zcd8fdnews-date::before {
    content: "📅";
    margin-right: 4px;
}

.zcd8fdnews-item .zcd8fdnews-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;
}

.zcd8fdnews-item .zcd8fdnews-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;
}

.zcd8fdnews-item .zcd8fdnews-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;
}

.zcd8fdnews-item .zcd8fdnews-highlights li:last-child {
    margin-bottom: 0;
}

.zcd8fdnews-item .zcd8fdnews-highlights li:before {
    content: "📌";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 12px;
}

.zcd8fdnews-item .zcd8fdnews-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;
}

.zcd8fdnews-item .zcd8fdnews-note::before {
    content: "💡";
    margin-right: 4px;
}

@media (max-width: 1200px) {
    .zcd8fdnews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 12px;
    }
}

@media (max-width: 992px) {
    .zcd8fdnews {
        padding: 50px 0;
    }

    .zcd8fdnews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .zcd8fdnews-item h3 {
        font-size: 15px;
    }

    .zcd8fdnews-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .zcd8fdnews {
        padding: 40px 0;
    }

    .zcd8fdnews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 8px;
    }

    .zcd8fdnews-item {
        margin: 0 5px;
    }

    .zcd8fdnews-item h3 {
        font-size: 14px;
    }

    .zcd8fdnews-highlights li {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .zcd8fdnews {
        padding: 30px 0;
    }

    .zcd8fdnews-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }

    .zcd8fdnews-item {
        margin: 0 8px;
    }
}

/* 贷款小贴士样式 */
.zcd8fdtips {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.zcd8fdtips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00bcd4);
}

.zcd8fdtips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.zcd8fdtip-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;
}

.zcd8fdtip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.zcd8fdtip-item h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.zcd8fdtip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zcd8fdtip-list li {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.zcd8fdtip-list li::before {
    content: '•';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 992px) {
    .zcd8fdtips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .zcd8fdtip-item {
        padding: 15px;
    }
    
    .zcd8fdtip-item h3 {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .zcd8fdtip-list li {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .zcd8fdtips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .zcd8fdtip-item {
        padding: 15px;
    }
}

/* 页脚样式 */
.zcd8fdfooter {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.zcd8fdfooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.zcd8fdfooter-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.zcd8fdfooter-section ul {
    list-style: none;
}

.zcd8fdfooter-section ul li {
    margin-bottom: 10px;
}

.zcd8fdcopyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .zcd8fdhero-content {
        flex-direction: column;
        gap: 32px;
    }

    .zcd8fdhero-text {
        max-width: 100%;
        text-align: center;
    }

    .zcd8fdhero-image {
        flex: 1 1 auto;
        max-width: 420px;
        width: 100%;
    }

    .zcd8fdcta-buttons {
        justify-content: center;
    }

    .zcd8fdhero h2 {
        font-size: 42px;
    }
    
    .zcd8fdhero p {
        font-size: 18px;
    }
    
    .zcd8fdstat-number {
        font-size: 32px;
    }

    .zcd8fdhero-stats {
        padding: 20px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .zcd8fdheader .zcd8fdcontainer {
        flex-direction: column;
        text-align: center;
    }

    .zcd8fdmain-nav ul {
        margin-top: 20px;
        flex-direction: column;
    }

    .zcd8fdmain-nav li {
        margin: 10px 0;
    }

    .zcd8fdhero h2 {
        font-size: 36px;
    }

    .zcd8fdhero p {
        font-size: 16px;
    }

    .zcd8fdhero-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
        gap: 15px;
    }
    
    .zcd8fdstat-number {
        font-size: 28px;
    }
    
    .zcd8fdbtn {
        padding: 12px 24px;
        min-width: 120px;
        font-size: 14px;
    }

    .zcd8fdsection-title {
        font-size: 28px;
    }

    .zcd8fdfooter-content {
        text-align: center;
    }

    .zcd8fdfooter-section ul {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .zcd8fdcontainer {
        padding: 0 15px;
    }

    .zcd8fdhero h2 {
        font-size: 32px;
    }
    
    .zcd8fdhero p {
        font-size: 15px;
    }
    
    .zcd8fdhero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 12px;
    }
    
    .zcd8fdstat-number {
        font-size: 24px;
    }
    
    .zcd8fdbtn {
        width: 100%;
        max-width: 200px;
        padding: 10px 20px;
        font-size: 13px;
    }

    .zcd8fdcta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* 内页通用布局 */
.zcd8fdlogo a {
    color: inherit;
    text-decoration: none;
}

.zcd8fdpage-wrap {
    padding-top: 70px;
    min-height: 60vh;
    background: #f8f9fa;
}

.zcd8fdbreadcrumb {
    padding: 20px 0 10px;
    font-size: 14px;
    color: #666;
}

.zcd8fdbreadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.zcd8fdbreadcrumb a:hover {
    text-decoration: underline;
}

.zcd8fdbreadcrumb-sep {
    margin: 0 8px;
    color: #ccc;
}

.zcd8fdbreadcrumb-current {
    color: #333;
}

.zcd8fdpage-layout {
    display: flex;
    gap: 30px;
    padding-bottom: 60px;
    align-items: flex-start;
}

.zcd8fdpage-main {
    flex: 1;
    min-width: 0;
}

/* 侧栏样式 */
.zcd8fdsidebar {
    width: 300px;
    flex-shrink: 0;
}

.zcd8fdsidebar-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.zcd8fdsidebar-title {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    font-size: 16px;
    padding: 12px 16px;
    margin: 0;
}

.zcd8fdsidebar-title a {
    color: #fff;
    text-decoration: none;
}

.zcd8fdsidebar-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    max-height: 520px;
    overflow-y: auto;
}

.zcd8fdsidebar-thumb-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    max-height: 680px;
    overflow-y: auto;
}

.zcd8fdsidebar-thumb-item {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px dashed #eee;
    align-items: flex-start;
}

.zcd8fdsidebar-thumb-item:last-child {
    border-bottom: none;
}

.zcd8fdsidebar-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 52px;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}

.zcd8fdsidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zcd8fdsidebar-thumb-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zcd8fdsidebar-thumb-info > a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.3s;
}

.zcd8fdsidebar-thumb-info > a:hover {
    color: #3498db;
}

.zcd8fdsidebar-list li {
    padding: 8px 16px;
    border-bottom: 1px dashed #eee;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zcd8fdsidebar-list li:last-child {
    border-bottom: none;
}

.zcd8fdsidebar-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s;
}

.zcd8fdsidebar-list a:hover {
    color: #3498db;
}

.zcd8fdsidebar-date {
    font-size: 12px;
    color: #999;
}

/* 内容页样式 */
.zcd8fdarticle-detail {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.zcd8fdarticle-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.zcd8fdarticle-title {
    font-size: 28px;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 15px;
}

.zcd8fdarticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.zcd8fdarticle-meta a {
    color: #3498db;
    text-decoration: none;
}

.zcd8fdarticle-thumb {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.zcd8fdarticle-thumb img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.zcd8fdarticle-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

/* 隐藏正文中系统自动追加的上下篇，避免与模板重复 */
.zcd8fdarticle-body .context,
.zcd8fdarticle-body .dede_pagelist {
    display: none !important;
}

.zcd8fdarticle-body img {
    max-width: 100%;
    height: auto;
}

.zcd8fddiyfield {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.zcd8fdarticle-images {
    margin-bottom: 25px;
}

.zcd8fdimage-item {
    margin-bottom: 15px;
    text-align: center;
}

.zcd8fdimage-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.zcd8fdimage-item figcaption {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.zcd8fdmeta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 0;
    margin: 0 0 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.zcd8fdtagitem a {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f7ff;
    color: #3498db;
    border-radius: 15px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.zcd8fdtagitem a:hover {
    background: #3498db;
    color: #fff;
}

.zcd8fdarticle-prenext {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.zcd8fdprenext-left {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.zcd8fdprenext-right {
    flex: 1;
    min-width: 0;
    text-align: right;
}

/* 防止单个prenext标签同时输出上下篇导致重复 */
.zcd8fdprenext-left ul li:nth-child(2),
.zcd8fdprenext-left .next {
    display: none;
}

.zcd8fdprenext-right ul li:nth-child(1),
.zcd8fdprenext-right .pre {
    display: none;
}

.zcd8fdarticle-prenext a {
    color: #3498db;
    text-decoration: none;
}

.zcd8fdarticle-prenext a:hover {
    text-decoration: underline;
}

.zcd8fdarticle-prenext ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zcd8fdrelated {
    margin-top: 10px;
}

.zcd8fdrelated-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.zcd8fdrelated-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zcd8fdrelated-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

.zcd8fdrelated-item:last-child {
    border-bottom: none;
}

.zcd8fdrelated-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
    display: block;
}

.zcd8fdrelated-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zcd8fdrelated-info {
    flex: 1;
    min-width: 0;
}

.zcd8fdrelated-link {
    font-size: 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.zcd8fdrelated-link:hover {
    color: #3498db;
}

.zcd8fdrelated-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* 列表页样式 */
.zcd8fdlist-header {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

.zcd8fdlist-title {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.zcd8fdlist-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.zcd8fdlistbox {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.zcd8fdlist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zcd8fdlist-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.zcd8fdlist-item:last-child {
    border-bottom: none;
}

.zcd8fdlist-item:hover {
    background: #f8f9fa;
}

.zcd8fdlist-thumb {
    flex-shrink: 0;
    width: 200px;
    height: 135px;
    overflow: hidden;
    border-radius: 8px;
    display: block;
}

.zcd8fdlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.zcd8fdlist-item:hover .zcd8fdlist-thumb img {
    transform: scale(1.05);
}

.zcd8fdlist-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zcd8fdlist-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.zcd8fdlist-meta a {
    color: #3498db;
    text-decoration: none;
}

.zcd8fdlist-link {
    font-size: 18px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    line-height: 1.4;
}

.zcd8fdlist-link:hover {
    color: #3498db;
}

.zcd8fdlist-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 分页样式 - 左右显示 */
.zcd8fdpagebar {
    margin-top: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

.zcd8fdpages {
    width: 100%;
}

.zcd8fdpages ul,
.zcd8fdpagelist {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.zcd8fdpages li,
.zcd8fdpagelist li {
    display: inline-block;
}

.zcd8fdpages a,
.zcd8fdpages span,
.zcd8fdpagelist a,
.zcd8fdpagelist span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.zcd8fdpages a:hover,
.zcd8fdpagelist a:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.zcd8fdpages .thisclass span,
.zcd8fdpages .thisclass a,
.zcd8fdpagelist .thisclass span,
.zcd8fdpagelist .thisclass a {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

/* 首页文章板块 */
.zcd8fdarticles {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.zcd8fdarticles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.zcd8fdhome-article-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.zcd8fdhome-article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.zcd8fdhome-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: #3498db;
}

.zcd8fdhome-article-thumb {
    display: block;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.zcd8fdhome-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.zcd8fdhome-article-card:hover .zcd8fdhome-article-thumb img {
    transform: scale(1.08);
}

.zcd8fdhome-article-info {
    padding: 12px 14px 16px;
}

.zcd8fdhome-article-info h3 {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 8px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.zcd8fdhome-article-info h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.zcd8fdhome-article-info h3 a:hover {
    color: #3498db;
}

.zcd8fdfooter-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zcd8fdfooter-links ul li {
    margin-bottom: 8px;
}

.zcd8fdfooter-links ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
}

.zcd8fdfooter-links ul li a:hover {
    color: #3498db;
}

.zcd8fdfooter-info {
    text-align: right;
}

.zcd8fdfooter-info a {
    color: #3498db;
    text-decoration: none;
}

.zcd8fdfooter-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* 导航当前样式 */
.zcd8fdmain-nav .zcd8fdthis a,
.zcd8fdmain-nav li.zcd8fdthis a {
    color: #3498db;
}

/* 内页响应式 */
@media (max-width: 1200px) {
    .zcd8fdsidebar {
        width: 260px;
    }
}

@media (max-width: 992px) {
    .zcd8fdpage-layout {
        flex-direction: column;
    }

    .zcd8fdsidebar {
        width: 100%;
    }

    .zcd8fdsidebar-thumb-list {
        max-height: 400px;
    }

    .zcd8fdsidebar-list {
        max-height: 300px;
    }

    .zcd8fdhome-article-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .zcd8fdlist-thumb {
        width: 160px;
        height: 110px;
    }

    .zcd8fdarticle-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .zcd8fdpage-wrap {
        padding-top: 60px;
    }

    .zcd8fdarticle-detail {
        padding: 20px 15px;
    }

    .zcd8fdarticle-title {
        font-size: 20px;
    }

    .zcd8fdlist-item {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .zcd8fdlist-thumb {
        width: 100%;
        height: 180px;
    }

    .zcd8fdlist-link {
        font-size: 16px;
    }

    .zcd8fdrelated-item {
        flex-direction: column;
    }

    .zcd8fdrelated-thumb {
        width: 100%;
        height: 160px;
    }

    .zcd8fdarticle-prenext {
        flex-direction: column;
        gap: 10px;
    }

    .zcd8fdprenext-left,
    .zcd8fdprenext-right {
        text-align: left;
        width: 100%;
    }

    .zcd8fdhome-article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .zcd8fdhome-article-thumb {
        height: 120px;
    }

    .zcd8fdpages ul,
    .zcd8fdpagelist {
        justify-content: center;
        gap: 6px;
    }

    .zcd8fdarticles {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .zcd8fdhome-article-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .zcd8fdhome-article-thumb {
        height: 160px;
    }

    .zcd8fdbreadcrumb {
        font-size: 12px;
    }

    .zcd8fdlist-header {
        padding: 15px;
    }

    .zcd8fdlist-title {
        font-size: 20px;
    }

    .zcd8fdsidebar-block {
        margin-bottom: 15px;
    }
} 