index.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .sign-page{
  2. min-height: 100vh;
  3. background: #F5F7FB;
  4. .view-wrap{
  5. padding-top: 34rpx;
  6. padding-bottom: 60rpx;
  7. }
  8. .card{
  9. padding: 26rpx 30rpx 20rpx;
  10. background-color: #fff;
  11. margin: 0 35rpx;
  12. border-radius: 20rpx;
  13. box-shadow: 0 0 8rpx 0 rgba(144,144,144,.1);
  14. }
  15. .form-item{
  16. padding-bottom: 30rpx;
  17. .form-item__title{
  18. display: flex;
  19. align-items: center;
  20. height: 68rpx;
  21. .name{
  22. font-size: 30rpx;
  23. font-family: PingFang SC;
  24. font-weight: bold;
  25. color: #212121;
  26. }
  27. .extra{
  28. margin-left: auto;
  29. font-size: 24rpx;
  30. font-family: PingFang SC;
  31. font-weight: bold;
  32. color: #79A9CE;
  33. }
  34. }
  35. .form-item__input__wrap{
  36. .form-item__input{
  37. display: flex;
  38. height: 80rpx;
  39. background: #F5F7FB;
  40. border-radius: 10rpx;
  41. .input{
  42. flex: 1;
  43. height: 100%;
  44. padding-left: 10px;
  45. font-size: 28rpx;
  46. font-family: PingFang SC;
  47. font-weight: bold;
  48. color: #000;
  49. }
  50. .icon{
  51. align-self: center;
  52. margin-right: 10px;
  53. }
  54. .input-placeholder{
  55. font-size: 28rpx;
  56. font-family: PingFang SC;
  57. font-weight: bold;
  58. color: #B8BBBF;
  59. }
  60. }
  61. }
  62. }
  63. .button-wrap{
  64. padding-top: 30rpx;
  65. }
  66. .sing-btn{
  67. display: flex;
  68. align-items: center;
  69. justify-content: center;
  70. width: 300rpx;
  71. height: 80rpx;
  72. background: #79A9CE;
  73. border-radius: 10rpx;
  74. font-size: 30rpx;
  75. font-family: PingFang SC;
  76. font-weight: bold;
  77. color: #FEFEFE;
  78. &.button-hover{
  79. position: relative;
  80. top: 3px;
  81. }
  82. }
  83. .tip-btn{
  84. position: relative;
  85. top: -6rpx;
  86. text-align: right;
  87. min-width: 178rpx;
  88. padding-right: 10rpx;
  89. flex-shrink: 0;
  90. font-size: 24rpx;
  91. font-family: PingFang SC;
  92. font-weight: 500;
  93. color: $u-primary;
  94. &.disable{
  95. color: #999;
  96. }
  97. }
  98. }