/* 页面横幅样式 */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/banner/partner-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.page-banner p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* 优势展示样式 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item i {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

.advantage-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* 加盟条件样式 */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.requirement-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.requirement-item i {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 20px;
}

.requirement-item h3 {
    color: #333;
    margin-bottom: 20px;
}

.requirement-item ul {
    list-style: none;
    padding: 0;
}

.requirement-item li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.requirement-item li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* 加盟流程样式 */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.process-timeline:before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: #007bff;
    z-index: 1;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
}

.process-number {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    margin: 0 auto 20px;
}

.process-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.process-item p {
    color: #666;
    font-size: 0.9em;
}

/* 收益模式样式 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5em;
    color: #28a745;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* 联系我们样式 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.contact-info {
    color: white;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0;
    }

    .page-banner h1 {
        font-size: 2em;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-timeline:before {
        display: none;
    }

    .process-item {
        margin-bottom: 30px;
    }

    .advantages-grid,
    .requirements-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .advantage-item,
    .requirement-item,
    .benefit-item {
        margin: 0 20px;
    }
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background: #007bff;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* 通用样式 */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #343a40;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} 

/* partner.css - 合伙人加盟页面专属样式 */

/* Hero Section */
.partner-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('https://cfcall.oss-cn-shenzhen.aliyuncs.com/20250715/1f63491285fb48ac8a029a79e875101f.png') no-repeat center 55%/cover !important;
    background-attachment: fixed !important;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.partner-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.partner-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* 平台简介 */
.platform-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.platform-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.platform-principles {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.platform-principles li {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* 加盟优势 */
.advantages-grid-partner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 加盟模式 */
.join-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.option-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.option-header {
    padding: 2rem;
    color: white;
    text-align: center;
}

.option-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.team-join .option-header {
    background: var(--primary-color);
}

.individual-join .option-header {
    background: var(--secondary-color);
}

.option-body {
    padding: 2rem;
    background: white;
    flex-grow: 1;
}

.option-body h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.8rem;
}

.option-body ul {
    list-style: none;
    padding: 0;
}

.option-body ul li {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.option-body ul li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.fee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.fee-grid div {
    font-size: 1.1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}
.fee-grid .na-cell {
    color: #999;
}

/* 加盟流程 */
.process-steps-partner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.step-item {
    text-align: center;
    max-width: 250px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.step-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--primary-light);
}

/* 评估和备注 */
.evaluation-notes-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.evaluation-table {
    width: 100%;
    border-collapse: collapse;
}

.evaluation-table th, .evaluation-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.evaluation-table thead {
    background: var(--primary-color);
    color: white;
}

.evaluation-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.text-success {
    color: var(--success-color);
    font-size: 1.5rem;
}
.text-danger {
    color: var(--error-color);
    font-size: 1.5rem;
}

/* Accordion for notes */
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    background: #f8f9fa;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p, .accordion-content ol {
    margin: 0;
    padding: 1.5rem 0;
    line-height: 1.8;
    color: var(--text-light);
}

.accordion-content ol {
    padding-left: 20px;
}

/* 响应式 */
@media (max-width: 992px) {
    .join-options, .evaluation-notes-grid {
        grid-template-columns: 1fr;
    }
    .process-steps-partner {
        flex-direction: column;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 1.5rem 0;
    }
    .platform-principles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partner-hero {
        background-attachment: scroll !important;
        padding: 80px 0;
    }
    .partner-hero h1 {
        font-size: 2.5rem;
    }
    .partner-hero p {
        font-size: 1.1rem;
    }
}

/* 新增：针对更小屏幕的优化 */
@media (max-width: 480px) {
    .partner-hero {
        padding: 60px 20px;
        background-attachment: scroll !important;
        background-position: center center !important;
    }
    
    .partner-hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    }
    
    .partner-hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        opacity: 0.95;
    }
    
    .partner-hero .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 25px;
        touch-action: manipulation;
    }
    
    /* 优化其他相关元素 */
    .platform-principles {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .platform-principles li {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .advantages-grid-partner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem 1rem;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem;
    }
    
    .advantage-card p {
        font-size: 0.95rem;
    }
    
    .join-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .option-card {
        padding: 1.5rem;
    }
    
    .option-header h3 {
        font-size: 1.3rem;
    }
    
    .option-body h4 {
        font-size: 1.1rem;
    }
    
    .option-body ul li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .process-steps-partner {
        gap: 1.5rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .step-item h3 {
        font-size: 1.1rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .evaluation-table {
        font-size: 0.9rem;
    }
    
    .evaluation-table th, 
    .evaluation-table td {
        padding: 8px 6px;
    }
    
    .accordion-header {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 15px;
    }
    
    .accordion-content p, 
    .accordion-content ol {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* 新增：针对中等屏幕的优化 */
@media (max-width: 600px) {
    .partner-hero {
        padding: 70px 15px;
    }
    
    .partner-hero h1 {
        font-size: 2.2rem;
    }
    
    .partner-hero p {
        font-size: 1.05rem;
    }
    
    .btn-partner-join-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .btn-partner-join-cta i {
        font-size: 16px;
    }
    
    .partner-join-cta .cta-subtitle {
        font-size: 13px;
    }
}

/* Footer 多列导航与SEO友好样式 */
.footer {
    background: var(--secondary-color);
    color: #ccc;
    padding: 3rem 0 0;
    font-size: 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #444;
}
.footer-grid h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-grid ul li {
    margin-bottom: 0.7rem;
}
.footer-grid a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}
.footer-grid a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.footer-contact p {
    margin-bottom: 0.5rem;
    color: #ccc;
}
.footer-bottom {
    padding: 1.5rem 0 0.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: #aaa;
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer {
        padding: 2rem 0 0;
    }
}

/* 我要加盟按钮样式 */
.partner-join-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 0;
}

.btn-partner-join-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-partner-join-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-partner-join-cta:hover::before {
    left: 100%;
}

.btn-partner-join-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-partner-join-cta i {
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.partner-join-cta .cta-subtitle {
    margin-top: 16px;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .partner-join-cta {
        margin-top: 30px;
        padding: 30px 0;
    }
    
    .btn-partner-join-cta {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .btn-partner-join-cta i {
        font-size: 18px;
    }
    
    .partner-join-cta .cta-subtitle {
        font-size: 14px;
    }
} 