/* 代理页面样式 */
.agent-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.benefit-item {
    background: var(--white);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}
.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.benefit-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}
.benefit-title {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 8px;
}
.benefit-desc {
    color: var(--gray-dark);
    font-size: 13px;
}
.policy-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 20px 0;
}
.policy-table th,
.policy-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--gray-light);
}
.policy-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: bold;
}
.policy-table th:first-child {
    background: var(--dark);
}
.agent-form {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}
.case-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.case-item {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
}
.case-item h4 {
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 10px;
}
.case-item p {
    color: var(--gray-dark);
    font-size: 13px;
}
.case-item .income {
    color: var(--orange);
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}
@media screen and (max-width: 768px) {
    .agent-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-list {
        grid-template-columns: 1fr;
    }
    .policy-table {
        font-size: 12px;
    }
    .policy-table th,
    .policy-table td {
        padding: 10px 5px;
    }
}