index.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .input-field {
  2. width: 690rpx;
  3. background-color: #fff;
  4. box-sizing: border-box;
  5. border-radius: 16rpx;
  6. display: flex;
  7. position: relative;
  8. padding: 26rpx 20rpx 24rpx 30rpx;
  9. margin: 20rpx auto;
  10. .icon-box {
  11. width: 40rpx;
  12. height: 40rpx;
  13. margin-right: 50rpx;
  14. .iconfont {
  15. font-size: 40rpx;
  16. color: var(--assist);
  17. }
  18. }
  19. .input {
  20. flex: 1;
  21. font-size: 28rpx;
  22. font-family: PingFang SC-Regular, PingFang SC;
  23. color: #333333;
  24. margin-top: -5rpx;
  25. }
  26. .auth-code {
  27. width: 180rpx;
  28. height: 40rpx;
  29. line-height: 40rpx;
  30. text-align: center;
  31. flex-shrink: 0;
  32. font-size: 28rpx;
  33. font-family: PingFang SC-Regular, PingFang SC;
  34. color: #3874F6;
  35. border-left: 1rpx solid #EEE;
  36. }
  37. .errmsg {
  38. font-size: 24rpx;
  39. font-family: PingFang SC-Regular, PingFang SC;
  40. color: #FF3B30;
  41. .iconfont {
  42. padding-left: 10rpx;
  43. color: #BBBBBB;
  44. }
  45. }
  46. }
  47. .but-style {
  48. width: 500rpx;
  49. height: 90rpx;
  50. background: #3874F6 !important;
  51. border-radius: 45rpx !important;
  52. opacity: 0.85;
  53. font-size: 28rpx;
  54. font-family: PingFang SC-Bold, PingFang SC;
  55. font-weight: bold;
  56. color: #FFFFFF !important;
  57. }