/* 关于我们页面专用样式 */

/* 页面标题 */
.page-header {
    background: url('../images/3-3.jpg') center 30% / cover no-repeat;
    color: #fff;
    padding: 110px 0 55px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 15, 50, 0.38);
    z-index: 0;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 18px;
    color: #cbd5e0;
    position: relative;
    z-index: 1;
}

/* 公司简介 */
.about-intro {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid #002FA7;
    border-radius: 10px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text h2 {
    font-size: 32px;
    color: #002FA7;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #a42227;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 企业文化 */
.culture-section {
    padding: 80px 0;
    background: #f7fafc;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.culture-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.culture-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #002FA7;
}

.culture-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #002FA7 0%, #1e40af 100%);
    color: #fff;
    border-radius: 50%;
}

.culture-card h3 {
    font-size: 24px;
    color: #002FA7;
    margin-bottom: 15px;
}

.culture-card p {
    color: #666;
    line-height: 1.8;
}

/* 团队介绍 */
.team-section {
    padding: 80px 0;
    background: #fff;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
    padding: 30px 20px 20px;
    border-top: 3px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    border-top-color: #a42227;
}

.team-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid #e2e8f0;
    transition: transform 0.3s, border-color 0.3s;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card h3 {
    font-size: 20px;
    color: #002FA7;
    margin: 20px 0 10px;
}

.team-card p {
    color: #666;
    font-size: 14px;
}

.team-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-top: 10px;
    padding: 0 15px;
    text-align: left;
}

.team-note {
    text-align: center;
    color: #999;
    margin-top: 30px;
    font-style: italic;
}

/* 资质荣誉 */
.honors-section {
    padding: 80px 0;
    background: #f7fafc;
}

.honors-list {
    max-width: 800px;
    margin: 0 auto;
}

.honor-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.honor-item:hover {
    transform: translateX(10px);
    border-left-color: #002FA7;
}

.honor-year {
    background: #002FA7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 30px;
    min-width: 80px;
    text-align: center;
}

.honor-item p {
    font-size: 16px;
    color: #333;
}

.honors-note {
    text-align: center;
    color: #999;
    margin-top: 30px;
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .honor-item {
        flex-direction: column;
        text-align: center;
    }
    
    .honor-year {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .about-image:after {
        display: none;
    }
}
