body {
    background-color: #eeeeee;
}

.verify {
    padding: 0.5rem;
    width: 100%;
    border-radius: 5px;
    font-size: 0.6rem;
    background-color: #ffffff;
}

/* 实名信息 */
.verify .itemInput {
    width: 100%;
    /* background-color: pink; */
}

.verify .itemInput .disabled {
    padding: 0.5rem;
    width: 100%;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    background-color: #eeeeee;
}

.verify .itemInput .disabled:hover {
    border: 1px solid red;
}

/* 身份证照片 */
.verify .item-upload {
    margin-top: .5rem;
    /* background-color: forestgreen; */
}

.verify .item-upload .title {
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
}

.verify .item-upload .item-img {
    justify-content: space-between;
    margin-top: 0.5rem;
    width: 100%;
    /* background-color: pink; */
}

.verify .item-upload .item-img .imgBox {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 7rem;
    border-radius: 10px;
    background-color: #DDDDDD;
}

.verify .item-upload .item-img .imgBox .hide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
}

.verify .item-upload .item-img .imgBox .img {
    width: 100%;
    height: calc(100% - 1rem);
    /* background-color: #913636; */
}

.verify .item-upload .item-img .imgBox .img img {
    max-width: 80%;
    max-height: 80%;
}

.verify .item-upload .item-img .imgBox p {
    width: 100%;
    line-height: 1rem;
    text-align: center;
    color: black;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #FFDD55;
}

.verify .item-tips {
    margin-top: 0.5rem;
    color: red;
    font-weight: 700;
    /* background-color: burlywood; */
}

.verify .item-btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    /* background-color: antiquewhite; */
}

.verify .item-btn button {
    padding: 0.5rem 0;
    width: 100%;
    color: black;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    background-color: #FFDD55;
}