/*弹窗 start*/
.mark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 99999;
    display: none;
}

.imgBox {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transform: translate(0, -50%);
}

@keyframes redBounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}


.imgBox .ewm {
    width: 6.1rem;
    height: auto;
    /* z-index: 100; */
    animation: bounceIn 0.3s ease;
    -webkit-animation: bounceIn 0.3s ease;
}

.imgMarkbtn {
    position: absolute;
    bottom: 2.3rem;
    left: 0;
    height: 1.2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.imgMarkbtn .btn {
    flex: 1;
    height: 1.2rem;
}

.imgMarkClose {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    height: 1.2rem;
}


.addressMark .bgbox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}


.addressMark .imgbg {
    background-repeat: no-repeat;
    width: 6.5rem;
    height: 9.77rem;
    background-size: 100%;
    position: relative;
}

.addressMark .imgbg .edit-box {
    position: absolute;
    width: 4.9rem;
    left: .8rem;
    top: 3.7rem;
    padding-top: .45rem;
}

.mark .item {
    width:4.8rem;
    /* height: 0.4rem; */
    /*border: 1px solid #834d12;*/
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.1rem;
    margin: 0 auto 0.2rem;
    box-sizing: border-box;
    position: relative;
}

.item .address-input-icon {
    width: 0.5rem;
    height: 0.5rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: transparent;
    position: absolute;
    /* top: -2px; */
}

.item .address-input-icon > img {
    width: 0.4rem;
    height: 0.4rem;
}

.item .input1 {
    width: 100%;
    /* height: 0.45rem; */
    line-height: 0.47rem;
    font-size: 0.15rem;
    color: #e1c5a2;
    border-radius: 4px;
    outline: 0;
    outline-offset: 0;
    padding-left: .5rem;
    border: 1px solid #ffcf8d;
    background-color: #10164214;
}

/* do not group these rules */
*::-webkit-input-placeholder {
    color: #e1c5a2;
}

*:-moz-placeholder {
    /* FF 4-18 */
    color: #e1c5a2;
    opacity: 1;
}

*::-moz-placeholder {
    /* FF 19+ */
    color: #e1c5a2;
    opacity: 1;
}

*:-ms-input-placeholder {
    /* IE 10+ */
    color: #e1c5a2;
}

*::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #e1c5a2;
}

*::placeholder {
    /* modern browser */
    color: #e1c5a2;
}

.item ::-ms-input-placeholder,
.item ::-webkit-input-placeholder,
.item ::placeholder {
    opacity: 1;
    color: #e1c5a2;
}


.item-button .submitBtn {
    height: 1rem;
    padding: 0 1rem;
    box-sizing: content-box;
}

.gearArea {
    z-index: 100000;
}

