/* partners.css - 合作伙伴计划页面样式 */

/* 定义品牌颜色变量 */
:root {
    --voice-primary: #0057C2;
    --voice-accent: #00E5FF;
    --voice-light: #F0F8FF;
    --voice-yellow: #FFB800;
    --voice-pink: #ff6b6b;
    --voice-pink-light: #ff8e8e;
    /* 添加产品特定颜色 */
    --voice-hearttalk: #FF6B6B;  /* 亲语 */
    --voice-luckystar: #4D96FF;  /* 小福星 */
    --voice-voicesmart: #6C63FF; /* 声智 */
    --voice-verivoice: #0B2447;  /* 声鉴 */
}

/* 渐变文字样式 */
.gradient-text {
    background: linear-gradient(90deg, var(--voice-primary) 0%, var(--voice-accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.love-gradient-text {
    background: linear-gradient(90deg, var(--voice-pink) 0%, var(--voice-pink-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block; 
}

/* ====================
   面包屑和页面标题区域 - 标准化样式
======================= */
.about-hero-section {
    position: relative;
    padding: 20px 0 10px; /* 统一使用about.css的紧凑布局 */
    background: #F0F7FF;
}

/* 面包屑导航样式 */
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6B7280;
    font-weight: 400;
    margin-bottom: 10px; /* 统一使用about.css的边距 */
    background: white;
    padding: 10px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.breadcrumbs a {
    color: #2563EB;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.breadcrumbs a:hover {
    color: #1D4ED8;
}

.breadcrumbs i.fa-home {
    margin-right: 5px;
    font-size: 14px;
}

.breadcrumbs i.fa-angle-right {
    font-size: 12px;
    color: #9CA3AF;
}

.breadcrumbs span {
    color: #374151;
    font-weight: 500;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 40px; /* 统一使用about.css的字号 */
    font-weight: 600;
    margin-bottom: 20px;
    color: #1E40AF;
    line-height: 1.2;
}

.page-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #2563EB;
    margin: 20px auto 0;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 20px; /* 统一使用about.css的字号 */
    color: #4B5563;
    margin-top: 20px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ====================
   共享组件样式 - 按钮组件
======================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md, 8px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    gap: 10px;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(90deg, var(--voice-primary) 0%, var(--voice-accent) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 87, 194, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 7px 15px rgba(0, 87, 194, 0.4);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: var(--voice-primary);
    border: 2px solid var(--voice-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 87, 194, 0.05);
}

.btn-accent {
    background: linear-gradient(90deg, var(--voice-hearttalk) 0%, var(--voice-pink-light) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.btn-accent:hover {
    box-shadow: 0 7px 15px rgba(255, 107, 107, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--voice-primary);
    color: var(--voice-primary);
}

.btn-outline:hover {
    background: rgba(0, 87, 194, 0.05);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 18px;
}

.btn-icon {
    display: inline-flex;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.cta-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* 通用部分样式 */
.section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--voice-primary);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    display: inline-block;
}

.section-subtitle:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--voice-primary);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* 网格装饰器 */
.grid-decorator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 87, 194, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 87, 194, 0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    z-index: 0;
    opacity: 0.5;
}

/* 网格布局共用样式 */
.partner-value-grid,
.partner-types-grid,
.benefits-grid,
.resources-grid,
.featured-partners,
.logo-wall-container {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.partner-value-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.partner-types-grid {
    grid-template-columns: repeat(4, 1fr);
}

.benefits-grid {
    grid-template-columns: repeat(3, 1fr);
}

.resources-grid {
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 2;
}

.featured-partners {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    position: relative;
    z-index: 2;
}

.logo-wall-container {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

/* 卡片共用样式 */
.value-card,
.partner-type-card,
.benefit-card,
.resource-card,
.featured-partner,
.testimonial-card,
.apply-contact,
.join-step {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover,
.partner-type-card:hover,
.benefit-card:hover,
.resource-card:hover,
.featured-partner:hover,
.join-step:hover,
.logo-item-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 图标共用样式 */
.card-icon,
.type-icon,
.benefit-icon,
.resource-icon,
.step-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--voice-primary);
}

/* 列表共用样式 */
.value-list,
.benefit-list,
.apply-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.value-list li,
.benefit-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.value-list li:last-child,
.benefit-list li:last-child {
    border-bottom: none;
}

.value-list li::before,
.benefit-list li::before {
    content: "•";
    color: var(--voice-primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
}

.apply-benefits li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.apply-benefits li:last-child {
    border-bottom: none;
}

.apply-benefits li::before {
    content: "✓";
    color: #38a169;
    font-weight: bold;
    margin-right: 10px;
}

/* 合作伙伴介绍部分 */
.partners-intro-section {
    position: relative;
    overflow: hidden;
}

.partners-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px 0;
    gap: 25px;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 70, 184, 0.08);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 70, 184, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--voice-primary);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    color: #2A3A59;
    font-weight: 600;
}

.counter {
    display: inline-block;
}

/* 精选合作伙伴 */
.featured-partner {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.partner-logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.featured-partner h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.featured-partner p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 16px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    color: var(--voice-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-link:hover {
    color: var(--voice-accent);
}

.partner-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.partner-link:hover i {
    transform: translateX(4px);
}

/* Logo墙 */
.logo-wall-section {
    background: #f9fafb;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-button {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    background: white;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #f0f0f0;
}

.tab-button.active {
    background: var(--voice-primary);
    color: white;
    border-color: var(--voice-primary);
}

.logo-item {
    aspect-ratio: 4/3;
    transition: all 0.3s ease;
}

.logo-item-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-item img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* 合作伙伴见证 */
.testimonials-slider {
    margin: 50px 0 20px;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-slide {
    padding: 10px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 10px;
}

.testimonial-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.testimonial-company {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-person {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-content {
    margin-bottom: 25px;
    color: #555;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 60px;
    position: absolute;
    top: -20px;
    left: -10px;
    color: #f0f0f0;
    font-family: Georgia, serif;
    z-index: 0;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
}

.testimonial-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-stats .stat-number {
    font-size: 1.5rem;
    color: var(--voice-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-stats .stat-label {
    font-size: 0.8rem;
    color: #666;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e0e0e0;
    color: var(--voice-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--voice-primary);
    color: white;
    border-color: var(--voice-primary);
}

.testimonials-dots {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--voice-primary);
    transform: scale(1.5);
}

/* 成为合作伙伴卡片 */
.become-partner-card {
    background: linear-gradient(135deg, var(--voice-primary) 0%, var(--voice-accent) 100%);
    border-radius: 12px;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 87, 194, 0.2);
}

.card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.become-partner-card h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.become-partner-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    max-width: 100%;
    margin-bottom: 30px;
}

.card-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.card-buttons .btn-primary {
    background: white;
    color: var(--voice-primary);
}

.card-buttons .btn-primary:hover {
    background: #f9fafb;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.card-buttons .btn-outline {
    border-color: white;
    color: white;
}

.card-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.card-decoration {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.decoration-svg {
    opacity: 0.2;
}

/* 伙伴类型卡片 */
.partner-type-card {
    padding: 30px;
    text-align: center;
}

.type-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.type-desc {
    color: #666;
    margin-bottom: 20px;
}

.type-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.detail-item {
    margin-bottom: 15px;
}

.detail-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.detail-item p {
    color: #666;
}

/* 等级体系 */
.tier-section {
    position: relative;
}

.tier-tabs {
    position: relative;
    z-index: 1;
    margin: 40px 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.tier-nav {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.tier-tab {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.tier-tab.active {
    opacity: 1;
    position: relative;
}

.tier-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--voice-primary);
    border-radius: 3px 3px 0 0;
}

.tier-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--voice-primary);
}

.tier-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.tier-desc {
    font-size: 14px;
    color: #666;
}

.tier-content-container {
    padding: 30px;
}

.tier-content {
    display: none;
}

.tier-content.active {
    display: block;
}

.tier-title {
    margin-bottom: 20px;
    font-size: 24px;
}

.tier-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.tier-requirements, .tier-benefits {
    margin-bottom: 25px;
}

.tier-requirements h4, .tier-benefits h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.tier-requirements ul, .tier-benefits ul {
    list-style: none;
    padding: 0;
}

.tier-requirements li, .tier-benefits li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.tier-requirements li::before, .tier-benefits li::before {
    content: "✓";
    color: #38a169;
    margin-right: 10px;
}

.tier-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* 资源卡片 */
.resource-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.resource-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    flex-grow: 1;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    color: var(--voice-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: var(--voice-accent);
}

.resource-link i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.resource-link:hover i {
    transform: translateX(3px);
}

/* 流程步骤 */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    position: relative;
}

.process-step {
    width: 180px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--voice-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-desc {
    color: #666;
    font-size: 14px;
}

.process-arrow {
    display: flex;
    align-items: center;
    color: var(--voice-primary);
    font-size: 24px;
}

.process-arrow.down {
    transform: rotate(90deg);
    margin: 15px 0;
}

.process-branch {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.branch {
    width: 150px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.branch-success {
    background: rgba(56, 161, 105, 0.1);
    border: 1px solid #38a169;
}

.branch-warning {
    background: rgba(236, 201, 75, 0.1);
    border: 1px solid #ecc94b;
}

.branch-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.branch-success .branch-icon {
    color: #38a169;
}

.branch-warning .branch-icon {
    color: #ecc94b;
}

.branch-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.branch-desc {
    color: #666;
    font-size: 14px;
}

.process-note {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-style: italic;
}

/* 加入步骤 */
.join-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
    flex-wrap: wrap;
}

.join-step {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.step-arrow {
    font-size: 24px;
    color: var(--voice-primary);
    margin: 0 15px;
}

/* 申请部分 */
.apply-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.apply-info {
    padding-right: 20px;
}

.apply-info h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.apply-quote {
    background: rgba(0, 87, 194, 0.05);
    padding: 25px;
    border-radius: 12px;
    position: relative;
    margin-top: 25px;
}

.apply-quote p:first-child {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.quote-text {
    font-style: italic;
    color: #555;
}

.apply-form-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.apply-form h3 {
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9fafb;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--voice-primary);
    box-shadow: 0 0 0 3px rgba(0, 87, 194, 0.15);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.required {
    color: #e53e3e;
}

.form-buttons {
    margin-top: 30px;
    text-align: center;
}

/* 开始申请表格 */
.interest-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}
                            
.interest-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s ease;
}
                            
.interest-option:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
}
                            
.interest-option input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}
                            
.interest-option label {
    margin: 0;
    cursor: pointer;
    font-weight: normal;
    flex: 1;
}

/* 合作伙伴证言 */
.partner-testimonial {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    flex-shrink: 0;
    margin-right: 20px;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
}

.testimonial-text {
    font-style: italic;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: var(--voice-primary);
    text-align: right;
    margin-top: 10px;
}

/* FAQ */
.faq-container {
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #f0f0f0;
}

.question-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .question-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-more {
    text-align: center;
    margin-top: 20px;
}

.faq-more a {
    color: var(--voice-primary);
    font-weight: 500;
    text-decoration: none;
}

.faq-more a:hover {
    text-decoration: underline;
}

/* 简报订阅部分 */
.newsletter-section {
    padding: var(--spacing-xl, 3rem) 0;
    background: linear-gradient(135deg, #E6F2FF 0%, #F0F8FF 100%);
    color: var(--gray-dark, #374151);
    border-top: 1px solid rgba(0, 87, 194, 0.1);
    border-bottom: 1px solid rgba(0, 87, 194, 0.1);
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl, 3rem);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg, 2rem);
}

.newsletter-icon {
    font-size: 3rem;
    color: var(--voice-primary);
    width: 60px;
    height: 60px;
    background: rgba(0, 87, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-content:hover .newsletter-icon {
    transform: scale(1.1);
    background: rgba(0, 87, 194, 0.2);
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs, 0.5rem);
    color: var(--primary-dark, #004199);
}

.newsletter-text p {
    font-size: 1.5rem;
    color: var(--gray-dark, #374151);
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-input-group {
    display: flex;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    font-size: 1.6rem;
    color: var(--gray-dark, #374151);
    background-color: var(--white, #FFFFFF);
    border: 1px solid rgba(0, 87, 194, 0.1);
    border-radius: var(--radius-md, 8px) 0 0 var(--radius-md, 8px);
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 87, 194, 0.2);
    border-color: var(--voice-primary);
}

.newsletter-input-group button {
    border-radius: 0 var(--radius-md, 8px) var(--radius-md, 8px) 0;
    background: linear-gradient(90deg, var(--voice-primary) 0%, var(--voice-accent) 100%);
    color: var(--white, #FFFFFF);
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-input-group button:hover {
    background: linear-gradient(90deg, var(--voice-accent) 0%, var(--voice-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 87, 194, 0.2);
}

.newsletter-message {
    margin-top: 10px;
    font-size: 1.4rem;
    text-align: left;
    transition: all 0.3s ease;
}

.newsletter-message.success {
    color: #2ecc71;
}

.newsletter-message.error {
    color: #e74c3c;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .partner-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .apply-container {
        grid-template-columns: 1fr;
    }
    
    .apply-info {
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .page-title {
        font-size: 32px; /* 统一响应式字体大小 */
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .partners-stats {
        margin: 40px 0;
    }
    
    .stat-item {
        padding: 30px 20px;
        min-width: 180px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content {
        flex-direction: column;
        margin-bottom: var(--spacing-lg, 2rem);
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px; /* 统一响应式字体大小 */
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .partner-types-grid,
    .benefits-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-nav {
        flex-wrap: wrap;
    }
    
    .tier-tab {
        flex: 1 0 50%;
    }
    
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    
    .process-arrow, .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .process-branch {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .join-steps {
        flex-direction: column;
    }
    
    .join-step {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .partner-testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .testimonial-author {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .breadcrumbs {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .breadcrumbs a i.fa-home {
        font-size: 12px;
    }
    
    .page-title {
        font-size: 24px; /* 统一响应式字体大小 */
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .tier-tab {
        flex: 1 0 100%;
    }
    
    .partners-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
        margin-bottom: 15px;
    }
    
    .logo-wall-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .become-partner-card {
        padding: 30px 20px;
    }
    
    .card-decoration {
        display: none;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group input,
    .newsletter-input-group button {
        width: 100%;
        border-radius: var(--radius-md, 8px);
    }
    
    .newsletter-input-group input {
        margin-bottom: 10px;
    }
}