style.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. .main-nav{
  2. height: 70px;
  3. background-color: rgba(255, 255, 255, 0.1);
  4. display: flex;
  5. align-items: center;
  6. padding: 0 30px
  7. }
  8. .main-nav .return{
  9. }
  10. .main-nav .return a i{
  11. margin-right: 5px;
  12. font-size: 14px;
  13. vertical-align: middle;
  14. }
  15. .main-nav .return a{
  16. color: #fff;
  17. font-size: 16px;
  18. }
  19. .blur{
  20. filter: blur(15px);
  21. position: fixed;
  22. top: 0;
  23. }
  24. .main-login{
  25. position: absolute;
  26. top: 0;
  27. bottom: 0;
  28. left: 0;
  29. right: 0;
  30. z-index: 1;
  31. background:url("../img/login-bg.png") no-repeat center center !important;
  32. background-size: 100% 100%;
  33. }
  34. .login-box{
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. height: calc(100% - 70px)
  39. }
  40. .login-layout{
  41. width:622px;
  42. margin-top: -120px;
  43. padding:20px 0 12px 25px;
  44. background:rgba(255,255,255,0.2);
  45. border-radius:10px;
  46. }
  47. .logo{
  48. float:left;
  49. width: 260px;
  50. height: 255px;
  51. background: url("../img/login-logo-bg.png") no-repeat center center;
  52. background-size: 90% 90%;
  53. text-align: center;
  54. margin-right: 30px;
  55. }
  56. .logo h2,.logo h3{
  57. font-family: PingFangSC-Medium, PingFang SC;
  58. font-weight: 500;
  59. color: #ffffff;
  60. text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.74);
  61. }
  62. .logo .title{
  63. margin: 84px 0 5px 0;
  64. font-size: 28px;
  65. }
  66. .logo .sub-title{
  67. font-size: 18px;
  68. letter-spacing: 3px;
  69. }
  70. .login-form{
  71. overflow:hidden;
  72. width: 287px;
  73. padding:0 36px 20px 22px
  74. text-align:center;
  75. }
  76. .login-form h4{
  77. font-size: 18px;
  78. margin:16px 0 18px 0;
  79. letter-spacing: 2px;
  80. color: #fff;
  81. text-align:left;
  82. text-shadow: 1px 1px 7px rgba(0,0,0,.6);
  83. }
  84. .layui-form-item{
  85. height: 38px;
  86. background-color: #fff;
  87. border: 1px solid #f8f8f8;
  88. border-radius: 5px;
  89. display: flex;
  90. align-items: center;
  91. margin-bottom:18px;
  92. box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
  93. }
  94. .layui-form-item .layui-icon{
  95. font-size: 20px;
  96. padding: 0 10px;
  97. color: #409EFF;
  98. }
  99. .layui-form-item .layui-input{
  100. border: none;
  101. font-size: 16px;
  102. height:38px;
  103. line-height: 45px;
  104. padding-left:5px;
  105. }
  106. .layui-submit{
  107. margin-top:10px;
  108. width:100%;
  109. color: #FFF;
  110. background: #409EFF;
  111. display: inline-block;
  112. line-height: 1;
  113. white-space: nowrap;
  114. cursor: pointer;
  115. border: 1px solid #409EFF;
  116. color: #fff;
  117. -webkit-appearance: none;
  118. text-align: center;
  119. -webkit-box-sizing: border-box;
  120. box-sizing: border-box;
  121. outline: 0;
  122. margin: 0;
  123. -webkit-transition: .1s;
  124. transition: .1s;
  125. font-weight: 500;
  126. -moz-user-select: none;
  127. -webkit-user-select: none;
  128. -ms-user-select: none;
  129. padding: 12px 20px;
  130. font-size: 14px;
  131. border-radius: 4px;
  132. letter-spacing:9px;
  133. }
  134. .layui-submit:hover{
  135. color: #333;
  136. }