/*--- verify Product ---*/
:root {
    --gap: var(--column-width);
}
body {
    background-color: #000;
}
.verify-top {
    color: #fff;
    background-color: #000;
    position: relative;
}
.verify-top img {
    display: block;
    width: 76.66667vw;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
.verify-top-content {
    margin: 0 auto;
    padding: 4.375vw var(--column-width) 3.0208vw;
    box-sizing: content-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
    text-align: left;
    position: relative;
    z-index: 2;
    margin-top: -2px;
}
.verify-top-content a {
    text-decoration: underline;
    display: block;
    color: #fff;
}
/* .verify-page .title {
    font-size: 2.188vw;
    font-weight: 700;
    line-height: 1.2;
} */
.verify-top .pd-title {
    margin-bottom: 3.6458vw;
    line-height: 1.2;
}
.verify-top .subtitle {
    font-size: 1.25vw;
    margin-bottom: 24px;
    font-weight: 400;
}
.verify-top .subtitle:last-child {
    margin-bottom: 0;
}
.verify-container {
    /* margin: var(--gap) auto 0;
    padding: 0 var(--gap); */
    box-sizing: content-box;
    display: grid;
    grid-template-columns: repeat(9, var(--column-width));
    grid-template-rows: repeat(4, var(--column-width));
    /* grid-gap: var(--grid-border-line); */
    position: relative;
    grid-column: 2 / 11;
    grid-row: 2 / 6;
    z-index: 2;
}
.verify-container .tips {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
}
.security-code .input-box {
    position: absolute;
    bottom: -2px;
    width: calc(100% + var(--input-border-width) * 2);
    left: 50%;
    height: calc(var(--column-width) / 2);
    transform: translateX(-50%);
}
.security-code .input-box input {
    width: 100%;
    line-height: 48px;
    border: var(--input-border-width) solid var(--form-placeholder-color);
    padding-left: 20px;
    position: absolute;
    top: 0;
    height: 100%;
    font-size: 1.1458vw;
}
.clear-security {
    width: 20px;
    position: absolute;
    top: 50%;
    right: 14px;
    z-index: 3;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    cursor: pointer;
}
.error-tips {
    position: absolute;
    top: 100%;
}
.security-btns {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 2px);
    height: calc(var(--column-width) / 2);
    line-height: 48px;
    background: var(--theme-color);
    text-align: center;
    font-size: 16px;
    margin-top: 24px;
    border-radius: 0;
    font-weight: 600;
    bottom: calc(-1 * var(--border-line));
}
.security-btns a {
    color: #fff;
    display: flex;
    height: inherit;
    font-weight: 700;
    font-size: 1.5626vw;
    justify-content: center;
    align-items: center;
}
.security-btns a:hover {
    color: #000;
}


@media (max-width: 828px) {
    :root {
        --gap: 24px;
    }
    .verify-page .grid-container {
        --cell-row-number: 5;
    }
    .verify-container {
        grid-template-columns: repeat(3, var(--column-width));
        grid-column: 2 / 5;
        grid-row: 1 / 6;
    }
    .verify-container .grid-subtitle {
        grid-row: 1 / 3;
    }
    .security-btns {
        top: calc(-1 * var(--border-line));
        margin-top: 0;
    }
    .security-code .input-box {
        top: calc(-1 * var(--border-line));
        bottom: initial;
    }
    .verify-top img {
        width: 94%;
        top: initial;
        bottom: 0;
    }
    .verify-top .subtitle {
        font-size: 3.7383vw;
    }
    .verify-top-content {
        padding: 5.1402vw 7.0093vw 7.4766vw;
    }
    .security-btns a {
        font-size: 4.6729vw;
    }
    .security-code .input-box input {
        font-size: 3.864vw;
        padding-left: 3.7383vw;
    }
}

/* dialog */
.page-mask {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 9999;
}
.dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 90%;
    max-width: 480px;
    padding: 32px;
    text-align: center;
    background-color: #F7F7F7;
    border-radius: 8px;
}
.dialog i {
    font-size: 32px;
    margin-bottom: 24px;
    display: block;
}
.dialog i.green {
    color: #059922;
}
.dialog i.red {
    color: #D50000;
}
.dialog i.warning {
    color: #FFAE00;
}
.dialog .title {
    font-size: 16px;
    font-weight: 700;
}
.dialog .title.green {
    color: #059922;
}
.dialog .title.red {
    color: #D50000;
}
.dialog .title.warning {
    color: #FFAE00;
}
.dialog .description {
    font-size: 14px;
    margin: 16px auto 32px;
}
.dialog .description a {
    text-decoration: underline;
    white-space: nowrap;
}
.dialog .description p {
    margin-bottom: 7px;
}
.dialog .description p:last-child {
    margin-bottom: 0;
}
.dialog .button {
    width: 100px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    margin: 0 auto;
    background: #121212;
    color: #fff;
}
.dialog .go-store {
    display: block;
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    text-decoration-line: underline;
    margin-top: 32px;
}
@media (max-width: 767px) {
    .dialog {
        padding: 24px
    }
}


