.nfc-reader {
    width: 100vw;
    min-height: 100vh;
    background-color: #fff;
    overflow: auto;
    display: flex;
    flex-direction: column;
    .center-section {
        position: relative;
        margin: 0 auto;
        margin-top: 30px;
        margin-bottom: 57px;
        width: 292px;
        height: 292px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10%;
        .s-card {
            position: absolute;
            left: 50%;
            top: 76px;
            margin-left: -55px;
            width: 110px;
            height: 66px;
            background: #3863ea;
            border-radius: 8px;
        }
        img {
            position: absolute;
            left: 50%;
            top: 82px;
            margin-left: -50px;
            width: 100px;
            height: 172px;
        }
        .staticCircle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            background-color: #3863ea;
        }
        .staticCircle:nth-child(1) {
            width: 70px;
            height: 70px;
        }
        .staticCircle:nth-child(2) {
            width: 140px;
            height: 140px;
        }
        .staticCircle:nth-child(3) {
            width: 210px;
            height: 210px;
        }
        .staticCircle:nth-child(4) {
            width: 280px;
            height: 280px;
        }
        .circle {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            opacity: 0.05;
            background-color: #3863ea;
        }
        .circle:nth-child(1) {
            animation: anim 3s linear infinite;
        }
        .circle:nth-child(2) {
            animation: anim 3s linear 0.5s infinite;
        }
        .circle:nth-child(3) {
            animation: anim 3s linear 1.3s infinite;
        }
        .circle:nth-child(4) {
            animation: anim 3s linear 2.1s infinite;
        }

        @keyframes anim {
            from {
                opacity: 0.3;
                transform: scale(0);
            }
            to {
                opacity: 0;
                transform: scale(5);
            }
        }

        .cardAnim {
            position: absolute;
            left: 50%;
            margin-left: -55px;
            width: 110px;
            height: 66px;
            background: #3863ea;
            border-radius: 8px;
            animation: cardAnim 0.3s linear;
        }

        @keyframes cardAnim {
            from {
                top: 76px;
            }
            to {
                top: 112px;
            }
        }
    }
    .tips {
        flex: 1;
        width: 100%;
        p:nth-child(1) {
            margin-bottom: 7px;
            font-family: PingFangSC-Medium;
            font-size: 20px;
            color: #000000;
            text-align: center;
        }
        p:nth-child(2) {
            font-family: PingFangSC-Regular;
            font-size: 14px;
            color: #888888;
            text-align: center;
        }
    }
    .bottom-drop {
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        padding: 30px 16px 20px 16px;
        width: 100%;
        height: 70px;
        background: #3863ea;
        border-radius: 16px 16px 0 0;
        .drop-left {
            font-family: PingFangSC-Regular;
            font-size: 14px;
            color: #ffffff;
        }
        .drop-right {
            font-family: PingFangSC-Medium;
            font-size: 16px;
            color: #ffffff;
        }
    }
}
.van-nav-bar__text {
    color: #3863ea;
}
.van-hairline--bottom::after {
    border: none;
}