/* ======================================
 公司变更注销页面 专属CSS
 ====================================== */
.change-page {
    padding-top: 70px
}

/* Banner */
.change-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #165DFF, #0047CC);
    color: #fff;
    text-align: center
}

.change-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700
}

.change-banner p {
    font-size: 17px;
    max-width: 750px;
    margin: 0 auto 25px;
    line-height: 1.7
}

/* 服务介绍 */
.change-desc {
    padding: 55px 0;
    background: #fff
}

.change-desc .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center
}

.change-desc-left {
    flex: 1;
    min-width: 300px
}

.change-desc-left h3 {
    font-size: 26px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.4
}

.change-desc-left p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px
}

.change-desc-right {
    flex: 1;
    min-width: 300px;
    text-align: center
}

.change-desc-right i {
    font-size: 160px;
    color: #165DFF
}

/* 服务卡片 */
.change-service {
    padding: 55px 0;
    background: #f9fafc
}

.change-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px
}

.change-service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #eef5ff;
    transition: .4s
}

.change-service-card:hover {
    transform: translateY(-5px);
    border-color: #165DFF
}

.change-service-card i {
    font-size: 40px;
    color: #165DFF;
    margin-bottom: 18px
}

.change-service-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #222
}

.change-service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6
}

/* 核心优势 */
.change-advantage {
    padding: 55px 0;
    background: #fff
}

.change-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.change-advantage-item {
    text-align: center;
    padding: 20px
}

.change-advantage-item i {
    font-size: 36px;
    color: #165DFF;
    margin-bottom: 15px
}

.change-advantage-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222
}

.change-advantage-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6
}

/* 百科专栏 */
.change-encyclopedia {
    padding: 55px 0;
    background: #f9fafc
}

.encyclopedia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px
}

.encyclopedia-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
    border-left: 4px solid #165DFF
}

.encyclopedia-item h3 a {
    font-size: 17px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none
}

.encyclopedia-item h3 a:hover {
    color: #165DFF
}

.encyclopedia-item h3 i {
    color: #165DFF;
    font-size: 15px
}

.encyclopedia-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-top: 8px
}

/* 注销流程背景 */
.process-bg {
    background: #fff !important
}

/* ======================================
 响应式适配
 ====================================== */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 26px
    }

    .change-banner h1 {
        font-size: 32px
    }
}



@media (max-width: 480px) {
    .process-item {
        width: 100%
    }

    .change-banner h1 {
        font-size: 22px
    }

    .section-title h2 {
        font-size: 22px
    }

    .solution h2 {
        font-size: 22px
    }

    .change-service-grid {
        grid-template-columns: 1fr
    }
}