123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- @import "./theme.scss";
- .sld_login {
- .sld_login_header {
- background: #fff;
- box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
- .content {
- display: flex;
- align-items: center;
- width: 1200px;
- margin: auto;
- .l_logo {
- cursor: pointer;
- width: 50%;
- .img {
- display: inline-block;
- vertical-align: top;
- max-width: 160px;
- }
- .text {
- font-size: 0;
- display: inline-block;
- vertical-align: top;
- line-height: 48px;
- margin-left: 5px;
- }
- }
- .r_register_wrap {
- font-size: 14px;
- width: 50%;
- text-align: right;
- .go_login_btn, .go_register_btn {
- font-size: 13px;
- display: inline-block;
- padding: 6px 22px;
- background: $colorMain;
- color: #fff;
- border-radius: 30px;
- margin-left: 7px;
- //font-family: Microsoft YaHei;
- height: 30px;
- line-height: 17px;
- }
- }
- }
- }
- .sld_login_content {
- width: 100%;
- height: 600px;
- position: relative;
- .bg {
- position: absolute;
- margin: auto;
- width: 1920px;
- height: 100%;
- margin-left: -960px;
- left: 50%;
- overflow: hidden;
- display: block;
- }
- .login {
- width: 1200px;
- height: 100%;
- margin: auto;
- z-index: 99;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- position: relative;
- .login_box {
- position: relative;
- z-index: 10000;
- background: #fff;
- padding: 10px 2px 50px;
- .top {
- margin-top: 20px;
- padding: 0 20px;
- display: flex;
- width: 356px;
- cursor: default;
- .item1 {
- flex: 1;
- text-align: center;
- font-size: 18px;
- color: #666;
- position: relative;
- cursor: default;
- }
- }
- .bottom {
- height: 51px;
- background: #fcfcfc;
- border-top: 1px solid #eee;
- position: absolute;
- width: 100%;
- bottom: 0;
- left: 0;
- display: flex;
- padding: 0 16px;
- box-sizing: border-box;
- &.row-reverse {
- flex-direction: row-reverse;
- }
- a {
- display: block;
- line-height: 50px;
- margin-right: 10px;
- color: #999;
- &:hover {
- color: #000;
- }
- }
- img {
- width: 28px;
- height: 28px;
- cursor: pointer;
- }
- }
- }
- }
- }
- }
- .isLoading{
- opacity: .5!important;
- cursor: no-drop;
- }
|