/* ======================================
 代理记账页面 独立CSS文件
 无任何通用代码，可直接使用
 ====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif
}

html {
    scroll-behavior: smooth
}

body {
    color: #333;
    overflow-x-hidden;
    background: #fff
}



a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto
}

/* 标题样式 */
.section-title {
    text-align: center;
    margin-bottom: 45px
}

.section-title h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: #165DFF;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6
}


/* 流程模块 */
.process {
    padding: 65px 0;
    background: #f9fafc
}

.process-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center
}

.process-item {
    width: 180px;
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef5ff;
    transition: .4s;
    box-shadow: 0 4px 12px rgba(22, 93, 255, .04)
}

.process-item:hover {
    transform: translateY(-6px);
    border-color: #165DFF;
    box-shadow: 0 8px 20px rgba(22, 93, 255, .08)
}

.num {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #165DFF, #0047CC);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 18px
}

.process-item h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: #222
}

.process-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5
}

/* 咨询板块 */
.solution {
    padding: 65px 0;
    background: linear-gradient(135deg, #165DFF, #0047CC);
    color: #fff;
    text-align: center
}

.solution h2 {
    font-size: 30px;
    margin-bottom: 12px
}

.solution p {
    font-size: 17px;
    margin-bottom: 25px;
    opacity: .95
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    font-size: 16px
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 8px
}

.contact-info i {
    color: #fff;
    margin-right: 5px
}

.solution-btn {
    display: inline-block;
    padding: 13px 38px;
    background: #fff;
    color: #165DFF;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: .3s
}

.solution-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}



/* 代理记账页面主体 */
.account-page {
    padding-top: 75px
}

/* Banner */
.account-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #165DFF, #0047CC);
    color: #fff;
    text-align: center
}

.account-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700
}

.account-banner p {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.7;
    opacity: .95
}

/* 服务介绍 */
.account-desc {
    padding: 65px 0;
    background: #fff
}

.account-desc .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    align-items: center
}

.account-desc-left {
    flex: 1;
    min-width: 300px
}

.account-desc-left h3 {
    font-size: 28px;
    color: #222;
    margin-bottom: 22px;
    line-height: 1.4
}

.account-desc-left p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px
}

.account-desc-right {
    flex: 1;
    min-width: 300px;
    text-align: center
}

.account-desc-right i {
    font-size: 180px;
    color: #165DFF
}

/* 服务卡片 */
.account-service {
    padding: 65px 0;
    background: #f9fafc
}

.account-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px
}

.account-service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #eef5ff;
    transition: .4s
}

.account-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(22, 93, 255, .08);
    border-color: #165DFF
}

.account-service-card i {
    font-size: 42px;
    color: #165DFF;
    margin-bottom: 20px
}

.account-service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222
}

.account-service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6
}

/* 优势模块 */
.account-advantage {
    padding: 65px 0;
    background: #fff
}

.account-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px
}

.account-advantage-item {
    text-align: center;
    padding: 25px
}

.account-advantage-item i {
    font-size: 38px;
    color: #165DFF;
    margin-bottom: 18px
}

.account-advantage-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #222
}

.account-advantage-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6
}

/* 收费标准 */
.account-price {
    padding: 65px 0;
    background: #f9fafc
}

.account-price-table {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    overflow: hidden
}

.account-price-row {
    display: flex;
    justify-content: space-between;
    padding: 22px 30px;
    border-bottom: 1px solid #f5f5f5;
    align-items: center
}

.account-price-row:last-child {
    border-bottom: none
}

.account-price-row h4 {
    font-size: 17px;
    font-weight: 500;
    color: #222
}

.account-price-row .price {
    font-size: 19px;
    font-weight: bold;
    color: #165DFF
}

/* 百科专栏 */
.account-encyclopedia {
    padding: 65px 0;
    background: #f9fafc
}

.encyclopedia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px
}

.encyclopedia-item {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
    border-left: 4px solid #165DFF;
    transition: .3s
}

.encyclopedia-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(22, 93, 255, .06)
}

.encyclopedia-item h3 {
    font-size: 17px;
    color: #222;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px
}

.encyclopedia-item h3 i {
    color: #165DFF;
    font-size: 15px
}

.encyclopedia-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7
}

/* 响应式适配 */
@media (max-width:992px) {
    .section-title h2 {
        font-size: 28px
    }

    .account-banner h1 {
        font-size: 34px
    }

    .account-desc-left h3 {
        font-size: 26px
    }
}

@media (max-width:768px) {
   
    .hamburger {
        display: flex
    }

    .account-banner {
        padding: 70px 0
    }

    .account-banner h1 {
        font-size: 28px
    }

    .wrapper {
        flex-direction: column;
        text-align: center
    }

    .account-desc-right i {
        font-size: 140px
    }

    .encyclopedia-grid {
        grid-template-columns: 1fr
    }

    .contact-info {
        flex-direction: column;
        gap: 15px
    }

    

    .process-item {
        width: 45%
    }
}

@media (max-width:480px) {
    .process-item {
        width: 100%
    }

    .account-price-row {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .solution h2 {
        font-size: 24px
    }
}