body {
    background-color: var(--white);
}
.qudao-zhaomu {
    height: 480px;
    background-position: 570px -50px;
    background-repeat: no-repeat;
    padding-top: 60px;
    background-size: auto 100%;
    background-color: #fff;
}

.qudao-zhaomu h1 {
    font-weight: 500;
    font-size: 38px;
    color: #323233;
    line-height: 58px;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .qudao-zhaomu h1 {
        font-size: 28px;
        line-height: 46px;
    }
}
.qudao-zhaomu p {
    font-size: 20px;
    color: #646566;
    line-height: 24px;
}

.qudao-button{
    margin-top: 32px;
}
.qudao-button .button{
    font-size: 16px;
}

/* 左右布局区域 */
.qudao-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* 左侧图片区域 */
.qudao-left {
    flex: 1;
    max-width: 50%;
}

.qudao-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.qudao-image:hover {
    transform: translateY(-4px);
}

/* 右侧内容区域 */
.qudao-right {
    flex: 1;
    max-width: 50%;
}

.qudao-title {
    font-size: 38px;
    font-weight: 500;
    color: #323233;
    line-height: 40px;
    margin-bottom: 32px;
}

/* 四宫格布局 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* 单个权益卡片 */
.benefit-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f7;
}

.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 24px;
    margin-right: 8px;
    vertical-align: middle;
}

/* 六大创业支持板块 */
.support-section {
    padding: 80px 0;
    background-color: #fff;
}

.support-title {
    font-size: 38px;
    font-weight: 500;
    color: #323233;
    line-height: 40px;
    margin-bottom: 50px;
    text-align: center;
}

/* 三列两行网格布局 */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 单个支持项 */
.support-item {
    background-color: #fff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 320px;
    justify-content: space-between;
}

.support-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* 支持项图片 */
.support-image {
    width: 100%;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 支持项名称 */
.support-name {
    font-size: 22px;
    font-weight: 500;
    color: #323233;
    line-height: 28px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* 支持项描述 */
.support-desc {
    font-size: 18px;
    color: #646566;
    line-height: 22px;
    margin: 0;
    padding-bottom: 30px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .support-title {
        font-size: 28px;
    }
}

/* 代理商五大要求板块 */
.requirements-section {
    padding-bottom: 60px;
    background-color: #fff;
}

.requirements-title {
    font-size: 38px;
    font-weight: 500;
    color: #323233;
    line-height: 40px;
    margin-bottom: 50px;
    text-align: center;
}

/* 一行五个网格布局 */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 单个要求项 */
.requirements-item {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 220px;
    justify-content: space-between;
}

.requirements-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* 要求项图标 */
.requirements-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

/* 要求项名称 */
.requirements-name {
    font-size: 20px;
    font-weight: 500;
    color: #323233;
    line-height: 28px;
    margin-bottom: 15px;
}

/* 要求项描述 */
.requirements-desc {
    font-size: 16px;
    color: #646566;
    line-height: 22px;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .requirements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-title {
        font-size: 28px;
    }
}

.benefit-name {
    font-size: 22px;
    font-weight: 500;
    color: #323233;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.benefit-desc {
    font-size: 18px;
    color: #646566;
    line-height: 20px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .qudao-section {
        gap: 40px;
    }
    
    .qudao-title {
        font-size: 24px;
        line-height: 36px;
    }
    
    .benefit-card {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .qudao-section {
        flex-direction: column;
        gap: 40px;
    }
    
    .qudao-left,
    .qudao-right {
        max-width: 100%;
    }
    
    .qudao-content {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qudao-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 24px;
    }
    
    .benefit-card {
        padding: 18px;
    }
    
    .qudao-content {
        padding: 40px 0;
    }
}

/* 代理申请流程板块 */
.process-section {
    padding-top: 20px;
    padding-bottom: 60px;
    background-color: #fff;
}

.process-title {
    font-size: 38px;
    font-weight: 500;
    color: #323233;
    line-height: 40px;
    margin-bottom: 50px;
    text-align: center;
}

/* 流程网格布局 */
.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 单个流程节点 */
.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

/* 流程节点图标 */
.process-icon {
    font-family: "iconfont" !important;
    font-size: 36px;
    margin-bottom: 15px;
    background: #f5f5f7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
}
.process-icon-1:before {
    content: "\e6b8";
}
.process-icon-2:before {
    content: "\e6b6";
}
.process-icon-3:before {
    content: "\e6ba";
}
.process-icon-4:before {
    content: "\e6b7";
}
.process-icon-5:before {
    content: "\e6b9";
}
.process-icon-6:before {
    content: "\e6b5";
}

/* 流程节点名称 */
.process-name {
    font-size: 20px;
    font-weight: 500;
    color: #323233;
    line-height: 28px;
}

/* 流程箭头 */
.process-arrow {
    font-size: 32px;
    font-weight: 500;
    color: #969799;
    margin: 0 10px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .process-title {
        font-size: 32px;
    }
    
    .process-icon {
        font-size: 40px;
    }
    
    .process-name {
        font-size: 18px;
    }
    
    .process-arrow {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .process-grid {
        gap: 15px;
    }
    
    .process-item {
        min-width: 100px;
    }
    
    .process-icon {
        font-size: 36px;
    }
    
    .process-name {
        font-size: 16px;
    }
    
    .process-arrow {
        font-size: 24px;
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .process-grid {
        gap: 10px;
    }
    
    .process-item {
        min-width: 80px;
    }
    
    .process-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .process-name {
        font-size: 14px;
        line-height: 20px;
    }
    
    .process-arrow {
        font-size: 20px;
        margin: 0 5px;
    }
}

@media (max-width: 576px) {
    .process-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
