body{
    margin: 0;
    font-size: 14px;
    font-family: "微软雅黑";
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}
a{
    text-decoration: none;
    color: inherit;
}
b{
    font-weight: normal;
}
i{
    font-style: normal;
}
u{
    text-decoration: none;
}
a{
    text-decoration: none;
}

.mobileframe{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: calc(50% - 215px);
    top: 5%;
    background-color: #fff;
    background-size: 100% 100%;
    width: 430px;
    height: 90%;
    position: absolute;
    border-radius: 40px;
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    padding: 15px;
    box-sizing: border-box;
    overflow: hidden;
}
.mobileframe::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0%;
    margin-left: calc(-50% + 15px);
    margin-top: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 1px solid #EEE;
    -webkit-box-shadow: 0 0 0px 13px #FFF;
    box-shadow: 0 0 0px 20px #FFF;
    border-radius: 35px;
    z-index: 100;
    pointer-events: none;
}
@media screen and (max-width: 400px) {
    .mobileframe {
      margin: 0;
      padding: 0;
      border-radius: 0;
      height: 100%;
      top: 0;
      width: 400px;
      left: 0; 
    }
    .mobileframe::before {
      content: "";
      display: none; 
    }
}
[v-cloak]{
    display: none !important;
}