newIndex.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .new-index {
  2. height: calc(100vh - 50px);
  3. background-color: #fff;
  4. position: relative;
  5. }
  6. .noLogin {
  7. display: flex;
  8. flex-direction: column;
  9. justify-content: flex-start;
  10. align-items: center;
  11. background: #fff;
  12. position: relative;
  13. height: 100%;
  14. }
  15. .logo {
  16. margin-top: 200rpx;
  17. }
  18. .unLogin {
  19. display: flex;
  20. flex-direction: column;
  21. align-items: center;
  22. justify-content: center;
  23. margin-top: 100rpx;
  24. font-size: 32rpx;
  25. }
  26. .unLogin .student {
  27. margin-bottom: 50rpx;
  28. }
  29. .authorize {
  30. position: fixed;
  31. top: 1px;
  32. width: 100%;
  33. display: flex;
  34. /* padding: 10rpx; */
  35. height: 90rpx;
  36. justify-content: center;
  37. align-items: center;
  38. background-color: #fff;
  39. box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
  40. }
  41. .authorize text {
  42. font-size: 32rpx;
  43. margin-left: 20rpx;
  44. margin-right: 20rpx;
  45. padding: 20rpx 0;
  46. }
  47. .authorize .van-button {
  48. /* padding: 0 0; */
  49. height: 50rpx;
  50. }
  51. /* .authorize .van-icon {
  52. } */
  53. .StudentAttr {
  54. display: flex;
  55. justify-content: flex-start;
  56. align-items: center;
  57. padding: 0 10rpx;
  58. margin-top: 40rpx;
  59. }
  60. .StudentAttr .item {
  61. display: flex;
  62. flex-direction: column;
  63. justify-content: center;
  64. align-items: center;
  65. width: 226rpx;
  66. height: 220rpx;
  67. }
  68. .StudentAttr .item text {
  69. margin-top: 20rpx;
  70. }
  71. swiper-item {
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. background-color: #f8f8f8;
  76. }
  77. .StudentAttr van-icon {
  78. background-color: #f8f8f8;
  79. padding: 20rpx;
  80. border-radius: 999rpx;
  81. }
  82. .login-form {
  83. display: flex;
  84. align-items: center;
  85. justify-content: center;
  86. height: 100%;
  87. }
  88. .login-form .form-body {
  89. z-index: 999;
  90. position: relative;
  91. width: 70%;
  92. /* min-height: 300px; */
  93. border-radius: 10px;
  94. background-color: #fff;
  95. }
  96. .form-body {
  97. display: flex;
  98. justify-content: flex-start;
  99. flex-direction: column;
  100. align-items: center;
  101. padding: 20px;
  102. }
  103. .form-body .header {
  104. font-size: 16px;
  105. font-weight: 600;
  106. text-align: center;
  107. }
  108. .form-body .header text:nth-child(2) {
  109. margin-left: 40px;
  110. }
  111. .form-body van-icon {
  112. position: absolute;
  113. top: 12px;
  114. right: 15px;
  115. }
  116. .form-body .form {
  117. margin-top: 20px;
  118. width: 100%;
  119. height: 100%;
  120. }
  121. .form-body .form .van-button {
  122. margin-top: 25px;
  123. border-radius: 5px;
  124. width: 80%;
  125. }
  126. .form-body .text {
  127. font-size: 12px;
  128. margin-top: 15px;
  129. color: #1989fa;
  130. }