@font-face {
    font-family: dinBold;
    src: url(../font/D-DIN-Bold.otf);
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

a {
    text-decoration-line: none;
    color: #000;
}

.fl-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fl-row-center {
    display: flex;
    align-items: center;
}

.fl-col-center {
    display: flex;
    justify-content: center;
}

.fl-main-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.magrin-left-10 {
    margin-left: 10px;
}

.magrin-left-20 {
    margin-left: 20px;
}

.m-t-44 {
    margin-top: 44px;
}

.max-width-1200 {
    width: 1200px;
}

/* M站 定位内容最大和最小宽度 */
.m-main {
    max-width: 640px;
    min-width: 320px;
    margin: 0 auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


input,
button {
    width: 100%;
    height: inherit;
    background: none;
    border: none;
    box-sizing: border-box;
    flex-grow: 1;
    font-size: 12px;
    color: #100D24;
    outline: none;
    padding: 0 24px;


}

input::placeholder {
    font-size: 12px;
    color: #A4A5A8;

}

.form-content-input {
    width: 100%;
    height: 433px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFE8E8 100%);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}



.form-title {
    font-weight: 600;
    font-size: 20px;
    color: #100D24;
    margin-top: 32px;
}

.form-desc {
    font-size: 12px;
    color: #898989;
    margin: 12px 0;
}

.input-item {
    width: 300px;
    height: 45px;
    margin-top: 12px;
    background: #FFFFFF;
    border-radius: 51px;
}

.submit-btn {
    width: 204px;
    height: 48px;
    margin-top: 24px;
    background: linear-gradient(355deg, #FF392B 0%, #FF6A00 100%);
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}
.reset-a-style{
    color: #A4A4A4;

}

/* --------------------------- toast*/
.form--img {
    width: 442px;
    height: 453px;
    position: absolute;
    top: -60px;
    right: 0;
}

.toast-wrap,.toast-tip-wrap {
    width: 129px;
    height: 42px;
    font-weight: 600;
    font-size: 14px;
    color: #67C23A;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 50%;
    top: 44px;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: all 0.16s ease-in;
    opacity: 0;
    z-index: 999999;

}
.toast-tip-wrap {
    background: #100D24;
    color: #FFFFFF;

}

.toast-wrap-ani {
    opacity: 1;
    top: 76px;

}

.toast-wrap img {
    width: 14px;
    height: 14px;
    margin-right: 6px;
}


/* --------------------------- */
.mask-wrap {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    box-sizing: border-box;
    z-index: 99999;
    animation: mask-wrap-animation .2s;
}

@keyframes mask-wrap-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.mask-content {
    width: 264px;
    height: 270px;
    padding: 24px 0;
    margin: 25% auto 0;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    animation: mask-content-animate .3s;
}

@keyframes mask-content-animate {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.mask-title {
    font-weight: 500;
    font-size: 20px;
    color: #100D24;
}

.mask-close-img {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 13px;
    right: 13px;
}

.mask-content-img {
    width: 138px;
    height: 138px;
    margin: 16px 0 20px;
}

.mask-content-copy {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.mask-content-copy>span:last-child{
    color: #4E8FFF;
    margin-left: 12px;
}