/* 页面通用样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    overflow: auto;
    height: auto;
    background: #0f172a;
    color: #f1f5f9;
}

.container {
    width: 100%;
    height: auto;
    position: relative;
    overflow: visible;
    transform: none;
    transition: none;
}

/* 导航�?*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e2e8f0;
}

.navbar-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.logo {
    height: 85px;
    width: auto;
}

.feeling-logo {
    height: 60px;
}

.navbar-center {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    color: #1e293b;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
    font-weight: 500;
}

.nav-item:hover {
    color: #6B2578;
    background: #f1f5f9;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-icon-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #6B2578;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-icon-btn:hover {
    color: #6B2578;
    transform: scale(1.1);
}

/* Hero区域 */
.section1 {
    width: 100%;
    height: auto;
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 160px 40px;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.section1::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section1::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section1 h1 {
    font-size: 72px;
    margin-bottom: 20px;
    font-weight: 900;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section1 p {
    font-size: 24px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 内容区域 */
.section {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0;
    background: #0f172a;
    color: #f1f5f9;
    padding: 100px 40px;
    min-height: auto;
}

.content-section {
    width: 100%;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 48px;
    color: #6B2578;
    margin-bottom: 40px;
    margin-top: 80px;
    font-weight: 900;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -1px;
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: #6B2578;
    border-radius: 3px;
}

.content-section h3 {
    font-size: 24px;
    color: #f1f5f9;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.content-section p {
    font-size: 17px;
    line-height: 2;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.content-section ul,
.content-section ol {
    font-size: 17px;
    line-height: 2;
    color: #cbd5e1;
    margin-left: 30px;
    margin-bottom: 25px;
}

.content-section li {
    margin-bottom: 15px;
}

.highlight {
    color: #6B2578;
    font-weight: 800;
    background: rgba(107, 37, 120, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* 联系卡片 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.contact-card {
    background: #1e293b;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #6B2578;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #6B2578;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.contact-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 24px 60px rgba(107, 37, 120, 0.3);
    background: #334155;
    border-color: #6B2578;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover::after {
    opacity: 1;
}

.contact-card .icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-card:hover .icon {
    transform: scale(1.2);
}

.contact-card h3 {
    font-size: 26px;
    color: #f1f5f9;
    margin-bottom: 15px;
    font-weight: 900;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

.contact-card p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* 表单区域 */
.form-section {
    background: #1e293b;
    padding: 60px 50px;
    border-radius: 20px;
    margin: 60px 0;
    border: 1px solid #6B2578;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-section h2 {
    margin-top: 0;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    color: #f1f5f9;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #6B2578;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.2s ease;
    background: #0f172a;
    color: #f1f5f9;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B2578;
    box-shadow: 0 0 0 5px rgba(107, 37, 120, 0.2);
    background: #1a2847;
}

.submit-btn {
    background: #6B2578;
    color: white;
    border: none;
    padding: 18px 56px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(107, 37, 120, 0.35);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(107, 37, 120, 0.5);
    background: #6B2578;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-2px);
}

/* 页脚 */
.footer-section {
    background: #0f172a;
    color: white;
    padding: 10px 20px;
    text-align: center;
    margin-top: 0;
    overflow-x: auto;
}

.footer-section p {
    color: #cbd5e1;
    font-size: 14px;
}

/* 返回链接 */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    color: #6B2578;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    font-size: 16px;
}

.back-link:hover {
    color: #6B2578;
    transform: translateX(-8px);
}

/* 页面容器 */
.page-container {
    width: 100%;
    height: auto;
    background: #0f172a;
    color: #f1f5f9;
    margin-top: 90px;
}

/* 页面头部 */
.page-header {
    background: linear-gradient(135deg, #1a2847 0%, #0f172a 100%);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 37, 120, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 64px;
    color: white;
    margin-bottom: 16px;
    font-weight: 900;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 20px;
    color: #cbd5e1;
    font-weight: 500;
    letter-spacing: 1px;
}

/* 内容区域 */
.page-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px 10px 40px;
}

/* 章节头部 */
.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
}

.section-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #6B2578 0%, #8B3A8B 100%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(107, 37, 120, 0.6);
}

/* 故事内容 */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-text p {
    font-size: 16px;
    line-height: 2;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(107, 37, 120, 0.3);
}

.story-icon {
    font-size: 120px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 价值观网格 */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.value-card {
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(107, 37, 120, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6B2578 0%, #8B3A8B 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 37, 120, 0.6);
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    box-shadow: 0 12px 40px rgba(107, 37, 120, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}

/* 优势容器 */
.advantages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.advantage-item {
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(107, 37, 120, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 37, 120, 0.6);
    box-shadow: 0 12px 40px rgba(107, 37, 120, 0.2);
}

.advantage-item:hover::before {
    opacity: 1;
}

.advantage-number {
    font-size: 48px;
    font-weight: 900;
    color: #6366f1;
    margin-bottom: 16px;
    opacity: 0.3;
}

.advantage-item h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.advantage-item p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* 商业模式 */
.business-model {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.model-step {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(107, 37, 120, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.model-step:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 37, 120, 0.6);
    box-shadow: 0 12px 40px rgba(107, 37, 120, 0.2);
}

.step-number {
    font-size: 40px;
    font-weight: 900;
    color: #6366f1;
    margin-bottom: 12px;
    display: block;
}

.model-step h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.model-step p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.model-arrow {
    font-size: 32px;
    color: #6366f1;
    font-weight: bold;
    flex: 0 0 auto;
}

/* 愿景内容 */
.vision-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.vision-item {
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(107, 37, 120, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.2s ease;
}

.vision-item:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 37, 120, 0.6);
    box-shadow: 0 12px 40px rgba(107, 37, 120, 0.2);
}

.vision-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.vision-item h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
}

.vision-item p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}

/* 团队文化网格 */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.culture-card {
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(107, 37, 120, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.2s ease;
    text-align: center;
}

.culture-card:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 37, 120, 0.6);
    box-shadow: 0 12px 40px rgba(107, 37, 120, 0.2);
}

.culture-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.culture-card h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
}

.culture-card p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}

/* CTA 区域 */
.cta-section-info {
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(107, 37, 120, 0.3);
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 37, 120, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-info-content {
    position: relative;
    z-index: 1;
}

.cta-section-info h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
    font-weight: 900;
}

.cta-section-info p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 16px 48px;
    background: linear-gradient(135deg, #6B2578 0%, #8B3A8B 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(107, 37, 120, 0.4);
    letter-spacing: 0.5px;
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(107, 37, 120, 0.6);
}

.cta-btn-secondary {
    padding: 16px 48px;
    background: transparent;
    color: #6B2578;
    border: 2px solid #6B2578;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.cta-btn-secondary:hover {
    background: #6B2578;
    color: white;
    transform: translateY(-4px);
}

/* 响应式设�?*/
@media (max-width: 768px) {
    .navbar {
        height: 70px;
        padding: 0 10px;
    }

    .navbar-left {
        gap: 4px;
    }

    .logo {
        height: 32px;
        display: none;
    }

    .feeling-logo {
        height: 32px;
    }

    .navbar-center {
        gap: 12px;
        flex: 1;
        justify-content: center;
        margin-left: 0;
    }

    .nav-item {
        font-size: 14px;
        padding: 5px 8px;
    }

    .page-container {
        margin-top: 70px;
    }

    .page-header {
        padding: 80px 20px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .page-header p {
        font-size: 16px;
    }

    .page-content {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        height: 300px;
    }

    .story-icon {
        font-size: 80px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantages-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .business-model {
        flex-direction: column;
        gap: 15px;
    }

    .model-step {
        min-width: 100%;
    }

    .model-arrow {
        transform: rotate(90deg);
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .culture-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section-info {
        padding: 60px 30px;
    }

    .cta-section-info h2 {
        font-size: 32px;
    }

    .cta-section-info p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }

    .section1 {
        padding: 100px 20px;
        margin-top: 70px;
    }

    .section1 h1 {
        font-size: 44px;
    }

    .section1 p {
        font-size: 18px;
    }

    .section {
        padding: 60px 20px;
    }

    .content-section {
        max-width: 100%;
    }

    .content-section h2 {
        font-size: 32px;
        margin-top: 50px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .content-section p,
    .content-section ul,
    .content-section ol {
        font-size: 16px;
        line-height: 1.8;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .form-section {
        padding: 40px 25px;
        margin: 40px 0;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    .submit-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 65px;
        padding: 0 8px;
    }

    .navbar-center {
        gap: 8px;
    }

    .nav-item {
        font-size: 12px;
        padding: 4px 6px;
    }

    .section1 {
        padding: 80px 15px;
        margin-top: 65px;
    }

    .section1 h1 {
        font-size: 36px;
    }

    .section1 p {
        font-size: 16px;
    }

    .section {
        padding: 40px 15px;
    }

    .content-section h2 {
        font-size: 28px;
        margin-top: 40px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .content-section p,
    .content-section ul,
    .content-section ol {
        font-size: 15px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-card .icon {
        font-size: 44px;
    }

    .form-section {
        padding: 30px 15px;
    }

    .submit-btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}


/* FAQ 容器 */
.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(107, 37, 120, 0.3);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 37, 120, 0.6);
    box-shadow: 0 12px 40px rgba(107, 37, 120, 0.2);
}

.faq-item h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}

/* 社交媒体部分 */
.social-section {
    text-align: center;
    margin-bottom: 80px;
}

.social-section p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    font-weight: 500;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(107, 37, 120, 0.3);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 37, 120, 0.6);
    box-shadow: 0 12px 40px rgba(107, 37, 120, 0.2);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.social-link span {
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 600;
}

/* 响应式设�?*/
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 65px;
        padding: 0 8px;
    }

    .navbar-center {
        gap: 8px;
    }

    .nav-item {
        font-size: 12px;
        padding: 4px 6px;
    }

    .page-container {
        margin-top: 65px;
    }

    .page-header {
        padding: 60px 15px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 14px;
    }

    .page-content {
        padding: 40px 15px;
    }

    .section-header h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .story-content {
        gap: 30px;
    }

    .story-text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .story-image {
        height: 250px;
    }

    .story-icon {
        font-size: 60px;
    }

    .values-grid {
        gap: 15px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .value-icon {
        font-size: 36px;
    }

    .value-card h3 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 14px;
    }

    .advantages-container {
        gap: 15px;
    }

    .advantage-item {
        padding: 25px 20px;
    }

    .advantage-number {
        font-size: 36px;
    }

    .advantage-item h3 {
        font-size: 18px;
    }

    .advantage-item p {
        font-size: 14px;
    }

    .business-model {
        gap: 10px;
    }

    .model-step {
        padding: 20px 15px;
    }

    .step-number {
        font-size: 32px;
    }

    .model-step h3 {
        font-size: 16px;
    }

    .model-step p {
        font-size: 13px;
    }

    .model-arrow {
        font-size: 24px;
    }

    .vision-content {
        gap: 15px;
    }

    .vision-item {
        padding: 25px 20px;
    }

    .vision-icon {
        font-size: 40px;
    }

    .vision-item h3 {
        font-size: 18px;
    }

    .vision-item p {
        font-size: 14px;
    }

    .culture-grid {
        gap: 15px;
    }

    .culture-card {
        padding: 25px 20px;
    }

    .culture-icon {
        font-size: 36px;
    }

    .culture-card h3 {
        font-size: 18px;
    }

    .culture-card p {
        font-size: 14px;
    }

    .cta-section-info {
        padding: 40px 20px;
        margin: 60px 0;
    }

    .cta-section-info h2 {
        font-size: 28px;
    }

    .cta-section-info p {
        font-size: 14px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 14px 32px;
        font-size: 14px;
    }

    .faq-container {
        gap: 15px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-item p {
        font-size: 14px;
    }

    .social-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .social-icon {
        width: 60px;
        height: 60px;
    }

    .social-link span {
        font-size: 12px;
    }

    .section1 {
        padding: 80px 15px;
        margin-top: 65px;
    }

    .section1 h1 {
        font-size: 36px;
    }

    .section1 p {
        font-size: 16px;
    }

    .section {
        padding: 40px 15px;
    }

    .content-section h2 {
        font-size: 28px;
        margin-top: 40px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .content-section p,
    .content-section ul,
    .content-section ol {
        font-size: 15px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-card .icon {
        font-size: 44px;
    }

    .form-section {
        padding: 30px 15px;
    }

    .submit-btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}


/* 企业信息样式 */
.company-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    width: 100%;
}

.info-row {
    background: linear-gradient(135deg, rgba(107, 37, 120, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(107, 37, 120, 0.3);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.2s ease;
}

.info-row:hover {
    border-color: rgba(107, 37, 120, 0.6);
    box-shadow: 0 8px 24px rgba(107, 37, 120, 0.2);
    transform: translateY(-4px);
}

.info-row:last-child {
    border-bottom: 1px solid rgba(107, 37, 120, 0.3);
}

.info-label {
    font-weight: 700;
    color: #6B2578;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

/* 页脚版权样式 */
.footer-copyright {
    text-align: center;
    padding: 10px 20px;
}

.footer-copyright p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    line-height: 1.6;
    white-space: nowrap;
    font-size: 13px;
}

.footer-copyright a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
}

.footer-copyright img {
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .company-info {
        padding: 20px;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .info-label {
        width: 100%;
        text-align: left;
        padding-right: 0;
        margin-bottom: 5px;
    }

    .info-value {
        width: 100%;
    }

    .footer-copyright p {
        font-size: 11px;
        gap: 4px;
    }

    .footer-copyright img {
        height: 14px !important;
    }
}
