| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | .input-field {	width: 690rpx;	background-color: #fff;	box-sizing: border-box;	border-radius: 16rpx;	display: flex;	position: relative;	padding: 26rpx 20rpx 24rpx 30rpx;	margin: 20rpx auto;	.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;}
 |