/* ======================================
 公司转让页面 专属CSS（美化优化版）
====================================== */
.transfer-page {
    padding-top: 70px
}

/* Banner美化 */
.transfer-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #165DFF, #0047CC);
    color: #fff;
    text-align: center
}

.transfer-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.transfer-banner p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8
}

/* 服务介绍优化 */
.transfer-desc {
    padding: 60px 0;
    background: #fff
}

.transfer-desc .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center
}

.transfer-desc-left {
    flex: 1;
    min-width: 300px
}

.transfer-desc-left h3 {
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.4
}

.transfer-desc-left p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 15px
}

.transfer-desc-right {
    flex: 1;
    min-width: 300px;
    text-align: center
}

.transfer-desc-right i {
    font-size: 180px;
    background: linear-gradient(135deg, #165DFF, #0047CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

/* 核心转让服务板块【重磅美化】 */
.transfer-service {
    padding: 60px 0;
    background: #f9fafc
}

.transfer-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto
}

.transfer-service-card {
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .4s ease
}

.transfer-service-card:nth-child(1) {
    background: linear-gradient(135deg, #f8fcff, #e6f7ff);
    border: 1px solid #b3d9ff
}

.transfer-service-card:nth-child(2) {
    background: linear-gradient(135deg, #fffbf8, #fff4e6);
    border: 1px solid #ffd591
}

.transfer-service-card:nth-child(3) {
    background: linear-gradient(135deg, #f9fffb, #e6ffed);
    border: 1px solid #95de64
}

.transfer-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08)
}

.transfer-service-card i {
    font-size: 50px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2
}

.transfer-service-card:nth-child(1) i {
    color: #165DFF
}

.transfer-service-card:nth-child(2) i {
    color: #FF7D00
}

.transfer-service-card:nth-child(3) i {
    color: #00B42A
}

.transfer-service-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222
}

.transfer-service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7
}

/* 核心优势优化 */
.transfer-advantage {
    padding: 60px 0;
    background: #fff
}

.transfer-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px
}

.transfer-advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: #fafbfc;
    border-radius: 16px;
    transition: all .4s
}

.transfer-advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(22, 93, 255, .08)
}

.transfer-advantage-item i {
    font-size: 40px;
    color: #165DFF;
    margin-bottom: 20px
}

.transfer-advantage-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222
}

.transfer-advantage-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6
}

/* 百科专栏优化 */
.transfer-encyclopedia {
    padding: 60px 0;
    background: #f9fafc
}

.encyclopedia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px
}

.encyclopedia-item {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    border-left: 4px solid #165DFF;
    transition: all .3s
}

.encyclopedia-item:hover {
    box-shadow: 0 8px 20px rgba(22, 93, 255, .1)
}

.encyclopedia-item h3 a {
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #222
}

.encyclopedia-item h3 a:hover {
    color: #165DFF
}

.encyclopedia-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-top: 10px
}

/* ======================================
 全端响应式适配
====================================== */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 28px
    }

    .transfer-banner h1 {
        font-size: 32px
    }

    .transfer-service-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 18px;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
        opacity: 0;
        visibility: hidden;
        transition: .3s
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible
    }

    .hamburger {
        display: flex
    }

    .transfer-banner {
        padding: 60px 0
    }

    .transfer-banner h1 {
        font-size: 26px
    }

    .wrapper {
        flex-direction: column;
        text-align: center
    }

    .transfer-desc-right i {
        font-size: 120px
    }

    .encyclopedia-grid {
        grid-template-columns: 1fr
    }

    .contact-info {
        flex-direction: column;
        gap: 15px
    }

    .process-item {
        width: 48%
    }

    .footer-wrapper {
        text-align: center
    }
}

@media (max-width: 480px) {
    .process-item {
        width: 100%
    }

    .transfer-banner h1 {
        font-size: 22px
    }

    .section-title h2 {
        font-size: 24px
    }

    .solution h2 {
        font-size: 22px
    }

    .transfer-service-card {
        padding: 30px 20px
    }

    .transfer-service-card h4 {
        font-size: 20px
    }
}