| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | .input-field {    display: flex;    position: relative;    padding: 26rpx 20rpx 24rpx 30rpx;    .icon-box {        width: 40rpx;        height: 40rpx;        margin-right: 50rpx;        .iconfont {            font-size: 40rpx;            color: var(--assist);        }    }    .input {        flex: 1;        font-size: 28rpx;        font-family: PingFang SC-Regular, PingFang SC;        color: #333333;        margin-top: -5rpx;    }    .auth-code {        width: 180rpx;        height: 40rpx;        line-height: 40rpx;        text-align: center;        flex-shrink: 0;        font-size: 28rpx;        font-family: PingFang SC-Regular, PingFang SC;        color: #3874F6;        border-left: 1rpx solid #EEE;    }}.but-style {    width: 500rpx;    height: 90rpx;    background: #3874F6 !important;    border-radius: 45rpx !important;    opacity: 0.85;}
 |