html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    max-width: 750px;
    margin: 0 auto;
    overflow-x: hidden;
    background-color: #ffe9cc;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.main {
    max-width: 750px;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

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

.foot {
    position: fixed;
    z-index: 11;
    bottom: 0;
    max-width: 750px;
    margin: auto;
}

.foot>img:nth-of-type(2) {
    position: absolute;
    right: 10px;
    bottom: 25px;
}

.service {
    position: fixed;
    right: 50%;
    margin-right: -375px;
    top: 50%;
    margin-top: -96px;
    z-index: 88;
}

.lb {
    margin: 20px 30px;
    padding-bottom: 400px;
}

.lb li {
    border-radius: 30px;
    overflow: hidden;
}

.lb img {
    width: 100%;
    display: block;
}

.lb .swiper-pagination>span {
    width: 12px;
    height: 12px;
}

.main>ul {
    margin: 30px 40px;
}

.main>ul>li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.main>ul>li>div {
    display: flex;
    width: 450px;
    font-size: 24px;
}

.main>ul>li>div>div:nth-of-type(1) {
    width: 110px;
    height: 60px;
    border-radius: 60px 0 0 60px;
    background-color: #7b4b41;
    text-align: center;
    line-height: 60px;
    color: #fff09f;
}

.main>ul>li>div>div:nth-of-type(2) {
    width: calc(100% - 110px);
    height: 58px;
    background-color: #ffe4c9;
    border: 1px solid #703b35;
    border-radius: 0 60px 60px 0;
    text-align: center;
    line-height: 58px;
    color: #7b4b41;
    font-weight: 700;
    border-left: none;
}

.download {
    margin-top: 5rem;
    animation-iteration-count: infinite;
    animation-name: pulse;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-duration: var(--animate-duration);
}

@keyframes pulse {
    0% {
        transform: scaleX(1);
    }

    50% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        transform: scaleX(1);
    }
}

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
    --swiper-theme-color: #d30000;
    --swiper-navigation-size: 44px;
}

.left {
    animation-iteration-count: infinite;
    animation-name: lefts;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-duration: 1.5s;
}

@keyframes lefts {
    0% {
        margin-left: 0;
    }

    50% {
        margin-left: 30px;
    }

    100% {
        margin-left: 0;
    }
}

.right {
    animation-iteration-count: infinite;
    animation-name: rights;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-duration: 1.5s;
}

@keyframes rights {
    0% {
        margin-right: 0;
    }

    50% {
        margin-right: 30px;
    }

    100% {
        margin-right: 0;
    }
}

#popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

#popup>div {
    position: relative;
}

#popup>div>p {
    position: absolute;
    top: 85px;
    left: 100px;
    font-size: 30px;
    color: #c11f15;
}

#popup>div>img:nth-of-type(2) {
    position: absolute;
    bottom: 100px;
    left: calc(50% - 135px);
}

#popup>div>img:nth-of-type(3) {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 50px;
}