| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /** 登录页面样式 */
- body {
- background-image: url("../images/bg_login.jpg");
- background-repeat: no-repeat;
- background-size: cover;
- min-height: 100vh;
- }
- body:before {
- content: "";
- background-color: rgba(0, 0, 0, .2);
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- a {color: #3c9;}
- .login-wrapper {
- max-width: 420px;
- padding: 20px;
- margin: 0 auto;
- position: relative;
- box-sizing: border-box;
- z-index: 2;
- }
- .login-wrapper > .layui-form {
- padding: 25px 30px;
- background-color: #fff;
- box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.19);
- box-sizing: border-box;
- border-radius: 4px;
- }
- .login-wrapper > .layui-form > h2 {
- color: #333;
- font-size: 18px;
- text-align: center;
- margin-bottom: 25px;
- }
- .login-wrapper > .layui-form > .layui-form-item {
- margin-bottom: 25px;
- position: relative;
- }
- .login-wrapper > .layui-form > .layui-form-item:last-child {
- margin-bottom: 0;
- }
- .login-wrapper > .layui-form > .layui-form-item > .layui-input {
- height: 46px;
- line-height: 46px;
- border-radius: 2px !important;
- }
- .login-wrapper .layui-input-icon-group > .layui-input {
- padding-left: 46px;
- }
- .login-wrapper .layui-input-icon-group > .layui-icon {
- width: 46px;
- height: 46px;
- line-height: 46px;
- font-size: 20px;
- color: #909399;
- position: absolute;
- left: 0;
- top: 0;
- text-align: center;
- }
- .login-wrapper > .layui-form > .layui-form-item.login-captcha-group {
- padding-right: 135px;
- }
- .login-wrapper > .layui-form > .layui-form-item.login-captcha-group > .login-captcha {
- height: 46px;
- width: 120px;
- cursor: pointer;
- box-sizing: border-box;
- border: 1px solid #e6e6e6;
- border-radius: 2px !important;
- position: absolute;
- right: 0;
- top: 0;
- }
- .login-wrapper > .layui-form > .layui-form-item > .layui-form-checkbox {
- margin: 0 !important;
- padding-left: 25px;
- }
- .login-wrapper > .layui-form > .layui-form-item > .layui-form-checkbox > .layui-icon {
- width: 15px !important;
- height: 15px !important;
- }
- .login-wrapper > .layui-form .login-btn {
- background: #33cc99 !important;
- border-radius: 25px;
- }
- .login-wrapper > .layui-form .layui-btn-fluid {
- height: 48px;
- line-height: 48px;
- font-size: 16px;
- border-radius: 2px !important;
- }
- .login-wrapper > .layui-form > .layui-form-item.login-oauth-group > a > .layui-icon {
- font-size: 26px;
- }
- .login-copyright {
- color: #eee;
- padding-bottom: 20px;
- text-align: center;
- position: relative;
- z-index: 1;
- }
- @media screen and (min-height: 550px) {
- .login-wrapper {
- margin: -250px auto 0;
- position: absolute;
- top: 50%;
- left: 0;
- right: 0;
- width: 100%;
- }
- .login-copyright {
- position: absolute;
- bottom: 0;
- right: 0;
- left: 0;
- }
- }
- /** 辅助样式 */
- .layui-link {
- color: #029789 !important;
- }
- .layui-link:hover {
- opacity: .8;
- }
- .pull-right {
- float: right;
- }
- .inline-block {
- display: inline-block;
- }
- .login-header {
- color: rgba(0, 0, 0, .85) !important;
- }
- .login-footer {
- color: rgba(0, 0, 0, 0.7) !important;
- }
- .login-footer a {
- color: rgba(0, 0, 0, 0.7) !important;
- }
- .login-footer a:hover {
- color: rgba(0, 0, 0, 0.4) !important;
- }
- .theme-colorful .layui-input,
- .theme-colorful .layui-select,
- theme-colorful .layui-textarea {
- height: 38px;
- border-radius: 0;
- }
|