帮你贷的小程序

login.wxss 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. page{
  2. width: 100%;
  3. height: 100%;
  4. }
  5. .login-wrapper{
  6. width: 100%;
  7. height: 100%;
  8. background: #f5f5f5;
  9. }
  10. .login-wrapper .bg-wrapper{
  11. width: 100%;
  12. height: calc(100% - 288rpx);
  13. background: -webkit-linear-gradient(#FFCF09 , #FFC323);
  14. background: linear-gradient(#FFCF09 , #FFC323);
  15. overflow: hidden;
  16. }
  17. .login-wrapper .bg-wrapper .title{
  18. font-size: 28px;
  19. text-align: center;
  20. color: #fff;
  21. margin: 100rpx auto 80rpx;
  22. }
  23. .login-wrapper .bg-wrapper .content{
  24. width: 696rpx;
  25. height: 348rpx;
  26. margin: 0 auto;
  27. background: url('https://chaoshi.henhaojie.com/icon/bg2.png') no-repeat 0 0;
  28. -webkit-background-size: 100% 100%;
  29. background-size: 100% 100%;
  30. }
  31. .flow-wrapper{
  32. display: flex;
  33. justify-content: center;
  34. align-items: center;
  35. margin-top: 126rpx;
  36. }
  37. .flow{
  38. flex: 1;
  39. text-align: center;
  40. font-size: 10px;
  41. color: #fff;
  42. }
  43. .flow .icon.icon-login{
  44. width: 28rpx;
  45. height: 28rpx;
  46. background: url('https://chaoshi.henhaojie.com/icon/icon-2.png') no-repeat;
  47. -webkit-background-size: 100% 100%;
  48. background-size: 100% 100%;
  49. margin: -2px 4px 0 0;
  50. }
  51. .btn-wrapper .login-btn{
  52. width: 560rpx;
  53. height: 88rpx;
  54. border-radius: 50rpx;
  55. background: -webkit-linear-gradient(left, #FFCF09 , #FFC323);
  56. background: linear-gradient(left, #FFCF09 , #FFC323);
  57. margin-top: 88rpx;
  58. color: #fff;
  59. }
  60. .btn-wrapper .login-btn:after{
  61. border: none;
  62. }