/* 页面标题 */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* 公司简介三部分（左文右图） */
.company-overview-new {
    padding: 70px 0 10px;
    background: #fff;
}
.company-overview-flex {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}
.overview-texts {
    flex: 1.2;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.overview-block h2 {
    font-size: 1.3rem;
    color: #3498db;
    margin-bottom: 10px;
}
.overview-block p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
}
.overview-image-new {
    flex: 1;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overview-image-new img {
    width: 615px;
    height: 704px;
    object-fit: cover;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(52,152,219,0.08);
}

/* 赛瓴团队环形结构 */
.sailink-team-section {
    padding: 20px 0 80px;
    background: #f8f9fa;
}
.sailink-team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}
.sailink-team-graph {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 420px;
}
.team-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}
.team-core-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(52,152,219,0.10);
    object-fit: cover;
    margin-bottom: 10px;
}
.team-core-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #3498db;
}
.team-part {
    position: absolute;
    width: 220px;
    min-height: 160px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(52,152,219,0.08);
    padding: 22px 18px 18px 18px;
    text-align: left;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.team-part h3 {
    color: #2c3e50;
    font-size: 1.08rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.team-part ul {
    list-style: disc inside;
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
    padding-left: 0;
    margin: 0;
}
/* 四个方向定位 */
.team-finance { left: 50%; top: 0; transform: translate(-50%, 0); }
.team-industry { right: 0; top: 50%; transform: translate(0, -50%); }
.team-international { left: 50%; bottom: 0; transform: translate(-50%, 0); }
.team-experience { left: 0; top: 50%; transform: translate(0, -50%); }

.sailink-team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 32px;
}
.team-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(52,152,219,0.08);
    padding: 28px 22px 22px 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
.team-card h3 {
    color: #3498db;
    font-size: 1.12rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.team-card ul {
    list-style: disc inside;
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
    padding-left: 0;
    margin: 0;
}
.team-card:hover {
    box-shadow: 0 8px 32px rgba(52,152,219,0.16);
}

@media (max-width: 900px) {
    .company-overview-flex { flex-direction: column; gap: 30px; }
    .overview-image-new img { max-width: 100%; }
    .sailink-team-graph { min-height: 700px; }
    .team-part { position: static; width: 100%; margin: 18px 0; }
    .team-core { position: static; transform: none; margin-bottom: 18px; }
}
@media (max-width: 600px) {
    .page-header { padding: 80px 0 40px; }
    .page-header h1 { font-size: 1.3rem; }
    .company-overview-new { padding: 30px 0 5px; }
    .sailink-team-section { padding: 10px 0 40px; }
    .sailink-team-section h2 { font-size: 1.1rem; }
} 