body {
    margin: 0px;
    padding: 0px;
    font: 14px/1.5 "Helvetica neue", Helvetica, Tahoma, Arial, "\5FAE\8F6F\96C5\9ED1", "\5B8B\4F53", sans-serif;
    list-style: none;
    text-decoration: none;
    background-color: #fff2d7
}

* {
    text-decoration: none;
}

.main {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: url('../img/invite.jpg') no-repeat;
    background-size: 100% 100%
}

.inviteBg {
    width: 100%;
    height: 100%;

}

.header {
    width: 90%;
    display: flex;
    flex-direction: row;
    margin-top: 0.5rem;
}

.header .gameImg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.1rem;
}

.header .word {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header .word .gameName {
    font-weight: bold;
    color: #fce080;
    font-size: 0.27rem;
}

.header .word .mine {
    display: flex;
    flex-direction: row;
    color: #000;
    font-weight: bold;
    font-size: 0.25rem;
}

.header .word .mine em {
    font-style: normal;
}

.header .word .mine input {
    background: none;
    border: none;
    text-align: left;
}

.main #dynamic {
    border: none; /* ÐÂÔö£ºÒÆ³ý±ß¿ò */
    width: 4.47rem;
    height: 1.47rem;
    border-radius: 0.11rem;
    text-align: center;
    line-height: 1rem;
    background: url('../img/invite_btn.png') no-repeat;
    background-size: 100% 100%;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 0.3rem;
    text-decoration: none;
    animation: mymove infinite 1s linear;
    -webkit-animation: mymove infinite 1s linear;
    text-indent: -9999em;
}

@keyframes mymove {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.shadow {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    z-index: 5;
    display: none;
}

    .shadow img {
        width: 5.21rem;
        height: 1.8rem;
        position: absolute;
        right: 0.3rem;
        top: 1rem;
    }