body {
    margin: 0;
}

.phone {
    display: none;
}

.web {
    display: none;
    min-width: 1440px;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
}
img{
    pointer-events: none;
}
/* 手机设备 (小于576px) */
@media (max-width: 575.98px) {
    .phone {
        display: block;
    }

    .phone-img {
        width: 100%;
        height: auto;
        pointer-events: none;
    }

    .phone-1 {
        position: relative;
        line-height: 0;
        background-color: #000;
    }

    .phone-1-v {
        height: auto;
        width: 100%;
    }

    .controls {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none;
    }

    .play-pause-btn {
        pointer-events: auto;
        width: 16vw;
        height: 16vw;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
        border: none;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .play-pause-btn:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: scale(1.1);
    }

    .play-pause-btn svg {
        width: 8vw;
        height: 8vw;
        fill: currentColor;
    }

    .phone-2 {
        background-color: #000000;
        padding: 0vw 9.6vw;
        padding-bottom: 8vw;
    }

    .phone-2-1 {
        padding: 5.3333vw 0;
        border-bottom: .2667vw solid #404040;
        line-height: 0;
    }

    .phone-2-1-i {
        height: auto;
        width: 30vw;
    }

    .phone-2-2 {
        display: flex;
        align-items: flex-start;
        margin-top: 5.3333vw;
    }

    .phone-2-2-i {
        display: flex;
        align-items: center;
    }

    .phone-2-2-i:first-child {
        margin-right: 5vw;
    }

    .phone-2-2-i-l {
        line-height: 0;
    }

    .phone-2-2-i-l-i {
        height: 9.3333vw;
        width: 9.3333vw;
    }

    .phone-2-2-i-l-t{
        font-size: 2.0833vw;
        color: #fff;
        margin-bottom: 1.5625vw;
    }
    .phone-2-2-i-r {
        margin-left: 1.3333vw;
    }

    .phone-2-2-i-r-1 {
        font-size: 2vw;
        color: rgba(201, 201, 201, 1);
        margin-bottom: .6667vw;
    }

    .phone-2-2-i-r-2 {
        font-size: 2vw;
        color: rgba(201, 153, 85, 1);
        text-decoration: none;
    }

    .mute-toggle {
        position: absolute;
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mute-toggle:hover {
        background: rgba(0, 0, 0, 0.7);
    }

    .mute-toggle svg {
        width: 24px;
        height: 24px;
        fill: white;
    }
}

/* 平板设备 (576px-992px) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .web {
        display: block;
    }
}

.swiper-container {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    box-sizing: border-box;
    overflow-y: auto;
    /* 允许内容滚动 */
}

/* 自定义分页器样式 - 右侧垂直排列 */
.swiper-pagination {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: .75rem !important;
    height: .75rem !important;
    margin: .5rem 0 !important;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    display: block;
}

.swiper-pagination-bullet-active {
    background: #007aff;
}

/* 桌面设备 (大于992px) */
@media (min-width: 575.98px) {
    .web {
        display: block;
    }

    .web-video-c {
        position: relative;
    }

    .controlsWeb {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none;
    }

    .play-pause-btn-web {
        pointer-events: auto;
        width: 5rem;
        height: 5rem;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
        border: none;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .play-pause-btn-web:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: scale(1.1);
    }

    .play-pause-btn-web svg {
        width: 8vw;
        height: 8vw;
        fill: currentColor;
    }

    .web-1 {
        height: 3.75rem;
        padding: 0 3.75rem;
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2;
        transition: background-color 0.3s;
    }

    .web-1s {
        background-color: #8394AE;
    }

    .web-1-i {
        height: 2.5rem;
        width: auto;
    }

    .web-item {
        height: 100%;
        overflow: hidden;
        background-color: #000;
    }

    .web-item-v {
        height: 100vh;
        width: 100vw;
        object-fit: cover;
    }

    body {
        overflow-y: hidden;
    }

    .swiper-pagination-black .swiper-pagination-bullet-active {
        background-color: #fff !important;
    }

    .swiper-pagination-black .swiper-pagination-bullet {
        background-color: rgba(255, 255, 255, 0.7);
    }

    .swiper-pagination-white .swiper-pagination-bullet-active {
        background-color: rgba(0, 0, 0, 1);
    }

    .swiper-pagination-white .swiper-pagination-bullet {
        background-color: rgba(0, 0, 0, 0.7);
    }

    .mute-toggle-web {
        position: absolute;
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mute-toggle-web:hover {
        background: rgba(0, 0, 0, 0.7);
    }

    .mute-toggle-web svg {
        width: 24px;
        height: 24px;
        fill: white;
    }

    .web-2 {
        position: relative;
        height: 100%;
    }

    .web-2-bg {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .web-2-c {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        padding-left: 9.375rem;
        display: flex;
        align-items: center;
    }

    .web-2-c-1 {
        flex-grow: 1;
    }

    .web-2-c-1-1 {
        color: #fff;
        font-size: 5rem;
    }

    .web-2-c-1-2 {
        font-size: 1.875rem;
        color: #fff;
        padding-left: .625rem;
    }

    .web-2-c-1-3 {
        font-size: 1rem;
        line-height: 1.875rem;
        padding-left: .625rem;
        margin-top: 3.75rem;
        color: #fff;
    }

    .web-2-c-1-4 {
        display: flex;
        justify-content: flex-end;
        margin-top: 6.25rem;
        padding-right: 6.25rem;
    }

    .web-2-c-1-4-i {
        display: flex;
        margin-left: 6.25rem;
        font-size: 1.875rem;
        color: #fff;
    }

    .web-2-c-1-4-i-l {
        height: 4.375rem;
        width: 4.375rem;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #1D387F;
    }

    .web-2-c-1-4-i-r {
        height: 4.375rem;
        width: 4.375rem;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .web-3 {
        position: relative;
        height: 100%;
    }

    .web-3-bg {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .web-3-c {
        position: absolute;
        top: 0;
        left: 0;
        padding-left: 9.375rem;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .web-3-c-1 {
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 3.75rem;
    }

    .web-3-c-3 {
        font-size: .875rem;
        color: #fff;
        line-height: 1.875rem;
    }

    .web-3-c-2 {
        line-height: 0;
        margin-bottom: 1.25rem;
    }

    .web-3-c-2-i {
        width: 6.25rem;
        height: auto;
    }

    .web-4 {
        height: 100%;
        position: relative;
    }

    .web-4-i {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .web-4-c {
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        flex-direction: column;
        box-sizing: border-box;
        text-align: right;
        padding-top: 2.5rem;
    }

    .web-4-c-1s {
        padding-right: 8.75rem;
    }

    .web-4-c-1 {
        color: #fff;
        font-size: 3.125rem;
    }

    .web-4-c-2 {
        color: #fff;
        font-size: 1.625rem;
        margin-bottom: .625rem;
        margin-top: 2.5rem;
    }

    .web-4-c-3 {
        font-size: 1rem;
        color: #fff;
    }

    .web-3-c-4 {
        display: flex;
    }

    .web-3-c-4-i {
        text-align: center;
    }

    .web-3-c-4-i-1 {}

    .web-3-c-4-i-1-i {
        width: 6.25rem;
        height: auto;
    }

    .web-4-c-2s {
        text-align: center;
        padding: 0 8.75rem;
        margin-top: 3.75rem;
        display: flex;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
    }

    .web-4-c-2s-i {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .web-4-c-2s-i-1 {
        margin-bottom: .9375rem;
    }

    .web-4-c-2s-i-1-i {
        width: 4.375rem;
        height: auto;
    }

    .web-4-c-2s-i-2 {
        font-size: 1.625rem;
        color: #fff;
    }

    .web-4-c-2s-i-3 {
        height: .25rem;
        background-color: #97A7C8;
        width: 3.125rem;
        border-radius: 1.25rem;
        margin: .9375rem;
    }

    .web-4-c-2s-i-4 {
        font-size: .875rem;
        color: #8CA2CE;
        line-height: 1.5625rem;
    }

    .web-5-i {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .web-5 {
        position: relative;
    }

    .web-5-c {
        padding-left: 55vw;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .web-5-c-c {
        padding-left: 5rem;
    }

    .web-5-c-c-i-c {
        transition: all 0.3s;

    }

    .web-5-c-c-i-c:hover {
        transform: translateX(-1.875rem);
    }

    .web-5-c-c-i {
        display: flex;
        border-radius: .625rem;
        align-items: flex-start;
        padding: 1.25rem 0;
        padding-left: 2.5rem;
        width: 14.375rem;
        margin-bottom: 1.25rem;
    }

    .web-5-c-c-i-r-tips {
        font-size: 1.25rem;
        color: #000;
        font-style: italic;
        margin: 0 .3125rem;
    }

    .web-5-c-c-i-l {
        width: .625rem;
        height: auto;
        margin-top: .5rem;
    }

    .web-5-c-c-i-r {
        font-size: .875rem;
        margin-left: 1.25rem;
        line-height: 1.5625rem;
        color: #575757;
    }

    .web-6 {}

    .web-6-bg {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .web-6-c {
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .web-6-c-c {
        display: flex;
        align-items: center;
    }

    .web-6-c-c-r-i {
        height: 34.375rem;
        width: auto;
    }

    .web-6-c-c-l {
        padding-right: 6.25rem;
    }

    .web-6-c-c-l-1 {}

    .web-6-c-c-l-1-i {
        height: 12.5rem;
        width: auto;
    }

    .web-6-c-c-l-2 {
        display: flex;
        margin-top: 2.5rem;
    }

    .web-6-c-c-l-2-i {
        text-align: center;
    }

    .web-6-c-c-l-2-i-1 {
        background-image: url(../image/icon13.png);
        background-size: 100% 100%;
        color: #080808;
        font-size: 1.125rem;
        padding: .375rem 1.375rem;
    }

    .web-6-c-c-l-2-i-2 {
        font-size: 1.5rem;
        color: #fff;
        margin-top: .5rem;
    }

    .web-7 {
        background-color: #B4BFCF;
    }

    .web-7-bg {
        height: 100%;
    }

    .web-7-bg-i {
        height: 100%;
        width: auto;
    }

    .web-7-c {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: absolute;
        left: 0;
        top: 0;
        overflow-x: hidden;
        width: 100%;
    }

    .web-7-c-c {
        padding-right: 10rem;
    }

    .web-7-c-c-1 {
        font-size: 1.5625rem;
        color: #fff;
        margin-bottom: 2.5rem;
    }

    .web-7-c-c-2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 2.5rem;
        grid-row-gap: 2.5rem;
    }

    .web-7-c-c-2-i {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: all 0.3s;
    }

    .web-7-c-c-2-i:hover{
        transform: translateY(-1.25rem);
    }
    .web-7-c-c-2-i-i {
        height: 3.75rem;
        width: auto;
    }

    .web-7-c-c-2-i-t {
        font-size: .875rem;
        color: #EEF0F3;
        margin-top: .625rem;
    }

    .web-8-bg {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .web-8-c {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        top: 0;
        overflow-x: hidden;
        width: 100%;
    }

    .web-8-c-c {
        color: #fff;
    }

    .web-8-c-c-1 {
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .web-8-c-c-1-i {
        width: 37.5rem;
        height: auto;
    }

    .web-8-c-c-2 {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-column-gap: 1.25rem;
    }

    .web-8-c-c-2-i {
        height: 25rem;
        width: 12.5rem;
        transition: all 0.6s;
    }
    .web-8-c-c-2-i-i{
        width: 100%;
        height: auto;
    }

    .web-8-c-c-2-i-up {
        transform: translateY(-1.25rem);
    }

    .web-8-c-c-2-i-below {
        transform: translateY(1.25rem);
    }

    .web-9 {
        overflow: auto;
        position: relative;
    }

    .web-9-bg {
        height: 100vh;
        width: 100%;
        object-fit: cover;
    }

    .web-9-c {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        top: 0;
        overflow-x: hidden;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }

    /* 幻灯片内容样式 */
    .slide-content {
        max-width: 100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        max-height: 100vh;
        overflow-y: auto;
    }

    .slide-content::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .web-9-c-1 {
        flex-grow: 1;
        padding: 0 8.75rem;
        padding-right: 10vw;
        box-sizing: border-box;
        padding-bottom: 6.25rem;
    }

    .web-9-c-1-t {
        font-size: 28px;
        color: #fff;
    }

    .web-9-c-1-b {
        display: flex;
        justify-content: flex-start;
        margin-top: 6.25rem;
    }

    .web-9-c-1-b-i-1 {}

    .web-9-c-1-b-i {
        width: 18.75rem;
    }

    .web-9-c-1-b-i:nth-child(2) {
        transform: scale(1.3);
        margin: 0 12.5rem;
    }

    .web-9-c-1-b-i-1-i {
        width: 100%;
        height: auto;
    }

    .web-9-c-1-b-i-2 {
        padding: .625rem 1.25rem;
        background-color: #02296A;
        font-size: .875rem;
        color: #fff;
    }

    .web-footer {
        background-color: #000;
    }
    .web-footer-bg{
        transform: translateY(-5.625rem);
    }
    .web-footer-bg-i {
        width: 100%;
        height: auto;
        transform: translateY(-15%);
    }
    .web-footer-bg-b{
        height: 18.75rem;
        padding-left: 8.75rem;
        padding-top: 3.125rem;
        padding-right: 12.5rem;
        display: flex;
    }
    .web-footer-bg-b-l{
        flex-grow: 1;
    }
    .web-footer-bg-b-l-1{
        line-height: 0;
        margin-bottom: 6.25rem;
    }
    .web-footer-bg-b-l-1-i{
        width: 4.1667vw;
        height: auto;
    }
    .web-footer-bg-b-l-2{
        display: flex;
        justify-content: space-between;
    }
    .web-footer-bg-b-l-2-i-1{
        line-height: 0;
    }
    .web-footer-bg-b-l-2-i-1-i{
        height: 3.125rem;
        width: auto;
    }
    .web-footer-bg-b-l-2-i-2{
        font-size: .875rem;
        color: #ccc;
        margin: .3125rem 0;
    }
    .web-footer-bg-b-l-2-i-3{
        font-size: .875rem;
        color: #B69E7E;
        text-decoration: none;
    }
    .web-footer-bg-b-r{
        margin-left: 25rem;
    }
    .web-footer-bg-b-r-1{
        font-size: 1rem;
        color: #fff;
    }
    .web-footer-bg-b-r-2{
        margin-top: 1.25rem;
    }
    .web-footer-bg-b-r-2-i{
        height: 12.5rem;
        width: 12.5rem;
    }
    .swiper-pagination-bullets{
        right: 1.875rem !important;
    }
}



.bounce-in-bottom {
    -webkit-animation: bounce-in-bottom 1.1s both;
    animation: bounce-in-bottom 1.1s both;
}

.slide-in-left {
    -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-in-right {
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.shadow-drop-2-bl {
    -webkit-animation: shadow-drop-2-bl 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: shadow-drop-2-bl 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.scale-up-br {
    -webkit-animation: scale-up-br 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-br 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.slide-in-bottom {
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.m-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
}

.m-line-2 {
    -webkit-line-clamp: 2;
}

.m-line-3 {
    -webkit-line-clamp: 3;
}

.m-line-4 {
    -webkit-line-clamp: 4;
}

.m-line-5 {
    -webkit-line-clamp: 5;
}

.m-line-2,
.m-line-3,
.m-line-4,
.m-line-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    margin: 0;
    word-break: break-all;
}
.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
  }

  .content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: #000;
  }

  .parallax>use {
    /* 使use元素执行move-forever动画 */
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
  }

  .parallax>use:nth-child(1) {
    /* 延迟2秒启动动画 */
    animation-delay: -2s;
    /* 设置动画持续时间为7秒 */
    animation-duration: 5s;
  }

  .parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 8s;
  }

  .parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }

  .parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }

  .web-footer-bg-b-l-2-i-4{
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: .9375rem;
  }
  .web-footer-bg-b-l-2-i-4-i{
    margin-bottom: .9375rem;
  }

  @keyframes move-forever {
    0% {
      transform: translate3d(-90px, 0, 0);
    }

    100% {
      transform: translate3d(85px, 0, 0);
    }
  }

  @media (max-width: 768px) {
    .waves {
      height: 40px;
      min-height: 40px;
    }

    .content {
      height: 30vh;
    }

    h1 {
      font-size: 24px;
    }
  }
/* 动画 */
/* ----------------------------------------------
 * Generated by Animista on 2025-5-8 13:54:38
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation bounce-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes bounce-in-bottom {
    0% {
        -webkit-transform: translateY(500px);
        transform: translateY(500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(65px);
        transform: translateY(65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(28px);
        transform: translateY(28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-bottom {
    0% {
        -webkit-transform: translateY(500px);
        transform: translateY(500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(65px);
        transform: translateY(65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(28px);
        transform: translateY(28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}


/* ----------------------------------------------
 * Generated by Animista on 2025-5-8 14:3:58
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}


/* ----------------------------------------------
 * Generated by Animista on 2025-5-8 15:48:53
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}


/* ----------------------------------------------
 * Generated by Animista on 2025-5-9 8:55:59
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation shadow-drop-2-bl
 * ----------------------------------------
 */
@-webkit-keyframes shadow-drop-2-bl {
    0% {
        -webkit-transform: translateZ(0) translateX(0) translateY(0);
        transform: translateZ(0) translateX(0) translateY(0);
        -webkit-box-shadow: 0 0 0 0 rgba(236, 237, 241, 0);
        box-shadow: 0 0 0 0 rgba(236, 237, 241, 0);
    }

    100% {
        -webkit-transform: translateZ(50px) translateX(12px) translateY(-12px);
        transform: translateZ(50px) translateX(12px) translateY(-12px);
        -webkit-box-shadow: -0.375rem 0.4125rem 0.60625rem 0.3075rem rgb(236 237 241);
        box-shadow: -0.375rem 0.4125rem 0.60625rem 0.3075rem rgb(236 237 241);
    }
}

@keyframes shadow-drop-2-bl {
    0% {
        -webkit-transform: translateZ(0) translateX(0) translateY(0);
        transform: translateZ(0) translateX(0) translateY(0);
        -webkit-box-shadow: 0 0 0 0 rgba(236, 237, 241, 0);
        box-shadow: 0 0 0 0 rgba(236, 237, 241, 0);
    }

    100% {
        -webkit-transform: translateZ(50px) translateX(12px) translateY(-12px);
        transform: translateZ(50px) translateX(12px) translateY(-12px);
        -webkit-box-shadow: -0.375rem 0.4125rem 0.60625rem 0.3075rem rgb(236 237 241);
        box-shadow: -0.375rem 0.4125rem 0.60625rem 0.3075rem rgb(236 237 241);
    }
}


/* ----------------------------------------------
 * Generated by Animista on 2025-5-9 10:22:49
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-up-br
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-br {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }
}

@keyframes scale-up-br {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }
}

/* ----------------------------------------------
 * Generated by Animista on 2025-5-9 10:42:38
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}