/*--- verify Product ---*/
:root {
    --gap: 60px;
    --max-height: calc(100vh - 60px);
}
.security-code ::placeholder {
    font-size: 3.75vw;
    color: var(--placeholer-color);
    font-family: var(--font-family-light);
}
.verify-page {
    margin-bottom: 0px;
}
.verify-top {
    max-height: var(--max-height);
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}
.floor-common-img{
   width: 100%;
   height: auto;
   min-height: 500px;
}
.floor-common-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.verify-top-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--gap);
    box-sizing: content-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
}
.verify-top-content a {
    text-decoration: underline;
    display: block;
    color: #fff;
}
.verify-page .title {
    font-size: 3.6458vw;
    line-height: 1;
    margin-bottom: 1vw;
}
.verify-top .subtitle {
    font-size: 1.875vw;
    margin-bottom: 1.416vw;
    max-width: 62.5vw;
    line-height: 1;
}
.verify-top .subtitle:last-child {
    margin-bottom: 0;
}
.verify-container-box{
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: calc(86px + var(--border-radius));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.verify-container {
    margin: 0 auto;
    padding: 0 var(--gap);
    padding-top: 6.25vw;
    box-sizing: content-box;
}
.verify-container .tips {
    font-size: 3.75vw;
    text-align: center;
    line-height: 1;
    max-width: 51.0416vw;
    margin: 0 auto;
}
.security-code {
    max-width: 51.0416vw;
    margin: 3.125vw auto 0;
}
.security-code .input-box {
    position: relative;
}
::placeholder {
    font-family: var(--font-family-light)!important;
    text-align: center;
}
.security-code .input-box input {
    width: 100%;
    line-height: 5.2083vw;
    border: var(--border-width) solid #000;
    padding-left: 20px;
    padding-right: 40px;
    font-size: 3.75vw;
    font-family: var(--font-family-light)!important;
    background-color: transparent;
    text-align: center;
}
.clear-security {
    width: 28px;
    position: absolute;
    top: 50%;
    right: 14px;
    z-index: 3;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    cursor: pointer;
}
.security-btns {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 24px;
    overflow: hidden;
}
.security-btns a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.verify-guidance {
    max-width: 1060px;
    padding: 0 var(--gap);
    box-sizing: content-box;
    margin: 120px auto 0;
    text-align: center;
}
.verify-guidance .video-box {
    margin-top: 34px;
    position: relative;
}
.verify-guidance img{
    width: 100%;
    height: auto;
}
.verify-guidance video {
    width: 100%;
}
.verify-guidance .video-box:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(123,133,162,0.04);
}
.verify-tutorials {
    margin: 7.29vw auto 0;
    /* padding: 0 var(--gap); */
    box-sizing: content-box;
    max-width: 51.0416vw;
}
.verify-tutorials .video-box {
    position: relative;
    margin: 0 auto;
}
.verify-tutorials .title {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 5.4167vw;
    line-height: 1;
}
.verify-tutorials .tips {
    font-size: 18px;
    font-weight: var(--common-font-weight);
    text-align: center;
}
.verify-tutorials .content {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 60px;
    gap: var(--block-gap);
}
.verify-tutorials .row {
    width: 33.333333%;
}
.verify-tutorials img {
    width: 100%;
}
.verify-tutorials .content p {
    font-size: 2.1875vw;
    margin-top: 24px;
    text-align: left;
    font-family: var(--font-family-description)!important;
    font-weight: 600;
}

.video-box video {
    width: 100%;
    border: var(--border-width) solid #000;
}
.verify-container-box {
    padding-bottom: 18.66vw;
}
@media (min-width: 1921px) {
    .verify-guidance {
        max-width: 55.2vw;
    }
}

@media (max-width: 828px) {
    :root {
        --gap: 24px;
        --common-bg: #F5F5F7;
        --common-font-weight: 500;
        --input-border-radius: 6px
    }
    .security-code ::placeholder {
        font-size: 8.4112vw;
    }
    .verify-container {
        padding: 24px 0 0;
    }
    .verify-page {
        margin-bottom: 0px !important;
    }
    .verify-page .title {
        font-size: 11.215vw;
        margin-bottom: 4.66vw;
    }
    .verify-guidance .title,
    .verify-tutorials .title {
        font-size: 15.125vw;
    }
    .verify-tutorials .title {
        max-width: 100%;
    }
    .verify-top {
        height: auto;
    }
    
    .security-code .input-box input {
        line-height: 11.6822vw;
        font-size: 8.4112vw
    }
    .security-btns{
        margin-top: 17px;
        font-size: 14px;
    }
    .verify-top .subtitle {
        font-size: 5.6075vw;
        max-width: 100%;
        margin-bottom: 5vw;
    }
    .verify-container .tips{
        font-size: 11.215vw;
        max-width: 100%;
    }
    .verify-tutorials .content p {
        font-size: 8.4112vw;
        line-height: 1.16;
        margin-top: 16px;
    }
    .security-code {
        margin-top: 11.215vw;
        max-width: 100%;
    }
    .verify-tutorials {
        margin-top: 18.66vw;
    }
    .verify-guidance{
        margin-top: 9.33vw;
    }
    .verify-guidance .video-box{
        margin-top: 0;
    }
    .verify-tutorials .tips {
        font-size: 14px;
    }
    .verify-tutorials .content {
        margin-top: 24px;
        flex-direction: column;
    }
    .verify-tutorials .row {
        width: 100%;
        font-size: 12px;
        margin-bottom: 5.6075vw;
    }
    .verify-tutorials .title{
        margin-bottom: 15px;
    }
    .verify-tutorials .row:first-child {
        margin-bottom: 25px;
    }
    .verify-tutorials {
        max-width: 100%;
    }
}

/* 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: 41.66667vw;
    padding: 3.125vw;
    text-align: center;
    background-color: var(--theme-bg-color);
}
.dialog i {
    font-size: 5.208333vw;
    margin-bottom: 2.08333vw;
    display: block;
}
.dialog i.green {
    color: #059922;
}
.dialog i.red {
    color: #D50000;
}
.dialog i.warning {
    color: #FFAE00;
}
.dialog .title {
    font-size: 2.916667vw;
}
/* .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;
    font-weight: 500;
}
.dialog .description p {
    margin-bottom: 7px;
    font-weight: 500;
}
.dialog .description p:last-child {
    margin-bottom: 0;
}
.dialog .description p {
    font-size: 1.875vw;
}
.dialog button {
    width: 18.75vw;
    height: 4.166667vw;
    font-size: 2.5vw;
    text-align: center;
    margin: 0 auto;
}
@media (max-width: 848px) {
    .dialog {
        padding: 30px;
        width: calc(100% - 28px);
        max-width: 100%;
    }
    .dialog i {
        font-size: 11.6822vw;
        margin-bottom: 4vw;
    }
    .dialog .title {
        font-size: 6.5421vw;
    }
    .dialog .description p {
        font-size: 4.2056vw;
    }
    .dialog button {
        width: 100%;
        height: 11.6822vw;
        font-size: 7.4766vw;
    }
}