/* 关于我们页面样式 */

/* 删除页面标题特定样式，使用通用样式 */
/* .page-header 相关的特定样式已删除，将使用 style.css 中的通用样式 */

/* 关于我们页面主要内容样式 */
.about-page {
    padding: 80px 0;
}

.about-page .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.about-page .about-img {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-page .about-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    z-index: -1;
}

.about-page .about-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s;
}

.about-page .about-img:hover img {
    transform: scale(1.03);
}

.about-page .about-text {
    flex: 1;
    min-width: 300px;
}

/* 使用全局内容标题样式 */
.about-page .about-text h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-page .about-text h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.about-page p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 公司数据统计样式 */
.company-stats {
    margin: 60px 0;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.stat {
    flex: 1;
    min-width: 200px;
    padding: 25px 15px;
    margin: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--animation-order) * 0.2s);
    opacity: 0;
}

.stat:nth-child(1) {
    --animation-order: 1;
}

.stat:nth-child(2) {
    --animation-order: 2;
}

.stat:nth-child(3) {
    --animation-order: 3;
}

.stat:nth-child(4) {
    --animation-order: 4;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--block-shadow);
}

.stat span {
    display: block;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}

/* 使命与价值观区域 */
.mission-values {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.mission, .values {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.mission:hover, .values:hover {
    transform: translateY(-10px);
    box-shadow: var(--block-shadow);
}

/* 使用全局内容标题样式替代 */
.mission h3, .values h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission h3::after, .values h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.values ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .values ul {
        grid-template-columns: 1fr;
    }
}

.values {
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.values li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 20px;
    background-color: var(--light-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.values li:hover {
    background-color: var(--light-secondary);
    transform: translateX(10px);
}

.values li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* 公司历程时间?*/
.company-history {
    margin-bottom: 60px;
}

/* 使用全局标题样式 */
.company-history h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    left: 50%;
    transform: translateX(-50%);
}

.company-history h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline {
    position: relative;
    margin: 50px 0;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 3px;
    background-color: var(--light-color);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}

/* 修改时间标签位置 - 交换左右位置 */
.timeline-date {
    position: absolute;
    top: 0;
    width: calc(50% - 40px);
    text-align: right;
    padding-right: 30px;
    color: var(--primary-color);
    font-weight: 700;
    right: 50%;
}

.timeline-content {
    width: calc(50% - 40px);
    margin-left: calc(50% + 40px);
    margin-right: 0;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--block-shadow);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    margin: 0;
    color: var(--text-color);
}

/* 偶数项时间线项的样式交换 */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-date {
    right: auto;
    left: 50%;
    text-align: left;
    padding-right: 0;
    padding-left: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: calc(50% + 40px);
}

/* 团队优势部分 */
.team-advantages {
    margin-bottom: 60px;
}

/* 使用全局标题样式 */
.team-advantages h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    left: 50%;
    transform: translateX(-50%);
}

.team-advantages h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.advantages-container {
    padding: 20px 0;
}

.advantages-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.advantage-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--block-shadow);
}

.advantage-item i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.advantage-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.advantage-item p {
    color: var(--text-color);
    margin: 0;
}

/* 核心团队样式 */
.core-team {
    margin-bottom: 60px;
}

/* 使用全局标题样式 */
.core-team h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    left: 50%;
    transform: translateX(-50%);
}

.core-team h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member.active,
.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-photo img {
    transform: scale(1.08);
}

.team-member h4 {
    margin: 20px 0 5px;
    color: var(--primary-color);
    font-size: 18px;
}

.member-position {
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 14px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.member-info {
    padding: 20px;
}

.member-title {
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

/* 荣誉与资质样?*/
.honors-qualifications {
    margin-bottom: 60px;
}

/* 使用全局标题样式 */
.honors-qualifications h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    left: 50%;
    transform: translateX(-50%);
}

.honors-qualifications h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.honors-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.honor-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.honor-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--block-shadow);
}

.honor-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.honor-icon i {
    font-size: 24px;
    color: var(--secondary-color);
}

.honor-content h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 16px;
}

.honor-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
}

/* 加入我们区域 */
.join-us {
    margin-bottom: 60px;
}

/* 使用全局标题样式 */
.join-us h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    left: 50%;
    transform: translateX(-50%);
}

.join-us h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.join-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 40px;
}

.join-text {
    flex: 1;
    min-width: 300px;
}

.join-text p {
    margin-bottom: 20px;
}

.btn-join {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn-join:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.join-img {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.join-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s;
}

.join-img:hover img {
    transform: scale(1.03);
}

/* 合作伙伴部分 */
.about-partners {
    background-color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.about-partners h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.about-partners h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-partners p {
    margin-bottom: 40px;
    color: var(--text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-partners .container {
    text-align: center;
}

.partner-header {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin: 0 auto 30px;
    padding-bottom: 15px;
    text-align: center;
}

.about-partners .section-title {
    float: none !important;
    display: inline-block !important;
    text-align: center !important;
    margin: 0 auto 20px !important;
}

.partners-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.partner-logo-item {
    width: 160px;
    height: 80px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--block-shadow);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.btn-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-more:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* 社交媒体分享工具样式 */
.social-share-container {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.share-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.share-toggle:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-share-buttons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.social-share-buttons.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-share-buttons li {
    margin: 0;
}

.social-share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-share-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.social-share-buttons a[title="分享到微?] {
    background-color: #E6162D;
}

.social-share-buttons a[title="分享到领?] {
    background-color: #0077B5;
}

.social-share-buttons a[title="分享到微?] {
    background-color: #2DC100;
}

/* 微信分享二维码弹?*/
.wechat-qrcode-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.qrcode-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    max-width: 320px;
}

.qrcode-content h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.qrcode-img {
    margin: 20px 0;
}

.qrcode-img img {
    max-width: 100%;
    height: auto;
}

.qrcode-content p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

.close-qrcode {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-color: var(--light-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-qrcode:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 公司愿景样式增强 */
.company-vision {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(52, 152, 219, 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
}

.vision-tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.company-vision blockquote {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    font-style: italic;
}

/* 新增下划线样?*/
.section-title {
    position: relative;
    display: inline-block;
    margin: 0 auto 30px;
    padding-bottom: 15px;
    text-align: center;
}

.text-center {
    text-align: center;
}

/* 响应式样?*/
@media screen and (max-width: 992px) {
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-date {
        position: relative;
        width: 100%;
        text-align: left;
        padding-left: 70px;
        padding-right: 0;
        margin-bottom: 10px;
        right: auto;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 70px;
        margin-right: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        left: auto;
        text-align: left;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px;
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    /* 使用全局样式，删除重复的页面标题样式 */
    
    .about-page .about-content {
        gap: 30px;
    }
    
    .stats-row {
        flex-direction: column;
    }
    
    .stat {
        width: 100%;
        margin: 10px 0;
    }
    
    .mission-values {
        flex-direction: column;
        gap: 30px;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .honors-container {
        grid-template-columns: 1fr;
    }
    
    .social-share-container {
        bottom: 80px;
    }
    
    .share-toggle {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .social-share-buttons a {
        width: 35px;
        height: 35px;
    }
    
    .company-vision blockquote {
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    /* 使用全局样式，删除重复的页面标题样式 */
    
    .join-content {
        padding: 20px;
    }
    
    .partner-logo-item {
        width: 130px;
        height: 70px;
    }
    
    .honor-item {
        flex-direction: column;
    }
    
    .honor-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

/* 统计数字动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 关于我们页面标题样式修复 */

/* 统一页面标题样式 */
.about-page h3 {
    position: relative;
    font-size: 28px !important;
    color: var(--primary-color) !important;
    margin-bottom: 30px !important;
    padding-bottom: 15px !important;
    text-align: center !important;
}

.about-page h3::after {
    content: '' !important;
    position: absolute !important;
    width: 60px !important;
    height: 3px !important;
    background-color: var(--secondary-color) !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* 处理特例：左对齐的标?*/
.about-page .about-text h3 {
    text-align: left !important;
}

.about-page .about-text h3::after {
    left: 0 !important;
    transform: none !important;
}

/* 调整标题与内容间?*/
.about-page .mission h3,
.about-page .values h3 {
    margin-bottom: 25px !important;
}

/* 调整子标题样?*/
.about-page h4 {
    font-size: 20px !important;
    color: var(--primary-color) !important;
    margin-bottom: 15px !important;
}

/* 统一section间距 */
.about-page > div,
.about-page > section {
    margin-bottom: 60px !important;
}

/* 确保核心区块显示 */
.mission-values,
.company-history,
.team-advantages,
.join-us,
.about-partners {
    display: block !important;
    clear: both !important;
    position: relative !important; 
    z-index: 100 !important;
    padding: 40px 0 !important;
    margin: 40px 0 !important;
}

/* 关于我们页面标题样式修复 - 统一与services页面风格 */

/* 页面标题样式增强 */
.page-header {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px !important;
    background-position: center !important;
    background-size: cover !important;
    background-color: #2c3e50 !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7) !important;
    z-index: 1 !important;
}

.page-header .container {
    position: relative;
    z-index: 2 !important;
}

.page-header h1 {
    color: #fff !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    position: relative !important;
    padding-bottom: 15px !important;
    animation: fadeIn 0.8s ease-out !important;
}

.page-header h1::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 60px !important;
    height: 3px !important;
    background-color: #3498db !important;
}

.page-header .page-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 18px !important;
    max-width: 600px !important;
    animation: fadeInUp 0.9s ease-out !important;
}

/* 背景动态形?*/
.header-shape {
    position: absolute;
    z-index: 1;
}

.header-shape.shape-1 {
    bottom: -10px;
    right: -10px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    border-radius: 50%;
    animation: pulse 15s infinite alternate;
}

.header-shape.shape-2 {
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, rgba(230, 126, 34, 0) 70%);
    border-radius: 50%;
    animation: pulse 20s infinite alternate-reverse;
}

.header-shape.shape-3 {
    top: 40%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0) 70%);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

/* 内容部分标题统一样式 */
.about-page h3,
.company-history h3,
.team-advantages h3,
.core-team h3,
.honors-qualifications h3,
.join-us h3 {
    font-size: 28px !important;
    margin-bottom: 40px !important;
    color: #2c3e50 !important;
    text-align: center !important;
    position: relative !important;
    padding-bottom: 15px !important;
}

.about-page h3::after,
.company-history h3::after,
.team-advantages h3::after,
.core-team h3::after,
.honors-qualifications h3::after,
.join-us h3::after {
    content: '' !important;
    position: absolute !important;
    width: 60px !important;
    height: 3px !important;
    background-color: #3498db !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* 特别修复左对齐的标题 */
.about-page .about-text h3 {
    text-align: left !important;
}

.about-page .about-text h3::after {
    left: 0 !important;
    transform: none !important;
}

.mission h3, 
.values h3 {
    text-align: left !important;
}

.mission h3::after, 
.values h3::after {
    left: 0 !important;
    transform: none !important;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 响应式调?*/
@media (max-width: 992px) {
    .page-header {
        padding: 100px 0 60px !important;
    }
    
    .page-header h1 {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 50px !important;
    }
    
    .page-header h1 {
        font-size: 28px !important;
    }
    
    .page-header .page-description {
        font-size: 16px !important;
    }
    
    .about-page h3,
    .company-history h3,
    .team-advantages h3,
    .core-team h3,
    .honors-qualifications h3,
    .join-us h3 {
        font-size: 24px !important;
    }
}

/* 关于我们页面标题样式修复 - 与services页面标题样式保持一?*/

/* 页面标题动画和样?*/
.page-header {
    position: relative;
    padding: 150px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-header.in-view {
    opacity: 1;
    transform: translateY(0);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 169, 157, 0.9), rgba(232, 158, 91, 0.8)); /* logo颜色渐变 */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 20px;
    font-weight: 300;
}

/* 形状元素 */
.header-shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.shape-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: -30px;
    right: 10%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 30%;
    right: 20%;
}

/* 部分标题统一样式 */
.about-intro h2,
.core-values h3,
.team-section h3,
.history-section h3,
.culture-section h3 {
    font-size: 36px;
    color: #00a99d; /* Logo青绿?*/
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-intro h2::after,
.core-values h3::after,
.team-section h3::after,
.history-section h3::after,
.culture-section h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: #e89e5b; /* Logo橙棕?*/
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 响应式调?*/
@media screen and (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .about-intro h2,
    .core-values h3,
    .team-section h3,
    .history-section h3,
    .culture-section h3 {
        font-size: 28px;
    }
}
