邓淳远、崔鹏宇、翁思扬组云计算期末项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

217 lines
4.0 KiB

  1. *{
  2. margin:0;
  3. padding: 0;
  4. font-family: arial;
  5. box-sizing: border-box;
  6. background-color: transparent;
  7. }
  8. .background{
  9. position:relative ;
  10. }
  11. video{
  12. position: fixed;
  13. right: 0px;
  14. bottom: 0px;
  15. min-width: 100%;
  16. min-height: 100%;
  17. height: auto;
  18. width: auto;
  19. /*加滤镜*/
  20. filter: blur(15px);
  21. -webkit-filter: grayscale(100%);
  22. filter:grayscale(10%);
  23. z-index:-11;
  24. }
  25. source{
  26. min-width: 100%;
  27. min-height: 100%;
  28. height: auto;
  29. width: auto;
  30. }
  31. .wrapper{
  32. position: absolute;
  33. background-color: transparent;
  34. width: 100%;
  35. }
  36. .header {
  37. position: fixed;
  38. display: flex;
  39. flex-direction: row;
  40. justify-content: space-between;
  41. /*align-items: center;*/
  42. width: 100%;
  43. height: 106px;
  44. font-size: 18px;
  45. font-family: PingFang SC, Helvetica, Arial, sans-serif;
  46. font-weight: 500;
  47. }
  48. .header .RED {
  49. height: 25px;
  50. margin-left: 91px;
  51. display: flex;
  52. align-items: center;
  53. }
  54. .header .RED.logo {
  55. cursor: pointer;
  56. margin-top: 1px;
  57. width: 72px;
  58. height: 25px;
  59. position: relative;
  60. }
  61. .header .RED .logo .darklogo {
  62. position: absolute;
  63. height: 100%;
  64. margin-top: 5px;
  65. }
  66. .nav {
  67. list-style-type: none;
  68. display: flex;
  69. flex-direction: row;
  70. justify-content: flex-end;
  71. align-items: center;
  72. /*margin: 0 76px 0 0;*/
  73. padding: 0;
  74. min-width: 1014px;
  75. }
  76. .nav .list-item{
  77. margin: 35px;
  78. }
  79. .nav .list-item a{
  80. color: white;
  81. padding-bottom: 8px;
  82. }
  83. .nav .list-item a:hover{
  84. font-weight: bold;
  85. cursor:pointer;
  86. }
  87. .nav .list-item a::after{
  88. content: "";
  89. width: 0;
  90. height: 3px;
  91. background-color: #F5F5F5;
  92. color:white;
  93. position: absolute;
  94. bottom: 0;
  95. left: 50%;
  96. transition: all .25s;
  97. }
  98. .nav .list-item a:hover::after,.nav .list-item a:active:after{
  99. left: 0%;
  100. width: 100%;
  101. }
  102. .nav a,a:link{
  103. text-decoration: none;
  104. margin-bottom: 5px;
  105. position: relative;
  106. }
  107. #img1{
  108. vertical-align: middle;
  109. width: 10px;
  110. height: 20px;
  111. background: transparent;
  112. }
  113. .login {
  114. position: absolute;
  115. left: 50%;
  116. top: 50%;
  117. width: 430px;
  118. height: 380px;
  119. margin: -200px 0 0 -215px;
  120. border: 1px solid #fff;
  121. border-radius: 20px;
  122. overflow: hidden;
  123. background-color: transparent;
  124. }
  125. .logo_1{
  126. margin: 50px auto 10px;
  127. /*background: url(img/login.png) 0 0 no-repeat;*/
  128. }
  129. .form-item {
  130. position: relative;
  131. width: 360px;
  132. margin: 0 auto;
  133. padding-bottom: 30px;
  134. }
  135. .form-item input {
  136. width: 288px;
  137. height: 48px;
  138. padding-left: 60px;
  139. margin-left: 35px;
  140. border: 1px solid #fff;
  141. border-radius: 25px;
  142. font-size: 18px;
  143. color: #fff;
  144. background-color: transparent;
  145. outline: none;
  146. }
  147. .form-item button {
  148. width: 360px;
  149. height: 50px;
  150. border: 0;
  151. border-radius: 25px; font-size: 18px;
  152. color: #1f6f4a;
  153. outline: none;
  154. cursor: pointer;
  155. background-color: #fff;
  156. }
  157. .tip {
  158. display: none;
  159. position: absolute;
  160. left: 20px;
  161. top: 52px;
  162. font-size: 14px;
  163. color: #f50;
  164. }
  165. .reg-bar {
  166. width: 360px;
  167. margin: 20px auto 0;
  168. font-size: 14px;
  169. overflow: hidden;
  170. }
  171. .reg-bar a {
  172. color: #fff;
  173. text-decoration: none;
  174. }
  175. .reg-bar a:hover { text-decoration: underline; }
  176. .reg-bar .reg { float: left; }
  177. .reg-bar .forget { float: right; }
  178. video::-webkit-media-controls {
  179. display:none !important;
  180. }
  181. /*.dowebok ::-webkit-input-placeholder { font-size: 18px; line-height: 1.4; color: #fff;}*/
  182. /*.dowebok :-moz-placeholder { font-size: 18px; line-height: 1.4; color: #fff;}*/
  183. /*.dowebok ::-moz-placeholder { font-size: 18px; line-height: 1.4; color: #fff;}*/
  184. /*.dowebok :-ms-input-placeholder { font-size: 18px; line-height: 1.4; color: #fff;}*/
  185. /*@media screen and (max-width: 500px) {*/
  186. /* * { box-sizing: border-box; }*/
  187. /* .dowebok { position: static; width: auto; height: auto; margin: 0 30px; border: 0; border-radius: 0; }*/
  188. /* .logo { margin: 50px auto; }*/
  189. /* .form-item { width: auto; }*/
  190. /* .form-item input, .form-item button, .reg-bar { width: 100%; }*/
  191. /*}*/