invite.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. .toploginbox{
  2. display: block;
  3. width: 100%;
  4. height: 235rpx;
  5. background-color: #556CF1;
  6. box-sizing: border-box;
  7. padding-top: 12rpx;
  8. }
  9. .toploginbox view{
  10. margin-left: 30rpx;
  11. }
  12. .loginbox{
  13. display:block;
  14. width:690rpx;
  15. background: #FFFFFF;
  16. box-shadow: 0px 3rpx 13rpx rgba(0, 0, 0, 0.16);
  17. opacity: 1;
  18. border-radius: 18rpx;
  19. overflow: hidden;
  20. margin: -98rpx auto 0;
  21. position: relative;
  22. z-index: 1;
  23. padding: 50rpx 0 30rpx;
  24. }
  25. .logininput{
  26. display:block;
  27. width: 630rpx;
  28. height: 110rpx;
  29. background: #FFFFFF;
  30. box-shadow: 0px 3rpx 13rpx rgba(0, 0, 0, 0.16);
  31. border-radius: 10rpx;
  32. margin:40rpx auto 0;
  33. text-align:left;
  34. }
  35. input{
  36. display: block;
  37. width: 100%;
  38. height: 100%;
  39. line-height: 110rpx;
  40. padding-left: 30rpx;
  41. box-sizing: border-box;
  42. }
  43. .downimg{
  44. display: block;
  45. width: 16rpx;
  46. height: 30rpx;
  47. position: absolute;
  48. top: 40rpx;
  49. right: 30rpx;
  50. transform: rotateZ(90deg);
  51. }
  52. .downorg{
  53. display: block;
  54. width: 16rpx;
  55. height: 30rpx;
  56. position: absolute;
  57. top: 40rpx;
  58. right: 30rpx;
  59. }
  60. .noticemsg{
  61. margin: 30rpx 0 0 30rpx;
  62. }
  63. .loginbtn{
  64. display: block;
  65. width: 690rpx;
  66. height: 110rpx;
  67. background: #556CF1;
  68. border-radius: 10rpx;
  69. margin:100rpx auto 0;
  70. line-height: 110rpx;
  71. }
  72. .layerbox{
  73. display: block;
  74. width:100%;
  75. height:100%;
  76. position:fixed;
  77. top:0;
  78. left:0;
  79. z-index:99;
  80. background:rgba(0,0,0,0.45);
  81. }
  82. .selectdepart{
  83. display: block;
  84. width:100%;
  85. background:#fff;
  86. position:absolute;
  87. left:0;
  88. bottom:0;
  89. z-index:100;
  90. padding-top:170rpx;
  91. /* max-height: 80%; */
  92. /* overflow: auto; */
  93. padding-bottom:40rpx;
  94. padding-bottom: calc(constant(safe-area-inset-bottom)) !important;
  95. padding-bottom: calc(env(safe-area-inset-bottom)) !important;
  96. }
  97. .dapartbox{
  98. display: block;
  99. width: 100%;
  100. max-height: 800rpx;
  101. overflow: auto;
  102. }
  103. .departitbox{
  104. display: block;
  105. width: 100%;
  106. height: 90rpx;
  107. border-bottom: 2rpx solid #e7e7e7;
  108. line-height: 88rpx;
  109. top: 0;
  110. left: 0;
  111. }
  112. .departitbox .cancle{
  113. top:0;
  114. left:00rpx;
  115. z-index:100;
  116. line-height: 88rpx;
  117. padding:0 10rpx;
  118. }
  119. .departitbox .sure{
  120. top:0;
  121. right:00rpx;
  122. z-index:100;
  123. line-height: 88rpx;
  124. padding:0 10rpx;
  125. }
  126. .userorgbox{
  127. display: block;
  128. width: 100%;
  129. height: 80rpx;
  130. overflow-x: auto;
  131. overflow-y: hidden;
  132. border-bottom: 2rpx solid #e7e7e7;
  133. line-height: 78rpx;
  134. white-space: nowrap;
  135. background-color: #fff;
  136. position: absolute;
  137. top: 90rpx;
  138. left: 0;
  139. }
  140. .userorgbox view{
  141. padding: 0 25rpx;
  142. }
  143. radio .wx-radio-input.wx-radio-input-checked {
  144. border-color: #28A1FF;
  145. background: #28A1FF;
  146. }
  147. .noworg{
  148. color: #00A2EA;
  149. position:relative;
  150. }
  151. .noworg:before{
  152. content:' ';
  153. display:block;
  154. width: 90rpx;
  155. height: 3rpx;
  156. background: #00A2EA;
  157. position:absolute;
  158. left: 50%;
  159. margin-left: -45rpx;
  160. bottom: 0;
  161. }