/* 合作伙伴滚动效果 */
.partners-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-scroll-content {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partners-scroll-content:hover {
    animation-play-state: paused;
}

.partner-item {
    flex: 0 0 auto;
    padding: 25px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .partner-item {
        padding: 0px 32px;
    }

    .partner-item img {
        max-width: 140px;
    }
}

/* 团队成员卡片优化 - 基础结构 */
.team-style01 {
    height: 100%;
}

.team-style01 > div:last-child {
    display: flex;
    flex-direction: column;
}

/* 文字间距优化 */
.team-style01 h4 {
    margin-bottom: 0.75rem;
}

.team-style01 span {
    display: block;
    margin-bottom: 1rem;
}

.team-style01 p.small {
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.team-style01 p strong {
    font-weight: 700;
    min-width: 65px;
}

/*----*/
@media screen and (max-width: 991px) {
    /* .navbar-brand img {
        position: relative;
        top: 4px;
        left: -8px;
        transform: scale(1.1);

    } */
}
.kh-extend-img{
    position: absolute;
    width: 60%;
    right: 400px;
    top: 570px;
}
@media screen and (max-width: 1400px) {
   .kh-extend-img{
        position: absolute;
        width: 50%;
        right: 330px;
        top: 594px;

    }
}

@media screen and (max-width: 1200px) {
   .kh-extend-img{
        position: absolute;
        width: 50%;
        right: 270px;
        top: 496px;

    }
}

@media screen and (max-width: 1000px) {
   .kh-extend-img{
        display: none;

    }
}


/* 临时覆盖 */
.lang-zh-CN,.lang-zh-TW {
    .slider-fade h1 {
        font-size: 5.5rem;
    }

    .hero-title {
        font-size: 3rem !important;
    }


    @media screen and (max-width: 767px) {
        .slider-fade h1 {
            font-size: 3.5rem !important;
        }

        .hero-title {
            font-size: 2.5rem !important;
        }
    }
}

.lang-en-US {
    .slider-fade h1 {
        font-size: 5rem;
    }

    .hero-title {
        font-size: 3rem !important;
    }

    @media screen and (max-width: 767px) {
        .slider-fade h1 {
            font-size: 3.5rem !important;
        }

        .hero-title {
            font-size: 2.5rem !important;
        }
    }
}


.map {
    height: 835px;
    width: 100%;
}
@media screen and (max-width: 1599px) {
    .map {
        height: 835px;
    }
}

/* ========================================
   首页样式
======================================== */

/* Hero Section */
.hero-section .text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.hero-section .text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.scroll-down {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-down:hover {
    opacity: 1;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Capability Cards */
.capability-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Advantage Items */
.advantage-item {
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.advantage-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Solution Cards */
.solution-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.solution-card .card-img-top img {
    transition: transform 0.3s ease;
}

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

.solution-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
}

/* Case Cards */
.case-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* News Cards */
.news-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.news-card .card-img-top img {
    transition: transform 0.3s ease;
}

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

/* Text utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Background utilities */
.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.bg-opacity-20 {
    --bs-bg-opacity: 0.2;
}

/* Badge styles */
.badge.rounded-pill {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* CTA Section */
.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem !important;
    }

    .hero-section .h4 {
        font-size: 1.2rem;
    }

    .display-5 {
        font-size: 2rem !important;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }

    .hero-section .display-5 {
        font-size: 1.5rem !important;
    }

    .case-card .row {
        flex-direction: column;
    }

    .case-card .col-lg-5,
    .case-card .col-lg-7 {
        width: 100%;
    }
}