* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

html, body {
    height: 100%;
    font-size: .30rem;
    background-color: #fff;
}

/* 使用webkit内核的浏览器 */
::-webkit-input-placeholder {
    font-size: .30rem;
}

/* Firefox版本4-18 */
:-moz-placeholder {
    font-size: .30rem;

}

/* Firefox版本19+ */
::-moz-placeholder {
    font-size: .30rem;
}

/* IE浏览器 */
:-ms-input-placeholder {
    font-size: .30rem;
}

/* wrap */

.wrap {
    width: 100%;
    height: 100%;
    overflow: auto;
}

/* header */

/* .header {
    width: 100%;
    height: .56rem;
    background: #3A80F9;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
}

.backBtn {
    width: .18rem;
    height: .18rem;
    margin-left: .16rem;
    background: url("/static/img/report.add/left.png") no-repeat;
    background-size: 100% 100%;
}

.title {
    font-size: 18px;
    line-height: .25rem;
    font-weight: normal;
}

.submitBtn {
    font-size: 16px;
    margin-right: .16rem;
    opacity: 0;
} */

/* body */

.body {
    width: 100%;
    height: 100%;
    padding-top: .64rem;
    background: #f3f3f3;
}

/* form-list */

.list {
    width: 100%;
    height: auto;
    background: #f3f3f3;
}

.list li {
    background: #ffffff;
}

.list .list__item--title {
    background: #f3f3f3;
    font-size: .28rem;
    line-height: .35rem;
    padding: .16rem .16rem .09rem .16rem;
    color: #666666;
    letter-spacing: 0;
}

.list__item {
    width: 100%;
    padding-left: .16rem;
}

.item__content {
    width: 100%;
    min-height: .88rem;
    padding-right: .16rem;
    border-bottom: 1px solid #f5f5f5;
    font-size: .30rem;
    color: #666666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.must:before {
    content: '';
    width: .08rem;
    height: .08rem;
    position: absolute;
    top: .40rem;
    left: -.08rem;
}

.person {
    color: #333333;
    /*margin-right: .23rem;*/
}

.right:after {
    content: '';
    width: .15rem;
    height: .15rem;
    position: absolute;
    top: .35rem;
    right: 0.16rem;
}

.select {
    font-size: .30rem;
    color: #333333;
    margin-right: .23rem;
    width: auto;
    height: auto;
}

.date {
    border: none;
    outline: none;
    background: none;
    font-size: .30rem;
    text-align: right;
    margin-right: .23rem;
}

.input {
    border: none;
    outline: none;
    width: 2.42rem;
    line-height: .43rem;
    font-size: .30rem;
    color: #333333;
}

/* 健康证 */
.uploadBox {
    display: block;
}

.uploadBox .label {
    line-height: .44rem;
}

.upload__content {
    display: flex;
}

.imgBox {
    display: flex;
}

.img {
    width: 1rem;
    height: 1rem;
    margin-bottom: .13rem;
    margin-right: .16rem;
    position: relative;
}

.img img {
    display: block;
    width: 100%;
    height: 100%;
}

.delete {
    width: .16rem;
    height: .16rem;
    border-radius: 50%;
    position: absolute;
    top: -0.08rem;
    right: -0.08rem;
}

.upload {
    position: relative;
    margin-bottom: .13rem;
}

.upload input {
    width: 1rem;
    height: 1rem;
    border: none;
    background: none;
    opacity: 0;
}

.upload:before {
    content: '';
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 0;
    left: 0;
}

.name {
    float: right;
    width: 2.42rem;
    font-size: .30rem;
    color: #333333;
}

.submit {
    display: block;
    width: 100%;
    height: .84rem;
    line-height: .84rem;
    text-align: center;
    color: #ffffff;
    font-size: .30rem;
    letter-spacing: 3px;
    background: #3A80F9;
    border-radius: .04rem;
}

/* dialog */

.dialog__wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: none;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 200;
}

.dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 90%;
    height: fit-content;
    background: #fff;
    z-index: 300;
    display: flex;
    flex-direction: column;
    border-radius: .04rem;
}

.dialog__title {
    width: 100%;
    line-height: .88rem;
    font-size: .32rem;
    text-indent: .1rem;
    font-weight: normal;
    border-bottom: 1px solid #f5f5f5;
}

.dialog__content {
    flex: 1 0 auto;
}

.dialog__content .input {
    /*width: 2rem;*/
}

.dialog__action {
    width: 100%;
    padding: .05rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.dialog__confirm {
    color: #ffffff;
    line-height: .6rem;
    text-align: center;
    background: #3A80F9;
    padding: 0 .2rem;
    border-radius: .04rem;
}

.dialog__cancel {
    color: #666666;
    margin-right: .15rem;
}

.helpDelete {
    padding: .12rem .16rem;
    position: absolute;
    top: 0;
    right: 0;
    color: red;
    font-size: .28rem;
    z-index: 50;
}

/* footer */

/* .footer {
    width: 100%;
    height: .67rem;
    font-size:.32rem
    line-height: .17rem;
    color: #999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */

/* 不同屏幕适配 */

@media screen and (min-width: 376px) {
    .must:before {
        background: url("/static/img/report.add/required@3x.png") no-repeat;
        background-size: 100%;
    }

    .right:after {
        background: url("/static/img/report.add/right@3x.png") no-repeat;
        background-size: 100%;
    }

    .upload:before {
        background: url("/static/img/report.add/upload@2x.png") no-repeat;
        background-size: 100%;
    }

    .delete {
        background: url("/static/img/report.add/delete@3x.png") no-repeat;
        background-size: 100%;
    }
}

@media screen and (max-width: 375px) and (min-width: 321px) {
    .must:before {
        background: url("/static/img/report.add/required@2x.png") no-repeat;
        background-size: 100%;
    }

    .right:after {
        background: url("/static/img/report.add/right@2x.png") no-repeat;
        background-size: 100%;
    }

    .upload:before {
        background: url("/static/img/report.add/upload@2x.png") no-repeat;
        background-size: 100%;
    }

    .delete {
        background: url("/static/img/report.add/delete@2x.png") no-repeat;
        background-size: 100%;
    }
}

@media screen and (max-width: 320px) {
    .must:before {
        background: url("/static/img/report.add/required.png") no-repeat;
        background-size: 100%;
    }

    .right:after {
        background: url("/static/img/report.add/right.png") no-repeat;
        background-size: 100%;
    }

    .upload:before {
        background: url("/static/img/report.add/upload.png") no-repeat;
        background-size: 100%;
    }

    .delete {
        background: url("/static/img/report.add/delete.png") no-repeat;
        background-size: 100%;
    }
}