1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- @import "./theme.scss";
- .sld_login {
- .sld_login_header {
- height: 88px;
- background: #fff;
- box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
- .content {
- height: 100%;
- display: flex;
- position: relative;
- align-items: center;
- width: 1440px;
- margin: 0 auto;
- .l_logo {
- height: 100%;
- cursor: pointer;
- width: 320px;
- .img {
- display: inline-block;
- vertical-align: top;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .text {
- font-size: 0;
- display: inline-block;
- vertical-align: top;
- line-height: 48px;
- margin-left: 5px;
- }
- }
- .r_register_wrap {
- font-size: 14px;
- text-align: right;
- position: absolute;
- right: 0;
- .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;
- cursor: pointer;
- }
- }
- }
- }
- .agreement_container {
- width: 1200px;
- margin: auto;
- margin-top: 60px;
- padding: 30px 20px 30px;
- pre {
- margin-top: 40px;
- }
- .agreement_title {
- text-align: center;
- }
- }
- }
|