| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | .change-modal {    .ant-modal-close {        span {            color: #fff;        }    }    .ant-modal-header {        //background: #000;        //color: #fff;        font-size: 18px;    }    .ant-modal-body {        padding: 20px;        padding-bottom: 10px;        >div {            margin-bottom: 10px;            >span {                text-align: right;                padding-right: 6px;                display: inline-block;                width: 25%;            }            input {                width: 70%;            }            .mixwidth {                width: 38%;                margin-right: 10px;            }        }        .modal-intro {            text-align: center;            i {                font-size: 15px;                color: #79b5ff;                margin-right: 6px;            }        }        .getVcode {            height: 28px;            width: 92px;            padding-top: 28px;            position: relative;            overflow: hidden;            vertical-align: top;            img {                position: absolute;                top: 0;                left: 0;                width: 100%;                height: 28px;            }        }    }}
 |