HTML, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote,
pre, form, fieldset, table, th, td {
    border: none;
    font-family: PingFang SC;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}
body {
    background-color:#EDEDED;
    width: 100%;
}
.wrapper{
    width:40%;
    height: 100%;
    box-sizing: border-box;
    /* border:1px solid red; */
    padding:20px ;
}



.card{
    /* border:1px solid green; */
    width: 100%;
    height: 400px;
    margin: .2rem auto;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
}

.title{
    height: 100px;
    padding-left: 30px;
    font-size: 30px;
}


.button{
    /* border:1px solid red; */
    display:inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border-radius: 25px;
    background: #EDEDED;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)
}

.cardImg{
    width: 100%;
    height: 300px;
}

.mask{
    position: fixed;
    top:0;
    right: 0;
    left: 0;
    bottom: 0;
    background:rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.remark{
    font-size: 30px;
}