.page_container .page{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    box-sizing: border-box;
    padding-top: 0.98rem;
}
.attention_container {
    width: 100%;
    height: 100%;
    background: url(../assets/index_bg.jpg) center top / 100% 100% no-repeat;
    background-size: 100%;
    position: relative;
}
.attention_container .attention_slogon {
    background: url(../assets/slogan.png) no-repeat;
    background-size: 7.5rem 5.62rem;
    width: 7.5rem;
    height: 5.62rem;
    position: absolute;
    bottom: 1.6rem;
    right: 0;
    z-index: 3;
}
.attention_container .attention_slogon .attention_play {
    background: url(../assets/vid_ani.png) no-repeat;
    background-size: 1.19rem 1.22rem;
    width: 1.19rem;
    height: 1.22rem;
    position: absolute;
    top: 4.5rem;
    left: 1.5rem;
    animation: breathe 1.1s infinite;
    transform-origin: center;
}
.attention_container .attention_slogon .attention_play::after {
    content: "";
    background: url(../assets/vid_arr.png) no-repeat;
    background-size: 0.45rem 0.59rem;
    width: 0.45rem;
    height: 0.59rem;
    position: absolute;
    top: 0.3rem;
    left: 0.45rem;
}
.attention_container .attention_button {
    background: url(../assets/book_btn.png) no-repeat;
    background-size: 6.27rem 2.09rem;
    width: 6.27rem;
    height: 2.09rem;
    position: absolute;
    bottom: 0rem;
    left: 50%;
    margin-left: -3.13rem;
    text-indent: -999em;
    /* z-index: 20; */
}
.g_arrowdown {
    background: url(../assets/down.png) no-repeat;
    background-size: 0.48rem 0.27rem;
    width: 0.48rem;
    height: 0.27rem;
    animation: point-down 2s ease-in-out infinite;
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    margin-left: -0.24rem;
    z-index: 9;
}
@keyframes point-down{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(0.1rem);
    }
    100%{
        transform: translateY(0);
    }
}
@keyframes breathe{
    0%{
       transform: scale(1);
    }
    50%{
        transform: scale(1.05);
    }
    100%{
        transform: scale(1);
    }

}