cyanLogin.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. body {
  2. font-size: 0.9rem;
  3. overflow: hidden;
  4. background: #e4e7ea;
  5. }
  6. a{
  7. color: rgba(13, 157, 173, 1);
  8. }
  9. .login-new-body{
  10. width: 100%;
  11. height: 100%;
  12. /*background-position:25% 95%;
  13. background-size: 40% auto;
  14. display: inline-block;
  15. opacity: .8*/
  16. /*animation: change 60s steps(1) infinite;*/
  17. }
  18. .login-new-body.img-1{
  19. width: 100%;
  20. height: 100%;
  21. background: url(bg/cyanBg/bg.png) no-repeat;
  22. /*background:#192948 url(https://jiliang-qa.oss-cn-shenzhen.aliyuncs.com/loginimg/bg_01.jpg) no-repeat;*/
  23. background-size: 100% 100%;
  24. background-size:cover;
  25. /*background-size: contain;*/
  26. }
  27. /*@keyframes change {
  28. 0% {
  29. background-image: url(bg/bg_06.png);
  30. }
  31. 16% {
  32. background-image: url(bg/bg_01.png);
  33. }
  34. 32% {
  35. background-image: url(bg/bg_02.png)
  36. }
  37. 48% {
  38. background-image: url(bg/bg_03.png)
  39. }
  40. 64% {
  41. background-image: url(bg/bg_04.png)
  42. }
  43. 80% {
  44. background-image: url(bg/bg_05.png)
  45. }
  46. }*/
  47. /*.login-new-b{
  48. border-right: 2px solid rgba(255, 255, 255, 0.6);
  49. }*/
  50. .logo-big-title{
  51. font-size: 14px;
  52. }
  53. .logo-sm-title{
  54. font-size: 12px;
  55. color: rgba(255, 255, 255, 0.8);
  56. }
  57. /*.sloganImgBox{
  58. width: 315px;
  59. height: 105px;
  60. background: url(bg/cyanBg/iamge_mobile_slogan.png) no-repeat;
  61. }*/
  62. .side-border{
  63. width: 2px;
  64. height: 24px;
  65. background: rgba(255, 255, 255, 0.6);
  66. }
  67. .sloganWid{
  68. margin: 0 35px;
  69. }
  70. .sloganLeftText{
  71. font-size: 16px;
  72. color: #fff;
  73. font-weight: 600;
  74. }
  75. .top-subtitle{
  76. font-size: 12px;
  77. font-weight: 500;
  78. color: rgb(255, 255, 255);
  79. }
  80. .right-login{
  81. margin: 0 35px;
  82. border-radius: 8px;
  83. background: rgba(255, 255, 255, 1);
  84. }
  85. .right-login .position-absolute{
  86. right: 12px;
  87. top: 12px;
  88. }
  89. .login-border{
  90. width: 48px;
  91. height: 4px;
  92. background: rgba(255, 255, 255, 1);
  93. }
  94. .erweima img{
  95. width: 240px;
  96. height: 240px;
  97. padding: 12px;
  98. background: #fff;
  99. border: 1px solid rgba(0, 0, 0, 0.12);
  100. border-radius: 4px;
  101. }
  102. .right-login .bottom-text{
  103. padding-top: 5px;
  104. font-size: 14px;
  105. line-height: 18px;
  106. color: rgba(0, 0, 0, 0.6);
  107. }
  108. .btnCyan{
  109. background: rgba(16, 196, 216, 1);
  110. border-color: rgba(16, 196, 216, 1);
  111. color: #fff;
  112. }
  113. .btnCyan:hover{
  114. color: #fff;
  115. background-color: #0aa7b8;
  116. border-color: #0aa7b8;
  117. }
  118. .has-danger {
  119. -webkit-animation: shake 1s .2s ease both;
  120. -moz-animation: shake 1s .2s ease both;
  121. animation: shake 1s .2s ease both;
  122. }
  123. @-webkit-keyframes shake {
  124. 0%, 100% {
  125. -webkit-transform: translateX(0);
  126. }
  127. 10%, 30%, 50%, 70%, 90% {
  128. -webkit-transform: translateX(-10px);
  129. }
  130. 20%, 40%, 60%, 80% {
  131. -webkit-transform: translateX(10px);
  132. }
  133. }
  134. @-moz-keyframes shake {
  135. 0%, 100% {
  136. -moz-transform: translateX(0);
  137. }
  138. 10%, 30%, 50%, 70%, 90% {
  139. -moz-transform: translateX(-10px);
  140. }
  141. 20%, 40%, 60%, 80% {
  142. -moz-transform: translateX(10px);
  143. }
  144. }
  145. @keyframes shake {
  146. 0%, 100% {
  147. transform: translateX(0);
  148. }
  149. 10%, 30%, 50%, 70%, 90% {
  150. transform: translateX(-10px);
  151. }
  152. 20%, 40%, 60%, 80% {
  153. transform: translateX(10px);
  154. }
  155. }