网站
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

4 роки тому
1 рік тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
2 роки тому
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. .registerBody{
  2. background: url("../../images/loginBg.jpg");
  3. width: 100%;
  4. background-size: 100% 100%;
  5. border-top: 2px solid var(--color);
  6. }
  7. .registerView{
  8. background: #FFFFFF;
  9. text-align: center;
  10. width: 420px;
  11. margin: 0 auto;
  12. padding: 55px 50px;
  13. margin-top: 100px;
  14. }
  15. .registerTit{
  16. font-size: 24px;
  17. text-align: center!important;
  18. }
  19. .registerView p{
  20. text-align: left;
  21. }
  22. .registerView img{
  23. width: 70px;
  24. }
  25. .explainView{
  26. background: #FFFFFF;
  27. text-align: center;
  28. width: 700px;
  29. margin: 0 auto;
  30. padding: 35px 40px;
  31. margin-top: 20px;
  32. }
  33. .explainView p{
  34. text-align: left;
  35. }
  36. .explainView .btn2{
  37. background: var(--color);
  38. padding: 5px 15px;
  39. color: #ffffff;
  40. border: none;
  41. border-radius: 20px;
  42. margin-top: 20px;
  43. width: 100px;
  44. }
  45. .explainView .btn1{
  46. background: #ffffff;
  47. padding: 5px 15px;
  48. color: #5e5e5e;
  49. border: 1px solid #d2d2d2;
  50. border-radius: 20px;
  51. margin-top: 20px;
  52. width: 100px;
  53. margin-right: 10px;
  54. }
  55. .topBtn .active{
  56. background: var(--color)!important;
  57. color: #ffffff!important;
  58. }
  59. .topBtn input[type='button']{
  60. background: #eff1f1;
  61. padding: 10px 35px;
  62. color: #a8a8a8;
  63. border: none;
  64. margin-bottom: 10px;
  65. display: block;
  66. float: left;
  67. }
  68. .userTable tr td:first-child{
  69. text-align: right;
  70. width: 12%;
  71. }
  72. .userTable select{
  73. height: 36px;
  74. border: 1px solid #e3e3e3;
  75. width: 100%;
  76. }
  77. .userTable tr td input[type="text"],.userTable tr td input[type="button"],.userTable tr td input[type="password"]{
  78. height: 36px;
  79. border: 1px solid #e3e3e3;
  80. width: 100%;
  81. padding-left: 10px;
  82. display: block;
  83. }
  84. .userTable tr td span{
  85. color: red;
  86. }
  87. .userTable tr td:nth-child(2){
  88. width: 30%;
  89. text-align: left;
  90. }
  91. .userTable tr td img{
  92. height: 36px;
  93. }
  94. .userTable tr td{
  95. padding-bottom: 20px;
  96. }
  97. .userTable{
  98. margin: 0 auto;
  99. width: 65%;
  100. }
  101. .userTable tr td:nth-child(3){
  102. text-align: left;
  103. width: 30%;
  104. padding-left: 10px;
  105. }
  106. .userTable tr td input[type="checkbox"]{
  107. margin: 0;
  108. }
  109. .userTable tr:last-child input[type="button"]{
  110. background: var(--color)!important;
  111. color: #ffffff!important;
  112. border: none;
  113. }
  114. .logoSearch{
  115. height: calc(100vh - 865px);
  116. }
  117. .logoSearch .logoSearch-div{
  118. top: 2vh;
  119. }
  120. #userLogin{
  121. padding: 0;
  122. }
  123. .loading_main{
  124. width: 100vw;
  125. height: 100vh;
  126. background:rgba(0,0,0,.8);
  127. position: absolute;
  128. top: 0;
  129. left: 0;
  130. display: none;
  131. align-items: center;
  132. justify-content: center;
  133. flex-direction: column;
  134. }
  135. .loading_main img{
  136. display: block;
  137. }
  138. .loading_main p{
  139. display: block;
  140. color: #ffffff;
  141. }
  142. .xuanzhuan {
  143. -webkit-transition-property: -webkit-transform;
  144. -webkit-transition-duration: 1s;
  145. -moz-transition-property: -moz-transform;
  146. -moz-transition-duration: 1s;
  147. -webkit-animation: rotate 2s linear infinite;
  148. -moz-animation: rotate 2s linear infinite;
  149. -o-animation: rotate 2s linear infinite;
  150. animation: rotate 2s linear infinite;
  151. }
  152. @-webkit-keyframes rotate {
  153. from {
  154. -webkit-transform: rotate(0deg)
  155. }
  156. to {
  157. -webkit-transform: rotate(360deg)
  158. }
  159. }
  160. @-moz-keyframes rotate {
  161. from {
  162. -moz-transform: rotate(0deg)
  163. }
  164. to {
  165. -moz-transform: rotate(359deg)
  166. }
  167. }
  168. @-o-keyframes rotate {
  169. from {
  170. -o-transform: rotate(0deg)
  171. }
  172. to {
  173. -o-transform: rotate(359deg)
  174. }
  175. }
  176. @keyframes rotate {
  177. from {
  178. transform: rotate(0deg)
  179. }
  180. to {
  181. transform: rotate(359deg)
  182. }
  183. }