.hero-slider {
    position: relative;
    color: #FFFFFF;

}

.hero-slider-bg {
    max-height: 100vh;
    overflow: hidden;
}

/* 背景大图淡入+缓慢缩放效果 */
.hero-slider-bg img {
    animation: kenBurnsEffect 1.5s ease-in-out forwards;
    transform-origin: center;
    opacity: 0.8;
}

/* Ken Burns 动画 */
@keyframes kenBurnsEffect {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.02);
        opacity: 1;
    }
}

/* 子标题淡入动画 */
.subtitle-fade {
    opacity: 0;
    animation: fadeIn 2s ease 0.1s forwards;

}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 字母组弹出动画 */
.title-letters {
    display: inline-block;
}

.letter-group {
    display: inline-block;
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    animation: letterBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: var(--delay, 0s);
}


@keyframes letterBounce {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }

    50% {
        transform: scale(1.1) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.slider-container {
    width: 1440px;
    /* height: 280px; */
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.slider-container h1 {
    font-weight: 500;
}

.slider-container img {
    width: 696px;
    height: 193px;
}

/* 在群享，让每一种努力都有归属  */
.twocard-boxs {
    /* text-align: center; */
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.twocard-content {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    color: #777777;
    z-index: 2;
}

.twocard-boxs .twocard-title {
    margin-bottom: 30px;
    line-height: 1.3;
    color: #000;
}

.twocard-desc {
    margin: auto;
    text-align: center;
    margin-bottom: 80px;

}

.twocard-row {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 25px;
    position: relative;
    margin-top: 60px;

}

.twocard-card {
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    width: 100%;
    /* align-items: center; */
    justify-content: space-between;
    /* align-items: center; */
    /* width: 1144x; */
    /* min-height: 550px; */
    /* overflow: hidden; */
    gap: 60px;
}

.twocard-left,
.twocard-right {
    padding-top: 10px;
    flex: 1;
    /* width: 378px; */
    text-align: left;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.twocard-right {}

.twocard-card-label {
    color: #18377C;
    margin-bottom: 8px;
}

.twocard-card-title {
    color: #18377C;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 30px;
}

.twocard-card-desc {
    width: 466px;
    color: #18377C;
    margin-bottom: 18px;
}

.twocard-img {
    flex: 1;
    /* width: 705px;
    height: 612px; */
    margin: 0;
    flex-shrink: 0;
    display: block;
}

.twocard-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gcwl .twocard-img .twocard-img-i {
    display: none;
}

.gcwl .twocard-img .twocard-img-i.active {
    display: block;
    animation: slideIn 1s ease;
}

/* 深圳群享科技集团有限公司 */
.cp .twocard-left h2 {
    color: #333333;
}

.cp .twocard-left p {
    color: #333333;
    text-align: justify;
    margin-top: 40px;
}

/* 公司名称逐字滑入动画 */
.company-word {
    display: block;
    opacity: 0;
    transform: translateX(-30px) scale(0.8);
}

.lazyload-up-visible .company-word {
    animation: wordSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: var(--word-delay, 0s);
}

@keyframes wordSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* 年份特殊效果 - 更突出 */
.lazyload-up-visible .company-year {
    animation: yearHighlight 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: var(--word-delay, 0s);
}

@keyframes yearHighlight {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.5);
    }

    60% {
        transform: translateX(0) scale(1.15);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* 公司标题淡入 */
.company-title {
    opacity: 0;
    transform: translateY(20px);
}

.lazyload-up-visible .company-title {
    animation: titleFadeIn 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 企业简介段落淡入 */
.company-desc {
    opacity: 0;
    transform: translateY(20px);
}

.lazyload-up-visible .company-desc:nth-of-type(1) {
    animation: descFadeIn 0.8s ease forwards;
    animation-delay: 1.2s;
}

.lazyload-up-visible .company-desc:nth-of-type(2) {
    animation: descFadeIn 0.8s ease forwards;
    animation-delay: 1.4s;
}

@keyframes descFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cp-img {
    margin-top: 30px;
    width: 100%;
    height: auto;
}

.cp .twocard-w {
    display: block;

}

.cp .twocard-m {
    display: none;

}

.cp .twocard-img p {
    color: #333333;
    line-height: 1.3;
    text-align: right;
}

.cp .twocard-img p:nth-child(1) {
    padding-right: 30px;
}

.cp .twocard-img p:nth-child(3) {
    padding-right: 168px;
}

/* 用工方式 */
.ygfs .twocard-card {
    background: none;
}

.ygfs .twocard-left {
    flex: 1.25;
}

.ygfs .twocard-right {}

.ygfs .twocard-left h2 {
    color: #000000;
}

.ygfs .twocard-left p {
    color: #3657A6;
}

.ygfs .boxs-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ygfs .card-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ygfs .card-item p {
    margin-top: 10px;
}

.ygfs .card-item .title {
    display: flex;
    color: #3657A6;
}

.ygfs .card-item .title .num {
    line-height: 1;
    font-weight: bold;
}

.ygfs-desc {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ygfs-desc-visible {
    opacity: 1;
    transform: translateY(0);
}

.ygfs-bj {
    position: absolute;
    width: 100%;
    height: auto;
    max-height: 833px;
    object-fit: cover;
    bottom: 0px;
    z-index: 0;

}

/* 共创未来 */
.gcwl {
    background: #F6F6F6;
}

.gcwl .twocard-title {
    /* color: #3657A6; */
    text-align: center;
    margin-bottom: 5px;
}

.gcwl .twocard-desc {
    text-align: center;
    /* color: #3657A6; */
}

.gcwl .twocard-left {
    display: flex;
    flex-direction: column;
}

.gcwl .twocard-card {
    gap: 100px;
    background: #F6F6F6;

}

.gcwl .gcwl-swiper {
    max-width: 600px;
    flex: 1;
    margin: 0 0 !important;
}

.gcwl .gcwl-swiper h2 {
    margin: 50px 0 30px;
}

.gcwl .gcwl-swiper .swiper-slide {
    color: #000000;
}

.gcwl .gcwl-swiper p {}

.xs-title {
    text-align: center;
    margin: 100px 0 50px;
}

.gcwl .boxs-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gcwl .card-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gcwl .card-item .title {
    color: #000;
    font-weight: bold;
}

.swiper-index {
    margin: 20px 0;
}

.swiper-index .swiper-index-item {
    display: none;
    width: 34px;
    height: 34px;
    background: #3657A6;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    line-height: 34px;
}

.swiper-index .swiper-index-item.active {
    display: block;
}

.swiper-dot {
    display: flex;
    align-items: center;
    gap: 12px;
}

.swiper-dot .swiper-dot-item {
    width: 177px;
    height: 8px;
    background: #9F9F9F;
    border-radius: 55px 55px 55px 55px;
    opacity: 0.2;
    cursor: pointer;
}

.swiper-dot .swiper-dot-item.active {
    background: #3657A6;
    opacity: 1;
}

.swiper-arrow {
    display: flex;
    gap: 10px;
}

.swiper-arrow img {
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/* 经营理念 */
.jyln .twocard-left {
    justify-content: space-between;

}

.jyln .twocard-left h2 {
    color: #000000;
    line-height: 1.3;
    margin-right: 10px;

}

.jyln .twocard-left p {
    color: #000000;

}

.jyln .twocard-row {
    margin-top: 0;
}


.jyln .twocard-right {
    /* display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 30px; */
    flex: 1.8;
    overflow: hidden;
}

.jyln .twocard-right {
    overflow-x: auto;
    padding: 20px 0;
    display: flex;
    scroll-behavior: smooth;
}

/* 隐藏滚动条 */
.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.jyln .twocard-right .card-list {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex: 2;
    gap: 30px;
    transition: all 0.3s ease;

}

.jyln .twocard-right .card-item {
    flex: 0 0 502px;
    height: 424px;
    background: #F7FAFF;
    border-radius: 25px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #3657A6;
    text-align: center;
    padding: 40px;

}

.jyln .twocard-right .card-item img {
    width: 182px;
    height: 182px;
    object-fit: cover;
    transform: scale(0);
    transition: all 1.5s ease;
}

.jyln .twocard-right .card-item .title {
    margin: 30px 0 15px;
    opacity: 0;
    transition: all 2s ease;
    transform: translateY(20px);

}

.jyln .twocard-right .card-item .desc {
    opacity: 0;
    transition: all 2s ease;
    transform: translateY(20px);
}

.jyln .twocard-right .card-item.animate .desc,
.jyln .twocard-right .card-item.animate .title {
    opacity: 1;
    transform: translateY(0px);

}

.jyln .twocard-right .card-item.animate img {
    transform: scale(1);

}

/* 办公驻地 */
.xshz {
    padding: 9rem 0 11rem;
}

.xshz .twocard-card {
    gap: 0;
    background: transparent;
    margin-top: 60px;
}

.xshz .twocard-title {
    color: #000000;
    text-align: center;
    margin-bottom: 5px;

}

.xshz .twocard-desc {
    text-align: center;
    color: #000000;
}

.xshz .twocard-right {
    gap: 40px;
}

.xshz .twocard-left h2 {
    color: #000000;
    text-align: right;
    line-height: 1.3;
    margin-right: 70px;
    margin-top: 30px;
}

.xshz .twocard-left p {
    color: #000000;
    opacity: 0.7;
    text-align: right;
    margin-right: 70px;

}

.xshz .card-item {
    display: flex;
    align-items: center;
    gap: 60px;
    color: #000;
    margin-left: -4.5px;
}

/* .xshz .card-item .desc {
    margin-left: 70px;
} */

.xshz .twocard-middle {
    padding-top: 10px;
    width: 200px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.xshz .card-item .dian,
.xshz .twocard-middle .dian {
    width: 10px;
    height: 10px;
    background: #3657A6;
    border-radius: 0px 0px 0px 0px;
    border-radius: 50%;
}

/* .xshz .twocard-middle .dian:nth-child(1) {
    margin-bottom: 35px;
}

.xshz .twocard-middle .dian:nth-child(3) {
    margin-top: 35px;
} */

.xshz .xshz-bj-l,
.xshz .xshz-bj-m,
.xshz .xshz-bj-r {
    position: absolute;
    height: auto;
    z-index: 1;
}

.xshz .xshz-bj-l {
    left: 0;
    bottom: -250px;
    width: 35%;
}

.xshz .xshz-bj-m {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 20px;
}

.xshz .xshz-bj-r {
    right: 0;
    top: -70px;
    width: 32%;
}

/* 响应式设计 */
@media screen and (max-width: 1400px) {

    .slider-container {
        width: 100%;
        margin: 0 0;
        padding-left: 30px;
    }

    .jyln .twocard-right .card-item {
        flex: 0 0 400px;
        height: 340px;
    }

    .jyln .twocard-right .card-item img {
        width: 140px;
        height: 140px;
    }

    .xshz .twocard-middle {
        width: 120px;
    }

    .xshz .xshz-bj-m {
        width: 18px;
        /* height: 800px; */
    }

    .xshz .twocard-right {
        gap: 25px;
    }

    .xshz .twocard-middle .dian:nth-child(1) {
        margin-bottom: 25px;
    }

    .xshz .twocard-middle .dian:nth-child(3) {
        margin-top: 25px;
    }

    .ygfs {
        padding: 5rem 0 !important;
    }

    .ygfs .twocard-content {
        padding: 0 30px;
    }

    .cp .twocard-left p {
        margin-top: 5px;
        font-size: 16px !important;
    }

    .cp .twocard-img p:nth-child(3) {
        padding-right: 130px;
    }
}

/* 响应式设计-手机 */
@media screen and (max-width: 1024px) {
    .jyln .twocard-right .card-item img {
        width: 86px;
        height: 86px;
    }

    .jyln .twocard-left {
        text-align: center;
    }

    .jyln .twocard-left h2 {
        margin: 0;
    }

    .slider-container img {
        width: 75%;
        height: auto;
    }

    .cp .twocard-w {
        display: none;
    }

    .cp .twocard-m {
        display: block;
    }

    .cp .twocard-img {
        text-align: center;
    }

    .cp .twocard-img img {
        width: auto;
        height: 120px;
    }

    .cp .twocard-img p:nth-child(1) {
        text-align: center;
        padding-right: 0;
    }

    .cp .twocard-left h2 {
        text-align: center;
    }

    .cp .twocard-left p {
        margin-top: 10px;
    }

    .cp-img {
        margin-top: 0px;
    }

    .ygfs {
        padding: 25px 0 !important;
    }

    .twocard-row {
        margin-top: 10px;
    }

    .ygfs .boxs-grid {
        margin: 0;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .gcwl .twocard-desc {
        margin-bottom: 10px;
    }

    .gcwl .gcwl-swiper h2 {
        margin: 0 0;
    }

    .gcwl .swiper-index {
        margin: 10px 0;
    }

    .swiper-arrow {
        margin-top: 10px;
        justify-content: center;
    }

    .swiper-arrow img {
        width: 40px;
        height: 40px;
    }

    .xs-title {
        margin: 10px 0;
    }

    .gcwl .boxs-grid {
        margin: 10px auto;
        gap: 10px !important;
    }

    .jyln .twocard-right .card-item {
        flex: 0 0 260px;
        height: 260px;
    }

    .xshz .xshz-bj-l {
        bottom: -30px;
        width: 40%;
    }

    .xshz .xshz-bj-r {
        width: 70%;
    }

    .xshz .twocard-card {
        display: flex !important;
        margin-top: 25px;
    }

    .xshz .xshz-bj-m {
        width: 13px;
        height: 700px;
    }

    .xshz .twocard-left {
        justify-content: center;
    }

    .xshz .twocard-left h2 {
        margin-top: 0;
        margin-right: 30px;
    }

    .xshz .twocard-left p {
        margin-right: 30px;
    }

    .xshz .twocard-right {
        margin-left: -7px;
        gap: 15px;
    }

    .xshz .card-item .dian {
        flex: 0 0 10px;
    }

    .xshz .card-item {
        gap: 15px;
        margin-left: 0;
    }

    /* .xshz .twocard-middle {
        margin-left: -7px;
    } */

    .xshz .twocard-right {
        gap: 15px;
    }

    /* .xshz .twocard-middle .dian:nth-child(1) {
        margin-bottom: 35px;
    }

    .xshz .twocard-middle .dian:nth-child(3) {
        margin-top: 35px;
    }
    .xshz .twocard-middle {
        width: 60px;
    } 
    .xshz .card-item .desc {
        margin-left: 30px;

    }*/


}