/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1890FF;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1890FF;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

/* 首页横幅 */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-text {
    flex: 0 0 auto;
    width: 320px;
    color: #fff;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* APP界面展示 */
.app-showcase {
    margin-top: 40px;
    max-width: 900px;
    margin-left: 180px;
    margin-right: auto;
}

.app-showcase h3 {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.app-showcase-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 15px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.app-showcase-grid::-webkit-scrollbar {
    display: none;
}

.app-showcase-grid img {
    width: 280px;
    height: 560px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.app-showcase-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: #667eea;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* 核心功能 */
.features {
    padding: 100px 0;
    background: #fff;
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: #667eea;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* 核心功能 */
.features {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* 任务类型 */
.task-types {
    padding: 100px 0;
    background: #f8f9fa;
}

.task-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.task-type-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.task-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.task-type-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.task-type-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.task-type-card p {
    color: #666;
    line-height: 1.6;
}

/* 优势特点 */
.advantages {
    padding: 100px 0;
    background: #fff;
}

.advantages-list {
    max-width: 900px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 100px;
}

.advantage-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.advantage-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* 数据统计 */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* CTA区域 */
    .cta {
        padding: 100px 0;
        background: #f8f9fa;
    }

    .cta-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #333;
    }

    .scenario-list {
        margin-top: 2rem;
    }

    .scenario-item {
        margin-bottom: 1.5rem;
        text-align: left;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .scenario-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        color: #1890FF;
    }

/* 页面标题 */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 功能详情 */
.feature-details {
    padding: 80px 0;
    background: #fff;
}

.feature-detail {
    margin-bottom: 80px;
}

.feature-detail-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.feature-detail-icon {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    flex-shrink: 0;
}

.feature-detail-text {
    flex: 1;
}

.feature-detail-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-detail-text > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    line-height: 1.6;
}

.feature-list i {
    color: #667eea;
    font-size: 0.8rem;
}

/* 页脚 */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s;
    position: relative;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-link:hover {
    background: #1890FF;
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #1890FF;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #1890FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
}

/* 自定义社交图标样式 - 已移除 */

/* 公司介绍 */
.company-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.intro-image {
    flex: 1;
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 企业文化 */
.company-culture {
    padding: 80px 0;
    background: #f8f9fa;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.culture-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.culture-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.culture-card p {
    color: #666;
    line-height: 1.6;
}

/* 发展历程 */
.timeline {
    padding: 80px 0;
    background: #fff;
}

.timeline-list {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.timeline-year {
    flex: 0 0 120px;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* 核心团队 */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.team-card p {
    color: #666;
    line-height: 1.6;
}

/* iOS配置说明 */
.ios-config {
    padding: 80px 0;
    background: #f8f9fa;
}

.config-card {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.config-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.config-content {
    display: grid;
    gap: 40px;
}

.config-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 10px;
}

.config-list {
    list-style: none;
    padding: 0;
}

.config-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.config-list li:last-child {
    border-bottom: none;
}

.text-success {
    color: #52c41a;
}

.text-warning {
    color: #faad14;
}

.config-steps {
    list-style: none;
    padding: 0;
    counter-reset: step;
}

.config-steps li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    border-left: 3px solid #667eea;
    margin-left: 10px;
}

.config-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -12px;
    top: 15px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #667eea;
    border-radius: 50%;
}

.timeline-date {
    font-size: 0.9rem;
    color: #667eea;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content h5 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
}

.resource-list {
    display: grid;
    gap: 20px;
}

.resource-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.resource-item i {
    font-size: 2rem;
    color: #667eea;
    min-width: 40px;
}

.resource-item h5 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.resource-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* iOS即将上线按钮样式 */
.ios-coming-soon {
    cursor: pointer !important;
    opacity: 0.7;
    background: linear-gradient(135deg, #ccc 0%, #999 100%) !important;
}

.ios-coming-soon:hover {
    opacity: 1;
    background: linear-gradient(135deg, #ddd 0%, #aaa 100%) !important;
}

/* 联系我们 */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* 下载页面 */
.download-section {
    padding: 60px 0;
    background: #fff;
}

.download-method {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
    margin-bottom: 60px;
}

.download-icon {
    color: #667eea;
    margin-bottom: 20px;
}

.download-method h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.download-method > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.download-features {
    list-style: none;
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin-bottom: 40px;
    text-align: left;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.download-features i {
    color: #667eea;
}

.download-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.qrcode-placeholder {
    text-align: center;
}

.qrcode {
    width: 200px;
    height: 200px;
    background: #fff;
    border: 2px solid #667eea;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.qrcode-hint {
    color: #666;
    font-size: 0.9rem;
}

.version-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.version-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.version-info p {
    color: #666;
    margin-bottom: 10px;
}

.version-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.version-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.version-link:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.system-requirements {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.system-requirements h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.req-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

.req-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.req-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.req-item p {
    color: #666;
    line-height: 1.6;
}

.download-tips {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.tip-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tip-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* APK下载按钮样式 */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.platform-button {
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.platform-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.platform-button:active::before {
    width: 300px;
    height: 300px;
}

.platform-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.platform-button.android {
    background: linear-gradient(135deg, #3ddc84, #32b768);
    border: 2px solid #2d9d5c;
}

.platform-button.android i {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.platform-button.android .download-link {
    color: white;
    text-decoration: none;
    display: block;
}

.platform-button.android .download-link span {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.platform-button.android .download-link small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.platform-button.ios {
    background: linear-gradient(135deg, #007aff, #0051cc);
    border: 2px solid #0047b3;
}

.platform-button.ios i {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.platform-button.ios .download-link {
    color: white;
    text-decoration: none;
    display: block;
}

.platform-button.ios .download-link span {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.platform-button.ios .download-link small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.platform-button.harmonyos {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: 2px solid #cc4c2a;
}

.platform-button.harmonyos i {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.platform-button.harmonyos .download-link {
    color: white;
    text-decoration: none;
    display: block;
}

.platform-button.harmonyos .download-link span {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.platform-button.harmonyos .download-link small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* 二维码样式 */
.qrcode {
    width: 200px;
    height: 200px;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.qrcode img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

/* 下载链接样式 */
.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.download-link::after {
    content: "点击下载";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.download-link:hover::after {
    opacity: 1;
}

.download-link:active {
    transform: scale(0.95);
    background: rgba(0, 0, 0, 0.1);
}

/* 二维码样式 - 恢复原始效果 */
.qrcode-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.qrcode {
    width: 300px; /* 增大尺寸 */
    height: auto;
    display: block;
    border: none; /* 移除边框 */
    border-radius: 0; /* 移除圆角 */
    box-shadow: none; /* 移除阴影 */
    background: transparent; /* 移除背景 */
}

.qrcode-placeholder {
    display: block;
    text-align: center;
}

.qrcode-info {
    display: none; /* 隐藏文字说明 */
}

/* APK信息区域 */
.apk-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.apk-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.apk-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

.apk-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.apk-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
}

.apk-item span:first-child {
    font-weight: 600;
    color: #666;
}

.apk-item span:last-child {
    color: #333;
}

/* 下载选项卡 */
.download-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e8e8e8;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px 12px 0 0;
}

.tab {
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    background: transparent;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    color: #666;
    font-weight: 500;
}

.tab.active {
    background: white;
    border-bottom: 2px solid #1890FF;
    border-top: 2px solid #1890FF;
    border-left: 2px solid #1890FF;
    border-right: 2px solid #1890FF;
    color: #1890FF;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

.tab i {
    font-size: 1.2rem;
}

/* 二维码容器 - 完全移除所有样式 */
.qrcode-container {
    text-align: center;
    margin-top: 2rem;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    margin: 2rem 0;
}

/* 二维码占位符 - 完全移除所有样式 */
.qrcode-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
}

/* 二维码 - 完全移除所有样式 */
.qrcode {
    width: auto;
    height: auto;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    margin: 0;
}

/* 二维码信息 - 完全移除 */
.qrcode-info {
    display: none;
}

/* 选项卡内容 - 确保没有白色背景 */
.tab-content {
    background: transparent;
    border-radius: 0;
}

/* 二维码容器 - 确保没有白色背景 */
.qrcode-container {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    margin: 2rem 0;
}

/* 选项卡内容 */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 下载引导步骤 */
.download-guide {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s;
    border: 1px solid #e8e8e8;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 36px;
    height: 36px;
    background: #1890FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
}

/* 二维码容器 */
.qrcode-container {
    text-align: center;
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.qrcode-info {
    margin-top: 1.5rem;
}

.qrcode-info p {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}

.qrcode-info .small-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid,
    .task-types-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* 会员页面样式 */
/* 会员权益概览 */
.benefits-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* 会员等级详情 */
.membership-levels {
    padding: 80px 0;
}

.level-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.tab-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

.level-content {
    max-width: 900px;
    margin: 0 auto;
}

.level-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.level-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.level-header {
    padding: 40px;
    text-align: center;
    color: white;
}

.level-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.level-badge-normal {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

.level-badge-silver {
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
}

.level-badge-gold {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
}

.level-badge-diamond {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.level-requirements {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
}

.requirement-divider {
    font-size: 1.2rem;
    font-weight: 700;
}

.level-details {
    padding: 40px;
}

.level-details h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profit-rates {
    margin-bottom: 30px;
}

.profit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
}

.profit-level {
    font-weight: 600;
    color: #666;
}

.profit-rate {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: #52c41a;
    font-size: 1.2rem;
}

/* 晋级路径 */
.upgrade-path {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.upgrade-path .section-header h2,
.upgrade-path .section-header p {
    color: white;
}

.path-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.path-step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin: 0 auto 20px;
}

.path-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.path-step p {
    font-size: 0.9rem;
    color: white;
    opacity: 0.95;
}

.path-arrow {
    font-size: 2rem;
    opacity: 0.8;
    color: white;
}

/* 安全机制 */
.security-mechanism {
    padding: 80px 0;
    background: #f8f9fa;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.security-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.security-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.security-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #999;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
    color: #666;
    line-height: 1.8;
}

/* CTA区域 */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    color: #764ba2;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .benefits-grid,
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .level-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .level-header {
        padding: 30px 20px;
    }

    .level-details {
        padding: 30px 20px;
    }

    .path-steps {
        flex-direction: column;
    }

    .path-arrow {
        transform: rotate(90deg);
    }

    .path-step {
        max-width: 100%;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .level-badge {
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    .level-requirements {
        flex-direction: column;
    }

    .requirement-divider {
        transform: rotate(90deg);
    }

    .profit-rate {
        font-size: 1.3rem;
    }
}

/* 社区区长页面样式 */
/* 入门条件 */
.entry-conditions {
    padding: 80px 0;
    background: #f8f9fa;
}

.conditions-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.condition-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.condition-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.condition-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* 月度考核机制 */
.assessment-mechanism {
    padding: 80px 0;
    background: #fff;
}

.assessment-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        margin-top: 50px;
        align-items: start;
    }

    .assessment-indicators {
        background: #f8f9fa;
        padding: 40px;
        border-radius: 20px;
    }

    .assessment-levels {
        background: #f8f9fa;
        padding: 40px;
        border-radius: 20px;
    }

    .assessment-indicators h3,
    .assessment-levels h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: #333;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .indicators-list {
        list-style: none;
    }

    .indicators-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 0;
        color: #555;
        border-bottom: 1px solid #e8e8e8;
    }

    .indicators-list li:last-child {
        border-bottom: none;
    }

    .indicators-list li i {
        color: #52c41a;
        font-size: 1.2rem;
    }

    /* 考核等级样式 */
    .assessment-levels ul {
        list-style: none;
    }

    .assessment-levels li {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 5px 0;
        color: #555;
        border-bottom: 1px solid #e8e8e8;
        position: relative;
    }

    .assessment-levels li:last-child {
        border-bottom: none;
    }

    .assessment-levels li .level-title {
        font-size: 1rem;
        font-weight: 400;
        color: #333;
        flex: 1;
    }

    .assessment-levels li .level-bonus {
        font-size: 0.9rem;
        font-weight: 400;
        color: #667eea;
        padding: 2px 4px;
        background: rgba(102, 126, 234, 0.1);
        border-radius: 2px;
        margin-right: 4px;
    }

    .assessment-levels li .level-desc {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.1;
    }

    /* 移除边框，使用图标代替 */
    .assessment-levels li.level-excellent .level-bonus {
        border-left: 4px solid #28a745;
        padding-left: 20px;
    }

    .assessment-levels li.level-good .level-bonus {
        border-left: 4px solid #17a2b8;
        padding-left: 20px;
    }

    .assessment-levels li.level-qualified .level-bonus {
        border-left: 4px solid #ffc107;
        padding-left: 20px;
    }

    .assessment-levels li.level-warning .level-bonus {
        border-left: 4px solid #fd7e14;
        padding-left: 20px;
    }

    .assessment-levels li.level-failed .level-bonus {
        border-left: 4px solid #dc3545;
        padding-left: 20px;
    }

/* 激励机制 */
.incentive-mechanism {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.incentive-mechanism .section-header h2,
.incentive-mechanism .section-header p {
    color: white;
}

.incentive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.incentive-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.incentive-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.incentive-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.incentive-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.incentive-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* 团队管理 */
.team-management {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-feature {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.team-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.team-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.team-feature p {
    color: #666;
    line-height: 1.6;
}

/* 防作弊机制 */
.anti-cheat {
    padding: 80px 0;
    background: #fff;
}

.anti-cheat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.anti-cheat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.anti-cheat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #f5576c;
}

.anti-cheat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.anti-cheat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.anti-cheat-card p {
    color: #666;
    line-height: 1.6;
}

/* 入门流程 */
.entry-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.entry-process .section-header h2,
.entry-process .section-header p {
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-badge {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* 区长体系介绍 */
.leadership-intro {
    padding: 80px 0;
    background: #fff;
}

/* 申请表单样式 */
.application-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.leader-application-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-section h3 i {
    color: #667eea;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group label::after {
    content: ' *';
    color: #f5576c;
}

.form-group label:not(:has(+ [required]))::after {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f5576c;
}

.form-group input[type="file"] {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.agreement-content {
    background: rgba(102, 126, 234, 0.05);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.agreement-content p {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.agreement-content ol {
    margin-left: 20px;
    color: #666;
    line-height: 2;
}

.agreement-content li {
    margin-bottom: 10px;
}

.agreement-checkbox {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

.form-submit {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-lg {
    padding: 15px 50px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-lg i {
    font-size: 1.2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .assessment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .condition-item {
        flex-direction: column;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .level-card {
        min-height: auto;
        padding: 20px;
    }

    .assessment-indicators,
    .assessment-levels {
        padding: 30px 25px;
    }
}

    .form-section {
        padding: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-submit {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* 入门流程时间显示 */
.step-time {
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
}

/* 申请提交说明 */
.submit-instruction {
    padding: 80px 0;
    background: #f8f9fa;
}

.instruction-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.instruction-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.instruction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.instruction-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.instruction-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.instruction-card p {
    color: #666;
    line-height: 1.6;
}

/* 申请状态显示 */
.application-status {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #667eea;
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.status-header i {
    font-size: 1.8rem;
}

.status-content {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.status-progress {
    background: #f0f0f0;
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

/* 提交说明 */
.submit-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(102, 126, 234, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin-top: 20px;
}

.note-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.note-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.note-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 模态框样式 */
.success-modal,
.error-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
}

.modal-icon.success {
    background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
    color: white;
}

.modal-icon.error {
    background: linear-gradient(135deg, #ff4d4f 0%, #f5576c 100%);
    color: white;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.modal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.modal-content .highlight {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.modal-tips {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: left;
}

.modal-tips p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    margin-bottom: 10px;
}

.modal-tips p:last-child {
    margin-bottom: 0;
}

.modal-tips i {
    color: #667eea;
    flex-shrink: 0;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* 按钮禁用状态 */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .submit-note {
        flex-direction: column;
        text-align: center;
    }

    .modal-content {
        padding: 30px;
        margin: 10px;
    }

    .modal-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .modal-content h3 {
        font-size: 1.5rem;
    }

    .modal-tips {
        padding: 15px;
    }

    .modal-tips p {
        font-size: 0.9rem;
    }
}

/* 区域代理样式 */
.regional-agent {
    padding: 80px 0;
    background-color: #fff;
}

.regional-agent .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.regional-agent .section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.regional-agent .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.regional-agent-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.regional-info, .regional-details {
    flex: 1;
}

.regional-agent h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.regional-agent h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #667eea;
}

.agent-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2rem;
    color: #667eea;
    margin-right: 20px;
    margin-top: 5px;
}

.benefit-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.fee-calculation {
    background-color: #e8f4ff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.fee-calculation p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #333;
}

.fee-calculation strong {
    color: #2c3e50;
}

.agent-responsibilities {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.agent-responsibilities ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.agent-responsibilities li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.agent-responsibilities i {
    color: #28a745;
    margin-right: 15px;
    margin-top: 3px;
}

/* 区域代理申请条件 */
.agent-requirements {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.agent-requirements .assessment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.assessment-indicators, .assessment-levels {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.assessment-indicators h3, .assessment-levels h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.assessment-indicators i, .assessment-levels i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.indicators-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.indicators-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
    min-height: 44px;
}

.indicators-list i {
    color: #28a745;
    margin-right: 12px;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.level-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.level-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 精确对齐两边高度和间距 */
.indicators-list li {
    padding-top: 7px;
    padding-bottom: 7px;
}

.level-title {
    padding-top: 3px;
}

.level-desc {
    padding-top: 3px;
    padding-bottom: 3px;
}

/* 响应式微调 */
@media (max-width: 992px) {
    .indicators-list li {
        margin-bottom: 18px;
        min-height: 42px;
    }
    
    .level-desc {
        font-size: 0.92rem;
        line-height: 1.4;
    }
    
    .assessment-indicators, .assessment-levels {
        padding: 25px;
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .agent-requirements .assessment-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .regional-agent-content {
        flex-direction: column;
    }
    
    .regional-agent .section-header h2 {
        font-size: 1.8rem;
    }
    
    .regional-agent h3 {
        font-size: 1.5rem;
    }
    
    .agent-requirements .assessment-content {
        padding: 20px;
    }
    
    .assessment-indicators h3, .assessment-levels h3 {
        font-size: 1.3rem;
    }
    
    .indicators-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .agent-requirements {
        padding: 60px 0;
    }
    
    .assessment-indicators, .assessment-levels {
        padding: 20px;
    }
}

/* 申请表格样式 */
.application-form {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.application-form .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.application-form .section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.application-form .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.application-form .form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.agent-application-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group.full-width label {
    margin-bottom: 10px;
}

.form-group.full-width textarea {
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.form-actions .btn {
    flex: 1;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.form-actions .btn-primary {
    background-color: #3498db;
    color: white;
}

.form-actions .btn-primary:hover {
    background-color: #2980b9;
}

.form-actions .btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.form-actions .btn-secondary:hover {
    background-color: #7f8c8d;
}

.form-group input[type="checkbox"] + label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
}

/* 招聘页面样式 */
.recruitment-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* 合作伙伴区域 */
.partners-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.partner-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.partner-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.partner-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* 职位招聘区域 */
.recruitment-section {
    padding: 80px 20px;
    background: white;
}

.job-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.category-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
}

.category-header i {
    font-size: 2rem;
    color: #667eea;
    margin-right: 15px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.job-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.job-card:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.job-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.job-desc {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-tags .tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* 合作优势区域 */
.advantages-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.advantages-section .section-header h2,
.advantages-section .section-header p {
    color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* 联系方式区域 */
.contact-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-item p {
    color: #7f8c8d;
    line-height: 1.5;
}

.contact-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-cta h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-cta p {
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .application-form {
        padding: 60px 20px;
    }

    .application-form .form-container {
        padding: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;

    /* 招聘页面响应式 */
    .partners-grid,
    .jobs-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-header i {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
    }
}
