* {
    padding: 0;
    border: none;
    margin: 0;
}

html,
body {
    width: 100%;
    height: 100%;
}

img {
    object-fit: cover;
    user-select: none; 
    -webkit-user-drag: none;
}

.page {
    width: 100%;
    max-width: 550px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow-y: auto;
}

.page::-webkit-scrollbar {
    display: none;
}

.page_content {
    padding-top: 30px;
    padding-bottom: 40px;
    background: url('../img/bg.js');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.main_img {
    width: 100%;
}

.middle_img {
    display: block;
    width: calc(100% - 32px);
    margin: 0 auto;
    margin-top: 10px;
}

.btn_btn {
    display: block;
    width: calc(100% - 100px);
    margin: 0 auto;
    margin-top: 30px;
    animation: pulse-scale 1s ease-in-out infinite alternate;
    transform-origin: center center;
}

.btn_img {
    width: 100%;
}

.foot_img {
    display: block;
    width: calc(100% - 32px);
    margin: 0 auto;
    margin: 20px auto 0;
}

.service_btn {
    width: 17%;
    max-width: calc(550px * 0.17);
    position: fixed;
    right: 10px;
    top: 50%;
    animation: moveUpDown 0.6s infinite alternate;
}
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(5px);
    }
}
.service_btn .service_img {
    width: 100%;
}

@keyframes pulse-scale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}