/* ==================== 关于我们页面样式 ==================== */

/* ==================== Hero区域样式 ==================== */
.hero.about-hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* 双层波浪效果 */
.hero.about-hero .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
}

.hero.about-hero .wave-1 {
    opacity: 0.3;
    animation: waveMove 8s linear infinite;
    z-index: 1;
}

.hero.about-hero .wave-2 {
    opacity: 0.5;
    animation: waveMove 12s linear infinite reverse;
    z-index: 2;
    bottom: 10px;
}

/* 粒子装饰效果 */
.hero.about-hero .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.hero.about-hero .particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.hero.about-hero .particle-2 {
    top: 20%;
    left: 30%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.hero.about-hero .particle-3 {
    top: 60%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.hero.about-hero .particle-4 {
    top: 40%;
    left: 70%;
    animation-delay: 9s;
    animation-duration: 19s;
}

.hero.about-hero .particle-5 {
    top: 25%;
    left: 85%;
    animation-delay: 12s;
    animation-duration: 17s;
}

/* 波浪动画 */
@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 粒子浮动动画 */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-50px) translateX(20px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(-30px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-60px) translateX(10px) scale(1.1);
        opacity: 0.5;
    }
}

/* Hero内容布局 */
.hero.about-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 4rem 0;
}

/* Hero标题样式 */
.hero.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: titleFadeIn 1s ease-out;
}

/* Hero副标题样式 */
.hero.about-hero .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: titleFadeIn 1s ease-out 0.2s backwards;
}

/* Hero描述文本样式 */
.hero.about-hero .hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: titleFadeIn 1s ease-out 0.4s backwards;
}

/* Hero按钮区域 */
.hero.about-hero .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: titleFadeIn 1s ease-out 0.6s backwards;
}

/* Hero按钮基础样式 */
.hero.about-hero .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* 主按钮样式 - 白色背景 */
.hero.about-hero .btn-primary {
    background: white;
    color: #10b981;
    border: 2px solid white;
}

/* 主按钮悬停效果 */
.hero.about-hero .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 次按钮样式 - 透明背景 */
.hero.about-hero .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* 次按钮悬停效果 */
.hero.about-hero .btn-outline:hover {
    background: white;
    color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero图标区域 */
.hero.about-hero .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: iconFloat 3s ease-in-out infinite;
}

/* Hero图标包装器 */
.hero.about-hero .hero-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero图标样式 */
.hero.about-hero .hero-icon {
    width: 200px;
    height: 200px;
    color: rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

/* Hero图标光晕效果 */
.hero.about-hero .hero-icon-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

/* 图标浮动动画 */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 光晕脉冲动画 */
@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* 标题淡入动画 */
@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== 区块通用样式 ==================== */
section {
    padding: 5rem 0;
}

/* 区块标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

/* ==================== 公司简介样式 ==================== */
.company-intro {
    padding: 5rem 0;
    background: #f9fafb;
}

/* 简介内容布局 */
.company-intro .intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* 简介文本样式 */
.company-intro .intro-text {
    line-height: 2;
    color: #4b5563;
}

.company-intro .intro-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* 特色功能列表 */
.company-intro .intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

/* 特色功能项 */
.company-intro .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.company-intro .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 特色功能图标 */
.company-intro .feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* 特色功能文本 */
.company-intro .feature-text {
    font-size: 0.875rem;
    color: #1f2937;
    font-weight: 500;
}

/* 数据统计区域 */
.company-intro .intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* 统计项样式 */
.company-intro .stat-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-intro .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 统计项主题色 */
.company-intro .stat-item-primary {
    border-top: 4px solid #10b981;
}

.company-intro .stat-item-secondary {
    border-top: 4px solid #059669;
}

.company-intro .stat-item-tertiary {
    border-top: 4px solid #047857;
}

.company-intro .stat-item-quaternary {
    border-top: 4px solid #065f46;
}

/* 统计数字样式 */
.company-intro .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 统计标签样式 */
.company-intro .stat-label {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* 统计图标 */
.company-intro .stat-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

/* ==================== 企业文化样式 ==================== */
.company-culture {
    padding: 5rem 0;
    background: white;
}

/* 文化网格布局 */
.company-culture .culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* 文化卡片样式 */
.company-culture .culture-item {
    background: #f9fafb;
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.company-culture .culture-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.company-culture .culture-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

.company-culture .culture-item:hover::before {
    opacity: 0.05;
}

/* 文化图标包装器 */
.company-culture .culture-icon-wrapper {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.company-culture .culture-item:hover .culture-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* 文化图标样式 */
.company-culture .culture-icon {
    width: 40px;
    height: 40px;
    color: white;
    transition: all 0.3s ease;
}

/* 文化标题样式 */
.company-culture .culture-item h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* 文化描述样式 */
.company-culture .culture-item p {
    color: #6b7280;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

/* ==================== 荣誉资质样式 ==================== */
.honors-certifications {
    padding: 5rem 0;
    background: #f9fafb;
}

/* 荣誉网格布局 */
.honors-certifications .honors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 荣誉项样式 */
.honors-certifications .honor-item {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.honors-certifications .honor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.honors-certifications .honor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.honors-certifications .honor-item:hover::before {
    opacity: 0.05;
}

/* 荣誉图标包装器 */
.honors-certifications .honor-icon-wrapper {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.honors-certifications .honor-item:hover .honor-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* 荣誉图标 */
.honors-certifications .honor-icon {
    width: 40px;
    height: 40px;
    color: white;
    transition: all 0.3s ease;
}

/* 荣誉标题 */
.honors-certifications .honor-item h3 {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* 荣誉描述 */
.honors-certifications .honor-item p {
    color: #6b7280;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

/* ==================== CTA区域样式 ==================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #10b981, #059669);
    text-align: center;
}

/* CTA内容 */
.cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* CTA标题 */
.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* CTA描述 */
.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* CTA按钮区域 */
.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* CTA按钮样式 */
.cta-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA主按钮 */
.cta-section .btn-primary {
    background: white;
    color: #10b981;
    border: 2px solid white;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* CTA次按钮 */
.cta-section .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ==================== 页脚样式 ==================== */
/* ==================== 响应式设计 ==================== */

/* 1024px以下 */
@media (max-width: 1024px) {
    /* Hero区域 */
    .hero.about-hero {
        min-height: 500px;
    }

    .hero.about-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero.about-hero .hero-cta {
        justify-content: center;
    }

    .hero.about-hero .hero-icon {
        width: 150px;
        height: 150px;
    }

    .hero.about-hero .hero-icon-glow {
        width: 200px;
        height: 200px;
    }

    /* 公司简介 */
    .company-intro .intro-content {
        grid-template-columns: 1fr;
    }

    .company-intro .intro-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 企业文化 */
    .company-culture .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 荣誉资质 */
    .honors-certifications .honors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px以下 */
@media (max-width: 768px) {
    /* Hero区域 */
    .hero.about-hero {
        min-height: 500px;
        padding: 120px 0 var(--spacing-md) 0;
    }

    .hero.about-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero.about-hero .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero.about-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .hero.about-hero .hero-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero.about-hero .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero.about-hero .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 0.9375rem;
        justify-content: center;
    }

    .hero.about-hero .hero-icon {
        width: 120px;
        height: 120px;
    }

    .hero.about-hero .hero-icon-glow {
        width: 160px;
        height: 160px;
    }

    /* 隐藏粒子效果以提升性能 */
    .hero.about-hero .particle {
        display: none;
    }

    /* 简化波浪效果 */
    .hero.about-hero .wave-1 {
        display: none;
    }

    /* 区块标题 */
    .section-header h2 {
        font-size: 2rem;
    }

    /* 公司简介 */
    .company-intro .intro-text p {
        font-size: 1rem;
    }

    .company-intro .intro-features {
        grid-template-columns: 1fr;
    }

    .company-intro .intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-intro .stat-number {
        font-size: 2rem;
    }

    /* 企业文化 */
    .company-culture .culture-grid {
        grid-template-columns: 1fr;
    }

    /* 荣誉资质 */
    .honors-certifications .honors-grid {
        grid-template-columns: 1fr;
    }

    /* CTA区域 */
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.125rem;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* 480px以下 */
@media (max-width: 480px) {
    /* Hero区域 */
    .hero.about-hero {
        min-height: 450px;
        padding: 100px 0 40px 0;
    }

    .hero.about-hero .hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero.about-hero .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 10px;
    }

    .hero.about-hero .hero-description {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero.about-hero .hero-cta {
        gap: 12px;
    }

    .hero.about-hero .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
        max-width: 240px;
    }

    .hero.about-hero .hero-icon {
        width: 6rem;
        height: 6rem;
        margin-top: 1rem;
    }

    .hero.about-hero .hero-icon-glow {
        width: 8rem;
        height: 8rem;
    }

    /* 区块标题 */
    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* 公司简介 */
    .company-intro .intro-text p {
        font-size: 0.95rem;
    }

    .company-intro .stat-number {
        font-size: 1.75rem;
    }

    .company-intro .stat-label {
        font-size: 0.875rem;
    }

    /* 企业文化 */
    .company-culture .culture-item {
        padding: 2rem 1rem;
    }

    .company-culture .culture-item h3 {
        font-size: 1.125rem;
    }

    .company-culture .culture-item p {
        font-size: 0.875rem;
    }

    /* 荣誉资质 */
    .honors-certifications .honor-item {
        padding: 2rem 1rem;
    }

    .honors-certifications .honor-item h3 {
        font-size: 1.125rem;
    }

    .honors-certifications .honor-item p {
        font-size: 0.875rem;
    }

    /* CTA区域 */
    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}