index.less 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /* pages/app-authorization/index.wxss */
  2. .container {
  3. background-color: #fff;
  4. min-height: 100%;
  5. align-items: stretch;
  6. overflow-x: hidden;
  7. position: relative;
  8. width: 100%;
  9. padding-top: 100rpx;
  10. }
  11. .logo{
  12. width: 100%;
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. margin: 0;
  17. margin-top: 60rpx;
  18. /* margin-bottom: 20rpx; */
  19. }
  20. .logo .logo-img{
  21. width: 120rpx;
  22. height: 120rpx;
  23. }
  24. .logo-name{
  25. width: 100%;
  26. text-align: center;
  27. height: 50rpx;
  28. line-height: 50rpx;
  29. font-size: 32rpx;
  30. margin-top: 40rpx;
  31. }
  32. .intro{
  33. width: 100%;
  34. /* text-align: center; */
  35. height: 100rpx;
  36. /* line-height: 80rpx; */
  37. line-height: 40rpx;
  38. padding:20rpx 30rpx;
  39. font-size: 26rpx;
  40. color: #555;
  41. margin-bottom: 30rpx;
  42. display: -webkit-box;
  43. -webkit-box-orient: vertical;
  44. -webkit-line-clamp: 2;
  45. overflow: hidden;
  46. }
  47. .login{
  48. width: 100%;
  49. height: 80rpx;
  50. margin-top: 80rpx;
  51. font-size: 28rpx;
  52. color: #999;
  53. text-align: center;
  54. }
  55. .btn-login{
  56. display: flex;
  57. justify-content: center;
  58. height: 100rpx;
  59. width: 600rpx;
  60. background: #54b635;
  61. align-items: center;
  62. }
  63. .img-w{
  64. height: 40rpx;
  65. width: 40rpx;
  66. }
  67. .text{
  68. font-size: 30rpx;
  69. color: #fff;
  70. margin-left: 10rpx;
  71. }
  72. .cancel{
  73. width: 100%;
  74. height: 100rpx;
  75. line-height: 100rpx;
  76. text-align: center;
  77. font-size: 28rpx;
  78. color: #555;
  79. margin-top: 30rpx;
  80. }
  81. .modal-dialog {
  82. width: 100%;
  83. height: 100%;
  84. position: fixed;
  85. top: 0;
  86. left: 0;
  87. background:rgba(10, 10, 10, 0.8);
  88. overflow: hidden;
  89. z-index: 1000;
  90. color: #fff;
  91. }
  92. .modal-dialog .modal-content {
  93. height: 357rpx;
  94. width: 70%;
  95. overflow: hidden;
  96. position: fixed;
  97. top: 40%;
  98. left: 16%;
  99. z-index: 2000;
  100. background: #fff;
  101. padding-top: 66rpx;
  102. text-align: center;
  103. /* display: flex;
  104. flex-direction: column;
  105. align-items: center;
  106. justify-content: center; */
  107. }
  108. .modal-dialog .modal-content .text {
  109. color: #000000;
  110. }
  111. .modal-dialog .modal-content .getPhone {
  112. color: #000000;
  113. margin-top: 10rpx;
  114. width: 85%;
  115. background: #54b635;
  116. color: #fff;
  117. }
  118. .model{
  119. width: 100%;
  120. height: 100vh;
  121. position: fixed;
  122. background: rgb(0 0 0 / 46%);
  123. top: 0;
  124. display: flex;
  125. align-items: center;
  126. justify-content: center;
  127. .model_box{
  128. width: 600rpx;
  129. padding: 20rpx;
  130. background: white;
  131. border-radius: 14rpx;
  132. position: relative;
  133. .post_flex{
  134. position: absolute;
  135. top: 10rpx;
  136. right: 10rpx;
  137. color: #999;
  138. }
  139. .model_top{
  140. margin-top: 20rpx;
  141. .company_cover{
  142. width: 450rpx;
  143. display: flex;
  144. .title{
  145. margin-left: 10rpx;
  146. font-weight: bold;
  147. font-size: 30rpx;
  148. }
  149. }
  150. }
  151. .desc{
  152. width: 440rpx;
  153. margin: 20rpx 0;
  154. font-size: 28rpx;
  155. color: #5f5f5f;
  156. }
  157. .cell{
  158. display: flex;
  159. align-items: center;
  160. justify-content: space-between;
  161. margin-bottom: 20rpx;
  162. font-size: 30rpx;
  163. .label{
  164. font-weight: 400;
  165. }
  166. .cont{
  167. display: flex;
  168. .avatar-wrapper{
  169. width: 80rpx;
  170. height: 80rpx;
  171. padding: 0 !important;
  172. .avatar{
  173. width: 100%;
  174. height: 100%;
  175. border-radius: 50%;
  176. background: white;
  177. }
  178. .avatar_use{
  179. background-image: url('https://pwa.fmode.cn/useravatar.png');
  180. background-repeat: no-repeat;
  181. background-size: 100%;
  182. }
  183. }
  184. .weui-input{
  185. width: 220rpx;
  186. text-align: right;
  187. }
  188. }
  189. }
  190. .btn{
  191. background: #54b635;
  192. border-radius: 40rpx;
  193. width: 400rpx;
  194. padding: 16rpx 0;
  195. margin: 50rpx auto 20rpx;
  196. text-align: center;
  197. color: white;
  198. }
  199. }
  200. }