index.less 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. page{
  2. background: #f4f4f4;
  3. }
  4. .header{
  5. display: flex;
  6. justify-content: space-between;
  7. padding: 0 30rpx;
  8. height: 80rpx;
  9. line-height: 90rpx;
  10. }
  11. .box{
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. margin-top: 177rpx;
  16. text-align: center;
  17. }
  18. .logo{
  19. width: 184rpx;
  20. margin-bottom: 100rpx;
  21. }
  22. .input{
  23. width: 603rpx;
  24. height: 90rpx;
  25. line-height: 90rpx;
  26. background-color: #ffffff;
  27. border-radius: 21rpx;
  28. padding: 0!important;
  29. }
  30. .submit{
  31. width: 603rpx;
  32. height: 90rpx;
  33. background-color: #36a0db;
  34. border-radius: 20rpx;
  35. border: solid 1px #e2e2e1;
  36. color: #fff;
  37. margin-top: 50rpx;
  38. }
  39. .mask{
  40. position: fixed;
  41. top: 0;
  42. left: 0;
  43. height: 100%;
  44. width: 100%;
  45. background: rgba(0,0,0,.45);
  46. }
  47. .tip-box{
  48. position: absolute;
  49. top: 20%;
  50. left: 50%;
  51. transform: translateX(-50%);
  52. background: #fff;
  53. }
  54. .tip-box .topbg{
  55. width: 542rpx;
  56. }
  57. .tip-box .tip-box-body{
  58. padding:55rpx 0 64rpx;
  59. color: #323232;
  60. line-height: 53rpx;
  61. letter-spacing: 2rpx;
  62. font-size:30rpx;
  63. text-align: center;
  64. }
  65. .tip-box .tip-btn{
  66. width: 190rpx;
  67. height: 60rpx;
  68. margin-top: 50rpx;
  69. background-color: #17a9ff;
  70. border-radius: 10rpx;
  71. font-size: 24rpx;
  72. color: #fff;
  73. letter-spacing: 2rpx;
  74. }
  75. .tip-box .tip-btn.back{
  76. background-color: #ff3615;
  77. }
  78. .input-view{
  79. display:flex;
  80. align-items:center;
  81. line-height:1.4;
  82. font-size:14px;
  83. overflow:hidden;
  84. width:603rpx;
  85. height:90rpx;
  86. border-radius:21rpx;
  87. margin:10px 15px;
  88. background-color:#fff;
  89. color:#495060;
  90. }