:root {
    --primary-color: #1a73e8;
    --secondary-color: #0d47a1;
    --accent-color: #10EE7B;
    --dark-color: #202124;
    --light-color: #ffffff;
    --gray-color: #5f6368;
    --border-color: #dadce0;
}




body {
    font-family: 'HARMONYOS_SANS_SC_REGULAR', 'HARMONYOS_SANS_SC_LIGHT', 'HARMONYOS_SANS_SC_THIN', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

h2 {
    font-size: 2.5rem !important;
    font-weight: 700;
}

h5 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
}

.bg-blue {
    background: #0A0E30;
    padding: 5rem 0;
}
.section-white{
    padding: 5rem 0;
}

/* 自定义颜色类 */
.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* 顶部导航栏 */
.top-nav {
    background-color: var(--white-color);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.partner-item {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.partner-item:hover {
    opacity: 1;
}

/* 主要导航栏 */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    align-items: center;
    display: flex;
}

.navbar-brand img {
    width: auto;
    height: 20px;
}

.navbar-brand span:first-child {
    color: var(--primary-color);
}

.navbar-brand span:last-child {
    color: var(--accent-color);
}

.nav-link {
    font-weight: 500;
    color: var(--light-color) !important;
    transition: color 0.3s;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

/* 英雄区域 */
.hero-section {
    /* background: url(../index/banner.png) center center; */
    background: url(/service/banner.gif) no-repeat 100% 100% /cover;
    color: black;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* background: #000; */
}

.banner-video {
    position: absolute;
    bottom: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    transform: translate(-50%, 50%);
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}



.hero-section .banner-logo {
    position: relative;
    max-width: 350px;
}

.banner-list-ico p {
    font-size: 12px;
    line-height: 1.5;
}

.banner-list-ico .ico-img {
    display: block;
    width: 65px;
    height: 65px;
    line-height: 65px;
    margin: 2rem auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-custom {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: #2e8b57;
    border-color: #2e8b57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* 章节标题 */
.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--light-color);
    font-size: 1.1rem;
}

.section-title-b h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.section-title-b p {
    color: #43454A;
    font-size: 1.1rem;

}

.footer-nav a {
    color: var(--light-color);
    margin: 1rem 1rem;
}

/* Model Snapshot 卡片 */
.model-tag {
    display: inline-block;
    background-color: #e8f0fe;
    color: var(--primary-color);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.probability-card {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}


.probability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.probability-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.data-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

/* 技术地图 */
.tech-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}


.card-title p {
    float: right;
    color: #10EE7B;
    font-weight: 700;
    font-size: 24px;
}

.card-title h2 {
    color: var(--light-color);
    font-size: 28px;
    display: inline-block;

}

.risk-header {
    display: flex;
    justify-content: space-between;
    color: var(--light-color);
    padding: 0.5rem 0;
}

.win-prob-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid #FFFFFF10;
}

.ks-brand-item {
   align-content: center;
}

.ks-brand-item img {
    width: 120px;
    height: auto;
}

.prob-header {
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%;
}

.risk-progress-bar {
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(45deg, #23E951, #FF1D1D);
    position: relative;
    overflow: hidden;
}

.progress2 {
    background: linear-gradient(45deg, #23E951, #FF1D1D);

}

.progress {
    height: 4px;

    background-color: #FFFFFF10;
    
}

.progress .progress-bar {
    height: 4px;
    background: linear-gradient(45deg, #F5EE47, #13BF66);
     animation: bgLoad 3s linear forwards;
}

@keyframes bgLoad {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
.card-title .badge {
    color: #EEC910;
    background-color: #EEC91020;
    border: 1px solid#5DEE1030;
    padding: 6px;
    border-radius: 6px;
    font-size: 12px;
}

.marker-20 {
    left: 20%;
}

.risk-marker {
    position: absolute;
    top: 0;
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50px;
    border: 1px solid #000624;
    opacity: 0.8;
}


.card-title .badge2 {
    color: #5DEE10;
    background-color: #5DEE1020;
    border: 1px solid#5DEE1030;
    padding: 6px;
    border-radius: 6px;
    font-size: 12px;
}

/* 常见问题 */
.faq-card {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-color);
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
}

.faq-question::after {
    content: "";
    background: url(../index/arrow.png)no-repeat 100% 100% /cover;
    position: absolute;
    right: 10px;
    width: 22px;
    height: 22px;
    transition: all 0.5s;
}

.faq-answer {
    padding: 0 1.25rem;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.show {
    padding: 0 1.25rem 1.25rem;
    max-height: 300px;
}
.faq-question::after {
    content: "";
    background: url(../index/arrow.png) no-repeat center / contain;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) scaleY(1);
    width: 22px;
    height: 22px;
    transition: transform 0.4s ease;
}

.faq-question[aria-expanded="true"]::after {
    transform: translateY(-50%) scaleY(-1); /* Y轴镜像翻转 */
}

/* 客户评价 */
.testimonial-card {
    background: linear-gradient(66deg, #1D2F5A 0%, #0D143B 100%);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1rem;
}

.testimonial-text h5,
.testimonial-text p {
    color: var(--light-color);
}

.testimonial-text p {
    font-size: 12px;
}

/* 页脚 */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-logo img{
    width: 200px;
    height: auto;
}
.footer-links h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact i {
    margin-right: 0.5rem;
    width: 20px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sidebar {
    position: relative;
}

.sidebar-nav {
    list-style: none;
    padding-left: 0;

}

.sidebar-nav li {
    margin-bottom: 1rem;
}

.sidebar-nav a {
    color: #495057;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-nav a.active {
    color: #0d6efd;
    border-right: 3px solid #0d6efd;
    font-weight: bold;
}

.content-area {
    padding: 1rem;
}

.section-title {
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-content {
    line-height: 1.7;
    color: #333;
}

.section-content h6 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #000;
}

.section-content p {
    margin-bottom: 1rem;
}



/* ====== 通用 ====== */
.section-padding {
    padding: 5rem 0;
    background: #f6f7fb;
}

.step-btn {
    text-decoration: none;
    color: inherit;
}

.step-card {
    display: flex;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f3f4f9, #eef0f6);
    border: 1px solid #e3e6ef;
    transition: all 0.25s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* ====== 左侧步骤 ====== */
.step-number {
    font-size: 32px;
    font-weight: 800;
    color: #2b2f36;
    line-height: 1;
    min-width: 44px;
}

.step-content h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2937;
}

.step-content p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* 高亮当前步骤（第 4 步） */
.step-btn.active .step-card {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: transparent;
}

.step-btn.active .step-number,
.step-btn.active h6,
.step-btn.active p {
    color: #ffffff;
}

/* ====== 右侧内容卡 ====== */
.content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e4e7ef;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.content-title {
    font-weight: 800;
    margin-bottom: 12px;
}

.content-card p {
    color: #4b5563;
    font-size: 15px;
}

.content-card strong {
    letter-spacing: 0.02em;
}

.text-success {
    color: #22c55e !important;
}

.text-danger {
    color: #ef4444 !important;
}

.badge,
small.text-muted {
    font-size: 13px;
}

.confidence-bar {
    position: relative;
    width: 100%;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(to right,
            #22c55e 0%,
            #facc15 50%,
            #ef4444 100%);
}

.confidence-fill {
    position: absolute;
    top: -3px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid #22c55e;
    left: calc(30% - 9px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.text-uppercase {
    font-weight: 700;
}

.content-card.d-none {
    display: none;
}

.content-card {
    -webkit-animation: fadeIn 0.4s ease both;
    animation: fadeIn 0.4s ease both;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card-item {
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f3f4f9, #eef0f6);
    border: 1px solid #e3e6ef;
    transition: all 0.25s ease;
}

.content-card-item .card-title h2 {
    font-size: 20px;
    color: #000;
}

.content-card-item .card-title p {
    color: #10EE7B;
    font-weight: bold;
}

.content-card-item .risk-header {
    color: #666;
    font-size: 14px;
}

.quantification-content {
    width: 100%;
}

.quantification-content .td-progress {
    width: 50%;
    max-width: 80%;
}

.quantification-content .td-progress .progress {
    background-color: #00000010;
}

.quantification-content .negative {
    text-align: right;
}

.one-data-content .prob-header {
    color: var(--dark-color);
}

.one-data-content .progress {
    background-color: #00000010;
}

.quantification-content tr {
    line-height: 2rem;
}

.language-selector a.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.language-selector a.dropdown-toggle img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}


.language-selector a.dropdown-toggle[aria-expanded="true"] img {
    transform: rotate(180deg);
}

.language-selector a.dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

a.dropdown-toggle:focus {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

.language-selector .dropdown-toggle {
    color: #dedede;
}

.language-selector .dropdown-toggle:hover {
    color: #fff;
}



.timeline-page {
    position: relative;
    width: 100%;
    height: 100vh;
    color: #ffffff;
}



/* 内容层 */
.container-fluid {
    position: relative;
    z-index: 2;
}

.timeline-page {
    min-height: calc(100vh - 200px);
    position: relative;
    overflow: hidden;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: opacity 0.5s ease, background-image 0.5s ease;
}

/* 年份列表样式 - 响应式设计 */
.year-selector-container {
    position: relative;
    height: 500px;
    margin-bottom: 20px;
}

.year-list {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    width: 100%;
}



/* PC端滚动指示器 */
.scroll-indicator {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.scroll-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: scale(1.1);
}



.content-wrapper {
    padding: 40px 0;
    height: 100%;
    display: flex;
    align-items: top;
}

.year-content {
    display: none;
    -webkit-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
}

.year-content.active {
    display: block;
}

.year-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.year-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.5;
}

/* 动画效果 */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes highlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(26, 115, 232, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
    }
}

@keyframes highlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(26, 115, 232, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
    }
}



.content-area p {
    color: var(--dark-color);
}

.title-outer h5,
.title-outer p {
    color: var(--light-color);
}

.job-card {
    /* width: 480px; */
    padding: 1.5rem;
    background: linear-gradient(60deg, #F2F2F4 0%, #E9E9F4 100%);
    border-radius: 28px 28px 28px 28px;
    border: 1px solid #A9A9B7;
}



.job-card .job-title {
    padding: 1rem 0;
}

.job-card .job-title h5 {
    font-weight: bold;
}

.job-card .job-title small {
    color: #0A0E30;
}

.job-card .job-txt {
    border-top: 1px solid #00000010;
    padding: 1rem 0;
}

.indent-2 {
    text-indent: 2rem;
}

.job-card .job-txt ul li {
    list-style-type: disc;
    color: #43454A;
}

.job-card-b {

    padding: 1.5rem;
    background: linear-gradient(66deg, #6FA1D2 0%, #18265B 0%);
    border-radius: 28px 28px 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 480px;
}




.job-card-b .job-title-b h5 {
    padding: 1rem 0;
    font-weight: bold;
    color: var(--light-color);

}

.job-card-b .job-title-b h5 small {
    color: #FFFFFF60;
}


.job-card-b .job-txt {
    padding: 1rem 0;
    border-top: 1px solid #ffffff10;
}

.job-card-b .job-txt h6 {
    color: var(--light-color);
}

.job-card-b .job-txt ul li {
    list-style-type: disc;
    color: #FFFFFF60;
}


/* Swiper容器居中样式 (≥940px) */
@media (min-width: 940px) {
    .testimonial-swiper-job .swiper-wrapper {
        padding: 0 calc(50% - min(1260px, 87.5%)/2);
    }

    .job-content .swiper-button-prev.testimonial-job2-prev {

        left: calc(50% - min(1260px, 87.5%)/2);
        margin-right: -60px;
        z-index: 10;

    }

    .job-content .swiper-button-next.testimonial-job2-next {

        right: calc(50% - min(1260px, 87.5%)/2);
        margin-right: -60px;
        z-index: 10;

    }
}

.job-content .swiper-button-prev.testimonial-job2-prev:after,
.job-content .swiper-button-next.testimonial-job2-next:after {
    content: "";
}

.job-content .swiper-button-prev.testimonial-job2-prev,
.job-content .swiper-button-next.testimonial-job2-next {
    background-color: #67717F70;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    list-style: 60px;

}
.testimonial-btn-box{
    position: relative;
    top: -210px;
}
.testimonial-btn-box .swiper-button-prev{
    left: calc(50% - min(1260px, 104.5%)/2);
        margin-right: -60px;
        z-index: 10;
}

.testimonial-btn-box  .swiper-button-next{
    right: calc(50% - min(1260px, 104.5%)/2);
        margin-right: -60px;
        z-index: 10;
}
@media(max-width: 940px){
    .testimonial-btn-box{
    position: relative;
    top: 0;
}
.testimonial-btn-box .swiper-button-prev{
    left: calc(50% - min(1260px, 35.5%)/2);
        /*margin-right: -60px;*/
        z-index: 10;
}

.testimonial-btn-box  .swiper-button-next{
    right: calc(50% - min(1260px, 15.5%)/2);
        /*margin-right: -60px;*/
        z-index: 10;
}
}


@media (min-width: 940px) {
    .swiper-wrapper {
        padding: 0 calc(50% - min(1260px, 87.5%)/2);
    }

    .swiper-button-prev {

        left: calc(50% - min(1260px, 87.5%)/2);
        margin-right: -60px;
        z-index: 10;

    }

    .swiper-button-next {

        right: calc(50% - min(1260px, 87.5%)/2);
        margin-right: -60px;
        z-index: 10;

    }
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: "";
}
.swiper-button-prev,
.swiper-button-next {
    background-color: #67717F70;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    list-style: 60px;

}



.swiper-slide {
    opacity: 0.9;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.9;
}



.service-section {
    background-color: #0A0E30;
    position: relative;
    overflow: hidden;
    padding: 60px 0 80px;
}

.world-map {
    max-width: 100%;
    opacity: 0.8;
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary-green);
    font-size: 24px;
}

.section-dark {
    color: var(--light-color);
    padding: 80px 0;
}

.section-light {
    background-color: #FFFFFF;
    color: var(--text-dark);
    padding: 80px 0;
}

.card-service {
    background: linear-gradient(66deg, #6FA1D2, #18265B);
    border-radius: 20px 20px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.card-service:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.card-service.active {

    background: linear-gradient(66deg, #2E741F 0%, #066250 100%);
    border-radius: 20px 20px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-service p {
    font-size: 24px;
    line-height: 1.5;
    color: var(--light-color);
}

.card-service h6 {
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
}

.event-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: linear-gradient(60deg, #F2F2F4 0%, #E9E9F4 100%);
    border-radius: 20px 20px 20px 20px;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.event-card img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
}

.event-card p.small {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #43454A;
    text-align: left;
}

.event-card button.btn-green {
    width: 120px;
    height: 40px;
    background: #13BF66;
    border-radius: 100px 100px 100px 100px;
    border: 1px solid #13BF66;
    color: var(--light-color);
}

.btn-green {
    color: var(--dark-color);
    min-width: 180px;
    height: 48px;
    background: linear-gradient(86deg, #F5EE47 0%, #13BF66 78.16%);
    border-radius: 100px 100px 100px 100px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-green:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(52, 211, 153, 0.3);
}

.btn-outline-green {
    border: 1px solid var(--primary-green);
    color: #13BF66;

    padding: 8px 20px;
    transition: all 0.3s ease;
    min-width: 180px;
    height: 48px;
    border: 1px solid #13BF66;
    border-radius: 100px 100px 100px 100px
}

.btn-outline-green:hover {
    background-color: var(--primary-green);
    color: white;
}

.predict-list h5 {
    color: var(--light-color);
    font-size: 1.5rem;
}

.predict-list p.small {
    font-size: 14px;
    color: var(--light-color);
}


.football-section {
    background: linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.7)),
        url('../football/banner-football.png')no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    height: 900px;
}
@media screen and (max-width: 600px) {
.football-section {
    background: linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.7)),
        url('../football/banner-football1.png')no-repeat;
    background-size: 100% 100%;
    padding: 100px 0;
    height: 400px;
}
}

.joinbox {

    background: linear-gradient(60deg, #F2F2F4 0%, #E9E9F4 100%);
    border-radius: 40px 40px 40px 40px;
    border: 1px solid #A9A9B7;
}

.join-text h5 {
    font-size: 3rem;
    font-weight: 900;
    font-family: Impact, Impact;
}

.section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
}

.card-feature.light h5 {
    color: #000;
    font-weight: 700;
}

.card-feature.light p {
    color: #6B7180;
}

.card-feature h5 {
    margin-bottom: 6px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.card-feature p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #fff;
}

.card-feature {
    padding: 1rem;
    max-width: 540px;
    min-height: 84px;
    background: linear-gradient(66deg, #6FA1D2 0%, #18265B 100%);
    border-radius: 20px 20px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.card-feature:hover {
    border-color: var(--primary-green);
    background-color: rgba(15, 23, 42, 0.5);
}


.card-feature.light {
    background: linear-gradient(60deg, #F2F2F4 0%, #E9E9F4 100%);
    border: 1px solid #A9A9B7;
    color: var(--light-color);
}

.card-result {
    background: linear-gradient(66deg, #6FA1D2 0%, #18265B 100%);
    border-radius: 0px 0px 0px 0px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.card-result-txt {
    text-align: center;
}

.card-result-txt .fw-semibold {
    font-size: 1.5rem;
    color: var(--light-color);
}

.card-result-txt p.small {
    color: var(--light-color);
    opacity: 0.7;
}

.img-rounded {
    border-radius: 16px;
    /* overflow: hidden; */
}

.img-rounded .img-fluid {
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.macroposition {
    text-align: center;
    margin-bottom: 2rem;
}

.macroposition img {
    max-width: 95%;
}

.macroposition::after,
.macroposition::before {
    content: "";
    position: absolute;
}

.macroposition::after {
    height: 150px;
    width: 150px;
}

.macro-2::after {
    top: -40px;
    left: 0;
    background: url(../football/img-macro21.png)no-repeat 100% 100%/cover;
}

.macro-3::after {
    bottom: 20px;
    left: -30px;
    background: url(../football/icomacro3.png)no-repeat 100% 100%/cover;
}

.macro-4::after {
    top: 0;
    right: -10px;
    background: url(../football/icomacro4.png)no-repeat 100% 100%/cover;
}

.macro-5::after {
    bottom: -20px;
    left: -20px;
    background: url(../football/icomacro5.png)no-repeat 100% 100%/cover;
}

.macro-6::after {
    top: -20px;
    left: 0;
    background: url(../football/icomacro6.png)no-repeat 100% 100%/cover;
}

.macro-7::after {
    bottom: -20px;
    left: -20px;
    background: url(../football/icomacro7.png)no-repeat 100% 100%/cover;
}

.macro-2::before {
    top: -50px;
    right: -20px;
    background: url(../football/img-macro22.png)no-repeat 100% 100%/cover;
}

.year-selector-container {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 20px;
}

.year-list {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 15px 0;

    /* 自定义滚动条 */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.year-list::-webkit-scrollbar {
    width: 6px;
}

.year-list::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.year-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.year-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.year-list li {
    flex: 0 0 auto;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}

.year-list li:hover {
    transform: translateX(5px);
    color: white;
    font-size: 24px;
}

.year-list li.active {
    color: white;
    transform: translateX(10px);
    font-size: 24px;
}

.year-list li.active::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}


.txtbox {
    text-align: center !important;
}

.feature-item {
    display: block;
}



.txtbox h5 {
    padding: 0.5rem 0;
    font-size: 1.5rem;
    margin: 0;
}

.txtbox p {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    margin: 0;
}


.txtbox {
    text-align: center !important;
}
.fixwhatsapp{
    position: fixed;
    z-index: 999;
    bottom: 1em;
    right: 1em;
    
    
}
.ks-step-item p{
    color:#fff;
}
.fixwhatsapp a {
    margin-bottom: 1rem;
}
.fixwhatsapp .icowhatsapp{
    position: relative;
     display: flex;
    flex-direction: row-reverse;
align-items: center;
}
.fixwhatsapp .icowhatsapp img{

width: 36px;
height: 36px;
border-radius: 50px;
    
}
a.call-me{
    display: block;
    /*background: red;*/
    border-radius: 50px;
    /*padding: 6px 12px;*/
    color: #fff;
}
a.call-me img{
    width: 36px;
    height: 36px;
}
a.call-me span{
    font-size: 16px;
    font-weight: bold;
}

.icowhatsapp-t{
    position: absolute;
    right: 44px;
    width: 140px;
    height: 30px;
    line-height: 2;
    margin: 0;
    padding: 0 6px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: #34d56f;
    border-radius: 50px;
    text-align: center;
}








/* ========== 移动端样式 (<768px) ========== */
@media (max-width: 767.98px) {
    h2 {
        font-size: 1.2rem !important;
    }

    h5 {
        font-size: 1.2rem !important;
        font-weight: 700;
    }

    p {
        font-size: 0.9rem important;
    }

    .join-text {
        text-align: center;
    }

    .development-year {
        justify-content: center;
        align-items: top;
    }


    .bg-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000624;
        background-size: contain;
        background-position: top center;
        background-repeat: no-repeat;
        z-index: -1;
        inset: 0;
        -webkit-filter: brightness(0.85);
        filter: brightness(0.85);
        transition: background-image 0.6s ease, opacity 0.6s ease;
    }




    .card-service,
    .card-service.active {
        border: none;
    }


    .card-service p {
        font-weight: bold;
        font-size: 1.2rem;
        line-height: 1.5;
        color: var(--light-color);
        margin-bottom: 0.5rem;
    }

    .card-service h6 {
        font-size: 0.9rem;
        color: #FFFFFF;
        text-align: center;
    }

    .predict-list h5 {
        color: var(--light-color);
        font-size: 1.2rem;
    }

    .predict-list p.small {
        font-size: 0.9rem;
        color: var(--light-color);
        opacity: 0.7;
        line-height: 1.5;

    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .feature-item .feature-icon {
        flex-shrink: 0;
        margin-bottom: 0 !important;
    }

    .txtbox h5 {
        padding: 0.5rem 0;
        font-size: 1.2rem;
        margin: 0;
    }

    .txtbox p {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }


    .txtbox {
        text-align: left !important;
    }





    /* 时间轴页面移动端布局 */
    .timeline-page .row {
        flex-direction: column;
    }

    .year-selector-container {
        height: auto;
        padding: 0;
        margin-bottom: 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 15px;
    }

    .year-list {
        display: flex;
        flex-direction: initial;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        gap: 8px;
        padding: 10px 15px;
        height: auto;
        min-height: 60px;
        /* 隐藏滚动条 */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .year-list::-webkit-scrollbar {
        display: none;
    }

    .year-list li {
        flex: 0 0 auto;
        padding: 10px 20px;
        border-radius: 20px;
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .year-list li:hover {
        color: white;
        font-size: 24px;
    }

    .year-list li.active {
        color: white;
        font-size: 24px;
        transform: scale(1.05);
    }

    .year-list::after {
        content: '';
        ;
        display: block;
        min-width: 15px;
        height: 1px;
    }

    .year-content h2 {
        font-size: 1.5rem;
    }

    .year-content p {
        font-size: 1rem;
    }

    .language-selector.d-block.d-sm-none {
        position: absolute;
        right: 70px;
        top: 45%;
        transform: translateY(-50%);
    }
        .language-selector i.fa-earth-americas{
            width: 40px; 
            height: 40px; 
            font-size: 32px;
        }

    .macroposition img {
        max-width: 85%;
    }

    .macroposition::after {
        height: 100px;
        width: 100px;
    }

    .macro-2::after {
        top: -40px;
        left: 0;

    }

    .macro-3::after {
        bottom: 10px;
        left: -10px;

    }

    .macro-4::after {
        top: 0;
        right: -10px;

    }

    .macro-5::after {
        bottom: -10px;
        left: -10px;
    }

    .macro-6::after {
        top: -20px;
        left: 0;

    }

    .macro-7::after {
        bottom: -10px;
        left: -10px;

    }

    .macro-2::before {
        top: -50px;
        right: -20px;

    }

    .section-title h2,
    .section-title-b h2 {
        font-size: 1.4rem;
    }

    .section-title p.section-subtitle {
        font-size: 0.8rem;
        opacity: 0.7;
    }

    .card-feature.light h5,
    .card-feature h5 {
        font-size: 1.2rem;
    }

    .card-result-txt {
        text-align: left;
    }

    .card-result-txt .fw-semibold {
        font-size: 1.2rem;
        color: var(--light-color);
    }

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

    .hero-section .banner-logo {
        max-width: 300px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    #navbarNav .navbar-nav .nav-item .nav-link {
        text-align: center;
        padding: 2rem 0 !important;
        border-bottom: 0.5px solid #ffffff10;
    }

    #navbarNav .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    #navbarNav {
        height: 100vh;
    }

    #navbarNav .navbar-nav {
        height: 100vh;
        transition: all 0.5s;
    }

    .phone-none {
        display: none;
    }

    .mobile-content {
        margin-top: 12px;
        padding: 16px;
        background: #f8fafc;
        border-radius: 12px;
    }

    .dropdown-menu.show {
        left: -70px;
        text-align: center;
        top: 40px;
    }

    .banner-video {
        position: absolute;
        bottom: 0%;
        left: 50%;
        min-width: 100%;
        min-height: auto;
        width: 100%;
        height: auto;
        transform: translate(-50%, 0%);
        -o-object-fit: cover;
        object-fit: contain;
        background: #0d0a1a;
    }


.fixwhatsapp{
    bottom: 6px;
    right: 6px;
    
    
}
.fixwhatsapp a {
    margin-bottom: 6px;
}

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        gap: 10px;
    }
    
    .footer-nav a {
        flex: 0 0 calc(46% - 10px); 
        box-sizing: border-box;
        text-align: center;
        padding: 12px 10px;
        margin: 5px;
    }



































    /* ========== wap端样式 576px) ========== */
}