login.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* pages/studentLogin/studentLogin.wxss */
  2. .wrapper{
  3. position:relative;
  4. z-index: 90;
  5. padding-bottom: 40rpx;
  6. }
  7. /* LOGO样式 */
  8. .left-top-sign{
  9. font-size: 120rpx;
  10. color: #f8f8f8;
  11. position:relative;
  12. left: -16rpx;
  13. }
  14. /* 欢迎字体样式 */
  15. .welcome{
  16. position:relative;
  17. left: 50rpx;
  18. top: -90rpx;
  19. font-size: 46rpx;
  20. color: #555;
  21. }
  22. .input-content{
  23. padding: 0 60rpx;
  24. }
  25. .input-item{
  26. display:flex;
  27. flex-direction: column;
  28. align-items:flex-start;
  29. justify-content: center;
  30. padding: 0 30rpx;
  31. background:#f8f6fc;
  32. height: 120rpx;
  33. border-radius: 4px;
  34. margin-bottom: 50rpx;
  35. }
  36. .input-item:last-child{
  37. margin-bottom: 0;
  38. }
  39. /* 账号、密码字体样式 */
  40. .input-item .tit{
  41. height: 50rpx;
  42. line-height: 56rpx;
  43. font-size: 30rpx;
  44. color: #606266;
  45. }
  46. /* 输入框样式 */
  47. .input-item input{
  48. height: 60rpx;
  49. font-size: 30rpx;
  50. color: #303133;
  51. width: 100%;
  52. }
  53. .confirm-btn{
  54. width: 630rpx!important;
  55. height: 76rpx;
  56. line-height: 76rpx;
  57. border-radius: 50rpx;
  58. margin-top: 70rpx;
  59. background: #d43c33;
  60. color: #fff;
  61. font-size: 32rpx;
  62. padding: 0;
  63. }
  64. .confirm-btn2:after{
  65. border-radius: 100px;
  66. }
  67. /* 忘记密码样式 */
  68. .forget-section{
  69. font-size: 28rpx;
  70. color: #4399fc;
  71. text-align: center;
  72. margin-top: 40rpx;
  73. }
  74. /* 下方文字样式 */
  75. .register-section{
  76. position:absolute;
  77. left: 0;
  78. bottom: 50rpx;
  79. width: 100%;
  80. font-size: 28rpx;
  81. color: #606266;
  82. text-align: center;
  83. }
  84. .register-section text{
  85. color: #4399fc;
  86. margin-left: 10rpx;
  87. }