<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**!
 * 安全验证弹框
 * date:2019-10-11
 * author: [xulb];
 */
::-webkit-input-placeholder {
    color: #d6d6d6;
}

:-moz-placeholder {
    color: #d6d6d6;
}

::-moz-placeholder {
    color: #d6d6d6;
}

:-ms-input-placeholder {
    color: #d6d6d6;
}

.placeholder {
    color: #d6d6d6;
}

.box {
    width: 358px;
    height: 305px;
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
}

/*头部 */
.top {
    margin-top: 14px;
    padding: 0 15px 0 13px;
}

.title {
    font-size: 16px;
}

.close {
    width: 15px;
    height: 15px;
    background: url("../images/close-icon.png") center center no-repeat;
}

.close:hover {
    background: url("../images/close-icon-hover.png") center center no-repeat;
}

/* 提示 */
.remind-line,
.wrong-remind {
    margin: 28px 0 0 37px;
    padding-left: 20px;
    height: 16px;
    line-height: 16px;
    font-size: 12px;
}

.remind-line {
    background: url("../images/remind-blue.png") left center no-repeat;
    color: #adadad;
}

.wrong-remind {
    background: url("../images/remind-organ.png") left center no-repeat;
    color: #ea644a;
}

/* 内容区域 */
.option-area {
    margin: 36px 38px 0 38px;
}

.send-text {
    display: block;
    font-size: 12px;
    padding-left: 4px;
    color: #5c5c5c;
    height: 14px;
    line-height: 14px;
    margin-bottom: 10px;
}

.securityverificationcode {
    border: 1px solid #d6d6d6;
    height: 32px;
    border-radius: 4px;
}

.securityverificationcode&gt;input {
    width: 205px;
    height: 30px;
    padding-left: 8px;
    line-height: 30px;
    outline: none;
    background: none;
    border: none;
    float: left;
}

.send-area {
    margin-right: 6px;
    height: 30px;
    padding: 5px 0;
    text-align: right;
}

.send-area&gt;* {
    color: #2590eb;
    font-size: 12px;
    display: inline-block;
}

.send-code:hover {
    color: #3147ef;
}

.phone-change {
    display: inline-block;
    margin: 10px 0 0 2px;
    font-size: 12px;
    color: #5c5c5c;
}

.phone-change:hover {
    color: #2590eb;
    /* text-decoration: underline; */
}

/* 确定 */
.submit2 {
    margin: 42px auto 0 auto;
    display: block;
    border: none;
    text-align: center;
    line-height: 32px;
    height: 32px;
    width: 282px;
    color: #fff;
    background: #3d9df2;
    border-radius: 5px;
}

.submit2.unable,
.submit2.unable:hover {
    background: #d6d6d6;
    cursor: not-allowed;
}

.submit2:hover {
    background: #1d86e3;
}</pre></body></html>