/* 基础样式 */
body {
    min-height: 1024px;
}

.hero-section {
    background-size: cover;
    background-position: center;
}

/* 时间线样式 */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0066FF;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #0066FF;
}

/* 世界地图部分样式 */
.world-map-section {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* 荣誉资质轮播图样式 */
.cert-swiper .swiper-slide {
    width: 20%; /* 默认显示5个 */
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .max-w-7xl {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .world-map-section h3 {
        font-size: 0.75rem;
    }

    .world-map-section i {
        font-size: 1rem;
    }

    .flex.gap-12 {
        flex-direction: column;
        gap: 2rem;
    }

    .cert-swiper .swiper-slide {
        width: 33.333%; /* 显示3个 */
    }
}

@media (max-width: 800px) {
    .cert-swiper .swiper-slide {
        width: 50%; /* 显示2个 */
    }
}

@media (max-width: 768px) {
    .py-16 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .text-3xl {
        font-size: 1.5rem;
    }

    .timeline-item::before {
        left: -25px;
        width: 10px;
        height: 10px;
    }

    .timeline-item::after {
        left: -20px;
        width: 20px;
    }
}

@media (max-width: 640px) {
    .world-map-section h3 {
        font-size: 0.6rem;
    }

    .world-map-section i {
        font-size: 0.8rem;
    }

    .cert-swiper .swiper-slide {
        width: 100%; /* 显示1个 */
    }

    .flex.gap-12 {
        gap: 1.5rem;
    }

    .text-4xl {
        font-size: 1.5rem;
    }

    .text-lg {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .world-map-section h3 {
        display: none;
    }

    .py-16 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .text-3xl {
        font-size: 1.25rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -15px;
        width: 8px;
        height: 8px;
    }

    .timeline-item::after {
        left: -12px;
        width: 15px;
    }
}

/* 滚动条样式 */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.swiper-pagination-bullets {
    bottom: revert !important;
}

/* 图片响应式 */
img {
    max-width: 100%;
    height: auto;
}

/* 内容布局响应式 */
.content-section {
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .content-section {
        padding: 4rem 2rem;
    }
}

/* 网格布局响应式 */
.grid-layout {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-layout {
        grid-template-columns: repeat(4, 1fr);
    }
} 