@font-face {
font-family: "SongFont";
src: url("./assert/font/WenQuanDengKuanWeiMiHei-1.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    &::-webkit-scrollbar {
        display: none;
    }

    letter-spacing: 1px;
    font-family: 'SongFont', Arial, sans-serif;
    
}

[v-cloak] {
    display: none;
}



#app {
    width: 100vw;
    height: 100vh;
    background: #f7f8fa;
    overflow: auto;
    position: relative;
    color: #444;
}

.eg-image {
    width: 100%;
}

.eg-image-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.qs {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 15px;
    width: 100vw;
    min-height: calc(100vh - 200px);
}

.top-200 {
    top: 200px;
}
.header-title, .header-desc {
    letter-spacing: 2px;
    color: #333;
}

.header-title {
    text-align: center;
    font-size: 22px;
    color: #0896fc;
    font-weight: 400;
}

.header-desc {
    margin-top: 10px;
    font-size: 12px;
    color: #222;
    text-indent: 2em;
    line-height: 1.7;
}

.title {
    font-weight: 800;
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 4px;
}

.title img, .option img {
    width: 100%;
    height: auto;
}


.van-cell-group--inset {
    margin: 0;
}

.van-field-1-input, .van-field__control {
    background: #f4f5f8 !important;
    padding: 3px;
    border-radius: 3px;
}

.van-cell__title {
    color: #777;
}

/* 提交成功的反馈 */
.feed-back {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.feed-back-icon {
    width: 208px;
    height: 256px;
}

.feed-back-text {
    font-size: 16px;
    padding: 0 20px;
    text-indent: 0.5em;
    margin-top: 20px;
}

.submit-success {
    background: url("./assert/images/success.png") no-repeat;
    background-size: 100% 100%;
}

.loading {
    background: url("./assert/images/loading.png") no-repeat;
    background-size: 100% 100%;
}

.invalid {
    background: url("./assert/images/invalid.png") no-repeat;
    background-size: 100% 100%;
}