* {
    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;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    overflow-y: auto;
}

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

.main_img {
    display: block;
    width: 100%;
}

.middle_img_1 {
    display: block;
    width: 100%;
}

.middle_img_2 {
    display: block;
    width: 100%;
}

.placeholder {
    padding-bottom: calc(100% * 110 / 550);
}

.btn_box {
    width: 100%;
    max-width: 550px;
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.btn_box .foot_img {
    display: block;
    width: 100%;
}

.btn_box .btn_btn {
    width: 24%;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_box .btn_btn .btn_img {
    width: 100%;
    animation: pulse-scale 1s ease-in-out infinite alternate;
}

.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);
    }
}