/* 关于我们页面样式 */
.about-section {
    padding: 80px 0;
}

.about-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.about-title {
    flex: 0 0 30%;
}

.about-title h2 {
    font-size: 50px;
    margin-bottom: 15px;
    color: #777;
    position: relative;
	font-weight:100;
}

.about-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff8800;
}

.about-title .slogan {
    font-size: 18px;
    font-style: italic;
    margin-top: 20px;
}

.about-content {
    flex: 0 0 65%;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* 公司数据统计 */
.company-stats {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 0 0 22%;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: none; /* 移除阴影 */
}


.stat-number {
    font-size: 48px;
    font-weight: 100;
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 36px;
}

.stat-title {
    font-size: 18px;
    color: #555;
}

/* 关于我们页面 - 全屏图片样式 */
.about-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-image: url('../images/office/about-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* 固定背景 */
}

.hero-image {
    display: none; /* 隐藏原图片元素 */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
    text-align: center; /* 文本居中 */
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto; /* 居中段落 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}





/* 响应式设计 */
@media (max-width: 992px) {
    .about-header {
        flex-direction: column;
    }
    
    .about-title, .about-content {
        flex: 0 0 100%;
    }
    
    .about-title {
        margin-bottom: 30px;
    }
    
    .company-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 48%;
        margin-bottom: 20px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stat-item {
        flex: 0 0 100%;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 核心团队样式 */
.team-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none; /* 移除阴影 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: none; /* 移除阴影 */
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 15px 0 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s ease;
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: #ff8800;
    color: #fff;
}

.member-info {
    padding: 25px 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #777;
}

.member-position {
    display: block;
    font-size: 14px;
    color: #ff8800;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image img {
        height: 320px;
    }
}