
*{
    box-sizing: border-box;
}

body,
p,
button,
h1,
h2,
input,
button {
    margin: 0;
    padding: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

input,
button {
    box-sizing: border-box;
    border-radius: 0;
}

input:focus,
button:focus {
    outline: none;
}

body {
    font-size: 14px;
    line-height: 1.425;
    color: #212222;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.icon {
    display: block;
    width: 0.85rem;
    height: 0.85rem;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-list{
    background-image: url(../images/list.png);
}

.icon-pix{
    background-image: url(../images/pix.jpg);
    /* background-image: url(../images/pix.png); */
    width: 6rem;
    height: 6rem;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}

#app{
    padding: .5rem 1rem;
}

.info{
    border: .07rem solid #dde7f0;
    border-radius: .57rem;
    padding: .3rem;
    margin: .5rem 0;
}

.info .info-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.info .info-box .key{
    font-size: 1rem;
    color: #222;
}
.info .info-box .val{
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.qrcode{
    border: .07rem solid #dde7f0;
    border-radius: .57rem;
    padding: .5rem 1rem;
}
.tips{
    /* text-align: center; */
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: .3rem 0;
}
.qrContent{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#time{
    text-align: center;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 900;
}
.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    display: none;
}
.refresh{
    width:25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
}
.qrcode-box{
    position: relative;
}
.step2{
    margin-top: 20px;
    padding: 10px;
}
.step2 .title{
    /* font-weight: 700; */
    display: flex;
    flex-direction: column;
}
.step2 .inputBox{
    margin-top: 10px;
    width: 100%;
}
.step2 .inputBox .referenceBox{
    display: flex;
    justify-content: space-between;
}
.step2 .inputBox .referenceBox .label{
    width: 20%;
    font-weight: 700;
    font-size: 16px;
    margin-right: 5px;
}
.step2 .inputBox .submitBox{
    display: flex;
    justify-content: center;
    align-items: center;
}
.step2 .reference{
    padding: .2rem;
    border: 1px solid black;
    width: 80%;
    border-radius: .3rem;
    padding-left:5px;
}
.step2 .inputBox .submitBtn{
    margin-top: 20px;
    width: 50%;
    border: inherit;
    background-color: #4cb8a9;
    padding: .7rem;
    border-radius: .3rem;
    color: #fff;
    font-size: 1rem;
}
.btnBox{
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: .5rem ;
}
.btnBox .btn{
    border: inherit;
    background-color: #4cb8a9;
    width: 100%;
    padding: 1rem;
    border-radius: .57rem;
    color: #fff;
    font-size: 1rem;

    display: flex;
    justify-content: left;
}
.btnBox .icon{
    position: absolute;
    width: 1.125rem;
    height: 1.125rem;
    right: 1rem;
    top: .9rem; 
}

.footer{
    display: flex;
    flex-direction: column;
    align-items:center ;
}
.powered{
    font-size: 1rem;
    color: #999;
    margin-top: 2.1rem;
}

.showMessage {
    padding: 1rem 2rem;
    border-radius: 5px;
    position: fixed;
    top: 50%;
    left: 50%;
    color: #ffffff;
    z-index: 999;
    transform: translate(-50%, -50%);
}
 
.showMessageSuccess {
    width: 60%;
    background-color: #4c4c4c;
    color: #fff;
}

#qrcodeValue{
    display: none;
}
.invalid-main{
    padding: 1rem 2rem;
    border-radius: 5px;
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    z-index: 999;
    transform: translate(-50%, -50%);
  }
.loading,.invalid{
    width: 100%;
    height: 100%;
    background: rgba(170, 170, 170, 0.5);
    position: absolute;
    z-index:'999' ;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 