@charset "utf-8";

html {
    font-size: 50px
}

body {
    max-width: 750px;
    margin: 0 auto;
    font-size: .3rem;
    color: #333;
    background-color: #f6989b;
}

.main {
    margin-top: 1.1rem
}

.list-img {
    font-size: 0
}

.list-img img {
    width: 100%
}

.header {
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    max-width: 750px;
    height: 1.1rem;
    padding: 0;
    font-size: 0;
}

.header .logo {
    height: .88rem
}

.header .btn-download {
    height: .54rem;
    -webkit-animation: urgentlystrong .5s infinite;
    animation: urgentlystrong .5s infinite
}

.header img {
    height: 100%
}

.aside-service {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 100;
    width: 1.38rem;
    height: 1.99rem;
    -webkit-animation: breathe 2s infinite;
    animation: breathe 0.6s infinite
}

.aside-service::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/service.png) no-repeat;
    background-size: cover
}

@media (min-width:750px) {
    .header {
        left: 50%;
        margin-left: -375px
    }
}

@media (min-width:750px) {
    .header {
        left: 50%;
        margin-left: -375px
    }
}

@-webkit-keyframes urgentlystrong {
    from {
        transform: scale(1)
    }

    50% {
        transform: scale(.8)
    }

    to {
        transform: scale(1)
    }
}

@keyframes urgentlystrong {
    from {
        transform: scale(1)
    }

    50% {
        transform: scale(.8)
    }

    to {
        transform: scale(1)
    }
}

@-webkit-keyframes flicker {
    from {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes flicker {
    from {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes breathe {
    from {
        transform: scale(.85)
    }

    50% {
        transform: scale(1)
    }

    to {
        transform: scale(.85)
    }
}

@keyframes breathe {
    from {
        transform: scale(.85)
    }

    50% {
        transform: scale(1)
    }

    to {
        transform: scale(.85)
    }
}