123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- .login-contianer {
- box-sizing: border-box;
- background: #F7F7F7;
- width: 100%;
- height: 100%;
-
- .logo-banner {
- box-sizing: border-box;
- width: 100%;
- /* position: fixed; */
- height: 60px;
- background: #fff;
- box-shadow: 0px 3px 7px 0px rgba(207, 207, 207, .5);
- display: flex;
- align-items: center;
- padding-left: 26px;
- .logo-icon {
- width: 35px;
- height: 35px;
- background-image: url(../../../assets/images/logo_icon.png);
- background-size: 100%;
- background-repeat: no-repeat;
- margin-right: 7px;
- }
- .logo-title {
- font-size: 16px;
- font-weight: 600;
- color: #333;
- span {
- color: #D2D2D2;
- }
- }
- }
- .login-body {
- padding-top: 15px;
- min-width: 1200px;
- display: flex;
- justify-content: center;
- align-items: stretch;
- .login-bg {
- min-width: 747px;
- width: 47%;
- img {
- width: 100%;
- height: 100%;
- border-radius: 24px 0 0 24px;
- }
- }
- .login-box {
- width: 400px;
- box-sizing: border-box;
- background-color: #fff;
- padding: 100px 50px;
- border-radius: 0 24px 24px 0;
- :global {
- .ant-tabs-nav {
- &::before {
- border-bottom: none
- }
- }
- .ant-tabs-tab {
- font-size: 18px;
- }
- .ant-input {
- width: 500px !important;
- height: 33px !important;
- }
- .ant-btn {
- font-size: 18px;
- height: 44px;
- }
- }
- .forget-password {
- text-align: center;
- font-size: 14px;
- font-weight: 400;
- color: #1890FF;
- cursor: pointer;
- }
- .msg-password {
- display: flex;
- justify-content: space-between;
- :global {
- .ant-input-affix-wrapper {
- width: 174px;
- }
- .ant-btn {
- width: 114px;
- font-size: 16px;
- }
- }
- }
- }
- }
- .login-footer {
- padding: 32px 0 38px;
- width: 100%;
- p {
- text-align: center;
- font-size: 14px;
- font-weight: 400;
- color: #333333;
- margin-top: 10px;
- }
- span {
- cursor: pointer;
- }
- }
-
- .register {
- height: 44px;
- .title {
- line-height: 44px;
- text-align: center;
- font-size: 18px;
- font-weight: 400;
- }
- .register-contianer {
- :global {
- .ant-tabs-nav {
- &::before {
- border-bottom: none
- }
- }
- .ant-tabs-tab {
- font-size: 18px;
- }
- .ant-input {
- width: 500px !important;
- height: 33px !important;
- }
- .ant-btn {
- font-size: 18px;
- height: 44px;
- }
- }
- }
- }
- }
|