* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#app {
    background: #EBEBEB;
    overflow: hidden;
    padding-bottom: 0.5rem;
}

.must-watch {
    width: 3.6rem;
    height: 2.91rem;
    background: url(../images/must-watch.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.must-watch-top {
    width: 3.2rem;
    height: 0.46rem;
    background: url(../images/icon_top.png) no-repeat;
    background-size: 100% 100%;
    margin: 0.12rem auto;
}

.must-watch-click {
    width: 3.2rem;
    height: 0.46rem;
    background: url(../images/icon_top_click.png) no-repeat;
    background-size: 100% 100%;
    margin: 0.12rem auto;
    display: none;
}

.heart {
    width: 0.45rem;
    height: 0.38rem;
    background: url(../images/icon_heart.png) no-repeat;
    background-size: 100% 100%;
    transform-origin: center center;
    animation: shake 1.75s linear infinite;
    -webkit-animation: shake 1.75s linear infinite;
}

.slim {
    width: 1.91rem;
    height: 0.76rem;
    background: url(../images/icon_slim.png) no-repeat;
    background-size: 100% 100%;
    transform-origin: center center;
    animation: shake 1.75s linear infinite;
    -webkit-animation: shake 1.75s linear infinite;
    object-fit: contain;
}

.wind {
    width: 1.5rem;
    height: 0.57rem;
    background: url(../images/icon_wind.png) no-repeat;
    background-size: 100% 100%;
    transform-origin: center center;
    animation: shake 1.75s linear infinite;
    -webkit-animation: shake 1.75s linear infinite;
    object-fit: contain;
}

@keyframes shake {
    0% {
        transform: rotate(-5deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(-5deg);
    }
}

@-webkit-keyframes shake {
    0% {
        transform: rotate(-5deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(-5deg);
    }
}

.banner-container {
    position: relative;
    width: 3.6rem;
    height: 2.9rem;
    overflow: hidden;
}

.banner1_1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/icon_banner1_1.png) no-repeat;
    background-size: 100% 100%;
    transition: transform 0.5s ease-in-out;
    transform: translateY(0);
    z-index: 1;
    background: #EBEBEB;
}

.banner1_1 .heart {
    position: absolute;
    top: 0.35rem;
    left: 1.76rem;
}

.banner1_1 .slim {
    position: absolute;
    top: 0.79rem;
    right: 0.06rem;
}

.banner1_1 .wind {
    position: absolute;
    top: 1.275rem;
    right: 0.12rem;
}

.banner1_2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 0;
    overflow: hidden;
    background: #EBEBEB;
}

/* Active states for sliding */
.banner1_1.slide-up {
    transform: translateY(-100%);
}

.banner1_2.slide-up {
    transform: translateY(0);
}

.banner1_1.slide-down {
    transform: translateY(100%);
}

.banner1_2.slide-down {
    transform: translateY(0);
}

.banner1_2 .bg {
    width: 3.2rem;
    height: 1.52rem;
    background: url(../images/icon_banner1_2bg.png) no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
}

.banner1_2 .content {
    display: flex;
    justify-content: space-between;
    padding: 0 0.2rem;
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    right: 0;
    z-index: 2;
}

.banner1_2 .content .content_item {
    position: relative;
    width: 1rem;
    height: 1.09rem;
    opacity: 0;
    transform: translateY(-0.2rem);
    transition: all 0.5s ease-out;
    flex-shrink: 0;
}

/* Content item animations will be handled by JS */

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-0.2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner1_2 .content .content_item .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 0.8rem;
}

.banner1_2 .content .content_item .label {
    width: 1rem;
    height: 0.53rem;
    position: absolute;
    top: 0.56rem;
    left: 0;
}

.swipe {
    width: 0.61rem;
    height: 0.51rem;
    background: url("../images/icon_swipe_up.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: -0.37rem;
    left: calc(50% - 0.305rem);
    z-index: 2;
}

.label2 {
    display: flex;
    justify-content: space-between;
    padding: 0 0.2rem;
    margin-top: 0.46rem;
    margin-bottom: 0.35rem;
}

.label2 .item {
    position: relative;
    width: 0.96rem;
    height: 2.07rem;
}
.label2 .item img {
    width: 0.96rem;
}
.label2 .item .watch {
    position: absolute;
    width: 0.96rem;
    height: 0.26rem;
    bottom: 0;
    left: 0;
}

.banner2_1 {
    width: 3.6rem;
    height: 3.29rem;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
    z-index: 2;
    overflow: hidden;
    background: #EBEBEB;
}

.banner2_1 .bg {
    width: 3.6rem;
    height: 3.29rem;
    display: none;
}

.banner2_1 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: block;
}

.banner2_1 .bg.active {
    opacity: 1;
    z-index: 1;
}

.point {
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.1rem;
    z-index: 1000;
    pointer-events: auto;
}

.point .item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.point .item div {
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner2_1 .poetics {
    width: 1.6rem;
    height: 0.57rem;
    background: url(../images/icon_color_poetics.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0.25rem;
    right: 0.08rem;
    animation: shake 1.75s linear infinite;
    -webkit-animation: shake 1.75s linear infinite;
    z-index: 2;
}

.banner2_1 .awakening {
    width: 2.04rem;
    height: 0.82rem;
    background: url(../images/icon_color_awakening.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0.51rem;
    right: 0.065rem;
    animation: shake 1.75s linear infinite;
    -webkit-animation: shake 1.75s linear infinite;
    z-index: 2;
}

.point {
    position: absolute;
    left: 0.2rem;
    bottom: 0.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 0.24rem;
    width: 1.28rem;
}

.point .item div {
    width: 0.16rem;
    height: 0.16rem;
    border-radius: 0.16rem;
}

.point .active {
    border: 0.01rem solid;
    padding: 0.03rem;
    border-radius: 100%;
}


.banner2_2 {
    width: 3.6rem;
    height: 3.29rem;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1;
    overflow: hidden;
    background: #EBEBEB;
}

.banner2_2 .bg {
    width: 3.6rem;
    height: 3.29rem;
}

.banner2_2 .content {
    position: absolute;
    top: 0.38rem;
    left: 0.2rem;
    width: 1.36rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.banner2_2 .content .item {
    width: 1.36rem;
    height: 0.46rem;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.banner2-container {
    position: relative;
    height: 3.29rem;
    margin-top: 0.3rem;
    overflow: hidden;
}

.label3 {
    margin-top: 0.27rem;
    padding-bottom: 0.51rem;
    padding-left: 0.2rem;
    overflow: hidden;
}

.label3 .item {
    position: relative;
    width: 0.96rem;
    height: 2.07rem;
    float: left;
    margin-right: 0.16rem;
    margin-top: 0.12rem;
}
.label3 .item img {
    width: 0.96rem;
}
.label3 .item .watch {
    position: absolute;
    width: 0.96rem;
    height: 0.26rem;
    bottom: 0;
    left: 0;
}

.frame {
    background: url("../images/icon_frame.png") no-repeat;
    background-size: 100% 100%;
    width: 1.96rem;
    height: 1.08rem;
    position: absolute;
    top: 0.79rem;
    right: 0.04rem;
    animation: shake 1.75s linear infinite;
    -webkit-animation: shake 1.75s linear infinite;
    z-index: 2;
}

.banner3_1 {
    width: 3.6rem;
    height: 3.18rem;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
    z-index: 2;
    overflow: hidden;
    background: #EBEBEB;
}

.banner3_1 .bg {
    width: 3.6rem;
    height: 3.18rem;
}

.banner3_2 {
    width: 3.6rem;
    height: 3.18rem;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1;
    overflow: hidden;
    background: #EBEBEB;
}

.banner3_2 .bg {
    width: 3.6rem;
    height: 3.18rem;
}

.banner3_2 .content {
    position: absolute;
    top: 0.19rem;
    right: 0.2rem;
    width: 1.43rem;
    height: 2.76rem;
}

.banner3_2 .content .item {
    width: 1.43rem;
    height: 0.92rem;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.banner3-container {
    position: relative;
    height: 3.18rem;
    overflow: hidden;
}

.button {
    width: 3.6rem;
    height: 9.28rem;
    background: url("../images/icon_buttom.png") no-repeat;
    background-size: 100% 100%;
}


.antd-notification {
    position: fixed;
    z-index: 1010;
    width: 100%;
    top: 0.16rem;
    left: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.antd-notification-message {
    background: #fff;
    border-radius: 0.04rem;
    box-shadow: 0 0.03rem 0.06rem -0.04rem rgba(0, 0, 0, 0.12), 0 0.06rem 0.16rem 0 rgba(0, 0, 0, 0.08), 0 0.09rem 0.28rem 0.08rem rgba(0, 0, 0, 0.05);
    padding: 0.1rem 0.16rem;
    margin-bottom: 0.08rem;
    display: flex;
    align-items: center;
    max-width: 80%;
    pointer-events: auto;
    animation: antdNotificationFadeIn 0.3s ease-out;
}
.antd-notification-message-info {
    border-left: none;
}
.antd-notification-message-content {
    display: flex;
    align-items: center;
}
.antd-notification-message-icon {
    margin-right: 0.08rem;
    font-size: 0.16rem;
    line-height: 1;
}
.antd-notification-message-text {
    font-size: 0.14rem;
    color: rgba(0, 0, 0, 0.85);
}
@keyframes antdNotificationFadeIn {
    from {
        opacity: 0;
        transform: translateY(-0.2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
