pass.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. @charset "utf-8";
  2. /* CSS Document */
  3. input::-webkit-input-placeholder { font-size: 13px;color: #8b97ab;}
  4. input:-moz-placeholder { font-size: 13px;color: #8b97ab;}
  5. input:-ms-input-placeholder { font-size: 13px;color: #8b97ab;}
  6. /* Login_Style */
  7. .logsbox {
  8. margin: 0 auto;
  9. padding: 30px;
  10. width: 400px;
  11. overflow: hidden;
  12. background-color: #fff;
  13. border-radius: 10px;
  14. text-align: center;
  15. color: #8388a3;
  16. font-size: 14px;
  17. box-sizing: border-box;
  18. box-shadow: 0px 0px 8px 0px #c8c8c8;
  19. }
  20. .logsbox h2 {
  21. font-size: 30px;
  22. font-weight: 500;
  23. color: #22272f;
  24. }
  25. .logsbox .form-tips {
  26. margin: 20px 0 30px 0;
  27. }
  28. .logsbox .form-tips a {
  29. display: inline-block;
  30. position: relative;
  31. color: #00a7e1;
  32. }
  33. .logsbox .form-tips a:hover {
  34. text-decoration: underline;
  35. }
  36. .logsbox .form-other {
  37. margin-top: 20px;
  38. }
  39. .logsbox .form-other a {
  40. display: inline-block;
  41. position: relative;
  42. color: #8388a3;
  43. }
  44. .logsbox .form-group {
  45. margin: 20px 0;
  46. position: relative;
  47. }
  48. .logsbox .form-group input {
  49. padding: 0 10px;
  50. width: 100%;
  51. height: 45px;
  52. border-radius: 3px;
  53. border: 1px solid #e3eaec;
  54. background: #f6f7f7;
  55. color: #22272f;
  56. font-size: 14px;
  57. box-sizing: border-box;
  58. }
  59. .logsbox .form-group .imgcode {
  60. display: flex;
  61. position: absolute;
  62. top: 0;
  63. right: 5px;
  64. bottom: 0;
  65. align-items: center;
  66. z-index: 2;
  67. }
  68. .logsbox .form-group .imgcode img {
  69. cursor: pointer;
  70. height: 35px;
  71. }
  72. .logsbox .form-group .code-num {
  73. color: #00a7e1;
  74. position: absolute;
  75. top: 25%;
  76. right: 10px;
  77. z-index: 2;
  78. cursor: pointer;
  79. }
  80. .logsbox .form-group .code-num:hover {
  81. text-decoration: underline;
  82. }
  83. .logsbox .form-agreement {
  84. margin: 20px 0;
  85. position: relative;
  86. text-align: left;
  87. }
  88. .logsbox .form-agreement label {
  89. display: flex;
  90. position: relative;
  91. }
  92. .logsbox .form-agreement input {
  93. position: absolute;
  94. left: 0;
  95. top: 0;
  96. height: 100%;
  97. z-index: 10;
  98. margin-top: 2px;
  99. }
  100. .logsbox .form-agreement span {
  101. margin-left: 20px;
  102. }
  103. .logsbox .form-agreement a{
  104. color: #8388a3;
  105. }
  106. .logsbox .form-agreement a:hover {
  107. text-decoration: underline;
  108. }
  109. .logsbox .form-button .btn-primary {
  110. display: block;
  111. width: 100%;
  112. overflow: hidden;
  113. padding: 15px 0;
  114. color: #fff;
  115. font-size: 18px;
  116. border: none;
  117. outline: none;
  118. cursor: pointer;
  119. background: linear-gradient(to right, #4286da, #01abab);
  120. border-radius: 50px;
  121. transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  122. }
  123. .logsbox .form-button .btn-primary:hover {
  124. background: linear-gradient(to right, #5094e8, #07bbbb);
  125. }
  126. .flag-container{
  127. position:absolute;top:0;bottom:0;right:8px;padding:1px;
  128. box-sizing: border-box;
  129. cursor: pointer;
  130. }
  131. .flag-container .selected-flag {
  132. background-color: rgba(0,0,0,0.05);
  133. position: relative;
  134. display: table;
  135. padding: 0 0 0 8px;
  136. width: 78px;
  137. height: 100%;
  138. z-index: 1;
  139. }
  140. .flag-container .iti-flag {
  141. position: absolute;
  142. top: 0;
  143. bottom: 0;
  144. margin: auto;
  145. width: 20px;
  146. box-shadow: 0px 0px 1px 0px #888;
  147. background-repeat: no-repeat;
  148. background-color: #DBDBDB;
  149. }
  150. .flag-container .selected-dial-code {
  151. display: table-cell;
  152. vertical-align: middle;
  153. padding-left: 10px;
  154. }
  155. .flag-container .iti-arrow{
  156. position: absolute;
  157. top: 50%;
  158. margin-top: -2px;
  159. right: 6px;
  160. width: 0;
  161. height: 0;
  162. border-left: 3px solid transparent;
  163. border-right: 3px solid transparent;
  164. border-top: 4px solid #555;
  165. }