* {
    padding: 0;
    margin: 0;
}

img {
    vertical-align: top;
}

.container {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(5, 13, 6);
}

.container .main {
    max-width: 450px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.container .main .images img {
    width: 100%;
    margin-top: -1px;
    z-index: 2;
}

.container .main .images img:nth-child(2) {
    margin-top: -13px;
    z-index: 1;
}

.container .main .fixed {
    position: fixed;
    z-index: 98;
    left: 0;
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: center;
}

.container .main .fixed .fixed-box {
    height: 75px;
    background-size: 100% 100%;
    padding: 0 10px 0 16px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 450px;
    width: 100%;
    box-sizing: border-box;
}

.container .main .fixed .fixed-box .box-left {
    display: flex;
    align-items: center;
}

.container .main .fixed .fixed-box .box-left img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 5px;
}

.container .main .fixed .fixed-box .box-left .left-content {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.container .main .fixed .fixed-box .box-left .left-content p:first-child {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.container .main .fixed .fixed-box .box-left .left-content p:last-child {
    padding-top: 5px;
    font-size: 12px;
    letter-spacing: 4px;
    padding-left: 5px;
}

.container .main .header {
    top: 0;
}

.container .main .header .fixed-box .box-right {
    border-radius: 36px;
    height: 36px;
    width: 87px;
    background: #FFFFFF;
    text-align: center;
    font-size: 14px;
    color: #e95451;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container .main .footer {
    bottom: 0;
}

.container .main .footer .fixed-box .box-right img {
    height: 75px;
    max-height: 71px;
    margin-top: 5px;
    cursor: pointer;
    animation: breathing 1s infinite;
}

.van-dialog {
            position: fixed;
            top: 45%;
            left: 50%;
            width: 320px;
            overflow: hidden;
            font-size: 16px;
            background-color: #fff;
            border-radius: 16px;
            transform: translate3d(-50%, -50%, 0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transition: .3s;
            transition-property: transform, opacity;
        }
        #index .van-dialog__header {
            font-weight: 700;
            font-size: 1rem;
        }
        .van-dialog__header {
            padding-top: 24px;
            font-weight: 500;
            line-height: 24px;
            text-align: center;
        }
        .van-dialog {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 320px;
            overflow: hidden;
            font-size: 16px;
            background-color: #fff;
            border-radius: 16px;
            transform: translate3d(-50%, -50%, 0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transition: .3s;
            transition-property: transform, opacity;
        }
        .van-dialog__content p {
            display: block;
            -webkit-margin-before: 1em;
                    margin-block-start: 1em;
            -webkit-margin-start: 0px;
                    margin-inline-start: 0px;
            -webkit-margin-end: 0px;
                    margin-inline-end: 0px;
            text-align: center;
        }
        #imgbg{
        display: block; width: 100%; margin: 0px; padding: 0px;
        }
        .loadingimg{
        margin-left: 45%; margin-bottom: 5%; width: 10%;
        }

@keyframes breathing {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0% {
        transform: translate(0, -50%);
    }
    20% {
        transform: translate(0, calc(-50% + 30px));
    }
    40% {
        transform: translate(0, -50%);
    }
    50% {
        transform: translate(0, calc(-50% + 15px));
    }
    70% {
        transform: translate(0, -50%);
    }
    100% {
        transform: translate(0, -50%);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

