123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .input-field {
- display: flex;
- position: relative;
- padding: 26rpx 20rpx 24rpx 30rpx;
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin: 0 auto;
- margin-top: 20rpx;
- box-sizing: border-box;
- overflow: hidden;
- .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;
- }
- .errmsg {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FF3B30;
- .iconfont {
- padding-left: 10rpx;
- color: #BBBBBB;
- }
- }
- }
- .but-style {
- width: 500rpx;
- height: 90rpx;
- background: #3874F6 !important;
- border-radius: 45rpx !important;
- opacity: 0.85;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF !important;
- }
|