@charset "UTF-8";

.bannerInner {
    /* z-index: -1; */
    position: relative;
    width: 100%;
    height: 550px;
    transition: 0.382s;
    background-color: #000000;
}

.bannerInner .bgImg,
.bannerInner .bgVideo {
    transition: 0.382s;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /*居中填满*/
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    object-fit: cover;
    object-position: center;
    /* opacity: 0;
      &[show] {
        opacity: 1;
      } */
}

.bannerInner .bg-gray-linear {
    /*从上往下线性渐变背景*/
    background: linear-gradient(#00000022, #00000033 70%, #00000099);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}

.bannerInner .text {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(100% - 200px);
    max-width: calc(100% - 80px);
    height: max-content;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
}

.bannerInner .text[align="left"] {
    align-items: flex-start;
}

.bannerInner .text[align="right"] {
    align-items: flex-end;
}

.bannerInner .text[filter] {
    /*穿透阴影*/
    filter: drop-shadow(0px 10px 20px #00000099);
}

.bannerInner .text .t1 {
    font-weight: normal;
    font-size: 24px;
    font-family: "Microsoft YaHei Light";
    opacity: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bannerInner .text .t2 {
    font-weight: bold;
    font-size: 54px;
    font-family: Alimama_ShuHeiTi_Bold;
    opacity: 0;
}

.bannerInner .text .t3 {
    margin-top: 40px;
    font-weight: normal;
    font-size: 30px;
    font-family: "Microsoft YaHei";
    opacity: 0;
}

.bannerInner .text[show] {
    transition: 0.382s;
    opacity: 1;
}

.bannerInner .text[show] .t1 {
    opacity: 1;
    animation: sg-animate-t1 0.8s ease 1 forwards;
}

@keyframes sg-animate-t1 {
    0% {
        opacity: 0;
        transform: translateY(150%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.bannerInner .text[show] .t2 {
    animation: sg-animate-t2 0.8s ease 1 forwards;
    animation-delay: 0.3s;
}

@keyframes sg-animate-t2 {
    0% {
        opacity: 0;
        transform: translateY(150%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.bannerInner .text[show] .t3 {
    animation: sg-animate-t2 0.8s ease 1 forwards;
    animation-delay: 0.6s;
}

@keyframes sg-animate-t2 {
    0% {
        opacity: 0;
        transform: translateY(150%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

[isMobile] .bannerInner {
    width: calc(100vw);
    height: calc(calc(100vw) * 9 / 16);
}

[isMobile] .bannerInner .text {
    transform: translateY(20px);
    width: calc(100% - 40px);
}

[isMobile] .bannerInner .text .t1 {
    font-size: 12px;
    line-height: 1.6;
    font-family: AlimamaFangYuanTiVF-Thin;
    margin-bottom: 0;
}

[isMobile] .bannerInner .text .t2 {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 5px;
}

[isMobile] .bannerInner .text .t3 {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.6;
    font-family: AlimamaFangYuanTiVF-Thin;
}