/* 图片画廊样式 */
.gallery-container {position:relative;margin-bottom:30px;}
.gallery-main {height:400px;border-radius:12px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,0.15);margin-bottom:20px;position:relative;}
.gallery-main img {width:100%;height:100%;object-fit:cover;transition:opacity 0.5s ease;position:absolute;top:0;left:0;opacity:0;}
.gallery-main img.active {opacity:1;}
.gallery-thumbs {display:flex;gap:15px;justify-content:center;}
.thumb-item {width:100px;height:80px;border-radius:8px;overflow:hidden;cursor:pointer;opacity:0.7;transition:all 0.3s ease;border:2px solid transparent;position:relative;}
.thumb-item.active,.thumb-item:hover {opacity:1;border-color:var(--primary);transform:translateY(-5px);}
.thumb-item img {width:100%;height:100%;object-fit:cover;}

/* 公司简介数据统计 */
.card {border:none;border-radius:12px;overflow:hidden;box-shadow:0 5px 15px rgba(0,0,0,0.08);transition:transform 0.3s ease,box-shadow 0.3s ease;margin-bottom:30px;height:100%;}
.card:hover {transform:translateY(-10px);box-shadow:0 15px 30px rgba(0,0,0,0.15);}
.card-img-top {height:200px;object-fit:cover;}
.stats-card {background:white;border-radius:12px;padding:25px;text-align:center;box-shadow:0 5px 15px rgba(0,0,0,0.08);}
.stats-number {font-size:2.5rem;font-weight:700;color:var(--primary);margin-bottom:5px;}
.stats-label {font-size:1rem;color:#666;}

/*时间线*/
.timeline {position:relative;margin:50px 0;}
.timeline::before {content:'';position:absolute;top:0;bottom:0;width:4px;background:#c62232;left:50%;margin-left:-2px;}
.timeline-item {position:relative;margin-bottom:50px;}
.timeline-content {position:relative;width:45%;padding:20px;border-radius:12px;background:white;box-shadow:0 5px 15px rgba(0,0,0,0.08);}
.timeline-item:nth-child(odd) .timeline-content {left:0;}
.timeline-item:nth-child(even) .timeline-content {left:55%;}
.timeline-content::after {content:'';position:absolute;top:20px;width:0;height:0;border-style:solid;}
.timeline-item:nth-child(odd) .timeline-content::after {right:-15px;border-width:10px 0 10px 15px;border-color:transparent transparent transparent white;}
.timeline-item:nth-child(even) .timeline-content::after {left:-15px;border-width:10px 15px 10px 0;border-color:transparent white transparent transparent;}
.timeline-dot {position:absolute;top:20px;left:50%;width:24px;height:24px;background:#c62232;border:4px solid white;border-radius:50%;margin-left:-12px;z-index:1;}
@media (max-width:768px) {
    .timeline::before {left:30px;}
    .timeline-content {width:calc(100% - 80px);margin-left:80px;}
    .timeline-item:nth-child(even) .timeline-content {left:0;}
    .timeline-content::after {left:-15px !important;border-width:10px 15px 10px 0 !important;border-color:transparent white transparent transparent !important;}
    .timeline-dot {left:30px;}
    .gallery-main {height:300px;}
    .world-map {height:400px;}
    .awards-container {grid-template-columns:1fr;}
}
/*团队*/
.team-card {text-align:center;background:white;border-radius:12px;overflow:hidden;box-shadow:0 5px 15px rgba(0,0,0,0.08);transition:transform 0.3s ease;}
.team-card:hover {transform:translateY(-10px);}
.team-card .slogan{height:60px;}
.team-img {width:100%;height:390px;object-fit:cover;}